com.azure.resourcemanager.hybridcompute.models.VMGuestPatchClassificationLinux 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-07.
// 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 com.fasterxml.jackson.annotation.JsonCreator;
import java.util.Collection;
/**
* Defines values for VMGuestPatchClassificationLinux.
*/
public final class VMGuestPatchClassificationLinux extends ExpandableStringEnum {
/**
* Static value Critical for VMGuestPatchClassificationLinux.
*/
public static final VMGuestPatchClassificationLinux CRITICAL = fromString("Critical");
/**
* Static value Security for VMGuestPatchClassificationLinux.
*/
public static final VMGuestPatchClassificationLinux SECURITY = fromString("Security");
/**
* Static value Other for VMGuestPatchClassificationLinux.
*/
public static final VMGuestPatchClassificationLinux OTHER = fromString("Other");
/**
* Creates a new instance of VMGuestPatchClassificationLinux value.
*
* @deprecated Use the {@link #fromString(String)} factory method.
*/
@Deprecated
public VMGuestPatchClassificationLinux() {
}
/**
* Creates or finds a VMGuestPatchClassificationLinux from its string representation.
*
* @param name a name to look for.
* @return the corresponding VMGuestPatchClassificationLinux.
*/
@JsonCreator
public static VMGuestPatchClassificationLinux fromString(String name) {
return fromString(name, VMGuestPatchClassificationLinux.class);
}
/**
* Gets known VMGuestPatchClassificationLinux values.
*
* @return known VMGuestPatchClassificationLinux values.
*/
public static Collection values() {
return values(VMGuestPatchClassificationLinux.class);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy