Skip to content

Commit 5a0ea17

Browse files
INFRA Add getPid to InspectExecCmd
1 parent 943cc6f commit 5a0ea17

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/main/java/com/github/dockerjava/api/command/InspectExecResponse.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,9 @@ public class InspectExecResponse {
3737
@JsonProperty("ExitCode")
3838
private Integer exitCode;
3939

40+
@JsonProperty("Pid")
41+
private Integer pid;
42+
4043
@JsonProperty("ProcessConfig")
4144
private ProcessConfig processConfig;
4245

@@ -63,6 +66,10 @@ public String getId() {
6366
return id;
6467
}
6568

69+
public Integer getPid() {
70+
return pid;
71+
}
72+
6673
public Boolean isOpenStdin() {
6774
return openStdin;
6875
}

0 commit comments

Comments
 (0)