cosmian_kms_cli 5.16.2

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
pub(crate) mod byok;

use clap::Parser;
use cosmian_kms_client::KmsClient;

use crate::{actions::kms::azure::byok::ByokCommands, error::result::KmsCliResult};

/// Support for Azure specific interactions.
#[derive(Parser)]
pub enum AzureCommands {
    #[command(subcommand)]
    Byok(ByokCommands),
}

impl AzureCommands {
    pub async fn process(&self, kms_rest_client: KmsClient) -> KmsCliResult<()> {
        match self {
            Self::Byok(command) => command.process(kms_rest_client).await?,
        }
        Ok(())
    }
}