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

com.pulumi.awsnative.sso.kotlin.InstanceArgs.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.awsnative.sso.kotlin

import com.pulumi.awsnative.kotlin.inputs.TagArgs
import com.pulumi.awsnative.kotlin.inputs.TagArgsBuilder
import com.pulumi.awsnative.sso.InstanceArgs.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

/**
 * Resource Type definition for Identity Center (SSO) Instance
 * @property name The name you want to assign to this Identity Center (SSO) Instance
 * @property tags Specifies tags to be attached to the instance of IAM Identity Center.
 */
public data class InstanceArgs(
    public val name: Output? = null,
    public val tags: Output>? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.awsnative.sso.InstanceArgs =
        com.pulumi.awsnative.sso.InstanceArgs.builder()
            .name(name?.applyValue({ args0 -> args0 }))
            .tags(
                tags?.applyValue({ args0 ->
                    args0.map({ args0 ->
                        args0.let({ args0 ->
                            args0.toJava()
                        })
                    })
                }),
            ).build()
}

/**
 * Builder for [InstanceArgs].
 */
@PulumiTagMarker
public class InstanceArgsBuilder internal constructor() {
    private var name: Output? = null

    private var tags: Output>? = null

    /**
     * @param value The name you want to assign to this Identity Center (SSO) Instance
     */
    @JvmName("ndfwxmbkftsnwmgv")
    public suspend fun name(`value`: Output) {
        this.name = value
    }

    /**
     * @param value Specifies tags to be attached to the instance of IAM Identity Center.
     */
    @JvmName("theudsuvbjkfswyg")
    public suspend fun tags(`value`: Output>) {
        this.tags = value
    }

    @JvmName("hxuqxgpssvwgjssf")
    public suspend fun tags(vararg values: Output) {
        this.tags = Output.all(values.asList())
    }

    /**
     * @param values Specifies tags to be attached to the instance of IAM Identity Center.
     */
    @JvmName("oaogwaxfduymcxag")
    public suspend fun tags(values: List>) {
        this.tags = Output.all(values)
    }

    /**
     * @param value The name you want to assign to this Identity Center (SSO) Instance
     */
    @JvmName("ljrpyxbfdxqajvuw")
    public suspend fun name(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.name = mapped
    }

    /**
     * @param value Specifies tags to be attached to the instance of IAM Identity Center.
     */
    @JvmName("bthurfsioxvxsens")
    public suspend fun tags(`value`: List?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.tags = mapped
    }

    /**
     * @param argument Specifies tags to be attached to the instance of IAM Identity Center.
     */
    @JvmName("jonnxdhaijaulimb")
    public suspend fun tags(argument: List Unit>) {
        val toBeMapped = argument.toList().map { TagArgsBuilder().applySuspend { it() }.build() }
        val mapped = of(toBeMapped)
        this.tags = mapped
    }

    /**
     * @param argument Specifies tags to be attached to the instance of IAM Identity Center.
     */
    @JvmName("faejsokwkcndmlmo")
    public suspend fun tags(vararg argument: suspend TagArgsBuilder.() -> Unit) {
        val toBeMapped = argument.toList().map { TagArgsBuilder().applySuspend { it() }.build() }
        val mapped = of(toBeMapped)
        this.tags = mapped
    }

    /**
     * @param argument Specifies tags to be attached to the instance of IAM Identity Center.
     */
    @JvmName("pukfamovhpopsikj")
    public suspend fun tags(argument: suspend TagArgsBuilder.() -> Unit) {
        val toBeMapped = listOf(TagArgsBuilder().applySuspend { argument() }.build())
        val mapped = of(toBeMapped)
        this.tags = mapped
    }

    /**
     * @param values Specifies tags to be attached to the instance of IAM Identity Center.
     */
    @JvmName("xbfjfsjdrfcyaejs")
    public suspend fun tags(vararg values: TagArgs) {
        val toBeMapped = values.toList()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.tags = mapped
    }

    internal fun build(): InstanceArgs = InstanceArgs(
        name = name,
        tags = tags,
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy