createFabricCluster

Prev Next

Available in VPC

Overview

Create 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 created.
regionCode can be obtained through the getRegionList action.
Default: Select the first Region of the getRegionList query result.
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
zoneCode Yes String - Zone code
Determine the zone where the Fabric cluster list will be created.
zoneCode can be obtained through the getZoneList action.
vpcNo Yes String - VPC number
Determine the VPC in which the Fabric cluster will be created.
vpcNo can be obtained through the getVpcList action.
fabricClusterPoolNo Yes String - Fabric cluster pool number
Determine the pool in which the Fabric cluster will be created.
fabricClusterPoolNo can be obtained through the getFabricClusterPoolList 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 createFabricCluster --regionCode KR --fabricClusterName test-*** --fabricClusterDescription test --zoneCode KR-1 --vpcNo ***84 --fabricClusterPoolNo ***01

Response example

{
  "createFabricClusterResponse": {
    "totalRows": 1,
    "fabricClusterList": [
      {
        "fabricClusterNo": "13**",
        "fabricClusterName": "test-***",
        "fabricClusterStatus": {
          "code": "CREAT",
          "codeName": "Creating"
        },
        "fabricClusterDescription": "test",
        "regionCode": "KR",
        "zoneCode": "KR-1",
        "vpcNo": "***84",
        "fabricClusterPoolNo": "***01",
        "fabricClusterPoolName": "test-***",
        "fabricClusterPoolCode": "test-***",
        "createDate": "2025-12-12T13:36:17+0900",
        "fabricClusterServerInstanceList": []
      }
    ],
    "requestId": "0e14ac63-aacb-4cde-8d75-39822da26e8c",
    "returnCode": "0",
    "returnMessage": "success"
  }
}
<createFabricClusterResponse>
    <requestId>0e14ac63-aacb-4cde-8d75-39822da26e8c</requestId>
    <returnCode>0</returnCode>
    <returnMessage>success</returnMessage>
    <totalRows>1</totalRows>
    <fabricClusterList>
        <fabricCluster>
            <fabricClusterNo>13**</fabricClusterNo>
            <fabricClusterName>test-***</fabricClusterName>
            <fabricClusterStatus>
                <code>CREAT</code>
                <codeName>Creating</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></fabricClusterServerInstanceList>
        </fabricCluster>
    </fabricClusterList>
</createFabricClusterResponse>