TaskNotebookInfrastructureSpecContainerImage

data class TaskNotebookInfrastructureSpecContainerImage(val image: String? = null, val javaJars: List<String>? = null, val properties: Map<String, String>? = null, val pythonPackages: List<String>? = null)

Constructors

constructor(image: String? = null, javaJars: List<String>? = null, properties: Map<String, String>? = null, pythonPackages: List<String>? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val image: String? = null

Container image to use.

Link copied to clipboard
val javaJars: List<String>? = null

A list of Java JARS to add to the classpath. Valid input includes Cloud Storage URIs to Jar binaries. For example, gs://bucket-name/my/path/to/file.jar

Link copied to clipboard
val properties: Map<String, String>? = null

Override to common configuration of open source components installed on the Dataproc cluster. The properties to set on daemon config files. Property keys are specified in prefix:property format, for example core:hadoop.tmp.dir. For more information, see Cluster properties.

Link copied to clipboard
val pythonPackages: List<String>? = null

A list of python packages to be installed. Valid formats include Cloud Storage URI to a PIP installable library. For example, gs://bucket-name/my/path/to/lib.tar.gz