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.

getFabricClusterPoolList

Prev Next

VPC環境で利用できます。

概要

使用可能な Fabric Cluster Poolを照会します。

リクエスト

リクエストパラメータ

パラメータ名 必須の有無 タイプ 制限事項 説明
regionCode Yes String リージョンコード
zoneCode Yes String ゾーンコード
serverSpecCode Conditional String サーバスペックコードで絞り込み
  • KVMハイパーバイザタイプのサーバスペックを照会する場合、必ず入力
  • getServerSpecListを参照
serverProductCode Conditional String サーバ商品コードで絞り込み
  • ベアメタルサーバスペックを照会する場合、必ず入力
  • getServerProductListを参照
output No String レスポンス結果の形式タイプ
  • オプション: xml | json
  • デフォルト: json

レスポンス

レスポンスデータタイプ

  • getFabricClusterPoolListタイプ
getFabricClusterPoolList extends CommonResponse
private Integer totalRows;
private List<FabricClusterPool> getFabricClusterPoolList = new ArrayList<>();
FabricClusterPool
private String fabricClusterPoolNo;
private String fabricClusterPoolName;

リクエスト例

ncloud vserver getFabricClusterPoolList --regionCode KR --zoneCode KR-1 --serverSpecCode gp8ap56-g3

レスポンス例

{
  "getFabricClusterPoolListResponse": {
    "totalRows": 1,
    "fabricClusterPoolList": {
      "fabricClusterPool": [
        {
          "fabricClusterPoolNo": "***01",
          "fabricClusterPoolName": "test-***"
        }
      ]
    },
    "requestId": "0c7c37fb-6bae-4b99-8fda-53421f3a81a4",
    "returnCode": "0",
    "returnMessage": "success"
  }
}
<fabricClusterPoolList>
  <requestId>0c7c37fb-6bae-4b99-8fda-53421f3a81a4</requestId>
  <returnCode>0</returnCode>
  <returnMessage>success</returnMessage>
  <totalRows>1</totalRows>
  <fabricClusterPoolList>
    <fabricClusterPool>
      <fabricClusterPoolNo>***01</fabricClusterPoolNo>
      <fabricClusterPoolName>test-***</fabricClusterPoolName>
    </fabricClusterPool>
  </fabricClusterPoolList>
</fabricClusterPoolList>