pub struct GatewayUpdateTmpUsers {
pub host: String,
pub json: Option<bool>,
pub name: String,
pub new_ttl_min: i64,
pub tmp_creds_id: String,
pub token: Option<String>,
pub uid_token: Option<String>,
}Expand description
GatewayUpdateTmpUsers : gatewayUpdateTmpUsers is a command that returns gateway configuration [Deprecated: Use dynamic-secret-tmp-creds-update command]
Fields§
§host: StringHost
json: Option<bool>Set output format to JSON
name: StringDynamic secret name
new_ttl_min: i64New TTL in Minutes
tmp_creds_id: StringTmp 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§
Trait Implementations§
Source§impl Clone for GatewayUpdateTmpUsers
impl Clone for GatewayUpdateTmpUsers
Source§fn clone(&self) -> GatewayUpdateTmpUsers
fn clone(&self) -> GatewayUpdateTmpUsers
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 GatewayUpdateTmpUsers
impl Debug for GatewayUpdateTmpUsers
Source§impl Default for GatewayUpdateTmpUsers
impl Default for GatewayUpdateTmpUsers
Source§fn default() -> GatewayUpdateTmpUsers
fn default() -> GatewayUpdateTmpUsers
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GatewayUpdateTmpUsers
impl<'de> Deserialize<'de> for GatewayUpdateTmpUsers
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 GatewayUpdateTmpUsers
impl PartialEq for GatewayUpdateTmpUsers
Source§fn eq(&self, other: &GatewayUpdateTmpUsers) -> bool
fn eq(&self, other: &GatewayUpdateTmpUsers) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for GatewayUpdateTmpUsers
impl Serialize for GatewayUpdateTmpUsers
impl StructuralPartialEq for GatewayUpdateTmpUsers
Auto Trait Implementations§
impl Freeze for GatewayUpdateTmpUsers
impl RefUnwindSafe for GatewayUpdateTmpUsers
impl Send for GatewayUpdateTmpUsers
impl Sync for GatewayUpdateTmpUsers
impl Unpin for GatewayUpdateTmpUsers
impl UnsafeUnpin for GatewayUpdateTmpUsers
impl UnwindSafe for GatewayUpdateTmpUsers
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