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
use clap::Parser;
use cosmian_kms_client::{
    KmsClient,
    kmip_2_1::{kmip_operations::ReKey, kmip_types::UniqueIdentifier},
};

use crate::{
    actions::kms::{console, labels::KEY_ID},
    error::result::{KmsCliResult, KmsCliResultHelper},
};

/// Refresh an existing symmetric key
#[derive(Parser)]
#[clap(verbatim_doc_comment)]
pub struct ReKeyAction {
    /// The tag to associate with the key.
    /// To specify multiple tags, use the option multiple times.
    #[clap(long = KEY_ID, short = 'k')]
    pub(crate) key_id: String,
}

impl ReKeyAction {
    pub(crate) async fn run(&self, kms_rest_client: KmsClient) -> KmsCliResult<UniqueIdentifier> {
        let rekey_key_request = ReKey {
            unique_identifier: Some(UniqueIdentifier::TextString(self.key_id.clone())),
            ..ReKey::default()
        };
        let unique_identifier = kms_rest_client
            .rekey(rekey_key_request)
            .await
            .with_context(|| "failed rekeying the key")?
            .unique_identifier;

        let mut stdout = console::Stdout::new("The symmetric key was successfully refreshed.");
        stdout.set_unique_identifier(&unique_identifier);
        stdout.write()?;

        Ok(unique_identifier)
    }
}