DatasetCsvOptionsArgs

data class DatasetCsvOptionsArgs(val delimiter: Output<String>? = null, val headerRow: Output<Boolean>? = null) : ConvertibleToJava<DatasetCsvOptionsArgs>

Csv options

Constructors

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

Properties

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

A single character that specifies the delimiter being used in the CSV file.

Link copied to clipboard
val headerRow: Output<Boolean>? = null

A variable that specifies whether the first row in the file is parsed as the header. If this value is false, column names are auto-generated.

Functions

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