pub struct UpdateSamlConnectionRequest {
pub name: Option<Option<String>>,
pub domain: Option<Option<String>>,
pub idp_entity_id: Option<Option<String>>,
pub idp_sso_url: Option<Option<String>>,
pub idp_certificate: Option<Option<String>>,
pub active: Option<Option<bool>>,
pub sync_user_attributes: Option<Option<bool>>,
}Fields§
§name: Option<Option<String>>The name of the new SAML Connection
domain: Option<Option<String>>The domain to use for the new SAML Connection
idp_entity_id: Option<Option<String>>The entity id as provided by the IdP
idp_sso_url: Option<Option<String>>The SSO url as provided by the IdP
idp_certificate: Option<Option<String>>The x509 certificated as provided by the IdP
active: Option<Option<bool>>Activate or de-activate the SAML Connection
sync_user_attributes: Option<Option<bool>>Controls whether to update the user’s attributes in each sign-in
Implementations§
Source§impl UpdateSamlConnectionRequest
impl UpdateSamlConnectionRequest
pub fn new() -> UpdateSamlConnectionRequest
Trait Implementations§
Source§impl Clone for UpdateSamlConnectionRequest
impl Clone for UpdateSamlConnectionRequest
Source§fn clone(&self) -> UpdateSamlConnectionRequest
fn clone(&self) -> UpdateSamlConnectionRequest
Returns a duplicate of the value. Read more
1.0.0 · 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 UpdateSamlConnectionRequest
impl Debug for UpdateSamlConnectionRequest
Source§impl<'de> Deserialize<'de> for UpdateSamlConnectionRequest
impl<'de> Deserialize<'de> for UpdateSamlConnectionRequest
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
impl StructuralPartialEq for UpdateSamlConnectionRequest
Auto Trait Implementations§
impl Freeze for UpdateSamlConnectionRequest
impl RefUnwindSafe for UpdateSamlConnectionRequest
impl Send for UpdateSamlConnectionRequest
impl Sync for UpdateSamlConnectionRequest
impl Unpin for UpdateSamlConnectionRequest
impl UnwindSafe for UpdateSamlConnectionRequest
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