Show / Hide Table of Contents

Class DistributedAutonomousDbBackupConfig

Backup options for the Distributed Autonomous Database.

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

Properties

BackupDestinationDetails

Declaration
[JsonProperty(PropertyName = "backupDestinationDetails")]
public List<DistributedAutonomousDbBackupDestination> BackupDestinationDetails { get; set; }
Property Value
Type Description
List<DistributedAutonomousDbBackupDestination>

Backup destination details.

RecoveryWindowInDays

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

Number of days between the current and the earliest point of recoverability covered by automatic backups. This value applies to automatic backups. When the value is updated, it is applied to all existing automatic backups. If the number of specified days is 0 then there will be no backups.

In this article
Back to top