Show / Hide Table of Contents

Class JobLog

Job log details. A job log is an audit log record inserted during the lifecycle of a job execution instance.

Inheritance
object
JobLog
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 JobLog

Properties

CreatedById

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

OCID of the user who created the log record for this job. Usually the executor of the job instance.

JobExecutionKey

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

The unique key of the parent job execution for which the log resource was created.

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 log that is immutable.

Remarks

Required

LogMessage

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

Message for this job log.

Severity

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

Severity level for this log.

TimeCreated

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

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

TimeUpdated

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

Job log update time. An RFC3339 formatted datetime string.

UpdatedById

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

OCID of the user who created the log record for this job. Usually the executor of the job instance.

Uri

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

URI to the job log instance in the API.

In this article
Back to top