We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Info
1 parent c60bcb2 commit 4387250Copy full SHA for 4387250
docker-java-api/src/main/java/com/github/dockerjava/api/model/Info.java
@@ -232,6 +232,9 @@ public class Info implements Serializable {
232
@JsonProperty("Isolation")
233
private String isolation;
234
235
+ @JsonProperty("SecurityOptions")
236
+ private List<String> securityOptions;
237
+
238
/**
239
* @see #architecture
240
*/
@@ -1063,4 +1066,8 @@ public Info withIsolation(String isolation) {
1063
1066
this.isolation = isolation;
1064
1067
return this;
1065
1068
}
1069
1070
+ public List<String> getSecurityOptions() {
1071
+ return securityOptions;
1072
+ }
1073
0 commit comments