class Google::Apis::DatapipelinesV1::GoogleCloudDatapipelinesV1LaunchTemplateParameters

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::DatapipelinesV1::GoogleCloudDatapipelinesV1RuntimeEnvironment]

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]

Map of transform name prefixes of the job to be replaced to the corresponding name prefixes of the new job. Only applicable when updating a pipeline. 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/datapipelines_v1/classes.rb, line 390
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/datapipelines_v1/classes.rb, line 395
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