Show / Hide Table of Contents

Class WeeklyBackupPolicy

Weekly backup policy.

Inheritance
object
BackupPolicy
WeeklyBackupPolicy
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 WeeklyBackupPolicy : 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 the backup starts.

Remarks

Required

DaysOfTheWeek

Declaration
[Required(ErrorMessage = "DaysOfTheWeek is required.")]
[JsonProperty(PropertyName = "daysOfTheWeek", ItemConverterType = typeof(ResponseEnumConverter))]
public List<WeeklyBackupPolicy.DaysOfTheWeekEnum> DaysOfTheWeek { get; set; }
Property Value
Type Description
List<WeeklyBackupPolicy.DaysOfTheWeekEnum>

The day of the week that the backup starts.

Remarks

Required

In this article
Back to top