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

com.pulumi.awsnative.ec2.kotlin.CarrierGateway.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.ec2.kotlin

import com.pulumi.awsnative.kotlin.outputs.Tag
import com.pulumi.awsnative.kotlin.outputs.Tag.Companion.toKotlin
import com.pulumi.core.Output
import com.pulumi.kotlin.KotlinCustomResource
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.ResourceMapper
import com.pulumi.kotlin.options.CustomResourceOptions
import com.pulumi.kotlin.options.CustomResourceOptionsBuilder
import com.pulumi.resources.Resource
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List

/**
 * Builder for [CarrierGateway].
 */
@PulumiTagMarker
public class CarrierGatewayResourceBuilder internal constructor() {
    public var name: String? = null

    public var args: CarrierGatewayArgs = CarrierGatewayArgs()

    public var opts: CustomResourceOptions = CustomResourceOptions()

    /**
     * @param name The _unique_ name of the resulting resource.
     */
    public fun name(`value`: String) {
        this.name = value
    }

    /**
     * @param block The arguments to use to populate this resource's properties.
     */
    public suspend fun args(block: suspend CarrierGatewayArgsBuilder.() -> Unit) {
        val builder = CarrierGatewayArgsBuilder()
        block(builder)
        this.args = builder.build()
    }

    /**
     * @param block A bag of options that control this resource's behavior.
     */
    public suspend fun opts(block: suspend CustomResourceOptionsBuilder.() -> Unit) {
        this.opts = com.pulumi.kotlin.options.CustomResourceOptions.opts(block)
    }

    internal fun build(): CarrierGateway {
        val builtJavaResource = com.pulumi.awsnative.ec2.CarrierGateway(
            this.name,
            this.args.toJava(),
            this.opts.toJava(),
        )
        return CarrierGateway(builtJavaResource)
    }
}

/**
 * An example resource schema demonstrating some basic constructs and validation rules.
 */
public class CarrierGateway internal constructor(
    override val javaResource: com.pulumi.awsnative.ec2.CarrierGateway,
) : KotlinCustomResource(javaResource, CarrierGatewayMapper) {
    /**
     * The ID of the carrier gateway.
     */
    public val carrierGatewayId: Output
        get() = javaResource.carrierGatewayId().applyValue({ args0 -> args0 })

    /**
     * The ID of the owner.
     */
    public val ownerId: Output
        get() = javaResource.ownerId().applyValue({ args0 -> args0 })

    /**
     * The state of the carrier gateway.
     */
    public val state: Output
        get() = javaResource.state().applyValue({ args0 -> args0 })

    /**
     * The tags for the carrier gateway.
     */
    public val tags: Output>?
        get() = javaResource.tags().applyValue({ args0 ->
            args0.map({ args0 ->
                args0.map({ args0 ->
                    args0.let({ args0 -> toKotlin(args0) })
                })
            }).orElse(null)
        })

    /**
     * The ID of the VPC.
     */
    public val vpcId: Output
        get() = javaResource.vpcId().applyValue({ args0 -> args0 })
}

public object CarrierGatewayMapper : ResourceMapper {
    override fun supportsMappingOfType(javaResource: Resource): Boolean =
        com.pulumi.awsnative.ec2.CarrierGateway::class == javaResource::class

    override fun map(javaResource: Resource): CarrierGateway = CarrierGateway(
        javaResource as
            com.pulumi.awsnative.ec2.CarrierGateway,
    )
}

/**
 * @see [CarrierGateway].
 * @param name The _unique_ name of the resulting resource.
 * @param block Builder for [CarrierGateway].
 */
public suspend fun carrierGateway(
    name: String,
    block: suspend CarrierGatewayResourceBuilder.() -> Unit,
): CarrierGateway {
    val builder = CarrierGatewayResourceBuilder()
    builder.name(name)
    block(builder)
    return builder.build()
}

/**
 * @see [CarrierGateway].
 * @param name The _unique_ name of the resulting resource.
 */
public fun carrierGateway(name: String): CarrierGateway {
    val builder = CarrierGatewayResourceBuilder()
    builder.name(name)
    return builder.build()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy