Show / Hide Table of Contents

Class WriteOperationConfig

The information about the write operation.

Inheritance
object
AbstractDataOperationConfig
WriteOperationConfig
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 WriteOperationConfig : AbstractDataOperationConfig

Properties

DataFormat

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

Key

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

The object key.

MergeKey

Declaration
[JsonProperty(PropertyName = "mergeKey")]
public UniqueKey MergeKey { get; set; }
Property Value
Type Description
UniqueKey

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

WriteAttribute

Declaration
[JsonProperty(PropertyName = "writeAttribute")]
public AbstractWriteAttribute WriteAttribute { get; set; }
Property Value
Type Description
AbstractWriteAttribute

WriteMode

Declaration
[JsonProperty(PropertyName = "writeMode")]
[JsonConverter(typeof(ResponseEnumConverter))]
public WriteOperationConfig.WriteModeEnum? WriteMode { get; set; }
Property Value
Type Description
WriteOperationConfig.WriteModeEnum?

The mode for the write operation.

In this article
Back to top