#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GetDemoAppDownloadUrlRequest {
#[prost(string, tag = "1")]
pub sha256_checksum: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GetDemoAppDownloadUrlResponse {
#[prost(string, tag = "1")]
pub url: ::prost::alloc::string::String,
}
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
#[repr(i32)]
pub enum ConnectDemoAppsServiceError {
Unspecified = 0,
UnavailableForEnvironment = 1,
InvalidChecksum = 2,
}
impl ConnectDemoAppsServiceError {
pub fn as_str_name(&self) -> &'static str {
match self {
Self::Unspecified => "CONNECT_DEMO_APPS_SERVICE_ERROR_UNSPECIFIED",
Self::UnavailableForEnvironment => {
"CONNECT_DEMO_APPS_SERVICE_ERROR_UNAVAILABLE_FOR_ENVIRONMENT"
}
Self::InvalidChecksum => "CONNECT_DEMO_APPS_SERVICE_ERROR_INVALID_CHECKSUM",
}
}
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"CONNECT_DEMO_APPS_SERVICE_ERROR_UNSPECIFIED" => Some(Self::Unspecified),
"CONNECT_DEMO_APPS_SERVICE_ERROR_UNAVAILABLE_FOR_ENVIRONMENT" => {
Some(Self::UnavailableForEnvironment)
}
"CONNECT_DEMO_APPS_SERVICE_ERROR_INVALID_CHECKSUM" => {
Some(Self::InvalidChecksum)
}
_ => None,
}
}
}
pub mod connect_demo_apps_service_client {
#![allow(
unused_variables,
dead_code,
missing_docs,
clippy::wildcard_imports,
clippy::let_unit_value,
)]
use tonic::codegen::*;
use tonic::codegen::http::Uri;
#[derive(Debug, Clone)]
pub struct ConnectDemoAppsServiceClient<T> {
inner: tonic::client::Grpc<T>,
}
impl ConnectDemoAppsServiceClient<tonic::transport::Channel> {
pub async fn connect<D>(dst: D) -> Result<Self, tonic::transport::Error>
where
D: TryInto<tonic::transport::Endpoint>,
D::Error: Into<StdError>,
{
let conn = tonic::transport::Endpoint::new(dst)?.connect().await?;
Ok(Self::new(conn))
}
}
impl<T> ConnectDemoAppsServiceClient<T>
where
T: tonic::client::GrpcService<tonic::body::Body>,
T::Error: Into<StdError>,
T::ResponseBody: Body<Data = Bytes> + std::marker::Send + 'static,
<T::ResponseBody as Body>::Error: Into<StdError> + std::marker::Send,
{
pub fn new(inner: T) -> Self {
let inner = tonic::client::Grpc::new(inner);
Self { inner }
}
pub fn with_origin(inner: T, origin: Uri) -> Self {
let inner = tonic::client::Grpc::with_origin(inner, origin);
Self { inner }
}
pub fn with_interceptor<F>(
inner: T,
interceptor: F,
) -> ConnectDemoAppsServiceClient<InterceptedService<T, F>>
where
F: tonic::service::Interceptor,
T::ResponseBody: Default,
T: tonic::codegen::Service<
http::Request<tonic::body::Body>,
Response = http::Response<
<T as tonic::client::GrpcService<tonic::body::Body>>::ResponseBody,
>,
>,
<T as tonic::codegen::Service<
http::Request<tonic::body::Body>,
>>::Error: Into<StdError> + std::marker::Send + std::marker::Sync,
{
ConnectDemoAppsServiceClient::new(
InterceptedService::new(inner, interceptor),
)
}
#[must_use]
pub fn send_compressed(mut self, encoding: CompressionEncoding) -> Self {
self.inner = self.inner.send_compressed(encoding);
self
}
#[must_use]
pub fn accept_compressed(mut self, encoding: CompressionEncoding) -> Self {
self.inner = self.inner.accept_compressed(encoding);
self
}
#[must_use]
pub fn max_decoding_message_size(mut self, limit: usize) -> Self {
self.inner = self.inner.max_decoding_message_size(limit);
self
}
#[must_use]
pub fn max_encoding_message_size(mut self, limit: usize) -> Self {
self.inner = self.inner.max_encoding_message_size(limit);
self
}
pub async fn get_demo_app_download_url(
&mut self,
request: impl tonic::IntoRequest<super::GetDemoAppDownloadUrlRequest>,
) -> std::result::Result<
tonic::Response<super::GetDemoAppDownloadUrlResponse>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::unknown(
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/nominal.connect.demo_apps.v1.ConnectDemoAppsService/GetDemoAppDownloadUrl",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"nominal.connect.demo_apps.v1.ConnectDemoAppsService",
"GetDemoAppDownloadUrl",
),
);
self.inner.unary(req, path, codec).await
}
}
}