SqlElasticPool.DefinitionStages.WithBasicEdition<ParentT> Interface

Type Parameters

ParentT

the stage of the parent definition to return to after attaching this definition

Implements

WithAttach<ParentT>

public static interface SqlElasticPool.DefinitionStages.WithBasicEdition
extends WithAttach<ParentT>

The SQL Elastic Pool definition to set the eDTU and storage capacity limits for a basic pool.

Method Summary

Modifier and Type Method and Description
abstract WithBasicEdition<ParentT> withDatabaseDtuMax(SqlElasticPoolBasicMaxEDTUs eDTU)

Sets the maximum number of eDTU a database in the pool can consume.

abstract WithBasicEdition<ParentT> withDatabaseDtuMin(SqlElasticPoolBasicMinEDTUs eDTU)

Sets the minimum number of eDTU for each database in the pool are regardless of its activity.

abstract WithBasicEdition<ParentT> withReservedDtu(SqlElasticPoolBasicEDTUs eDTU)

Sets the total shared eDTU for the SQL Azure Database Elastic Pool.

Method Details

withDatabaseDtuMax

public abstract SqlElasticPool.DefinitionStages.WithBasicEdition withDatabaseDtuMax(SqlElasticPoolBasicMaxEDTUs eDTU)

Sets the maximum number of eDTU a database in the pool can consume.

Parameters:

eDTU - maximum eDTU a database in the pool can consume

Returns:

The next stage of the definition.

withDatabaseDtuMin

public abstract SqlElasticPool.DefinitionStages.WithBasicEdition withDatabaseDtuMin(SqlElasticPoolBasicMinEDTUs eDTU)

Sets the minimum number of eDTU for each database in the pool are regardless of its activity.

Parameters:

eDTU - minimum eDTU for all SQL Azure databases

Returns:

The next stage of the definition.

withReservedDtu

public abstract SqlElasticPool.DefinitionStages.WithBasicEdition withReservedDtu(SqlElasticPoolBasicEDTUs eDTU)

Sets the total shared eDTU for the SQL Azure Database Elastic Pool.

Parameters:

eDTU - total shared eDTU for the SQL Azure Database Elastic Pool

Returns:

The next stage of the definition.

Applies to