Module Values.DiskSource

The disk identifier.

Sourcetype nonrec t = {
  1. deviceName : BoundedString.t option;
    (*

    The disk or device name.

    *)
  2. bytes : PositiveInteger.t option;
    (*

    The amount of storage on the disk in bytes.

    *)
}
Sourceval make : ?deviceName:??? -> ?bytes:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of PositiveInteger.t | `String of BoundedString.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