Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

TaskRunnerSettings

import type { TaskRunnerSettings } from "https://googleapis.deno.dev/v1/dataflow:v1b3.ts";

Taskrunner configuration settings.

interface TaskRunnerSettings {
alsologtostderr?: boolean;
baseTaskDir?: string;
baseUrl?: string;
commandlinesFileName?: string;
continueOnException?: boolean;
dataflowApiVersion?: string;
harnessCommand?: string;
languageHint?: string;
logDir?: string;
logToSerialconsole?: boolean;
logUploadLocation?: string;
oauthScopes?: string[];
parallelWorkerSettings?: WorkerSettings;
streamingWorkerMainClass?: string;
taskGroup?: string;
taskUser?: string;
tempStoragePrefix?: string;
vmId?: string;
workflowFileName?: string;
}

§Properties

§
alsologtostderr?: boolean
[src]

Whether to also send taskrunner log info to stderr.

§
baseTaskDir?: string
[src]

The location on the worker for task-specific subdirectories.

§
baseUrl?: string
[src]

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/"

§
commandlinesFileName?: string
[src]

The file to store preprocessing commands in.

§
continueOnException?: boolean
[src]

Whether to continue taskrunner if an exception is hit.

§
dataflowApiVersion?: string
[src]

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

§
harnessCommand?: string
[src]

The command to launch the worker harness.

§
languageHint?: string
[src]

The suggested backend language.

§
logDir?: string
[src]

The directory on the VM to store logs.

§
logToSerialconsole?: boolean
[src]

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

§
logUploadLocation?: string
[src]

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}

§
oauthScopes?: string[]
[src]

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

§
parallelWorkerSettings?: WorkerSettings
[src]

The settings to pass to the parallel worker harness.

§
streamingWorkerMainClass?: string
[src]

The streaming worker main class name.

§
taskGroup?: string
[src]

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

§
taskUser?: string
[src]

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

§
tempStoragePrefix?: string
[src]

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}

§
vmId?: string
[src]

The ID string of the VM.

§
workflowFileName?: string
[src]

The file to store the workflow in.