summaryrefslogtreecommitdiffstats
path: root/hosted-zone-api/src/main/java/ai/vespa/cloud/Cloud.java
blob: e2f7043b1525596fea7a192daa8019a1cc8c5faf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
// 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, "gcp" when this runs in Google Cloud Platform and
 * "azure" when this runs in Microsoft Azure.
 *
 * @author mpolden
 */
public record Cloud(String name) {
}