Elastic Pools - List By Server
Gets all elastic pools in a server.
GET https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/elasticPools?api-version=2021-11-01
GET https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/elasticPools?$skip={$skip}&api-version=2021-11-01
URI Parameters
Name | In | Required | Type | Description |
---|---|---|---|---|
resource
|
path | True |
string |
The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal. |
server
|
path | True |
string |
The name of the server. |
subscription
|
path | True |
string |
The subscription ID that identifies an Azure subscription. |
api-version
|
query | True |
string |
The API version to use for the request. |
$skip
|
query |
integer int64 |
The number of elements in the collection to skip. |
Responses
Name | Type | Description |
---|---|---|
200 OK |
Succeeded |
|
Other Status Codes |
*** Error Responses: ***
|
Examples
Get all elastic pools in a server
Sample request
Sample response
{
"value": [
{
"id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-2369/providers/Microsoft.Sql/servers/sqlcrudtest-8069/elasticPools/sqlcrudtest-2729",
"name": "sqlcrudtest-2729",
"type": "Microsoft.Sql/servers/elasticPools",
"location": "Japan East",
"kind": null,
"sku": {
"name": "GP_Gen4_2",
"tier": "GeneralPurpose",
"capacity": 2
},
"properties": {
"creationDate": "2017-02-10T01:27:21.32Z",
"state": "Ready",
"maxSizeBytes": 5242880000,
"perDatabaseSettings": {
"minCapacity": 0.25,
"maxCapacity": 1
},
"zoneRedundant": true,
"licenseType": "LicenseIncluded"
}
},
{
"id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-2369/providers/Microsoft.Sql/servers/sqlcrudtest-8069/elasticPools/sqlcrudtest-3191",
"name": "sqlcrudtest-3191",
"type": "Microsoft.Sql/servers/elasticPools",
"location": "Japan East",
"kind": null,
"sku": {
"name": "BasicPool",
"tier": "Basic",
"capacity": 50
},
"properties": {
"creationDate": "2017-02-10T01:26:26.45Z",
"state": "Ready",
"maxSizeBytes": 5242880000,
"perDatabaseSettings": {
"minCapacity": 0,
"maxCapacity": 5
}
}
},
{
"id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-2369/providers/Microsoft.Sql/servers/sqlcrudtest-8069/elasticPools/sqlcrudtest-8102",
"name": "sqlcrudtest-8102",
"type": "Microsoft.Sql/servers/elasticPools",
"location": "Japan East",
"kind": null,
"sku": {
"name": "BasicPool",
"tier": "Basic",
"capacity": 50
},
"properties": {
"creationDate": "2017-02-10T01:25:25.033Z",
"state": "Ready",
"maxSizeBytes": 5242880000,
"perDatabaseSettings": {
"minCapacity": 0,
"maxCapacity": 5
}
}
}
]
}
Definitions
Name | Description |
---|---|
Elastic |
An elastic pool. |
Elastic |
The license type to apply for this elastic pool. |
Elastic |
The result of an elastic pool list request. |
Elastic |
Per database settings of an elastic pool. |
Elastic |
The state of the elastic pool. |
Sku |
An ARM Resource SKU. |
ElasticPool
An elastic pool.
Name | Type | Description |
---|---|---|
id |
string |
Resource ID. |
kind |
string |
Kind of elastic pool. This is metadata used for the Azure portal experience. |
location |
string |
Resource location. |
name |
string |
Resource name. |
properties.creationDate |
string |
The creation date of the elastic pool (ISO8601 format). |
properties.highAvailabilityReplicaCount |
integer |
The number of secondary replicas associated with the elastic pool that are used to provide high availability. Applicable only to Hyperscale elastic pools. |
properties.licenseType |
The license type to apply for this elastic pool. |
|
properties.maintenanceConfigurationId |
string |
Maintenance configuration id assigned to the elastic pool. This configuration defines the period when the maintenance updates will will occur. |
properties.maxSizeBytes |
integer |
The storage limit for the database elastic pool in bytes. |
properties.minCapacity |
number |
Minimal capacity that serverless pool will not shrink below, if not paused |
properties.perDatabaseSettings |
The per database settings for the elastic pool. |
|
properties.state |
The state of the elastic pool. |
|
properties.zoneRedundant |
boolean |
Whether or not this elastic pool is zone redundant, which means the replicas of this elastic pool will be spread across multiple availability zones. |
sku |
The elastic pool SKU. The list of SKUs may vary by region and support offer. To determine the SKUs (including the SKU name, tier/edition, family, and capacity) that are available to your subscription in an Azure region, use the
|
|
tags |
object |
Resource tags. |
type |
string |
Resource type. |
ElasticPoolLicenseType
The license type to apply for this elastic pool.
Name | Type | Description |
---|---|---|
BasePrice |
string |
|
LicenseIncluded |
string |
ElasticPoolListResult
The result of an elastic pool list request.
Name | Type | Description |
---|---|---|
nextLink |
string |
Link to retrieve next page of results. |
value |
Array of results. |
ElasticPoolPerDatabaseSettings
Per database settings of an elastic pool.
Name | Type | Description |
---|---|---|
maxCapacity |
number |
The maximum capacity any one database can consume. |
minCapacity |
number |
The minimum capacity all databases are guaranteed. |
ElasticPoolState
The state of the elastic pool.
Name | Type | Description |
---|---|---|
Creating |
string |
|
Disabled |
string |
|
Ready |
string |
Sku
An ARM Resource SKU.
Name | Type | Description |
---|---|---|
capacity |
integer |
Capacity of the particular SKU. |
family |
string |
If the service has different generations of hardware, for the same SKU, then that can be captured here. |
name |
string |
The name of the SKU, typically, a letter + Number code, e.g. P3. |
size |
string |
Size of the particular SKU |
tier |
string |
The tier or edition of the particular SKU, e.g. Basic, Premium. |