Compute Cloud API, REST: DiskType.list
Retrieves the list of disk types for the specified folder.
HTTP request
GET https://compute.api.il.nebius.cloud/compute/v1/diskTypes
Query parameters
Parameter | Description |
---|---|
pageSize | The maximum number of results per page to return. If the number of available results is larger than pageSize, the service returns a nextPageToken that can be used to get the next page of results in subsequent list requests. The maximum value is 1000. |
pageToken | Page token. To get the next page of results, set pageToken to the nextPageToken returned by a previous list request. The maximum string length in characters is 100. |
Response
HTTP Code: 200 - OK
{
"diskTypes": [
{
"id": "string",
"description": "string",
"zoneIds": [
"string"
]
}
],
"nextPageToken": "string"
}
Field | Description |
---|---|
diskTypes[] | object List of disk types. |
diskTypes[]. id |
string ID of the disk type. |
diskTypes[]. description |
string Description of the disk type. 0-256 characters long. |
diskTypes[]. zoneIds[] |
string Array of availability zones where the disk type is available. |
nextPageToken | string This token allows you to get the next page of results for list requests. If the number of results is larger than pageSize, use the nextPageToken as the value for the pageToken query parameter in the next list request. Each subsequent list request will have its own nextPageToken to continue paging through the results. |