
com.pulumi.azure.containerservice.kotlin.inputs.KubernetesClusterServicePrincipalArgs.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.containerservice.kotlin.inputs
import com.pulumi.azure.containerservice.inputs.KubernetesClusterServicePrincipalArgs.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.jvm.JvmName
/**
*
* @property clientId The Client ID for the Service Principal.
* @property clientSecret The Client Secret for the Service Principal.
*/
public data class KubernetesClusterServicePrincipalArgs(
public val clientId: Output,
public val clientSecret: Output,
) :
ConvertibleToJava {
override fun toJava():
com.pulumi.azure.containerservice.inputs.KubernetesClusterServicePrincipalArgs =
com.pulumi.azure.containerservice.inputs.KubernetesClusterServicePrincipalArgs.builder()
.clientId(clientId.applyValue({ args0 -> args0 }))
.clientSecret(clientSecret.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [KubernetesClusterServicePrincipalArgs].
*/
@PulumiTagMarker
public class KubernetesClusterServicePrincipalArgsBuilder internal constructor() {
private var clientId: Output? = null
private var clientSecret: Output? = null
/**
* @param value The Client ID for the Service Principal.
*/
@JvmName("oouprputhnfqeaun")
public suspend fun clientId(`value`: Output) {
this.clientId = value
}
/**
* @param value The Client Secret for the Service Principal.
*/
@JvmName("vgrevdkxvcqtbmeh")
public suspend fun clientSecret(`value`: Output) {
this.clientSecret = value
}
/**
* @param value The Client ID for the Service Principal.
*/
@JvmName("rgownenssvgblvma")
public suspend fun clientId(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.clientId = mapped
}
/**
* @param value The Client Secret for the Service Principal.
*/
@JvmName("hhbkhuqluxwkooyg")
public suspend fun clientSecret(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.clientSecret = mapped
}
internal fun build(): KubernetesClusterServicePrincipalArgs =
KubernetesClusterServicePrincipalArgs(
clientId = clientId ?: throw PulumiNullFieldException("clientId"),
clientSecret = clientSecret ?: throw PulumiNullFieldException("clientSecret"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy