public sealed class CsvOptions : IMessage<StorageFormat.Types.CsvOptions>, IEquatable<StorageFormat.Types.CsvOptions>, IDeepCloneable<StorageFormat.Types.CsvOptions>, IBufferMessage, IMessage
Reference documentation and code samples for the Cloud Dataplex v1 API class StorageFormat.Types.CsvOptions.
Describes CSV and similar semi-structured data formats.
Implements
IMessage<StorageFormat.Types.CsvOptions>, IEquatable<StorageFormat.Types.CsvOptions>, IDeepCloneable<StorageFormat.Types.CsvOptions>, IBufferMessage, IMessageNamespace
Google.Cloud.Dataplex.V1Assembly
Google.Cloud.Dataplex.V1.dll
Constructors
CsvOptions()
public CsvOptions()
CsvOptions(StorageFormat.Types.CsvOptions)
public CsvOptions(StorageFormat.Types.CsvOptions other)
Parameter | |
---|---|
Name | Description |
other | StorageFormat.Types.CsvOptions |
Properties
Delimiter
public string Delimiter { get; set; }
Optional. The delimiter used to separate values. Defaults to ','.
Property Value | |
---|---|
Type | Description |
String |
Encoding
public string Encoding { get; set; }
Optional. The character encoding of the data. Accepts "US-ASCII", "UTF-8", and "ISO-8859-1". Defaults to UTF-8 if unspecified.
Property Value | |
---|---|
Type | Description |
String |
HeaderRows
public int HeaderRows { get; set; }
Optional. The number of rows to interpret as header rows that should be skipped when reading data rows. Defaults to 0.
Property Value | |
---|---|
Type | Description |
Int32 |
Quote
public string Quote { get; set; }
Optional. The character used to quote column values. Accepts '"' (double quotation mark) or ''' (single quotation mark). Defaults to '"' (double quotation mark) if unspecified.
Property Value | |
---|---|
Type | Description |
String |