PersistentVolumeStatusArgs

data class PersistentVolumeStatusArgs(val message: Output<String>? = null, val phase: Output<String>? = null, val reason: Output<String>? = null) : ConvertibleToJava<PersistentVolumeStatusArgs>

PersistentVolumeStatus is the current status of a persistent volume.

Constructors

Link copied to clipboard
constructor(message: Output<String>? = null, phase: Output<String>? = null, reason: Output<String>? = null)

Properties

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

message is a human-readable message indicating details about why the volume is in this state.

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

phase indicates if a volume is available, bound to a claim, or released by a claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#phase

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

reason is a brief CamelCase string that describes any failure and is meant for machine parsing and tidy display in the CLI.

Functions

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