Show / Hide Table of Contents

Class PipelineSchemaSummary

List of source and target schemas of a pipeline's assigned connection.

  1. If there is no explicit mapping defined for the pipeline then only matched source and target schema names will be returned.
  2. If there are explicit mappings defined for the pipeline then along with the mapped source and target schema names, the matched source and target schema names also will be returned.
Inheritance
object
PipelineSchemaSummary
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 PipelineSchemaSummary

Properties

SourceSchemaName

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

The schema name from the database connection.

Remarks

Required

TargetSchemaName

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

The schema name from the database connection.

Remarks

Required

In this article
Back to top