Skip to content

Commit f4e48ad

Browse files
Merge branch 'main' into add-cnb
2 parents 8973751 + 0e3d9ab commit f4e48ad

37 files changed

+438
-11
lines changed

cloudfoundry-client-reactor/src/test/java/org/cloudfoundry/reactor/client/v3/organizations/ReactorOrganizationsV3Test.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -401,6 +401,12 @@ void getUsageSummary() {
401401
UsageSummary.builder()
402402
.startedInstances(3)
403403
.memoryInMb(50)
404+
.routes(0)
405+
.serviceInstances(0)
406+
.reservedPorts(0)
407+
.perAppTasks(2)
408+
.domains(2)
409+
.serviceKeys(0)
404410
.build())
405411
.link(
406412
"self",

cloudfoundry-client-reactor/src/test/java/org/cloudfoundry/reactor/uaa/authorizations/ReactorAuthorizationsTest.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -367,6 +367,7 @@ void getOpenIdProviderConfigurationRequest() {
367367
.supportedUiLocale(Locale.US)
368368
.tokenEndpoint("http://localhost/oauth/token")
369369
.userInfoEndpoint("http://localhost/userinfo")
370+
.endSessionEndpoint("http://localhost/logout.do")
370371
.build())
371372
.expectComplete()
372373
.verify(Duration.ofSeconds(5));

cloudfoundry-client-reactor/src/test/resources/fixtures/client/v3/organizations/GET_{id}_usage_summary_response.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
{
22
"usage_summary": {
33
"started_instances": 3,
4-
"memory_in_mb": 50
4+
"memory_in_mb": 50,
5+
"routes": 0,
6+
"service_instances": 0,
7+
"reserved_ports": 0,
8+
"per_app_tasks": 2,
9+
"domains": 2,
10+
"service_keys": 0
511
},
612
"links": {
713
"self": {

cloudfoundry-client-reactor/src/test/resources/fixtures/uaa/authorizations/GET_response.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@
6666
],
6767
"claims_parameter_supported": false,
6868
"service_documentation": "http://docs.cloudfoundry.org/api/uaa/",
69+
"end_session_endpoint": "http://localhost/logout.do",
6970
"ui_locales_supported": [
7071
"en-US"
7172
]

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ public interface CloudFoundryClient {
8181
/**
8282
* The currently supported Cloud Controller API version
8383
*/
84-
String SUPPORTED_API_VERSION = "2.186.0";
84+
String SUPPORTED_API_VERSION = "2.233.0";
8585

8686
/**
8787
* Main entry point to the Cloud Foundry Application Usage Events Client API

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

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,4 +121,11 @@ abstract class _ApplicationEntity extends AbstractApplicationEntity {
121121
@Nullable
122122
abstract String getVersion();
123123

124+
/**
125+
* The log rate limit
126+
*/
127+
@JsonProperty("log_rate_limit")
128+
@Nullable
129+
abstract Integer getLogRateLimit();
130+
124131
}

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

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,4 +84,11 @@ abstract class _ApplicationInstanceInfo {
8484
@Nullable
8585
abstract Long getUptime();
8686

87+
/**
88+
* Routable
89+
*/
90+
@JsonProperty("routable")
91+
@Nullable
92+
abstract String getRoutable();
93+
8794
}

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

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,4 +46,11 @@ abstract class _InstanceStatistics {
4646
@Nullable
4747
abstract Statistics getStatistics();
4848

49+
/**
50+
* Routable
51+
*/
52+
@JsonProperty("routable")
53+
@Nullable
54+
abstract String getRoutable();
55+
4956
}

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

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,4 +79,11 @@ abstract class _RestageApplicationEntity extends AbstractApplicationEntity {
7979
@Nullable
8080
abstract String getVersion();
8181

82+
/**
83+
* The log rate limit
84+
*/
85+
@JsonProperty("log_rate_limit")
86+
@Nullable
87+
abstract Integer getLogRateLimit();
88+
8289
}

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
@@ -97,4 +97,11 @@ abstract class _Statistics {
9797
@Nullable
9898
abstract Usage getUsage();
9999

100+
/**
101+
* The log rate limit
102+
*/
103+
@JsonProperty("log_rate_limit")
104+
@Nullable
105+
abstract Integer getLogRateLimit();
106+
100107
}

0 commit comments

Comments
 (0)