updateFabricClusterServerInstances

Prev Next

VPC環境で利用できます。

概要

Fabric Clusterに含まれたサーバインスタンスリストを変更します。サーバリストが変更されるまで数分から数十分かかります。

リクエスト

リクエストパラメータ

パラメータ名 必須の有無 タイプ 制限事項 説明
regionCode No String - リージョンコード
変更対象 Fabric Clusterのリージョン(Region)を決定可能
regionCodeはgetRegionListアクションを通じて取得可能
デフォルト: getRegionList照会結果の最初のリージョンを選択
fabricClusterNo Yes String - 変更対象の Fabric Cluster番号
fabricClusterNoはgetFabricClusterListアクションを通じて取得可能
clusterModeServerInstanceNoList.N No List<String> - クラスタモードに設定するサーバインスタンス番号リスト
Fabric Clusterに設定された Fabric Cluster Poolで作成されたサーバのみ設定可能
既存のクラスタモード設定をリクエストしたリストで上書き
空のリストでリクエストするか省略すると、既存のクラスタモード設定がすべて解除される
clusterModeServerInstanceNoはgetServerInstanceListアクションを通じて取得可能
- 既存のクラスタモードサーバの照会: fabricClusterNoと fabricClusterMode=CLUSTERで絞り込み
- 追加可能なシングルモードサーバの照会: fabricClusterPoolNoと fabricClusterMode=SINGLEで絞り込み
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 updateFabricClusterServerInstances --regionCode KR --fabricClusterNo 13** --clusterModeServerInstanceNoList 1** 2**

レスポンス例

{
  "updateFabricClusterServerInstancesResponse": {
    "totalRows": 1,
    "fabricClusterList": [
      {
        "fabricClusterNo": "13**",
        "fabricClusterName": "test-***",
        "fabricClusterStatus": {
          "code": "SETUP",
          "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": "8b4841e9-0ca6-4e0e-84ef-054d42de4464",
    "returnCode": "0",
    "returnMessage": "success"
  }
}
<updateFabricClusterServerInstancesResponse>
    <requestId>8b4841e9-0ca6-4e0e-84ef-054d42de4464</requestId>
    <returnCode>0</returnCode>
    <returnMessage>success</returnMessage>
    <totalRows>1</totalRows>
    <fabricClusterList>
        <fabricCluster>
            <fabricClusterNo>13**</fabricClusterNo>
            <fabricClusterName>test-***</fabricClusterName>
            <fabricClusterStatus>
                <code>SETUP</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>
</updateFabricClusterServerInstancesResponse>