Show / Hide Table of Contents

Class ReadOperationConfig

The information about the read operation.

Inheritance
object
AbstractDataOperationConfig
ReadOperationConfig
Inherited Members
AbstractDataOperationConfig.MetadataConfigProperties
AbstractDataOperationConfig.DerivedAttributes
AbstractDataOperationConfig.CallAttribute
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 ReadOperationConfig : AbstractDataOperationConfig

Properties

DataFormat

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

IncrementalReadConfig

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

Key

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

The object key.

ModelVersion

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

The object's model version.

ObjectStatus

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

The status of an object that can be set to value 1 for shallow references across objects, other values reserved.

Operations

Declaration
[JsonProperty(PropertyName = "operations")]
public List<PushDownOperation> Operations { get; set; }
Property Value
Type Description
List<PushDownOperation>

An array of operations.

ParentRef

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

PartitionConfig

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

ReadAttribute

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