class Google::Apis::MemcacheV1::InstanceMessage
Attributes
code[RW]
A code that correspond to one type of user-facing message. Corresponds to the JSON property `code` @return [String]
message[RW]
Message on memcached instance which will be exposed to users. Corresponds to the JSON property `message` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/memcache_v1/classes.rb, line 813 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_v1/classes.rb, line 818 def update!(**args) @code = args[:code] if args.key?(:code) @message = args[:message] if args.key?(:message) end