All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azure.containerapp.kotlin.inputs.AppTemplateContainerVolumeMountArgs.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 6.15.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azure.containerapp.kotlin.inputs

import com.pulumi.azure.containerapp.inputs.AppTemplateContainerVolumeMountArgs.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 AppTemplateContainerVolumeMountArgs(
    public val name: Output,
    public val path: Output,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.azure.containerapp.inputs.AppTemplateContainerVolumeMountArgs =
        com.pulumi.azure.containerapp.inputs.AppTemplateContainerVolumeMountArgs.builder()
            .name(name.applyValue({ args0 -> args0 }))
            .path(path.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [AppTemplateContainerVolumeMountArgs].
 */
@PulumiTagMarker
public class AppTemplateContainerVolumeMountArgsBuilder 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("jrxjelqgblkhdnxp")
    public suspend fun name(`value`: Output) {
        this.name = value
    }

    /**
     * @param value The path in the container at which to mount this volume.
     */
    @JvmName("hojltkovkarekfgv")
    public suspend fun path(`value`: Output) {
        this.path = value
    }

    /**
     * @param value The name of the Volume to be mounted in the container.
     */
    @JvmName("uddwymrmbhlfaxtu")
    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("uehmtbimsmrxmino")
    public suspend fun path(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.path = mapped
    }

    internal fun build(): AppTemplateContainerVolumeMountArgs = AppTemplateContainerVolumeMountArgs(
        name = name ?: throw PulumiNullFieldException("name"),
        path = path ?: throw PulumiNullFieldException("path"),
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy