deleteFabricCluster

Prev Next

VPC環境で利用できます。

概要

Fabric Clusterを削除します。

リクエスト

リクエストパラメータ

パラメータ名 必須の有無 タイプ 制限事項 説明
regionCode No String - リージョンコード
削除対象 Fabric Clusterのリージョン(Region)を決定可能
regionCodeはgetRegionListアクションを通じて取得可能
デフォルト: getRegionList照会結果の最初のリージョンを選択
fabricClusterNo Yes String - 削除対象の Fabric Cluster番号
fabricClusterNoはgetFabricClusterListアクションを通じて取得可能
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 deleteFabricCluster --regionCode KR --fabricClusterNo 13**

レスポンス例

{
  "deleteFabricClusterResponse": {
    "totalRows": 1,
    "fabricClusterList": [
      {
        "fabricClusterNo": "13**",
        "fabricClusterName": "test-***",
        "fabricClusterStatus": {
          "code": "TERMTING",
          "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": "8fbd5179-cf91-405f-9286-cbf74a149c7f",
    "returnCode": "0",
    "returnMessage": "success"
  }
}
<deleteFabricClusterResponse>
  <requestId>ac5c4795-0e78-4cc9-ae68-086420c662f2</requestId>
  <returnCode>0</returnCode>
  <returnMessage>success</returnMessage>
  <totalRows>1</totalRows>
  <fabricClusterList>
    <fabricCluster>
        <fabricClusterNo>13**</fabricClusterNo>
        <fabricClusterName>test-***</fabricClusterName>
        <fabricClusterStatus>
            <code>TERMTING</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>
</deleteFabricClusterResponse>