pub struct IdClient<T> {
client: T,
path: String,
}
impl<T> IdClient<T>
where
T: crate::client::Client,
{
pub fn new(client: T, parent_path: &str, id: &str) -> Self {
Self {
client,
path: format!("{}/{}", parent_path, id),
}
}
}
impl<T> IdClient<T>
where
T: crate::client::Client,
{
#[doc = "Destroy Ceph Manager."]
pub fn delete(&self) -> Result<String, T::Error> {
let path = self.path.to_string();
self.client.delete(&path, &())
}
}
impl<T> IdClient<T>
where
T: crate::client::Client,
{
#[doc = "Create Ceph Manager"]
pub fn post(&self) -> Result<String, T::Error> {
let path = self.path.to_string();
self.client.post(&path, &())
}
}