class Google::Apis::DatapipelinesV1::GoogleCloudDatapipelinesV1LaunchTemplateParameters
Parameters to provide to the template being launched.
Attributes
The environment values to set at runtime. Corresponds to the JSON property ‘environment` @return [Google::Apis::DatapipelinesV1::GoogleCloudDatapipelinesV1RuntimeEnvironment]
Required. The job name to use for the created job. Corresponds to the JSON property ‘jobName` @return [String]
The runtime parameters to pass to the job. Corresponds to the JSON property ‘parameters` @return [Hash<String,String>]
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>]
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]
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
# File lib/google/apis/datapipelines_v1/classes.rb, line 390 def initialize(**args) update!(**args) end
Public Instance Methods
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