com.azure.resourcemanager.appplatform.models.DeploymentResourceProvisioningState Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-appplatform Show documentation
Show all versions of azure-resourcemanager-appplatform Show documentation
This package contains Microsoft Azure App Platform Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.appplatform.models;
import com.azure.core.util.ExpandableStringEnum;
import com.fasterxml.jackson.annotation.JsonCreator;
import java.util.Collection;
/**
* Provisioning state of the Deployment.
*/
public final class DeploymentResourceProvisioningState
extends ExpandableStringEnum {
/**
* Static value Creating for DeploymentResourceProvisioningState.
*/
public static final DeploymentResourceProvisioningState CREATING = fromString("Creating");
/**
* Static value Updating for DeploymentResourceProvisioningState.
*/
public static final DeploymentResourceProvisioningState UPDATING = fromString("Updating");
/**
* Static value Succeeded for DeploymentResourceProvisioningState.
*/
public static final DeploymentResourceProvisioningState SUCCEEDED = fromString("Succeeded");
/**
* Static value Failed for DeploymentResourceProvisioningState.
*/
public static final DeploymentResourceProvisioningState FAILED = fromString("Failed");
/**
* Creates a new instance of DeploymentResourceProvisioningState value.
*
* @deprecated Use the {@link #fromString(String)} factory method.
*/
@Deprecated
public DeploymentResourceProvisioningState() {
}
/**
* Creates or finds a DeploymentResourceProvisioningState from its string representation.
*
* @param name a name to look for.
* @return the corresponding DeploymentResourceProvisioningState.
*/
@JsonCreator
public static DeploymentResourceProvisioningState fromString(String name) {
return fromString(name, DeploymentResourceProvisioningState.class);
}
/**
* Gets known DeploymentResourceProvisioningState values.
*
* @return known DeploymentResourceProvisioningState values.
*/
public static Collection values() {
return values(DeploymentResourceProvisioningState.class);
}
}