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