#[derive(Clone, PartialEq, ::prost::Message)]
pub struct CreateSecretRequest {
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
#[prost(string, tag = "2")]
pub description: ::prost::alloc::string::String,
#[prost(string, tag = "3")]
pub decrypted_value: ::prost::alloc::string::String,
#[prost(map = "string, string", tag = "4")]
pub properties: ::std::collections::HashMap<
::prost::alloc::string::String,
::prost::alloc::string::String,
>,
#[prost(string, repeated, tag = "5")]
pub labels: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
#[prost(string, optional, tag = "6")]
pub workspace: ::core::option::Option<::prost::alloc::string::String>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GetSecretsRequest {
#[prost(string, repeated, tag = "1")]
pub secret_rids: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GetSecretsResponse {
#[prost(message, repeated, tag = "1")]
pub response: ::prost::alloc::vec::Vec<Secret>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct SearchSecretsQuery {
#[prost(string, optional, tag = "1")]
pub search_text: ::core::option::Option<::prost::alloc::string::String>,
#[prost(string, optional, tag = "2")]
pub label: ::core::option::Option<::prost::alloc::string::String>,
#[prost(message, optional, tag = "3")]
pub property: ::core::option::Option<super::super::types::Property>,
#[prost(message, repeated, tag = "4")]
pub and: ::prost::alloc::vec::Vec<SearchSecretsQuery>,
#[prost(message, repeated, tag = "5")]
pub or: ::prost::alloc::vec::Vec<SearchSecretsQuery>,
#[prost(string, optional, tag = "6")]
pub workspace: ::core::option::Option<::prost::alloc::string::String>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct SearchSecretsRequest {
#[prost(message, optional, tag = "1")]
pub query: ::core::option::Option<SearchSecretsQuery>,
#[prost(int32, optional, tag = "2")]
pub page_size: ::core::option::Option<i32>,
#[prost(message, optional, tag = "3")]
pub sort: ::core::option::Option<SortOptions>,
#[prost(string, optional, tag = "4")]
pub token: ::core::option::Option<::prost::alloc::string::String>,
#[prost(enumeration = "super::super::types::ArchivedStatus", repeated, tag = "5")]
pub archived_statuses: ::prost::alloc::vec::Vec<i32>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct SearchSecretsResponse {
#[prost(message, repeated, tag = "1")]
pub results: ::prost::alloc::vec::Vec<Secret>,
#[prost(string, optional, tag = "2")]
pub next_page_token: ::core::option::Option<::prost::alloc::string::String>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Secret {
#[prost(string, tag = "1")]
pub rid: ::prost::alloc::string::String,
#[prost(string, tag = "2")]
pub name: ::prost::alloc::string::String,
#[prost(string, tag = "3")]
pub description: ::prost::alloc::string::String,
#[prost(string, tag = "4")]
pub created_by: ::prost::alloc::string::String,
#[prost(map = "string, string", tag = "5")]
pub properties: ::std::collections::HashMap<
::prost::alloc::string::String,
::prost::alloc::string::String,
>,
#[prost(string, repeated, tag = "6")]
pub labels: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
#[prost(message, optional, tag = "7")]
pub created_at: ::core::option::Option<
super::super::super::google::protobuf::Timestamp,
>,
#[prost(bool, tag = "8")]
pub is_archived: bool,
}
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct SortOptions {
#[prost(bool, tag = "1")]
pub is_descending: bool,
#[prost(enumeration = "SortField", tag = "2")]
pub field: i32,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct UpdateSecretRequest {
#[prost(string, optional, tag = "1")]
pub name: ::core::option::Option<::prost::alloc::string::String>,
#[prost(string, optional, tag = "2")]
pub description: ::core::option::Option<::prost::alloc::string::String>,
#[prost(message, optional, tag = "3")]
pub properties: ::core::option::Option<super::super::types::PropertyUpdateWrapper>,
#[prost(message, optional, tag = "4")]
pub labels: ::core::option::Option<super::super::types::LabelUpdateWrapper>,
#[prost(string, optional, tag = "5")]
pub decrypted_value: ::core::option::Option<::prost::alloc::string::String>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct CreateResponse {
#[prost(message, optional, tag = "1")]
pub secret: ::core::option::Option<Secret>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GetRequest {
#[prost(string, tag = "1")]
pub rid: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GetResponse {
#[prost(message, optional, tag = "1")]
pub secret: ::core::option::Option<Secret>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct UpdateRequest {
#[prost(string, tag = "1")]
pub rid: ::prost::alloc::string::String,
#[prost(message, optional, tag = "2")]
pub request: ::core::option::Option<UpdateSecretRequest>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct UpdateResponse {
#[prost(message, optional, tag = "1")]
pub secret: ::core::option::Option<Secret>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct DeleteRequest {
#[prost(string, tag = "1")]
pub rid: ::prost::alloc::string::String,
}
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct DeleteResponse {}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ArchiveRequest {
#[prost(string, tag = "1")]
pub rid: ::prost::alloc::string::String,
}
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct ArchiveResponse {}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct UnarchiveRequest {
#[prost(string, tag = "1")]
pub rid: ::prost::alloc::string::String,
}
#[derive(Clone, Copy, PartialEq, ::prost::Message)]
pub struct UnarchiveResponse {}
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
#[repr(i32)]
pub enum SortField {
Unspecified = 0,
CreatedAt = 1,
}
impl SortField {
pub fn as_str_name(&self) -> &'static str {
match self {
Self::Unspecified => "SORT_FIELD_UNSPECIFIED",
Self::CreatedAt => "CREATED_AT",
}
}
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"SORT_FIELD_UNSPECIFIED" => Some(Self::Unspecified),
"CREATED_AT" => Some(Self::CreatedAt),
_ => None,
}
}
}
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
#[repr(i32)]
pub enum SecretsError {
SecretNotFound = 0,
SecretsNotFound = 1,
UnableToEncryptSecret = 2,
InvalidArgument = 3,
}
impl SecretsError {
pub fn as_str_name(&self) -> &'static str {
match self {
Self::SecretNotFound => "SECRETS_ERROR_SECRET_NOT_FOUND",
Self::SecretsNotFound => "SECRETS_ERROR_SECRETS_NOT_FOUND",
Self::UnableToEncryptSecret => "SECRETS_ERROR_UNABLE_TO_ENCRYPT_SECRET",
Self::InvalidArgument => "SECRETS_ERROR_INVALID_ARGUMENT",
}
}
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"SECRETS_ERROR_SECRET_NOT_FOUND" => Some(Self::SecretNotFound),
"SECRETS_ERROR_SECRETS_NOT_FOUND" => Some(Self::SecretsNotFound),
"SECRETS_ERROR_UNABLE_TO_ENCRYPT_SECRET" => Some(Self::UnableToEncryptSecret),
"SECRETS_ERROR_INVALID_ARGUMENT" => Some(Self::InvalidArgument),
_ => None,
}
}
}
pub mod secret_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 SecretServiceClient<T> {
inner: tonic::client::Grpc<T>,
}
impl SecretServiceClient<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> SecretServiceClient<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,
) -> SecretServiceClient<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,
{
SecretServiceClient::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 create(
&mut self,
request: impl tonic::IntoRequest<super::CreateSecretRequest>,
) -> std::result::Result<tonic::Response<super::CreateResponse>, 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.secrets.v1.SecretService/Create",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(GrpcMethod::new("nominal.secrets.v1.SecretService", "Create"));
self.inner.unary(req, path, codec).await
}
pub async fn get(
&mut self,
request: impl tonic::IntoRequest<super::GetRequest>,
) -> std::result::Result<tonic::Response<super::GetResponse>, 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.secrets.v1.SecretService/Get",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(GrpcMethod::new("nominal.secrets.v1.SecretService", "Get"));
self.inner.unary(req, path, codec).await
}
pub async fn get_batch(
&mut self,
request: impl tonic::IntoRequest<super::GetSecretsRequest>,
) -> std::result::Result<
tonic::Response<super::GetSecretsResponse>,
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.secrets.v1.SecretService/GetBatch",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(GrpcMethod::new("nominal.secrets.v1.SecretService", "GetBatch"));
self.inner.unary(req, path, codec).await
}
pub async fn update(
&mut self,
request: impl tonic::IntoRequest<super::UpdateRequest>,
) -> std::result::Result<tonic::Response<super::UpdateResponse>, 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.secrets.v1.SecretService/Update",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(GrpcMethod::new("nominal.secrets.v1.SecretService", "Update"));
self.inner.unary(req, path, codec).await
}
pub async fn delete(
&mut self,
request: impl tonic::IntoRequest<super::DeleteRequest>,
) -> std::result::Result<tonic::Response<super::DeleteResponse>, 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.secrets.v1.SecretService/Delete",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(GrpcMethod::new("nominal.secrets.v1.SecretService", "Delete"));
self.inner.unary(req, path, codec).await
}
pub async fn archive(
&mut self,
request: impl tonic::IntoRequest<super::ArchiveRequest>,
) -> std::result::Result<
tonic::Response<super::ArchiveResponse>,
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.secrets.v1.SecretService/Archive",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(GrpcMethod::new("nominal.secrets.v1.SecretService", "Archive"));
self.inner.unary(req, path, codec).await
}
pub async fn unarchive(
&mut self,
request: impl tonic::IntoRequest<super::UnarchiveRequest>,
) -> std::result::Result<
tonic::Response<super::UnarchiveResponse>,
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.secrets.v1.SecretService/Unarchive",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new("nominal.secrets.v1.SecretService", "Unarchive"),
);
self.inner.unary(req, path, codec).await
}
pub async fn search(
&mut self,
request: impl tonic::IntoRequest<super::SearchSecretsRequest>,
) -> std::result::Result<
tonic::Response<super::SearchSecretsResponse>,
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.secrets.v1.SecretService/Search",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(GrpcMethod::new("nominal.secrets.v1.SecretService", "Search"));
self.inner.unary(req, path, codec).await
}
}
}