Skip to content

Latest commit

 

History

History
49 lines (40 loc) · 2.94 KB

File metadata and controls

49 lines (40 loc) · 2.94 KB

ProxyProviderRequest

ProxyProvider Serializer

Properties

Name Type Description Notes
name str
authentication_flow UUID Flow used for authentication when the associated application is accessed by an un-authenticated user. [optional]
authorization_flow UUID Flow used when authorizing this provider.
invalidation_flow UUID Flow used ending the session from a provider.
property_mappings List[UUID] [optional]
internal_host str [optional]
external_host str
internal_host_ssl_validation bool Validate SSL Certificates of upstream servers [optional]
certificate UUID [optional]
skip_path_regex str Regular expressions for which authentication is not required. Each new line is interpreted as a new Regular Expression. [optional]
basic_auth_enabled bool Set a custom HTTP-Basic Authentication header based on values from authentik. [optional]
basic_auth_password_attribute str User/Group Attribute used for the password part of the HTTP-Basic Header. [optional]
basic_auth_user_attribute str User/Group Attribute used for the user part of the HTTP-Basic Header. If not set, the user's Email address is used. [optional]
mode ProxyMode Enable support for forwardAuth in traefik and nginx auth_request. Exclusive with internal_host. [optional]
intercept_header_auth bool When enabled, this provider will intercept the authorization header and authenticate requests based on its value. [optional]
cookie_domain str [optional]
jwt_federation_sources List[UUID] [optional]
jwt_federation_providers List[int] [optional]
access_token_validity str Tokens not valid on or after current time + this value (Format: hours=1;minutes=2;seconds=3). [optional]
refresh_token_validity str Tokens not valid on or after current time + this value (Format: hours=1;minutes=2;seconds=3). [optional]

Example

from authentik_client.models.proxy_provider_request import ProxyProviderRequest

# TODO update the JSON string below
json = "{}"
# create an instance of ProxyProviderRequest from a JSON string
proxy_provider_request_instance = ProxyProviderRequest.from_json(json)
# print the JSON string representation of the object
print(ProxyProviderRequest.to_json())

# convert the object into a dict
proxy_provider_request_dict = proxy_provider_request_instance.to_dict()
# create an instance of ProxyProviderRequest from a dict
proxy_provider_request_from_dict = ProxyProviderRequest.from_dict(proxy_provider_request_dict)

[Back to Model list] [Back to API list] [Back to README]