Enum SqlElasticPoolStandardMinEDTUs
- java.lang.Object
-
- java.lang.Enum<SqlElasticPoolStandardMinEDTUs>
-
- com.azure.resourcemanager.sql.models.SqlElasticPoolStandardMinEDTUs
-
- All Implemented Interfaces:
Serializable,Comparable<SqlElasticPoolStandardMinEDTUs>
public enum SqlElasticPoolStandardMinEDTUs extends Enum<SqlElasticPoolStandardMinEDTUs>
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_100100 reserved minimum eDTUs available for each database in the pool.eDTU_12001200 reserved minimum eDTUs available for each database in the pool.eDTU_16001600 reserved minimum eDTUs available for each database in the pool.eDTU_2020 reserved minimum eDTUs available for each database in the pool.eDTU_200200 reserved minimum eDTUs available for each database in the pool.eDTU_20002000 reserved minimum eDTUs available for each database in the pool.eDTU_25002500 reserved minimum eDTUs available for each database in the pool.eDTU_300300 reserved minimum eDTUs available for each database in the pool.eDTU_30003000 reserved minimum eDTUs available for each database in the pool.eDTU_400400 reserved minimum eDTUs available for each database in the pool.eDTU_5050 reserved minimum eDTUs available for each database in the pool.eDTU_800800 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 SqlElasticPoolStandardMinEDTUsvalueOf(String name)Returns the enum constant of this type with the specified name.static SqlElasticPoolStandardMinEDTUs[]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 SqlElasticPoolStandardMinEDTUs eDTU_0
0 reserved minimum eDTUs available for each database in the pool.
-
eDTU_20
public static final SqlElasticPoolStandardMinEDTUs eDTU_20
20 reserved minimum eDTUs available for each database in the pool.
-
eDTU_50
public static final SqlElasticPoolStandardMinEDTUs eDTU_50
50 reserved minimum eDTUs available for each database in the pool.
-
eDTU_100
public static final SqlElasticPoolStandardMinEDTUs eDTU_100
100 reserved minimum eDTUs available for each database in the pool.
-
eDTU_200
public static final SqlElasticPoolStandardMinEDTUs eDTU_200
200 reserved minimum eDTUs available for each database in the pool.
-
eDTU_300
public static final SqlElasticPoolStandardMinEDTUs eDTU_300
300 reserved minimum eDTUs available for each database in the pool.
-
eDTU_400
public static final SqlElasticPoolStandardMinEDTUs eDTU_400
400 reserved minimum eDTUs available for each database in the pool.
-
eDTU_800
public static final SqlElasticPoolStandardMinEDTUs eDTU_800
800 reserved minimum eDTUs available for each database in the pool.
-
eDTU_1200
public static final SqlElasticPoolStandardMinEDTUs eDTU_1200
1200 reserved minimum eDTUs available for each database in the pool.
-
eDTU_1600
public static final SqlElasticPoolStandardMinEDTUs eDTU_1600
1600 reserved minimum eDTUs available for each database in the pool.
-
eDTU_2000
public static final SqlElasticPoolStandardMinEDTUs eDTU_2000
2000 reserved minimum eDTUs available for each database in the pool.
-
eDTU_2500
public static final SqlElasticPoolStandardMinEDTUs eDTU_2500
2500 reserved minimum eDTUs available for each database in the pool.
-
eDTU_3000
public static final SqlElasticPoolStandardMinEDTUs eDTU_3000
3000 reserved minimum eDTUs available for each database in the pool.
-
-
Method Detail
-
values
public static SqlElasticPoolStandardMinEDTUs[] 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 (SqlElasticPoolStandardMinEDTUs c : SqlElasticPoolStandardMinEDTUs.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SqlElasticPoolStandardMinEDTUs 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
-
-