Show / Hide Table of Contents

Class GgcsSourceDetail

GGCS source configuration for creating or updating existing extracts.

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

Properties

Action

Declaration
[Required(ErrorMessage = "Action is required.")]
[JsonProperty(PropertyName = "action")]
[JsonConverter(typeof(StringEnumConverter))]
public WorkflowAction? Action { get; set; }
Property Value
Type Description
WorkflowAction?

Action to be done over the user. Allowed values are "CREATE" or "UPDATE".

Remarks

Required

ShouldStartSourceOperations

Declaration
[Required(ErrorMessage = "ShouldStartSourceOperations is required.")]
[JsonProperty(PropertyName = "shouldStartSourceOperations")]
public bool? ShouldStartSourceOperations { get; set; }
Property Value
Type Description
bool?

Boolean value that determines source operations should start or not.

Remarks

Required

SourceId

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

Ggcs source artifact id.

Remarks

Required

TargetConnectionName

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

Name of assigned connection for the source.

TargetUri

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

Target uri for the GoldenGate deployment where distribution path needs to be configured.

In this article
Back to top