File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -136,6 +136,8 @@ service MilvusService {
136136 rpc DescribeDatabase (DescribeDatabaseRequest ) returns (DescribeDatabaseResponse ) {}
137137
138138 rpc ReplicateMessage (ReplicateMessageRequest ) returns (ReplicateMessageResponse ) {}
139+
140+ rpc UpdateBlobBucketInfo (UpdateBlobBucketInfoRequest ) returns (common.Status ) {}
139141}
140142
141143message CreateAliasRequest {
@@ -1871,6 +1873,12 @@ message ReplicateMessageResponse {
18711873 string position = 2 ;
18721874}
18731875
1876+ message UpdateBlobBucketInfoRequest {
1877+ common.MsgBase base = 1 ;
1878+ string bucket = 2 ;
1879+ string auth_key = 3 ;
1880+ }
1881+
18741882message ImportAuthPlaceholder {
18751883 option (common.privilege_ext_obj ) = {
18761884 object_type : Collection
Original file line number Diff line number Diff line change @@ -102,6 +102,12 @@ message ArrayArray {
102102
103103message JSONArray { repeated bytes data = 1 ; }
104104
105+ message BlobFile {
106+ string source_uri = 1 ;
107+ }
108+
109+ message BlobArray {repeated BlobFile data = 1 ;}
110+
105111message ValueField {
106112 oneof data {
107113 bool bool_data = 1 ;
@@ -125,6 +131,7 @@ message ScalarField {
125131 BytesArray bytes_data = 7 ;
126132 ArrayArray array_data = 8 ;
127133 JSONArray json_data = 9 ;
134+ BlobArray blob_data = 10 ;
128135 }
129136}
130137
You can’t perform that action at this time.
0 commit comments