![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.containerapp.kotlin.inputs.AppTemplateInitContainerVolumeMountArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-kotlin Show documentation
Show all versions of pulumi-azure-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.azure.containerapp.kotlin.inputs
import com.pulumi.azure.containerapp.inputs.AppTemplateInitContainerVolumeMountArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
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 The name of the Volume to be mounted in the container.
* @property path The path in the container at which to mount this volume.
*/
public data class AppTemplateInitContainerVolumeMountArgs(
public val name: Output,
public val path: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azure.containerapp.inputs.AppTemplateInitContainerVolumeMountArgs =
com.pulumi.azure.containerapp.inputs.AppTemplateInitContainerVolumeMountArgs.builder()
.name(name.applyValue({ args0 -> args0 }))
.path(path.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [AppTemplateInitContainerVolumeMountArgs].
*/
@PulumiTagMarker
public class AppTemplateInitContainerVolumeMountArgsBuilder internal constructor() {
private var name: Output? = null
private var path: Output? = null
/**
* @param value The name of the Volume to be mounted in the container.
*/
@JvmName("dmmtiwcolnslxysq")
public suspend fun name(`value`: Output) {
this.name = value
}
/**
* @param value The path in the container at which to mount this volume.
*/
@JvmName("rewformyyrdghdfs")
public suspend fun path(`value`: Output) {
this.path = value
}
/**
* @param value The name of the Volume to be mounted in the container.
*/
@JvmName("yhcqelmssundelcw")
public suspend fun name(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.name = mapped
}
/**
* @param value The path in the container at which to mount this volume.
*/
@JvmName("yppdxuljwkubuuyi")
public suspend fun path(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.path = mapped
}
internal fun build(): AppTemplateInitContainerVolumeMountArgs =
AppTemplateInitContainerVolumeMountArgs(
name = name ?: throw PulumiNullFieldException("name"),
path = path ?: throw PulumiNullFieldException("path"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy