Show / Hide Table of Contents

Class CreateCatalogPeerWithDedicatedInfraDetails

Details required for creation of autonomous dedicated infrastructure based catalog peer.

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

Properties

CloudAutonomousVmClusterId

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

The OCID of the cloud Autonomous VM Cluster for the peer catalog.

Remarks

Required

FastStartFailOverLagLimitInSeconds

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

The lag time preference based on data loss tolerance in seconds.

IsAutomaticFailoverEnabled

Declaration
[JsonProperty(PropertyName = "isAutomaticFailoverEnabled")]
public bool? IsAutomaticFailoverEnabled { get; set; }
Property Value
Type Description
bool?

Indicates whether Automatic Failover is enabled for Autonomous Container Database Dataguard Association

ProtectionMode

Declaration
[JsonProperty(PropertyName = "protectionMode")]
[JsonConverter(typeof(StringEnumConverter))]
public DistributedAutonomousDbProtectionMode? ProtectionMode { get; set; }
Property Value
Type Description
DistributedAutonomousDbProtectionMode?

The protectionMode for the catalog peer.

StandbyMaintenanceBufferInDays

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

The scheduling detail for the quarterly maintenance window of the standby Autonomous Container Database. This value represents the number of days before schedlued maintenance of the primary database.

In this article
Back to top