Databricks SDK for JavaScript
    Preparing search index...

    Variable TaskDependencyTypeConst

    TaskDependencyType: {
        ALL_DONE: "ALL_DONE";
        ALL_FAILED: "ALL_FAILED";
        ALL_SUCCESS: "ALL_SUCCESS";
        AT_LEAST_ONE_FAILED: "AT_LEAST_ONE_FAILED";
        AT_LEAST_ONE_SUCCESS: "AT_LEAST_ONE_SUCCESS";
        NONE_FAILED: "NONE_FAILED";
    } = ...

    An optional value indicating the condition that determines whether the task should be run once its dependencies have been completed. When omitted, defaults to ALL_SUCCESS.

    Possible values are:

    • ALL_SUCCESS: All dependencies have executed and succeeded
    • AT_LEAST_ONE_SUCCESS: At least one dependency has succeeded
    • NONE_FAILED: None of the dependencies have failed and at least one was executed
    • ALL_DONE: All dependencies have been completed
    • AT_LEAST_ONE_FAILED: At least one dependency failed
    • ALL_FAILED: ALl dependencies have failed

    Type Declaration

    • ReadonlyALL_DONE: "ALL_DONE"
    • ReadonlyALL_FAILED: "ALL_FAILED"
    • ReadonlyALL_SUCCESS: "ALL_SUCCESS"
    • ReadonlyAT_LEAST_ONE_FAILED: "AT_LEAST_ONE_FAILED"
    • ReadonlyAT_LEAST_ONE_SUCCESS: "AT_LEAST_ONE_SUCCESS"
    • ReadonlyNONE_FAILED: "NONE_FAILED"