![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.hpc.kotlin.inputs.CacheDirectoryLdapBindArgs.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.hpc.kotlin.inputs
import com.pulumi.azure.hpc.inputs.CacheDirectoryLdapBindArgs.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 dn The Bind Distinguished Name (DN) identity to be used in the secure LDAP connection.
* @property password The Bind password to be used in the secure LDAP connection.
*/
public data class CacheDirectoryLdapBindArgs(
public val dn: Output,
public val password: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azure.hpc.inputs.CacheDirectoryLdapBindArgs =
com.pulumi.azure.hpc.inputs.CacheDirectoryLdapBindArgs.builder()
.dn(dn.applyValue({ args0 -> args0 }))
.password(password.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [CacheDirectoryLdapBindArgs].
*/
@PulumiTagMarker
public class CacheDirectoryLdapBindArgsBuilder internal constructor() {
private var dn: Output? = null
private var password: Output? = null
/**
* @param value The Bind Distinguished Name (DN) identity to be used in the secure LDAP connection.
*/
@JvmName("kfvtegejlyqnrkxy")
public suspend fun dn(`value`: Output) {
this.dn = value
}
/**
* @param value The Bind password to be used in the secure LDAP connection.
*/
@JvmName("rllifbdlnscukocp")
public suspend fun password(`value`: Output) {
this.password = value
}
/**
* @param value The Bind Distinguished Name (DN) identity to be used in the secure LDAP connection.
*/
@JvmName("kmyfkurjsrmwbjsd")
public suspend fun dn(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.dn = mapped
}
/**
* @param value The Bind password to be used in the secure LDAP connection.
*/
@JvmName("afndvmxqbmpiekhe")
public suspend fun password(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.password = mapped
}
internal fun build(): CacheDirectoryLdapBindArgs = CacheDirectoryLdapBindArgs(
dn = dn ?: throw PulumiNullFieldException("dn"),
password = password ?: throw PulumiNullFieldException("password"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy