Show / Hide Table of Contents

Class GgcsConnectionDetails

Details of GGCS connections to be created.

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

Properties

ConnectionId

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

OCID of pre-created Oracle GoldenGate connection.

ConnectionName

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

Name of the connection to be created.

Remarks

Required

DifDependencies

Declaration
[JsonProperty(PropertyName = "difDependencies")]
public List<DifDependencyDetails> DifDependencies { get; set; }
Property Value
Type Description
List<DifDependencyDetails>

List of Service Dependency Details for connection creation.

GgAdminSecretId

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

Vault secret OCID containing password that Oracle GoldenGate uses to connect the associated system of the given technology.

In this article
Back to top