public sealed class Mutation.Types.SetCell : IMessage<Mutation.Types.SetCell>, IEquatable<Mutation.Types.SetCell>, IDeepCloneable<Mutation.Types.SetCell>, IBufferMessage, IMessage
Reference documentation and code samples for the Google Bigtable v2 API class Mutation.Types.SetCell.
A Mutation which sets the value of the specified cell.
Implements
IMessageMutationTypesSetCell, IEquatableMutationTypesSetCell, IDeepCloneableMutationTypesSetCell, IBufferMessage, IMessageNamespace
Google.Cloud.Bigtable.V2Assembly
Google.Cloud.Bigtable.V2.dll
Constructors
SetCell()
public SetCell()
SetCell(SetCell)
public SetCell(Mutation.Types.SetCell other)
Parameter | |
---|---|
Name | Description |
other |
MutationTypesSetCell |
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 |
long |
Value
public ByteString Value { get; set; }
The value to be written into the specified cell.
Property Value | |
---|---|
Type | Description |
ByteString |