SqlElasticPools Interface

public interface SqlElasticPools extends SupportsCreating<SqlElasticPool.DefinitionStages.Blank>,SupportsDeletingById,SupportsGettingById,SupportsBatchCreation,SupportsDeletingByParent,HasManager,HasInner

Entry point to SQL Elastic Pool management API.

Method Summary

Modifier and Type Method and Description
SqlElasticPool getBySqlServer(SqlServer sqlServer, String name)

Gets the SQLElasticPool based on the SQLServer instance and SQLElasticPool name.

SqlElasticPool getBySqlServer(String resourceGroup, String sqlServerName, String name)

Gets the SQLElasticPool based on the resource group name, SQLServer name and SQLElasticPool name.

List<SqlElasticPool> listBySqlServer(SqlServer sqlServer)

Gets the SQLElasticPool based on the SQLServer.

List<SqlElasticPool> listBySqlServer(String resourceGroupName, String sqlServerName)

Lists resources of the specified type in the specified resource group and SQLServer.

Inherited Members

Method Details

getBySqlServer

public SqlElasticPool getBySqlServer(SqlServer sqlServer, String name)

Gets the SQLElasticPool based on the SQLServer instance and SQLElasticPool name.

Parameters:

sqlServer - the instance of SQLServer.
name - the name of SQLElasticPool

Returns:

an immutable representation of the SQLElasticPool

getBySqlServer

public SqlElasticPool getBySqlServer(String resourceGroup, String sqlServerName, String name)

Gets the SQLElasticPool based on the resource group name, SQLServer name and SQLElasticPool name.

Parameters:

resourceGroup - the name of resource group.
sqlServerName - the name of SQLServer.
name - the name of SQLElasticPool.

Returns:

an immutable representation of the SQLElasticPool

listBySqlServer

public List listBySqlServer(SqlServer sqlServer)

Gets the SQLElasticPool based on the SQLServer.

Parameters:

sqlServer - the instance of SQLServer

Returns:

the list of SQLElasticPools in a SQLServer

listBySqlServer

public List listBySqlServer(String resourceGroupName, String sqlServerName)

Lists resources of the specified type in the specified resource group and SQLServer.

Parameters:

resourceGroupName - the name of the resource group to list the resources from
sqlServerName - the name of SQLServer

Returns:

the list of SQLElasticPools in a SQLServer

Applies to