class Google::Apis::MemcacheV1beta2::MemcacheParameters
The unique ID associated with this set of parameters. Users can use this id to determine if the parameters associated with the instance differ from the parameters associated with the nodes. A discrepancy between parameter ids can inform users that they may need to take action to apply parameters on nodes.
Attributes
id[RW]
Output only. Corresponds to the JSON property `id` @return [String]
params[RW]
User defined set of parameters to use in the memcached process. Corresponds to the JSON property `params` @return [Hash<String,String>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/memcache_v1beta2/classes.rb, line 1117 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/memcache_v1beta2/classes.rb, line 1122 def update!(**args) @id = args[:id] if args.key?(:id) @params = args[:params] if args.key?(:params) end