v5
latestOpenAPI 3.1.02026-08-025631,1012.8 MBCluster Executions
Name an Execution Run
Set (or clear) a human-friendly name on a single execution run — no re-run required.
A non-empty value sets/replaces the run's `run_name`; an empty string
clears it, restoring the unnamed (run_id-only) state. Names are trimmed
and capped at 120 characters. The name is persisted on the execution
record and returned by execution GET/LIST responses (`run_name`,
omitted entirely while unnamed), so run selectors and execution-history
views can show 'July tuning baseline' instead of `run_a8e2709532...`.
Sibling of PATCH `.../executions/{run_id}/labels`: each display field
gets its own strict single-purpose PATCH rather than a general
execution PATCH, because execution results themselves are immutable.
Example body: `{"run_name": "July tuning baseline"}` (or
`{"run_name": ""}` to clear).
patch/v1/clusters/{cluster_id}/executions/{run_id}/name
Path parameters
cluster_idstring required
Cluster ID
Cluster ID
run_idstring required
Run ID to name
Run ID to name
Request body
Example request
{
"run_name": "July tuning baseline"
}Response
Successful Response