Show / Hide Table of Contents

Class ProcessOptions

Required pipeline options to configure the replication process (Extract or Replicat).

Inheritance
object
ProcessOptions
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.GoldengateService.Models
Assembly: OCI.DotNetSDK.Goldengate.dll
Syntax
public class ProcessOptions

Properties

InitialDataLoad

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

Required

ReplicateSchemaChange

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

Required

ShouldRestartOnFailure

Declaration
[Required(ErrorMessage = "ShouldRestartOnFailure is required.")]
[JsonProperty(PropertyName = "shouldRestartOnFailure")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ProcessOptions.ShouldRestartOnFailureEnum? ShouldRestartOnFailure { get; set; }
Property Value
Type Description
ProcessOptions.ShouldRestartOnFailureEnum?

If ENABLED, then the replication process restarts itself upon failure. This option applies when creating or updating a pipeline.

Remarks

Required

StartUsingDefaultMapping

Declaration
[JsonProperty(PropertyName = "startUsingDefaultMapping")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ProcessOptions.StartUsingDefaultMappingEnum? StartUsingDefaultMapping { get; set; }
Property Value
Type Description
ProcessOptions.StartUsingDefaultMappingEnum?

If ENABLED, then the pipeline is started as part of pipeline creation. It uses default mapping. This option applies when creating or updating a pipeline.

In this article
Back to top