public class HostVolumeProperties
extends java.lang.Object
implements java.io.Serializable, java.lang.Cloneable
Details on a container instance host volume.
Modifier and Type | Field and Description |
---|---|
private java.lang.String |
sourcePath
The path on the host container instance that is presented to the
container.
|
Constructor and Description |
---|
HostVolumeProperties() |
Modifier and Type | Method and Description |
---|---|
HostVolumeProperties |
clone() |
boolean |
equals(java.lang.Object obj) |
java.lang.String |
getSourcePath()
The path on the host container instance that is presented to the
container.
|
int |
hashCode() |
void |
setSourcePath(java.lang.String sourcePath)
The path on the host container instance that is presented to the
container.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
HostVolumeProperties |
withSourcePath(java.lang.String sourcePath)
The path on the host container instance that is presented to the
container.
|
private java.lang.String sourcePath
The path on the host container instance that is presented to the
container. If this parameter is empty, then the Docker daemon has
assigned a host path for you. If the host
parameter contains
a sourcePath
file location, then the data volume persists at
the specified location on the host container instance until you delete it
manually. If the sourcePath
value does not exist on the host
container instance, the Docker daemon creates it. If the location does
exist, the contents of the source path folder are exported.
public void setSourcePath(java.lang.String sourcePath)
The path on the host container instance that is presented to the
container. If this parameter is empty, then the Docker daemon has
assigned a host path for you. If the host
parameter contains
a sourcePath
file location, then the data volume persists at
the specified location on the host container instance until you delete it
manually. If the sourcePath
value does not exist on the host
container instance, the Docker daemon creates it. If the location does
exist, the contents of the source path folder are exported.
sourcePath
- The path on the host container instance that is presented to the
container. If this parameter is empty, then the Docker daemon has
assigned a host path for you. If the host
parameter
contains a sourcePath
file location, then the data
volume persists at the specified location on the host container
instance until you delete it manually. If the
sourcePath
value does not exist on the host container
instance, the Docker daemon creates it. If the location does
exist, the contents of the source path folder are exported.public java.lang.String getSourcePath()
The path on the host container instance that is presented to the
container. If this parameter is empty, then the Docker daemon has
assigned a host path for you. If the host
parameter contains
a sourcePath
file location, then the data volume persists at
the specified location on the host container instance until you delete it
manually. If the sourcePath
value does not exist on the host
container instance, the Docker daemon creates it. If the location does
exist, the contents of the source path folder are exported.
host
parameter
contains a sourcePath
file location, then the data
volume persists at the specified location on the host container
instance until you delete it manually. If the
sourcePath
value does not exist on the host
container instance, the Docker daemon creates it. If the location
does exist, the contents of the source path folder are exported.public HostVolumeProperties withSourcePath(java.lang.String sourcePath)
The path on the host container instance that is presented to the
container. If this parameter is empty, then the Docker daemon has
assigned a host path for you. If the host
parameter contains
a sourcePath
file location, then the data volume persists at
the specified location on the host container instance until you delete it
manually. If the sourcePath
value does not exist on the host
container instance, the Docker daemon creates it. If the location does
exist, the contents of the source path folder are exported.
sourcePath
- The path on the host container instance that is presented to the
container. If this parameter is empty, then the Docker daemon has
assigned a host path for you. If the host
parameter
contains a sourcePath
file location, then the data
volume persists at the specified location on the host container
instance until you delete it manually. If the
sourcePath
value does not exist on the host container
instance, the Docker daemon creates it. If the location does
exist, the contents of the source path folder are exported.public java.lang.String toString()
toString
in class java.lang.Object
Object.toString()
public boolean equals(java.lang.Object obj)
equals
in class java.lang.Object
public int hashCode()
hashCode
in class java.lang.Object
public HostVolumeProperties clone()
clone
in class java.lang.Object