com.pulumi.azure.appservice.kotlin.inputs.FunctionAppAuthSettingsActiveDirectoryArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-kotlin Show documentation
Show all versions of pulumi-azure-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.azure.appservice.kotlin.inputs
import com.pulumi.azure.appservice.inputs.FunctionAppAuthSettingsActiveDirectoryArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property allowedAudiences Allowed audience values to consider when validating JWTs issued by Azure Active Directory.
* @property clientId The Client ID of this relying party application. Enables OpenIDConnection authentication with Azure Active Directory.
* @property clientSecret The Client Secret of this relying party application. If no secret is provided, implicit flow will be used.
*/
public data class FunctionAppAuthSettingsActiveDirectoryArgs(
public val allowedAudiences: Output>? = null,
public val clientId: Output,
public val clientSecret: Output? = null,
) : ConvertibleToJava {
override fun toJava():
com.pulumi.azure.appservice.inputs.FunctionAppAuthSettingsActiveDirectoryArgs =
com.pulumi.azure.appservice.inputs.FunctionAppAuthSettingsActiveDirectoryArgs.builder()
.allowedAudiences(allowedAudiences?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.clientId(clientId.applyValue({ args0 -> args0 }))
.clientSecret(clientSecret?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [FunctionAppAuthSettingsActiveDirectoryArgs].
*/
@PulumiTagMarker
public class FunctionAppAuthSettingsActiveDirectoryArgsBuilder internal constructor() {
private var allowedAudiences: Output>? = null
private var clientId: Output? = null
private var clientSecret: Output? = null
/**
* @param value Allowed audience values to consider when validating JWTs issued by Azure Active Directory.
*/
@JvmName("mbempujrralysehr")
public suspend fun allowedAudiences(`value`: Output>) {
this.allowedAudiences = value
}
@JvmName("ssfcmbkoextsugmc")
public suspend fun allowedAudiences(vararg values: Output) {
this.allowedAudiences = Output.all(values.asList())
}
/**
* @param values Allowed audience values to consider when validating JWTs issued by Azure Active Directory.
*/
@JvmName("dqwveldmmmipvmwr")
public suspend fun allowedAudiences(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy