Type Alias DataTaskRuntimeState

Represents the current or historical execution state of a data task, including progress information, error details, and dataset-level statistics.

type DataTaskRuntimeState = {
    lastRun?: DataTaskInstanceState;
    name?: string;
    runReadiness?: {
        message?: string;
        state?: "READY_TO_RUN" | "ALREADY_RUNNING" | "NOT_RUNNABLE";
    };
    type?: DataTaskType;
}
Index

Properties

Represents the execution state of a task instance, including progress metrics, errors, and operation-specific statistics.

name?: string
runReadiness?: {
    message?: string;
    state?: "READY_TO_RUN" | "ALREADY_RUNNING" | "NOT_RUNNABLE";
}