Enum SqlElasticPoolPremiumMinEDTUs
- java.lang.Object
-
- java.lang.Enum<SqlElasticPoolPremiumMinEDTUs>
-
- com.azure.resourcemanager.sql.models.SqlElasticPoolPremiumMinEDTUs
-
- All Implemented Interfaces:
Serializable,Comparable<SqlElasticPoolPremiumMinEDTUs>
public enum SqlElasticPoolPremiumMinEDTUs extends Enum<SqlElasticPoolPremiumMinEDTUs>
The minimum limit of the reserved eDTUs value range for a "Premium" edition of an Azure SQL Elastic Pool.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description eDTU_00 reserved minimum eDTUs available for each database in the pool.eDTU_10001000 reserved minimum eDTUs available for each database in the pool.eDTU_125125 reserved minimum eDTUs available for each database in the pool.eDTU_17501750 reserved minimum eDTUs available for each database in the pool.eDTU_250 reserved minimum eDTUs available for each database in the pool.eDTU_250250 reserved minimum eDTUs available for each database in the pool.eDTU_40004000 reserved minimum eDTUs available for each database in the pool.eDTU_5050 reserved minimum eDTUs available for each database in the pool.eDTU_500500 reserved minimum eDTUs available for each database in the pool.eDTU_7575 reserved minimum eDTUs available for each database in the pool.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intvalue()static SqlElasticPoolPremiumMinEDTUsvalueOf(String name)Returns the enum constant of this type with the specified name.static SqlElasticPoolPremiumMinEDTUs[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
eDTU_0
public static final SqlElasticPoolPremiumMinEDTUs eDTU_0
0 reserved minimum eDTUs available for each database in the pool.
-
eDTU_25
public static final SqlElasticPoolPremiumMinEDTUs eDTU_25
0 reserved minimum eDTUs available for each database in the pool.
-
eDTU_50
public static final SqlElasticPoolPremiumMinEDTUs eDTU_50
50 reserved minimum eDTUs available for each database in the pool.
-
eDTU_75
public static final SqlElasticPoolPremiumMinEDTUs eDTU_75
75 reserved minimum eDTUs available for each database in the pool.
-
eDTU_125
public static final SqlElasticPoolPremiumMinEDTUs eDTU_125
125 reserved minimum eDTUs available for each database in the pool.
-
eDTU_250
public static final SqlElasticPoolPremiumMinEDTUs eDTU_250
250 reserved minimum eDTUs available for each database in the pool.
-
eDTU_500
public static final SqlElasticPoolPremiumMinEDTUs eDTU_500
500 reserved minimum eDTUs available for each database in the pool.
-
eDTU_1000
public static final SqlElasticPoolPremiumMinEDTUs eDTU_1000
1000 reserved minimum eDTUs available for each database in the pool.
-
eDTU_1750
public static final SqlElasticPoolPremiumMinEDTUs eDTU_1750
1750 reserved minimum eDTUs available for each database in the pool.
-
eDTU_4000
public static final SqlElasticPoolPremiumMinEDTUs eDTU_4000
4000 reserved minimum eDTUs available for each database in the pool.
-
-
Method Detail
-
values
public static SqlElasticPoolPremiumMinEDTUs[] 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 (SqlElasticPoolPremiumMinEDTUs c : SqlElasticPoolPremiumMinEDTUs.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SqlElasticPoolPremiumMinEDTUs 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 minimum eDTU for each database in the SQL Elastic Pool
-
-