Show / Hide Table of Contents

Class PipelineSchemaTableCollection

List of source or target schema tables of a pipeline's assigned connection.

Inheritance
object
PipelineSchemaTableCollection
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 PipelineSchemaTableCollection

Properties

Items

Declaration
[Required(ErrorMessage = "Items is required.")]
[JsonProperty(PropertyName = "items")]
public List<PipelineSchemaTableSummary> Items { get; set; }
Property Value
Type Description
List<PipelineSchemaTableSummary>

Array of source or target schema tables of a pipeline's assigned connection.

Remarks

Required

SourceSchemaName

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

The schema name from the database connection.

TargetSchemaName

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

The schema name from the database connection.

In this article
Back to top