
com.azure.resourcemanager.network.models.ProbeNoHealthyBackendsBehavior Maven / Gradle / Ivy
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.network.models;
import com.azure.core.util.ExpandableStringEnum;
import java.util.Collection;
/**
* Determines how new connections are handled by the load balancer when all backend instances are probed down.
*/
public final class ProbeNoHealthyBackendsBehavior extends ExpandableStringEnum {
/**
* Static value AllProbedDown for ProbeNoHealthyBackendsBehavior.
*/
public static final ProbeNoHealthyBackendsBehavior ALL_PROBED_DOWN = fromString("AllProbedDown");
/**
* Static value AllProbedUp for ProbeNoHealthyBackendsBehavior.
*/
public static final ProbeNoHealthyBackendsBehavior ALL_PROBED_UP = fromString("AllProbedUp");
/**
* Creates a new instance of ProbeNoHealthyBackendsBehavior value.
*
* @deprecated Use the {@link #fromString(String)} factory method.
*/
@Deprecated
public ProbeNoHealthyBackendsBehavior() {
}
/**
* Creates or finds a ProbeNoHealthyBackendsBehavior from its string representation.
*
* @param name a name to look for.
* @return the corresponding ProbeNoHealthyBackendsBehavior.
*/
public static ProbeNoHealthyBackendsBehavior fromString(String name) {
return fromString(name, ProbeNoHealthyBackendsBehavior.class);
}
/**
* Gets known ProbeNoHealthyBackendsBehavior values.
*
* @return known ProbeNoHealthyBackendsBehavior values.
*/
public static Collection values() {
return values(ProbeNoHealthyBackendsBehavior.class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy