Class: Google::Apis::SqlV1beta4::ImportContext::CsvImportOptions

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

Overview

Options for importing data as CSV.

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) ⇒ CsvImportOptions

Returns a new instance of CsvImportOptions.



1333
1334
1335
# File 'generated/google/apis/sql_v1beta4/classes.rb', line 1333

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>)


1326
1327
1328
# File 'generated/google/apis/sql_v1beta4/classes.rb', line 1326

def columns
  @columns
end

#tableString

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

Returns:

  • (String)


1331
1332
1333
# File 'generated/google/apis/sql_v1beta4/classes.rb', line 1331

def table
  @table
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1338
1339
1340
1341
# File 'generated/google/apis/sql_v1beta4/classes.rb', line 1338

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