Google Bigtable v2 API - Class Mutation.Types.SetCell (3.12.0)

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.

Inheritance

object > Mutation.Types.SetCell

Namespace

Google.Cloud.Bigtable.V2

Assembly

Google.Cloud.Bigtable.V2.dll

Constructors

SetCell()

public SetCell()

SetCell(SetCell)

public SetCell(Mutation.Types.SetCell other)
Parameter
NameDescription
otherMutationTypesSetCell

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
TypeDescription
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
TypeDescription
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
TypeDescription
long

Value

public ByteString Value { get; set; }

The value to be written into the specified cell.

Property Value
TypeDescription
ByteString