pub struct GatewayRevokeTmpUsers {
pub host: Option<String>,
pub json: Option<bool>,
pub name: String,
pub revoke_all: Option<bool>,
pub soft_delete: Option<bool>,
pub tmp_creds_id: Option<String>,
pub token: Option<String>,
pub uid_token: Option<String>,
}Expand description
GatewayRevokeTmpUsers : gatewayRevokeTmpUsers is a command that revoke producer tmp user [Deprecated: Use dynamic-secret-tmp-creds-delete command]
Fields§
§host: Option<String>Host
json: Option<bool>Set output format to JSON
name: StringDynamic secret name
revoke_all: Option<bool>Revoke All Temp Creds
soft_delete: Option<bool>Soft Delete
tmp_creds_id: Option<String>Tmp Creds ID
token: Option<String>Authentication token (see /auth and /configure)
uid_token: Option<String>The universal identity token, Required only for universal_identity authentication
Implementations§
Source§impl GatewayRevokeTmpUsers
impl GatewayRevokeTmpUsers
Sourcepub fn new(name: String) -> GatewayRevokeTmpUsers
pub fn new(name: String) -> GatewayRevokeTmpUsers
gatewayRevokeTmpUsers is a command that revoke producer tmp user [Deprecated: Use dynamic-secret-tmp-creds-delete command]
Trait Implementations§
Source§impl Clone for GatewayRevokeTmpUsers
impl Clone for GatewayRevokeTmpUsers
Source§fn clone(&self) -> GatewayRevokeTmpUsers
fn clone(&self) -> GatewayRevokeTmpUsers
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 GatewayRevokeTmpUsers
impl Debug for GatewayRevokeTmpUsers
Source§impl Default for GatewayRevokeTmpUsers
impl Default for GatewayRevokeTmpUsers
Source§fn default() -> GatewayRevokeTmpUsers
fn default() -> GatewayRevokeTmpUsers
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GatewayRevokeTmpUsers
impl<'de> Deserialize<'de> for GatewayRevokeTmpUsers
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 GatewayRevokeTmpUsers
impl PartialEq for GatewayRevokeTmpUsers
Source§fn eq(&self, other: &GatewayRevokeTmpUsers) -> bool
fn eq(&self, other: &GatewayRevokeTmpUsers) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for GatewayRevokeTmpUsers
impl Serialize for GatewayRevokeTmpUsers
impl StructuralPartialEq for GatewayRevokeTmpUsers
Auto Trait Implementations§
impl Freeze for GatewayRevokeTmpUsers
impl RefUnwindSafe for GatewayRevokeTmpUsers
impl Send for GatewayRevokeTmpUsers
impl Sync for GatewayRevokeTmpUsers
impl Unpin for GatewayRevokeTmpUsers
impl UnsafeUnpin for GatewayRevokeTmpUsers
impl UnwindSafe for GatewayRevokeTmpUsers
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