![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.iotoperationsmq.kotlin.inputs.LocalBrokerKubernetesAuthenticationArgs.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.iotoperationsmq.kotlin.inputs
import com.pulumi.azurenative.iotoperationsmq.inputs.LocalBrokerKubernetesAuthenticationArgs.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.jvm.JvmName
/**
* Local Broker Kubernetes Authentication
* @property secretPath Secret Path where SAT is mounted.
* @property serviceAccountTokenName Token name where SAT is mounted on secret path.
*/
public data class LocalBrokerKubernetesAuthenticationArgs(
public val secretPath: Output? = null,
public val serviceAccountTokenName: Output? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.iotoperationsmq.inputs.LocalBrokerKubernetesAuthenticationArgs =
com.pulumi.azurenative.iotoperationsmq.inputs.LocalBrokerKubernetesAuthenticationArgs.builder()
.secretPath(secretPath?.applyValue({ args0 -> args0 }))
.serviceAccountTokenName(serviceAccountTokenName?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [LocalBrokerKubernetesAuthenticationArgs].
*/
@PulumiTagMarker
public class LocalBrokerKubernetesAuthenticationArgsBuilder internal constructor() {
private var secretPath: Output? = null
private var serviceAccountTokenName: Output? = null
/**
* @param value Secret Path where SAT is mounted.
*/
@JvmName("fbvrsavfvbpjkgjs")
public suspend fun secretPath(`value`: Output) {
this.secretPath = value
}
/**
* @param value Token name where SAT is mounted on secret path.
*/
@JvmName("oepemukrdsddhkwu")
public suspend fun serviceAccountTokenName(`value`: Output) {
this.serviceAccountTokenName = value
}
/**
* @param value Secret Path where SAT is mounted.
*/
@JvmName("lxgbgrcbdfsekcgj")
public suspend fun secretPath(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.secretPath = mapped
}
/**
* @param value Token name where SAT is mounted on secret path.
*/
@JvmName("arexlwjynedfrmbx")
public suspend fun serviceAccountTokenName(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.serviceAccountTokenName = mapped
}
internal fun build(): LocalBrokerKubernetesAuthenticationArgs =
LocalBrokerKubernetesAuthenticationArgs(
secretPath = secretPath,
serviceAccountTokenName = serviceAccountTokenName,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy