TableCsvArgs

data class TableCsvArgs(val delimiter: Output<String>? = null, val headerList: Output<List<String>>? = null) : ConvertibleToJava<TableCsvArgs>

The options for imported source files in CSV format. The values are Delimiter and HeaderList.

Constructors

Link copied to clipboard
constructor(delimiter: Output<String>? = null, headerList: Output<List<String>>? = null)

Properties

Link copied to clipboard
val delimiter: Output<String>? = null

The delimiter used for separating items in the CSV file being imported.

Link copied to clipboard
val headerList: Output<List<String>>? = null

List of the headers used to specify a common header for all source CSV files being imported. If this field is specified then the first line of each CSV file is treated as data instead of the header. If this field is not specified the the first line of each CSV file is treated as the header.

Functions

Link copied to clipboard
open override fun toJava(): TableCsvArgs