pub struct SystemAccessCredentialsReplyObj {
pub access_id: Option<String>,
pub auth_creds: Option<String>,
pub expiry: Option<i64>,
pub kfm_creds: Option<String>,
pub need_mfa_app_first_config: Option<bool>,
pub required_mfa: Option<String>,
pub token: Option<String>,
pub uam_creds: Option<String>,
}Fields§
§access_id: Option<String>§auth_creds: Option<String>Temporary credentials for accessing Auth
expiry: Option<i64>Credentials expiration date
kfm_creds: Option<String>Temporary credentials for accessing the KFMs instances
need_mfa_app_first_config: Option<bool>If the user didn’t complete to configure the MFA app
required_mfa: Option<String>§token: Option<String>Credentials tmp token
uam_creds: Option<String>Temporary credentials for accessing the UAM service
Implementations§
Trait Implementations§
Source§impl Clone for SystemAccessCredentialsReplyObj
impl Clone for SystemAccessCredentialsReplyObj
Source§fn clone(&self) -> SystemAccessCredentialsReplyObj
fn clone(&self) -> SystemAccessCredentialsReplyObj
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 Default for SystemAccessCredentialsReplyObj
impl Default for SystemAccessCredentialsReplyObj
Source§fn default() -> SystemAccessCredentialsReplyObj
fn default() -> SystemAccessCredentialsReplyObj
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SystemAccessCredentialsReplyObj
impl<'de> Deserialize<'de> for SystemAccessCredentialsReplyObj
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 SystemAccessCredentialsReplyObj
impl PartialEq for SystemAccessCredentialsReplyObj
Source§fn eq(&self, other: &SystemAccessCredentialsReplyObj) -> bool
fn eq(&self, other: &SystemAccessCredentialsReplyObj) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SystemAccessCredentialsReplyObj
Auto Trait Implementations§
impl Freeze for SystemAccessCredentialsReplyObj
impl RefUnwindSafe for SystemAccessCredentialsReplyObj
impl Send for SystemAccessCredentialsReplyObj
impl Sync for SystemAccessCredentialsReplyObj
impl Unpin for SystemAccessCredentialsReplyObj
impl UnsafeUnpin for SystemAccessCredentialsReplyObj
impl UnwindSafe for SystemAccessCredentialsReplyObj
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