Server Usages - List By Server
Gets server usages.
GET https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/usages?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. |
Responses
Name | Type | Description |
---|---|---|
200 OK |
Successfully retrieved the server usages. |
|
Other Status Codes |
*** Error Responses: ***
|
Examples
List servers usages.
Sample request
Sample response
{
"value": [
{
"properties": {
"displayName": "Database Throughput Unit Quota",
"currentValue": 0,
"limit": 45000,
"unit": "DTUs"
},
"id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/sqlcrudtest-9007/usages/server_dtu_quota",
"name": "server_dtu_quota",
"type": "Microsoft.Sql/servers/usages"
},
{
"properties": {
"displayName": "Database Throughput Unit Quota",
"currentValue": 0,
"limit": 45000,
"unit": "DTUs"
},
"id": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default-SQL-SouthEastAsia/providers/Microsoft.Sql/servers/sqlcrudtest-9007/usages/server_dtu_quota_current",
"name": "server_dtu_quota_current",
"type": "Microsoft.Sql/servers/usages"
}
]
}
Definitions
Name | Description |
---|---|
Server |
Usage metric of a server. |
Server |
A list of server usage metrics. |
ServerUsage
Usage metric of a server.
Name | Type | Description |
---|---|---|
id |
string |
Resource ID. |
name |
string |
Resource name. |
properties.currentValue |
number |
Current value of the metric. |
properties.displayName |
string |
User-readable name of the metric. |
properties.limit |
number |
Boundary value of the metric. |
properties.unit |
string |
Unit of the metric. |
type |
string |
Resource type. |
ServerUsageListResult
A list of server usage metrics.
Name | Type | Description |
---|---|---|
nextLink |
string |
Link to retrieve next page of results. |
value |
Array of results. |