Class TableExternalDataConfigurationCsvOptions
Inheritance
Inherited Members
Namespace: Pulumi.Gcp.BigQuery.Outputs
Assembly: Pulumi.Gcp.dll
Syntax
public sealed class TableExternalDataConfigurationCsvOptions
Fields
View SourceAllowJaggedRows
Indicates if BigQuery should accept rows that are missing trailing optional columns.
Declaration
public readonly bool? AllowJaggedRows
Field Value
| Type | Description |
|---|---|
| System.Nullable<System.Boolean> |
AllowQuotedNewlines
Indicates if BigQuery should allow quoted data sections that contain newline characters in a CSV file. The default value is false.
Declaration
public readonly bool? AllowQuotedNewlines
Field Value
| Type | Description |
|---|---|
| System.Nullable<System.Boolean> |
Encoding
The character encoding of the data. The supported values are UTF-8 or ISO-8859-1.
Declaration
public readonly string Encoding
Field Value
| Type | Description |
|---|---|
| System.String |
FieldDelimiter
The separator for fields in a CSV file.
Declaration
public readonly string FieldDelimiter
Field Value
| Type | Description |
|---|---|
| System.String |
Quote
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.
Declaration
public readonly string Quote
Field Value
| Type | Description |
|---|---|
| System.String |
SkipLeadingRows
The number of rows at the top of the sheet
that BigQuery will skip when reading the data. At least one of range or
skip_leading_rows must be set.
Declaration
public readonly int? SkipLeadingRows
Field Value
| Type | Description |
|---|---|
| System.Nullable<System.Int32> |