GoogleCloudDataplexV1StorageFormatCsvOptionsArgs

data class GoogleCloudDataplexV1StorageFormatCsvOptionsArgs(val delimiter: Output<String>? = null, val encoding: Output<String>? = null, val headerRows: Output<Int>? = null, val quote: Output<String>? = null) : ConvertibleToJava<GoogleCloudDataplexV1StorageFormatCsvOptionsArgs>

Describes CSV and similar semi-structured data formats.

Constructors

fun GoogleCloudDataplexV1StorageFormatCsvOptionsArgs(delimiter: Output<String>? = null, encoding: Output<String>? = null, headerRows: Output<Int>? = null, quote: Output<String>? = null)

Functions

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

Properties

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

Optional. The delimiter used to separate values. Defaults to ','.

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

Optional. The character encoding of the data. Accepts "US-ASCII", "UTF-8", and "ISO-8859-1". Defaults to UTF-8 if unspecified.

Link copied to clipboard
val headerRows: Output<Int>? = null

Optional. The number of rows to interpret as header rows that should be skipped when reading data rows. Defaults to 0.

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

Optional. The character used to quote column values. Accepts '"' (double quotation mark) or ''' (single quotation mark). Defaults to '"' (double quotation mark) if unspecified.