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

com.azure.resourcemanager.databoxedge.models.InstallRebootBehavior Maven / Gradle / Ivy

Go to download

This package contains Microsoft Azure SDK for DataBoxEdge Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. Package tag package-2019-08.

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.databoxedge.models;

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

/**
 * Indicates if updates are available and at least one of the updates needs a reboot.
 */
public final class InstallRebootBehavior extends ExpandableStringEnum {
    /**
     * Static value NeverReboots for InstallRebootBehavior.
     */
    public static final InstallRebootBehavior NEVER_REBOOTS = fromString("NeverReboots");

    /**
     * Static value RequiresReboot for InstallRebootBehavior.
     */
    public static final InstallRebootBehavior REQUIRES_REBOOT = fromString("RequiresReboot");

    /**
     * Static value RequestReboot for InstallRebootBehavior.
     */
    public static final InstallRebootBehavior REQUEST_REBOOT = fromString("RequestReboot");

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

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy