pub struct CreateSamlProviderConfigRequest {
pub inbound_saml_config_id: String,
pub display_name: Option<String>,
pub enabled: Option<bool>,
pub idp_config: SamlIdpConfig,
pub sp_config: SamlSpConfig,
}Expand description
Request to create a SAML Provider Config.
Fields§
§inbound_saml_config_id: StringThe ID to use for the new config.
display_name: Option<String>§enabled: Option<bool>§idp_config: SamlIdpConfig§sp_config: SamlSpConfigTrait Implementations§
Source§impl Default for CreateSamlProviderConfigRequest
impl Default for CreateSamlProviderConfigRequest
Source§fn default() -> CreateSamlProviderConfigRequest
fn default() -> CreateSamlProviderConfigRequest
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for CreateSamlProviderConfigRequest
impl RefUnwindSafe for CreateSamlProviderConfigRequest
impl Send for CreateSamlProviderConfigRequest
impl Sync for CreateSamlProviderConfigRequest
impl Unpin for CreateSamlProviderConfigRequest
impl UnwindSafe for CreateSamlProviderConfigRequest
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