class Google::Apis::DataflowV1b3::LaunchTemplateParameters

Parameters to provide to the template being launched.

Attributes

environment[RW]

The environment values to set at runtime. Corresponds to the JSON property `environment` @return [Google::Apis::DataflowV1b3::RuntimeEnvironment]

job_name[RW]

Required. The job name to use for the created job. Corresponds to the JSON property `jobName` @return [String]

parameters[RW]

The runtime parameters to pass to the job. Corresponds to the JSON property `parameters` @return [Hash<String,String>]

transform_name_mapping[RW]

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. Corresponds to the JSON property `transformNameMapping` @return [Hash<String,String>]

update[RW]

If set, replace the existing pipeline with the name specified by jobName with this pipeline, preserving state. Corresponds to the JSON property `update` @return [Boolean]

update?[RW]

If set, replace the existing pipeline with the name specified by jobName with this pipeline, preserving state. Corresponds to the JSON property `update` @return [Boolean]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dataflow_v1b3/classes.rb, line 2616
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/dataflow_v1b3/classes.rb, line 2621
def update!(**args)
  @environment = args[:environment] if args.key?(:environment)
  @job_name = args[:job_name] if args.key?(:job_name)
  @parameters = args[:parameters] if args.key?(:parameters)
  @transform_name_mapping = args[:transform_name_mapping] if args.key?(:transform_name_mapping)
  @update = args[:update] if args.key?(:update)
end