Compute Cloud API, REST: GpuCluster.list
Retrieves the list of GPU clusters in the specified folder.
HTTP request
GET https://compute.api.il.nebius.cloud/compute/v1/gpuClusters
Query parameters
Parameter | Description |
---|---|
folderId | Required. ID of the folder to list GPU clusters in. To get the folder ID, make a list request. The maximum string length in characters is 50. |
pageSize | The maximum number of results per page to return. If the number of available results is larger than The maximum value is 1000. |
pageToken | Page token. To get the next page of results, set The maximum string length in characters is 100. |
filter | A filter expression that filters GPU clusters listed in the response. The expression must specify:
The maximum string length in characters is 1000. |
orderBy | A sorting expression that sorts GPU clusters listed in the response. The expression must specify the field name from GpuCluster and Default value: The maximum string length in characters is 100. |
Response
HTTP Code: 200 - OK
{
"gpuClusters": [
{
"id": "string",
"folderId": "string",
"createdAt": "string",
"name": "string",
"description": "string",
"labels": "object",
"status": "string",
"zoneId": "string",
"interconnectType": "string"
}
],
"nextPageToken": "string"
}
Field | Description |
---|---|
gpuClusters[] | object List of GPU clusters in the specified folder. |
gpuClusters[]. id |
string ID of GPU cluster. |
gpuClusters[]. folderId |
string ID of the folder that the GPU cluster belongs to. |
gpuClusters[]. createdAt |
string (date-time) Creation timestamp. String in RFC3339 text format. The range of possible values is from To work with values in this field, use the APIs described in the Protocol Buffers reference. In some languages, built-in datetime utilities do not support nanosecond precision (9 digits). |
gpuClusters[]. name |
string Name of the GPU cluster. The name is unique within the folder. |
gpuClusters[]. description |
string Description of the GPU cluster. |
gpuClusters[]. labels |
object GPU cluster labels as |
gpuClusters[]. status |
string Status of the GPU cluster.
|
gpuClusters[]. zoneId |
string ID of the availability zone where the GPU cluster resides. |
gpuClusters[]. interconnectType |
string Type of interconnect used for this GPU cluster.
|
nextPageToken | string Token for getting the next page of the list. If the number of results is greater than the specified pageSize, use Each subsequent page will have its own |