Class: Google::Apis::SqladminV1::ImportContext::CsvImportOptions

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

Overview

Options for importing data as CSV.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ CsvImportOptions

Returns a new instance of CsvImportOptions.



1550
1551
1552
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 1550

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

Instance Attribute Details

#columnsArray<String>

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

Returns:

  • (Array<String>)


1543
1544
1545
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 1543

def columns
  @columns
end

#tableString

The table to which CSV data is imported. Corresponds to the JSON property table

Returns:

  • (String)


1548
1549
1550
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 1548

def table
  @table
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1555
1556
1557
1558
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 1555

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