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

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

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.



3397
3398
3399
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3397

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

Instance Attribute Details

#keyString

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

Returns:

  • (String)


3390
3391
3392
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3390

def key
  @key
end

#valueObject

Value for this parameter. Corresponds to the JSON property value

Returns:

  • (Object)


3395
3396
3397
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3395

def value
  @value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3402
3403
3404
3405
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3402

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