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

org.openmetadata.schema.monitoring.EventMonitorProvider Maven / Gradle / Ivy

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

package org.openmetadata.schema.monitoring;

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;


/**
 * Event Monitor Provider
 * 

* OpenMetadata Event Monitor Provider. * */ @Generated("jsonschema2pojo") public enum EventMonitorProvider { CLOUDWATCH("cloudwatch"), PROMETHEUS("prometheus"); private final String value; private final static Map CONSTANTS = new HashMap(); static { for (EventMonitorProvider c: values()) { CONSTANTS.put(c.value, c); } } EventMonitorProvider(String value) { this.value = value; } @Override public String toString() { return this.value; } @JsonValue public String value() { return this.value; } @JsonCreator public static EventMonitorProvider fromValue(String value) { EventMonitorProvider constant = CONSTANTS.get(value); if (constant == null) { throw new IllegalArgumentException(value); } else { return constant; } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy