---
title: "getFabricClusterPoolList"
slug: "cli-vserver-fabriccluster-getfabricclusterpoollist"
updated: 2026-05-21T09:02:02Z
published: 2026-05-21T09:11:32Z
canonical: "cli-gov.ncloud-docs.com/cli-vserver-fabriccluster-getfabricclusterpoollist"
---

> ## Documentation Index
> Fetch the complete documentation index at: https://cli-gov.ncloud-docs.com/llms.txt
> Use this file to discover all available pages before exploring further.

# getFabricClusterPoolList

VPC 환경에서 이용 가능합니다.

## 개요

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

## 요청

### 요청 파라미터

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