Skip to main content

jobs_job_histories

Creates, updates, deletes, gets or lists a jobs_job_histories resource.

Overview

Namejobs_job_histories
TypeResource
Idazure.scheduler.jobs_job_histories

Fields

NameDatatypeDescription
idstringGets the job history identifier.
namestringGets the job history name.
propertiesobject
typestringGets the job history resource type.

Methods

NameAccessible byRequired ParamsDescription
listSELECTjobCollectionName, jobName, resourceGroupName, subscriptionIdLists 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 }}';