class Google::Apis::ApigeeV1::GoogleCloudApigeeV1Attribute
Key-value pair to store extra metadata.
Attributes
name[RW]
API key of the attribute. Corresponds to the JSON property `name` @return [String]
value[RW]
Value of the attribute. Corresponds to the JSON property `value` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/apigee_v1/classes.rb, line 1201 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 1206 def update!(**args) @name = args[:name] if args.key?(:name) @value = args[:value] if args.key?(:value) end