aboutsummaryrefslogtreecommitdiffstats
path: root/hosted-zone-api/src/main/java/ai/vespa/cloud/Cloud.java
blob: 6486946189987fe6b7dbbc46e02bdbbe1c64365c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
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) {
}