pub struct CreateSamlConnectionRequest {
pub name: String,
pub domain: String,
pub idp_entity_id: Option<Option<String>>,
pub idp_sso_url: Option<Option<String>>,
pub idp_certificate: Option<Option<String>>,
}Fields§
§name: StringThe name to use as a label for this SAML Connection
domain: StringThe domain of your organization. Sign in flows using an email with this domain, will use this SAML Connection.
idp_entity_id: Option<Option<String>>The Entity ID as provided by the IdP
idp_sso_url: Option<Option<String>>The Single-Sign On URL as provided by the IdP
idp_certificate: Option<Option<String>>The X.509 certificate as provided by the IdP
Implementations§
Source§impl CreateSamlConnectionRequest
impl CreateSamlConnectionRequest
pub fn new(name: String, domain: String) -> CreateSamlConnectionRequest
Trait Implementations§
Source§impl Clone for CreateSamlConnectionRequest
impl Clone for CreateSamlConnectionRequest
Source§fn clone(&self) -> CreateSamlConnectionRequest
fn clone(&self) -> CreateSamlConnectionRequest
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 CreateSamlConnectionRequest
impl Debug for CreateSamlConnectionRequest
Source§impl<'de> Deserialize<'de> for CreateSamlConnectionRequest
impl<'de> Deserialize<'de> for CreateSamlConnectionRequest
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 CreateSamlConnectionRequest
Auto Trait Implementations§
impl Freeze for CreateSamlConnectionRequest
impl RefUnwindSafe for CreateSamlConnectionRequest
impl Send for CreateSamlConnectionRequest
impl Sync for CreateSamlConnectionRequest
impl Unpin for CreateSamlConnectionRequest
impl UnwindSafe for CreateSamlConnectionRequest
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