class Google::Apis::SqladminV1beta4::ExportContext::SqlExportOptions::MysqlExportOptions
Options for exporting from MySQL.
Attributes
master_data[RW]
Option to include SQL statement required to set up replication. If set to 1, the dump file includes a CHANGE MASTER TO statement with the binary log coordinates, and –set-gtid-purged is set to ON. If set to 2, the CHANGE MASTER TO statement is written as a SQL comment and has no effect. If set to any value other than 1, –set-gtid-purged is set to OFF. Corresponds to the JSON property `masterData` @return [Fixnum]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/sqladmin_v1beta4/classes.rb, line 1274 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 1279 def update!(**args) @master_data = args[:master_data] if args.key?(:master_data) end