SqlServer.UpdateStages.WithElasticPool Interface

public interface WithElasticPool

A SQL Server definition for specifying elastic pool.

Method Summary

Modifier and Type Method and Description
SqlServer.Update withNewElasticPool(String elasticPoolName, ElasticPoolEdition elasticPoolEdition)

Create new elastic pool in the SQL Server.

SqlServer.Update withNewElasticPool(String elasticPoolName, ElasticPoolEdition elasticPoolEdition, String... databaseNames)

Create new elastic pool in the SQL Server.

SqlServer.Update withNewElasticPool(String elasticPoolName, ElasticPoolEditions elasticPoolEdition)

Create new elastic pool in the SQL Server.

SqlServer.Update withNewElasticPool(String elasticPoolName, ElasticPoolEditions elasticPoolEdition, String... databaseNames)

Create new elastic pool in the SQL Server.

SqlServer.Update withoutElasticPool(String elasticPoolName)

Removes elastic pool from the SQL Server.

Method Details

withNewElasticPool

public Update withNewElasticPool(String elasticPoolName, ElasticPoolEdition elasticPoolEdition)

Create 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 update

withNewElasticPool

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

Create 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 update

withNewElasticPool

public Update withNewElasticPool(String elasticPoolName, ElasticPoolEditions elasticPoolEdition)

Create 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 update

withNewElasticPool

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

Create 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 update

withoutElasticPool

public 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

Applies to