![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.web.kotlin.inputs.AllowedAudiencesValidationArgs.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.inputs
import com.pulumi.azurenative.web.inputs.AllowedAudiencesValidationArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
* The configuration settings of the Allowed Audiences validation flow.
* @property allowedAudiences The configuration settings of the allowed list of audiences from which to validate the JWT token.
*/
public data class AllowedAudiencesValidationArgs(
public val allowedAudiences: Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.web.inputs.AllowedAudiencesValidationArgs =
com.pulumi.azurenative.web.inputs.AllowedAudiencesValidationArgs.builder()
.allowedAudiences(allowedAudiences?.applyValue({ args0 -> args0.map({ args0 -> args0 }) })).build()
}
/**
* Builder for [AllowedAudiencesValidationArgs].
*/
@PulumiTagMarker
public class AllowedAudiencesValidationArgsBuilder internal constructor() {
private var allowedAudiences: Output>? = null
/**
* @param value The configuration settings of the allowed list of audiences from which to validate the JWT token.
*/
@JvmName("fsoyuxpbdmtpxfof")
public suspend fun allowedAudiences(`value`: Output>) {
this.allowedAudiences = value
}
@JvmName("wkwhxuvrouqhrloi")
public suspend fun allowedAudiences(vararg values: Output) {
this.allowedAudiences = Output.all(values.asList())
}
/**
* @param values The configuration settings of the allowed list of audiences from which to validate the JWT token.
*/
@JvmName("euqtbrvjnfybfrop")
public suspend fun allowedAudiences(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy