Show / Hide Table of Contents

Class WorkerSettings

Provides data to pass through to the worker harness.

Inheritance
object
WorkerSettings
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.Dataflow.v1b3.Data
Assembly: Google.Apis.Dataflow.v1b3.dll
Syntax
public class WorkerSettings : IDirectResponseSchema

Properties

BaseUrl

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

Declaration
[JsonProperty("baseUrl")]
public virtual string BaseUrl { get; set; }
Property Value
Type Description
string

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
string

ReportingEnabled

Whether to send work progress updates to the service.

Declaration
[JsonProperty("reportingEnabled")]
public virtual bool? ReportingEnabled { get; set; }
Property Value
Type Description
bool?

ServicePath

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

Declaration
[JsonProperty("servicePath")]
public virtual string ServicePath { get; set; }
Property Value
Type Description
string

ShuffleServicePath

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

Declaration
[JsonProperty("shuffleServicePath")]
public virtual string ShuffleServicePath { get; set; }
Property Value
Type Description
string

TempStoragePrefix

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}

Declaration
[JsonProperty("tempStoragePrefix")]
public virtual string TempStoragePrefix { get; set; }
Property Value
Type Description
string

WorkerId

The ID of the worker running this pipeline.

Declaration
[JsonProperty("workerId")]
public virtual string WorkerId { get; set; }
Property Value
Type Description
string

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX