Class: Google::Apis::SqlV1beta4::ImportContext::CsvImportOptions
- Inherits:
-
Object
- Object
- Google::Apis::SqlV1beta4::ImportContext::CsvImportOptions
- 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
-
#columns ⇒ Array<String>
The columns to which CSV data is imported.
-
#table ⇒ String
The table to which CSV data is imported.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CsvImportOptions
constructor
A new instance of CsvImportOptions.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ CsvImportOptions
Returns a new instance of CsvImportOptions
1314 1315 1316 |
# File 'generated/google/apis/sql_v1beta4/classes.rb', line 1314 def initialize(**args) update!(**args) end |
Instance Attribute Details
#columns ⇒ Array<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
1307 1308 1309 |
# File 'generated/google/apis/sql_v1beta4/classes.rb', line 1307 def columns @columns end |
#table ⇒ String
The table to which CSV data is imported.
Corresponds to the JSON property table
1312 1313 1314 |
# File 'generated/google/apis/sql_v1beta4/classes.rb', line 1312 def table @table end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1319 1320 1321 1322 |
# File 'generated/google/apis/sql_v1beta4/classes.rb', line 1319 def update!(**args) @columns = args[:columns] if args.key?(:columns) @table = args[:table] if args.key?(:table) end |