Class: Google::Apis::MemcacheV1beta2::MemcacheParameters
- Inherits:
-
Object
- Object
- Google::Apis::MemcacheV1beta2::MemcacheParameters
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/memcache_v1beta2/classes.rb,
generated/google/apis/memcache_v1beta2/representations.rb,
generated/google/apis/memcache_v1beta2/representations.rb
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.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ MemcacheParameters
Returns a new instance of MemcacheParameters.
1100 1101 1102 |
# File 'generated/google/apis/memcache_v1beta2/classes.rb', line 1100 def initialize(**args) update!(**args) end |
Instance Attribute Details
#id ⇒ String
Output only. 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 and any action needs
to be taken to apply parameters on nodes.
Corresponds to the JSON property id
1093 1094 1095 |
# File 'generated/google/apis/memcache_v1beta2/classes.rb', line 1093 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
1098 1099 1100 |
# File 'generated/google/apis/memcache_v1beta2/classes.rb', line 1098 def params @params end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1105 1106 1107 1108 |
# File 'generated/google/apis/memcache_v1beta2/classes.rb', line 1105 def update!(**args) @id = args[:id] if args.key?(:id) @params = args[:params] if args.key?(:params) end |