class Google::Apis::SqladminV1::SqlExternalSyncSettingError
External primary instance migration setting error.
Attributes
detail[RW]
Additional information about the error encountered. Corresponds to the JSON property `detail` @return [String]
kind[RW]
Can be *sql#externalSyncSettingError* or *sql#externalSyncSettingWarning*. Corresponds to the JSON property `kind` @return [String]
type[RW]
Identifies the specific error that occurred. Corresponds to the JSON property `type` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/sqladmin_v1/classes.rb, line 2858 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 2863 def update!(**args) @detail = args[:detail] if args.key?(:detail) @kind = args[:kind] if args.key?(:kind) @type = args[:type] if args.key?(:type) end