com.pulumi.googlenative.run.v2.kotlin.JobIamBinding.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.googlenative.run.v2.kotlin
import com.pulumi.core.Output
import com.pulumi.googlenative.iam.v1.kotlin.outputs.Condition
import com.pulumi.googlenative.iam.v1.kotlin.outputs.Condition.Companion.toKotlin
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 [JobIamBinding].
*/
@PulumiTagMarker
public class JobIamBindingResourceBuilder internal constructor() {
public var name: String? = null
public var args: JobIamBindingArgs = JobIamBindingArgs()
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 JobIamBindingArgsBuilder.() -> Unit) {
val builder = JobIamBindingArgsBuilder()
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(): JobIamBinding {
val builtJavaResource = com.pulumi.googlenative.run.v2.JobIamBinding(
this.name,
this.args.toJava(),
this.opts.toJava(),
)
return JobIamBinding(builtJavaResource)
}
}
/**
* Sets the IAM Access control policy for the specified Job. Overwrites any existing policy.
*/
public class JobIamBinding internal constructor(
override val javaResource: com.pulumi.googlenative.run.v2.JobIamBinding,
) : KotlinCustomResource(javaResource, JobIamBindingMapper) {
/**
* An IAM Condition for a given binding. See https://cloud.google.com/iam/docs/conditions-overview for additional details.
*/
public val condition: Output?
get() = javaResource.condition().applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
toKotlin(args0)
})
}).orElse(null)
})
/**
* The etag of the resource's IAM policy.
*/
public val etag: Output
get() = javaResource.etag().applyValue({ args0 -> args0 })
/**
* Identities that will be granted the privilege in role. Each entry can have one of the following values:
* * user:{emailid}: An email address that represents a specific Google account. For example, [email protected] or [email protected].
* * serviceAccount:{emailid}: An email address that represents a service account. For example, [email protected].
* * group:{emailid}: An email address that represents a Google group. For example, [email protected].
* * domain:{domain}: A G Suite domain (primary, instead of alias) name that represents all the users of that domain. For example, google.com or example.com.
*/
public val members: Output>
get() = javaResource.members().applyValue({ args0 -> args0.map({ args0 -> args0 }) })
/**
* The name of the resource to manage IAM policies for.
*/
public val name: Output
get() = javaResource.name().applyValue({ args0 -> args0 })
/**
* The project in which the resource belongs. If it is not provided, a default will be supplied.
*/
public val project: Output
get() = javaResource.project().applyValue({ args0 -> args0 })
/**
* The role that should be applied. Only one `IamBinding` can be used per role.
*/
public val role: Output
get() = javaResource.role().applyValue({ args0 -> args0 })
}
public object JobIamBindingMapper : ResourceMapper {
override fun supportsMappingOfType(javaResource: Resource): Boolean =
com.pulumi.googlenative.run.v2.JobIamBinding::class == javaResource::class
override fun map(javaResource: Resource): JobIamBinding = JobIamBinding(
javaResource as
com.pulumi.googlenative.run.v2.JobIamBinding,
)
}
/**
* @see [JobIamBinding].
* @param name The _unique_ name of the resulting resource.
* @param block Builder for [JobIamBinding].
*/
public suspend fun jobIamBinding(
name: String,
block: suspend JobIamBindingResourceBuilder.() -> Unit,
): JobIamBinding {
val builder = JobIamBindingResourceBuilder()
builder.name(name)
block(builder)
return builder.build()
}
/**
* @see [JobIamBinding].
* @param name The _unique_ name of the resulting resource.
*/
public fun jobIamBinding(name: String): JobIamBinding {
val builder = JobIamBindingResourceBuilder()
builder.name(name)
return builder.build()
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy