com.pulumi.gcp.vertex.kotlin.AiEndpointIamPolicyArgs.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.vertex.kotlin
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.vertex.AiEndpointIamPolicyArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property endpoint
* @property location
* @property policyData
* @property project
*/
public data class AiEndpointIamPolicyArgs(
public val endpoint: Output? = null,
public val location: Output? = null,
public val policyData: Output? = null,
public val project: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.vertex.AiEndpointIamPolicyArgs =
com.pulumi.gcp.vertex.AiEndpointIamPolicyArgs.builder()
.endpoint(endpoint?.applyValue({ args0 -> args0 }))
.location(location?.applyValue({ args0 -> args0 }))
.policyData(policyData?.applyValue({ args0 -> args0 }))
.project(project?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [AiEndpointIamPolicyArgs].
*/
@PulumiTagMarker
public class AiEndpointIamPolicyArgsBuilder internal constructor() {
private var endpoint: Output? = null
private var location: Output? = null
private var policyData: Output? = null
private var project: Output? = null
/**
* @param value
*/
@JvmName("gmbptrwxkbepkcng")
public suspend fun endpoint(`value`: Output) {
this.endpoint = value
}
/**
* @param value
*/
@JvmName("amvjynobdiypjhxt")
public suspend fun location(`value`: Output) {
this.location = value
}
/**
* @param value
*/
@JvmName("gpuamvfqfhmctkfa")
public suspend fun policyData(`value`: Output) {
this.policyData = value
}
/**
* @param value
*/
@JvmName("ftfbgbimbavfuecq")
public suspend fun project(`value`: Output) {
this.project = value
}
/**
* @param value
*/
@JvmName("xeakuujsklykpmdf")
public suspend fun endpoint(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.endpoint = mapped
}
/**
* @param value
*/
@JvmName("oiqbpslqygjrusdx")
public suspend fun location(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.location = mapped
}
/**
* @param value
*/
@JvmName("bdpvxtovdelsafur")
public suspend fun policyData(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.policyData = mapped
}
/**
* @param value
*/
@JvmName("ucarggffmgttyryr")
public suspend fun project(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.project = mapped
}
internal fun build(): AiEndpointIamPolicyArgs = AiEndpointIamPolicyArgs(
endpoint = endpoint,
location = location,
policyData = policyData,
project = project,
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy