Show / Hide Table of Contents

Class CreateNodeBackupConfigurationDetails

The information about the NodeBackupConfiguration.

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

Properties

BackupType

Declaration
[JsonProperty(PropertyName = "backupType")]
[JsonConverter(typeof(StringEnumConverter))]
public NodeBackup.BackupTypeEnum? BackupType { get; set; }
Property Value
Type Description
NodeBackup.BackupTypeEnum?

Incremental backup type includes only the changes since the last backup. Full backup type includes all changes since the volume was created.

DisplayName

Declaration
[JsonProperty(PropertyName = "displayName")]
public string DisplayName { get; set; }
Property Value
Type Description
string

A user-friendly name. Only ASCII alphanumeric characters with no spaces allowed. The name does not have to be unique, and it may be changed. Avoid entering confidential information.

LevelTypeDetails

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

Required

NumberOfBackupsToRetain

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

Number of backup copies to retain.

Schedule

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

Day/time recurrence (specified following RFC 5545) at which to trigger the backup process. Currently only DAILY, WEEKLY and MONTHLY frequency is supported. Days of the week are specified using BYDAY field. Time of the day is specified using BYHOUR. Other fields are not supported.

Remarks

Required

Timezone

Declaration
[JsonProperty(PropertyName = "timezone")]
public string Timezone { get; set; }
Property Value
Type Description
string

The time zone of the execution schedule, in IANA time zone database name format

In this article
Back to top