Module Values.KxScalingGroupConfigurationSource

The structure that stores the capacity configuration details of a scaling group.

Sourcetype nonrec t = {
  1. scalingGroupName : KxScalingGroupName.t;
    (*

    A unique identifier for the kdb scaling group.

    *)
  2. memoryLimit : MemoryMib.t option;
    (*

    An optional hard limit on the amount of memory a kdb cluster can use.

    *)
  3. memoryReservation : MemoryMib.t;
    (*

    A reservation of the minimum amount of memory that should be available on the scaling group for a kdb cluster to be successfully placed in a scaling group.

    *)
  4. nodeCount : ClusterNodeCount.t;
    (*

    The number of kdb cluster nodes.

    *)
  5. cpu : CpuCount.t option;
    (*

    The number of vCPUs that you want to reserve for each node of this kdb cluster on the scaling group host.

    *)
}
Sourceval context_ : string
Sourceval make : ?memoryLimit:??? -> ?cpu:??? -> scalingGroupName:KxScalingGroupName.t -> memoryReservation:MemoryMib.t -> nodeCount:ClusterNodeCount.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of CpuCount.t | `Integer of MemoryMib.t | `String of KxScalingGroupName.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