![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.nomad.kotlin.outputs.JobTaskGroupTaskVolumeMount.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-nomad-kotlin Show documentation
Show all versions of pulumi-nomad-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.nomad.kotlin.outputs
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
/**
*
* @property destination
* @property readOnly
* @property volume
*/
public data class JobTaskGroupTaskVolumeMount(
public val destination: String? = null,
public val readOnly: Boolean? = null,
public val volume: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.nomad.outputs.JobTaskGroupTaskVolumeMount): JobTaskGroupTaskVolumeMount = JobTaskGroupTaskVolumeMount(
destination = javaType.destination().map({ args0 -> args0 }).orElse(null),
readOnly = javaType.readOnly().map({ args0 -> args0 }).orElse(null),
volume = javaType.volume().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy