class Google::Apis::MemcacheV1beta2::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_v1beta2/classes.rb, line 849
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 854
def update!(**args)
  @code = args[:code] if args.key?(:code)
  @message = args[:message] if args.key?(:message)
end