Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1KeyValueMap
- Inherits:
-
Object
- Object
- Google::Apis::ApigeeV1::GoogleCloudApigeeV1KeyValueMap
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/apigee_v1/classes.rb,
generated/google/apis/apigee_v1/representations.rb,
generated/google/apis/apigee_v1/representations.rb
Overview
A collection of key, value string pairs
Instance Attribute Summary collapse
-
#encrypted ⇒ Boolean
(also: #encrypted?)
Optional.
-
#name ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudApigeeV1KeyValueMap
constructor
A new instance of GoogleCloudApigeeV1KeyValueMap.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudApigeeV1KeyValueMap
Returns a new instance of GoogleCloudApigeeV1KeyValueMap.
3343 3344 3345 |
# File 'generated/google/apis/apigee_v1/classes.rb', line 3343 def initialize(**args) update!(**args) end |
Instance Attribute Details
#encrypted ⇒ Boolean Also known as: encrypted?
Optional. If true
entry values will be encrypted.
Corresponds to the JSON property encrypted
3335 3336 3337 |
# File 'generated/google/apis/apigee_v1/classes.rb', line 3335 def encrypted @encrypted end |
#name ⇒ String
Required. The id of the key value map.
Corresponds to the JSON property name
3341 3342 3343 |
# File 'generated/google/apis/apigee_v1/classes.rb', line 3341 def name @name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3348 3349 3350 3351 |
# File 'generated/google/apis/apigee_v1/classes.rb', line 3348 def update!(**args) @encrypted = args[:encrypted] if args.key?(:encrypted) @name = args[:name] if args.key?(:name) end |