Table External Data Configuration Csv Options Args
data class TableExternalDataConfigurationCsvOptionsArgs(val allowJaggedRows: Output<Boolean>? = null, val allowQuotedNewlines: Output<Boolean>? = null, val encoding: Output<String>? = null, val fieldDelimiter: Output<String>? = null, val quote: Output<String>, val skipLeadingRows: Output<Int>? = null) : ConvertibleToJava<TableExternalDataConfigurationCsvOptionsArgs>
Constructors
Functions
Properties
Link copied to clipboard
Link copied to clipboard
The value that is used to quote data sections in a CSV file. If your data does not contain quoted sections, set the property value to an empty string. If your data contains quoted newline characters, you must also set the allow_quoted_newlines
property to true. The API-side default is "
, specified in the provider escaped as \"
. Due to limitations with default values, this value is required to be explicitly set.