Module Values.LimitsSource

Limits for a given instance type and for each of its roles.

Sourcetype nonrec t = {
  1. storageTypes : StorageTypeList.t option;
    (*

    Storage-related attributes that are available for a given instance type.

    *)
  2. instanceLimits : InstanceLimits.t option;
    (*

    The limits for a given instance type.

    *)
  3. additionalLimits : AdditionalLimitList.t option;
    (*

    List of additional limits that are specific to a given instance type for each of its instance roles.

    *)
}
Sourceval make : ?storageTypes:??? -> ?instanceLimits:??? -> ?additionalLimits:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `List of [> `String of LimitValue.t | `Structure of (string * [> `List of [> `String of LimitValue.t ] list | `String of LimitName.t ]) list ] list | `String of StorageTypeName.t ]) list ] list | `Structure of (string * [> `Structure of (string * [> `Integer of MinimumInstanceCount.t ]) list ]) list ]) 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