Interface IDataTaskInstanceState

interface IDataTaskInstanceState {
    lastRun: {
        message: string;
        state: "FAILED" | "RUNNING" | "STARTING" | "COMPLETED" | "CANCELED";
    };
    runReadiness: {
        message: string;
        state: "READY_TO_RUN" | "ALREADY_RUNNING" | "NOT_RUNNABLE";
    };
}

Properties

lastRun: {
    message: string;
    state: "FAILED" | "RUNNING" | "STARTING" | "COMPLETED" | "CANCELED";
}

Type declaration

  • message: string
  • state: "FAILED" | "RUNNING" | "STARTING" | "COMPLETED" | "CANCELED"
runReadiness: {
    message: string;
    state: "READY_TO_RUN" | "ALREADY_RUNNING" | "NOT_RUNNABLE";
}

Type declaration

  • message: string
  • state: "READY_TO_RUN" | "ALREADY_RUNNING" | "NOT_RUNNABLE"