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

com.pulumi.awsnative.networkmanager.kotlin.SiteArgs.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: 1.11.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.awsnative.networkmanager.kotlin

import com.pulumi.awsnative.kotlin.inputs.TagArgs
import com.pulumi.awsnative.kotlin.inputs.TagArgsBuilder
import com.pulumi.awsnative.networkmanager.SiteArgs.builder
import com.pulumi.awsnative.networkmanager.kotlin.inputs.SiteLocationArgs
import com.pulumi.awsnative.networkmanager.kotlin.inputs.SiteLocationArgsBuilder
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 AWS::NetworkManager::Site type describes a site.
 * @property description The description of the site.
 * @property globalNetworkId The ID of the global network.
 * @property location The location of the site.
 * @property tags The tags for the site.
 */
public data class SiteArgs(
    public val description: Output? = null,
    public val globalNetworkId: Output? = null,
    public val location: Output? = null,
    public val tags: Output>? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.awsnative.networkmanager.SiteArgs =
        com.pulumi.awsnative.networkmanager.SiteArgs.builder()
            .description(description?.applyValue({ args0 -> args0 }))
            .globalNetworkId(globalNetworkId?.applyValue({ args0 -> args0 }))
            .location(location?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
            .tags(
                tags?.applyValue({ args0 ->
                    args0.map({ args0 ->
                        args0.let({ args0 ->
                            args0.toJava()
                        })
                    })
                }),
            ).build()
}

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

    private var globalNetworkId: Output? = null

    private var location: Output? = null

    private var tags: Output>? = null

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

    /**
     * @param value The ID of the global network.
     */
    @JvmName("fhhvukxpssteoayh")
    public suspend fun globalNetworkId(`value`: Output) {
        this.globalNetworkId = value
    }

    /**
     * @param value The location of the site.
     */
    @JvmName("plfnqqvxjwowhrtk")
    public suspend fun location(`value`: Output) {
        this.location = value
    }

    /**
     * @param value The tags for the site.
     */
    @JvmName("cweuweiekktgwbqf")
    public suspend fun tags(`value`: Output>) {
        this.tags = value
    }

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

    /**
     * @param values The tags for the site.
     */
    @JvmName("bcqwfnnhhlqkppkl")
    public suspend fun tags(values: List>) {
        this.tags = Output.all(values)
    }

    /**
     * @param value The description of the site.
     */
    @JvmName("egfeitwcxxhdpffh")
    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 global network.
     */
    @JvmName("jxwqiimdeewhioky")
    public suspend fun globalNetworkId(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.globalNetworkId = mapped
    }

    /**
     * @param value The location of the site.
     */
    @JvmName("fdeahyhmwfdlydjp")
    public suspend fun location(`value`: SiteLocationArgs?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.location = mapped
    }

    /**
     * @param argument The location of the site.
     */
    @JvmName("lmqqmgsykdnjomrp")
    public suspend fun location(argument: suspend SiteLocationArgsBuilder.() -> Unit) {
        val toBeMapped = SiteLocationArgsBuilder().applySuspend { argument() }.build()
        val mapped = of(toBeMapped)
        this.location = mapped
    }

    /**
     * @param value The tags for the site.
     */
    @JvmName("sqgmwhxvmvmsiolg")
    public suspend fun tags(`value`: List?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.tags = mapped
    }

    /**
     * @param argument The tags for the site.
     */
    @JvmName("plwuthxglihupfbu")
    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 The tags for the site.
     */
    @JvmName("xunanqjduwjgmfcf")
    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 The tags for the site.
     */
    @JvmName("atllesmswtgphuvl")
    public suspend fun tags(argument: suspend TagArgsBuilder.() -> Unit) {
        val toBeMapped = listOf(TagArgsBuilder().applySuspend { argument() }.build())
        val mapped = of(toBeMapped)
        this.tags = mapped
    }

    /**
     * @param values The tags for the site.
     */
    @JvmName("wxhkenkuojcjyeyn")
    public suspend fun tags(vararg values: TagArgs) {
        val toBeMapped = values.toList()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.tags = mapped
    }

    internal fun build(): SiteArgs = SiteArgs(
        description = description,
        globalNetworkId = globalNetworkId,
        location = location,
        tags = tags,
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy