com.pulumi.gcp.cloudbuild.kotlin.inputs.TriggerBuildStepVolumeArgs.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.TriggerBuildStepVolumeArgs.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 name Name of the volume to mount.
* Volume names must be unique per build step and must be valid names for Docker volumes.
* Each named volume must be used by at least two build steps.
* @property path Path at which to mount the volume.
* Paths must be absolute and cannot conflict with other volume paths on the same
* build step or with certain reserved volume paths.
*/
public data class TriggerBuildStepVolumeArgs(
public val name: Output,
public val path: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.cloudbuild.inputs.TriggerBuildStepVolumeArgs =
com.pulumi.gcp.cloudbuild.inputs.TriggerBuildStepVolumeArgs.builder()
.name(name.applyValue({ args0 -> args0 }))
.path(path.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [TriggerBuildStepVolumeArgs].
*/
@PulumiTagMarker
public class TriggerBuildStepVolumeArgsBuilder internal constructor() {
private var name: Output? = null
private var path: Output? = null
/**
* @param value Name of the volume to mount.
* Volume names must be unique per build step and must be valid names for Docker volumes.
* Each named volume must be used by at least two build steps.
*/
@JvmName("ppqulocfplqihvhj")
public suspend fun name(`value`: Output) {
this.name = value
}
/**
* @param value Path at which to mount the volume.
* Paths must be absolute and cannot conflict with other volume paths on the same
* build step or with certain reserved volume paths.
*/
@JvmName("ydrpfqhvaoihklkm")
public suspend fun path(`value`: Output) {
this.path = value
}
/**
* @param value Name of the volume to mount.
* Volume names must be unique per build step and must be valid names for Docker volumes.
* Each named volume must be used by at least two build steps.
*/
@JvmName("ouinuatjkrsskdvp")
public suspend fun name(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.name = mapped
}
/**
* @param value Path at which to mount the volume.
* Paths must be absolute and cannot conflict with other volume paths on the same
* build step or with certain reserved volume paths.
*/
@JvmName("cddglwgccshuwtkr")
public suspend fun path(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.path = mapped
}
internal fun build(): TriggerBuildStepVolumeArgs = TriggerBuildStepVolumeArgs(
name = name ?: throw PulumiNullFieldException("name"),
path = path ?: throw PulumiNullFieldException("path"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy