RuntimeSoftwareConfigResponse

data class RuntimeSoftwareConfigResponse(val customGpuDriverPath: String, val disableTerminal: Boolean, val enableHealthMonitoring: Boolean, val idleShutdown: Boolean, val idleShutdownTimeout: Int, val installGpuDriver: Boolean, val kernels: List<ContainerImageResponse>, val mixerDisabled: Boolean, val notebookUpgradeSchedule: String, val postStartupScript: String, val postStartupScriptBehavior: String, val upgradeable: Boolean, val version: String)

Specifies the selection and configuration of software inside the runtime. The properties to set on runtime. Properties keys are specified in key:value format, for example: * idle_shutdown: true * idle_shutdown_timeout: 180 * enable_health_monitoring: true

Constructors

Link copied to clipboard
constructor(customGpuDriverPath: String, disableTerminal: Boolean, enableHealthMonitoring: Boolean, idleShutdown: Boolean, idleShutdownTimeout: Int, installGpuDriver: Boolean, kernels: List<ContainerImageResponse>, mixerDisabled: Boolean, notebookUpgradeSchedule: String, postStartupScript: String, postStartupScriptBehavior: String, upgradeable: Boolean, version: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Specify a custom Cloud Storage path where the GPU driver is stored. If not specified, we'll automatically choose from official GPU drivers.

Link copied to clipboard

Bool indicating whether JupyterLab terminal will be available or not. Default: False

Link copied to clipboard

Verifies core internal services are running. Default: True

Link copied to clipboard

Runtime will automatically shutdown after idle_shutdown_time. Default: True

Link copied to clipboard

Time in minutes to wait before shutting down runtime. Default: 180 minutes

Link copied to clipboard

Install Nvidia Driver automatically. Default: True

Link copied to clipboard

Optional. Use a list of container images to use as Kernels in the notebook instance.

Link copied to clipboard

Bool indicating whether mixer client should be disabled. Default: False

Link copied to clipboard

Cron expression in UTC timezone, used to schedule instance auto upgrade. Please follow the cron format.

Link copied to clipboard

Path to a Bash script that automatically runs after a notebook instance fully boots up. The path must be a URL or Cloud Storage path (gs://path-to-file/file-name).

Link copied to clipboard

Behavior for the post startup script.

Link copied to clipboard

Bool indicating whether an newer image is available in an image family.

Link copied to clipboard

version of boot image such as M100, from release label of the image.