Google Bigtable v2 API - Class Column (3.5.0)

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

Reference documentation and code samples for the Google Bigtable v2 API class Column.

Specifies (some of) the contents of a single row/column intersection of a table.

Inheritance

object > Column

Namespace

Google.Cloud.Bigtable.V2

Assembly

Google.Cloud.Bigtable.V2.dll

Constructors

Column()

public Column()

Column(Column)

public Column(Column other)
Parameter
NameDescription
otherColumn

Properties

Cells

public RepeatedField<Cell> Cells { get; }

Must not be empty. Sorted in order of decreasing "timestamp_micros".

Property Value
TypeDescription
RepeatedFieldCell

Qualifier

public ByteString Qualifier { get; set; }

The unique key which identifies this column within its family. This is the same key that's used to identify the column in, for example, a RowFilter which sets its column_qualifier_regex_filter field. May contain any byte string, including the empty string, up to 16kiB in length.

Property Value
TypeDescription
ByteString