use manta_backend_dispatcher::interfaces::hsm::component_ethernet_interface::ComponentEthernetInterfaceTrait;
use manta_backend_dispatcher::types::hsm::inventory::ComponentEthernetInterface;
use serde_json::Value;
use super::*;
impl ComponentEthernetInterfaceTrait for StaticBackendDispatcher {
async fn get_all_component_ethernet_interfaces(
&self,
auth_token: &str,
) -> Result<Vec<ComponentEthernetInterface>, Error> {
dispatch!(self, get_all_component_ethernet_interfaces, auth_token)
}
async fn get_component_ethernet_interface(
&self,
auth_token: &str,
eth_interface_id: &str,
) -> Result<ComponentEthernetInterface, Error> {
dispatch!(
self,
get_component_ethernet_interface,
auth_token,
eth_interface_id
)
}
async fn add_component_ethernet_interface(
&self,
auth_token: &str,
component_ethernet_interface: &ComponentEthernetInterface,
) -> Result<(), Error> {
dispatch!(
self,
add_component_ethernet_interface,
auth_token,
component_ethernet_interface
)
}
async fn update_component_ethernet_interface(
&self,
auth_token: &str,
eth_interface_id: &str,
description: Option<&str>,
ip_address_mapping: (&str, &str),
) -> Result<Value, Error> {
dispatch!(
self,
update_component_ethernet_interface,
auth_token,
eth_interface_id,
description,
ip_address_mapping
)
}
async fn delete_all_component_ethernet_interfaces(
&self,
auth_token: &str,
) -> Result<Value, Error> {
dispatch!(self, delete_all_component_ethernet_interfaces, auth_token)
}
async fn delete_component_ethernet_interface(
&self,
auth_token: &str,
eth_interface_id: &str,
) -> Result<Value, Error> {
dispatch!(
self,
delete_component_ethernet_interface,
auth_token,
eth_interface_id
)
}
}