class Google::Apis::SqladminV1beta4::SqlExternalSyncSettingError

External primary instance migration setting error/warning.

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_v1beta4/classes.rb, line 2860
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_v1beta4/classes.rb, line 2865
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