Show / Hide Table of Contents

Class TableExternalDataConfigurationCsvOptions

Inheritance
System.Object
TableExternalDataConfigurationCsvOptions
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Gcp.BigQuery.Outputs
Assembly: Pulumi.Gcp.dll
Syntax
public sealed class TableExternalDataConfigurationCsvOptions

Fields

View Source

AllowJaggedRows

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>
View Source

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>
View Source

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
View Source

FieldDelimiter

The separator for fields in a CSV file.

Declaration
public readonly string FieldDelimiter
Field Value
Type Description
System.String
View Source

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 &quot;, specified in the provider escaped as \&quot;. 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
View Source

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>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.