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.

getFabricClusterDetail

Prev Next

Available in VPC

Overview

Get Fabric cluster details.

Request

Request parameters

Parameter name Required Type Restrictions Description
regionCode No String - Region code
Determine the Region in which the Fabric cluster details will be queried.
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 query
fabricClusterNo can be obtained through the getFabricClusterList action.
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 getFabricClusterDetail --regionCode KR --fabricClusterNo 13**

Response example

{
  "getFabricClusterDetailResponse": {
    "totalRows": 1,
    "fabricClusterList": [
      {
        "fabricClusterNo": "13**",
        "fabricClusterName": "test-***",
        "fabricClusterStatus": {
          "code": "RUN",
          "codeName": "Running"
        },
        "fabricClusterDescription": "test",
        "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",
            "createDate": "2025-12-11T18:36:58+0900"
          }
        ]
      }
    ],
    "requestId": "73a0f845-f9da-4a93-a177-8c209ce58e73",
    "returnCode": "0",
    "returnMessage": "success"
  }
}
<getFabricClusterDetailResponse>
  <requestId>73a0f845-f9da-4a93-a177-8c209ce58e73</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>test</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>
                <createDate>
                    2025-12-11T18:36:58+0900
                </createDate>
          </fabricClusterServerInstanceList>
        </fabricCluster>
    </fabricClusterList>
</getFabricClusterDetailResponse>