Package-level declarations

Types

Link copied to clipboard
data class VolumeAttachment(val apiVersion: String? = null, val kind: String? = null, val metadata: ObjectMeta? = null, val spec: VolumeAttachmentSpec, val status: VolumeAttachmentStatus? = null)

VolumeAttachment captures the intent to attach or detach the specified volume to/from the specified node. VolumeAttachment objects are non-namespaced.

Link copied to clipboard
data class VolumeAttachmentSource(val inlineVolumeSpec: PersistentVolumeSpec? = null, val persistentVolumeName: String? = null)

VolumeAttachmentSource represents a volume that should be attached. Right now only PersistenVolumes can be attached via external attacher, in future we may allow also inline volumes in pods. Exactly one member can be set.

Link copied to clipboard
data class VolumeAttachmentSourcePatch(val inlineVolumeSpec: PersistentVolumeSpecPatch? = null, val persistentVolumeName: String? = null)

VolumeAttachmentSource represents a volume that should be attached. Right now only PersistenVolumes can be attached via external attacher, in future we may allow also inline volumes in pods. Exactly one member can be set.

Link copied to clipboard
data class VolumeAttachmentSpec(val attacher: String, val nodeName: String, val source: VolumeAttachmentSource)

VolumeAttachmentSpec is the specification of a VolumeAttachment request.

Link copied to clipboard
data class VolumeAttachmentSpecPatch(val attacher: String? = null, val nodeName: String? = null, val source: VolumeAttachmentSourcePatch? = null)

VolumeAttachmentSpec is the specification of a VolumeAttachment request.

Link copied to clipboard
data class VolumeAttachmentStatus(val attachError: VolumeError? = null, val attached: Boolean, val attachmentMetadata: Map<String, String>? = null, val detachError: VolumeError? = null)

VolumeAttachmentStatus is the status of a VolumeAttachment request.

Link copied to clipboard
data class VolumeAttachmentStatusPatch(val attachError: VolumeErrorPatch? = null, val attached: Boolean? = null, val attachmentMetadata: Map<String, String>? = null, val detachError: VolumeErrorPatch? = null)

VolumeAttachmentStatus is the status of a VolumeAttachment request.

Link copied to clipboard
data class VolumeAttributesClass(val apiVersion: String? = null, val driverName: String, val kind: String? = null, val metadata: ObjectMeta? = null, val parameters: Map<String, String>? = null)

VolumeAttributesClass represents a specification of mutable volume attributes defined by the CSI driver. The class can be specified during dynamic provisioning of PersistentVolumeClaims, and changed in the PersistentVolumeClaim spec after provisioning.

Link copied to clipboard
data class VolumeError(val message: String? = null, val time: String? = null)

VolumeError captures an error encountered during a volume operation.

Link copied to clipboard
data class VolumeErrorPatch(val message: String? = null, val time: String? = null)

VolumeError captures an error encountered during a volume operation.