We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c86a53a commit af0d1f7Copy full SHA for af0d1f7
docker-java-api/src/main/java/com/github/dockerjava/api/command/InspectVolumeResponse.java
@@ -26,6 +26,9 @@ public class InspectVolumeResponse {
26
@JsonProperty("Mountpoint")
27
private String mountpoint;
28
29
+ @JsonProperty("Options")
30
+ private Map<String, String> options;
31
+
32
public String getName() {
33
return name;
34
}
@@ -41,4 +44,9 @@ public String getDriver() {
41
44
public String getMountpoint() {
42
45
return mountpoint;
43
46
47
48
+ public Map<String, String> getOptions() {
49
+ return options;
50
+ }
51
52
0 commit comments