Show / Hide Table of Contents

Class DiskStatistics

Aggregated data per disk.

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

Properties

DiskName

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

Name of the disk.

Remarks

Required

DiskSizeInGBs

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

Size of the disk.

Remarks

Required

DiskUnallocatedInGBs

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

Value for unallocated space in a disk.

Remarks

Required

DiskUsageInGBs

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

Disk usage.

Remarks

Required

In this article
Back to top