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

WorkerSettings

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

Provides data to pass through to the worker harness.

interface WorkerSettings {
baseUrl?: string;
reportingEnabled?: boolean;
servicePath?: string;
shuffleServicePath?: string;
tempStoragePrefix?: string;
workerId?: string;
}

§Properties

§
baseUrl?: string
[src]

The base URL for 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/"

§
reportingEnabled?: boolean
[src]

Whether to send work progress updates to the service.

§
servicePath?: string
[src]

The Cloud Dataflow service path relative to the root URL, for example, "dataflow/v1b3/projects".

§
shuffleServicePath?: string
[src]

The Shuffle service path relative to the root URL, for example, "shuffle/v1beta1".

§
tempStoragePrefix?: string
[src]

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

§
workerId?: string
[src]

The ID of the worker running this pipeline.