
com.pulumi.azurenative.containerservice.kotlin.inputs.ManagedClusterAADProfileArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.containerservice.kotlin.inputs
import com.pulumi.azurenative.containerservice.inputs.ManagedClusterAADProfileArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
* For more details see [managed AAD on AKS](https://docs.microsoft.com/azure/aks/managed-aad).
* @property adminGroupObjectIDs The list of AAD group object IDs that will have admin role of the cluster.
* @property clientAppID (DEPRECATED) The client AAD application ID. Learn more at https://aka.ms/aks/aad-legacy.
* @property enableAzureRBAC Whether to enable Azure RBAC for Kubernetes authorization.
* @property managed Whether to enable managed AAD.
* @property serverAppID (DEPRECATED) The server AAD application ID. Learn more at https://aka.ms/aks/aad-legacy.
* @property serverAppSecret (DEPRECATED) The server AAD application secret. Learn more at https://aka.ms/aks/aad-legacy.
* @property tenantID The AAD tenant ID to use for authentication. If not specified, will use the tenant of the deployment subscription.
*/
public data class ManagedClusterAADProfileArgs(
public val adminGroupObjectIDs: Output>? = null,
public val clientAppID: Output? = null,
public val enableAzureRBAC: Output? = null,
public val managed: Output? = null,
public val serverAppID: Output? = null,
public val serverAppSecret: Output? = null,
public val tenantID: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.containerservice.inputs.ManagedClusterAADProfileArgs = com.pulumi.azurenative.containerservice.inputs.ManagedClusterAADProfileArgs.builder()
.adminGroupObjectIDs(adminGroupObjectIDs?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.clientAppID(clientAppID?.applyValue({ args0 -> args0 }))
.enableAzureRBAC(enableAzureRBAC?.applyValue({ args0 -> args0 }))
.managed(managed?.applyValue({ args0 -> args0 }))
.serverAppID(serverAppID?.applyValue({ args0 -> args0 }))
.serverAppSecret(serverAppSecret?.applyValue({ args0 -> args0 }))
.tenantID(tenantID?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [ManagedClusterAADProfileArgs].
*/
@PulumiTagMarker
public class ManagedClusterAADProfileArgsBuilder internal constructor() {
private var adminGroupObjectIDs: Output>? = null
private var clientAppID: Output? = null
private var enableAzureRBAC: Output? = null
private var managed: Output? = null
private var serverAppID: Output? = null
private var serverAppSecret: Output? = null
private var tenantID: Output? = null
/**
* @param value The list of AAD group object IDs that will have admin role of the cluster.
*/
@JvmName("mkcgwpfucjlrtdra")
public suspend fun adminGroupObjectIDs(`value`: Output>) {
this.adminGroupObjectIDs = value
}
@JvmName("radyawtssnawbbul")
public suspend fun adminGroupObjectIDs(vararg values: Output) {
this.adminGroupObjectIDs = Output.all(values.asList())
}
/**
* @param values The list of AAD group object IDs that will have admin role of the cluster.
*/
@JvmName("ehpotddffykwxood")
public suspend fun adminGroupObjectIDs(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy