#[derive(Clone, PartialEq, ::prost::Message)]
pub struct LoginProfile {
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
#[prost(message, repeated, tag = "2")]
pub posix_accounts: ::prost::alloc::vec::Vec<super::common::PosixAccount>,
#[prost(btree_map = "string, message", tag = "3")]
pub ssh_public_keys: ::prost::alloc::collections::BTreeMap<
::prost::alloc::string::String,
super::common::SshPublicKey,
>,
#[prost(bool, tag = "4")]
pub suspended: bool,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct DeletePosixAccountRequest {
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct DeleteSshPublicKeyRequest {
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GetLoginProfileRequest {
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct GetSshPublicKeyRequest {
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ImportSshPublicKeyRequest {
#[prost(string, tag = "1")]
pub parent: ::prost::alloc::string::String,
#[prost(message, optional, tag = "2")]
pub ssh_public_key: ::core::option::Option<super::common::SshPublicKey>,
#[prost(string, tag = "3")]
pub project_id: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ImportSshPublicKeyResponse {
#[prost(message, optional, tag = "1")]
pub login_profile: ::core::option::Option<LoginProfile>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct UpdateSshPublicKeyRequest {
#[prost(string, tag = "1")]
pub name: ::prost::alloc::string::String,
#[prost(message, optional, tag = "2")]
pub ssh_public_key: ::core::option::Option<super::common::SshPublicKey>,
#[prost(message, optional, tag = "3")]
pub update_mask: ::core::option::Option<::prost_types::FieldMask>,
}
pub mod os_login_service_client {
#![allow(unused_variables, dead_code, missing_docs, clippy::let_unit_value)]
use tonic::codegen::*;
use tonic::codegen::http::Uri;
#[derive(Debug, Clone)]
pub struct OsLoginServiceClient<T> {
inner: tonic::client::Grpc<T>,
}
impl<T> OsLoginServiceClient<T>
where
T: tonic::client::GrpcService<tonic::body::BoxBody>,
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,
) -> OsLoginServiceClient<InterceptedService<T, F>>
where
F: tonic::service::Interceptor,
T::ResponseBody: Default,
T: tonic::codegen::Service<
http::Request<tonic::body::BoxBody>,
Response = http::Response<
<T as tonic::client::GrpcService<tonic::body::BoxBody>>::ResponseBody,
>,
>,
<T as tonic::codegen::Service<
http::Request<tonic::body::BoxBody>,
>>::Error: Into<StdError> + std::marker::Send + std::marker::Sync,
{
OsLoginServiceClient::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 delete_posix_account(
&mut self,
request: impl tonic::IntoRequest<super::DeletePosixAccountRequest>,
) -> std::result::Result<tonic::Response<()>, tonic::Status> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.oslogin.v1alpha.OsLoginService/DeletePosixAccount",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.oslogin.v1alpha.OsLoginService",
"DeletePosixAccount",
),
);
self.inner.unary(req, path, codec).await
}
pub async fn delete_ssh_public_key(
&mut self,
request: impl tonic::IntoRequest<super::DeleteSshPublicKeyRequest>,
) -> std::result::Result<tonic::Response<()>, tonic::Status> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.oslogin.v1alpha.OsLoginService/DeleteSshPublicKey",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.oslogin.v1alpha.OsLoginService",
"DeleteSshPublicKey",
),
);
self.inner.unary(req, path, codec).await
}
pub async fn get_login_profile(
&mut self,
request: impl tonic::IntoRequest<super::GetLoginProfileRequest>,
) -> std::result::Result<tonic::Response<super::LoginProfile>, tonic::Status> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.oslogin.v1alpha.OsLoginService/GetLoginProfile",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.oslogin.v1alpha.OsLoginService",
"GetLoginProfile",
),
);
self.inner.unary(req, path, codec).await
}
pub async fn get_ssh_public_key(
&mut self,
request: impl tonic::IntoRequest<super::GetSshPublicKeyRequest>,
) -> std::result::Result<
tonic::Response<super::super::common::SshPublicKey>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.oslogin.v1alpha.OsLoginService/GetSshPublicKey",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.oslogin.v1alpha.OsLoginService",
"GetSshPublicKey",
),
);
self.inner.unary(req, path, codec).await
}
pub async fn import_ssh_public_key(
&mut self,
request: impl tonic::IntoRequest<super::ImportSshPublicKeyRequest>,
) -> std::result::Result<
tonic::Response<super::ImportSshPublicKeyResponse>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.oslogin.v1alpha.OsLoginService/ImportSshPublicKey",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.oslogin.v1alpha.OsLoginService",
"ImportSshPublicKey",
),
);
self.inner.unary(req, path, codec).await
}
pub async fn update_ssh_public_key(
&mut self,
request: impl tonic::IntoRequest<super::UpdateSshPublicKeyRequest>,
) -> std::result::Result<
tonic::Response<super::super::common::SshPublicKey>,
tonic::Status,
> {
self.inner
.ready()
.await
.map_err(|e| {
tonic::Status::new(
tonic::Code::Unknown,
format!("Service was not ready: {}", e.into()),
)
})?;
let codec = tonic::codec::ProstCodec::default();
let path = http::uri::PathAndQuery::from_static(
"/google.cloud.oslogin.v1alpha.OsLoginService/UpdateSshPublicKey",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.oslogin.v1alpha.OsLoginService",
"UpdateSshPublicKey",
),
);
self.inner.unary(req, path, codec).await
}
}
}