class Google::Apis::SqladminV1::SqlInstancesStartExternalSyncRequest
Instance start external sync request.
Attributes
mysql_sync_config[RW]
MySQL-specific external server sync settings. Corresponds to the JSON property `mysqlSyncConfig` @return [Google::Apis::SqladminV1::MySqlSyncConfig]
skip_verification[RW]
Whether to skip the verification step (VESS). Corresponds to the JSON property `skipVerification` @return [Boolean]
skip_verification?[RW]
Whether to skip the verification step (VESS). Corresponds to the JSON property `skipVerification` @return [Boolean]
sync_mode[RW]
External sync mode. Corresponds to the JSON property `syncMode` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/sqladmin_v1/classes.rb, line 2909 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 2914 def update!(**args) @mysql_sync_config = args[:mysql_sync_config] if args.key?(:mysql_sync_config) @skip_verification = args[:skip_verification] if args.key?(:skip_verification) @sync_mode = args[:sync_mode] if args.key?(:sync_mode) end