VolumeMountStatusArgs

data class VolumeMountStatusArgs(val mountPath: Output<String>, val name: Output<String>, val readOnly: Output<Boolean>? = null, val recursiveReadOnly: Output<String>? = null) : ConvertibleToJava<VolumeMountStatusArgs>

VolumeMountStatus shows status of volume mounts.

Constructors

Link copied to clipboard
constructor(mountPath: Output<String>, name: Output<String>, readOnly: Output<Boolean>? = null, recursiveReadOnly: Output<String>? = null)

Properties

Link copied to clipboard
val mountPath: Output<String>

MountPath corresponds to the original VolumeMount.

Link copied to clipboard
val name: Output<String>

Name corresponds to the name of the original VolumeMount.

Link copied to clipboard
val readOnly: Output<Boolean>? = null

ReadOnly corresponds to the original VolumeMount.

Link copied to clipboard
val recursiveReadOnly: Output<String>? = null

RecursiveReadOnly must be set to Disabled, Enabled, or unspecified (for non-readonly mounts). An IfPossible value in the original VolumeMount must be translated to Disabled or Enabled, depending on the mount result.

Functions

Link copied to clipboard
open override fun toJava(): VolumeMountStatusArgs