Class: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaParameterMapField
- Inherits:
-
Object
- Object
- Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaParameterMapField
- 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
-
#literal_value ⇒ Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaValueType
The type of the parameter.
-
#reference_key ⇒ String
Referencing one of the Integration variables.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudIntegrationsV1alphaParameterMapField
constructor
A new instance of GoogleCloudIntegrationsV1alphaParameterMapField.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudIntegrationsV1alphaParameterMapField
Returns a new instance of GoogleCloudIntegrationsV1alphaParameterMapField.
8384 8385 8386 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 8384 def initialize(**args) update!(**args) end |
Instance Attribute Details
#literal_value ⇒ Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaValueType
The type of the parameter.
Corresponds to the JSON property literalValue
8377 8378 8379 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 8377 def literal_value @literal_value end |
#reference_key ⇒ String
Referencing one of the Integration variables.
Corresponds to the JSON property referenceKey
8382 8383 8384 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 8382 def reference_key @reference_key end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
8389 8390 8391 8392 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 8389 def update!(**args) @literal_value = args[:literal_value] if args.key?(:literal_value) @reference_key = args[:reference_key] if args.key?(:reference_key) end |