Documentation Index

Fetch the complete documentation index at: https://cli.ncloud-docs.com/llms.txt

Use this file to discover all available pages before exploring further.

changeFabricClusterDescription

Prev Next

Available in VPC

Overview

Change the Fabric cluster description.

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.
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 changeFabricClusterDescription --regionCode KR --fabricClusterNo 13** --fabricClusterDescription updated-description

Response example

{
  "changeFabricClusterDescriptionResponse": {
    "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"
  }
}

<changeFabricClusterDescriptionResponse>
    <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>
</changeFabricClusterDescriptionResponse>