Skip to content

Commit d6098d0

Browse files
committed
Update Route > Destination to match CAPI v3.207.0
1 parent 2e8e80a commit d6098d0

File tree

2 files changed

+15
-1
lines changed

2 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.269.0";
85+
String SUPPORTED_API_VERSION = "2.272.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/routes/_Destination.java

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,4 +62,18 @@ abstract class _Destination {
6262
@Nullable
6363
abstract String getProtocol();
6464

65+
/**
66+
* When the entity was created
67+
*/
68+
@JsonProperty("created_at")
69+
@Nullable
70+
abstract String getCreatedAt();
71+
72+
/**
73+
* When the entity was updated
74+
*/
75+
@JsonProperty("updated_at")
76+
@Nullable
77+
abstract String getUpdatedAt();
78+
6579
}

0 commit comments

Comments
 (0)