Module Values_1.InstancePoolSummarySource

A summary of an instance pool for a production variant, including the instance type and the current number of instances.

Sourcetype nonrec t = {
  1. instanceType : Values_0.ProductionVariantInstanceType.t option;
    (*

    The ML compute instance type for the instance pool.

    *)
  2. currentInstanceCount : TaskCount.t option;
    (*

    The current number of instances of this type in the instance pool.

    *)
}
Sourceval make : ?instanceType:??? -> ?currentInstanceCount:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of TaskCount.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