Show / Hide Table of Contents

Class MonthlyBackupPolicy

Monthly backup policy.

Inheritance
object
BackupPolicy
MonthlyBackupPolicy
Inherited Members
BackupPolicy.RetentionDays
BackupPolicy.CopyPolicy
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.PsqlService.Models
Assembly: OCI.DotNetSDK.Psql.dll
Syntax
public class MonthlyBackupPolicy : BackupPolicy

Properties

BackupStart

Declaration
[Required(ErrorMessage = "BackupStart is required.")]
[JsonProperty(PropertyName = "backupStart")]
public string BackupStart { get; set; }
Property Value
Type Description
string

Hour of the day when backup starts.

Remarks

Required

DaysOfTheMonth

Declaration
[Required(ErrorMessage = "DaysOfTheMonth is required.")]
[JsonProperty(PropertyName = "daysOfTheMonth")]
public List<int> DaysOfTheMonth { get; set; }
Property Value
Type Description
List<int>

Day of the month when the backup should start. To ensure that the backup runs monthly, the latest day of the month that you can use to schedule a backup is the the 28th day.

Remarks

Required

In this article
Back to top