aboutsummaryrefslogtreecommitdiffstats
path: root/hosted-zone-api
diff options
context:
space:
mode:
authorMartin Polden <mpolden@mpolden.no>2022-06-29 10:37:50 +0200
committerMartin Polden <mpolden@mpolden.no>2022-06-29 10:37:50 +0200
commitcb15bea3e708cf8feec65840cdeb0d825f3f5245 (patch)
treee74b8a7c6e238c6e811ea789c9d63fb6981c16e3 /hosted-zone-api
parent59b5da29c4c1bce5a3bc06e28bacb861d4d620b4 (diff)
Update javadoc
Diffstat (limited to 'hosted-zone-api')
-rw-r--r--hosted-zone-api/src/main/java/ai/vespa/cloud/Cloud.java4
-rw-r--r--hosted-zone-api/src/main/java/ai/vespa/cloud/SystemInfo.java2
2 files changed, 4 insertions, 2 deletions
diff --git a/hosted-zone-api/src/main/java/ai/vespa/cloud/Cloud.java b/hosted-zone-api/src/main/java/ai/vespa/cloud/Cloud.java
index 75d002b80dd..1281ffe7038 100644
--- a/hosted-zone-api/src/main/java/ai/vespa/cloud/Cloud.java
+++ b/hosted-zone-api/src/main/java/ai/vespa/cloud/Cloud.java
@@ -1,7 +1,9 @@
package ai.vespa.cloud;
/**
- * The cloud provider of a Vespa Cloud instance.
+ * The cloud provider in which a cloud deployment may be running.
+ *
+ * This is "aws" when this runs in Amazon Web Services, and "gcp" when this runs in Google Cloud Platform.
*
* @author mpolden
*/
diff --git a/hosted-zone-api/src/main/java/ai/vespa/cloud/SystemInfo.java b/hosted-zone-api/src/main/java/ai/vespa/cloud/SystemInfo.java
index 9502ccdb52c..8fe3d0a2665 100644
--- a/hosted-zone-api/src/main/java/ai/vespa/cloud/SystemInfo.java
+++ b/hosted-zone-api/src/main/java/ai/vespa/cloud/SystemInfo.java
@@ -31,7 +31,7 @@ public class SystemInfo {
/** Returns the zone this is running in */
public Zone zone() { return zone; }
- /** Returns the cloud provider this is using */
+ /** Returns the cloud provider this is running in */
public Cloud cloud() {
return cloud;
}