Type Alias OrchRunBase

type OrchRunBase = {
    endedAt?: string;
    executedAs?: string;
    id: string;
    startedAt?: string;
    status: "RUNNING" | "SUCCEEDED" | "FAILED";
    triggeredBy: string;
    workerId: string;
    workerType: string;
}
Index
endedAt?: string

The UTC timestamp when the task run ended.

executedAs?: string

The user ID of the user on whose behalf the task was executed.

id: string

The unique identifier of the task run.

startedAt?: string

The UTC timestamp when the task run started.

status: "RUNNING" | "SUCCEEDED" | "FAILED"

The current status of the task run.

triggeredBy: string

The identity or event that triggered the task run.

workerId: string

The unique identifier of the worker that executed the job. For example, a reload run carries the reload ID from the engine, and an automation run carries the automation run ID.

workerType: string

The type or name of the target system that executed the run.