Module Values.UpdateRunGroupRequestSource

Updates the settings of a run group and returns a response with no body if the operation is successful. You can update the following settings with UpdateRunGroup: Maximum number of CPUs Run time (measured in minutes) Number of GPUs Number of concurrent runs Group name To confirm that the settings have been successfully updated, use the ListRunGroups or GetRunGroup API operations to verify that the desired changes have been made.

Sourcetype nonrec t = {
  1. id : RunGroupId.t;
    (*

    The group's ID.

    *)
  2. name : RunGroupName.t option;
    (*

    A name for the group.

    *)
  3. maxCpus : UpdateRunGroupRequestMaxCpusInteger.t option;
    (*

    The maximum number of CPUs to use.

    *)
  4. maxRuns : UpdateRunGroupRequestMaxRunsInteger.t option;
    (*

    The maximum number of concurrent runs for the group.

    *)
  5. maxDuration : UpdateRunGroupRequestMaxDurationInteger.t option;
    (*

    A maximum run time for the group in minutes.

    *)
  6. maxGpus : UpdateRunGroupRequestMaxGpusInteger.t option;
    (*

    The maximum GPUs that can be used by a run group.

    *)
}
Sourceval context_ : string
Sourceval make : ?name:??? -> ?maxCpus:??? -> ?maxRuns:??? -> ?maxDuration:??? -> ?maxGpus:??? -> id:RunGroupId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of UpdateRunGroupRequestMaxCpusInteger.t | `String of RunGroupId.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