com.pulumi.azure.appservice.kotlin.outputs.FunctionAppAuthSettingsActiveDirectory.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.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @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 FunctionAppAuthSettingsActiveDirectory(
public val allowedAudiences: List? = null,
public val clientId: String,
public val clientSecret: String? = null,
) {
public companion object {
public
fun toKotlin(javaType: com.pulumi.azure.appservice.outputs.FunctionAppAuthSettingsActiveDirectory):
FunctionAppAuthSettingsActiveDirectory = FunctionAppAuthSettingsActiveDirectory(
allowedAudiences = javaType.allowedAudiences().map({ args0 -> args0 }),
clientId = javaType.clientId(),
clientSecret = javaType.clientSecret().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy