
com.azure.resourcemanager.mysqlflexibleserver.models.IsDynamicConfig Maven / Gradle / Ivy
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.mysqlflexibleserver.models;
import com.azure.core.util.ExpandableStringEnum;
import java.util.Collection;
/**
* If is the configuration dynamic.
*/
public final class IsDynamicConfig extends ExpandableStringEnum {
/**
* Static value True for IsDynamicConfig.
*/
public static final IsDynamicConfig TRUE = fromString("True");
/**
* Static value False for IsDynamicConfig.
*/
public static final IsDynamicConfig FALSE = fromString("False");
/**
* Creates a new instance of IsDynamicConfig value.
*
* @deprecated Use the {@link #fromString(String)} factory method.
*/
@Deprecated
public IsDynamicConfig() {
}
/**
* Creates or finds a IsDynamicConfig from its string representation.
*
* @param name a name to look for.
* @return the corresponding IsDynamicConfig.
*/
public static IsDynamicConfig fromString(String name) {
return fromString(name, IsDynamicConfig.class);
}
/**
* Gets known IsDynamicConfig values.
*
* @return known IsDynamicConfig values.
*/
public static Collection values() {
return values(IsDynamicConfig.class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy