com.microsoft.azure.management.sql.SqlDatabaseStandardServiceObjective Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-mgmt-sql Show documentation
Show all versions of azure-mgmt-sql Show documentation
This package contains Microsoft Azure SDK for SQL Management module.
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*/
package com.microsoft.azure.management.sql;
import com.microsoft.azure.management.apigeneration.Beta;
import com.microsoft.azure.management.apigeneration.Fluent;
import com.microsoft.rest.ExpandableStringEnum;
import java.util.Collection;
/**
* The name of the configured Service Level Objective of a "Standard" Azure SQL Database.
*/
@Fluent
@Beta(Beta.SinceVersion.V1_7_0)
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 - 2025 Weber Informatics LLC | Privacy Policy