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

The UTC timestamp when the task run ended

executedAs?: string

user ID of on behalf of whom the Task was executed.

id: string

The ID of the task run

log?: string

log info of the run

resourceId: string

The ID of the resource

startedAt?: string

The UTC timestamp when the task run started

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

task run status

taskId: string

The ID of the task

taskMeta: TaskMetadata
taskName: string

task name

triggeredBy: string

Information about who or what triggered the task run.

workerId: string

The ID of the worker who is carrying out the real job. e.g. App.Reload job is carried out by Reload Engine, in this case, workerId will be reloadId from reload engine. Or, if we are using Automation, workerId will be Automation runId.

workerType: string

worker type or target system