Class: Google::Apis::DataflowV1b3::LaunchTemplateParameters
- Inherits:
-
Object
- Object
- Google::Apis::DataflowV1b3::LaunchTemplateParameters
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dataflow_v1b3/classes.rb,
lib/google/apis/dataflow_v1b3/representations.rb,
lib/google/apis/dataflow_v1b3/representations.rb
Overview
Parameters to provide to the template being launched.
Instance Attribute Summary collapse
-
#environment ⇒ Google::Apis::DataflowV1b3::RuntimeEnvironment
The environment values to set at runtime.
-
#job_name ⇒ String
Required.
-
#parameters ⇒ Hash<String,String>
The runtime parameters to pass to the job.
-
#transform_name_mapping ⇒ Hash<String,String>
Only applicable when updating a pipeline.
-
#update ⇒ Boolean
(also: #update?)
If set, replace the existing pipeline with the name specified by jobName with this pipeline, preserving state.
Instance Method Summary collapse
-
#initialize(**args) ⇒ LaunchTemplateParameters
constructor
A new instance of LaunchTemplateParameters.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ LaunchTemplateParameters
Returns a new instance of LaunchTemplateParameters.
2623 2624 2625 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 2623 def initialize(**args) update!(**args) end |
Instance Attribute Details
#environment ⇒ Google::Apis::DataflowV1b3::RuntimeEnvironment
The environment values to set at runtime.
Corresponds to the JSON property environment
2598 2599 2600 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 2598 def environment @environment end |
#job_name ⇒ String
Required. The job name to use for the created job.
Corresponds to the JSON property jobName
2603 2604 2605 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 2603 def job_name @job_name end |
#parameters ⇒ Hash<String,String>
The runtime parameters to pass to the job.
Corresponds to the JSON property parameters
2608 2609 2610 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 2608 def parameters @parameters end |
#transform_name_mapping ⇒ Hash<String,String>
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
2614 2615 2616 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 2614 def transform_name_mapping @transform_name_mapping end |
#update ⇒ Boolean Also known as: update?
If set, replace the existing pipeline with the name specified by jobName with
this pipeline, preserving state.
Corresponds to the JSON property update
2620 2621 2622 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 2620 def update @update end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2628 2629 2630 2631 2632 2633 2634 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 2628 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 |