AlloyDB v1alpha API - Class ImportClusterRequest.Types.CsvImportOptions (1.0.0-alpha11)

public sealed class ImportClusterRequest.Types.CsvImportOptions : IMessage<ImportClusterRequest.Types.CsvImportOptions>, IEquatable<ImportClusterRequest.Types.CsvImportOptions>, IDeepCloneable<ImportClusterRequest.Types.CsvImportOptions>, IBufferMessage, IMessage

Reference documentation and code samples for the AlloyDB v1alpha API class ImportClusterRequest.Types.CsvImportOptions.

Options for importing data in CSV format.

Inheritance

object > ImportClusterRequest.Types.CsvImportOptions

Namespace

Google.Cloud.AlloyDb.V1Alpha

Assembly

Google.Cloud.AlloyDb.V1Alpha.dll

Constructors

CsvImportOptions()

public CsvImportOptions()

CsvImportOptions(CsvImportOptions)

public CsvImportOptions(ImportClusterRequest.Types.CsvImportOptions other)
Parameter
Name Description
other ImportClusterRequestTypesCsvImportOptions

Properties

Columns

public RepeatedField<string> Columns { get; }

Optional. The columns to which CSV data is imported. If not specified, all columns of the database table are loaded with CSV data.

Property Value
Type Description
RepeatedFieldstring

EscapeCharacter

public string EscapeCharacter { get; set; }

Optional. Specifies the character that should appear before a data character that needs to be escaped. The default is same as quote character. The value of this argument has to be a character in Hex ASCII Code.

Property Value
Type Description
string

FieldDelimiter

public string FieldDelimiter { get; set; }

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.

Property Value
Type Description
string

QuoteCharacter

public string QuoteCharacter { get; set; }

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.

Property Value
Type Description
string

Table

public string Table { get; set; }

Required. The database table to import CSV file into.

Property Value
Type Description
string