com.pulumi.gcp.clouddeploy.kotlin.TargetIamPolicy.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gcp-kotlin Show documentation
Show all versions of pulumi-gcp-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.gcp.clouddeploy.kotlin
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 [TargetIamPolicy].
*/
@PulumiTagMarker
public class TargetIamPolicyResourceBuilder internal constructor() {
public var name: String? = null
public var args: TargetIamPolicyArgs = TargetIamPolicyArgs()
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 TargetIamPolicyArgsBuilder.() -> Unit) {
val builder = TargetIamPolicyArgsBuilder()
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(): TargetIamPolicy {
val builtJavaResource = com.pulumi.gcp.clouddeploy.TargetIamPolicy(
this.name,
this.args.toJava(),
this.opts.toJava(),
)
return TargetIamPolicy(builtJavaResource)
}
}
public class TargetIamPolicy internal constructor(
override val javaResource: com.pulumi.gcp.clouddeploy.TargetIamPolicy,
) : KotlinCustomResource(javaResource, TargetIamPolicyMapper) {
public val etag: Output
get() = javaResource.etag().applyValue({ args0 -> args0 })
public val location: Output
get() = javaResource.location().applyValue({ args0 -> args0 })
public val name: Output
get() = javaResource.name().applyValue({ args0 -> args0 })
public val policyData: Output
get() = javaResource.policyData().applyValue({ args0 -> args0 })
public val project: Output
get() = javaResource.project().applyValue({ args0 -> args0 })
}
public object TargetIamPolicyMapper : ResourceMapper {
override fun supportsMappingOfType(javaResource: Resource): Boolean =
com.pulumi.gcp.clouddeploy.TargetIamPolicy::class == javaResource::class
override fun map(javaResource: Resource): TargetIamPolicy = TargetIamPolicy(
javaResource as
com.pulumi.gcp.clouddeploy.TargetIamPolicy,
)
}
/**
* @see [TargetIamPolicy].
* @param name The _unique_ name of the resulting resource.
* @param block Builder for [TargetIamPolicy].
*/
public suspend fun targetIamPolicy(
name: String,
block: suspend TargetIamPolicyResourceBuilder.() -> Unit,
): TargetIamPolicy {
val builder = TargetIamPolicyResourceBuilder()
builder.name(name)
block(builder)
return builder.build()
}
/**
* @see [TargetIamPolicy].
* @param name The _unique_ name of the resulting resource.
*/
public fun targetIamPolicy(name: String): TargetIamPolicy {
val builder = TargetIamPolicyResourceBuilder()
builder.name(name)
return builder.build()
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy