class Google::Apis::SqladminV1beta4::ImportContext::CsvImportOptions

Options for importing data as CSV.

Attributes

columns[RW]

The columns to which CSV data is imported. If not specified, all columns of the database table are loaded with CSV data. Corresponds to the JSON property `columns` @return [Array<String>]

table[RW]

The table to which CSV data is imported. Corresponds to the JSON property `table` @return [String]

Public Class Methods

new(**args) click to toggle source
# File generated/google/apis/sqladmin_v1beta4/classes.rb, line 885
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/sqladmin_v1beta4/classes.rb, line 890
def update!(**args)
  @columns = args[:columns] if args.key?(:columns)
  @table = args[:table] if args.key?(:table)
end