cosmian_kms_cli 5.20.0

Command Line Interface used to manage the KMS server If any assistance is needed, please either visit the Cosmian technical documentation at https://docs.cosmian.com or contact the Cosmian support team on Discord https://discord.com/invite/7kPMNtHpnz
Documentation
use clap::Subcommand;
use cosmian_kms_client::KmsClient;
use create::CreateKeyPairsAction;
use disable::DisableKeyPairsAction;
use enable::EnableKeyPairsAction;
use get::GetKeyPairsAction;
use list::ListKeyPairsAction;
use obliterate::ObliterateKeyPairsAction;

use crate::error::result::KmsCliResult;

pub mod create;
mod disable;
mod enable;
mod get;
mod list;
mod obliterate;

pub(crate) const KEY_PAIRS_ENDPOINT: &str = "/settings/cse/keypairs/";

/// Insert, get, list, enable, disabled and obliterate key pairs to Gmail API
#[derive(Subcommand)]
pub enum KeyPairsCommands {
    Get(GetKeyPairsAction),
    List(ListKeyPairsAction),
    Enable(EnableKeyPairsAction),
    Disable(DisableKeyPairsAction),
    Obliterate(ObliterateKeyPairsAction),
    Create(Box<CreateKeyPairsAction>),
}

impl KeyPairsCommands {
    /// # Errors
    /// Returns an error if the request fails or if the response is not successful.
    pub async fn process(&self, kms_rest_client: KmsClient) -> KmsCliResult<()> {
        match self {
            Self::Get(action) => action.run(kms_rest_client.config).await,
            Self::List(action) => action.run(kms_rest_client.config).await,
            Self::Enable(action) => action.run(kms_rest_client.config).await,
            Self::Disable(action) => action.run(kms_rest_client.config).await,
            Self::Obliterate(action) => action.run(kms_rest_client.config).await,
            Self::Create(action) => {
                Box::pin(action.run(kms_rest_client)).await?;
                Ok(())
            }
        }
    }
}