aboutsummaryrefslogtreecommitdiffstats
path: root/vespa-athenz/src/main/java/com/yahoo/vespa/athenz/identityprovider/api/ClusterType.java
blob: f77302bb81c0370fad3feaf8afbd0bb8f1ee22d5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

package com.yahoo.vespa.athenz.identityprovider.api;

import java.net.URI;

/**
 * Vespa cluster type
 *
 * @author bjorncs
 */
public enum ClusterType {
    ADMIN,
    CONTAINER,
    CONTENT,
    COMBINED;

    public static ClusterType from(String cfgValue) {
        return switch (cfgValue) {
            case "admin" -> ADMIN;
            case "container" -> CONTAINER;
            case "content" -> CONTENT;
            case "combined" -> COMBINED;
            default -> throw new IllegalArgumentException("Illegal cluster type '" + cfgValue + "'");
        };
    }

    public String toConfigValue() {
        return switch (this) {
            case ADMIN -> "admin";
            case CONTAINER -> "container";
            case CONTENT -> "content";
            case COMBINED -> "combined";
        };
    }

    public URI asCertificateSanUri() { return URI.create("vespa://cluster-type/%s".formatted(toConfigValue())); }

}