Databricks SDK for JavaScript
    Preparing search index...

    Interface ModelTriggerConfiguration

    interface ModelTriggerConfiguration {
        aliases?: string[];
        condition?: ModelTriggerConfiguration_ModelTriggerCondition;
        minTimeBetweenTriggersSeconds?: number;
        securableName?: string;
        waitAfterLastChangeSeconds?: number;
    }
    Index

    Properties

    aliases?: string[]

    Aliases of the model versions to monitor. Can only be used in conjunction with condition MODEL_ALIAS_SET.

    The condition based on which to trigger a job run.

    minTimeBetweenTriggersSeconds?: number

    If set, the trigger starts a run only after the specified amount of time has passed since the last time the trigger fired. The minimum allowed value is 60 seconds.

    securableName?: string

    Name of the securable to monitor ("mycatalog.myschema.mymodel" in the case of model-level triggers, "mycatalog.myschema" in the case of schema-level triggers) or empty in the case of metastore-level triggers.

    waitAfterLastChangeSeconds?: number

    If set, the trigger starts a run only after no model updates have occurred for the specified time and can be used to wait for a series of model updates before triggering a run. The minimum allowed value is 60 seconds.