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

org.openmetadata.schema.security.secrets.SecretsManagerClientLoader Maven / Gradle / Ivy

There is a newer version: 1.6.0-rc1
Show newest version

package org.openmetadata.schema.security.secrets;

import java.util.HashMap;
import java.util.Map;
import javax.annotation.processing.Generated;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;


/**
 * Secrets Manager Client Loader
 * 

* OpenMetadata Secrets Manager Client Loader. Lets the client know how the Secrets Manager Credentials should be loaded from the environment. * */ @Generated("jsonschema2pojo") public enum SecretsManagerClientLoader { NOOP("noop"), AIRFLOW("airflow"), ENV("env"); private final String value; private final static Map CONSTANTS = new HashMap(); static { for (SecretsManagerClientLoader c: values()) { CONSTANTS.put(c.value, c); } } SecretsManagerClientLoader(String value) { this.value = value; } @Override public String toString() { return this.value; } @JsonValue public String value() { return this.value; } @JsonCreator public static SecretsManagerClientLoader fromValue(String value) { SecretsManagerClientLoader constant = CONSTANTS.get(value); if (constant == null) { throw new IllegalArgumentException(value); } else { return constant; } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy