Class: Google::Apis::MemcacheV1::MemcacheParameters
- Inherits:
-
Object
- Object
- Google::Apis::MemcacheV1::MemcacheParameters
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/memcache_v1/classes.rb,
lib/google/apis/memcache_v1/representations.rb,
lib/google/apis/memcache_v1/representations.rb
Overview
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.
Instance Attribute Summary collapse
-
#id ⇒ String
Output only.
-
#params ⇒ Hash<String,String>
User defined set of parameters to use in the memcached process.
Instance Method Summary collapse
-
#initialize(**args) ⇒ MemcacheParameters
constructor
A new instance of MemcacheParameters.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ MemcacheParameters
Returns a new instance of MemcacheParameters.
1081 1082 1083 |
# File 'lib/google/apis/memcache_v1/classes.rb', line 1081 def initialize(**args) update!(**args) end |
Instance Attribute Details
#id ⇒ String
Output only.
Corresponds to the JSON property id
1074 1075 1076 |
# File 'lib/google/apis/memcache_v1/classes.rb', line 1074 def id @id end |
#params ⇒ Hash<String,String>
User defined set of parameters to use in the memcached process.
Corresponds to the JSON property params
1079 1080 1081 |
# File 'lib/google/apis/memcache_v1/classes.rb', line 1079 def params @params end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1086 1087 1088 1089 |
# File 'lib/google/apis/memcache_v1/classes.rb', line 1086 def update!(**args) @id = args[:id] if args.key?(:id) @params = args[:params] if args.key?(:params) end |