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

com.pulumi.awsnative.ec2.kotlin.IpamScopeArgs.kt Maven / Gradle / Ivy

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

package com.pulumi.awsnative.ec2.kotlin

import com.pulumi.awsnative.ec2.IpamScopeArgs.builder
import com.pulumi.awsnative.kotlin.inputs.TagArgs
import com.pulumi.awsnative.kotlin.inputs.TagArgsBuilder
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 Schema of AWS::EC2::IPAMScope Type
 * @property description The description of the scope.
 * @property ipamId The Id of the IPAM this scope is a part of.
 * @property tags An array of key-value pairs to apply to this resource.
 */
public data class IpamScopeArgs(
    public val description: Output? = null,
    public val ipamId: Output? = null,
    public val tags: Output>? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.awsnative.ec2.IpamScopeArgs =
        com.pulumi.awsnative.ec2.IpamScopeArgs.builder()
            .description(description?.applyValue({ args0 -> args0 }))
            .ipamId(ipamId?.applyValue({ args0 -> args0 }))
            .tags(
                tags?.applyValue({ args0 ->
                    args0.map({ args0 ->
                        args0.let({ args0 ->
                            args0.toJava()
                        })
                    })
                }),
            ).build()
}

/**
 * Builder for [IpamScopeArgs].
 */
@PulumiTagMarker
public class IpamScopeArgsBuilder internal constructor() {
    private var description: Output? = null

    private var ipamId: Output? = null

    private var tags: Output>? = null

    /**
     * @param value The description of the scope.
     */
    @JvmName("umdvjbxpwrdwvsib")
    public suspend fun description(`value`: Output) {
        this.description = value
    }

    /**
     * @param value The Id of the IPAM this scope is a part of.
     */
    @JvmName("gdkgitfysohjtqnj")
    public suspend fun ipamId(`value`: Output) {
        this.ipamId = value
    }

    /**
     * @param value An array of key-value pairs to apply to this resource.
     */
    @JvmName("adspulyodvcvwwph")
    public suspend fun tags(`value`: Output>) {
        this.tags = value
    }

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

    /**
     * @param values An array of key-value pairs to apply to this resource.
     */
    @JvmName("blbqxeptdkijjkgm")
    public suspend fun tags(values: List>) {
        this.tags = Output.all(values)
    }

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

    /**
     * @param value The Id of the IPAM this scope is a part of.
     */
    @JvmName("wjqlevqprrloiexs")
    public suspend fun ipamId(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.ipamId = mapped
    }

    /**
     * @param value An array of key-value pairs to apply to this resource.
     */
    @JvmName("mifjiconcablaeco")
    public suspend fun tags(`value`: List?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.tags = mapped
    }

    /**
     * @param argument An array of key-value pairs to apply to this resource.
     */
    @JvmName("anixasamwoxguucj")
    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 An array of key-value pairs to apply to this resource.
     */
    @JvmName("mdlkyagwmodpyhxb")
    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 An array of key-value pairs to apply to this resource.
     */
    @JvmName("bnlwtnjhucxlleep")
    public suspend fun tags(argument: suspend TagArgsBuilder.() -> Unit) {
        val toBeMapped = listOf(TagArgsBuilder().applySuspend { argument() }.build())
        val mapped = of(toBeMapped)
        this.tags = mapped
    }

    /**
     * @param values An array of key-value pairs to apply to this resource.
     */
    @JvmName("hscnvaferxdyruxh")
    public suspend fun tags(vararg values: TagArgs) {
        val toBeMapped = values.toList()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.tags = mapped
    }

    internal fun build(): IpamScopeArgs = IpamScopeArgs(
        description = description,
        ipamId = ipamId,
        tags = tags,
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy