![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.servicefabric.kotlin.inputs.ManagedClusterAuthenticationArgs.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.servicefabric.kotlin.inputs
import com.pulumi.azure.servicefabric.inputs.ManagedClusterAuthenticationArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property activeDirectory A `active_directory` block as defined above.
* @property certificates One or more `certificate` blocks as defined below.
*/
public data class ManagedClusterAuthenticationArgs(
public val activeDirectory: Output? = null,
public val certificates: Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azure.servicefabric.inputs.ManagedClusterAuthenticationArgs =
com.pulumi.azure.servicefabric.inputs.ManagedClusterAuthenticationArgs.builder()
.activeDirectory(activeDirectory?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.certificates(
certificates?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
).build()
}
/**
* Builder for [ManagedClusterAuthenticationArgs].
*/
@PulumiTagMarker
public class ManagedClusterAuthenticationArgsBuilder internal constructor() {
private var activeDirectory: Output? = null
private var certificates: Output>? = null
/**
* @param value A `active_directory` block as defined above.
*/
@JvmName("uuyekkmdpbmmdiki")
public suspend fun activeDirectory(`value`: Output) {
this.activeDirectory = value
}
/**
* @param value One or more `certificate` blocks as defined below.
*/
@JvmName("qwtdpnttrofsoaao")
public suspend fun certificates(`value`: Output>) {
this.certificates = value
}
@JvmName("dhjubqfluqljrnos")
public suspend fun certificates(vararg values: Output) {
this.certificates = Output.all(values.asList())
}
/**
* @param values One or more `certificate` blocks as defined below.
*/
@JvmName("sktaubpnbdopqvgl")
public suspend fun certificates(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy