Class: Google::Apis::DataflowV1b3::LaunchTemplateParameters
- Inherits:
-
Object
- Object
- Google::Apis::DataflowV1b3::LaunchTemplateParameters
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dataflow_v1b3/classes.rb,
generated/google/apis/dataflow_v1b3/representations.rb,
generated/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.
Instance Method Summary collapse
-
#initialize(**args) ⇒ LaunchTemplateParameters
constructor
A new instance of LaunchTemplateParameters.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ LaunchTemplateParameters
Returns a new instance of LaunchTemplateParameters
1961 1962 1963 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1961 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
1949 1950 1951 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1949 def environment @environment end |
#job_name ⇒ String
Required. The job name to use for the created job.
Corresponds to the JSON property jobName
1954 1955 1956 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1954 def job_name @job_name end |
#parameters ⇒ Hash<String,String>
The runtime parameters to pass to the job.
Corresponds to the JSON property parameters
1959 1960 1961 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1959 def parameters @parameters end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1966 1967 1968 1969 1970 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1966 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) end |