Class: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaParameterMapField

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/integrations_v1/classes.rb,
lib/google/apis/integrations_v1/representations.rb,
lib/google/apis/integrations_v1/representations.rb

Overview

Field represents either the key or value in an entry.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudIntegrationsV1alphaParameterMapField

Returns a new instance of GoogleCloudIntegrationsV1alphaParameterMapField.



9752
9753
9754
# File 'lib/google/apis/integrations_v1/classes.rb', line 9752

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

Instance Attribute Details

#literal_valueGoogle::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaValueType

The type of the parameter. Corresponds to the JSON property literalValue



9745
9746
9747
# File 'lib/google/apis/integrations_v1/classes.rb', line 9745

def literal_value
  @literal_value
end

#reference_keyString

Referencing one of the Integration variables. Corresponds to the JSON property referenceKey

Returns:

  • (String)


9750
9751
9752
# File 'lib/google/apis/integrations_v1/classes.rb', line 9750

def reference_key
  @reference_key
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



9757
9758
9759
9760
# File 'lib/google/apis/integrations_v1/classes.rb', line 9757

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