Type Alias OrchRun

type OrchRun = {
    actionId: string;
    endedAt?: string;
    executedAs?: string;
    id: string;
    log?: string;
    resourceId: string;
    startedAt?: string;
    status: "RUNNING" | "SUCCEEDED" | "FAILED";
    taskId: string;
    taskMeta: TaskMetadata;
    taskName: string;
    triggeredBy: string;
    workerId: string;
    workerType: string;
}
Index

Properties

actionId: string

The ID of the action

endedAt?: string
executedAs?: string
id: string
log?: string
resourceId: string
startedAt?: string
status: "RUNNING" | "SUCCEEDED" | "FAILED"
taskId: string
taskMeta: TaskMetadata
taskName: string
triggeredBy: string
workerId: string
workerType: string