Package org.jclouds.docker.options
Class RemoveContainerOptions
- java.lang.Object
-
- org.jclouds.http.options.BaseHttpRequestOptions
-
- org.jclouds.docker.options.RemoveContainerOptions
-
- All Implemented Interfaces:
HttpRequestOptions
public class RemoveContainerOptions extends BaseHttpRequestOptions
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
RemoveContainerOptions.Builder
-
Field Summary
-
Fields inherited from class org.jclouds.http.options.BaseHttpRequestOptions
formParameters, headers, pathSuffix, payload, queryParameters
-
-
Constructor Summary
Constructors Constructor Description RemoveContainerOptions()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description RemoveContainerOptions
force(boolean force)
RemoveContainerOptions
verbose(boolean verbose)
RemoveContainerOptions
volume(boolean volume)
Remove the volumes associated to the container-
Methods inherited from class org.jclouds.http.options.BaseHttpRequestOptions
buildFormParameters, buildPathSuffix, buildQueryParameters, buildRequestHeaders, buildStringPayload, equals, getFirstFormOrNull, getFirstHeaderOrNull, getFirstQueryOrNull, hashCode, replaceHeader, toString
-
-
-
-
Method Detail
-
verbose
public RemoveContainerOptions verbose(boolean verbose)
-
force
public RemoveContainerOptions force(boolean force)
-
volume
public RemoveContainerOptions volume(boolean volume)
Remove the volumes associated to the container- Parameters:
volume
- If set to true the volume associated to the container will be removed. Otherwise it will not be removed.
-
-