com.pulumi.cloudflare.kotlin.List.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-cloudflare-kotlin Show documentation
Show all versions of pulumi-cloudflare-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.
The newest version!
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.cloudflare.kotlin
import com.pulumi.cloudflare.kotlin.outputs.ListItem
import com.pulumi.cloudflare.kotlin.outputs.ListItem.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
/**
* Builder for [List].
*/
@PulumiTagMarker
public class ListResourceBuilder internal constructor() {
public var name: String? = null
public var args: ListArgs = ListArgs()
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 ListArgsBuilder.() -> Unit) {
val builder = ListArgsBuilder()
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(): List {
val builtJavaResource = com.pulumi.cloudflare.List(
this.name,
this.args.toJava(),
this.opts.toJava(),
)
return List(builtJavaResource)
}
}
/**
* ## Example Usage
* ## Import
* ```sh
* $ pulumi import cloudflare:index/list:List example /
* ```
*/
public class List internal constructor(
override val javaResource: com.pulumi.cloudflare.List,
) : KotlinCustomResource(javaResource, ListMapper) {
/**
* The account identifier to target for the resource.
*/
public val accountId: Output
get() = javaResource.accountId().applyValue({ args0 -> args0 })
/**
* An optional description of the list.
*/
public val description: Output?
get() = javaResource.description().applyValue({ args0 ->
args0.map({ args0 ->
args0
}).orElse(null)
})
public val items: Output>?
get() = javaResource.items().applyValue({ args0 ->
args0.map({ args0 ->
args0.map({ args0 ->
args0.let({ args0 -> toKotlin(args0) })
})
}).orElse(null)
})
/**
* The type of items the list will contain. Available values: `ip`, `redirect`, `hostname`, `asn`. **Modifying this attribute will force creation of a new resource.**
*/
public val kind: Output
get() = javaResource.kind().applyValue({ args0 -> args0 })
/**
* The name of the list. **Modifying this attribute will force creation of a new resource.**
*/
public val name: Output
get() = javaResource.name().applyValue({ args0 -> args0 })
}
public object ListMapper : ResourceMapper {
override fun supportsMappingOfType(javaResource: Resource): Boolean =
com.pulumi.cloudflare.List::class == javaResource::class
override fun map(javaResource: Resource): List = List(javaResource as com.pulumi.cloudflare.List)
}
/**
* @see [List].
* @param name The _unique_ name of the resulting resource.
* @param block Builder for [List].
*/
public suspend fun list(name: String, block: suspend ListResourceBuilder.() -> Unit): List {
val builder = ListResourceBuilder()
builder.name(name)
block(builder)
return builder.build()
}
/**
* @see [List].
* @param name The _unique_ name of the resulting resource.
*/
public fun list(name: String): List {
val builder = ListResourceBuilder()
builder.name(name)
return builder.build()
}