com.azure.resourcemanager.datalakestore.models.DataLakeStoreAccountStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-datalakestore Show documentation
Show all versions of azure-resourcemanager-datalakestore Show documentation
This package contains Microsoft Azure SDK for DataLakeStore Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. Creates an Azure Data Lake Store account management client. Package tag package-2016-11.
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.datalakestore.models;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
/** The provisioning status of the Data Lake Store account. */
public enum DataLakeStoreAccountStatus {
/** Enum value Failed. */
FAILED("Failed"),
/** Enum value Creating. */
CREATING("Creating"),
/** Enum value Running. */
RUNNING("Running"),
/** Enum value Succeeded. */
SUCCEEDED("Succeeded"),
/** Enum value Patching. */
PATCHING("Patching"),
/** Enum value Suspending. */
SUSPENDING("Suspending"),
/** Enum value Resuming. */
RESUMING("Resuming"),
/** Enum value Deleting. */
DELETING("Deleting"),
/** Enum value Deleted. */
DELETED("Deleted"),
/** Enum value Undeleting. */
UNDELETING("Undeleting"),
/** Enum value Canceled. */
CANCELED("Canceled");
/** The actual serialized value for a DataLakeStoreAccountStatus instance. */
private final String value;
DataLakeStoreAccountStatus(String value) {
this.value = value;
}
/**
* Parses a serialized value to a DataLakeStoreAccountStatus instance.
*
* @param value the serialized value to parse.
* @return the parsed DataLakeStoreAccountStatus object, or null if unable to parse.
*/
@JsonCreator
public static DataLakeStoreAccountStatus fromString(String value) {
if (value == null) {
return null;
}
DataLakeStoreAccountStatus[] items = DataLakeStoreAccountStatus.values();
for (DataLakeStoreAccountStatus item : items) {
if (item.toString().equalsIgnoreCase(value)) {
return item;
}
}
return null;
}
/** {@inheritDoc} */
@JsonValue
@Override
public String toString() {
return this.value;
}
}