com.pulumi.awsnative.nimblestudio.kotlin.inputs.StudioComponentActiveDirectoryConfigurationArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-native-kotlin Show documentation
Show all versions of pulumi-aws-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.awsnative.nimblestudio.kotlin.inputs
import com.pulumi.awsnative.nimblestudio.inputs.StudioComponentActiveDirectoryConfigurationArgs.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.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
* The configuration for a Microsoft Active Directory (Microsoft AD) studio
* resource.
* @property computerAttributes A collection of custom attributes for an Active Directory computer.
* @property directoryId The directory ID of the Directory Service for Microsoft Active Directory to access
* using this studio component.
* @property organizationalUnitDistinguishedName The distinguished name (DN) and organizational unit (OU) of an Active Directory
* computer.
*/
public data class StudioComponentActiveDirectoryConfigurationArgs(
public val computerAttributes: Output>? =
null,
public val directoryId: Output? = null,
public val organizationalUnitDistinguishedName: Output? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.nimblestudio.inputs.StudioComponentActiveDirectoryConfigurationArgs =
com.pulumi.awsnative.nimblestudio.inputs.StudioComponentActiveDirectoryConfigurationArgs.builder()
.computerAttributes(
computerAttributes?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 -> args0.toJava() })
})
}),
)
.directoryId(directoryId?.applyValue({ args0 -> args0 }))
.organizationalUnitDistinguishedName(
organizationalUnitDistinguishedName?.applyValue({ args0 ->
args0
}),
).build()
}
/**
* Builder for [StudioComponentActiveDirectoryConfigurationArgs].
*/
@PulumiTagMarker
public class StudioComponentActiveDirectoryConfigurationArgsBuilder internal constructor() {
private var computerAttributes: Output>? =
null
private var directoryId: Output? = null
private var organizationalUnitDistinguishedName: Output? = null
/**
* @param value A collection of custom attributes for an Active Directory computer.
*/
@JvmName("hakrsmahfwisgfmt")
public suspend fun computerAttributes(`value`: Output>) {
this.computerAttributes = value
}
@JvmName("xvyvdxdrfqtalflv")
public suspend fun computerAttributes(vararg values: Output) {
this.computerAttributes = Output.all(values.asList())
}
/**
* @param values A collection of custom attributes for an Active Directory computer.
*/
@JvmName("mwuewwjrofqtagkx")
public suspend fun computerAttributes(values: List