manta-cli 1.64.3

Another CLI for ALPS
//! Dispatches `RedfishEndpointTrait` methods to csm-rs or ochami-rs.

use manta_backend_dispatcher::{
  error::Error,
  interfaces::hsm::redfish_endpoint::RedfishEndpointTrait,
  types::hsm::inventory::{RedfishEndpoint, RedfishEndpointArray},
};

use StaticBackendDispatcher::*;

use serde_json::Value;

use crate::manta_backend_dispatcher::StaticBackendDispatcher;

impl RedfishEndpointTrait for StaticBackendDispatcher {
  async fn get_all_redfish_endpoints(
    &self,
    auth_token: &str,
  ) -> Result<RedfishEndpointArray, Error> {
    dispatch!(self, get_all_redfish_endpoints, auth_token)
  }

  async fn get_redfish_endpoints(
    &self,
    auth_token: &str,
    id: Option<&str>,
    fqdn: Option<&str>,
    r#type: Option<&str>,
    uuid: Option<&str>,
    macaddr: Option<&str>,
    ip_address: Option<&str>,
    last_status: Option<&str>,
  ) -> Result<RedfishEndpointArray, Error> {
    dispatch!(
      self,
      get_redfish_endpoints,
      auth_token,
      id,
      fqdn,
      r#type,
      uuid,
      macaddr,
      ip_address,
      last_status
    )
  }

  async fn add_redfish_endpoint(
    &self,
    auth_token: &str,
    redfish_endpoint: &RedfishEndpointArray,
  ) -> Result<(), Error> {
    dispatch!(self, add_redfish_endpoint, auth_token, redfish_endpoint)
  }

  async fn update_redfish_endpoint(
    &self,
    auth_token: &str,
    redfish_endpoint: &RedfishEndpoint,
  ) -> Result<(), Error> {
    dispatch!(self, update_redfish_endpoint, auth_token, redfish_endpoint)
  }

  async fn delete_redfish_endpoint(
    &self,
    auth_token: &str,
    id: &str,
  ) -> Result<Value, Error> {
    dispatch!(self, delete_redfish_endpoint, auth_token, id)
  }
}