class Google::Apis::DataflowV1b3::Parameter

Structured data associated with this message.

Attributes

key[RW]

Key or name for this parameter. Corresponds to the JSON property `key` @return [String]

value[RW]

Value for this parameter. Corresponds to the JSON property `value` @return [Object]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dataflow_v1b3/classes.rb, line 3280
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/dataflow_v1b3/classes.rb, line 3285
def update!(**args)
  @key = args[:key] if args.key?(:key)
  @value = args[:value] if args.key?(:value)
end