Class: Google::Apis::DataflowV1b3::Parameter

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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Parameter

Returns a new instance of Parameter.



3783
3784
3785
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 3783

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

Instance Attribute Details

#keyString

Key or name for this parameter. Corresponds to the JSON property key

Returns:

  • (String)


3776
3777
3778
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 3776

def key
  @key
end

#valueObject

Value for this parameter. Corresponds to the JSON property value

Returns:

  • (Object)


3781
3782
3783
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 3781

def value
  @value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3788
3789
3790
3791
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 3788

def update!(**args)
  @key = args[:key] if args.key?(:key)
  @value = args[:value] if args.key?(:value)
end