com.pulumi.gcp.iam.kotlin.inputs.GetRulePlainArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.gcp.iam.kotlin.inputs
import com.pulumi.gcp.iam.inputs.GetRulePlainArgs.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 getRule.
* @property name The name of the Role to lookup in the form `roles/{ROLE_NAME}`, `organizations/{ORGANIZATION_ID}/roles/{ROLE_NAME}` or `projects/{PROJECT_ID}/roles/{ROLE_NAME}`
*/
public data class GetRulePlainArgs(
public val name: String,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.iam.inputs.GetRulePlainArgs =
com.pulumi.gcp.iam.inputs.GetRulePlainArgs.builder()
.name(name.let({ args0 -> args0 })).build()
}
/**
* Builder for [GetRulePlainArgs].
*/
@PulumiTagMarker
public class GetRulePlainArgsBuilder internal constructor() {
private var name: String? = null
/**
* @param value The name of the Role to lookup in the form `roles/{ROLE_NAME}`, `organizations/{ORGANIZATION_ID}/roles/{ROLE_NAME}` or `projects/{PROJECT_ID}/roles/{ROLE_NAME}`
*/
@JvmName("iahwhcdhnwivnxwq")
public suspend fun name(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.name = mapped
}
internal fun build(): GetRulePlainArgs = GetRulePlainArgs(
name = name ?: throw PulumiNullFieldException("name"),
)
}