All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.awsnative.nimblestudio.kotlin.inputs.StudioComponentActiveDirectoryConfigurationArgs.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 0.122.0.0
Show newest version
@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>) { this.computerAttributes = Output.all(values) } /** * @param value

The directory ID of the Directory Service for Microsoft Active Directory to access * using this studio component.

*/ @JvmName("xtgmwmtyleurhtta") public suspend fun directoryId(`value`: Output) { this.directoryId = value } /** * @param value

The distinguished name (DN) and organizational unit (OU) of an Active Directory * computer.

*/ @JvmName("lwdehaxcflqkbijj") public suspend fun organizationalUnitDistinguishedName(`value`: Output) { this.organizationalUnitDistinguishedName = value } /** * @param value

A collection of custom attributes for an Active Directory computer.

*/ @JvmName("sjugitykefitqxpq") public suspend fun computerAttributes(`value`: List?) { val toBeMapped = value val mapped = toBeMapped?.let({ args0 -> of(args0) }) this.computerAttributes = mapped } /** * @param argument

A collection of custom attributes for an Active Directory computer.

*/ @JvmName("hyisevmvrgorrmds") public suspend fun computerAttributes(argument: List Unit>) { val toBeMapped = argument.toList().map { StudioComponentActiveDirectoryComputerAttributeArgsBuilder().applySuspend { it() }.build() } val mapped = of(toBeMapped) this.computerAttributes = mapped } /** * @param argument

A collection of custom attributes for an Active Directory computer.

*/ @JvmName("kntwhqkqotmyflek") public suspend fun computerAttributes(vararg argument: suspend StudioComponentActiveDirectoryComputerAttributeArgsBuilder.() -> Unit) { val toBeMapped = argument.toList().map { StudioComponentActiveDirectoryComputerAttributeArgsBuilder().applySuspend { it() }.build() } val mapped = of(toBeMapped) this.computerAttributes = mapped } /** * @param argument

A collection of custom attributes for an Active Directory computer.

*/ @JvmName("vsdfsnvgnpyuwvcl") public suspend fun computerAttributes(argument: suspend StudioComponentActiveDirectoryComputerAttributeArgsBuilder.() -> Unit) { val toBeMapped = listOf( StudioComponentActiveDirectoryComputerAttributeArgsBuilder().applySuspend { argument() }.build(), ) val mapped = of(toBeMapped) this.computerAttributes = mapped } /** * @param values

A collection of custom attributes for an Active Directory computer.

*/ @JvmName("oysyqkifbnccmxyg") public suspend fun computerAttributes(vararg values: StudioComponentActiveDirectoryComputerAttributeArgs) { val toBeMapped = values.toList() val mapped = toBeMapped.let({ args0 -> of(args0) }) this.computerAttributes = mapped } /** * @param value

The directory ID of the Directory Service for Microsoft Active Directory to access * using this studio component.

*/ @JvmName("pbgtqaedsdytmrad") public suspend fun directoryId(`value`: String?) { val toBeMapped = value val mapped = toBeMapped?.let({ args0 -> of(args0) }) this.directoryId = mapped } /** * @param value

The distinguished name (DN) and organizational unit (OU) of an Active Directory * computer.

*/ @JvmName("nlqhsowieiaoeojo") public suspend fun organizationalUnitDistinguishedName(`value`: String?) { val toBeMapped = value val mapped = toBeMapped?.let({ args0 -> of(args0) }) this.organizationalUnitDistinguishedName = mapped } internal fun build(): StudioComponentActiveDirectoryConfigurationArgs = StudioComponentActiveDirectoryConfigurationArgs( computerAttributes = computerAttributes, directoryId = directoryId, organizationalUnitDistinguishedName = organizationalUnitDistinguishedName, ) }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy