com.pulumi.azure.hpc.kotlin.outputs.CacheDirectoryLdapBind.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.hpc.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @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 CacheDirectoryLdapBind(
public val dn: String,
public val password: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.hpc.outputs.CacheDirectoryLdapBind): CacheDirectoryLdapBind = CacheDirectoryLdapBind(
dn = javaType.dn(),
password = javaType.password(),
)
}
}