2020-12-21 16:36:07 +08:00
|
|
|
syntax = "proto3";
|
|
|
|
|
|
|
|
package milvus.proto.indexcgo;
|
2021-04-22 14:45:57 +08:00
|
|
|
option go_package="github.com/milvus-io/milvus/internal/proto/indexcgopb";
|
2020-12-21 16:36:07 +08:00
|
|
|
|
|
|
|
import "common.proto";
|
|
|
|
|
|
|
|
message TypeParams {
|
|
|
|
repeated common.KeyValuePair params = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
message IndexParams {
|
|
|
|
repeated common.KeyValuePair params = 1;
|
|
|
|
}
|
|
|
|
|
2021-01-04 12:03:29 +08:00
|
|
|
// TypeParams & IndexParams will be replaced by MapParams later
|
|
|
|
message MapParams {
|
|
|
|
repeated common.KeyValuePair params = 1;
|
|
|
|
}
|
|
|
|
|
2020-12-21 16:36:07 +08:00
|
|
|
message Binary {
|
|
|
|
string key = 1;
|
|
|
|
bytes value = 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
message BinarySet {
|
|
|
|
repeated Binary datas = 1;
|
|
|
|
}
|