
com.pulumi.azure.redhatopenshift.kotlin.inputs.ClusterServicePrincipalArgs.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.redhatopenshift.kotlin.inputs
import com.pulumi.azure.redhatopenshift.inputs.ClusterServicePrincipalArgs.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.
* > **Note:** Currently a service principal cannot be associated with more than one ARO clusters on the Azure subscription.
*/
public data class ClusterServicePrincipalArgs(
public val clientId: Output,
public val clientSecret: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azure.redhatopenshift.inputs.ClusterServicePrincipalArgs =
com.pulumi.azure.redhatopenshift.inputs.ClusterServicePrincipalArgs.builder()
.clientId(clientId.applyValue({ args0 -> args0 }))
.clientSecret(clientSecret.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [ClusterServicePrincipalArgs].
*/
@PulumiTagMarker
public class ClusterServicePrincipalArgsBuilder internal constructor() {
private var clientId: Output? = null
private var clientSecret: Output? = null
/**
* @param value The Client ID for the Service Principal.
*/
@JvmName("sknrvgnmeaxdcqir")
public suspend fun clientId(`value`: Output) {
this.clientId = value
}
/**
* @param value The Client Secret for the Service Principal.
* > **Note:** Currently a service principal cannot be associated with more than one ARO clusters on the Azure subscription.
*/
@JvmName("ltrblshybakuomow")
public suspend fun clientSecret(`value`: Output) {
this.clientSecret = value
}
/**
* @param value The Client ID for the Service Principal.
*/
@JvmName("rapbphmsiajjcwue")
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.
* > **Note:** Currently a service principal cannot be associated with more than one ARO clusters on the Azure subscription.
*/
@JvmName("tkpqcdrjqvfwhqda")
public suspend fun clientSecret(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.clientSecret = mapped
}
internal fun build(): ClusterServicePrincipalArgs = ClusterServicePrincipalArgs(
clientId = clientId ?: throw PulumiNullFieldException("clientId"),
clientSecret = clientSecret ?: throw PulumiNullFieldException("clientSecret"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy