Cluster 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
Changes
Changed in 1 of the 30 revisions of this API.1
- ○
the endpoint scheme security
BearerAuth AND NamespaceHeaderwas added to the APIapi-security-added
This revision also has 3 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog
- ○