com.pulumi.gcp.osconfig.kotlin.inputs.PatchDeploymentPatchConfigPostStepWindowsExecStepConfigGcsObjectArgs.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.PatchDeploymentPatchConfigPostStepWindowsExecStepConfigGcsObjectArgs.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
/**
*
* @property bucket Bucket of the Cloud Storage object.
* @property generationNumber Generation number of the Cloud Storage object. This is used to ensure that the ExecStep specified by this PatchJob does not change.
* @property object Name of the Cloud Storage object.
*/
public data class PatchDeploymentPatchConfigPostStepWindowsExecStepConfigGcsObjectArgs(
public val bucket: Output,
public val generationNumber: Output,
public val `object`: Output,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.osconfig.inputs.PatchDeploymentPatchConfigPostStepWindowsExecStepConfigGcsObjectArgs =
com.pulumi.gcp.osconfig.inputs.PatchDeploymentPatchConfigPostStepWindowsExecStepConfigGcsObjectArgs.builder()
.bucket(bucket.applyValue({ args0 -> args0 }))
.generationNumber(generationNumber.applyValue({ args0 -> args0 }))
.`object`(`object`.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [PatchDeploymentPatchConfigPostStepWindowsExecStepConfigGcsObjectArgs].
*/
@PulumiTagMarker
public class PatchDeploymentPatchConfigPostStepWindowsExecStepConfigGcsObjectArgsBuilder internal constructor() {
private var bucket: Output? = null
private var generationNumber: Output? = null
private var `object`: Output? = null
/**
* @param value Bucket of the Cloud Storage object.
*/
@JvmName("npbqnsmaolqlxcik")
public suspend fun bucket(`value`: Output) {
this.bucket = value
}
/**
* @param value Generation number of the Cloud Storage object. This is used to ensure that the ExecStep specified by this PatchJob does not change.
*/
@JvmName("sksrnbritlcvwtxj")
public suspend fun generationNumber(`value`: Output) {
this.generationNumber = value
}
/**
* @param value Name of the Cloud Storage object.
*/
@JvmName("mskxhnuvpghnruln")
public suspend fun `object`(`value`: Output) {
this.`object` = value
}
/**
* @param value Bucket of the Cloud Storage object.
*/
@JvmName("bnvvsuoyvgserrjc")
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. This is used to ensure that the ExecStep specified by this PatchJob does not change.
*/
@JvmName("btwvfswmdbchotoy")
public suspend fun generationNumber(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.generationNumber = mapped
}
/**
* @param value Name of the Cloud Storage object.
*/
@JvmName("kqiypssflobinfmx")
public suspend fun `object`(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.`object` = mapped
}
internal fun build(): PatchDeploymentPatchConfigPostStepWindowsExecStepConfigGcsObjectArgs =
PatchDeploymentPatchConfigPostStepWindowsExecStepConfigGcsObjectArgs(
bucket = bucket ?: throw PulumiNullFieldException("bucket"),
generationNumber = generationNumber ?: throw PulumiNullFieldException("generationNumber"),
`object` = `object` ?: throw PulumiNullFieldException("object"),
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy