Skip to content

Statuses and Modes

Runtime, checkpoint, agent, and egress state values.

Lifecycle state reported for a runtime.

type RuntimeStatus = "running" | "paused" | "shutdown" | "creating" | "deleting" | "error" | "crashed" | "suspended"
NameValue
"running""running"
"paused""paused"
"shutdown""shutdown"
"creating""creating"
"deleting""deleting"
"error""error"
"crashed""crashed"
"suspended""suspended"

Creation state reported for a checkpoint.

type CheckpointState = "creating" | "ready" | "failed"
NameValue
"creating""creating"
"ready""ready"
"failed""failed"

Execution state reported for a runtime agent.

type RuntimeAgentStatus = "queued" | "running" | "succeeded" | "failed"
NameValue
"queued""queued"
"running""running"
"succeeded""succeeded"
"failed""failed"

Value type for an egress policy mode. Supported runtime egress policy modes.

const EgressMode: { ALLOWLIST: "allowlist"; DENYLIST: "denylist" }
type EgressMode = typeof EgressMode[keyof typeof EgressMode]
NameValue
ALLOWLIST"allowlist"
DENYLIST"denylist"