com.azure.resourcemanager.hybridcompute.models.LicenseProfileSubscriptionStatusUpdate 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;
/**
* Indicates the new subscription status of the OS or Product Features.
*/
public final class LicenseProfileSubscriptionStatusUpdate
extends ExpandableStringEnum {
/**
* Static value Enable for LicenseProfileSubscriptionStatusUpdate.
*/
public static final LicenseProfileSubscriptionStatusUpdate ENABLE = fromString("Enable");
/**
* Static value Disable for LicenseProfileSubscriptionStatusUpdate.
*/
public static final LicenseProfileSubscriptionStatusUpdate DISABLE = fromString("Disable");
/**
* Creates a new instance of LicenseProfileSubscriptionStatusUpdate value.
*
* @deprecated Use the {@link #fromString(String)} factory method.
*/
@Deprecated
public LicenseProfileSubscriptionStatusUpdate() {
}
/**
* Creates or finds a LicenseProfileSubscriptionStatusUpdate from its string representation.
*
* @param name a name to look for.
* @return the corresponding LicenseProfileSubscriptionStatusUpdate.
*/
public static LicenseProfileSubscriptionStatusUpdate fromString(String name) {
return fromString(name, LicenseProfileSubscriptionStatusUpdate.class);
}
/**
* Gets known LicenseProfileSubscriptionStatusUpdate values.
*
* @return known LicenseProfileSubscriptionStatusUpdate values.
*/
public static Collection values() {
return values(LicenseProfileSubscriptionStatusUpdate.class);
}
}