We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 708f4f4 commit e14732aCopy full SHA for e14732a
1 file changed
docker-java-api/src/main/java/com/github/dockerjava/api/model/EventType.java
@@ -11,6 +11,7 @@
11
* @since 1.24
12
*/
13
public enum EventType {
14
+ CONFIG("config"),
15
/**
16
17
@@ -26,7 +27,10 @@ public enum EventType {
26
27
28
IMAGE("image"),
29
NETWORK("network"),
30
+ NODE("node"),
31
PLUGIN("plugin"),
32
+ SECRET("secret"),
33
+ SERVICE("service"),
34
VOLUME("volume");
35
36
private static final Map<String, EventType> EVENT_TYPES = new HashMap<>();
0 commit comments