jobs_job_histories
Creates, updates, deletes, gets or lists a jobs_job_histories
resource.
Overview
Name | jobs_job_histories |
Type | Resource |
Id | azure.scheduler.jobs_job_histories |
Fields
Name | Datatype | Description |
---|---|---|
id | string | Gets the job history identifier. |
name | string | Gets the job history name. |
properties | object | |
type | string | Gets the job history resource type. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | jobCollectionName, jobName, resourceGroupName, subscriptionId | Lists job history. |
SELECT
examples
Lists job history.
SELECT
id,
name,
properties,
type
FROM azure.scheduler.jobs_job_histories
WHERE jobCollectionName = '{{ jobCollectionName }}'
AND jobName = '{{ jobName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';