Show / Hide Table of Contents

Class Disk

The assets disk.

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

Properties

BootOrder

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

Order of boot volumes.

IsCbtEnabled

Declaration
[JsonProperty(PropertyName = "isCbtEnabled")]
public bool? IsCbtEnabled { get; set; }
Property Value
Type Description
bool?

Indicates that CBT (change disk tracking) is enabled for this virtual disk.

Location

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

Location of the boot/data volume.

Name

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

Disk name.

PersistentMode

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

The disk persistent mode.

SizeInMBs

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

The size of the volume in MBs.

Uuid

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

Disk UUID for the virtual disk, if available.

UuidLun

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

Disk UUID LUN for the virtual disk, if available.

In this article
Back to top