Module Values.MaximumAllowedResourcesSource

The maximum allowed cumulative resources for an application. No new resources will be created once the limit is hit.

Sourcetype nonrec t = {
  1. cpu : CpuSize.t;
    (*

    The maximum allowed CPU for an application.

    *)
  2. memory : MemorySize.t;
    (*

    The maximum allowed resources for an application.

    *)
  3. disk : DiskSize.t option;
    (*

    The maximum allowed disk for an application.

    *)
}
Sourceval context_ : string
Sourceval make : ?disk:??? -> cpu:CpuSize.t -> memory:MemorySize.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of CpuSize.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