VolumeErrorArgs

data class VolumeErrorArgs(val errorCode: Output<Int>? = null, val message: Output<String>? = null, val time: Output<String>? = null) : ConvertibleToJava<VolumeErrorArgs>

VolumeError captures an error encountered during a volume operation.

Constructors

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

Properties

Link copied to clipboard
val errorCode: Output<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: Output<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: Output<String>? = null

time represents the time the error was encountered.

Functions

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