Kazan v0.11.0 Kazan.Apis.Storage.V1alpha1.VolumeAttachmentStatus View Source

VolumeAttachmentStatus is the status of a VolumeAttachment request.

OpenAPI Definition: io.k8s.api.storage.v1alpha1.VolumeAttachmentStatus

Properties

  • attach_error :: Kazan.Apis.Storage.V1alpha1.VolumeError

    • The last error encountered during attach operation, if any. This field must only be set by the entity completing the attach operation, i.e. the external-attacher.
  • attached :: Boolean

    • Indicates the volume is successfully attached. This field must only be set by the entity completing the attach operation, i.e. the external-attacher.
  • attachment_metadata :: Map

    • Upon successful attach, this field is populated with any information returned by the attach operation that must be passed into subsequent WaitForAttach or Mount calls. This field must only be set by the entity completing the attach operation, i.e. the external-attacher.
  • detach_error :: Kazan.Apis.Storage.V1alpha1.VolumeError

    • The last error encountered during detach operation, if any. This field must only be set by the entity completing the detach operation, i.e. the external-attacher.

Link to this section Summary

Link to this section Types

Link to this type t() View Source
t() :: %Kazan.Apis.Storage.V1alpha1.VolumeAttachmentStatus{
  attach_error: Kazan.Apis.Storage.V1alpha1.VolumeError.t(),
  attached: boolean(),
  attachment_metadata: map(),
  detach_error: Kazan.Apis.Storage.V1alpha1.VolumeError.t()
}