Show / Hide Table of Contents

Class ImportDataAssetJobResult

Information about a data asset import operation.

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

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
[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.

ImportJobExecutionStatus

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

The status 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 policy for the import.

In this article
Back to top