manta-cli 2.0.0-beta.7

Another CLI for ALPS
//! Implements the `manta delete redfish-endpoint` command.

use anyhow::Error;

use crate::cli::http_client::MantaClient;
use manta_shared::common::app_context::AppContext;

/// CLI adapter for `manta delete redfish-endpoint`.
pub async fn exec(
  ctx: &AppContext<'_>,
  token: &str,
  id: &str,
) -> Result<(), Error> {
  let server_url = ctx.manta_server_url;
  MantaClient::new(server_url, ctx.site_name)?
    .delete_redfish_endpoint(token, id)
    .await?;
  println!("Redfish endpoint for id '{}' deleted successfully", id);
  Ok(())
}