![JAR search and dependency download from the Maven repository](/logo.png)
com.azure.resourcemanager.appplatform.models.ConfigurationServiceGeneration 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;
/**
* The generation of the Application Configuration Service.
*/
public final class ConfigurationServiceGeneration extends ExpandableStringEnum {
/**
* Static value Gen1 for ConfigurationServiceGeneration.
*/
public static final ConfigurationServiceGeneration GEN1 = fromString("Gen1");
/**
* Static value Gen2 for ConfigurationServiceGeneration.
*/
public static final ConfigurationServiceGeneration GEN2 = fromString("Gen2");
/**
* Creates a new instance of ConfigurationServiceGeneration value.
*
* @deprecated Use the {@link #fromString(String)} factory method.
*/
@Deprecated
public ConfigurationServiceGeneration() {
}
/**
* Creates or finds a ConfigurationServiceGeneration from its string representation.
*
* @param name a name to look for.
* @return the corresponding ConfigurationServiceGeneration.
*/
@JsonCreator
public static ConfigurationServiceGeneration fromString(String name) {
return fromString(name, ConfigurationServiceGeneration.class);
}
/**
* Gets known ConfigurationServiceGeneration values.
*
* @return known ConfigurationServiceGeneration values.
*/
public static Collection values() {
return values(ConfigurationServiceGeneration.class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy