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

com.microsoft.graph.beta.generated.models.ConnectorHealthState Maven / Gradle / Ivy

There is a newer version: 6.26.0
Show newest version
package com.microsoft.graph.beta.models;

import com.microsoft.kiota.serialization.ValuedEnum;
import java.util.Objects;

/**
 * Connector health state for connector status
 */
@jakarta.annotation.Generated("com.microsoft.kiota")
public enum ConnectorHealthState implements ValuedEnum {
    /** Indicates a healthy connector status and no action required. */
    Healthy("healthy"),
    /** Indicates that a connector needs attention. */
    Warning("warning"),
    /** Indicates that a connector needs immediate attention to retain functionality. */
    Unhealthy("unhealthy"),
    /** unknown */
    Unknown("unknown");
    public final String value;
    ConnectorHealthState(final String value) {
        this.value = value;
    }
    @jakarta.annotation.Nonnull
    public String getValue() { return this.value; }
    @jakarta.annotation.Nullable
    public static ConnectorHealthState forValue(@jakarta.annotation.Nonnull final String searchValue) {
        Objects.requireNonNull(searchValue);
        switch(searchValue) {
            case "healthy": return Healthy;
            case "warning": return Warning;
            case "unhealthy": return Unhealthy;
            case "unknown": return Unknown;
            default: return null;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy