com.pulumi.gcp.osconfig.kotlin.inputs.OsPolicyAssignmentOsPolicyResourceGroupResourceExecEnforceFileGcsArgs.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.osconfig.kotlin.inputs
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.osconfig.inputs.OsPolicyAssignmentOsPolicyResourceGroupResourceExecEnforceFileGcsArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Int
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property bucket Bucket of the Cloud Storage object.
* @property generation Generation number of the Cloud Storage object.
* @property object Name of the Cloud Storage object.
*/
public data class OsPolicyAssignmentOsPolicyResourceGroupResourceExecEnforceFileGcsArgs(
public val bucket: Output,
public val generation: Output? = null,
public val `object`: Output,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.osconfig.inputs.OsPolicyAssignmentOsPolicyResourceGroupResourceExecEnforceFileGcsArgs =
com.pulumi.gcp.osconfig.inputs.OsPolicyAssignmentOsPolicyResourceGroupResourceExecEnforceFileGcsArgs.builder()
.bucket(bucket.applyValue({ args0 -> args0 }))
.generation(generation?.applyValue({ args0 -> args0 }))
.`object`(`object`.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [OsPolicyAssignmentOsPolicyResourceGroupResourceExecEnforceFileGcsArgs].
*/
@PulumiTagMarker
public class OsPolicyAssignmentOsPolicyResourceGroupResourceExecEnforceFileGcsArgsBuilder internal constructor() {
private var bucket: Output? = null
private var generation: Output? = null
private var `object`: Output? = null
/**
* @param value Bucket of the Cloud Storage object.
*/
@JvmName("rkkxbfbixfteqiic")
public suspend fun bucket(`value`: Output) {
this.bucket = value
}
/**
* @param value Generation number of the Cloud Storage object.
*/
@JvmName("tannoggflejdkiwu")
public suspend fun generation(`value`: Output) {
this.generation = value
}
/**
* @param value Name of the Cloud Storage object.
*/
@JvmName("amlunnqiqmnotyej")
public suspend fun `object`(`value`: Output) {
this.`object` = value
}
/**
* @param value Bucket of the Cloud Storage object.
*/
@JvmName("cedjuvmsgkqmvntu")
public suspend fun bucket(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.bucket = mapped
}
/**
* @param value Generation number of the Cloud Storage object.
*/
@JvmName("hvvxpaulikwsbunv")
public suspend fun generation(`value`: Int?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.generation = mapped
}
/**
* @param value Name of the Cloud Storage object.
*/
@JvmName("uyetnanylouttlkh")
public suspend fun `object`(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.`object` = mapped
}
internal fun build(): OsPolicyAssignmentOsPolicyResourceGroupResourceExecEnforceFileGcsArgs =
OsPolicyAssignmentOsPolicyResourceGroupResourceExecEnforceFileGcsArgs(
bucket = bucket ?: throw PulumiNullFieldException("bucket"),
generation = generation,
`object` = `object` ?: throw PulumiNullFieldException("object"),
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy