![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.eventgrid.kotlin.inputs.ClientAuthenticationSettingsArgs.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.eventgrid.kotlin.inputs
import com.pulumi.azurenative.eventgrid.inputs.ClientAuthenticationSettingsArgs.builder
import com.pulumi.azurenative.eventgrid.kotlin.enums.AlternativeAuthenticationNameSource
import com.pulumi.core.Either
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
/**
* Client authentication settings for namespace resource.
* @property alternativeAuthenticationNameSources Alternative authentication name sources related to client authentication settings for namespace resource.
*/
public data class ClientAuthenticationSettingsArgs(
public val alternativeAuthenticationNameSources: Output>>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.eventgrid.inputs.ClientAuthenticationSettingsArgs =
com.pulumi.azurenative.eventgrid.inputs.ClientAuthenticationSettingsArgs.builder()
.alternativeAuthenticationNameSources(
alternativeAuthenticationNameSources?.applyValue({ args0 ->
args0.map({ args0 ->
args0.transform({ args0 -> args0 }, { args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
})
}),
).build()
}
/**
* Builder for [ClientAuthenticationSettingsArgs].
*/
@PulumiTagMarker
public class ClientAuthenticationSettingsArgsBuilder internal constructor() {
private var alternativeAuthenticationNameSources:
Output>>? = null
/**
* @param value Alternative authentication name sources related to client authentication settings for namespace resource.
*/
@JvmName("gjlphakuptxlgbvl")
public suspend fun alternativeAuthenticationNameSources(`value`: Output>>) {
this.alternativeAuthenticationNameSources = value
}
@JvmName("norsnmuuwecmiphl")
public suspend fun alternativeAuthenticationNameSources(vararg values: Output>) {
this.alternativeAuthenticationNameSources = Output.all(values.asList())
}
/**
* @param values Alternative authentication name sources related to client authentication settings for namespace resource.
*/
@JvmName("dfjwveinfjdeqjgm")
public suspend fun alternativeAuthenticationNameSources(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy