![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.stack.kotlin.inputs.HciClusterIdentityArgs.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.stack.kotlin.inputs
import com.pulumi.azure.stack.inputs.HciClusterIdentityArgs.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 principalId The Principal ID associated with this Managed Service Identity.
* @property tenantId The Tenant ID of the Azure Active Directory which is used by the Azure Stack HCI Cluster. Changing this forces a new resource to be created.
* > **NOTE** If unspecified the Tenant ID of the Provider will be used.
* @property type Specifies the type of Managed Service Identity that should be configured on the Azure Stack HCI Cluster. Possible value is `SystemAssigned`.
*/
public data class HciClusterIdentityArgs(
public val principalId: Output? = null,
public val tenantId: Output? = null,
public val type: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azure.stack.inputs.HciClusterIdentityArgs =
com.pulumi.azure.stack.inputs.HciClusterIdentityArgs.builder()
.principalId(principalId?.applyValue({ args0 -> args0 }))
.tenantId(tenantId?.applyValue({ args0 -> args0 }))
.type(type.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [HciClusterIdentityArgs].
*/
@PulumiTagMarker
public class HciClusterIdentityArgsBuilder internal constructor() {
private var principalId: Output? = null
private var tenantId: Output? = null
private var type: Output? = null
/**
* @param value The Principal ID associated with this Managed Service Identity.
*/
@JvmName("qfnydgsmiosdwjjp")
public suspend fun principalId(`value`: Output) {
this.principalId = value
}
/**
* @param value The Tenant ID of the Azure Active Directory which is used by the Azure Stack HCI Cluster. Changing this forces a new resource to be created.
* > **NOTE** If unspecified the Tenant ID of the Provider will be used.
*/
@JvmName("cnregsrqtcdfhfwf")
public suspend fun tenantId(`value`: Output) {
this.tenantId = value
}
/**
* @param value Specifies the type of Managed Service Identity that should be configured on the Azure Stack HCI Cluster. Possible value is `SystemAssigned`.
*/
@JvmName("exadhscavwgrqodj")
public suspend fun type(`value`: Output) {
this.type = value
}
/**
* @param value The Principal ID associated with this Managed Service Identity.
*/
@JvmName("piyccudofobmjrel")
public suspend fun principalId(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.principalId = mapped
}
/**
* @param value The Tenant ID of the Azure Active Directory which is used by the Azure Stack HCI Cluster. Changing this forces a new resource to be created.
* > **NOTE** If unspecified the Tenant ID of the Provider will be used.
*/
@JvmName("eohmmvvhepdtnouc")
public suspend fun tenantId(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.tenantId = mapped
}
/**
* @param value Specifies the type of Managed Service Identity that should be configured on the Azure Stack HCI Cluster. Possible value is `SystemAssigned`.
*/
@JvmName("lnbinobknwiqrnin")
public suspend fun type(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.type = mapped
}
internal fun build(): HciClusterIdentityArgs = HciClusterIdentityArgs(
principalId = principalId,
tenantId = tenantId,
type = type ?: throw PulumiNullFieldException("type"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy