class Google::Apis::SqladminV1::OperationError

Database instance operation error.

Attributes

code[RW]

Identifies the specific error that occurred. Corresponds to the JSON property `code` @return [String]

kind[RW]

This is always **sql#operationError**. Corresponds to the JSON property `kind` @return [String]

message[RW]

Additional information about the error encountered. Corresponds to the JSON property `message` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/sqladmin_v1/classes.rb, line 2427
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 2432
def update!(**args)
  @code = args[:code] if args.key?(:code)
  @kind = args[:kind] if args.key?(:kind)
  @message = args[:message] if args.key?(:message)
end