job_streams
Creates, updates, deletes, gets or lists a job_streams resource.
Overview
| Name | job_streams |
| Type | Resource |
| Id | azure.automation.job_streams |
Fields
The following fields are returned by SELECT queries:
- get
- list_by_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, jobName, jobStreamId | clientRequestId | Retrieve the job stream identified by job stream id. |
list_by_job | select | resourceGroupName, automationAccountName, jobName, subscriptionId | $filter, clientRequestId | Retrieve 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.
| Name | Datatype | Description |
|---|---|---|
automationAccountName | string | The name of the automation account. |
jobName | string | The job name. |
jobStreamId | string | The job stream id. |
resourceGroupName | string | Name of an Azure Resource group. |
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. |
clientRequestId | string | Identifies this specific client request. |
SELECT examples
- get
- list_by_job
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 }}'
;
Retrieve a list of jobs streams identified by job name.
SELECT
id,
properties
FROM azure.automation.job_streams
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND automationAccountName = '{{ automationAccountName }}' -- required
AND jobName = '{{ jobName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
AND $filter = '{{ $filter }}'
AND clientRequestId = '{{ clientRequestId }}'
;