com.pulumi.awsnative.route53.kotlin.CidrCollection.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-native-kotlin Show documentation
Show all versions of pulumi-aws-native-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.route53.kotlin
import com.pulumi.awsnative.route53.kotlin.outputs.CidrCollectionLocation
import com.pulumi.awsnative.route53.kotlin.outputs.CidrCollectionLocation.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 [CidrCollection].
*/
@PulumiTagMarker
public class CidrCollectionResourceBuilder internal constructor() {
public var name: String? = null
public var args: CidrCollectionArgs = CidrCollectionArgs()
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 CidrCollectionArgsBuilder.() -> Unit) {
val builder = CidrCollectionArgsBuilder()
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(): CidrCollection {
val builtJavaResource = com.pulumi.awsnative.route53.CidrCollection(
this.name,
this.args.toJava(),
this.opts.toJava(),
)
return CidrCollection(builtJavaResource)
}
}
/**
* Resource schema for AWS::Route53::CidrCollection.
*/
public class CidrCollection internal constructor(
override val javaResource: com.pulumi.awsnative.route53.CidrCollection,
) : KotlinCustomResource(javaResource, CidrCollectionMapper) {
/**
* The Amazon resource name (ARN) to uniquely identify the AWS resource.
*/
public val arn: Output
get() = javaResource.arn().applyValue({ args0 -> args0 })
/**
* UUID of the CIDR collection.
*/
public val awsId: Output
get() = javaResource.awsId().applyValue({ args0 -> args0 })
/**
* A complex type that contains information about the list of CIDR locations.
*/
public val locations: Output>?
get() = javaResource.locations().applyValue({ args0 ->
args0.map({ args0 ->
args0.map({ args0 ->
args0.let({ args0 -> toKotlin(args0) })
})
}).orElse(null)
})
/**
* A unique name for the CIDR collection.
*/
public val name: Output
get() = javaResource.name().applyValue({ args0 -> args0 })
}
public object CidrCollectionMapper : ResourceMapper {
override fun supportsMappingOfType(javaResource: Resource): Boolean =
com.pulumi.awsnative.route53.CidrCollection::class == javaResource::class
override fun map(javaResource: Resource): CidrCollection = CidrCollection(
javaResource as
com.pulumi.awsnative.route53.CidrCollection,
)
}
/**
* @see [CidrCollection].
* @param name The _unique_ name of the resulting resource.
* @param block Builder for [CidrCollection].
*/
public suspend fun cidrCollection(
name: String,
block: suspend CidrCollectionResourceBuilder.() -> Unit,
): CidrCollection {
val builder = CidrCollectionResourceBuilder()
builder.name(name)
block(builder)
return builder.build()
}
/**
* @see [CidrCollection].
* @param name The _unique_ name of the resulting resource.
*/
public fun cidrCollection(name: String): CidrCollection {
val builder = CidrCollectionResourceBuilder()
builder.name(name)
return builder.build()
}