R/generated_client.R
files_patch_preprocess_csv.Rd
Update some attributes of this Preprocess CSV
files_patch_preprocess_csv( id, file_id = NULL, in_place = NULL, detect_table_columns = NULL, force_character_set_conversion = NULL, include_header = NULL, column_delimiter = NULL )
id | integer required. The ID of the job created. |
---|---|
file_id | integer optional. The ID of the file. |
in_place | boolean optional. If true, the file is cleaned in place. If false, a new file ID is created. Defaults to true. |
detect_table_columns | boolean optional. If true, detect the table columns in the file including the sql types. If false, skip table column detection.Defaults to false. |
force_character_set_conversion | boolean optional. If true, the file will always be converted to UTF-8 and any character that cannot be converted will be discarded. If false, the character set conversion will only run if the detected character set is not compatible with UTF-8 (e.g., UTF-8, ASCII). |
include_header | boolean optional. A boolean value indicating whether or not the first row of the file is a header row. If not provided, will attempt to auto-detect whether a header row is present. |
column_delimiter | string optional. The column delimiter for the file. One of "comma", "tab", or "pipe". If not provided, the column delimiter will be auto-detected. |
A list containing the following elements:
integer, The ID of the job created.
integer, The ID of the file.
boolean, If true, the file is cleaned in place. If false, a new file ID is created. Defaults to true.
boolean, If true, detect the table columns in the file including the sql types. If false, skip table column detection.Defaults to false.
boolean, If true, the file will always be converted to UTF-8 and any character that cannot be converted will be discarded. If false, the character set conversion will only run if the detected character set is not compatible with UTF-8 (e.g., UTF-8, ASCII).
boolean, A boolean value indicating whether or not the first row of the file is a header row. If not provided, will attempt to auto-detect whether a header row is present.
string, The column delimiter for the file. One of "comma", "tab", or "pipe". If not provided, the column delimiter will be auto-detected.
boolean, The hidden status of the item.