All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.azure.resourcemanager.compute.models.VMGuestPatchClassificationWindows Maven / Gradle / Ivy

Go to download

This package contains Microsoft Azure Compute Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt

There is a newer version: 2.44.0
Show 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.compute.models;

import com.azure.core.util.ExpandableStringEnum;
import java.util.Collection;

/**
 * Defines values for VMGuestPatchClassificationWindows.
 */
public final class VMGuestPatchClassificationWindows extends ExpandableStringEnum {
    /**
     * Static value Critical for VMGuestPatchClassificationWindows.
     */
    public static final VMGuestPatchClassificationWindows CRITICAL = fromString("Critical");

    /**
     * Static value Security for VMGuestPatchClassificationWindows.
     */
    public static final VMGuestPatchClassificationWindows SECURITY = fromString("Security");

    /**
     * Static value UpdateRollUp for VMGuestPatchClassificationWindows.
     */
    public static final VMGuestPatchClassificationWindows UPDATE_ROLL_UP = fromString("UpdateRollUp");

    /**
     * Static value FeaturePack for VMGuestPatchClassificationWindows.
     */
    public static final VMGuestPatchClassificationWindows FEATURE_PACK = fromString("FeaturePack");

    /**
     * Static value ServicePack for VMGuestPatchClassificationWindows.
     */
    public static final VMGuestPatchClassificationWindows SERVICE_PACK = fromString("ServicePack");

    /**
     * Static value Definition for VMGuestPatchClassificationWindows.
     */
    public static final VMGuestPatchClassificationWindows DEFINITION = fromString("Definition");

    /**
     * Static value Tools for VMGuestPatchClassificationWindows.
     */
    public static final VMGuestPatchClassificationWindows TOOLS = fromString("Tools");

    /**
     * Static value Updates for VMGuestPatchClassificationWindows.
     */
    public static final VMGuestPatchClassificationWindows UPDATES = fromString("Updates");

    /**
     * Creates a new instance of VMGuestPatchClassificationWindows value.
     * 
     * @deprecated Use the {@link #fromString(String)} factory method.
     */
    @Deprecated
    public VMGuestPatchClassificationWindows() {
    }

    /**
     * Creates or finds a VMGuestPatchClassificationWindows from its string representation.
     * 
     * @param name a name to look for.
     * @return the corresponding VMGuestPatchClassificationWindows.
     */
    public static VMGuestPatchClassificationWindows fromString(String name) {
        return fromString(name, VMGuestPatchClassificationWindows.class);
    }

    /**
     * Gets known VMGuestPatchClassificationWindows values.
     * 
     * @return known VMGuestPatchClassificationWindows values.
     */
    public static Collection values() {
        return values(VMGuestPatchClassificationWindows.class);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy