Class: Google::Apis::DatapipelinesV1::GoogleCloudDatapipelinesV1LaunchTemplateParameters
- Inherits:
-
Object
- Object
- Google::Apis::DatapipelinesV1::GoogleCloudDatapipelinesV1LaunchTemplateParameters
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/datapipelines_v1/classes.rb,
lib/google/apis/datapipelines_v1/representations.rb,
lib/google/apis/datapipelines_v1/representations.rb
Overview
Parameters to provide to the template being launched.
Instance Attribute Summary collapse
-
#environment ⇒ Google::Apis::DatapipelinesV1::GoogleCloudDatapipelinesV1RuntimeEnvironment
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>
Map of transform name prefixes of the job to be replaced to the corresponding name prefixes of the new job.
-
#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) ⇒ GoogleCloudDatapipelinesV1LaunchTemplateParameters
constructor
A new instance of GoogleCloudDatapipelinesV1LaunchTemplateParameters.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDatapipelinesV1LaunchTemplateParameters
Returns a new instance of GoogleCloudDatapipelinesV1LaunchTemplateParameters.
390 391 392 |
# File 'lib/google/apis/datapipelines_v1/classes.rb', line 390 def initialize(**args) update!(**args) end |
Instance Attribute Details
#environment ⇒ Google::Apis::DatapipelinesV1::GoogleCloudDatapipelinesV1RuntimeEnvironment
The environment values to set at runtime.
Corresponds to the JSON property environment
365 366 367 |
# File 'lib/google/apis/datapipelines_v1/classes.rb', line 365 def environment @environment end |
#job_name ⇒ String
Required. The job name to use for the created job.
Corresponds to the JSON property jobName
370 371 372 |
# File 'lib/google/apis/datapipelines_v1/classes.rb', line 370 def job_name @job_name end |
#parameters ⇒ Hash<String,String>
The runtime parameters to pass to the job.
Corresponds to the JSON property parameters
375 376 377 |
# File 'lib/google/apis/datapipelines_v1/classes.rb', line 375 def parameters @parameters end |
#transform_name_mapping ⇒ 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
381 382 383 |
# File 'lib/google/apis/datapipelines_v1/classes.rb', line 381 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
387 388 389 |
# File 'lib/google/apis/datapipelines_v1/classes.rb', line 387 def update @update end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
395 396 397 398 399 400 401 |
# 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 |