pub struct AppRoleCreateRequest {
pub bind_secret_id: Option<bool>,
pub secret_id_bound_cidrs: Option<Vec<String>>,
pub token_bound_cidrs: Option<Vec<String>>,
pub token_policies: Option<Vec<String>>,
pub token_ttl: Option<String>,
pub token_max_ttl: Option<String>,
pub token_num_uses: Option<u64>,
pub token_type: Option<String>,
}Fields§
§bind_secret_id: Option<bool>§secret_id_bound_cidrs: Option<Vec<String>>§token_bound_cidrs: Option<Vec<String>>§token_policies: Option<Vec<String>>§token_ttl: Option<String>§token_max_ttl: Option<String>§token_num_uses: Option<u64>§token_type: Option<String>Trait Implementations§
Source§impl Clone for AppRoleCreateRequest
impl Clone for AppRoleCreateRequest
Source§fn clone(&self) -> AppRoleCreateRequest
fn clone(&self) -> AppRoleCreateRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AppRoleCreateRequest
impl Debug for AppRoleCreateRequest
Source§impl Default for AppRoleCreateRequest
impl Default for AppRoleCreateRequest
Source§fn default() -> AppRoleCreateRequest
fn default() -> AppRoleCreateRequest
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for AppRoleCreateRequest
impl RefUnwindSafe for AppRoleCreateRequest
impl Send for AppRoleCreateRequest
impl Sync for AppRoleCreateRequest
impl Unpin for AppRoleCreateRequest
impl UnsafeUnpin for AppRoleCreateRequest
impl UnwindSafe for AppRoleCreateRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more