Interface SqlElasticPool.UpdateStages.WithDatabase
-
- All Known Subinterfaces:
SqlElasticPool.Update
- Enclosing interface:
- SqlElasticPool.UpdateStages
public static interface SqlElasticPool.UpdateStages.WithDatabaseThe SQL Elastic Pool definition to add the Database in the elastic pool.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SqlElasticPool.UpdatewithExistingDatabase(SqlDatabase database)Adds the database in the SQL elastic pool.SqlElasticPool.UpdatewithExistingDatabase(String databaseName)Adds an existing database in the SQL elastic pool.SqlElasticPool.UpdatewithNewDatabase(String databaseName)Creates a new database in the SQL elastic pool.
-
-
-
Method Detail
-
withNewDatabase
SqlElasticPool.Update withNewDatabase(String databaseName)
Creates a new database in the SQL elastic pool.- Parameters:
databaseName- name of the new database to be added in the elastic pool- Returns:
- The next stage of the definition.
-
withExistingDatabase
SqlElasticPool.Update withExistingDatabase(String databaseName)
Adds an existing database in the SQL elastic pool.- Parameters:
databaseName- name of the existing database to be added in the elastic pool- Returns:
- The next stage of the definition.
-
withExistingDatabase
SqlElasticPool.Update withExistingDatabase(SqlDatabase database)
Adds the database in the SQL elastic pool.- Parameters:
database- database instance to be added in SQL elastic pool- Returns:
- The next stage of the definition.
-
-