summaryrefslogtreecommitdiffstats
path: root/tenant-cd-api/src/main/java/ai/vespa/hosted/cd/Deployment.java
diff options
context:
space:
mode:
Diffstat (limited to 'tenant-cd-api/src/main/java/ai/vespa/hosted/cd/Deployment.java')
-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();