GlobalValidation Class
The configuration settings that determines the validation flow of users using App Service Authentication/Authorization.
Constructor
GlobalValidation(*args: Any, **kwargs: Any)
Variables
| Name | Description |
|---|---|
|
require_authentication
|
|
|
unauthenticated_client_action
|
The action to take when an unauthenticated client attempts to access the app. Known values are: "RedirectToLoginPage", "AllowAnonymous", "Return401", and "Return403". |
|
redirect_to_provider
|
The default authentication provider to use when multiple providers are configured. This setting is only needed if multiple providers are configured and the unauthenticated client action is set to "RedirectToLoginPage". |
|
excluded_paths
|
The paths for which unauthenticated flow would not be redirected to the login page. |
Attributes
excluded_paths
The paths for which unauthenticated flow would not be redirected to the login page.
excluded_paths: list[str] | None
redirect_to_provider
The default authentication provider to use when multiple providers are configured. This setting is only needed if multiple providers are configured and the unauthenticated client action is set to "RedirectToLoginPage".
redirect_to_provider: str | None
require_authentication
true if the authentication flow is required any request is made; otherwise,
false.
require_authentication: bool | None
unauthenticated_client_action
The action to take when an unauthenticated client attempts to access the app. Known values are: "RedirectToLoginPage", "AllowAnonymous", "Return401", and "Return403".
unauthenticated_client_action: str | _models.UnauthenticatedClientActionV2 | None