Skip to content

Commit af0d1f7

Browse files
smeetsnNele Smeets
andauthored
Options for volume has been added (#1569)
* Options for volume has been added * Correction of indentation. Co-authored-by: Nele Smeets <nele.smeets@vito.be>
1 parent c86a53a commit af0d1f7

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

docker-java-api/src/main/java/com/github/dockerjava/api/command/InspectVolumeResponse.java

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ public class InspectVolumeResponse {
2626
@JsonProperty("Mountpoint")
2727
private String mountpoint;
2828

29+
@JsonProperty("Options")
30+
private Map<String, String> options;
31+
2932
public String getName() {
3033
return name;
3134
}
@@ -41,4 +44,9 @@ public String getDriver() {
4144
public String getMountpoint() {
4245
return mountpoint;
4346
}
47+
48+
public Map<String, String> getOptions() {
49+
return options;
50+
}
51+
4452
}

0 commit comments

Comments
 (0)