class Google::Apis::MemcacheV1beta2::UpdateParametersRequest
Request for UpdateParameters.
Attributes
parameters[RW]
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. Corresponds to the JSON property `parameters` @return [Google::Apis::MemcacheV1beta2::MemcacheParameters]
update_mask[RW]
Required. Mask of fields to update. Corresponds to the JSON property `updateMask` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/memcache_v1beta2/classes.rb, line 1465 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 1470 def update!(**args) @parameters = args[:parameters] if args.key?(:parameters) @update_mask = args[:update_mask] if args.key?(:update_mask) end