![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.batch.kotlin.outputs.JobDefinitionTmpfs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.batch.kotlin.outputs
import kotlin.Int
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property containerPath The absolute file path in the container where the `tmpfs` volume is mounted.
* @property mountOptions The list of `tmpfs` volume mount options.
* Valid values: " `defaults` " | " `ro` " | " `rw` " | " `suid` " | " `nosuid` " | " `dev` " | " `nodev` " | " `exec` " | " `noexec` " | " `sync` " | " `async` " | " `dirsync` " | " `remount` " | " `mand` " | " `nomand` " | " `atime` " | " `noatime` " | " `diratime` " | " `nodiratime` " | " `bind` " | " `rbind" | "unbindable" | "runbindable" | "private" | "rprivate" | "shared" | "rshared" | "slave" | "rslave" | "relatime` " | " `norelatime` " | " `strictatime` " | " `nostrictatime` " | " `mode` " | " `uid` " | " `gid` " | " `nr_inodes` " | " `nr_blocks` " | " `mpol` "
* @property size The size (in MiB) of the `tmpfs` volume.
*/
public data class JobDefinitionTmpfs(
public val containerPath: String,
public val mountOptions: List? = null,
public val size: Int,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.batch.outputs.JobDefinitionTmpfs): JobDefinitionTmpfs = JobDefinitionTmpfs(
containerPath = javaType.containerPath(),
mountOptions = javaType.mountOptions().map({ args0 -> args0 }),
size = javaType.size(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy