summaryrefslogtreecommitdiffstats
path: root/tenant-cd-api
diff options
context:
space:
mode:
authorjonmv <venstad@gmail.com>2022-06-11 08:48:02 +0200
committerjonmv <venstad@gmail.com>2022-06-11 08:48:02 +0200
commita2ae7d4cd039aac590003ec06dff5d407c659ad6 (patch)
tree97d22a21673268c637bcdae28295477159cdd050 /tenant-cd-api
parent4d15da6df856a20b1bb9df2242e6b7a0255fe64b (diff)
Rename to previsouly used names
Diffstat (limited to 'tenant-cd-api')
-rw-r--r--tenant-cd-api/src/main/java/ai/vespa/hosted/cd/Deployment.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/tenant-cd-api/src/main/java/ai/vespa/hosted/cd/Deployment.java b/tenant-cd-api/src/main/java/ai/vespa/hosted/cd/Deployment.java
index a04f07d5dae..6111b59178f 100644
--- a/tenant-cd-api/src/main/java/ai/vespa/hosted/cd/Deployment.java
+++ b/tenant-cd-api/src/main/java/ai/vespa/hosted/cd/Deployment.java
@@ -14,10 +14,10 @@ public interface Deployment {
Endpoint endpoint(String id);
/** The Vespa runtime version of the deployment, e.g., 8.16.32. */
- String platformVersion();
+ String platform();
/** The build number assigned to the application revision of the deployment, e.g., 496. */
- long applicationVersion();
+ long revision();
/** The time at which the deployment was last updated with a new platform or application version. */
Instant deployedAt();