pub struct ProxyProviderRequest {Show 18 fields
pub name: String,
pub authentication_flow: Option<Option<Uuid>>,
pub authorization_flow: Uuid,
pub property_mappings: Option<Vec<Uuid>>,
pub internal_host: Option<String>,
pub external_host: String,
pub internal_host_ssl_validation: Option<bool>,
pub certificate: Option<Option<Uuid>>,
pub skip_path_regex: Option<String>,
pub basic_auth_enabled: Option<bool>,
pub basic_auth_password_attribute: Option<String>,
pub basic_auth_user_attribute: Option<String>,
pub mode: Option<ProxyMode>,
pub intercept_header_auth: Option<bool>,
pub cookie_domain: Option<String>,
pub jwks_sources: Option<Vec<Uuid>>,
pub access_token_validity: Option<String>,
pub refresh_token_validity: Option<String>,
}
Expand description
ProxyProviderRequest : ProxyProvider Serializer
Fields§
§name: 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>>
§internal_host: Option<String>
§external_host: String
§internal_host_ssl_validation: Option<bool>
Validate SSL Certificates of upstream servers
certificate: Option<Option<Uuid>>
§skip_path_regex: Option<String>
Regular expressions for which authentication is not required. Each new line is interpreted as a new Regular Expression.
basic_auth_enabled: Option<bool>
Set a custom HTTP-Basic Authentication header based on values from authentik.
basic_auth_password_attribute: Option<String>
User/Group Attribute used for the password part of the HTTP-Basic Header.
basic_auth_user_attribute: Option<String>
User/Group Attribute used for the user part of the HTTP-Basic Header. If not set, the user’s Email address is used.
mode: Option<ProxyMode>
Enable support for forwardAuth in traefik and nginx auth_request. Exclusive with internal_host. * proxy
- Proxy * forward_single
- Forward Single * forward_domain
- Forward Domain
intercept_header_auth: Option<bool>
When enabled, this provider will intercept the authorization header and authenticate requests based on its value.
jwks_sources: Option<Vec<Uuid>>
§access_token_validity: Option<String>
Tokens not valid on or after current time + this value (Format: hours=1;minutes=2;seconds=3).
refresh_token_validity: Option<String>
Tokens not valid on or after current time + this value (Format: hours=1;minutes=2;seconds=3).
Implementations§
Trait Implementations§
Source§impl Clone for ProxyProviderRequest
impl Clone for ProxyProviderRequest
Source§fn clone(&self) -> ProxyProviderRequest
fn clone(&self) -> ProxyProviderRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more