NotebookSoftwareConfig

Notebook Software Config. This is passed to the backend when user makes software configurations in UI.

Fields
env[] object (EnvVar)

Optional. Environment variables to be passed to the container. Maximum limit is 100.

runtime_image Union type
The image to be used by the notebook runtime. Can be one of release name, or custom container image. runtime_image can be only one of the following:
colabImage object (ColabImage)

Optional. Google-managed NotebookRuntime colab image.

JSON representation
{
  "env": [
    {
      object (EnvVar)
    }
  ],

  // runtime_image
  "colabImage": {
    object (ColabImage)
  }
  // Union type
}

ColabImage

Colab image of the runtime.

Fields
releaseName string

Optional. The release name of the NotebookRuntime Colab image, e.g. "py310". If not specified, detault to the latest release.

description string

Output only. A human-readable description of the specified colab image release, populated by the system. Example: "Python 3.10", "Latest - current Python 3.11"

JSON representation
{
  "releaseName": string,
  "description": string
}