You can call this operation to delete an index table from the specified primary table.
Request syntax
message DropIndexRequest {
required string main_table_name = 1;
required string index_name = 2;
}
- Type: string.
- Required: yes.
- This parameter specifies the name of the primary table from which to delete an index table.
- Type: string.
- Required: yes.
- This parameter specifies the name of the index table to be deleted.
Response syntax
message DropIndexResponse {
}