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"
Name Value
"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"
Name Value
"creating" "creating"
"ready" "ready"
"failed" "failed"

Execution state reported for a runtime agent.

type RuntimeAgentStatus = "queued" | "running" | "succeeded" | "failed"
Name Value
"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]
Name Value
ALLOWLIST "allowlist"
DENYLIST "denylist"