Skip to content

Commit 449d5dc

Browse files
authored
[WORKFLOW] Updating protos from viamrobotics/api, commit: 4984956464913e78cad52051f523cbb91302fd4f
1 parent 96b71ba commit 449d5dc

8 files changed

+8378
-6056
lines changed

src/gen/viam.app.cloudslam.v1.rs

+511
Large diffs are not rendered by default.

src/gen/viam.app.cloudslam.v1.tonic.rs

+514
Large diffs are not rendered by default.

src/gen/viam.app.data.v1.rs

+1,304-1,297
Large diffs are not rendered by default.

src/gen/viam.app.data.v1.tonic.rs

+30-37
Original file line numberDiff line numberDiff line change
@@ -185,11 +185,11 @@ pub mod data_service_client {
185185
);
186186
self.inner.unary(request.into_request(), path, codec).await
187187
}
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(
189189
&mut self,
190-
request: impl tonic::IntoRequest<super::AddTagsToBinaryDataByFileIDsRequest>,
190+
request: impl tonic::IntoRequest<super::AddTagsToBinaryDataByIDsRequest>,
191191
) -> Result<
192-
tonic::Response<super::AddTagsToBinaryDataByFileIDsResponse>,
192+
tonic::Response<super::AddTagsToBinaryDataByIDsResponse>,
193193
tonic::Status,
194194
> {
195195
self.inner
@@ -203,7 +203,7 @@ pub mod data_service_client {
203203
})?;
204204
let codec = tonic::codec::ProstCodec::default();
205205
let path = http::uri::PathAndQuery::from_static(
206-
"/viam.app.data.v1.DataService/AddTagsToBinaryDataByFileIDs",
206+
"/viam.app.data.v1.DataService/AddTagsToBinaryDataByIDs",
207207
);
208208
self.inner.unary(request.into_request(), path, codec).await
209209
}
@@ -229,13 +229,11 @@ pub mod data_service_client {
229229
);
230230
self.inner.unary(request.into_request(), path, codec).await
231231
}
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(
233233
&mut self,
234-
request: impl tonic::IntoRequest<
235-
super::RemoveTagsFromBinaryDataByFileIDsRequest,
236-
>,
234+
request: impl tonic::IntoRequest<super::RemoveTagsFromBinaryDataByIDsRequest>,
237235
) -> Result<
238-
tonic::Response<super::RemoveTagsFromBinaryDataByFileIDsResponse>,
236+
tonic::Response<super::RemoveTagsFromBinaryDataByIDsResponse>,
239237
tonic::Status,
240238
> {
241239
self.inner
@@ -249,7 +247,7 @@ pub mod data_service_client {
249247
})?;
250248
let codec = tonic::codec::ProstCodec::default();
251249
let path = http::uri::PathAndQuery::from_static(
252-
"/viam.app.data.v1.DataService/RemoveTagsFromBinaryDataByFileIDs",
250+
"/viam.app.data.v1.DataService/RemoveTagsFromBinaryDataByIDs",
253251
);
254252
self.inner.unary(request.into_request(), path, codec).await
255253
}
@@ -406,11 +404,11 @@ pub mod data_service_server {
406404
tonic::Response<super::DeleteBinaryDataByIDsResponse>,
407405
tonic::Status,
408406
>;
409-
async fn add_tags_to_binary_data_by_file_i_ds(
407+
async fn add_tags_to_binary_data_by_i_ds(
410408
&self,
411-
request: tonic::Request<super::AddTagsToBinaryDataByFileIDsRequest>,
409+
request: tonic::Request<super::AddTagsToBinaryDataByIDsRequest>,
412410
) -> Result<
413-
tonic::Response<super::AddTagsToBinaryDataByFileIDsResponse>,
411+
tonic::Response<super::AddTagsToBinaryDataByIDsResponse>,
414412
tonic::Status,
415413
>;
416414
async fn add_tags_to_binary_data_by_filter(
@@ -420,11 +418,11 @@ pub mod data_service_server {
420418
tonic::Response<super::AddTagsToBinaryDataByFilterResponse>,
421419
tonic::Status,
422420
>;
423-
async fn remove_tags_from_binary_data_by_file_i_ds(
421+
async fn remove_tags_from_binary_data_by_i_ds(
424422
&self,
425-
request: tonic::Request<super::RemoveTagsFromBinaryDataByFileIDsRequest>,
423+
request: tonic::Request<super::RemoveTagsFromBinaryDataByIDsRequest>,
426424
) -> Result<
427-
tonic::Response<super::RemoveTagsFromBinaryDataByFileIDsResponse>,
425+
tonic::Response<super::RemoveTagsFromBinaryDataByIDsResponse>,
428426
tonic::Status,
429427
>;
430428
async fn remove_tags_from_binary_data_by_filter(
@@ -764,28 +762,27 @@ pub mod data_service_server {
764762
};
765763
Box::pin(fut)
766764
}
767-
"/viam.app.data.v1.DataService/AddTagsToBinaryDataByFileIDs" => {
765+
"/viam.app.data.v1.DataService/AddTagsToBinaryDataByIDs" => {
768766
#[allow(non_camel_case_types)]
769-
struct AddTagsToBinaryDataByFileIDsSvc<T: DataService>(pub Arc<T>);
767+
struct AddTagsToBinaryDataByIDsSvc<T: DataService>(pub Arc<T>);
770768
impl<
771769
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;
776773
type Future = BoxFuture<
777774
tonic::Response<Self::Response>,
778775
tonic::Status,
779776
>;
780777
fn call(
781778
&mut self,
782779
request: tonic::Request<
783-
super::AddTagsToBinaryDataByFileIDsRequest,
780+
super::AddTagsToBinaryDataByIDsRequest,
784781
>,
785782
) -> Self::Future {
786783
let inner = self.0.clone();
787784
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
789786
};
790787
Box::pin(fut)
791788
}
@@ -795,7 +792,7 @@ pub mod data_service_server {
795792
let inner = self.inner.clone();
796793
let fut = async move {
797794
let inner = inner.0;
798-
let method = AddTagsToBinaryDataByFileIDsSvc(inner);
795+
let method = AddTagsToBinaryDataByIDsSvc(inner);
799796
let codec = tonic::codec::ProstCodec::default();
800797
let mut grpc = tonic::server::Grpc::new(codec)
801798
.apply_compression_config(
@@ -850,32 +847,28 @@ pub mod data_service_server {
850847
};
851848
Box::pin(fut)
852849
}
853-
"/viam.app.data.v1.DataService/RemoveTagsFromBinaryDataByFileIDs" => {
850+
"/viam.app.data.v1.DataService/RemoveTagsFromBinaryDataByIDs" => {
854851
#[allow(non_camel_case_types)]
855-
struct RemoveTagsFromBinaryDataByFileIDsSvc<T: DataService>(
856-
pub Arc<T>,
857-
);
852+
struct RemoveTagsFromBinaryDataByIDsSvc<T: DataService>(pub Arc<T>);
858853
impl<
859854
T: DataService,
860855
> 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;
864859
type Future = BoxFuture<
865860
tonic::Response<Self::Response>,
866861
tonic::Status,
867862
>;
868863
fn call(
869864
&mut self,
870865
request: tonic::Request<
871-
super::RemoveTagsFromBinaryDataByFileIDsRequest,
866+
super::RemoveTagsFromBinaryDataByIDsRequest,
872867
>,
873868
) -> Self::Future {
874869
let inner = self.0.clone();
875870
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
879872
};
880873
Box::pin(fut)
881874
}
@@ -885,7 +878,7 @@ pub mod data_service_server {
885878
let inner = self.inner.clone();
886879
let fut = async move {
887880
let inner = inner.0;
888-
let method = RemoveTagsFromBinaryDataByFileIDsSvc(inner);
881+
let method = RemoveTagsFromBinaryDataByIDsSvc(inner);
889882
let codec = tonic::codec::ProstCodec::default();
890883
let mut grpc = tonic::server::Grpc::new(codec)
891884
.apply_compression_config(

0 commit comments

Comments
 (0)