Module Values.AdditionalLimitSource

List of limits that are specific to a given InstanceType and for each of it's InstanceRole .

Sourcetype nonrec t = {
  1. limitName : LimitName.t option;
    (*

    Name of Additional Limit is specific to a given InstanceType and for each of it's InstanceRole etc. Attributes and their details: MaximumNumberOfDataNodesSupported This attribute will be present in Master node only to specify how much data nodes upto which given ESPartitionInstanceType can support as master node. MaximumNumberOfDataNodesWithoutMasterNode This attribute will be present in Data node only to specify how much data nodes of given ESPartitionInstanceType upto which you don't need any master nodes to govern them.

    *)
  2. limitValues : LimitValueList.t option;
    (*

    Value for given AdditionalLimit$LimitName .

    *)
}
Sourceval make : ?limitName:??? -> ?limitValues:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of LimitValue.t ] list | `String of LimitName.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