Databricks SDK for JavaScript
    Preparing search index...
    interface PipelineLibrary {
        lib?:
            | { $case: "jar"; jar: string }
            | { $case: "maven"; maven: PipelinesMavenLibrary }
            | { $case: "whl"; whl: string }
            | { $case: "notebook"; notebook: NotebookLibrary }
            | { $case: "file"; file: NotebookLibrary }
            | { $case: "glob"; glob: PathPattern };
    }
    Index

    Properties

    Properties

    lib?:
        | { $case: "jar"; jar: string }
        | { $case: "maven"; maven: PipelinesMavenLibrary }
        | { $case: "whl"; whl: string }
        | { $case: "notebook"; notebook: NotebookLibrary }
        | { $case: "file"; file: NotebookLibrary }
        | { $case: "glob"; glob: PathPattern }

    Type Declaration

    • { $case: "jar"; jar: string }
      • $case: "jar"
      • jar: string

        URI of the jar to be installed. Currently only DBFS is supported.

    • { $case: "maven"; maven: PipelinesMavenLibrary }
    • { $case: "whl"; whl: string }
      • $case: "whl"
      • whl: string

        URI of the whl to be installed.

    • { $case: "notebook"; notebook: NotebookLibrary }
      • $case: "notebook"
      • notebook: NotebookLibrary

        The path to a notebook that defines a pipeline and is stored in the workspace.

    • { $case: "file"; file: NotebookLibrary }
      • $case: "file"
      • file: NotebookLibrary

        The path to a file that defines a pipeline and is stored in the Databricks Repos.

    • { $case: "glob"; glob: PathPattern }
      • $case: "glob"
      • glob: PathPattern

        The unified field to include source codes. Each entry can be a notebook path, a file path, or a folder path that ends /\**. This field cannot be used together with notebook or file.