Class ModType (3.63.0)

ModType(value)

Mod type describes the type of change Spanner applied to the data. For example, if the client submits an INSERT_OR_UPDATE request, Spanner will perform an insert if there is no existing row and return ModType INSERT. Alternatively, if there is an existing row, Spanner will perform an update and return ModType UPDATE.

Enums

Name Description
MOD_TYPE_UNSPECIFIED Not specified.
INSERT Indicates data was inserted.
UPDATE Indicates existing data was updated.
DELETE Indicates existing data was deleted.