---
title: "getHypervisorTypeList"
slug: "cli-vserver-server-common-gethypervisortypelist"
updated: 2026-04-23T08:56:57Z
published: 2026-04-23T08:58:53Z
canonical: "cli.ncloud-docs.com/cli-vserver-server-common-gethypervisortypelist"
---

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

# getHypervisorTypeList

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

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

하이퍼바이저 타입 리스트를 조회합니다.

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

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

| 파라미터명      | 필수 여부 | 타입     | 제약 사항 | 설명                                                                                                                                                                                            |
|------------|-------|--------|-------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| regionCode | No    | String |       | - 리전 코드<br/>블록 스토리지 인스턴스 리스트가 조회될 리전(Region) 결정 가능<br/>regionCode는 [getRegionList](/docs/cli-vserver-server-common-getregionlist) 액션을 통해 획득 가능<br/>Default : getRegionList 조회 결과의 첫 번째 리전을 선택 |
| output | No | String | | 응답 결과의 포맷 타입<ul><li>Options : xml \| json</li><li>Default : json</li></ul> |

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

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

- HypervisorTypeList 타입

| HypervisorTypeList extends CommonResponse                              |
|------------------------------------------------------------------------|
| private Integer totalRows;                                             |
| private List&lt;CommonCode&gt; hypervisorTypeList = new ArrayList<>(); |

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

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

```
ncloud vserver getHypervisorTypeList --regionCode KR
```

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

```xml
<getHypervisorTypeListResponse>
    <requestId></requestId>
    <returnCode>0</returnCode>
    <returnMessage>success</returnMessage>
    <totalRows>2</totalRows>
    <hypervisorTypeList>
        <hypervisorType>
            <code>XEN</code>
            <codeName>XEN</codeName>
        </hypervisorType>
        <hypervisorType>
            <code>KVM</code>
            <codeName>KVM</codeName>
        </hypervisorType>
    </hypervisorTypeList>
</getHypervisorTypeListResponse>
```
