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

com.azure.resourcemanager.databoxedge.models.DataBoxEdgeDeviceStatus 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.

There is a newer version: 1.0.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.databoxedge.models;

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

/**
 * The status of the Data Box Edge/Gateway device.
 */
public final class DataBoxEdgeDeviceStatus extends ExpandableStringEnum {
    /**
     * Static value ReadyToSetup for DataBoxEdgeDeviceStatus.
     */
    public static final DataBoxEdgeDeviceStatus READY_TO_SETUP = fromString("ReadyToSetup");

    /**
     * Static value Online for DataBoxEdgeDeviceStatus.
     */
    public static final DataBoxEdgeDeviceStatus ONLINE = fromString("Online");

    /**
     * Static value Offline for DataBoxEdgeDeviceStatus.
     */
    public static final DataBoxEdgeDeviceStatus OFFLINE = fromString("Offline");

    /**
     * Static value NeedsAttention for DataBoxEdgeDeviceStatus.
     */
    public static final DataBoxEdgeDeviceStatus NEEDS_ATTENTION = fromString("NeedsAttention");

    /**
     * Static value Disconnected for DataBoxEdgeDeviceStatus.
     */
    public static final DataBoxEdgeDeviceStatus DISCONNECTED = fromString("Disconnected");

    /**
     * Static value PartiallyDisconnected for DataBoxEdgeDeviceStatus.
     */
    public static final DataBoxEdgeDeviceStatus PARTIALLY_DISCONNECTED = fromString("PartiallyDisconnected");

    /**
     * Static value Maintenance for DataBoxEdgeDeviceStatus.
     */
    public static final DataBoxEdgeDeviceStatus MAINTENANCE = fromString("Maintenance");

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy