Class GoogleCloudDataplexV1StorageFormatCsvOptions
Describes CSV and similar semi-structured data formats.
Implements
Inherited Members
Namespace: Google.Apis.CloudDataplex.v1.Data
Assembly: Google.Apis.CloudDataplex.v1.dll
Syntax
public class GoogleCloudDataplexV1StorageFormatCsvOptions : IDirectResponseSchema
Properties
Delimiter
Optional. The delimiter used to separate values. Defaults to ','.
Declaration
[JsonProperty("delimiter")]
public virtual string Delimiter { get; set; }
Property Value
Type | Description |
---|---|
string |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
Encoding
Optional. The character encoding of the data. Accepts "US-ASCII", "UTF-8", and "ISO-8859-1". Defaults to UTF-8 if unspecified.
Declaration
[JsonProperty("encoding")]
public virtual string Encoding { get; set; }
Property Value
Type | Description |
---|---|
string |
HeaderRows
Optional. The number of rows to interpret as header rows that should be skipped when reading data rows. Defaults to 0.
Declaration
[JsonProperty("headerRows")]
public virtual int? HeaderRows { get; set; }
Property Value
Type | Description |
---|---|
int? |
Quote
Optional. The character used to quote column values. Accepts '"' (double quotation mark) or ''' (single quotation mark). Defaults to '"' (double quotation mark) if unspecified.
Declaration
[JsonProperty("quote")]
public virtual string Quote { get; set; }
Property Value
Type | Description |
---|---|
string |