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
fn upload_agent(&self) -> SdaClientResult<()>
Upload agent to service.
fn new_encryption_key(&self) -> SdaClientResult<EncryptionKeyId>
Create new encryption key in keystore.
fn upload_encryption_key(&self, key: &EncryptionKeyId) -> SdaClientResult<()>
Upload encryption key to service.
Implementors
impl Maintenance for SdaClient