We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Name
ContainerNetworkConfig
1 parent 0867f5b commit db508d8Copy full SHA for db508d8
1 file changed
docker-java-api/src/main/java/com/github/dockerjava/api/model/Network.java
@@ -97,6 +97,12 @@ public Map<String, String> getLabels() {
97
public static class ContainerNetworkConfig extends DockerObject implements Serializable {
98
private static final long serialVersionUID = 1L;
99
100
+ /**
101
+ * @since {@link RemoteApiVersion#VERSION_1_22}
102
+ */
103
+ @JsonProperty("Name")
104
+ private String name;
105
+
106
@JsonProperty("EndpointID")
107
private String endpointId;
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
}
0 commit comments