interface Run {
    finishedAt?: string;
    flux?: string;
    id?: string;
    links?: { retry?: string; self?: string; task?: string };
    log?: LogEvent[];
    requestedAt?: string;
    scheduledFor?: string;
    startedAt?: string;
    status?: "failed" | "success" | "canceled" | "scheduled" | "started";
    taskID?: string;
}

Properties

finishedAt?: string

The time (RFC3339Nano date/time format) the run finished executing.

flux?: string

Flux used for the task

id?: string
links?: { retry?: string; self?: string; task?: string }
log?: LogEvent[]

An array of logs associated with the run.

requestedAt?: string

The time (RFC3339Nano date/time format) the run was manually requested.

scheduledFor?: string

The time RFC3339 date/time format used for the run's now option.

startedAt?: string

The time (RFC3339Nano date/time format) the run started executing.

status?: "failed" | "success" | "canceled" | "scheduled" | "started"
taskID?: string
MMNEPVFCICPMFPCPTTAAATR