refactor(rust): trim vault cert login endpoint

Co-Authored-By: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
This commit is contained in:
Yujong Lee 2026-09-21 21:35:39 +00:00
parent ef2ab74c7a
commit d90ff4a30b
2 changed files with 5 additions and 8 deletions

View file

@ -3,22 +3,19 @@
pub struct CertLoginRequest {
#[endpoint(skip)]
pub mount: String,
#[endpoint(skip)]
#[allow(dead_code)]
pub name: Option<String>,
#[endpoint(raw)]
body: Vec<u8>,
}
impl CertLoginRequest {
pub fn new(name: Option<String>) -> Self {
let body: Vec<u8> = match name.as_deref() {
Some(name) => serde_json::to_vec(&serde_json::json!({ "name": name })).unwrap(),
pub fn new(name: Option<&str>) -> Self {
let body: Vec<u8> = match name {
Some(name) => serde_json::to_vec(&serde_json::json!({ "name": name }))
.expect("json object serialization is infallible"),
None => b"{}".to_vec(),
};
Self {
mount: "cert".to_owned(),
name,
body,
}
}

View file

@ -207,7 +207,7 @@ impl HashicorpVault {
(None, Some(tls)) => {
let login_client: VaultClient =
self.build_client(self.config.login_namespace(), "")?;
let endpoint: CertLoginRequest = CertLoginRequest::new(tls.role.clone());
let endpoint: CertLoginRequest = CertLoginRequest::new(tls.role.as_deref());
let auth = api::auth(&login_client, endpoint)
.await
.map_err(|error| map_api_error(error, ErrorContext::Login))?;