Show / Hide Table of Contents

Class VolumeSourceFromVolumeBackupDeltaDetails

Inheritance
object
VolumeSourceDetails
VolumeSourceFromVolumeBackupDeltaDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.CoreService.Models
Assembly: OCI.DotNetSDK.Core.dll
Syntax
public class VolumeSourceFromVolumeBackupDeltaDetails : VolumeSourceDetails

Properties

ChangeBlockSizeInBytes

Declaration
[JsonProperty(PropertyName = "changeBlockSizeInBytes")]
public long? ChangeBlockSizeInBytes { get; set; }
Property Value
Type Description
long?

Block size in bytes to be considered while performing volume restore. The value must be a power of 2; ranging from 4KB (4096 bytes) to 1MB (1048576 bytes). If omitted, defaults to 4,096 bytes (4 KiB).

FirstBackupId

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

The OCID of the first volume backup.

Remarks

Required

SecondBackupId

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

The OCID of the second volume backup.

Remarks

Required

In this article
Back to top