Databricks SDK for JavaScript
    Preparing search index...

    Interface PipelineParameters

    interface PipelineParameters {
        fullRefresh?: boolean;
        fullRefreshSelection?: 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.

    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.