Interface SqlDatabase.UpdateStages.WithElasticPoolName
-
- All Known Subinterfaces:
SqlDatabase.Update
- Enclosing interface:
- SqlDatabase.UpdateStages
public static interface SqlDatabase.UpdateStages.WithElasticPoolNameThe SQL Database definition to set the elastic pool for database.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SqlDatabase.UpdatewithExistingElasticPool(SqlElasticPool sqlElasticPool)Sets the existing elastic pool for the SQLDatabase.SqlDatabase.UpdatewithExistingElasticPool(String elasticPoolName)Sets the existing elastic pool for the SQLDatabase.SqlDatabase.UpdatewithExistingElasticPoolId(String elasticPoolId)Sets the existing elastic pool for the SQLDatabase.SqlDatabase.UpdatewithNewElasticPool(Creatable<SqlElasticPool> sqlElasticPool)Sets the new elastic pool for the SQLDatabase, this will create a new elastic pool while creating database.SqlDatabase.UpdateStages.WithEditionwithoutElasticPool()Removes database from it's elastic pool.
-
-
-
Method Detail
-
withoutElasticPool
SqlDatabase.UpdateStages.WithEdition withoutElasticPool()
Removes database from it's elastic pool.- Returns:
- The next stage of the update.
-
withExistingElasticPool
SqlDatabase.Update withExistingElasticPool(String elasticPoolName)
Sets the existing elastic pool for the SQLDatabase.- Parameters:
elasticPoolName- for the SQL Database- Returns:
- The next stage of the update.
-
withExistingElasticPoolId
SqlDatabase.Update withExistingElasticPoolId(String elasticPoolId)
Sets the existing elastic pool for the SQLDatabase.- Parameters:
elasticPoolId- for the SQL Database- Returns:
- The next stage of the definition.
-
withExistingElasticPool
SqlDatabase.Update withExistingElasticPool(SqlElasticPool sqlElasticPool)
Sets the existing elastic pool for the SQLDatabase.- Parameters:
sqlElasticPool- for the SQL Database- Returns:
- The next stage of the update.
-
withNewElasticPool
SqlDatabase.Update withNewElasticPool(Creatable<SqlElasticPool> sqlElasticPool)
Sets the new elastic pool for the SQLDatabase, this will create a new elastic pool while creating database.- Parameters:
sqlElasticPool- creatable definition for new elastic pool to be created for the SQL Database- Returns:
- The next stage of the update.
-
-