createFabricCluster

Prev Next

VPC環境で利用できます。

概要

Fabric Clusterを作成します。

リクエスト

リクエストパラメータ

パラメータ名 必須の有無 タイプ 制限事項 説明
regionCode No String - リージョンコード
Fabric Clusterが作成されるリージョン(Region)を決定可能
regionCodeはgetRegionListアクションを通じて取得可能
デフォルト: getRegionList照会結果の最初のリージョンを選択
fabricClusterName Yes String 最小: 3、最大: 30
英字の小文字、数字、記号の「-」のみ入力可能で、先頭文字は英字のみ使用
末尾文字は英字または数字のみ使用
- Fabric Cluster名
fabricClusterDescription No String 最小: 0, 最大: 1000 Bytes - Fabric Clusterの説明
zoneCode Yes String - Zoneコード
Fabric Clusterが作成される Zoneを決める
zoneCodeはgetZoneListアクションを通じて取得可能
vpcNo Yes String - VPC番号
Fabric Clusterが作成される VPCを決める
vpcNoはgetVpcListアクションを通じて取得可能
fabricClusterPoolNo Yes String - Fabric Cluster Pool番号
Fabric Clusterが作成される Poolを決める
fabricClusterPoolNoはgetFabricClusterPoolListアクションを通じて取得可能
output No String レスポンス結果の形式タイプ
  • オプション: xml | json
  • デフォルト: json

レスポンス

レスポンスデータタイプ

  • FabricClusterListタイプ
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;

リクエスト例

ncloud vserver createFabricCluster --regionCode KR --fabricClusterName test-*** --fabricClusterDescription test --zoneCode KR-1 --vpcNo ***84 --fabricClusterPoolNo ***01

レスポンス例

{
  "createFabricClusterResponse": {
    "totalRows": 1,
    "fabricClusterList": [
      {
        "fabricClusterNo": "13**",
        "fabricClusterName": "test-***",
        "fabricClusterStatus": {
          "code": "CREAT",
          "codeName": "作成中"
        },
        "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>作成中</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>