Class: Google::Apis::SqladminV1beta4::ExportContext::SqlExportOptions::MysqlExportOptions

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/sqladmin_v1beta4/classes.rb,
generated/google/apis/sqladmin_v1beta4/representations.rb,
generated/google/apis/sqladmin_v1beta4/representations.rb

Overview

Options for exporting from MySQL.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ MysqlExportOptions

Returns a new instance of MysqlExportOptions



918
919
920
# File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 918

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#master_dataFixnum

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. If set to 2, the CHANGE MASTER TO statement is written as a SQL comment, and has no effect. All other values are ignored. Corresponds to the JSON property masterData

Returns:

  • (Fixnum)


916
917
918
# File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 916

def master_data
  @master_data
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



923
924
925
# File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 923

def update!(**args)
  @master_data = args[:master_data] if args.key?(:master_data)
end