com.azure.resourcemanager.databoxedge.models.StorageAccountStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-databoxedge Show documentation
Show all versions of azure-resourcemanager-databoxedge Show documentation
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;
/**
* Current status of the storage account.
*/
public final class StorageAccountStatus extends ExpandableStringEnum {
/**
* Static value OK for StorageAccountStatus.
*/
public static final StorageAccountStatus OK = fromString("OK");
/**
* Static value Offline for StorageAccountStatus.
*/
public static final StorageAccountStatus OFFLINE = fromString("Offline");
/**
* Static value Unknown for StorageAccountStatus.
*/
public static final StorageAccountStatus UNKNOWN = fromString("Unknown");
/**
* Static value Updating for StorageAccountStatus.
*/
public static final StorageAccountStatus UPDATING = fromString("Updating");
/**
* Static value NeedsAttention for StorageAccountStatus.
*/
public static final StorageAccountStatus NEEDS_ATTENTION = fromString("NeedsAttention");
/**
* Creates a new instance of StorageAccountStatus value.
*
* @deprecated Use the {@link #fromString(String)} factory method.
*/
@Deprecated
public StorageAccountStatus() {
}
/**
* Creates or finds a StorageAccountStatus from its string representation.
*
* @param name a name to look for.
* @return the corresponding StorageAccountStatus.
*/
public static StorageAccountStatus fromString(String name) {
return fromString(name, StorageAccountStatus.class);
}
/**
* Gets known StorageAccountStatus values.
*
* @return known StorageAccountStatus values.
*/
public static Collection values() {
return values(StorageAccountStatus.class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy