GlobalValidationArgs

data class GlobalValidationArgs(val excludedPaths: Output<List<String>>? = null, val redirectToProvider: Output<String>? = null, val requireAuthentication: Output<Boolean>? = null, val unauthenticatedClientAction: Output<UnauthenticatedClientActionV2>? = null) : ConvertibleToJava<GlobalValidationArgs>

The configuration settings that determines the validation flow of users using App Service Authentication/Authorization.

Constructors

Link copied to clipboard
constructor(excludedPaths: Output<List<String>>? = null, redirectToProvider: Output<String>? = null, requireAuthentication: Output<Boolean>? = null, unauthenticatedClientAction: Output<UnauthenticatedClientActionV2>? = null)

Properties

Link copied to clipboard
val excludedPaths: Output<List<String>>? = null

The paths for which unauthenticated flow would not be redirected to the login page.

Link copied to clipboard
val redirectToProvider: Output<String>? = null

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".

Link copied to clipboard
val requireAuthentication: Output<Boolean>? = null

true if the authentication flow is required any request is made; otherwise, false.

Link copied to clipboard

The action to take when an unauthenticated client attempts to access the app.

Functions

Link copied to clipboard
open override fun toJava(): GlobalValidationArgs