class Google::Apis::SqladminV1beta4::SqlInstancesVerifyExternalSyncSettingsRequest
Attributes
MySQL-specific external server sync settings. Corresponds to the JSON property `mysqlSyncConfig` @return [Google::Apis::SqladminV1beta4::MySqlSyncConfig]
External sync mode Corresponds to the JSON property `syncMode` @return [String]
Flag
to enable verifying connection only Corresponds to the JSON property `verifyConnectionOnly` @return [Boolean]
Flag
to enable verifying connection only Corresponds to the JSON property `verifyConnectionOnly` @return [Boolean]
Optional. Flag
to verify settings required by replication setup only Corresponds to the JSON property `verifyReplicationOnly` @return [Boolean]
Optional. Flag
to verify settings required by replication setup only Corresponds to the JSON property `verifyReplicationOnly` @return [Boolean]
Public Class Methods
# File lib/google/apis/sqladmin_v1beta4/classes.rb, line 3064 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/sqladmin_v1beta4/classes.rb, line 3069 def update!(**args) @mysql_sync_config = args[:mysql_sync_config] if args.key?(:mysql_sync_config) @sync_mode = args[:sync_mode] if args.key?(:sync_mode) @verify_connection_only = args[:verify_connection_only] if args.key?(:verify_connection_only) @verify_replication_only = args[:verify_replication_only] if args.key?(:verify_replication_only) end