Values.UpdateRunGroupRequestSourceUpdates 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.
type nonrec t = {id : RunGroupId.t;The group's ID.
*)name : RunGroupName.t option;A name for the group.
*)maxCpus : UpdateRunGroupRequestMaxCpusInteger.t option;The maximum number of CPUs to use.
*)maxRuns : UpdateRunGroupRequestMaxRunsInteger.t option;The maximum number of concurrent runs for the group.
*)maxDuration : UpdateRunGroupRequestMaxDurationInteger.t option;A maximum run time for the group in minutes.
*)maxGpus : UpdateRunGroupRequestMaxGpusInteger.t option;The maximum GPUs that can be used by a run group.
*)}val make :
?name:??? ->
?maxCpus:??? ->
?maxRuns:??? ->
?maxDuration:??? ->
?maxGpus:??? ->
id:RunGroupId.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Integer of UpdateRunGroupRequestMaxCpusInteger.t
| `String of RunGroupId.t ])
list ]