Interface SqlServer.UpdateStages.WithElasticPool
-
- All Known Subinterfaces:
SqlServer.Update
- Enclosing interface:
- SqlServer.UpdateStages
public static interface SqlServer.UpdateStages.WithElasticPoolA SQL Server definition for specifying elastic pool.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SqlElasticPool.DefinitionStages.Blank<? extends SqlServer.Update>defineElasticPool(String elasticPoolName)Begins the definition of a new SQL Elastic Pool to be added to this server.SqlServer.UpdatewithoutElasticPool(String elasticPoolName)Removes elastic pool from the SQL Server.
-
-
-
Method Detail
-
defineElasticPool
SqlElasticPool.DefinitionStages.Blank<? extends SqlServer.Update> defineElasticPool(String elasticPoolName)
Begins the definition of a new SQL Elastic Pool to be added to this server.- Parameters:
elasticPoolName- the name of the new SQL Elastic Pool- Returns:
- the first stage of the new SQL Elastic Pool definition
-
withoutElasticPool
SqlServer.Update withoutElasticPool(String elasticPoolName)
Removes elastic pool from the SQL Server.- Parameters:
elasticPoolName- name of the elastic pool to be removed- Returns:
- Next stage of the SQL Server update
-
-