MountVolumeOptions

@Serializable
data class MountVolumeOptions(val noCopy: Boolean? = false, val labels: Map<String, String>? = null, val driverConfig: MountVolumeOptionsDriverConfig? = null, val subpath: String? = null)

Optional configuration for the volume type.

Parameters

noCopy

Populate volume with data from the target.

labels

User-defined key/value metadata.

driverConfig
subpath

Source path inside the volume. Must be relative without any back traversals.

Constructors

Link copied to clipboard
constructor(noCopy: Boolean? = false, labels: Map<String, String>? = null, driverConfig: MountVolumeOptionsDriverConfig? = null, subpath: String? = null)

Properties

Link copied to clipboard
@SerialName(value = "DriverConfig")
val driverConfig: MountVolumeOptionsDriverConfig?
Link copied to clipboard
@SerialName(value = "Labels")
val labels: Map<String, String>?
Link copied to clipboard
@SerialName(value = "NoCopy")
val noCopy: Boolean?
Link copied to clipboard
@SerialName(value = "Subpath")
val subpath: String?