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
The following fields are returned by SELECT queries:
- get
- list_by_test_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 | subscriptionId, resourceGroupName, automationAccountName, runbookName, jobStreamId | Retrieve a test job stream of the test job identified by runbook name and stream id. | |
list_by_test_job | select | subscriptionId, resourceGroupName, automationAccountName, runbookName | $filter | Retrieve a list of test job streams identified by runbook 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.
| Name | Datatype | Description |
|---|---|---|
automationAccountName | string | The name of the automation account. |
jobStreamId | string | The job stream id. |
resourceGroupName | string | Name of an Azure Resource group. |
runbookName | string | The runbook name. |
subscriptionId | string | Gets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. |
$filter | string | The filter to apply on the operation. |
SELECT examples
- get
- list_by_test_job
Retrieve a test job stream of the test job identified by runbook name and stream id.
SELECT
id,
properties
FROM azure.automation.test_job_streams
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND automationAccountName = '{{ automationAccountName }}' -- required
AND runbookName = '{{ runbookName }}' -- required
AND jobStreamId = '{{ jobStreamId }}' -- required
;
Retrieve a list of test job streams identified by runbook name.
SELECT
id,
properties
FROM azure.automation.test_job_streams
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND automationAccountName = '{{ automationAccountName }}' -- required
AND runbookName = '{{ runbookName }}' -- required
AND $filter = '{{ $filter }}'
;