Module Values.DataStorageSource

The data storage limit.

Sourcetype nonrec t = {
  1. maximum : IntegerOptional.t option;
    (*

    The upper limit for data storage the cache is set to use.

    *)
  2. minimum : IntegerOptional.t option;
    (*

    The lower limit for data storage the cache is set to use.

    *)
  3. unit : DataStorageUnit.t;
    (*

    The unit that the storage is measured in, in GB.

    *)
}
Sourceval context_ : string
Sourceval make : ?maximum:??? -> ?minimum:??? -> unit:DataStorageUnit.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of IntegerOptional.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