Show / Hide Table of Contents

Class CreateGoldenGateHubDetails

Details about Oracle GoldenGate Microservices.

Inheritance
object
CreateGoldenGateHubDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatabasemigrationService.Models
Assembly: OCI.DotNetSDK.Databasemigration.dll
Syntax
public class CreateGoldenGateHubDetails

Properties

AcceptableLag

Declaration
[JsonProperty(PropertyName = "acceptableLag")]
public int? AcceptableLag { get; set; }
Property Value
Type Description
int?

ODMS will monitor GoldenGate end-to-end latency until the lag time is lower than the specified value in seconds.

ComputeId

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

The OCID of the resource being referenced.

Extract

Declaration
[JsonProperty(PropertyName = "extract")]
public CreateExtract Extract { get; set; }
Property Value
Type Description
CreateExtract

KeyId

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

The OCID of the resource being referenced.

Remarks

Required

Replicat

Declaration
[JsonProperty(PropertyName = "replicat")]
public CreateReplicat Replicat { get; set; }
Property Value
Type Description
CreateReplicat

RestAdminCredentials

Declaration
[Required(ErrorMessage = "RestAdminCredentials is required.")]
[JsonProperty(PropertyName = "restAdminCredentials")]
public CreateAdminCredentials RestAdminCredentials { get; set; }
Property Value
Type Description
CreateAdminCredentials
Remarks

Required

Url

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

Endpoint URL.

Remarks

Required

VaultId

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

The OCID of the resource being referenced.

Remarks

Required

In this article
Back to top