ContainerImageArgs

data class ContainerImageArgs(val repository: Output<String>, val tag: Output<String>? = null) : ConvertibleToJava<ContainerImageArgs>

Definition of a container image for starting a notebook instance with the environment installed in a container.

Constructors

Link copied to clipboard
fun ContainerImageArgs(repository: Output<String>, tag: Output<String>? = null)

Functions

Link copied to clipboard
open override fun toJava(): ContainerImageArgs

Properties

Link copied to clipboard
val repository: Output<String>

The path to the container image repository. For example: gcr.io/{project_id}/{image_name}

Link copied to clipboard
val tag: Output<String>? = null

The tag of the container image. If not specified, this defaults to the latest tag.