public sealed class SetCell : IMessage<Mutation.Types.SetCell>, IEquatable<Mutation.Types.SetCell>, IDeepCloneable<Mutation.Types.SetCell>, IBufferMessage, IMessage
A Mutation which sets the value of the specified cell.
Implements
IMessage<Mutation.Types.SetCell>, IEquatable<Mutation.Types.SetCell>, IDeepCloneable<Mutation.Types.SetCell>, IBufferMessage, IMessageNamespace
Google.Cloud.Bigtable.V2Assembly
Google.Cloud.Bigtable.V2.dll
Constructors
SetCell()
public SetCell()
SetCell(Mutation.Types.SetCell)
public SetCell(Mutation.Types.SetCell other)
Parameter | |
---|---|
Name | Description |
other | Mutation.Types.SetCell |
Properties
ColumnQualifier
public ByteString ColumnQualifier { get; set; }
The qualifier of the column into which new data should be written. Can be any byte string, including the empty string.
Property Value | |
---|---|
Type | Description |
ByteString |
FamilyName
public string FamilyName { get; set; }
The name of the family into which new data should be written.
Must match [-_.a-zA-Z0-9]+
Property Value | |
---|---|
Type | Description |
String |
TimestampMicros
public long TimestampMicros { get; set; }
The timestamp of the cell into which new data should be written. Use -1 for current Bigtable server time. Otherwise, the client should set this value itself, noting that the default value is a timestamp of zero if the field is left unspecified. Values must match the granularity of the table (e.g. micros, millis).
Property Value | |
---|---|
Type | Description |
Int64 |
Value
public ByteString Value { get; set; }
The value to be written into the specified cell.
Property Value | |
---|---|
Type | Description |
ByteString |