File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed
docker-java-api/src/main/java/com/github/dockerjava/api/model Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -97,6 +97,12 @@ public Map<String, String> getLabels() {
9797 public static class ContainerNetworkConfig extends DockerObject implements Serializable {
9898 private static final long serialVersionUID = 1L ;
9999
100+ /**
101+ * @since {@link RemoteApiVersion#VERSION_1_22}
102+ */
103+ @ JsonProperty ("Name" )
104+ private String name ;
105+
100106 @ JsonProperty ("EndpointID" )
101107 private String endpointId ;
102108
@@ -109,6 +115,10 @@ public static class ContainerNetworkConfig extends DockerObject implements Seria
109115 @ JsonProperty ("IPv6Address" )
110116 private String ipv6Address ;
111117
118+ public String getName () {
119+ return name ;
120+ }
121+
112122 public String getEndpointId () {
113123 return endpointId ;
114124 }
You can’t perform that action at this time.
0 commit comments