use tmflib::tmf639::resource::Resource;
use super::{create_tmf, delete_tmf, get_tmf, list_tmf, update_tmf};
use crate::common::tmf_error::TMFError;
#[cfg(not(feature = "blocking"))]
use crate::AsyncOperations;
#[cfg(feature = "blocking")]
use crate::BlockingOperations;
use crate::{Config, HasNew};
pub struct TMF639ResourceInventoryManagement {
config: Config,
}
impl TMF639ResourceInventoryManagement {
pub fn new(config: Config) -> TMF639ResourceInventoryManagement {
TMF639ResourceInventoryManagement { config }
}
}
#[cfg(feature = "blocking")]
impl BlockingOperations for TMF639ResourceInventoryManagement {
type TMF = Resource;
fn create(&self, item: Self::TMF) -> Result<Self::TMF, TMFError> {
create_tmf(&self.config, item)
}
fn delete(&self, id: impl Into<String>) -> Result<Self::TMF, TMFError> {
delete_tmf(&self.config, id.into())
}
fn get(&self, id: impl Into<String>) -> Result<Vec<Self::TMF>, TMFError> {
get_tmf(&self.config, id.into())
}
fn list(&self, filter: Option<crate::QueryOptions>) -> Result<Vec<Self::TMF>, TMFError> {
list_tmf(&self.config, filter)
}
fn update(&self, id: impl Into<String>, patch: Self::TMF) -> Result<Self::TMF, TMFError> {
update_tmf(&self.config, id.into(), patch)
}
}
#[cfg(not(feature = "blocking"))]
impl AsyncOperations for TMF639ResourceInventoryManagement {
type TMF = Resource;
async fn create(&self, item: Self::TMF) -> Result<Self::TMF, TMFError> {
create_tmf(&self.config, item).await
}
async fn delete(&self, id: impl Into<String>) -> Result<Self::TMF, TMFError> {
delete_tmf(&self.config, id.into()).await
}
async fn get(&self, id: impl Into<String>) -> Result<Vec<Self::TMF>, TMFError> {
get_tmf(&self.config, id.into()).await
}
async fn list(&self, filter: Option<crate::QueryOptions>) -> Result<Vec<Self::TMF>, TMFError> {
list_tmf(&self.config, filter).await
}
async fn update(&self, id: impl Into<String>, patch: Self::TMF) -> Result<Self::TMF, TMFError> {
update_tmf(&self.config, id.into(), patch).await
}
}
#[derive(Clone, Default, Debug)]
pub struct TMF639 {
config: Config,
}
impl HasNew<TMF639> for TMF639 {
fn new(config: Config) -> TMF639 {
TMF639 { config }
}
}
impl TMF639 {
pub fn resource(&mut self) -> TMF639ResourceInventoryManagement {
super::tmf639::TMF639ResourceInventoryManagement::new(self.config.clone())
}
}