com.pulumi.gcp.storage.kotlin.inputs.GetBucketIamPolicyPlainArgs.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.storage.kotlin.inputs
import com.pulumi.gcp.storage.inputs.GetBucketIamPolicyPlainArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
* A collection of arguments for invoking getBucketIamPolicy.
* @property bucket Used to find the parent resource to bind the IAM policy to
*/
public data class GetBucketIamPolicyPlainArgs(
public val bucket: String,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.storage.inputs.GetBucketIamPolicyPlainArgs =
com.pulumi.gcp.storage.inputs.GetBucketIamPolicyPlainArgs.builder()
.bucket(bucket.let({ args0 -> args0 })).build()
}
/**
* Builder for [GetBucketIamPolicyPlainArgs].
*/
@PulumiTagMarker
public class GetBucketIamPolicyPlainArgsBuilder internal constructor() {
private var bucket: String? = null
/**
* @param value Used to find the parent resource to bind the IAM policy to
*/
@JvmName("dafidkldaaocfovv")
public suspend fun bucket(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.bucket = mapped
}
internal fun build(): GetBucketIamPolicyPlainArgs = GetBucketIamPolicyPlainArgs(
bucket = bucket ?: throw PulumiNullFieldException("bucket"),
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy