Show / Hide Table of Contents

Class ScheduleProtectedDatabaseDeletionDetails

The details for scheduling deletion of the protected database

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

Properties

DeletionSchedule

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

Defines a preferred schedule to delete a protected database after you terminate the source database.

  • The default schedule is DELETE_AFTER_72_HOURS, so that the delete operation can occur 72 hours (3 days) after the source database is terminated.
  • The alternate schedule is DELETE_AFTER_RETENTION_PERIOD. Specify this option if you want to delete a protected database only after the policy-defined backup retention period expires.
In this article
Back to top