Package-level declarations

Types

Link copied to clipboard
data class VolumeAttachmentArgs(val apiVersion: Output<String>? = null, val kind: Output<String>? = null, val metadata: Output<ObjectMetaArgs>? = null, val spec: Output<VolumeAttachmentSpecArgs>, val status: Output<VolumeAttachmentStatusArgs>? = null) : ConvertibleToJava<VolumeAttachmentArgs>

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 VolumeAttachmentSourceArgs(val inlineVolumeSpec: Output<PersistentVolumeSpecArgs>? = null, val persistentVolumeName: Output<String>? = null) : ConvertibleToJava<VolumeAttachmentSourceArgs>

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 VolumeAttachmentSourcePatchArgs(val inlineVolumeSpec: Output<PersistentVolumeSpecPatchArgs>? = null, val persistentVolumeName: Output<String>? = null) : ConvertibleToJava<VolumeAttachmentSourcePatchArgs>

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 VolumeAttachmentSpecArgs(val attacher: Output<String>, val nodeName: Output<String>, val source: Output<VolumeAttachmentSourceArgs>) : ConvertibleToJava<VolumeAttachmentSpecArgs>

VolumeAttachmentSpec is the specification of a VolumeAttachment request.

Link copied to clipboard
data class VolumeAttachmentSpecPatchArgs(val attacher: Output<String>? = null, val nodeName: Output<String>? = null, val source: Output<VolumeAttachmentSourcePatchArgs>? = null) : ConvertibleToJava<VolumeAttachmentSpecPatchArgs>

VolumeAttachmentSpec is the specification of a VolumeAttachment request.

Link copied to clipboard
data class VolumeAttachmentStatusArgs(val attachError: Output<VolumeErrorArgs>? = null, val attached: Output<Boolean>, val attachmentMetadata: Output<Map<String, String>>? = null, val detachError: Output<VolumeErrorArgs>? = null) : ConvertibleToJava<VolumeAttachmentStatusArgs>

VolumeAttachmentStatus is the status of a VolumeAttachment request.

Link copied to clipboard
data class VolumeAttributesClassArgs(val apiVersion: Output<String>? = null, val driverName: Output<String>, val kind: Output<String>? = null, val metadata: Output<ObjectMetaArgs>? = null, val parameters: Output<Map<String, String>>? = null) : ConvertibleToJava<VolumeAttributesClassArgs>

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 VolumeErrorArgs(val message: Output<String>? = null, val time: Output<String>? = null) : ConvertibleToJava<VolumeErrorArgs>

VolumeError captures an error encountered during a volume operation.

Link copied to clipboard