class Google::Apis::SqladminV1::SqlInstancesVerifyExternalSyncSettingsResponse
Instance verify external sync settings response.
Attributes
errors[RW]
List of migration violations. Corresponds to the JSON property `errors` @return [Array<Google::Apis::SqladminV1::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::SqladminV1::SqlExternalSyncSettingError>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/sqladmin_v1/classes.rb, line 2979 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 2984 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