Interface SqlServer.DefinitionStages.WithElasticPool
- All Known Subinterfaces:
SqlServer.Definition
,SqlServer.DefinitionStages.WithCreate
- Enclosing interface:
- SqlServer.DefinitionStages
public static interface SqlServer.DefinitionStages.WithElasticPool
A SQL Server definition for specifying elastic pool.
-
Method Summary
Modifier and TypeMethodDescriptiondefineElasticPool
(String elasticPoolName) Begins the definition of a new SQL Elastic Pool to be added to this server.withNewElasticPool
(String elasticPoolName, ElasticPoolEdition elasticPoolEdition) Deprecated.withNewElasticPool
(String elasticPoolName, ElasticPoolEdition elasticPoolEdition, String... databaseNames) Deprecated.
-
Method Details
-
defineElasticPool
@Beta(V1_7_0) SqlElasticPool.DefinitionStages.Blank<SqlServer.DefinitionStages.WithCreate> 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
-
withNewElasticPool
@Deprecated SqlServer.DefinitionStages.WithCreate withNewElasticPool(String elasticPoolName, ElasticPoolEdition elasticPoolEdition, String... databaseNames) Deprecated.Creates new elastic pool in the SQL Server.- Parameters:
elasticPoolName
- name of the elastic pool to be createdelasticPoolEdition
- edition of the elastic pooldatabaseNames
- names of the database to be included in the elastic pool- Returns:
- Next stage of the SQL Server definition
-
withNewElasticPool
@Deprecated SqlServer.DefinitionStages.WithCreate withNewElasticPool(String elasticPoolName, ElasticPoolEdition elasticPoolEdition) Deprecated.Creates new elastic pool in the SQL Server.- Parameters:
elasticPoolName
- name of the elastic pool to be createdelasticPoolEdition
- edition of the elastic pool- Returns:
- Next stage of the SQL Server definition
-