pub struct RotatedSecretDelete {
pub json: Option<bool>,
pub name: String,
pub token: Option<String>,
pub uid_token: Option<String>,
pub version: Option<i32>,
}Expand description
RotatedSecretDelete : rotatedSecretDelete is a command that deletes a rotated secret
Fields§
§json: Option<bool>Set output format to JSON
name: StringRotated secret name
token: Option<String>Authentication token (see /auth and /configure)
uid_token: Option<String>The universal identity token, Required only for universal_identity authentication
version: Option<i32>The specific version you want to delete, -1=entire item with all versions (default)
Implementations§
Source§impl RotatedSecretDelete
impl RotatedSecretDelete
Sourcepub fn new(name: String) -> RotatedSecretDelete
pub fn new(name: String) -> RotatedSecretDelete
rotatedSecretDelete is a command that deletes a rotated secret
Trait Implementations§
Source§impl Clone for RotatedSecretDelete
impl Clone for RotatedSecretDelete
Source§fn clone(&self) -> RotatedSecretDelete
fn clone(&self) -> RotatedSecretDelete
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 RotatedSecretDelete
impl Debug for RotatedSecretDelete
Source§impl Default for RotatedSecretDelete
impl Default for RotatedSecretDelete
Source§fn default() -> RotatedSecretDelete
fn default() -> RotatedSecretDelete
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RotatedSecretDelete
impl<'de> Deserialize<'de> for RotatedSecretDelete
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 RotatedSecretDelete
impl PartialEq for RotatedSecretDelete
Source§fn eq(&self, other: &RotatedSecretDelete) -> bool
fn eq(&self, other: &RotatedSecretDelete) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for RotatedSecretDelete
impl Serialize for RotatedSecretDelete
impl StructuralPartialEq for RotatedSecretDelete
Auto Trait Implementations§
impl Freeze for RotatedSecretDelete
impl RefUnwindSafe for RotatedSecretDelete
impl Send for RotatedSecretDelete
impl Sync for RotatedSecretDelete
impl Unpin for RotatedSecretDelete
impl UnsafeUnpin for RotatedSecretDelete
impl UnwindSafe for RotatedSecretDelete
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