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

com.azure.cosmos.implementation.circuitBreaker.LocationHealthStatus Maven / Gradle / Ivy

// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

package com.azure.cosmos.implementation.circuitBreaker;

public enum LocationHealthStatus {
    Healthy("Healthy"),
    HealthyWithFailures("HealthyWithFailures"),
    Unavailable("Unavailable"),
    HealthyTentative("HealthyTentative");

    private final String stringifiedRepresentation;

    LocationHealthStatus(String stringifiedRepresentation) {
        this.stringifiedRepresentation = stringifiedRepresentation;
    }

    public String getStringifiedLocationHealthStatus() {
        return stringifiedRepresentation;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy