We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee1b8cf commit f85b59dCopy full SHA for f85b59d
src/main/java/com/github/dockerjava/api/model/Statistics.java
@@ -30,7 +30,7 @@ public class Statistics {
30
*/
31
@Deprecated
32
@JsonProperty("network")
33
- private Map<String, Object> networkStats;
+ private Map<String, Object> network;
34
35
@JsonProperty("memory_stats")
36
private Map<String, Object> memoryStats;
@@ -53,8 +53,8 @@ public Map<String, Object> getNetworks() {
53
* @deprecated as of Docker Remote API 1.21, replaced by {@link #getNetworks()}
54
55
56
- public Map<String, Object> getNetworkStats() {
57
- return networkStats;
+ public Map<String, Object> getNetwork() {
+ return network;
58
}
59
60
public Map<String, Object> getCpuStats() {
0 commit comments