pub struct UidRotateToken {
pub fork: Option<bool>,
pub json: Option<bool>,
pub send_manual_ack_token: Option<String>,
pub uid_token: Option<String>,
pub with_manual_ack: Option<bool>,
}Expand description
UidRotateToken : uidRotateToken is a command that rotates an Akeyless Universal Identity token.
Fields§
§fork: Option<bool>Create a new child token with default parameters
json: Option<bool>Set output format to JSON
send_manual_ack_token: Option<String>The new rotated token to send manual ack for (with uid-token=the-orig-token)
uid_token: Option<String>The Universal identity token
with_manual_ack: Option<bool>Disable automatic ack
Implementations§
Source§impl UidRotateToken
impl UidRotateToken
Sourcepub fn new() -> UidRotateToken
pub fn new() -> UidRotateToken
uidRotateToken is a command that rotates an Akeyless Universal Identity token.
Trait Implementations§
Source§impl Clone for UidRotateToken
impl Clone for UidRotateToken
Source§fn clone(&self) -> UidRotateToken
fn clone(&self) -> UidRotateToken
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 UidRotateToken
impl Debug for UidRotateToken
Source§impl Default for UidRotateToken
impl Default for UidRotateToken
Source§fn default() -> UidRotateToken
fn default() -> UidRotateToken
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UidRotateToken
impl<'de> Deserialize<'de> for UidRotateToken
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for UidRotateToken
impl PartialEq for UidRotateToken
Source§fn eq(&self, other: &UidRotateToken) -> bool
fn eq(&self, other: &UidRotateToken) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for UidRotateToken
impl Serialize for UidRotateToken
impl StructuralPartialEq for UidRotateToken
Auto Trait Implementations§
impl Freeze for UidRotateToken
impl RefUnwindSafe for UidRotateToken
impl Send for UidRotateToken
impl Sync for UidRotateToken
impl Unpin for UidRotateToken
impl UnsafeUnpin for UidRotateToken
impl UnwindSafe for UidRotateToken
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