com.azure.resourcemanager.sql.models.SqlDatabasePremiumServiceObjective 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 "Premium" Azure SQL Database. */
@Fluent
public class SqlDatabasePremiumServiceObjective extends ExpandableStringEnum {
/** Static value P1 for ServiceObjectiveName. */
public static final SqlDatabasePremiumServiceObjective P1 = fromString("P1");
/** Static value P2 for ServiceObjectiveName. */
public static final SqlDatabasePremiumServiceObjective P2 = fromString("P2");
/** Static value P3 for ServiceObjectiveName. */
public static final SqlDatabasePremiumServiceObjective P3 = fromString("P3");
/** Static value P4 for ServiceObjectiveName. */
public static final SqlDatabasePremiumServiceObjective P4 = fromString("P4");
/** Static value P6 for ServiceObjectiveName. */
public static final SqlDatabasePremiumServiceObjective P6 = fromString("P6");
/** Static value P11 for ServiceObjectiveName. */
public static final SqlDatabasePremiumServiceObjective P11 = fromString("P11");
/** Static value P15 for ServiceObjectiveName. */
public static final SqlDatabasePremiumServiceObjective P15 = fromString("P15");
/**
* Creates or finds a ServiceObjectiveName from its string representation.
*
* @param name a name to look for
* @return the corresponding ServiceObjectiveName
*/
public static SqlDatabasePremiumServiceObjective fromString(String name) {
return fromString(name, SqlDatabasePremiumServiceObjective.class);
}
/** @return known ServiceObjectiveName values */
public static Collection values() {
return values(SqlDatabasePremiumServiceObjective.class);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy