Show / Hide Table of Contents

Class ImportLineageJobResult

Information about lineage import operation.

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

Properties

DataAssetKey

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

The unique key of the data asset on which import is triggered.

Remarks

Required

ImportJobDefinitionKey

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

The unique key of the job definition resource that is used for the import.

ImportJobExecutionKey

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

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

Remarks

Required

ImportJobExecutionStatus

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

The state of the import job execution.

ImportJobKey

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

The unique key of the job for the import.

In this article
Back to top