class Google::Apis::SqladminV1::ApiWarning

An Admin API warning message.

Attributes

code[RW]

Code to uniquely identify the warning type. Corresponds to the JSON property `code` @return [String]

message[RW]

The warning message. Corresponds to the JSON property `message` @return [String]

region[RW]

The region name for REGION_UNREACHABLE warning. Corresponds to the JSON property `region` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/sqladmin_v1/classes.rb, line 82
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/sqladmin_v1/classes.rb, line 87
def update!(**args)
  @code = args[:code] if args.key?(:code)
  @message = args[:message] if args.key?(:message)
  @region = args[:region] if args.key?(:region)
end