SqlElasticPool.DefinitionStages.WithStandardEdition<ParentT> Interface

Type Parameters

ParentT

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

public interface WithStandardEdition extends SqlElasticPool.DefinitionStages.WithAttach

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

Method Summary

Modifier and Type Method and Description
SqlElasticPool.DefinitionStages.WithStandardEdition<ParentT> withDatabaseDtuMax(SqlElasticPoolStandardMaxEDTUs eDTU)

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

SqlElasticPool.DefinitionStages.WithStandardEdition<ParentT> withDatabaseDtuMin(SqlElasticPoolStandardMinEDTUs eDTU)

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

SqlElasticPool.DefinitionStages.WithStandardEdition<ParentT> withReservedDtu(SqlElasticPoolStandardEDTUs eDTU)

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

SqlElasticPool.DefinitionStages.WithStandardEdition<ParentT> withStorageCapacity(SqlElasticPoolStandardStorage storageCapacity)

Sets the storage capacity for the SQL Azure Database Elastic Pool.

Inherited Members

Method Details

withDatabaseDtuMax

public SqlElasticPool.DefinitionStages.WithStandardEdition withDatabaseDtuMax(SqlElasticPoolStandardMaxEDTUs 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 SqlElasticPool.DefinitionStages.WithStandardEdition withDatabaseDtuMin(SqlElasticPoolStandardMinEDTUs 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 SqlElasticPool.DefinitionStages.WithStandardEdition withReservedDtu(SqlElasticPoolStandardEDTUs 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.

withStorageCapacity

public SqlElasticPool.DefinitionStages.WithStandardEdition withStorageCapacity(SqlElasticPoolStandardStorage storageCapacity)

Sets the storage capacity for the SQL Azure Database Elastic Pool.

Parameters:

storageCapacity - storage capacity for the SQL Azure Database Elastic Pool

Returns:

The next stage of the definition.

Applies to