TaskNotebook

data class TaskNotebook(val archiveUris: List<String>? = null, val fileUris: List<String>? = null, val infrastructureSpec: TaskNotebookInfrastructureSpec? = null, val notebook: String)

Constructors

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

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val archiveUris: 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: 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

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).