nominal-api 0.1197.0

API bindings for the Nominal platform
Documentation
// This file is @generated by prost-build.
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct GetPythonPackageRegistryRequest {}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GetPythonPackageRegistryResponse {
    #[prost(string, tag = "1")]
    pub registry_url: ::prost::alloc::string::String,
    #[prost(string, optional, tag = "2")]
    pub registry_token: ::core::option::Option<::prost::alloc::string::String>,
}
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
#[repr(i32)]
pub enum NominalInstroPackageRegistryError {
    Unspecified = 0,
    NotAvailable = 1,
}
impl NominalInstroPackageRegistryError {
    /// String value of the enum field names used in the ProtoBuf definition.
    ///
    /// The values are not transformed in any way and thus are considered stable
    /// (if the ProtoBuf definition does not change) and safe for programmatic use.
    pub fn as_str_name(&self) -> &'static str {
        match self {
            Self::Unspecified => "NOMINAL_INSTRO_PACKAGE_REGISTRY_ERROR_UNSPECIFIED",
            Self::NotAvailable => "NOMINAL_INSTRO_PACKAGE_REGISTRY_ERROR_NOT_AVAILABLE",
        }
    }
    /// Creates an enum from field names used in the ProtoBuf definition.
    pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
        match value {
            "NOMINAL_INSTRO_PACKAGE_REGISTRY_ERROR_UNSPECIFIED" => {
                Some(Self::Unspecified)
            }
            "NOMINAL_INSTRO_PACKAGE_REGISTRY_ERROR_NOT_AVAILABLE" => {
                Some(Self::NotAvailable)
            }
            _ => None,
        }
    }
}
/// Generated client implementations.
pub mod nominal_instro_package_registry_service_client {
    #![allow(
        unused_variables,
        dead_code,
        missing_docs,
        clippy::wildcard_imports,
        clippy::let_unit_value,
    )]
    use tonic::codegen::*;
    use tonic::codegen::http::Uri;
    /// Service for accessing Nominal's private python package registry for the `nominal-instro` library.
    /// This private registry may be discontinue in the future if all of the packges are made public.
    /// Clients should prepare to handle the UNIMPLEMENTED status (http 501) by falling back to PyPi's public registry.
    #[derive(Debug, Clone)]
    pub struct NominalInstroPackageRegistryServiceClient<T> {
        inner: tonic::client::Grpc<T>,
    }
    impl NominalInstroPackageRegistryServiceClient<tonic::transport::Channel> {
        /// Attempt to create a new client by connecting to a given endpoint.
        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> NominalInstroPackageRegistryServiceClient<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,
        ) -> NominalInstroPackageRegistryServiceClient<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,
        {
            NominalInstroPackageRegistryServiceClient::new(
                InterceptedService::new(inner, interceptor),
            )
        }
        /// Compress requests with the given encoding.
        ///
        /// This requires the server to support it otherwise it might respond with an
        /// error.
        #[must_use]
        pub fn send_compressed(mut self, encoding: CompressionEncoding) -> Self {
            self.inner = self.inner.send_compressed(encoding);
            self
        }
        /// Enable decompressing responses.
        #[must_use]
        pub fn accept_compressed(mut self, encoding: CompressionEncoding) -> Self {
            self.inner = self.inner.accept_compressed(encoding);
            self
        }
        /// Limits the maximum size of a decoded message.
        ///
        /// Default: `4MB`
        #[must_use]
        pub fn max_decoding_message_size(mut self, limit: usize) -> Self {
            self.inner = self.inner.max_decoding_message_size(limit);
            self
        }
        /// Limits the maximum size of an encoded message.
        ///
        /// Default: `usize::MAX`
        #[must_use]
        pub fn max_encoding_message_size(mut self, limit: usize) -> Self {
            self.inner = self.inner.max_encoding_message_size(limit);
            self
        }
        /// Returns the URL for the python package registry, and a token that can be used to access it via HTTP BASIC auth.
        pub async fn get_python_package_registry(
            &mut self,
            request: impl tonic::IntoRequest<super::GetPythonPackageRegistryRequest>,
        ) -> std::result::Result<
            tonic::Response<super::GetPythonPackageRegistryResponse>,
            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.nominalinstro.v1.NominalInstroPackageRegistryService/GetPythonPackageRegistry",
            );
            let mut req = request.into_request();
            req.extensions_mut()
                .insert(
                    GrpcMethod::new(
                        "nominal.nominalinstro.v1.NominalInstroPackageRegistryService",
                        "GetPythonPackageRegistry",
                    ),
                );
            self.inner.unary(req, path, codec).await
        }
    }
}