pub struct PatchedSamlProviderRequest {Show 17 fields
pub name: Option<String>,
pub authentication_flow: Option<Option<Uuid>>,
pub authorization_flow: Option<Uuid>,
pub property_mappings: Option<Vec<Uuid>>,
pub acs_url: Option<String>,
pub audience: Option<String>,
pub issuer: Option<String>,
pub assertion_valid_not_before: Option<String>,
pub assertion_valid_not_on_or_after: Option<String>,
pub session_valid_not_on_or_after: Option<String>,
pub name_id_mapping: Option<Option<Uuid>>,
pub digest_algorithm: Option<DigestAlgorithmEnum>,
pub signature_algorithm: Option<SignatureAlgorithmEnum>,
pub signing_kp: Option<Option<Uuid>>,
pub verification_kp: Option<Option<Uuid>>,
pub sp_binding: Option<SpBindingEnum>,
pub default_relay_state: Option<String>,
}
Expand description
PatchedSamlProviderRequest : SAMLProvider Serializer
Fields§
§name: Option<String>
§authentication_flow: Option<Option<Uuid>>
Flow used for authentication when the associated application is accessed by an un-authenticated user.
Flow used when authorizing this provider.
property_mappings: Option<Vec<Uuid>>
§acs_url: Option<String>
§audience: Option<String>
Value of the audience restriction field of the assertion. When left empty, no audience restriction will be added.
issuer: Option<String>
Also known as EntityID
assertion_valid_not_before: Option<String>
Assertion valid not before current time + this value (Format: hours=-1;minutes=-2;seconds=-3).
assertion_valid_not_on_or_after: Option<String>
Assertion not valid on or after current time + this value (Format: hours=1;minutes=2;seconds=3).
session_valid_not_on_or_after: Option<String>
Session not valid on or after current time + this value (Format: hours=1;minutes=2;seconds=3).
name_id_mapping: Option<Option<Uuid>>
Configure how the NameID value will be created. When left empty, the NameIDPolicy of the incoming request will be considered
digest_algorithm: Option<DigestAlgorithmEnum>
§signature_algorithm: Option<SignatureAlgorithmEnum>
§signing_kp: Option<Option<Uuid>>
Keypair used to sign outgoing Responses going to the Service Provider.
verification_kp: Option<Option<Uuid>>
When selected, incoming assertion’s Signatures will be validated against this certificate. To allow unsigned Requests, leave on default.
sp_binding: Option<SpBindingEnum>
This determines how authentik sends the response back to the Service Provider. * redirect
- Redirect * post
- Post
default_relay_state: Option<String>
Default relay_state value for IDP-initiated logins
Implementations§
Source§impl PatchedSamlProviderRequest
impl PatchedSamlProviderRequest
Sourcepub fn new() -> PatchedSamlProviderRequest
pub fn new() -> PatchedSamlProviderRequest
SAMLProvider Serializer
Trait Implementations§
Source§impl Clone for PatchedSamlProviderRequest
impl Clone for PatchedSamlProviderRequest
Source§fn clone(&self) -> PatchedSamlProviderRequest
fn clone(&self) -> PatchedSamlProviderRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more