Databricks SDK for JavaScript
    Preparing search index...
    interface PipelineTask {
        fullRefresh?: boolean;
        fullRefreshSelection?: string[];
        pipelineId?: string;
        pipelineTaskParameters?: Record<string, string>;
        refreshFlowSelection?: string[];
        refreshSelection?: string[];
        resetCheckpointSelection?: string[];
    }
    Index

    Properties

    fullRefresh?: boolean

    If true, triggers a full refresh on the spark declarative pipeline.

    fullRefreshSelection?: string[]

    A list of tables to update with fullRefresh.

    pipelineId?: string

    The full name of the pipeline task to execute.

    pipelineTaskParameters?: Record<string, string>

    Key/value-map of parameters passed to the pipeline execution. Limited to 10k characters in total.

    refreshFlowSelection?: string[]

    Flow names to selectively refresh. These are unioned with other selective refresh options (refresh_selection, full_refresh_selection) to determine the final set of flows to refresh.

    refreshSelection?: string[]

    A list of tables to update without fullRefresh.

    resetCheckpointSelection?: string[]

    A list of streaming flows to reset checkpoints without clearing data.