BulkAPI contains data operations.
|
|
dictionary
|
import_data_in_new_table(self,
table_name,
file_type,
auto_identify,
file_path,
config={ } )
Create a new table and import the data contained in the mentioned
file into the created table. |
source code
|
|
string
|
|
dictionary
|
|
dictionary
|
import_data(self,
view_id,
import_type,
file_type,
auto_identify,
file_path,
config={ } )
Import the data contained in the mentioned file into the table. |
source code
|
|
dictionary
|
import_raw_data(self,
view_id,
import_type,
file_type,
auto_identify,
data,
config={ } )
Import the raw data provided into the table. |
source code
|
|
string
|
import_bulk_data_in_new_table(self,
table_name,
file_type,
auto_identify,
file_path,
config={ } )
Asynchronously create a new table and import the data contained in
the mentioned file into the created table. |
source code
|
|
string
|
import_bulk_data(self,
view_id,
import_type,
file_type,
auto_identify,
file_path,
config={ } )
Asynchronously import the data contained in the mentioned file into
the table. |
source code
|
|
string
|
import_data_as_batches(self,
view_id,
import_type,
auto_identify,
file_path,
batch_size,
config={ } ,
tool_config={ } )
Asynchronously import the data contained in the mentioned file into
the table. |
source code
|
|
dictionary
|
|
|
export_data(self,
view_id,
response_format,
file_path,
config={ } )
Export the mentioned table (or) view data. |
source code
|
|
string
|
|
string
|
|
dictionary
|
|
|
|