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

com.pulumi.awsnative.deadline.kotlin.LicenseEndpoint.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.deadline.kotlin

import com.pulumi.awsnative.deadline.kotlin.enums.LicenseEndpointStatus
import com.pulumi.awsnative.kotlin.outputs.Tag
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
import com.pulumi.awsnative.deadline.kotlin.enums.LicenseEndpointStatus.Companion.toKotlin as licenseEndpointStatusToKotlin
import com.pulumi.awsnative.kotlin.outputs.Tag.Companion.toKotlin as tagToKotlin

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

    public var args: LicenseEndpointArgs = LicenseEndpointArgs()

    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 LicenseEndpointArgsBuilder.() -> Unit) {
        val builder = LicenseEndpointArgsBuilder()
        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(): LicenseEndpoint {
        val builtJavaResource = com.pulumi.awsnative.deadline.LicenseEndpoint(
            this.name,
            this.args.toJava(),
            this.opts.toJava(),
        )
        return LicenseEndpoint(builtJavaResource)
    }
}

/**
 * Definition of AWS::Deadline::LicenseEndpoint Resource Type
 */
public class LicenseEndpoint internal constructor(
    override val javaResource: com.pulumi.awsnative.deadline.LicenseEndpoint,
) : KotlinCustomResource(javaResource, LicenseEndpointMapper) {
    /**
     * The Amazon Resource Name (ARN) of the license endpoint.
     */
    public val arn: Output
        get() = javaResource.arn().applyValue({ args0 -> args0 })

    /**
     * The DNS name of the license server endpoint.
     */
    public val dnsName: Output
        get() = javaResource.dnsName().applyValue({ args0 -> args0 })

    /**
     * The license endpoint ID.
     */
    public val licenseEndpointId: Output
        get() = javaResource.licenseEndpointId().applyValue({ args0 -> args0 })

    /**
     * The identifier of the Amazon EC2 security group that controls access to the license endpoint.
     */
    public val securityGroupIds: Output>
        get() = javaResource.securityGroupIds().applyValue({ args0 -> args0.map({ args0 -> args0 }) })

    /**
     * The status of the license endpoint.
     */
    public val status: Output
        get() = javaResource.status().applyValue({ args0 ->
            args0.let({ args0 ->
                licenseEndpointStatusToKotlin(args0)
            })
        })

    /**
     * The status message of the license endpoint.
     */
    public val statusMessage: Output
        get() = javaResource.statusMessage().applyValue({ args0 -> args0 })

    /**
     * Identifies the VPC subnets that can connect to a license endpoint.
     */
    public val subnetIds: Output>
        get() = javaResource.subnetIds().applyValue({ args0 -> args0.map({ args0 -> args0 }) })

    /**
     * An array of key-value pairs to apply to this resource.
     */
    public val tags: Output>?
        get() = javaResource.tags().applyValue({ args0 ->
            args0.map({ args0 ->
                args0.map({ args0 ->
                    args0.let({ args0 -> tagToKotlin(args0) })
                })
            }).orElse(null)
        })

    /**
     * The VCP(virtual private cloud) ID associated with the license endpoint.
     */
    public val vpcId: Output
        get() = javaResource.vpcId().applyValue({ args0 -> args0 })
}

public object LicenseEndpointMapper : ResourceMapper {
    override fun supportsMappingOfType(javaResource: Resource): Boolean =
        com.pulumi.awsnative.deadline.LicenseEndpoint::class == javaResource::class

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy