class Google::Apis::SqladminV1beta4::SqlInstancesVerifyExternalSyncSettingsResponse

Instance verify external sync settings response.

Attributes

errors[RW]

List of migration violations. Corresponds to the JSON property `errors` @return [Array<Google::Apis::SqladminV1beta4::SqlExternalSyncSettingError>]

kind[RW]

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

warnings[RW]

List of migration warnings. Corresponds to the JSON property `warnings` @return [Array<Google::Apis::SqladminV1beta4::SqlExternalSyncSettingError>]

Public Class Methods

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