All Products
Search
Document Center

Tablestore:OperationType

Last Updated:May 31, 2024

OperationType specifies the modification method for one column in UpdateRow and BulkImport.

Enumeration values

  • PUT: specifies that a column is inserted or data in this column is overwritten.

  • UPDATE: specifies that a column is updated.

  • DELETE: specifies that a column is deleted.

enum OperationType {
    PUT = 1;
    UPDATE = 2;
    DELETE = 3;
}