RowInBulkImportRequest specifies the row of data that is inserted, updated, or deleted when you call the BulkImport operation.
Data structure
message RowInBulkImportRequest {
required OperationType type = 1;
required bytes row_change = 2;
}
Parameter | Type | Required | Description |
type: | Yes | The type of the operation. | |
row_change | bytes | Yes | The row data, including the primary key and attribute column. The value is encoded in PlainBuffer. For more information, see PlainBuffer. |