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.
Namespace
Google.Cloud.Bigtable.V2Assembly
Google.Cloud.Bigtable.V2.dll
Constructors
Column()
public Column()
Column(Column)
public Column(Column other)
Parameter | |
---|---|
Name | Description |
other |
Column |
Properties
Cells
public RepeatedField<Cell> Cells { get; }
Must not be empty. Sorted in order of decreasing "timestamp_micros".
Property Value | |
---|---|
Type | Description |
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 | |
---|---|
Type | Description |
ByteString |