Show / Hide Table of Contents

Class GgcsUpdateDetail

Details required to update the existing GGCS instance.

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

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

Instance id of the existing GGCS instance to be updated.

Remarks

Required

Ocpu

Declaration
[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.

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.

In this article
Back to top