We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 141d674 + 5a0ea17 commit a9f9838Copy full SHA for a9f9838
src/main/java/com/github/dockerjava/api/command/InspectExecResponse.java
@@ -37,6 +37,9 @@ public class InspectExecResponse {
37
@JsonProperty("ExitCode")
38
private Integer exitCode;
39
40
+ @JsonProperty("Pid")
41
+ private Integer pid;
42
+
43
@JsonProperty("ProcessConfig")
44
private ProcessConfig processConfig;
45
@@ -63,6 +66,10 @@ public String getId() {
63
66
return id;
64
67
}
65
68
69
+ public Integer getPid() {
70
+ return pid;
71
+ }
72
73
public Boolean isOpenStdin() {
74
return openStdin;
75
0 commit comments