Databricks SDK for JavaScript
    Preparing search index...
    interface TriggerState {
        pauseStatus?: SchedulePauseStatus;
        sqlCondition?: SqlConditionState;
        triggerType?:
            | { $case: "table"; table: TableTriggerState }
            | { $case: "fileArrival"; fileArrival: FileArrivalTriggerState };
    }
    Index

    Properties

    pauseStatus?: SchedulePauseStatus

    Whether this trigger is paused or not. For continuous schedules, it can differ from the configured pause_status whenever a paused continuous job is kickstarted by an operation other than an update, such as a run-now.

    sqlCondition?: SqlConditionState

    State for SQL condition evaluation, can coexist with other trigger states.

    triggerType?:
        | { $case: "table"; table: TableTriggerState }
        | { $case: "fileArrival"; fileArrival: FileArrivalTriggerState }

    (-- Next ID: 7. --)