TaskRunnerSettingsResponse

data class TaskRunnerSettingsResponse(val alsologtostderr: Boolean, val baseTaskDir: String, val baseUrl: String, val commandlinesFileName: String, val continueOnException: Boolean, val dataflowApiVersion: String, val harnessCommand: String, val languageHint: String, val logDir: String, val logToSerialconsole: Boolean, val logUploadLocation: String, val oauthScopes: List<String>, val parallelWorkerSettings: WorkerSettingsResponse, val streamingWorkerMainClass: String, val taskGroup: String, val taskUser: String, val tempStoragePrefix: String, val vmId: String, val workflowFileName: String)

Taskrunner configuration settings.

Constructors

Link copied to clipboard
fun TaskRunnerSettingsResponse(alsologtostderr: Boolean, baseTaskDir: String, baseUrl: String, commandlinesFileName: String, continueOnException: Boolean, dataflowApiVersion: String, harnessCommand: String, languageHint: String, logDir: String, logToSerialconsole: Boolean, logUploadLocation: String, oauthScopes: List<String>, parallelWorkerSettings: WorkerSettingsResponse, streamingWorkerMainClass: String, taskGroup: String, taskUser: String, tempStoragePrefix: String, vmId: String, workflowFileName: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Whether to also send taskrunner log info to stderr.

Link copied to clipboard

The location on the worker for task-specific subdirectories.

Link copied to clipboard

The base URL for the taskrunner to use when accessing Google Cloud APIs. When workers access Google Cloud APIs, they logically do so via relative URLs. If this field is specified, it supplies the base URL to use for resolving these relative URLs. The normative algorithm used is defined by RFC 1808, "Relative Uniform Resource Locators". If not specified, the default value is "http://www.googleapis.com/"

Link copied to clipboard

The file to store preprocessing commands in.

Link copied to clipboard

Whether to continue taskrunner if an exception is hit.

Link copied to clipboard

The API version of endpoint, e.g. "v1b3"

Link copied to clipboard

The command to launch the worker harness.

Link copied to clipboard

The suggested backend language.

Link copied to clipboard

The directory on the VM to store logs.

Link copied to clipboard

Whether to send taskrunner log info to Google Compute Engine VM serial console.

Link copied to clipboard

Indicates where to put logs. If this is not specified, the logs will not be uploaded. The supported resource type is: Google Cloud Storage: storage.googleapis.com/{bucket}/{object} bucket.storage.googleapis.com/{object}

Link copied to clipboard

The OAuth2 scopes to be requested by the taskrunner in order to access the Cloud Dataflow API.

Link copied to clipboard

The settings to pass to the parallel worker harness.

Link copied to clipboard

The streaming worker main class name.

Link copied to clipboard

The UNIX group ID on the worker VM to use for tasks launched by taskrunner; e.g. "wheel".

Link copied to clipboard

The UNIX user ID on the worker VM to use for tasks launched by taskrunner; e.g. "root".

Link copied to clipboard

The prefix of the resources the taskrunner should use for temporary storage. The supported resource type is: Google Cloud Storage: storage.googleapis.com/{bucket}/{object} bucket.storage.googleapis.com/{object}

Link copied to clipboard

The ID string of the VM.

Link copied to clipboard

The file to store the workflow in.