Show / Hide Table of Contents

Class TaskRunLineageSummary

The information about TaskRunLineage.

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

Properties

Description

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

Detailed description for the object.

Flow

Declaration
[JsonProperty(PropertyName = "flow")]
public DataFlow Flow { get; set; }
Property Value
Type Description
DataFlow

IsLineageGenCompleted

Declaration
[JsonProperty(PropertyName = "isLineageGenCompleted")]
public bool? IsLineageGenCompleted { get; set; }
Property Value
Type Description
bool?

This value is used to track if lineage generation for a task is completed or not.

Key

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

The object key.

Metadata

Declaration
[JsonProperty(PropertyName = "metadata")]
public ObjectMetadata Metadata { get; set; }
Property Value
Type Description
ObjectMetadata

ModelType

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

The object type.

ModelVersion

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

The object's model version.

Name

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

Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.

ObjectVersion

Declaration
[JsonProperty(PropertyName = "objectVersion")]
public int? ObjectVersion { get; set; }
Property Value
Type Description
int?

The version of the object that is used to track changes in the object instance.

ParentRef

Declaration
[JsonProperty(PropertyName = "parentRef")]
public ParentReference ParentRef { get; set; }
Property Value
Type Description
ParentReference

TaskExecutionStatus

Declaration
[JsonProperty(PropertyName = "taskExecutionStatus")]
[JsonConverter(typeof(ResponseEnumConverter))]
public TaskRunLineageSummary.TaskExecutionStatusEnum? TaskExecutionStatus { get; set; }
Property Value
Type Description
TaskRunLineageSummary.TaskExecutionStatusEnum?

The status of the task run.

TaskKey

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

The object key.

TaskName

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

Task name

TaskType

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

Task name

In this article
Back to top