SqlServer.DefinitionStages.WithElasticPool Interface

public interface WithElasticPool

A SQL Server definition for specifying elastic pool.

Method Summary

Modifier and Type Method and Description
SqlElasticPool.DefinitionStages.Blank<SqlServer.DefinitionStages.WithCreate> defineElasticPool(String elasticPoolName)

Begins the definition of a new SQL Elastic Pool to be added to this server.

SqlServer.DefinitionStages.WithCreate withNewElasticPool(String elasticPoolName, ElasticPoolEdition elasticPoolEdition)

Creates new elastic pool in the SQL Server.

SqlServer.DefinitionStages.WithCreate withNewElasticPool(String elasticPoolName, ElasticPoolEdition elasticPoolEdition, String... databaseNames)

Creates new elastic pool in the SQL Server.

SqlServer.DefinitionStages.WithCreate withNewElasticPool(String elasticPoolName, ElasticPoolEditions elasticPoolEdition)

Creates new elastic pool in the SQL Server.

SqlServer.DefinitionStages.WithCreate withNewElasticPool(String elasticPoolName, ElasticPoolEditions elasticPoolEdition, String... databaseNames)

Creates new elastic pool in the SQL Server.

Method Details

defineElasticPool

public SqlElasticPool.DefinitionStages.Blank 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

public WithCreate withNewElasticPool(String elasticPoolName, ElasticPoolEdition elasticPoolEdition)

Creates new elastic pool in the SQL Server.

Parameters:

elasticPoolName - name of the elastic pool to be created
elasticPoolEdition - edition of the elastic pool

Returns:

Next stage of the SQL Server definition

withNewElasticPool

public WithCreate withNewElasticPool(String elasticPoolName, ElasticPoolEdition elasticPoolEdition, String... databaseNames)

Creates new elastic pool in the SQL Server.

Parameters:

elasticPoolName - name of the elastic pool to be created
elasticPoolEdition - edition of the elastic pool
databaseNames - names of the database to be included in the elastic pool

Returns:

Next stage of the SQL Server definition

withNewElasticPool

public WithCreate withNewElasticPool(String elasticPoolName, ElasticPoolEditions elasticPoolEdition)

Creates new elastic pool in the SQL Server.

Parameters:

elasticPoolName - name of the elastic pool to be created
elasticPoolEdition - edition of the elastic pool

Returns:

Next stage of the SQL Server definition

withNewElasticPool

public WithCreate withNewElasticPool(String elasticPoolName, ElasticPoolEditions elasticPoolEdition, String... databaseNames)

Creates new elastic pool in the SQL Server.

Parameters:

elasticPoolName - name of the elastic pool to be created
elasticPoolEdition - edition of the elastic pool
databaseNames - names of the database to be included in the elastic pool

Returns:

Next stage of the SQL Server definition

Applies to