Class: Google::Apis::DataflowV1b3::RuntimeMetadata
- Inherits:
-
Object
- Object
- Google::Apis::DataflowV1b3::RuntimeMetadata
- 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
RuntimeMetadata describing a runtime environment.
Instance Attribute Summary collapse
-
#parameters ⇒ Array<Google::Apis::DataflowV1b3::ParameterMetadata>
The parameters for the template.
-
#sdk_info ⇒ Google::Apis::DataflowV1b3::SdkInfo
SDK Information.
Instance Method Summary collapse
-
#initialize(**args) ⇒ RuntimeMetadata
constructor
A new instance of RuntimeMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ RuntimeMetadata
Returns a new instance of RuntimeMetadata.
4603 4604 4605 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 4603 def initialize(**args) update!(**args) end |
Instance Attribute Details
#parameters ⇒ Array<Google::Apis::DataflowV1b3::ParameterMetadata>
The parameters for the template.
Corresponds to the JSON property parameters
4596 4597 4598 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 4596 def parameters @parameters end |
#sdk_info ⇒ Google::Apis::DataflowV1b3::SdkInfo
SDK Information.
Corresponds to the JSON property sdkInfo
4601 4602 4603 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 4601 def sdk_info @sdk_info end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4608 4609 4610 4611 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 4608 def update!(**args) @parameters = args[:parameters] if args.key?(:parameters) @sdk_info = args[:sdk_info] if args.key?(:sdk_info) end |