Available in VPC
Change the list of server instances included in a Fabric cluster. It may take several minutes to tens of minutes for the server list to update.
Request
This section describes the request format. The method and URI are as follows:
| Method | URI |
|---|---|
| GET | POST | /vserver/v2/updateFabricClusterServerInstances |
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 | Optional | Region code
|
fabricClusterNo |
String | Required | Fabric cluster number
|
clusterModeServerInstanceNoList.N |
String | Optional | List of server instance numbers to configure in cluster mode
|
responseFormatType |
String | Optional | Format of the response data
|
When entering a request query parameter, see the following:
- The updateFabricClusterServerInstances API updates the existing cluster mode settings with the requested list. Therefore, if you want to retain the previously configured server instances, include their instance numbers in the request.
- Requesting
clusterModeServerInstanceNoListas an empty list or omitting it will disable all existing cluster mode settings.
Request example
The request example is as follows:
curl --location --request GET 'https://ncloud.apigw.ntruss.com/vserver/v2/updateFabricClusterServerInstances
?regionCode=KR
&fabricClusterNo=13**
&clusterModeServerInstanceNoList.1=1**
&clusterModeServerInstanceNoList.2=2**
&responseFormatType=json' \
--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 |
|---|---|---|---|
updateFabricClusterServerInstancesResponse |
Object | - | Response result
|
updateFabricClusterServerInstancesResponse.requestId |
String | - | ID for the request
|
updateFabricClusterServerInstancesResponse.returnCode |
String | - | Response code |
updateFabricClusterServerInstancesResponse.returnMessage |
String | - | Response message |
Response status codes
For information about the HTTP status codes common to all Server APIs, see Server response status codes.
Response example
The response example is as follows:
{
"updateFabricClusterServerInstancesResponse": {
"totalRows": 1,
"fabricClusterList": [
{
"fabricClusterNo": "13**",
"fabricClusterName": "test-***",
"fabricClusterStatus": {
"code": "SETUP",
"codeName": "Configuring"
},
"fabricClusterDescription": "test",
"regionCode": "KR",
"zoneCode": "KR-1",
"vpcNo": "***84",
"fabricClusterPoolNo": "***01",
"fabricClusterPoolName": "test-***",
"fabricClusterPoolCode": "test-***",
"createDate": "2025-12-12T13:36:17+0900",
"fabricClusterServerInstanceList": []
}
],
"requestId": "8b4841e9-0ca6-4e0e-84ef-054d42de4464",
"returnCode": "0",
"returnMessage": "success"
}
}