![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.machinelearningservices.kotlin.inputs.VolumeOptionsArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-native-kotlin Show documentation
Show all versions of pulumi-azure-native-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.azurenative.machinelearningservices.kotlin.inputs
import com.pulumi.azurenative.machinelearningservices.inputs.VolumeOptionsArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Boolean
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
* Describes the volume options for the container
* @property nocopy Indicate whether volume is nocopy
*/
public data class VolumeOptionsArgs(
public val nocopy: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.machinelearningservices.inputs.VolumeOptionsArgs =
com.pulumi.azurenative.machinelearningservices.inputs.VolumeOptionsArgs.builder()
.nocopy(nocopy?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [VolumeOptionsArgs].
*/
@PulumiTagMarker
public class VolumeOptionsArgsBuilder internal constructor() {
private var nocopy: Output? = null
/**
* @param value Indicate whether volume is nocopy
*/
@JvmName("xdrjqmbtvlteqdqm")
public suspend fun nocopy(`value`: Output) {
this.nocopy = value
}
/**
* @param value Indicate whether volume is nocopy
*/
@JvmName("fagmhfysubvybdej")
public suspend fun nocopy(`value`: Boolean?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.nocopy = mapped
}
internal fun build(): VolumeOptionsArgs = VolumeOptionsArgs(
nocopy = nocopy,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy