TableExternalDataConfigurationCsvOptionsArgs

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

fun TableExternalDataConfigurationCsvOptionsArgs(allowJaggedRows: Output<Boolean>? = null, allowQuotedNewlines: Output<Boolean>? = null, encoding: Output<String>? = null, fieldDelimiter: Output<String>? = null, quote: Output<String>, skipLeadingRows: Output<Int>? = null)

Functions

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

Properties

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

Indicates if BigQuery should accept rows that are missing trailing optional columns.

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

Indicates if BigQuery should allow quoted data sections that contain newline characters in a CSV file. The default value is false.

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

The character encoding of the data. The supported values are UTF-8 or ISO-8859-1.

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

The separator for fields in a CSV file.

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

The number of rows at the top of a CSV file that BigQuery will skip when reading the data.