Class TableExternalDataConfigurationCsvOptionsGetArgs
Inherited Members
Namespace: Pulumi.Gcp.BigQuery.Inputs
Assembly: Pulumi.Gcp.dll
Syntax
public sealed class TableExternalDataConfigurationCsvOptionsGetArgs : ResourceArgs
Constructors
View SourceTableExternalDataConfigurationCsvOptionsGetArgs()
Declaration
public TableExternalDataConfigurationCsvOptionsGetArgs()
Properties
View SourceAllowJaggedRows
Indicates if BigQuery should accept rows that are missing trailing optional columns.
Declaration
public Input<bool> AllowJaggedRows { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<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 Input<bool> AllowQuotedNewlines { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Boolean> |
Encoding
The character encoding of the data. The supported values are UTF-8 or ISO-8859-1.
Declaration
public Input<string> Encoding { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
FieldDelimiter
The separator for fields in a CSV file.
Declaration
public Input<string> FieldDelimiter { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<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 Input<string> Quote { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<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 Input<int> SkipLeadingRows { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Int32> |