The latest service changes have not yet been reflected in this content. We will update the content as soon as possible. Please refer to the Korean version for information on the latest updates.
Available in VPC
Get an available GPU Fabric cluster pool.
Request
This section describes the request format. The method and URI are as follows:
| Method | URI |
|---|---|
| GET | POST | /vserver/v2/getFabricClusterPoolList |
This guide is based on the GET method. POST method call tests can be performed through Swagger in the API Gateway service of the NAVER Cloud Platform console.
Request headers
For information about the headers common to all Server APIs, see Server request headers.
Request query parameters
You can use the following query parameters with your request:
| Field | Type | Required | Description |
|---|---|---|---|
regionCode |
String | Required | Region code
|
zoneCode |
String | Required | Zone code
|
serverSpecCode |
String | Conditional | Filter by the server specification code.
|
serverProductCode |
String | Conditional | Filter by the server product code.
|
responseFormatType |
String | Optional | Format of the response data
|
Request example
The request example is as follows:
curl --location --request GET 'https://ncloud.apigw.ntruss.com/vserver/v2/getFabricClusterPoolList
?regionCode=KR
&zoneCode=2' \
--header 'x-ncp-apigw-timestamp: {Timestamp}' \
--header 'x-ncp-iam-access-key: {Access Key}' \
--header 'x-ncp-apigw-signature-v2: {API Gateway Signature}'
Response
This section describes the response format.
Response body
The response body includes the following data:
| Field | Type | Required | Description |
|---|---|---|---|
getFabricClusterPoolListResponse |
Object | - | Response result |
getFabricClusterPoolListResponse.requestId |
String | - | ID for the request
|
getFabricClusterPoolListResponse.returnCode |
String | - | Response code |
getFabricClusterPoolListResponse.returnMessage |
String | - | Response message |
Response status codes
For information about the response status codes common to all Server APIs, see Server response status codes.
Response example
The response example is as follows:
{
"getFabricClusterPoolListResponse": {
"totalRows": 1,
"fabricClusterPoolList": {
"fabricClusterPool": [
{
"fabricClusterPoolNo": 12,
"fabricClusterPoolName": "KVM GPU POOL",
"zoneCode": "KR"
}
]
},
"requestId": "9b0ed68f-b044-4fd8-b138-22397fba64df",
"returnCode": "0",
"returnMessage": "success"
}
}