---
title: "getFabricClusterPoolList"
slug: "cli-vserver-fabriccluster-getfabricclusterpoollist"
updated: 2026-04-23T08:56:56Z
published: 2026-04-23T08:58:53Z
canonical: "cli.ncloud-docs.com/cli-vserver-fabriccluster-getfabricclusterpoollist"
---

> ## 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

<p class="platform-info type-vpc">VPC 환경에서 이용 가능합니다.</p>

## 개요<a name="개요"></a>

사용 가능한 Fabric Cluster Pool을 조회합니다.

## 요청<a name="요청"></a>

### 요청 파라미터<a name="요청파라미터"></a>

| 파라미터명             | 필수 여부       | 타입     | 제약 사항 | 설명                                                                                                                                                    |
|-------------------|-------------|--------|-------|-------------------------------------------------------------------------------------------------------------------------------------------------------|
| regionCode        | Yes         | String |       | 리전 코드<ul><li>[getRegionList](/docs/cli-vserver-server-common-getregionlist) 참조</li></ul>                                                              |
| zoneCode          | Yes         | String |       | 존 코드<ul><li>[getZoneList](/docs/cli-vserver-server-common-getzonelist) 참조</li></ul>                                                                   |
| serverSpecCode    | Conditional | String |       | 서버 스펙 코드로 필터링<ul><li>KVM 하이퍼바이저 타입의 서버 스펙을 조회하는 경우, 필수 입력</li><li>[getServerSpecList](/docs/cli-vserver-server-common-getserverspeclist) 참조</li></ul> |
| serverProductCode | Conditional | String |       | 서버 상품 코드로 필터링<ul><li>베어메탈 서버 스펙을 조회하는 경우, 필수 입력</li><li>[getServerProductList](/docs/cli-vserver-server-common-getserverproductlist) 참조</li></ul>     |
| output | No | String | | 응답 결과의 포맷 타입<ul><li>Options : xml \| json</li><li>Default : json</li></ul> |

## 응답<a name="응답"></a>

### 응답 데이터 타입<a name="응답데이터타입"></a>

- getFabricClusterPoolList 타입

| getFabricClusterPoolList extends CommonResponse                                 |
|---------------------------------------------------------------------------------|
| private Integer totalRows;                                                      |
| private List\<FabricClusterPool\> getFabricClusterPoolList = new ArrayList<>(); |

| FabricClusterPool                     |
|---------------------------------------|
| private String fabricClusterPoolNo;   |
| private String fabricClusterPoolName; |

## 예시<a name="예시"></a>

### 요청 예시<a name="요청예시"></a>

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

### 응답 예시<a name="응답예시"></a>

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

```xml
<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>
```
