ConfigurationResponsePagedResponse
A generic page of results, used by list endpoints across this API.
items object[]nullable
The items on this page.
Array [
idstring<uuid>
Unique identifier of the configuration.
namestringnullable
Human-readable name of the configuration.
cpuinteger<int32>
Number of virtual CPU cores.
raminteger<int32>
Amount of RAM, in gigabytes.
hddinteger<int32>
Disk size, in gigabytes.
]
totalinteger<int32>
Total number of items across all pages.
pageinteger<int32>
The current page number, starting at 1.
pageSizeinteger<int32>
Number of items per page.
totalPagesinteger<int32>
Total number of pages available.
hasNextPageboolean
Whether a next page is available.
ConfigurationResponsePagedResponse
{
"items": [
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "string",
"cpu": 0,
"ram": 0,
"hdd": 0
}
],
"total": 0,
"page": 0,
"pageSize": 0,
"totalPages": 0,
"hasNextPage": true
}