Class: Google::Apis::MemcacheV1beta2::MemcacheParameters

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/memcache_v1beta2/classes.rb,
lib/google/apis/memcache_v1beta2/representations.rb,
lib/google/apis/memcache_v1beta2/representations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ MemcacheParameters

Returns a new instance of MemcacheParameters.



1118
1119
1120
# File 'lib/google/apis/memcache_v1beta2/classes.rb', line 1118

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#idString

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

Returns:

  • (String)


1111
1112
1113
# File 'lib/google/apis/memcache_v1beta2/classes.rb', line 1111

def id
  @id
end

#paramsHash<String,String>

User defined set of parameters to use in the memcached process. Corresponds to the JSON property params

Returns:

  • (Hash<String,String>)


1116
1117
1118
# File 'lib/google/apis/memcache_v1beta2/classes.rb', line 1116

def params
  @params
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1123
1124
1125
1126
# File 'lib/google/apis/memcache_v1beta2/classes.rb', line 1123

def update!(**args)
  @id = args[:id] if args.key?(:id)
  @params = args[:params] if args.key?(:params)
end