job_streams
Creates, updates, deletes, gets or lists a job_streams
resource.
Overview
Name | job_streams |
Type | Resource |
Id | azure.automation.job_streams |
Fields
- vw_job_streams
- job_streams
Name | Datatype | Description |
---|---|---|
id | text | Gets or sets the id of the resource. |
automationAccountName | text | field from the properties object |
jobName | 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 |
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, jobName, jobStreamId, resourceGroupName, subscriptionId | Retrieve the job stream identified by job stream id. |
list_by_job | SELECT | automationAccountName, jobName, resourceGroupName, subscriptionId | Retrieve a list of jobs streams identified by job name. |
SELECT
examples
Retrieve a list of jobs streams identified by job name.
- vw_job_streams
- job_streams
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 }}';
SELECT
id,
properties
FROM azure.automation.job_streams
WHERE automationAccountName = '{{ automationAccountName }}'
AND jobName = '{{ jobName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';