use std::sync::Arc;
use reqwest::Method;
use super::JsonValue;
use crate::{
error::SdkError,
transport::{RequestSpec, Transport},
};
#[derive(Debug, Clone)]
pub struct ApiKeysClient {
transport: Arc<Transport>,
}
impl ApiKeysClient {
pub(crate) fn new(transport: Arc<Transport>) -> Self {
Self { transport }
}
pub async fn list(&self) -> Result<Vec<JsonValue>, SdkError> {
self.transport
.request_json::<(), Vec<JsonValue>>(RequestSpec {
method: Method::GET,
path: "/api-keys",
..Default::default()
})
.await
}
pub async fn create(&self, body: &JsonValue) -> Result<JsonValue, SdkError> {
self.transport
.request_json::<JsonValue, JsonValue>(RequestSpec {
method: Method::POST,
path: "/api-keys",
body: Some(body),
..Default::default()
})
.await
}
pub async fn update(&self, id: &str, body: &JsonValue) -> Result<JsonValue, SdkError> {
let path = format!("/api-keys/{id}");
self.transport
.request_json::<JsonValue, JsonValue>(RequestSpec {
method: Method::PATCH,
path: &path,
body: Some(body),
..Default::default()
})
.await
}
pub async fn revoke(&self, id: &str) -> Result<(), SdkError> {
let path = format!("/api-keys/{id}");
self.transport
.request_json::<(), ()>(RequestSpec {
method: Method::DELETE,
path: &path,
..Default::default()
})
.await
}
pub async fn restore(&self, id: &str) -> Result<JsonValue, SdkError> {
let path = format!("/api-keys/{id}/restore");
self.transport
.request_json::<(), JsonValue>(RequestSpec {
method: Method::POST,
path: &path,
..Default::default()
})
.await
}
pub async fn purge(&self, id: &str) -> Result<(), SdkError> {
let path = format!("/api-keys/{id}/purge");
self.transport
.request_json::<(), ()>(RequestSpec {
method: Method::DELETE,
path: &path,
..Default::default()
})
.await
}
}