Interface SqlDatabase.UpdateStages.WithEdition
- All Known Subinterfaces:
SqlDatabase.Update
- Enclosing interface:
- SqlDatabase.UpdateStages
public static interface SqlDatabase.UpdateStages.WithEdition
The SQL Database definition to set the edition for database.
-
Method Summary
Modifier and TypeMethodDescriptionSets a "Basic" edition for the SQL Database.withBasicEdition
(SqlDatabaseBasicStorage maxStorageCapacity) Sets a "Basic" edition and maximum storage capacity for the SQL Database.withEdition
(DatabaseEdition edition) Deprecated.withPremiumEdition
(SqlDatabasePremiumServiceObjective serviceObjective) Sets a "Premium" edition for the SQL Database.withPremiumEdition
(SqlDatabasePremiumServiceObjective serviceObjective, SqlDatabasePremiumStorage maxStorageCapacity) Sets a "Premium" edition and maximum storage capacity for the SQL Database.withStandardEdition
(SqlDatabaseStandardServiceObjective serviceObjective) Sets a "Standard" edition for the SQL Database.withStandardEdition
(SqlDatabaseStandardServiceObjective serviceObjective, SqlDatabaseStandardStorage maxStorageCapacity) Sets a "Standard" edition and maximum storage capacity for the SQL Database.
-
Method Details
-
withEdition
Deprecated.Sets the edition for the SQL Database.- Parameters:
edition
- edition to be set for database- Returns:
- The next stage of the update.
-
withBasicEdition
Sets a "Basic" edition for the SQL Database.- Returns:
- The next stage of the definition
-
withBasicEdition
Sets a "Basic" edition and maximum storage capacity for the SQL Database.- Parameters:
maxStorageCapacity
- the max storage capacity- Returns:
- The next stage of the definition
-
withStandardEdition
@Beta(V1_7_0) SqlDatabase.Update withStandardEdition(SqlDatabaseStandardServiceObjective serviceObjective) Sets a "Standard" edition for the SQL Database.- Parameters:
serviceObjective
- edition to be set for database- Returns:
- The next stage of the definition
-
withStandardEdition
@Beta(V1_7_0) SqlDatabase.Update withStandardEdition(SqlDatabaseStandardServiceObjective serviceObjective, SqlDatabaseStandardStorage maxStorageCapacity) Sets a "Standard" edition and maximum storage capacity for the SQL Database.- Parameters:
serviceObjective
- edition to be set for databasemaxStorageCapacity
- edition to be set for database- Returns:
- The next stage of the definition
-
withPremiumEdition
@Beta(V1_7_0) SqlDatabase.Update withPremiumEdition(SqlDatabasePremiumServiceObjective serviceObjective) Sets a "Premium" edition for the SQL Database.- Parameters:
serviceObjective
- edition to be set for database- Returns:
- The next stage of the definition
-
withPremiumEdition
@Beta(V1_7_0) SqlDatabase.Update withPremiumEdition(SqlDatabasePremiumServiceObjective serviceObjective, SqlDatabasePremiumStorage maxStorageCapacity) Sets a "Premium" edition and maximum storage capacity for the SQL Database.- Parameters:
serviceObjective
- edition to be set for databasemaxStorageCapacity
- edition to be set for database- Returns:
- The next stage of the definition
-