SqlServer.UpdateStages.WithElasticPool Interface

public static interface SqlServer.UpdateStages.WithElasticPool

A SQL Server definition for specifying elastic pool.

Method Summary

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

Create new elastic pool in the SQL Server.

abstract Update withNewElasticPool(String elasticPoolName, ElasticPoolEdition elasticPoolEdition, String[] databaseNames)

Create new elastic pool in the SQL Server.

abstract Update withoutElasticPool(String elasticPoolName)

Removes elastic pool from the SQL Server.

Method Details

withNewElasticPool


public abstract SqlServer.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 abstract SqlServer.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

withoutElasticPool


public abstract 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

Applies to