class Google::Apis::SqladminV1beta4::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 generated/google/apis/sqladmin_v1beta4/classes.rb, line 1403 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File generated/google/apis/sqladmin_v1beta4/classes.rb, line 1408 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