Class CsvExportOptions
Options for exporting data in CSV format.
Implements
Inherited Members
Namespace: Google.Apis.CloudAlloyDBAdmin.v1.Data
Assembly: Google.Apis.CloudAlloyDBAdmin.v1.dll
Syntax
public class CsvExportOptions : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
EscapeCharacter
Optional. Specifies the character that should appear before a data character that needs to be escaped. The default is the same as quote character. The value of this argument has to be a character in Hex ASCII Code.
Declaration
[JsonProperty("escapeCharacter")]
public virtual string EscapeCharacter { get; set; }
Property Value
Type | Description |
---|---|
string |
FieldDelimiter
Optional. Specifies the character that separates columns within each row (line) of the file. The default is comma. The value of this argument has to be a character in Hex ASCII Code.
Declaration
[JsonProperty("fieldDelimiter")]
public virtual string FieldDelimiter { get; set; }
Property Value
Type | Description |
---|---|
string |
QuoteCharacter
Optional. Specifies the quoting character to be used when a data value is quoted. The default is double-quote. The value of this argument has to be a character in Hex ASCII Code.
Declaration
[JsonProperty("quoteCharacter")]
public virtual string QuoteCharacter { get; set; }
Property Value
Type | Description |
---|---|
string |
SelectQuery
Required. The SELECT query used to extract the data.
Declaration
[JsonProperty("selectQuery")]
public virtual string SelectQuery { get; set; }
Property Value
Type | Description |
---|---|
string |