updateFabricCluster

Prev Next

Available in VPC

Overview

Edit a Fabric cluster.

Request

Request parameters

Parameter name Required Type Restrictions Description
regionCode No String - Region code
Determine the Region in which the Fabric cluster will be changed.
regionCode can be obtained through the getRegionList action.
Default: Select the first Region of the getRegionList query result.
fabricClusterNo Yes String - Fabric cluster number to change
fabricClusterNo can be obtained through the getFabricClusterList action.
fabricClusterName Yes String Min: 3, Max: 30
Only lowercase English letters, numbers, and special character "-" are allowed, and it must start with an English letter.
It must end with an English letter or number.
- Fabric cluster name
fabricClusterDescription No String Min: 0, Max: 1000 Bytes - Fabric cluster description
output No String Response result's format type
  • Options: xml | json
  • Default: json

Response

Response data type

  • FabricClusterList type
FabricClusterList extends CommonResponse
private Integer totalRows;
private List<FabricCluster> fabricClusterList = new ArrayList<>();
FabricCluster
private String fabricClusterNo;
private String fabricClusterName;
private CommonCode fabricClusterStatus;
private String fabricClusterDescription;
private String regionCode;
private String zoneCode;
private String vpcNo;
private String fabricClusterPoolNo;
private String fabricClusterPoolName;
private String fabricClusterPoolCode;
private Date createDate;
private Long serverCount;
private List<FabricClusterServerInstance> fabricClusterServerInstanceList;

Examples

Request example

ncloud vserver updateFabricCluster --regionCode KR --fabricClusterNo 13** --fabricClusterName test-*** --fabricClusterDescription updated-description

Response example

{
  "updateFabricClusterResponse": {
    "totalRows": 1,
    "fabricClusterList": [
      {
        "fabricClusterNo": "13**",
        "fabricClusterName": "test-***",
        "fabricClusterStatus": {
          "code": "RUN",
          "codeName": "Running"
        },
        "fabricClusterDescription": "updated-description",
        "regionCode": "KR",
        "zoneCode": "KR-1",
        "vpcNo": "***84",
        "fabricClusterPoolNo": "***01",
        "fabricClusterPoolName": "test-***",
        "fabricClusterPoolCode": "test-***",
        "createDate": "2025-12-12T13:36:17+0900"
        "fabricClusterServerInstanceList": [
          {
            "serverInstanceNo": "****59627",
            "serverName": "test-***",
            "serverInstanceStatus": {
              "code": "RUN",
              "codeName": "Server RUN status"
            },
            "serverInstanceOperation": {
              "code": "NULL",
              "codeName": "Server NULL OP"
            },
            "serverInstanceStatusName": "running"
          }
        ]
      }
    ],
    "requestId": "e7039be4-3b54-4713-a03c-69dc3dcdd4e7",
    "returnCode": "0",
    "returnMessage": "success"
  }
}

<updateFabricClusterResponse>
    <requestId>e7039be4-3b54-4713-a03c-69dc3dcdd4e7</requestId>
    <returnCode>0</returnCode>
    <returnMessage>success</returnMessage>
    <totalRows>1</totalRows>
    <fabricClusterList>
        <fabricCluster>
            <fabricClusterNo>13**</fabricClusterNo>
            <fabricClusterName>test-***</fabricClusterName>
            <fabricClusterStatus>
                <code>RUN</code>
                <codeName>Running</codeName>
            </fabricClusterStatus>
            <fabricClusterDescription>updated-description</fabricClusterDescription>
            <regionCode>KR</regionCode>
            <zoneCode>KR-1</zoneCode>
            <vpcNo>***84</vpcNo>
            <fabricClusterPoolNo>***01</fabricClusterPoolNo>
            <fabricClusterPoolName>test-***</fabricClusterPoolName>
            <fabricClusterPoolCode>test-***</fabricClusterPoolCode>
            <createDate>2025-12-12T13:36:17+0900</createDate>
            <fabricClusterServerInstanceList>
                <serverInstanceNo>****59627</serverInstanceNo>
                <serverName>test-***</serverName>
                <serverInstanceStatus>
                  <code>RUN</code>
                  <codeName>Server RUN status</codeName>
                </serverInstanceStatus>
                <serverInstanceOperation>
                  <code>NULL</code>
                  <codeName>Server NULL OP</codeName>
                </serverInstanceOperation>
                <serverInstanceStatusName>
                    running
                </serverInstanceStatusName>
          </fabricClusterServerInstanceList>
        </fabricCluster>
    </fabricClusterList>
</updateFabricClusterResponse>