TableExternalDataConfigurationCsvOptions

data class TableExternalDataConfigurationCsvOptions(val allowJaggedRows: Boolean? = null, val allowQuotedNewlines: Boolean? = null, val encoding: String? = null, val fieldDelimiter: String? = null, val quote: String, val skipLeadingRows: Int? = null)

Constructors

Link copied to clipboard
constructor(allowJaggedRows: Boolean? = null, allowQuotedNewlines: Boolean? = null, encoding: String? = null, fieldDelimiter: String? = null, quote: String, skipLeadingRows: Int? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

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

Link copied to clipboard

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: String? = null

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

Link copied to clipboard
val fieldDelimiter: String? = null

The separator for fields in a CSV file.

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.

Link copied to clipboard
val skipLeadingRows: Int? = null

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