All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.microsoft.azure.management.sql.SqlDatabaseStandardServiceObjective Maven / Gradle / Ivy

Go to download

This package contains Microsoft Azure Sql Management SDK. A new set of management libraries are now Generally Available. For documentation on how to use the new libraries, please see https://aka.ms/azsdk/java/mgmt

There is a newer version: 1.41.4
Show newest version
/**
 * 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 - 2024 Weber Informatics LLC | Privacy Policy