Databricks SDK for JavaScript
    Preparing search index...

    Variable TriggerTypeConst

    TriggerType: {
        CONTINUOUS: "CONTINUOUS";
        CONTINUOUS_RESTART: "CONTINUOUS_RESTART";
        FILE_ARRIVAL: "FILE_ARRIVAL";
        ONE_TIME: "ONE_TIME";
        PERIODIC: "PERIODIC";
        RETRY: "RETRY";
        RUN_JOB_TASK: "RUN_JOB_TASK";
        TABLE: "TABLE";
    } = ...

    The type of trigger that fired this run.

    • PERIODIC: Schedules that periodically trigger runs, such as a cron scheduler.
    • ONE_TIME: One time triggers that fire a single run. This occurs you triggered a single run on demand through the UI or the API.
    • RETRY: Indicates a run that is triggered as a retry of a previously failed run. This occurs when you request to re-run the job in case of failures.
    • RUN_JOB_TASK: Indicates a run that is triggered using a Run Job task.
    • FILE_ARRIVAL: Indicates a run that is triggered by a file arrival.
    • CONTINUOUS: Indicates a run that is triggered by a continuous job.
    • TABLE: Indicates a run that is triggered by a table update.
    • CONTINUOUS_RESTART: Indicates a run created by user to manually restart a continuous job run.
    • MODEL: Indicates a run that is triggered by a model update.

    Type Declaration

    • ReadonlyCONTINUOUS: "CONTINUOUS"
    • ReadonlyCONTINUOUS_RESTART: "CONTINUOUS_RESTART"
    • ReadonlyFILE_ARRIVAL: "FILE_ARRIVAL"
    • ReadonlyONE_TIME: "ONE_TIME"
    • ReadonlyPERIODIC: "PERIODIC"
    • ReadonlyRETRY: "RETRY"
    • ReadonlyRUN_JOB_TASK: "RUN_JOB_TASK"
    • ReadonlyTABLE: "TABLE"