Package io.fabric8.kubernetes.api.model
Class VolumeMountStatus
- java.lang.Object
-
- io.fabric8.kubernetes.api.model.VolumeMountStatus
-
- All Implemented Interfaces:
io.fabric8.kubernetes.api.builder.Editable<VolumeMountStatusBuilder>,KubernetesResource,Serializable
@Generated("io.fabric8.kubernetes.schema.generator.model.ModelGenerator") public class VolumeMountStatus extends Object implements io.fabric8.kubernetes.api.builder.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)
-
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).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).VolumeMountStatusBuildertoBuilder()
-
-
-
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.
-
edit
public VolumeMountStatusBuilder edit()
- Specified by:
editin interfaceio.fabric8.kubernetes.api.builder.Editable<VolumeMountStatusBuilder>
-
toBuilder
public VolumeMountStatusBuilder toBuilder()
-
-