All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.yahoo.athenz.msd.TransportPolicyScope Maven / Gradle / Ivy

There is a newer version: 1.11.66
Show newest version
//
// This file generated by rdl 1.5.2. Do not modify!
//

package com.yahoo.athenz.msd;
import com.yahoo.rdl.*;

//
// TransportPolicyScope - Scope of transport policy
//
public enum TransportPolicyScope {
    ALL,
    ONPREM,
    AWS,
    GCP;

    public static TransportPolicyScope fromString(String v) {
        for (TransportPolicyScope e : values()) {
            if (e.toString().equals(v)) {
                return e;
            }
        }
        throw new IllegalArgumentException("Invalid string representation for TransportPolicyScope: " + v);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy