Show / Hide Table of Contents

Class JobExecutionSummary

A list of job executions. A job execution is a unit of work being executed on behalf of a job.

Inheritance
object
JobExecutionSummary
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatacatalogService.Models
Assembly: OCI.DotNetSDK.Datacatalog.dll
Syntax
public class JobExecutionSummary

Properties

JobKey

Declaration
[JsonProperty(PropertyName = "jobKey")]
public string JobKey { get; set; }
Property Value
Type Description
string

The unique key of the parent job.

JobType

Declaration
[JsonProperty(PropertyName = "jobType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public JobType? JobType { get; set; }
Property Value
Type Description
JobType?

Type of the job execution.

Key

Declaration
[Required(ErrorMessage = "Key is required.")]
[JsonProperty(PropertyName = "key")]
public string Key { get; set; }
Property Value
Type Description
string

Unique key of the job execution resource.

Remarks

Required

LifecycleState

Declaration
[JsonProperty(PropertyName = "lifecycleState")]
[JsonConverter(typeof(ResponseEnumConverter))]
public JobExecutionState? LifecycleState { get; set; }
Property Value
Type Description
JobExecutionState?

Status of the job execution, such as running, paused, or completed.

ParentKey

Declaration
[JsonProperty(PropertyName = "parentKey")]
public string ParentKey { get; set; }
Property Value
Type Description
string

The unique key of the parent execution or null if this job execution has no parent.

ScheduleInstanceKey

Declaration
[JsonProperty(PropertyName = "scheduleInstanceKey")]
public string ScheduleInstanceKey { get; set; }
Property Value
Type Description
string

The unique key of the triggering external scheduler resource or null if this job execution is not externally triggered.

TimeCreated

Declaration
[JsonProperty(PropertyName = "timeCreated")]
public DateTime? TimeCreated { get; set; }
Property Value
Type Description
DateTime?

The date and time the job execution was created, in the format defined by RFC3339. Example: 2019-03-25T21:10:29.600Z

TimeEnded

Declaration
[JsonProperty(PropertyName = "timeEnded")]
public DateTime? TimeEnded { get; set; }
Property Value
Type Description
DateTime?

Time that the job execution ended or null if it hasn't yet completed. An RFC3339 formatted datetime string.

TimeStarted

Declaration
[JsonProperty(PropertyName = "timeStarted")]
public DateTime? TimeStarted { get; set; }
Property Value
Type Description
DateTime?

Time that job execution started. An RFC3339 formatted datetime string.

Uri

Declaration
[JsonProperty(PropertyName = "uri")]
public string Uri { get; set; }
Property Value
Type Description
string

URI to the job execution instance in the API.

In this article
Back to top