Databricks SDK for JavaScript
    Preparing search index...

    The environment entity used to preserve serverless environment side panel, jobs' environment for non-notebook task, and SDP's environment for classic and serverless pipelines. In this minimal environment spec, only pip dependencies are supported.

    interface PipelinesEnvironment {
        dependencies?: string[];
        environmentVersion?: string;
    }
    Index

    Properties

    dependencies?: string[]

    List of pip dependencies, as supported by the version of pip in this environment. Each dependency is a pip requirement file line https://pip.pypa.io/en/stable/reference/requirements-file-format/ Allowed dependency could be , <archive url/path>, (WSFS or Volumes in ),

    environmentVersion?: string

    The environment version of the serverless Python environment used to execute customer Python code. Each environment version includes a specific Python version and a curated set of pre-installed libraries with defined versions, providing a stable and reproducible execution environment.

    supports a three-year lifecycle for each environment version. For available versions and their included packages, see https://docs.databricks.com/aws/en/release-notes/serverless/environment-version/

    The value should be a string representing the environment version number, for example: "4".