MountTmpfsOptions

@Serializable
data class MountTmpfsOptions(val sizeBytes: Long? = null, val mode: Int? = null, val options: List<List<String>>? = null)

Optional configuration for the tmpfs type.

Parameters

sizeBytes

The size for the tmpfs mount in bytes.

mode

The permission mode for the tmpfs mount in an integer.

options

The options to be passed to the tmpfs mount. An array of arrays. Flag options should be provided as 1-length arrays. Other types should be provided as as 2-length arrays, where the first item is the key and the second the value.

Constructors

Link copied to clipboard
constructor(sizeBytes: Long? = null, mode: Int? = null, options: List<List<String>>? = null)

Properties

Link copied to clipboard
@SerialName(value = "Mode")
val mode: Int?
Link copied to clipboard
@SerialName(value = "Options")
val options: List<List<String>>?
Link copied to clipboard
@SerialName(value = "SizeBytes")
val sizeBytes: Long?