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

com.azure.resourcemanager.hybridcompute.models.VMGuestPatchRebootSetting Maven / Gradle / Ivy

Go to download

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;

/**
 * Defines when it is acceptable to reboot a VM during a software update operation.
 */
public final class VMGuestPatchRebootSetting extends ExpandableStringEnum {
    /**
     * Static value IfRequired for VMGuestPatchRebootSetting.
     */
    public static final VMGuestPatchRebootSetting IF_REQUIRED = fromString("IfRequired");

    /**
     * Static value Never for VMGuestPatchRebootSetting.
     */
    public static final VMGuestPatchRebootSetting NEVER = fromString("Never");

    /**
     * Static value Always for VMGuestPatchRebootSetting.
     */
    public static final VMGuestPatchRebootSetting ALWAYS = fromString("Always");

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy