aboutsummaryrefslogtreecommitdiffstats
path: root/hosted-zone-api/src/main/java/ai/vespa/cloud/Cloud.java
blob: 1281ffe70385de485df402d8af5d4080847b4d90 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
package ai.vespa.cloud;

/**
 * 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
 */
public record Cloud(String name) {
}