com.pulumi.gcp.cloudbuild.kotlin.inputs.TriggerBuildSourceStorageSourceArgs.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.cloudbuild.kotlin.inputs
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.cloudbuild.inputs.TriggerBuildSourceStorageSourceArgs.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 Google Cloud Storage bucket containing the source.
* @property generation Google Cloud Storage generation for the object.
* If the generation is omitted, the latest generation will be used
* @property object Google Cloud Storage object containing the source.
* This object must be a gzipped archive file (.tar.gz) containing source to build.
*/
public data class TriggerBuildSourceStorageSourceArgs(
public val bucket: Output,
public val generation: Output? = null,
public val `object`: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.cloudbuild.inputs.TriggerBuildSourceStorageSourceArgs =
com.pulumi.gcp.cloudbuild.inputs.TriggerBuildSourceStorageSourceArgs.builder()
.bucket(bucket.applyValue({ args0 -> args0 }))
.generation(generation?.applyValue({ args0 -> args0 }))
.`object`(`object`.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [TriggerBuildSourceStorageSourceArgs].
*/
@PulumiTagMarker
public class TriggerBuildSourceStorageSourceArgsBuilder internal constructor() {
private var bucket: Output? = null
private var generation: Output? = null
private var `object`: Output? = null
/**
* @param value Google Cloud Storage bucket containing the source.
*/
@JvmName("ulokswlxffacjera")
public suspend fun bucket(`value`: Output) {
this.bucket = value
}
/**
* @param value Google Cloud Storage generation for the object.
* If the generation is omitted, the latest generation will be used
*/
@JvmName("hbobwuhvmgeduhir")
public suspend fun generation(`value`: Output) {
this.generation = value
}
/**
* @param value Google Cloud Storage object containing the source.
* This object must be a gzipped archive file (.tar.gz) containing source to build.
*/
@JvmName("dqrfrkcupasawkpd")
public suspend fun `object`(`value`: Output) {
this.`object` = value
}
/**
* @param value Google Cloud Storage bucket containing the source.
*/
@JvmName("xkeepofwllonpctt")
public suspend fun bucket(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.bucket = mapped
}
/**
* @param value Google Cloud Storage generation for the object.
* If the generation is omitted, the latest generation will be used
*/
@JvmName("qmoqlvibpdsxoqfb")
public suspend fun generation(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.generation = mapped
}
/**
* @param value Google Cloud Storage object containing the source.
* This object must be a gzipped archive file (.tar.gz) containing source to build.
*/
@JvmName("edusmgunbiekecol")
public suspend fun `object`(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.`object` = mapped
}
internal fun build(): TriggerBuildSourceStorageSourceArgs = TriggerBuildSourceStorageSourceArgs(
bucket = bucket ?: throw PulumiNullFieldException("bucket"),
generation = generation,
`object` = `object` ?: throw PulumiNullFieldException("object"),
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy