Class: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaParameterMapField
- Inherits:
-
Object
- Object
- Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaParameterMapField
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/integrations_v1alpha/classes.rb,
lib/google/apis/integrations_v1alpha/representations.rb,
lib/google/apis/integrations_v1alpha/representations.rb
Overview
Field represents either the key or value in an entry.
Instance Attribute Summary collapse
-
#literal_value ⇒ Google::Apis::IntegrationsV1alpha::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.
7917 7918 7919 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7917 def initialize(**args) update!(**args) end |
Instance Attribute Details
#literal_value ⇒ Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaValueType
The type of the parameter.
Corresponds to the JSON property literalValue
7910 7911 7912 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7910 def literal_value @literal_value end |
#reference_key ⇒ String
Referencing one of the Integration variables.
Corresponds to the JSON property referenceKey
7915 7916 7917 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7915 def reference_key @reference_key end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7922 7923 7924 7925 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7922 def update!(**args) @literal_value = args[:literal_value] if args.key?(:literal_value) @reference_key = args[:reference_key] if args.key?(:reference_key) end |