![JAR search and dependency download from the Maven repository](/logo.png)
com.azure.resourcemanager.desktopvirtualization.models.HealthCheckResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-desktopvirtualization Show documentation
Show all versions of azure-resourcemanager-desktopvirtualization Show documentation
This package contains Microsoft Azure SDK for DesktopVirtualization Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. Package tag package-2024-04.
The newest version!
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.desktopvirtualization.models;
import com.azure.core.util.ExpandableStringEnum;
import java.util.Collection;
/**
* Represents the Health state of the health check we performed.
*/
public final class HealthCheckResult extends ExpandableStringEnum {
/**
* Static value Unknown for HealthCheckResult.
*/
public static final HealthCheckResult UNKNOWN = fromString("Unknown");
/**
* Static value HealthCheckSucceeded for HealthCheckResult.
*/
public static final HealthCheckResult HEALTH_CHECK_SUCCEEDED = fromString("HealthCheckSucceeded");
/**
* Static value HealthCheckFailed for HealthCheckResult.
*/
public static final HealthCheckResult HEALTH_CHECK_FAILED = fromString("HealthCheckFailed");
/**
* Static value SessionHostShutdown for HealthCheckResult.
*/
public static final HealthCheckResult SESSION_HOST_SHUTDOWN = fromString("SessionHostShutdown");
/**
* Creates a new instance of HealthCheckResult value.
*
* @deprecated Use the {@link #fromString(String)} factory method.
*/
@Deprecated
public HealthCheckResult() {
}
/**
* Creates or finds a HealthCheckResult from its string representation.
*
* @param name a name to look for.
* @return the corresponding HealthCheckResult.
*/
public static HealthCheckResult fromString(String name) {
return fromString(name, HealthCheckResult.class);
}
/**
* Gets known HealthCheckResult values.
*
* @return known HealthCheckResult values.
*/
public static Collection values() {
return values(HealthCheckResult.class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy