/** * authentik * Making authentication simple. * * The version of the OpenAPI document: 2025.6.3 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { ProxyMode } from './ProxyMode'; /** * ProxyProvider Serializer * @export * @interface PatchedProxyProviderRequest */ export interface PatchedProxyProviderRequest { /** * * @type {string} * @memberof PatchedProxyProviderRequest */ name?: string; /** * Flow used for authentication when the associated application is accessed by an un-authenticated user. * @type {string} * @memberof PatchedProxyProviderRequest */ authenticationFlow?: string | null; /** * Flow used when authorizing this provider. * @type {string} * @memberof PatchedProxyProviderRequest */ authorizationFlow?: string; /** * Flow used ending the session from a provider. * @type {string} * @memberof PatchedProxyProviderRequest */ invalidationFlow?: string; /** * * @type {Array} * @memberof PatchedProxyProviderRequest */ propertyMappings?: Array; /** * * @type {string} * @memberof PatchedProxyProviderRequest */ internalHost?: string; /** * * @type {string} * @memberof PatchedProxyProviderRequest */ externalHost?: string; /** * Validate SSL Certificates of upstream servers * @type {boolean} * @memberof PatchedProxyProviderRequest */ internalHostSslValidation?: boolean; /** * * @type {string} * @memberof PatchedProxyProviderRequest */ certificate?: string | null; /** * Regular expressions for which authentication is not required. Each new line is interpreted as a new Regular Expression. * @type {string} * @memberof PatchedProxyProviderRequest */ skipPathRegex?: string; /** * Set a custom HTTP-Basic Authentication header based on values from authentik. * @type {boolean} * @memberof PatchedProxyProviderRequest */ basicAuthEnabled?: boolean; /** * User/Group Attribute used for the password part of the HTTP-Basic Header. * @type {string} * @memberof PatchedProxyProviderRequest */ basicAuthPasswordAttribute?: string; /** * User/Group Attribute used for the user part of the HTTP-Basic Header. If not set, the user's Email address is used. * @type {string} * @memberof PatchedProxyProviderRequest */ basicAuthUserAttribute?: string; /** * Enable support for forwardAuth in traefik and nginx auth_request. Exclusive with internal_host. * @type {ProxyMode} * @memberof PatchedProxyProviderRequest */ mode?: ProxyMode; /** * When enabled, this provider will intercept the authorization header and authenticate requests based on its value. * @type {boolean} * @memberof PatchedProxyProviderRequest */ interceptHeaderAuth?: boolean; /** * * @type {string} * @memberof PatchedProxyProviderRequest */ cookieDomain?: string; /** * * @type {Array} * @memberof PatchedProxyProviderRequest */ jwtFederationSources?: Array; /** * * @type {Array} * @memberof PatchedProxyProviderRequest */ jwtFederationProviders?: Array; /** * Tokens not valid on or after current time + this value (Format: hours=1;minutes=2;seconds=3). * @type {string} * @memberof PatchedProxyProviderRequest */ accessTokenValidity?: string; /** * Tokens not valid on or after current time + this value (Format: hours=1;minutes=2;seconds=3). * @type {string} * @memberof PatchedProxyProviderRequest */ refreshTokenValidity?: string; } /** * Check if a given object implements the PatchedProxyProviderRequest interface. */ export declare function instanceOfPatchedProxyProviderRequest(value: object): value is PatchedProxyProviderRequest; export declare function PatchedProxyProviderRequestFromJSON(json: any): PatchedProxyProviderRequest; export declare function PatchedProxyProviderRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): PatchedProxyProviderRequest; export declare function PatchedProxyProviderRequestToJSON(json: any): PatchedProxyProviderRequest; export declare function PatchedProxyProviderRequestToJSONTyped(value?: PatchedProxyProviderRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PatchedProxyProviderRequest.d.ts.map