StepDown

Trait StepDown 

Source
pub trait StepDown {
    // Required method
    fn step_down<'life0, 'async_trait>(
        &'life0 mut self,
        token: Secret<String>,
    ) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}
Expand description

Step down vault pod from active to standby

Required Methods§

Source

fn step_down<'life0, 'async_trait>( &'life0 mut self, token: Secret<String>, ) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Step down vault pod from active to standby

Implementors§

Source§

impl<T> StepDown for T
where T: HttpRequest<BytesBody> + Send + Sync + 'static,