Class VolumeAttachmentStatus
- java.lang.Object
-
- io.fabric8.kubernetes.api.model.storage.VolumeAttachmentStatus
-
- All Implemented Interfaces:
io.fabric8.kubernetes.api.builder.Editable<VolumeAttachmentStatusBuilder>,io.fabric8.kubernetes.api.model.KubernetesResource,Serializable
@Generated("io.fabric8.kubernetes.schema.generator.model.ModelGenerator") public class VolumeAttachmentStatus extends Object implements io.fabric8.kubernetes.api.builder.Editable<VolumeAttachmentStatusBuilder>, io.fabric8.kubernetes.api.model.KubernetesResource
VolumeAttachmentStatus is the status of a VolumeAttachment request.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description VolumeAttachmentStatus()No args constructor for use in serializationVolumeAttachmentStatus(VolumeError attachError, Boolean attached, Map<String,String> attachmentMetadata, VolumeError detachError)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description VolumeAttachmentStatusBuilderedit()Map<String,Object>getAdditionalProperties()BooleangetAttached()attached indicates the volume is successfully attached.VolumeErrorgetAttachError()VolumeAttachmentStatus is the status of a VolumeAttachment request.Map<String,String>getAttachmentMetadata()attachmentMetadata is populated with any information returned by the attach operation, upon successful attach, that must be passed into subsequent WaitForAttach or Mount calls.VolumeErrorgetDetachError()VolumeAttachmentStatus is the status of a VolumeAttachment request.voidsetAdditionalProperties(Map<String,Object> additionalProperties)voidsetAdditionalProperty(String name, Object value)voidsetAttached(Boolean attached)attached indicates the volume is successfully attached.voidsetAttachError(VolumeError attachError)VolumeAttachmentStatus is the status of a VolumeAttachment request.voidsetAttachmentMetadata(Map<String,String> attachmentMetadata)attachmentMetadata is populated with any information returned by the attach operation, upon successful attach, that must be passed into subsequent WaitForAttach or Mount calls.voidsetDetachError(VolumeError detachError)VolumeAttachmentStatus is the status of a VolumeAttachment request.VolumeAttachmentStatusBuildertoBuilder()
-
-
-
Constructor Detail
-
VolumeAttachmentStatus
public VolumeAttachmentStatus()
No args constructor for use in serialization
-
VolumeAttachmentStatus
public VolumeAttachmentStatus(VolumeError attachError, Boolean attached, Map<String,String> attachmentMetadata, VolumeError detachError)
-
-
Method Detail
-
getAttachError
public VolumeError getAttachError()
VolumeAttachmentStatus is the status of a VolumeAttachment request.
-
setAttachError
public void setAttachError(VolumeError attachError)
VolumeAttachmentStatus is the status of a VolumeAttachment request.
-
getAttached
public Boolean getAttached()
attached indicates the volume is successfully attached. This field must only be set by the entity completing the attach operation, i.e. the external-attacher.
-
setAttached
public void setAttached(Boolean attached)
attached indicates the volume is successfully attached. This field must only be set by the entity completing the attach operation, i.e. the external-attacher.
-
getAttachmentMetadata
public Map<String,String> getAttachmentMetadata()
attachmentMetadata is populated with any information returned by the attach operation, upon successful attach, 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.
-
setAttachmentMetadata
public void setAttachmentMetadata(Map<String,String> attachmentMetadata)
attachmentMetadata is populated with any information returned by the attach operation, upon successful attach, 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.
-
getDetachError
public VolumeError getDetachError()
VolumeAttachmentStatus is the status of a VolumeAttachment request.
-
setDetachError
public void setDetachError(VolumeError detachError)
VolumeAttachmentStatus is the status of a VolumeAttachment request.
-
edit
public VolumeAttachmentStatusBuilder edit()
- Specified by:
editin interfaceio.fabric8.kubernetes.api.builder.Editable<VolumeAttachmentStatusBuilder>
-
toBuilder
public VolumeAttachmentStatusBuilder toBuilder()
-
-