DataStream v1 API - Class PostgresqlColumn (2.6.0)

public sealed class PostgresqlColumn : IMessage<PostgresqlColumn>, IEquatable<PostgresqlColumn>, IDeepCloneable<PostgresqlColumn>, IBufferMessage, IMessage

Reference documentation and code samples for the DataStream v1 API class PostgresqlColumn.

PostgreSQL Column.

Inheritance

object > PostgresqlColumn

Namespace

Google.Cloud.Datastream.V1

Assembly

Google.Cloud.Datastream.V1.dll

Constructors

PostgresqlColumn()

public PostgresqlColumn()

PostgresqlColumn(PostgresqlColumn)

public PostgresqlColumn(PostgresqlColumn other)
Parameter
NameDescription
otherPostgresqlColumn

Properties

Column

public string Column { get; set; }

Column name.

Property Value
TypeDescription
string

DataType

public string DataType { get; set; }

The PostgreSQL data type.

Property Value
TypeDescription
string

Length

public int Length { get; set; }

Column length.

Property Value
TypeDescription
int

Nullable

public bool Nullable { get; set; }

Whether or not the column can accept a null value.

Property Value
TypeDescription
bool

OrdinalPosition

public int OrdinalPosition { get; set; }

The ordinal position of the column in the table.

Property Value
TypeDescription
int

Precision

public int Precision { get; set; }

Column precision.

Property Value
TypeDescription
int

PrimaryKey

public bool PrimaryKey { get; set; }

Whether or not the column represents a primary key.

Property Value
TypeDescription
bool

Scale

public int Scale { get; set; }

Column scale.

Property Value
TypeDescription
int