Skip to content

Commit 5ff0449

Browse files
author
David O'Sullivan
committed
adds missing v3 fields & supported version
1 parent 0e3d9ab commit 5ff0449

File tree

4 files changed

+21
-1
lines changed

4 files changed

+21
-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
@@ -81,7 +81,7 @@ public interface CloudFoundryClient {
8181
/**
8282
* The currently supported Cloud Controller API version
8383
*/
84-
String SUPPORTED_API_VERSION = "2.233.0";
84+
String SUPPORTED_API_VERSION = "2.243.0";
8585

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

cloudfoundry-client/src/main/java/org/cloudfoundry/client/v3/applications/_ApplicationRelationships.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,10 @@ abstract class _ApplicationRelationships {
3434
@JsonProperty("space")
3535
abstract ToOneRelationship getSpace();
3636

37+
/**
38+
* The current droplet relationship
39+
*/
40+
@JsonProperty("current_droplet")
41+
abstract ToOneRelationship getCurrentDroplet();
42+
3743
}

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

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

49+
/**
50+
* The interval in seconds between health check requests
51+
*/
52+
@JsonProperty("interval")
53+
@Nullable
54+
abstract Integer getInterval();
55+
4956
}

cloudfoundry-client/src/main/java/org/cloudfoundry/uaa/identityzones/_UserConfig.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,5 +60,12 @@ abstract class _UserConfig {
6060
@Nullable
6161
abstract Boolean getcheckOriginEnabled();
6262

63+
/**
64+
* Flag for switching off the loop over all origins in a zone (defaults to true)
65+
*/
66+
@JsonProperty("allowOriginLoop")
67+
@Nullable
68+
abstract Boolean getAllowOriginLoop();
69+
6370

6471
}

0 commit comments

Comments
 (0)