@@ -185,11 +185,11 @@ pub mod data_service_client {
185
185
) ;
186
186
self . inner . unary ( request. into_request ( ) , path, codec) . await
187
187
}
188
- pub async fn add_tags_to_binary_data_by_file_i_ds (
188
+ pub async fn add_tags_to_binary_data_by_i_ds (
189
189
& mut self ,
190
- request : impl tonic:: IntoRequest < super :: AddTagsToBinaryDataByFileIDsRequest > ,
190
+ request : impl tonic:: IntoRequest < super :: AddTagsToBinaryDataByIDsRequest > ,
191
191
) -> Result <
192
- tonic:: Response < super :: AddTagsToBinaryDataByFileIDsResponse > ,
192
+ tonic:: Response < super :: AddTagsToBinaryDataByIDsResponse > ,
193
193
tonic:: Status ,
194
194
> {
195
195
self . inner
@@ -203,7 +203,7 @@ pub mod data_service_client {
203
203
} ) ?;
204
204
let codec = tonic:: codec:: ProstCodec :: default ( ) ;
205
205
let path = http:: uri:: PathAndQuery :: from_static (
206
- "/viam.app.data.v1.DataService/AddTagsToBinaryDataByFileIDs " ,
206
+ "/viam.app.data.v1.DataService/AddTagsToBinaryDataByIDs " ,
207
207
) ;
208
208
self . inner . unary ( request. into_request ( ) , path, codec) . await
209
209
}
@@ -229,13 +229,11 @@ pub mod data_service_client {
229
229
) ;
230
230
self . inner . unary ( request. into_request ( ) , path, codec) . await
231
231
}
232
- pub async fn remove_tags_from_binary_data_by_file_i_ds (
232
+ pub async fn remove_tags_from_binary_data_by_i_ds (
233
233
& mut self ,
234
- request : impl tonic:: IntoRequest <
235
- super :: RemoveTagsFromBinaryDataByFileIDsRequest ,
236
- > ,
234
+ request : impl tonic:: IntoRequest < super :: RemoveTagsFromBinaryDataByIDsRequest > ,
237
235
) -> Result <
238
- tonic:: Response < super :: RemoveTagsFromBinaryDataByFileIDsResponse > ,
236
+ tonic:: Response < super :: RemoveTagsFromBinaryDataByIDsResponse > ,
239
237
tonic:: Status ,
240
238
> {
241
239
self . inner
@@ -249,7 +247,7 @@ pub mod data_service_client {
249
247
} ) ?;
250
248
let codec = tonic:: codec:: ProstCodec :: default ( ) ;
251
249
let path = http:: uri:: PathAndQuery :: from_static (
252
- "/viam.app.data.v1.DataService/RemoveTagsFromBinaryDataByFileIDs " ,
250
+ "/viam.app.data.v1.DataService/RemoveTagsFromBinaryDataByIDs " ,
253
251
) ;
254
252
self . inner . unary ( request. into_request ( ) , path, codec) . await
255
253
}
@@ -406,11 +404,11 @@ pub mod data_service_server {
406
404
tonic:: Response < super :: DeleteBinaryDataByIDsResponse > ,
407
405
tonic:: Status ,
408
406
> ;
409
- async fn add_tags_to_binary_data_by_file_i_ds (
407
+ async fn add_tags_to_binary_data_by_i_ds (
410
408
& self ,
411
- request : tonic:: Request < super :: AddTagsToBinaryDataByFileIDsRequest > ,
409
+ request : tonic:: Request < super :: AddTagsToBinaryDataByIDsRequest > ,
412
410
) -> Result <
413
- tonic:: Response < super :: AddTagsToBinaryDataByFileIDsResponse > ,
411
+ tonic:: Response < super :: AddTagsToBinaryDataByIDsResponse > ,
414
412
tonic:: Status ,
415
413
> ;
416
414
async fn add_tags_to_binary_data_by_filter (
@@ -420,11 +418,11 @@ pub mod data_service_server {
420
418
tonic:: Response < super :: AddTagsToBinaryDataByFilterResponse > ,
421
419
tonic:: Status ,
422
420
> ;
423
- async fn remove_tags_from_binary_data_by_file_i_ds (
421
+ async fn remove_tags_from_binary_data_by_i_ds (
424
422
& self ,
425
- request : tonic:: Request < super :: RemoveTagsFromBinaryDataByFileIDsRequest > ,
423
+ request : tonic:: Request < super :: RemoveTagsFromBinaryDataByIDsRequest > ,
426
424
) -> Result <
427
- tonic:: Response < super :: RemoveTagsFromBinaryDataByFileIDsResponse > ,
425
+ tonic:: Response < super :: RemoveTagsFromBinaryDataByIDsResponse > ,
428
426
tonic:: Status ,
429
427
> ;
430
428
async fn remove_tags_from_binary_data_by_filter (
@@ -764,28 +762,27 @@ pub mod data_service_server {
764
762
} ;
765
763
Box :: pin ( fut)
766
764
}
767
- "/viam.app.data.v1.DataService/AddTagsToBinaryDataByFileIDs " => {
765
+ "/viam.app.data.v1.DataService/AddTagsToBinaryDataByIDs " => {
768
766
#[ allow( non_camel_case_types) ]
769
- struct AddTagsToBinaryDataByFileIDsSvc < T : DataService > ( pub Arc < T > ) ;
767
+ struct AddTagsToBinaryDataByIDsSvc < T : DataService > ( pub Arc < T > ) ;
770
768
impl <
771
769
T : DataService ,
772
- > tonic:: server:: UnaryService <
773
- super :: AddTagsToBinaryDataByFileIDsRequest ,
774
- > for AddTagsToBinaryDataByFileIDsSvc < T > {
775
- type Response = super :: AddTagsToBinaryDataByFileIDsResponse ;
770
+ > tonic:: server:: UnaryService < super :: AddTagsToBinaryDataByIDsRequest >
771
+ for AddTagsToBinaryDataByIDsSvc < T > {
772
+ type Response = super :: AddTagsToBinaryDataByIDsResponse ;
776
773
type Future = BoxFuture <
777
774
tonic:: Response < Self :: Response > ,
778
775
tonic:: Status ,
779
776
> ;
780
777
fn call (
781
778
& mut self ,
782
779
request : tonic:: Request <
783
- super :: AddTagsToBinaryDataByFileIDsRequest ,
780
+ super :: AddTagsToBinaryDataByIDsRequest ,
784
781
> ,
785
782
) -> Self :: Future {
786
783
let inner = self . 0 . clone ( ) ;
787
784
let fut = async move {
788
- ( * inner) . add_tags_to_binary_data_by_file_i_ds ( request) . await
785
+ ( * inner) . add_tags_to_binary_data_by_i_ds ( request) . await
789
786
} ;
790
787
Box :: pin ( fut)
791
788
}
@@ -795,7 +792,7 @@ pub mod data_service_server {
795
792
let inner = self . inner . clone ( ) ;
796
793
let fut = async move {
797
794
let inner = inner. 0 ;
798
- let method = AddTagsToBinaryDataByFileIDsSvc ( inner) ;
795
+ let method = AddTagsToBinaryDataByIDsSvc ( inner) ;
799
796
let codec = tonic:: codec:: ProstCodec :: default ( ) ;
800
797
let mut grpc = tonic:: server:: Grpc :: new ( codec)
801
798
. apply_compression_config (
@@ -850,32 +847,28 @@ pub mod data_service_server {
850
847
} ;
851
848
Box :: pin ( fut)
852
849
}
853
- "/viam.app.data.v1.DataService/RemoveTagsFromBinaryDataByFileIDs " => {
850
+ "/viam.app.data.v1.DataService/RemoveTagsFromBinaryDataByIDs " => {
854
851
#[ allow( non_camel_case_types) ]
855
- struct RemoveTagsFromBinaryDataByFileIDsSvc < T : DataService > (
856
- pub Arc < T > ,
857
- ) ;
852
+ struct RemoveTagsFromBinaryDataByIDsSvc < T : DataService > ( pub Arc < T > ) ;
858
853
impl <
859
854
T : DataService ,
860
855
> tonic:: server:: UnaryService <
861
- super :: RemoveTagsFromBinaryDataByFileIDsRequest ,
862
- > for RemoveTagsFromBinaryDataByFileIDsSvc < T > {
863
- type Response = super :: RemoveTagsFromBinaryDataByFileIDsResponse ;
856
+ super :: RemoveTagsFromBinaryDataByIDsRequest ,
857
+ > for RemoveTagsFromBinaryDataByIDsSvc < T > {
858
+ type Response = super :: RemoveTagsFromBinaryDataByIDsResponse ;
864
859
type Future = BoxFuture <
865
860
tonic:: Response < Self :: Response > ,
866
861
tonic:: Status ,
867
862
> ;
868
863
fn call (
869
864
& mut self ,
870
865
request : tonic:: Request <
871
- super :: RemoveTagsFromBinaryDataByFileIDsRequest ,
866
+ super :: RemoveTagsFromBinaryDataByIDsRequest ,
872
867
> ,
873
868
) -> Self :: Future {
874
869
let inner = self . 0 . clone ( ) ;
875
870
let fut = async move {
876
- ( * inner)
877
- . remove_tags_from_binary_data_by_file_i_ds ( request)
878
- . await
871
+ ( * inner) . remove_tags_from_binary_data_by_i_ds ( request) . await
879
872
} ;
880
873
Box :: pin ( fut)
881
874
}
@@ -885,7 +878,7 @@ pub mod data_service_server {
885
878
let inner = self . inner . clone ( ) ;
886
879
let fut = async move {
887
880
let inner = inner. 0 ;
888
- let method = RemoveTagsFromBinaryDataByFileIDsSvc ( inner) ;
881
+ let method = RemoveTagsFromBinaryDataByIDsSvc ( inner) ;
889
882
let codec = tonic:: codec:: ProstCodec :: default ( ) ;
890
883
let mut grpc = tonic:: server:: Grpc :: new ( codec)
891
884
. apply_compression_config (
0 commit comments