Skip to content

Commit 2e8e80a

Browse files
authored
Update Task and Process resources to match CAPI v3.204.0 (#1311)
1 parent df9ece3 commit 2e8e80a

File tree

3 files changed

+15
-1
lines changed

3 files changed

+15
-1
lines changed

cloudfoundry-client/src/main/java/org/cloudfoundry/client/CloudFoundryClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

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

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff 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
}

cloudfoundry-client/src/main/java/org/cloudfoundry/client/v3/tasks/Task.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)