Show / Hide Table of Contents

Class LaunchTemplateParameters

Parameters to provide to the template being launched. Note that the [metadata in the pipeline code] (https://cloud.google.com/dataflow/docs/guides/templates/creating-templates#metadata) determines which runtime parameters are valid.

Inheritance
object
LaunchTemplateParameters
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 LaunchTemplateParameters : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

Environment

The runtime environment for the job.

Declaration
[JsonProperty("environment")]
public virtual RuntimeEnvironment Environment { get; set; }
Property Value
Type Description
RuntimeEnvironment

JobName

Required. The job name to use for the created job. The name must match the regular expression [a-z]([-a-z0-9]{0,1022}[a-z0-9])?

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

Parameters

The runtime parameters to pass to the job.

Declaration
[JsonProperty("parameters")]
public virtual IDictionary<string, string> Parameters { get; set; }
Property Value
Type Description
IDictionary<string, string>

TransformNameMapping

Only applicable when updating a pipeline. Map of transform name prefixes of the job to be replaced to the corresponding name prefixes of the new job.

Declaration
[JsonProperty("transformNameMapping")]
public virtual IDictionary<string, string> TransformNameMapping { get; set; }
Property Value
Type Description
IDictionary<string, string>

Update

If set, replace the existing pipeline with the name specified by jobName with this pipeline, preserving state.

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

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX