Reference documentation and code samples for the Cloud Bigtable Client class Mutations.
Represents a Mutation to perform data operation on Bigtable table.
This is used to insert,update, delete operation on row in Bigtable table.
Namespace
Google \ Cloud \ BigtableMethods
upsert
Creates Insert/Update mutation for a row.
family
string
Family name of the row.
qualifier
string
Column qualifier of the row.
value
string
Value of the column qualifier.
timeStamp
string|int
[optional] A timestamp value, in microseconds.
Use the value -1
to utilize the current Bigtable server time. Defaults tothe current local system time.
deleteFromFamily
Creates delete from family mutation for a row.
family
string
Family name of the row.
deleteFromColumn
Creates delete from column mutation for a row.
family
string
Family name of the row.
qualifier
string
Column qualifier of the row.
timeRange
array
[optional] Array of values value, in microseconds to
delete from column, keyed by start
and end
representing time range
window. start
Defaults to0 end
Defaults toinfinity
deleteRow
Creates delete row mutation for a row.
toProto
Returns protobuf representation of Mutations.
array