Enum SqlElasticPoolPremiumEDTUs
- java.lang.Object
-
- java.lang.Enum<SqlElasticPoolPremiumEDTUs>
-
- com.azure.resourcemanager.sql.models.SqlElasticPoolPremiumEDTUs
-
- All Implemented Interfaces:
Serializable,Comparable<SqlElasticPoolPremiumEDTUs>
public enum SqlElasticPoolPremiumEDTUs extends Enum<SqlElasticPoolPremiumEDTUs>
The reserved eDTUs value range for a "Premium" edition of an Azure SQL Elastic Pool.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description eDTU_10001000 eDTUs available to the pool.eDTU_125125 eDTUs available to the pool.eDTU_15001500 eDTUs available to the pool.eDTU_20002000 eDTUs available to the pool.eDTU_250250 eDTUs available to the pool.eDTU_25002500 eDTUs available to the pool.eDTU_30003000 eDTUs available to the pool.eDTU_35003500 eDTUs available to the pool.eDTU_40004000 eDTUs available to the pool.eDTU_500500 eDTUs available to the pool.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intvalue()static SqlElasticPoolPremiumEDTUsvalueOf(String name)Returns the enum constant of this type with the specified name.static SqlElasticPoolPremiumEDTUs[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
eDTU_125
public static final SqlElasticPoolPremiumEDTUs eDTU_125
125 eDTUs available to the pool.
-
eDTU_250
public static final SqlElasticPoolPremiumEDTUs eDTU_250
250 eDTUs available to the pool.
-
eDTU_500
public static final SqlElasticPoolPremiumEDTUs eDTU_500
500 eDTUs available to the pool.
-
eDTU_1000
public static final SqlElasticPoolPremiumEDTUs eDTU_1000
1000 eDTUs available to the pool.
-
eDTU_1500
public static final SqlElasticPoolPremiumEDTUs eDTU_1500
1500 eDTUs available to the pool.
-
eDTU_2000
public static final SqlElasticPoolPremiumEDTUs eDTU_2000
2000 eDTUs available to the pool.
-
eDTU_2500
public static final SqlElasticPoolPremiumEDTUs eDTU_2500
2500 eDTUs available to the pool.
-
eDTU_3000
public static final SqlElasticPoolPremiumEDTUs eDTU_3000
3000 eDTUs available to the pool.
-
eDTU_3500
public static final SqlElasticPoolPremiumEDTUs eDTU_3500
3500 eDTUs available to the pool.
-
eDTU_4000
public static final SqlElasticPoolPremiumEDTUs eDTU_4000
4000 eDTUs available to the pool.
-
-
Method Detail
-
values
public static SqlElasticPoolPremiumEDTUs[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (SqlElasticPoolPremiumEDTUs c : SqlElasticPoolPremiumEDTUs.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SqlElasticPoolPremiumEDTUs valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
value
public int value()
- Returns:
- the reserved eDTU for the SQL Elastic Pool
-
-