Package io.fabric8.kubernetes.api.model
Class VolumeMountStatus
- java.lang.Object
-
- io.fabric8.kubernetes.api.model.VolumeMountStatus
-
- All Implemented Interfaces:
Editable<VolumeMountStatusBuilder>,KubernetesResource,Serializable
@Generated("io.fabric8.kubernetes.schema.generator.model.ModelGenerator") public class VolumeMountStatus extends Object implements Editable<VolumeMountStatusBuilder>, KubernetesResource
VolumeMountStatus shows status of volume mounts.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description VolumeMountStatus()No args constructor for use in serializationVolumeMountStatus(String mountPath, String name, Boolean readOnly, String recursiveReadOnly, VolumeStatus volumeStatus)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description VolumeMountStatusBuilderedit()Map<String,Object>getAdditionalProperties()StringgetMountPath()MountPath corresponds to the original VolumeMount.StringgetName()Name corresponds to the name of the original VolumeMount.BooleangetReadOnly()ReadOnly corresponds to the original VolumeMount.StringgetRecursiveReadOnly()RecursiveReadOnly must be set to Disabled, Enabled, or unspecified (for non-readonly mounts).VolumeStatusgetVolumeStatus()VolumeMountStatus shows status of volume mounts.voidsetAdditionalProperties(Map<String,Object> additionalProperties)voidsetAdditionalProperty(String name, Object value)voidsetMountPath(String mountPath)MountPath corresponds to the original VolumeMount.voidsetName(String name)Name corresponds to the name of the original VolumeMount.voidsetReadOnly(Boolean readOnly)ReadOnly corresponds to the original VolumeMount.voidsetRecursiveReadOnly(String recursiveReadOnly)RecursiveReadOnly must be set to Disabled, Enabled, or unspecified (for non-readonly mounts).voidsetVolumeStatus(VolumeStatus volumeStatus)VolumeMountStatus shows status of volume mounts.VolumeMountStatusBuildertoBuilder()
-
-
-
Constructor Detail
-
VolumeMountStatus
public VolumeMountStatus()
No args constructor for use in serialization
-
VolumeMountStatus
public VolumeMountStatus(String mountPath, String name, Boolean readOnly, String recursiveReadOnly, VolumeStatus volumeStatus)
-
-
Method Detail
-
getMountPath
public String getMountPath()
MountPath corresponds to the original VolumeMount.
-
setMountPath
public void setMountPath(String mountPath)
MountPath corresponds to the original VolumeMount.
-
getName
public String getName()
Name corresponds to the name of the original VolumeMount.
-
setName
public void setName(String name)
Name corresponds to the name of the original VolumeMount.
-
getReadOnly
public Boolean getReadOnly()
ReadOnly corresponds to the original VolumeMount.
-
setReadOnly
public void setReadOnly(Boolean readOnly)
ReadOnly corresponds to the original VolumeMount.
-
getRecursiveReadOnly
public String getRecursiveReadOnly()
RecursiveReadOnly must be set to Disabled, Enabled, or unspecified (for non-readonly mounts). An IfPossible value in the original VolumeMount must be translated to Disabled or Enabled, depending on the mount result.
-
setRecursiveReadOnly
public void setRecursiveReadOnly(String recursiveReadOnly)
RecursiveReadOnly must be set to Disabled, Enabled, or unspecified (for non-readonly mounts). An IfPossible value in the original VolumeMount must be translated to Disabled or Enabled, depending on the mount result.
-
getVolumeStatus
public VolumeStatus getVolumeStatus()
VolumeMountStatus shows status of volume mounts.
-
setVolumeStatus
public void setVolumeStatus(VolumeStatus volumeStatus)
VolumeMountStatus shows status of volume mounts.
-
edit
public VolumeMountStatusBuilder edit()
- Specified by:
editin interfaceEditable<VolumeMountStatusBuilder>
-
toBuilder
public VolumeMountStatusBuilder toBuilder()
-
-