Show / Hide Table of Contents

Class LongTermBackUpScheduleDetails

Details for the long-term backup schedule.

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

Properties

IsDisabled

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

Indicates if the long-term backup schedule should be deleted. The default value is FALSE.

RepeatCadence

Declaration
[JsonProperty(PropertyName = "repeatCadence")]
[JsonConverter(typeof(ResponseEnumConverter))]
public LongTermBackUpScheduleDetails.RepeatCadenceEnum? RepeatCadence { get; set; }
Property Value
Type Description
LongTermBackUpScheduleDetails.RepeatCadenceEnum?

The frequency of the long-term backup schedule

RetentionPeriodInDays

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

Retention period, in days, for long-term backups

TimeOfBackup

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

The timestamp for the long-term backup schedule. For a MONTHLY cadence, months having fewer days than the provided date will have the backup taken on the last day of that month.

In this article
Back to top