#[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(message, repeated, tag = "5")]
pub security_keys: ::prost::alloc::vec::Vec<SecurityKey>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct CreateSshPublicKeyRequest {
#[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>,
}
#[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,
#[prost(string, tag = "2")]
pub project_id: ::prost::alloc::string::String,
#[prost(string, tag = "3")]
pub system_id: ::prost::alloc::string::String,
#[prost(enumeration = "LoginProfileView", tag = "4")]
pub view: i32,
}
#[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,
#[prost(enumeration = "LoginProfileView", tag = "4")]
pub view: i32,
#[prost(string, repeated, tag = "5")]
pub regions: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ImportSshPublicKeyResponse {
#[prost(message, optional, tag = "1")]
pub login_profile: ::core::option::Option<LoginProfile>,
#[prost(string, tag = "2")]
pub details: ::prost::alloc::string::String,
}
#[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>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct SecurityKey {
#[prost(string, tag = "1")]
pub public_key: ::prost::alloc::string::String,
#[prost(string, tag = "2")]
pub private_key: ::prost::alloc::string::String,
#[prost(string, optional, tag = "5")]
pub device_nickname: ::core::option::Option<::prost::alloc::string::String>,
#[prost(oneof = "security_key::ProtocolType", tags = "3, 4")]
pub protocol_type: ::core::option::Option<security_key::ProtocolType>,
}
pub mod security_key {
#[derive(Clone, PartialEq, ::prost::Oneof)]
pub enum ProtocolType {
#[prost(message, tag = "3")]
UniversalTwoFactor(super::UniversalTwoFactor),
#[prost(message, tag = "4")]
WebAuthn(super::WebAuthn),
}
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct UniversalTwoFactor {
#[prost(string, tag = "1")]
pub app_id: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct WebAuthn {
#[prost(string, tag = "1")]
pub rp_id: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct SignSshPublicKeyRequest {
#[prost(string, tag = "1")]
pub ssh_public_key: ::prost::alloc::string::String,
#[prost(string, tag = "2")]
pub parent: ::prost::alloc::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct SignSshPublicKeyResponse {
#[prost(string, tag = "1")]
pub signed_ssh_public_key: ::prost::alloc::string::String,
}
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
#[repr(i32)]
pub enum LoginProfileView {
Unspecified = 0,
Basic = 1,
SecurityKey = 2,
}
impl LoginProfileView {
pub fn as_str_name(&self) -> &'static str {
match self {
LoginProfileView::Unspecified => "LOGIN_PROFILE_VIEW_UNSPECIFIED",
LoginProfileView::Basic => "BASIC",
LoginProfileView::SecurityKey => "SECURITY_KEY",
}
}
pub fn from_str_name(value: &str) -> ::core::option::Option<Self> {
match value {
"LOGIN_PROFILE_VIEW_UNSPECIFIED" => Some(Self::Unspecified),
"BASIC" => Some(Self::Basic),
"SECURITY_KEY" => Some(Self::SecurityKey),
_ => None,
}
}
}
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 create_ssh_public_key(
&mut self,
request: impl tonic::IntoRequest<super::CreateSshPublicKeyRequest>,
) -> 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.v1beta.OsLoginService/CreateSshPublicKey",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.oslogin.v1beta.OsLoginService",
"CreateSshPublicKey",
),
);
self.inner.unary(req, path, codec).await
}
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.v1beta.OsLoginService/DeletePosixAccount",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.oslogin.v1beta.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.v1beta.OsLoginService/DeleteSshPublicKey",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.oslogin.v1beta.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.v1beta.OsLoginService/GetLoginProfile",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.oslogin.v1beta.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.v1beta.OsLoginService/GetSshPublicKey",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.oslogin.v1beta.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.v1beta.OsLoginService/ImportSshPublicKey",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.oslogin.v1beta.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.v1beta.OsLoginService/UpdateSshPublicKey",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.oslogin.v1beta.OsLoginService",
"UpdateSshPublicKey",
),
);
self.inner.unary(req, path, codec).await
}
pub async fn sign_ssh_public_key(
&mut self,
request: impl tonic::IntoRequest<super::SignSshPublicKeyRequest>,
) -> std::result::Result<
tonic::Response<super::SignSshPublicKeyResponse>,
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.v1beta.OsLoginService/SignSshPublicKey",
);
let mut req = request.into_request();
req.extensions_mut()
.insert(
GrpcMethod::new(
"google.cloud.oslogin.v1beta.OsLoginService",
"SignSshPublicKey",
),
);
self.inner.unary(req, path, codec).await
}
}
}