Show / Hide Table of Contents

Class Target

The information about the target operator. The target operator lets you specify the data entity to store the transformed data.

Inheritance
object
Operator
Target
Inherited Members
Operator.Key
Operator.ModelVersion
Operator.ParentRef
Operator.Name
Operator.Description
Operator.ObjectVersion
Operator.InputPorts
Operator.OutputPorts
Operator.ObjectStatus
Operator.Identifier
Operator.Parameters
Operator.OpConfigValues
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 Target : Operator

Properties

DataProperty

Declaration
[JsonProperty(PropertyName = "dataProperty")]
[JsonConverter(typeof(ResponseEnumConverter))]
public Target.DataPropertyEnum? DataProperty { get; set; }
Property Value
Type Description
Target.DataPropertyEnum?

Specifies the data property.

Entity

Declaration
[JsonProperty(PropertyName = "entity")]
public DataEntity Entity { get; set; }
Property Value
Type Description
DataEntity

FixedDataShape

Declaration
[JsonProperty(PropertyName = "fixedDataShape")]
public Shape FixedDataShape { get; set; }
Property Value
Type Description
Shape

IsCopyFields

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

Specifies the copy fields.

IsPredefinedShape

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

Specifies if this uses a predefined shape.

IsReadAccess

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

Specifies the read access.

IsUseSameSourceName

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

Specifies if entity name is the same as source.

LoadOrder

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

A numeric loading order number for the target.

SchemaDriftConfig

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

TargetEntityNamePrefix

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

Prefix for the entity Name.

TargetEntityNameSuffix

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

Suffix for the entity Name.

WriteOperationConfig

Declaration
[JsonProperty(PropertyName = "writeOperationConfig")]
public WriteOperationConfig WriteOperationConfig { get; set; }
Property Value
Type Description
WriteOperationConfig
In this article
Back to top