Show / Hide Table of Contents

Class AutonomousContainerDatabaseBackupConfig

Backup options for the Autonomous Container Database.

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

Properties

BackupDestinationDetails

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

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. After a new automatic backup has been created, Oracle removes old automatic backups that are created before the window. 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