pub struct SecurID {
pub certificates: Option<IdRef>,
pub client_id: Option<String>,
pub client_secret: Option<String>,
pub client_secret_set: Option<bool>,
pub enabled: Option<bool>,
pub server_uri: Option<String>,
}
Expand description
Various settings for RSA SecurID multi-factor authentication.
Fields§
§certificates: Option<IdRef>
§client_id: Option<String>
The client ID to use when communicating with the RSA SecurID server.
client_secret: Option<String>
The client secret to use when communicating with the RSA SecurID server. This property is null
in responses.
client_secret_set: Option<bool>
Indicates if the ClientSecret property is set.
enabled: Option<bool>
An indication of whether multi-factor authentication with RSA SecurID is enabled.
server_uri: Option<String>
The URI of the RSA SecurID server.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for SecurID
impl<'de> Deserialize<'de> for SecurID
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 Metadata<'static> for SecurID
impl Metadata<'static> for SecurID
Source§const JSON_SCHEMA: &'static str = "AccountService.v1_13_0.json"
const JSON_SCHEMA: &'static str = "AccountService.v1_13_0.json"
Name of the json-schema file that describes the entity that implements this trait. Should
be only the file name, so that it can be resolved relative to the URL of the redfish
service, or the public Redfish schema index.
Auto Trait Implementations§
impl Freeze for SecurID
impl RefUnwindSafe for SecurID
impl Send for SecurID
impl Sync for SecurID
impl Unpin for SecurID
impl UnwindSafe for SecurID
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