Show / Hide Table of Contents

Class TableExternalDataConfigurationCsvOptionsGetArgs

Inheritance
System.Object
InputArgs
ResourceArgs
TableExternalDataConfigurationCsvOptionsGetArgs
Inherited Members
ResourceArgs.Empty
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.Inputs
Assembly: Pulumi.Gcp.dll
Syntax
public sealed class TableExternalDataConfigurationCsvOptionsGetArgs : ResourceArgs

Constructors

View Source

TableExternalDataConfigurationCsvOptionsGetArgs()

Declaration
public TableExternalDataConfigurationCsvOptionsGetArgs()

Properties

View Source

AllowJaggedRows

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>
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 Input<bool> AllowQuotedNewlines { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

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

FieldDelimiter

The separator for fields in a CSV file.

Declaration
public Input<string> FieldDelimiter { get; set; }
Property Value
Type Description
Input<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 Input<string> Quote { get; set; }
Property Value
Type Description
Input<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 Input<int> SkipLeadingRows { get; set; }
Property Value
Type Description
Input<System.Int32>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.