Class: Google::Apis::DataflowV1b3::Parameter
- Inherits:
-
Object
- Object
- Google::Apis::DataflowV1b3::Parameter
- 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
Structured data associated with this message.
Instance Attribute Summary collapse
-
#key ⇒ String
Key or name for this parameter.
-
#value ⇒ Object
Value for this parameter.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Parameter
constructor
A new instance of Parameter.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Parameter
Returns a new instance of Parameter.
3738 3739 3740 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 3738 def initialize(**args) update!(**args) end |
Instance Attribute Details
#key ⇒ String
Key or name for this parameter.
Corresponds to the JSON property key
3731 3732 3733 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 3731 def key @key end |
#value ⇒ Object
Value for this parameter.
Corresponds to the JSON property value
3736 3737 3738 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 3736 def value @value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3743 3744 3745 3746 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 3743 def update!(**args) @key = args[:key] if args.key?(:key) @value = args[:value] if args.key?(:value) end |