Show / Hide Table of Contents

Class DisasterRecoveryConfiguration

Configurations of a Disaster Recovery.

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

Properties

DisasterRecoveryType

Declaration
[JsonProperty(PropertyName = "disasterRecoveryType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public DisasterRecoveryConfiguration.DisasterRecoveryTypeEnum? DisasterRecoveryType { get; set; }
Property Value
Type Description
DisasterRecoveryConfiguration.DisasterRecoveryTypeEnum?

Indicates the disaster recovery (DR) type of the Autonomous Database Serverless instance. Autonomous Data Guard (ADG) DR type provides business critical DR with a faster recovery time objective (RTO) during failover or switchover. Backup-based DR type provides lower cost DR with a slower RTO during failover or switchover.

IsReplicateAutomaticBackups

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

If true, 7 days worth of backups are replicated across regions for Cross-Region ADB or Backup-Based DR between Primary and Standby. If false, the backups taken on the Primary are not replicated to the Standby database.

IsSnapshotStandby

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

Indicates if user wants to convert to a snapshot standby. For example, true would set a standby database to snapshot standby database. False would set a snapshot standby database back to regular standby database.

TimeSnapshotStandbyEnabledTill

Declaration
[JsonProperty(PropertyName = "timeSnapshotStandbyEnabledTill")]
public DateTime? TimeSnapshotStandbyEnabledTill { get; set; }
Property Value
Type Description
DateTime?

Time and date stored as an RFC 3339 formatted timestamp string. For example, 2022-01-01T12:00:00.000Z would set a limit for the snapshot standby to be converted back to a cross-region standby database.

In this article
Back to top