For the complete documentation index, see llms.txt. This page is also available as Markdown.

Size

The "Size" subsection presents endpoints for acquiring resource specifications, including hardware, memory, and processing capabilities.

Get sizes

GET {{BASE_URL}}/api/providers/{id}/locations/{locationId}/groups/{number}/sizes

Get all the available sizes that can be used to create a particular resource type ( vm, k8s, db , app ).

Path Parameters

Name
Type
Description

id*

String

Provider ID

locationId*

String

Location ID

number*

Number

0

Headers

Name
Type
Description

Authorization*

String

Bearer Token

[
    {
        "_id": "6548a383e2442d14b6bf96c9",
        "provider": "6548a383e2442d14b6bf9687",
        "location": "northeurope",
        "group": 0,
        "name": "Standard_DC2as_v5",
        "vCPUs": 2,
        "memoryGB": 8,
        "spaceGB": 50,
        "uncachedDiskIOPS": 3200
    },
    {
        "_id": "6548a383e2442d14b6bf96ca",
        "provider": "6548a383e2442d14b6bf9687",
        "location": "northeurope",
        "group": 0,
        "name": "Standard_DC4as_v5",
        "vCPUs": 4,
        "memoryGB": 16,
        "spaceGB": 100,
        "uncachedDiskIOPS": 6400
    },
    {
        "_id": "6548a383e2442d14b6bf96cb",
        "provider": "6548a383e2442d14b6bf9687",
        "location": "northeurope",
        "group": 0,
        "name": "Standard_DC8as_v5",
        "vCPUs": 8,
        "memoryGB": 32,
        "spaceGB": 200,
        "uncachedDiskIOPS": 12800
    }
]

Last updated