![JAR search and dependency download from the Maven repository](/logo.png)
com.azure.resourcemanager.desktopvirtualization.models.HealthCheckName 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 name of the health check operation performed.
*/
public final class HealthCheckName extends ExpandableStringEnum {
/**
* Static value DomainJoinedCheck for HealthCheckName.
*/
public static final HealthCheckName DOMAIN_JOINED_CHECK = fromString("DomainJoinedCheck");
/**
* Static value DomainTrustCheck for HealthCheckName.
*/
public static final HealthCheckName DOMAIN_TRUST_CHECK = fromString("DomainTrustCheck");
/**
* Static value FSLogixHealthCheck for HealthCheckName.
*/
public static final HealthCheckName FSLOGIX_HEALTH_CHECK = fromString("FSLogixHealthCheck");
/**
* Static value SxSStackListenerCheck for HealthCheckName.
*/
public static final HealthCheckName SX_SSTACK_LISTENER_CHECK = fromString("SxSStackListenerCheck");
/**
* Static value UrlsAccessibleCheck for HealthCheckName.
*/
public static final HealthCheckName URLS_ACCESSIBLE_CHECK = fromString("UrlsAccessibleCheck");
/**
* Static value MonitoringAgentCheck for HealthCheckName.
*/
public static final HealthCheckName MONITORING_AGENT_CHECK = fromString("MonitoringAgentCheck");
/**
* Static value DomainReachable for HealthCheckName.
*/
public static final HealthCheckName DOMAIN_REACHABLE = fromString("DomainReachable");
/**
* Static value WebRTCRedirectorCheck for HealthCheckName.
*/
public static final HealthCheckName WEB_RTCREDIRECTOR_CHECK = fromString("WebRTCRedirectorCheck");
/**
* Static value SupportedEncryptionCheck for HealthCheckName.
*/
public static final HealthCheckName SUPPORTED_ENCRYPTION_CHECK = fromString("SupportedEncryptionCheck");
/**
* Static value MetaDataServiceCheck for HealthCheckName.
*/
public static final HealthCheckName META_DATA_SERVICE_CHECK = fromString("MetaDataServiceCheck");
/**
* Static value AppAttachHealthCheck for HealthCheckName.
*/
public static final HealthCheckName APP_ATTACH_HEALTH_CHECK = fromString("AppAttachHealthCheck");
/**
* Creates a new instance of HealthCheckName value.
*
* @deprecated Use the {@link #fromString(String)} factory method.
*/
@Deprecated
public HealthCheckName() {
}
/**
* Creates or finds a HealthCheckName from its string representation.
*
* @param name a name to look for.
* @return the corresponding HealthCheckName.
*/
public static HealthCheckName fromString(String name) {
return fromString(name, HealthCheckName.class);
}
/**
* Gets known HealthCheckName values.
*
* @return known HealthCheckName values.
*/
public static Collection values() {
return values(HealthCheckName.class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy