nominal-api 0.1198.0

API bindings for the Nominal platform
Documentation
// This file is @generated by prost-build.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct RoleAssignmentRequest {
    #[prost(enumeration = "Role", tag = "1")]
    pub role: i32,
    /// The identity, eg a user, to which the role is assigned.
    #[prost(oneof = "role_assignment_request::Assignee", tags = "2")]
    pub assignee: ::core::option::Option<role_assignment_request::Assignee>,
}
/// Nested message and enum types in `RoleAssignmentRequest`.
pub mod role_assignment_request {
    /// The identity, eg a user, to which the role is assigned.
    #[derive(Clone, PartialEq, ::prost::Oneof)]
    pub enum Assignee {
        #[prost(string, tag = "2")]
        UserRid(::prost::alloc::string::String),
    }
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct RoleAssignmentResponse {
    #[prost(enumeration = "Role", tag = "1")]
    pub role: i32,
    /// The identity, eg a user, to which the role is assigned.
    #[prost(oneof = "role_assignment_response::Assignee", tags = "2")]
    pub assignee: ::core::option::Option<role_assignment_response::Assignee>,
}
/// Nested message and enum types in `RoleAssignmentResponse`.
pub mod role_assignment_response {
    /// The identity, eg a user, to which the role is assigned.
    #[derive(Clone, PartialEq, ::prost::Oneof)]
    pub enum Assignee {
        #[prost(string, tag = "2")]
        UserRid(::prost::alloc::string::String),
    }
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct UpdateResourceRolesRequest {
    #[prost(string, tag = "1")]
    pub resource: ::prost::alloc::string::String,
    #[prost(message, repeated, tag = "2")]
    pub assignments_to_add: ::prost::alloc::vec::Vec<RoleAssignmentRequest>,
    #[prost(message, repeated, tag = "3")]
    pub assignments_to_remove: ::prost::alloc::vec::Vec<RoleAssignmentRequest>,
}
/// Intentionally empty.
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct UpdateResourceRolesResponse {}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GetResourceRolesRequest {
    #[prost(string, tag = "1")]
    pub resource: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GetResourceRolesResponse {
    #[prost(message, repeated, tag = "1")]
    pub role_assignments: ::prost::alloc::vec::Vec<RoleAssignmentResponse>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct BatchGetResourceRolesRequest {
    #[prost(string, repeated, tag = "1")]
    pub resources: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct BatchGetResourceRolesResponse {
    #[prost(map = "string, message", tag = "1")]
    pub role_assignments_by_resource: ::std::collections::HashMap<
        ::prost::alloc::string::String,
        batch_get_resource_roles_response::RoleAssignmentWrapper,
    >,
}
/// Nested message and enum types in `BatchGetResourceRolesResponse`.
pub mod batch_get_resource_roles_response {
    #[derive(Clone, PartialEq, ::prost::Message)]
    pub struct RoleAssignmentWrapper {
        #[prost(message, repeated, tag = "1")]
        pub role_assignments: ::prost::alloc::vec::Vec<super::RoleAssignmentResponse>,
    }
}
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
#[repr(i32)]
pub enum Role {
    /// Default value, should not be used.
    Unspecified = 0,
    Owner = 1,
}
impl Role {
    /// 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 => "ROLE_UNSPECIFIED",
            Self::Owner => "ROLE_OWNER",
        }
    }
    /// Creates an enum from field names used in the ProtoBuf definition.
    pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
        match value {
            "ROLE_UNSPECIFIED" => Some(Self::Unspecified),
            "ROLE_OWNER" => Some(Self::Owner),
            _ => None,
        }
    }
}
/// Generated client implementations.
pub mod role_service_client {
    #![allow(
        unused_variables,
        dead_code,
        missing_docs,
        clippy::wildcard_imports,
        clippy::let_unit_value,
    )]
    use tonic::codegen::*;
    use tonic::codegen::http::Uri;
    /// RoleService provides methods for managing roles within Nominal.
    #[derive(Debug, Clone)]
    pub struct RoleServiceClient<T> {
        inner: tonic::client::Grpc<T>,
    }
    impl RoleServiceClient<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> RoleServiceClient<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,
        ) -> RoleServiceClient<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,
        {
            RoleServiceClient::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
        }
        /// Atomically adds and removes role assignments for a resource.
        /// Throws if the same role assignment is both added and removed in the same request.
        pub async fn update_resource_roles(
            &mut self,
            request: impl tonic::IntoRequest<super::UpdateResourceRolesRequest>,
        ) -> std::result::Result<
            tonic::Response<super::UpdateResourceRolesResponse>,
            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.authorization.roles.v1.RoleService/UpdateResourceRoles",
            );
            let mut req = request.into_request();
            req.extensions_mut()
                .insert(
                    GrpcMethod::new(
                        "nominal.authorization.roles.v1.RoleService",
                        "UpdateResourceRoles",
                    ),
                );
            self.inner.unary(req, path, codec).await
        }
        /// Gets the role assignments for a resource.
        pub async fn get_resource_roles(
            &mut self,
            request: impl tonic::IntoRequest<super::GetResourceRolesRequest>,
        ) -> std::result::Result<
            tonic::Response<super::GetResourceRolesResponse>,
            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.authorization.roles.v1.RoleService/GetResourceRoles",
            );
            let mut req = request.into_request();
            req.extensions_mut()
                .insert(
                    GrpcMethod::new(
                        "nominal.authorization.roles.v1.RoleService",
                        "GetResourceRoles",
                    ),
                );
            self.inner.unary(req, path, codec).await
        }
        /// Gets the role assignments for multiple resources.
        pub async fn batch_get_resource_roles(
            &mut self,
            request: impl tonic::IntoRequest<super::BatchGetResourceRolesRequest>,
        ) -> std::result::Result<
            tonic::Response<super::BatchGetResourceRolesResponse>,
            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.authorization.roles.v1.RoleService/BatchGetResourceRoles",
            );
            let mut req = request.into_request();
            req.extensions_mut()
                .insert(
                    GrpcMethod::new(
                        "nominal.authorization.roles.v1.RoleService",
                        "BatchGetResourceRoles",
                    ),
                );
            self.inner.unary(req, path, codec).await
        }
    }
}