![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.web.kotlin.outputs.GlobalValidationResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-native-kotlin Show documentation
Show all versions of pulumi-azure-native-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.web.kotlin.outputs
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
* The configuration settings that determines the validation flow of users using App Service Authentication/Authorization.
* @property excludedPaths The paths for which unauthenticated flow would not be redirected to the login page.
* @property redirectToProvider 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".
* @property requireAuthentication true
if the authentication flow is required any request is made; otherwise, false
.
* @property unauthenticatedClientAction The action to take when an unauthenticated client attempts to access the app.
*/
public data class GlobalValidationResponse(
public val excludedPaths: List? = null,
public val redirectToProvider: String? = null,
public val requireAuthentication: Boolean? = null,
public val unauthenticatedClientAction: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.web.outputs.GlobalValidationResponse): GlobalValidationResponse = GlobalValidationResponse(
excludedPaths = javaType.excludedPaths().map({ args0 -> args0 }),
redirectToProvider = javaType.redirectToProvider().map({ args0 -> args0 }).orElse(null),
requireAuthentication = javaType.requireAuthentication().map({ args0 -> args0 }).orElse(null),
unauthenticatedClientAction = javaType.unauthenticatedClientAction().map({ args0 ->
args0
}).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy