Module Values_0.DiskInfoSource

Describes a disk.

Sourcetype nonrec t = {
  1. sizeInGB : DiskSize.t option;
    (*

    The size of the disk in GB.

    *)
  2. count : DiskCount.t option;
    (*

    The number of disks with this configuration.

    *)
  3. type_ : DiskType.t option;
    (*

    The type of disk.

    *)
}
Sourceval make : ?sizeInGB:??? -> ?count:??? -> ?type_:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of DiskCount.t | `Long of DiskSize.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