Type Alias DataTaskRuntimeState

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

Properties

name?: string

Name of the data task

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