com.azure.resourcemanager.timeseriesinsights.models.IngressState Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-timeseriesinsights Show documentation
Show all versions of azure-resourcemanager-timeseriesinsights Show documentation
This package contains Microsoft Azure SDK for TimeSeriesInsights Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. Time Series Insights client. Package tag package-2020-05-15.
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.timeseriesinsights.models;
import com.azure.core.util.ExpandableStringEnum;
import com.fasterxml.jackson.annotation.JsonCreator;
import java.util.Collection;
/**
* This string represents the state of ingress operations on an environment. It can be "Disabled", "Ready", "Running",
* "Paused" or "Unknown".
*/
public final class IngressState extends ExpandableStringEnum {
/** Static value Disabled for IngressState. */
public static final IngressState DISABLED = fromString("Disabled");
/** Static value Ready for IngressState. */
public static final IngressState READY = fromString("Ready");
/** Static value Running for IngressState. */
public static final IngressState RUNNING = fromString("Running");
/** Static value Paused for IngressState. */
public static final IngressState PAUSED = fromString("Paused");
/** Static value Unknown for IngressState. */
public static final IngressState UNKNOWN = fromString("Unknown");
/**
* Creates a new instance of IngressState value.
*
* @deprecated Use the {@link #fromString(String)} factory method.
*/
@Deprecated
public IngressState() {
}
/**
* Creates or finds a IngressState from its string representation.
*
* @param name a name to look for.
* @return the corresponding IngressState.
*/
@JsonCreator
public static IngressState fromString(String name) {
return fromString(name, IngressState.class);
}
/**
* Gets known IngressState values.
*
* @return known IngressState values.
*/
public static Collection values() {
return values(IngressState.class);
}
}