VolumeErrorPatch

data class VolumeErrorPatch(val errorCode: Int? = null, val message: String? = null, val time: String? = null)

VolumeError captures an error encountered during a volume operation.

Constructors

Link copied to clipboard
constructor(errorCode: Int? = null, message: String? = null, time: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val errorCode: Int? = null

errorCode is a numeric gRPC code representing the error encountered during Attach or Detach operations. This is an optional, alpha field that requires the MutableCSINodeAllocatableCount feature gate being enabled to be set.

Link copied to clipboard
val message: String? = null

message represents the error encountered during Attach or Detach operation. This string may be logged, so it should not contain sensitive information.

Link copied to clipboard
val time: String? = null

time represents the time the error was encountered.