---
title: "getServerInstanceDetail"
slug: "cli-vserver-server-getserverinstancedetail"
tags: ["Server"]
updated: 2026-04-23T09:04:51Z
published: 2026-04-23T09:07:28Z
canonical: "cli-fin.ncloud-docs.com/cli-vserver-server-getserverinstancedetail"
---

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

# getServerInstanceDetail

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

서버 인스턴스 번호를 이용하여 서버 인스턴스 상세 정보를 조회합니다.

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

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

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

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

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

- ServerInstanceList 타입

| ServerInstanceList extends CommonResponse                              |
|------------------------------------------------------------------------|
| private Integer totalRows;                                             |
| private List\<ServerInstance\> serverInstanceList = new ArrayList<>(); |

| ServerInstance                                                 |
|----------------------------------------------------------------|
| private String serverInstanceNo;                               |
| private String serverName;                                     |
| private String serverDescription;                              |
| private Integer cpuCount;                                      |
| private Long memorySize;                                       |
| private CommonCode platformType;                               |
| private String loginKeyName;                                   |
| private String publicIpInstanceNo;                             |
| private String publicIp;                                       |
| private CommonCode serverInstanceStatus;                       |
| private CommonCode serverInstanceOperation;                    |
| private String serverInstanceStatusName;                       |
| private Date createDate;                                       |
| private Date uptime;                                           |
| private String serverImageProductCode;                         |
| private String serverProductCode;                              |
| private Boolean isProtectServerTermination;                    |
| private String zoneCode;                                       |
| private String regionCode;                                     |
| private String vpcNo;                                          |
| private String subnetNo;                                       |
| private NetworkInterfaceNoList networkInterfaceNoList;         |
| private String initScriptNo;                                   |
| private CommonCode serverInstanceType;                         |
| private CommonCode baseBlockStorageDiskType;                   |
| private CommonCode baseBlockStorageDiskDetailType;             |
| private String placementGroupNo;                               |
| private String placementGroupName;                             |
| private String memberServerImageInstanceNo;                    |
| private List\<BlockDevicePartition\> blockDevicePartitionList; |
| private CommonCode hypervisorType;                             |
| private String serverImageNo;                                  |
| private String serverSpecCode;                                 |
| private List\<String\> eventList;                              |

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

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

```
ncloud vserver getServerInstanceDetail --regionCode FKR --serverInstanceNo ***4299
```

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

```xml
<getServerInstanceDetailResponse>
  <returnCode>0</returnCode>
  <returnMessage>success</returnMessage>
  <totalRows>1</totalRows>
  <serverInstanceList>
    <serverInstance>
      <serverInstanceNo>***4299</serverInstanceNo>
      <serverName>test-***</serverName>
      <serverDescription></serverDescription>
      <cpuCount>2</cpuCount>
      <memorySize>4294967296</memorySize>
      <platformType>
        <code>LNX64</code>
        <codeName>Linux 64 Bit</codeName>
      </platformType>
      <loginKeyName>test-***</loginKeyName>
      <publicIpInstanceNo>***7551</publicIpInstanceNo>
      <publicIp>***.***.111.215</publicIp>
      <serverInstanceStatus>
        <code>RUN</code>
        <codeName>Server run state</codeName>
      </serverInstanceStatus>
      <serverInstanceOperation>
        <code>NULL</code>
        <codeName>Server NULL OP</codeName>
      </serverInstanceOperation>
      <serverInstanceStatusName>running</serverInstanceStatusName>
      <createDate>2020-08-19T15:05:07+0900</createDate>
      <uptime>2020-08-19T15:08:09+0900</uptime>
      <serverImageProductCode>SW.VSVR.OS.LNX64.CNTOS.0703.B050</serverImageProductCode>
      <serverProductCode>SVR.VSVR.STAND.C002.M004.NET.SSD.B050.G001</serverProductCode>
      <isProtectServerTermination>false</isProtectServerTermination>
      <zoneCode>FKR-1</zoneCode>
      <regionCode>FKR</regionCode>
      <vpcNo>***04</vpcNo>
      <subnetNo>***43</subnetNo>
      <networkInterfaceNoList>
        <networkInterfaceNo>***87</networkInterfaceNo>
      </networkInterfaceNoList>
      <initScriptNo></initScriptNo>
      <serverInstanceType>
        <code>STAND</code>
        <codeName>Standard</codeName>
      </serverInstanceType>
      <baseBlockStorageDiskType>
        <code>NET</code>
        <codeName>Network Storage</codeName>
      </baseBlockStorageDiskType>
      <baseBlockStorageDiskDetailType>
        <code>SSD</code>
        <codeName>SSD</codeName>
      </baseBlockStorageDiskDetailType>
      <placementGroupNo>***61</placementGroupNo>
      <placementGroupName>test-***</placementGroupName>
      <hypervisorType>
        <code>XEN</code>
        <codeName>XEN</codeName>
      </hypervisorType>
      <serverImageNo>61</serverImageNo>
      <serverSpecCode>mi2-g3i</serverSpecCode>
      <eventList>
        <event>Scheduled Maintenance Event | 2025-03-19 PM 10:11 (UTC+09:00) migration</event>
      </eventList>      
    </serverInstance>
  </serverInstanceList>
</getServerInstanceDetailResponse>
```
