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
resourceGroupName
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.

serverName
path True

string

The name of the server.

subscriptionId
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

ServerUsageListResult

Successfully retrieved the server usages.

Other Status Codes

*** Error Responses: ***

  • 404 SubscriptionDoesNotHaveServer - The requested server was not found

  • 404 ServerNotInSubscriptionResourceGroup - Specified server does not exist in the specified resource group and subscription.

Examples

List servers usages.

Sample request

GET https://management.azure.com/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/sqlcrudtest-6730/providers/Microsoft.Sql/servers/sqlcrudtest-9007/usages?api-version=2021-11-01

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
ServerUsage

Usage metric of a server.

ServerUsageListResult

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

ServerUsage[]

Array of results.