Show / Hide Table of Contents

Class BackupNodeDetails

The information about the nodes to backup.

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

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.

LevelTypeDetails

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

Required

In this article
Back to top