Trait sda_client::Maintenance [] [src]

pub trait Maintenance {
    fn upload_agent(&self) -> SdaClientResult<()>;
    fn new_encryption_key(&self) -> SdaClientResult<EncryptionKeyId>;
    fn upload_encryption_key(&self,
                             key: &EncryptionKeyId)
                             -> SdaClientResult<()>; }

Basic tasks typically performed with respect to agent associated resources.

Required Methods

Upload agent to service.

Create new encryption key in keystore.

Upload encryption key to service.

Implementors