Skip to content

Commit a8b834a

Browse files
committed
Add instance_guid to Application.statistics and Processes.statistics
1 parent 3b475f9 commit a8b834a

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/applications/_Statistics.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,4 +104,11 @@ abstract class _Statistics {
104104
@Nullable
105105
abstract Integer getLogRateLimit();
106106

107+
/**
108+
* The instance guid
109+
*/
110+
@JsonProperty("instance_guid")
111+
@Nullable
112+
abstract String getInstanceGuid();
113+
107114
}

cloudfoundry-client/src/main/java/org/cloudfoundry/client/v3/processes/ProcessStatistics.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,4 +126,11 @@ public abstract class ProcessStatistics {
126126
@JsonProperty("log_rate_limit")
127127
@Nullable
128128
abstract Integer getLogRateLimit();
129+
130+
/**
131+
* The instance guid
132+
*/
133+
@JsonProperty("instance_guid")
134+
@Nullable
135+
abstract String getInstanceGuid();
129136
}

0 commit comments

Comments
 (0)