LoginArgs

data class LoginArgs(val allowedExternalRedirectUrls: Output<List<String>>? = null, val cookieExpiration: Output<CookieExpirationArgs>? = null, val nonce: Output<NonceArgs>? = null, val preserveUrlFragmentsForLogins: Output<Boolean>? = null, val routes: Output<LoginRoutesArgs>? = null) : ConvertibleToJava<LoginArgs>

The configuration settings of the login flow of users using ContainerApp Service Authentication/Authorization.

Constructors

Link copied to clipboard
constructor(allowedExternalRedirectUrls: Output<List<String>>? = null, cookieExpiration: Output<CookieExpirationArgs>? = null, nonce: Output<NonceArgs>? = null, preserveUrlFragmentsForLogins: Output<Boolean>? = null, routes: Output<LoginRoutesArgs>? = null)

Properties

Link copied to clipboard

External URLs that can be redirected to as part of logging in or logging out of the app. Note that the query string part of the URL is ignored. This is an advanced setting typically only needed by Windows Store application backends. Note that URLs within the current domain are always implicitly allowed.

Link copied to clipboard

The configuration settings of the session cookie's expiration.

Link copied to clipboard
val nonce: Output<NonceArgs>? = null

The configuration settings of the nonce used in the login flow.

Link copied to clipboard

true if the fragments from the request are preserved after the login request is made; otherwise, false.

Link copied to clipboard
val routes: Output<LoginRoutesArgs>? = null

The routes that specify the endpoints used for login and logout requests.

Functions

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