com.azure.resourcemanager.applicationinsights.models.PurgeState Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-applicationinsights Show documentation
Show all versions of azure-resourcemanager-applicationinsights Show documentation
This package contains Microsoft Azure SDK for ApplicationInsights Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. Composite Swagger for Application Insights Management Client. Package tag package-2022-04-01.
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.applicationinsights.models;
import com.azure.core.util.ExpandableStringEnum;
import com.fasterxml.jackson.annotation.JsonCreator;
import java.util.Collection;
/** Defines values for PurgeState. */
public final class PurgeState extends ExpandableStringEnum {
/** Static value pending for PurgeState. */
public static final PurgeState PENDING = fromString("pending");
/** Static value completed for PurgeState. */
public static final PurgeState COMPLETED = fromString("completed");
/**
* Creates or finds a PurgeState from its string representation.
*
* @param name a name to look for.
* @return the corresponding PurgeState.
*/
@JsonCreator
public static PurgeState fromString(String name) {
return fromString(name, PurgeState.class);
}
/**
* Gets known PurgeState values.
*
* @return known PurgeState values.
*/
public static Collection values() {
return values(PurgeState.class);
}
}