SqlServer.DefinitionStages.WithElasticPool Interface

public static interface SqlServer.DefinitionStages.WithElasticPool

A SQL Server definition for specifying elastic pool.

Method Summary

Modifier and Type Method and Description
abstract Blank<WithCreate> defineElasticPool(String elasticPoolName)

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

abstract WithCreate withNewElasticPool(String elasticPoolName, ElasticPoolEdition elasticPoolEdition)

Creates new elastic pool in the SQL Server.

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

Creates new elastic pool in the SQL Server.

Method Details

defineElasticPool

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

Applies to