com.azure.resourcemanager.hybridcompute.models.EsuKeyState Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-hybridcompute Show documentation
Show all versions of azure-resourcemanager-hybridcompute Show documentation
This package contains Microsoft Azure SDK for HybridCompute Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. The Hybrid Compute Management Client. Package tag package-preview-2024-05.
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.hybridcompute.models;
import com.azure.core.util.ExpandableStringEnum;
import java.util.Collection;
/**
* The ESU key state.
*/
public final class EsuKeyState extends ExpandableStringEnum {
/**
* Static value Inactive for EsuKeyState.
*/
public static final EsuKeyState INACTIVE = fromString("Inactive");
/**
* Static value Active for EsuKeyState.
*/
public static final EsuKeyState ACTIVE = fromString("Active");
/**
* Creates a new instance of EsuKeyState value.
*
* @deprecated Use the {@link #fromString(String)} factory method.
*/
@Deprecated
public EsuKeyState() {
}
/**
* Creates or finds a EsuKeyState from its string representation.
*
* @param name a name to look for.
* @return the corresponding EsuKeyState.
*/
public static EsuKeyState fromString(String name) {
return fromString(name, EsuKeyState.class);
}
/**
* Gets known EsuKeyState values.
*
* @return known EsuKeyState values.
*/
public static Collection values() {
return values(EsuKeyState.class);
}
}