Skip to content

CancelRunResponse

Defined in: .upstream/src/client/types.ts:344

POST /runs/:id/cancel response. alreadyTerminal is true when the run had already reached a terminal state, in which case no cancel was issued. sandboxRun carries the burrow-side run’s { id, state } re-read after the cancel, or null when there was nothing remote to cancel (queued run with no sandboxRunId, or already terminal).

alreadyTerminal: boolean

Defined in: .upstream/src/client/types.ts:346


sandboxRun: { id: string; state: "queued" | "running" | "succeeded" | "failed" | "cancelled"; } | null

Defined in: .upstream/src/client/types.ts:347


state: "queued" | "running" | "succeeded" | "failed" | "cancelled"

Defined in: .upstream/src/client/types.ts:345