Module Values.DiskInfoSource

Describes a disk.

Sourcetype nonrec t = {
  1. name : String_.t option;
    (*

    The disk name.

    *)
  2. path : NonEmptyString.t option;
    (*

    The disk path.

    *)
  3. sizeInGb : Integer.t option;
    (*

    The size of the disk in GB (32).

    *)
  4. isSystemDisk : Boolean.t option;
    (*

    A Boolean value indicating whether this disk is a system disk (has an operating system loaded on it).

    *)
}
Sourceval make : ?name:??? -> ?path:??? -> ?sizeInGb:??? -> ?isSystemDisk:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Integer of Integer.t | `String of String_.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t