Class: Google::Apis::DataflowV1b3::LaunchTemplateParameters

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ LaunchTemplateParameters

Returns a new instance of LaunchTemplateParameters



1922
1923
1924
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1922

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#environmentGoogle::Apis::DataflowV1b3::RuntimeEnvironment

The environment values to set at runtime. Corresponds to the JSON property environment



1910
1911
1912
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1910

def environment
  @environment
end

#job_nameString

Required. The job name to use for the created job. Corresponds to the JSON property jobName

Returns:

  • (String)


1915
1916
1917
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1915

def job_name
  @job_name
end

#parametersHash<String,String>

The runtime parameters to pass to the job. Corresponds to the JSON property parameters

Returns:

  • (Hash<String,String>)


1920
1921
1922
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1920

def parameters
  @parameters
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1927
1928
1929
1930
1931
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 1927

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