File tree Expand file tree Collapse file tree 3 files changed +15
-1
lines changed
cloudfoundry-client/src/main/java/org/cloudfoundry/client Expand file tree Collapse file tree 3 files changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ public interface CloudFoundryClient {
8282 /**
8383 * The currently supported Cloud Controller API version
8484 */
85- String SUPPORTED_API_VERSION = "2.259 .0" ;
85+ String SUPPORTED_API_VERSION = "2.269 .0" ;
8686
8787 /**
8888 * Main entry point to the Cloud Foundry Application Usage Events Client API
Original file line number Diff line number Diff line change @@ -94,4 +94,11 @@ public abstract class Process extends Resource {
9494 @ JsonProperty ("log_rate_limit_in_bytes_per_second" )
9595 @ Nullable
9696 public abstract Integer getLogRateLimitInBytesPerSecond ();
97+
98+ /**
99+ * The user
100+ */
101+ @ JsonProperty ("user" )
102+ @ Nullable
103+ public abstract String getUser ();
97104}
Original file line number Diff line number Diff line change @@ -96,4 +96,11 @@ public abstract class Task extends Resource {
9696 @ JsonProperty ("log_rate_limit_in_bytes_per_second" )
9797 @ Nullable
9898 public abstract Integer getLogRateLimitInBytesPerSecond ();
99+
100+ /**
101+ * The user
102+ */
103+ @ JsonProperty ("user" )
104+ @ Nullable
105+ public abstract String getUser ();
99106}
You can’t perform that action at this time.
0 commit comments