getFabricClusterPoolList

Prev Next

Available in VPC

Overview

Get an available Fabric cluster pool.

Request

Request parameters

Parameter name Required Type Restrictions Description
regionCode Yes String Region code
zoneCode Yes String Zone code
serverSpecCode Conditional String Filter by the server specification code.
  • Required when querying server specifications of the KVM hypervisor type.
  • See getServerSpecList.
serverProductCode Conditional String Filter by the server product code.
output No String Response result's format type
  • Options: xml | json
  • Default: json

Response

Response data type

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

Examples

Request example

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

Response example

{
  "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>