Show / Hide Table of Contents

Class GgcsDetail

GGCS details required to provision deployments and connections.

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

Properties

Connections

Declaration
[JsonProperty(PropertyName = "connections")]
public List<GgcsConnectionDetails> Connections { get; set; }
Property Value
Type Description
List<GgcsConnectionDetails>

Connection details to be associated with the Goldengate deployment.

InstanceId

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

Id for the GGCS instance to provision.

Remarks

Required

Ocpu

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

The Minimum number of OCPUs to be made available for this Deployment.

Remarks

Required

OggVersion

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

Version of OGG.

PasswordSecretId

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

The OCID of the Secret where the deployment password is stored.

Remarks

Required

PublicSubnetId

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

The OCID of a public subnet in the customer tenancy. Can be provided only for public GGCS deployments.

SubnetId

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

The OCID of the subnet of the GGCS deployment's private endpoint.

Remarks

Required

In this article
Back to top