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() {
97
97
public static class ContainerNetworkConfig extends DockerObject implements Serializable {
98
98
private static final long serialVersionUID = 1L ;
99
99
100
+ /**
101
+ * @since {@link RemoteApiVersion#VERSION_1_22}
102
+ */
103
+ @ JsonProperty ("Name" )
104
+ private String name ;
105
+
100
106
@ JsonProperty ("EndpointID" )
101
107
private String endpointId ;
102
108
@@ -109,6 +115,10 @@ public static class ContainerNetworkConfig extends DockerObject implements Seria
109
115
@ JsonProperty ("IPv6Address" )
110
116
private String ipv6Address ;
111
117
118
+ public String getName () {
119
+ return name ;
120
+ }
121
+
112
122
public String getEndpointId () {
113
123
return endpointId ;
114
124
}
You can’t perform that action at this time.
0 commit comments