manta-cli 2.0.0-beta.12

Another CLI for ALPS
//! Implements the `manta add hardware` command.

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

/// Add hardware components to a cluster group (CLI entry point).
#[allow(clippy::too_many_arguments)]
pub async fn exec(
  ctx: &AppContext<'_>,
  shasta_token: &str,
  target_hsm_group_name: &str,
  parent_hsm_group_name: &str,
  pattern: &str,
  dryrun: bool,
  create_hsm_group: bool,
  output_opt: Option<&str>,
) -> anyhow::Result<()> {
  let server_url = ctx.manta_server_url;
  let result = MantaClient::new(server_url, ctx.site_name)?
    .add_hw_component(
      shasta_token,
      target_hsm_group_name,
      parent_hsm_group_name,
      pattern,
      create_hsm_group,
      dryrun,
    )
    .await?;
  let message = if dryrun {
    "Dryrun enabled, not modifying the groups on the system."
  } else {
    "Hardware components added."
  };
  action_result::print_with_data(message, &result, output_opt)?;
  Ok(())
}