Module Values_0.InstancePlacementConfigSource

Configuration for how instances are placed and allocated within UltraServers. This is only applicable for UltraServer capacity.

Sourcetype nonrec t = {
  1. enableMultipleJobs : Boolean.t option;
    (*

    If set to true, allows multiple jobs to share the same UltraServer instances. If set to false, ensures this job's instances are placed on an UltraServer exclusively, with no other jobs sharing the same UltraServer. Default is false.

    *)
  2. placementSpecifications : PlacementSpecifications.t option;
    (*

    A list of specifications for how instances should be placed on specific UltraServers. Maximum of 10 items is supported.

    *)
}
Sourceval make : ?enableMultipleJobs:??? -> ?placementSpecifications:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `List of [> `Structure of (string * [> `Integer of TrainingInstanceCount.t | `String of String256.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