![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.netapp.kotlin.inputs.LdapSearchScopeOptArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-native-kotlin Show documentation
Show all versions of pulumi-azure-native-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.azurenative.netapp.kotlin.inputs
import com.pulumi.azurenative.netapp.inputs.LdapSearchScopeOptArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
* LDAP search scope
* @property groupDN This specifies the group DN, which overrides the base DN for group lookups.
* @property groupMembershipFilter This specifies the custom LDAP search filter to be used when looking up group membership from LDAP server.
* @property userDN This specifies the user DN, which overrides the base DN for user lookups.
*/
public data class LdapSearchScopeOptArgs(
public val groupDN: Output? = null,
public val groupMembershipFilter: Output? = null,
public val userDN: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.netapp.inputs.LdapSearchScopeOptArgs =
com.pulumi.azurenative.netapp.inputs.LdapSearchScopeOptArgs.builder()
.groupDN(groupDN?.applyValue({ args0 -> args0 }))
.groupMembershipFilter(groupMembershipFilter?.applyValue({ args0 -> args0 }))
.userDN(userDN?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [LdapSearchScopeOptArgs].
*/
@PulumiTagMarker
public class LdapSearchScopeOptArgsBuilder internal constructor() {
private var groupDN: Output? = null
private var groupMembershipFilter: Output? = null
private var userDN: Output? = null
/**
* @param value This specifies the group DN, which overrides the base DN for group lookups.
*/
@JvmName("cnygihtbrxjtilft")
public suspend fun groupDN(`value`: Output) {
this.groupDN = value
}
/**
* @param value This specifies the custom LDAP search filter to be used when looking up group membership from LDAP server.
*/
@JvmName("bctiwgcqeumldbrt")
public suspend fun groupMembershipFilter(`value`: Output) {
this.groupMembershipFilter = value
}
/**
* @param value This specifies the user DN, which overrides the base DN for user lookups.
*/
@JvmName("rvtpvaowafgmqsww")
public suspend fun userDN(`value`: Output) {
this.userDN = value
}
/**
* @param value This specifies the group DN, which overrides the base DN for group lookups.
*/
@JvmName("rvupolotnhvfswxi")
public suspend fun groupDN(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.groupDN = mapped
}
/**
* @param value This specifies the custom LDAP search filter to be used when looking up group membership from LDAP server.
*/
@JvmName("pqobqsltyelhxprm")
public suspend fun groupMembershipFilter(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.groupMembershipFilter = mapped
}
/**
* @param value This specifies the user DN, which overrides the base DN for user lookups.
*/
@JvmName("ysptxmdljmoipmft")
public suspend fun userDN(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.userDN = mapped
}
internal fun build(): LdapSearchScopeOptArgs = LdapSearchScopeOptArgs(
groupDN = groupDN,
groupMembershipFilter = groupMembershipFilter,
userDN = userDN,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy