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