Package io.fabric8.kubernetes.api.model
Class VolumeMount
- java.lang.Object
-
- io.fabric8.kubernetes.api.model.VolumeMount
-
- All Implemented Interfaces:
KubernetesResource,Serializable
public class VolumeMount extends Object implements KubernetesResource
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description VolumeMount()No args constructor for use in serializationVolumeMount(String mountPath, String mountPropagation, String name, Boolean readOnly, String subPath, String subPathExpr)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Map<String,Object>getAdditionalProperties()StringgetMountPath()StringgetMountPropagation()StringgetName()BooleangetReadOnly()StringgetSubPath()StringgetSubPathExpr()voidsetAdditionalProperty(String name, Object value)voidsetMountPath(String mountPath)voidsetMountPropagation(String mountPropagation)voidsetName(String name)voidsetReadOnly(Boolean readOnly)voidsetSubPath(String subPath)voidsetSubPathExpr(String subPathExpr)
-
-
-
Method Detail
-
getMountPath
public String getMountPath()
-
setMountPath
public void setMountPath(String mountPath)
-
getMountPropagation
public String getMountPropagation()
-
setMountPropagation
public void setMountPropagation(String mountPropagation)
-
getName
public String getName()
-
setName
public void setName(String name)
-
getReadOnly
public Boolean getReadOnly()
-
setReadOnly
public void setReadOnly(Boolean readOnly)
-
getSubPath
public String getSubPath()
-
setSubPath
public void setSubPath(String subPath)
-
getSubPathExpr
public String getSubPathExpr()
-
setSubPathExpr
public void setSubPathExpr(String subPathExpr)
-
-