TaskNotebookArgs

data class TaskNotebookArgs(val archiveUris: Output<List<String>>? = null, val fileUris: Output<List<String>>? = null, val infrastructureSpec: Output<TaskNotebookInfrastructureSpecArgs>? = null, val notebook: Output<String>) : ConvertibleToJava<TaskNotebookArgs>

Constructors

Link copied to clipboard
constructor(archiveUris: Output<List<String>>? = null, fileUris: Output<List<String>>? = null, infrastructureSpec: Output<TaskNotebookInfrastructureSpecArgs>? = null, notebook: Output<String>)

Properties

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

Cloud Storage URIs of archives to be extracted into the working directory of each executor. Supported file types: .jar, .tar, .tar.gz, .tgz, and .zip.

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

Cloud Storage URIs of files to be placed in the working directory of each executor.

Link copied to clipboard

Infrastructure specification for the execution. Structure is documented below.

Link copied to clipboard
val notebook: Output<String>

Path to input notebook. This can be the Cloud Storage URI of the notebook file or the path to a Notebook Content. The execution args are accessible as environment variables (TASK_key=value).

Functions

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