class Google::Apis::ApigeeV1::GoogleCloudApigeeV1KeyValueMap

A collection of key, value string pairs

Attributes

encrypted[RW]

Optional. If `true` entry values will be encrypted. Corresponds to the JSON property `encrypted` @return [Boolean]

encrypted?[RW]

Optional. If `true` entry values will be encrypted. Corresponds to the JSON property `encrypted` @return [Boolean]

name[RW]

Required. The id of the key value map. Corresponds to the JSON property `name` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/apigee_v1/classes.rb, line 3924
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/apigee_v1/classes.rb, line 3929
def update!(**args)
  @encrypted = args[:encrypted] if args.key?(:encrypted)
  @name = args[:name] if args.key?(:name)
end