We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6f497c9 + fa6d7e7 commit 60d7800Copy full SHA for 60d7800
src/main/java/com/github/dockerjava/api/command/InspectExecResponse.java
@@ -59,6 +59,12 @@ public class InspectExecResponse {
59
@JsonProperty("DetachKeys")
60
private String detachKeys;
61
62
+ /**
63
+ * @since {@link RemoteApiVersion#VERSION_1_25}
64
+ */
65
+ @JsonProperty("Pid")
66
+ private Integer pid;
67
+
68
public String getId() {
69
return id;
70
}
@@ -119,6 +125,14 @@ public String getDetachKeys() {
119
125
return detachKeys;
120
126
121
127
128
129
+ * @see #pid
130
131
+ @CheckForNull
132
+ public Integer getPid() {
133
+ return pid;
134
+ }
135
122
136
@Override
123
137
public String toString() {
124
138
return ToStringBuilder.reflectionToString(this);
0 commit comments