com.azure.resourcemanager.sql.models.SqlDatabaseStandardServiceObjective Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-sql Show documentation
Show all versions of azure-resourcemanager-sql Show documentation
This package contains Microsoft Azure Sql Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt
The newest version!
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
package com.azure.resourcemanager.sql.models;
import com.azure.core.annotation.Fluent;
import com.azure.core.util.ExpandableStringEnum;
import java.util.Collection;
/** The name of the configured Service Level Objective of a "Standard" Azure SQL Database. */
@Fluent
public class SqlDatabaseStandardServiceObjective extends ExpandableStringEnum {
/** Static value S0 for SqlDatabaseStandardServiceObjective. */
public static final SqlDatabaseStandardServiceObjective S0 = fromString("S0");
/** Static value S1 for ServiceObjectiveName. */
public static final SqlDatabaseStandardServiceObjective S1 = fromString("S1");
/** Static value S2 for ServiceObjectiveName. */
public static final SqlDatabaseStandardServiceObjective S2 = fromString("S2");
/** Static value S3 for ServiceObjectiveName. */
public static final SqlDatabaseStandardServiceObjective S3 = fromString("S3");
/** Static value S4 for ServiceObjectiveName. */
public static final SqlDatabaseStandardServiceObjective S4 = fromString("S4");
/** Static value S6 for ServiceObjectiveName. */
public static final SqlDatabaseStandardServiceObjective S6 = fromString("S6");
/** Static value S7 for ServiceObjectiveName. */
public static final SqlDatabaseStandardServiceObjective S7 = fromString("S7");
/** Static value S9 for ServiceObjectiveName. */
public static final SqlDatabaseStandardServiceObjective S9 = fromString("S9");
/** Static value S12 for ServiceObjectiveName. */
public static final SqlDatabaseStandardServiceObjective S12 = fromString("S12");
/**
* Creates or finds a ServiceObjectiveName from its string representation.
*
* @param name a name to look for
* @return the corresponding ServiceObjectiveName
*/
public static SqlDatabaseStandardServiceObjective fromString(String name) {
return fromString(name, SqlDatabaseStandardServiceObjective.class);
}
/** @return known ServiceObjectiveName values */
public static Collection values() {
return values(SqlDatabaseStandardServiceObjective.class);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy