---
title: "getCloudHadoopMysqlInstanceList"
slug: "analytics-vhadoop-getcloudhadoopmysqlinstancelist"
tags: ["Cloud Hadoop"]
updated: 2026-07-23T09:04:38Z
published: 2026-07-23T09:04:38Z
canonical: "api.ncloud-docs.com/analytics-vhadoop-getcloudhadoopmysqlinstancelist"
---

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

# getCloudHadoopMysqlInstanceList

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

Hive 메타스토어와 연동 가능한 Cloud DB for MySQL을 조회합니다.

## 요청

요청 형식을 설명합니다. 요청 형식은 다음과 같습니다.

| 메서드 | URI |
| --- | --- |
| GET \| POST | /vhadoop/v2/getCloudHadoopMysqlInstanceList |

참고

가이드는 GET 방식 기준으로 안내합니다. POST 방식의 호출 테스트는 네이버 클라우드 플랫폼 콘솔의 API Gateway 서비스에서 Swagger를 통해서 가능합니다.

### 요청 헤더

Cloud Hadoop API에서 공통으로 사용하는 헤더에 대한 정보는 [Cloud Hadoop 요청 헤더](/docs/analytics-vhadoop#%EC%9A%94%EC%B2%AD%ED%97%A4%EB%8D%94)를 참조해 주십시오.

### 요청 쿼리 파라미터

요청 쿼리 파라미터에 대한 설명은 다음과 같습니다.

| 필드 | 타입 | 필수 여부 | 설명 |
| --- | --- | --- | --- |
| `regionCode` | String | Optional | 리전 코드 - [getRegionList](/docs/compute-vserver-server-common-getregionlist) 참조 - 조회 결과의 첫 번째 리전(기본값) |
| `cloudHadoopInstanceNo` | String | Required | 클러스터 인스턴스 번호 - [getCloudHadoopInstanceList](/docs/analytics-vhadoop-getcloudhadoopinstancelist) 참조 - 클러스터와 동일한 VPC에 설치된 MySQL만 조회 가능 |
| `responseFormatType` | String | Optional | 응답 데이터의 형식 - `xml` (기본값) \| `json` |

### 요청 예시

요청 예시는 다음과 같습니다.

```
curl --location --request GET 'https://ncloud.apigw.ntruss.com/vhadoop/v2/getCloudHadoopMysqlInstanceList
?regionCode=KR
&cloudHadoopInstanceNo=2707****
&responseFormatType=json' \
--header 'x-ncp-apigw-timestamp: {Timestamp}' \
--header 'x-ncp-iam-access-key: {Access Key}' \
--header 'x-ncp-apigw-signature-v2: {API Gateway Signature}'
```

## 응답

응답 형식을 설명합니다.

### 응답 바디

응답 바디에 대한 설명은 다음과 같습니다.

| 필드 | 타입 | 필수 여부 | 설명 |
| --- | --- | --- | --- |
| `CloudMysqlInstanceListForHiveMetaStoreResponse` | Object | - | 응답 결과 |
| `CloudMysqlInstanceListForHiveMetaStoreResponse.totalRows` | Integer | - | 응답 결과 수 |
| `CloudMysqlInstanceListForHiveMetaStoreResponse.CloudMysqlInstanceListForHiveMetaStore` | Array | - | [Cloud DB for MySQL 정보](/docs/analytics-vhadoop-getcloudhadoopmysqlinstancelist#CloudMysqlInstanceListForHiveMetaStore) |
| `CloudMysqlInstanceListForHiveMetaStoreResponse.requestId` | String | - | 요청에 대한 아이디 - UUID 형식 |
| `CloudMysqlInstanceListForHiveMetaStoreResponse.returnCode` | String | - | 응답 코드 |
| `CloudMysqlInstanceListForHiveMetaStoreResponse.returnMessage` | String | - | 응답 메시지 |

#### `CloudMysqlInstanceListForHiveMetaStore`

`CloudMysqlInstanceListForHiveMetaStore`에 대한 설명은 다음과 같습니다.

| 필드 | 타입 | 필수 여부 | 설명 |
| --- | --- | --- | --- |
| `cloudMysqlInstanceNo` | String | - | Cloud DB for MySQL 인스턴스 번호 |
| `cloudMysqlInstanceName` | String | - | Cloud DB for MySQL 인스턴스 이름 |
| `vpcName` | String | - | VPC 이름 |

### 응답 상태 코드

Cloud Hadoop API에서 공통으로 사용하는 응답 상태 코드에 대한 정보는 [Cloud Hadoop 응답 상태 코드](/docs/analytics-vhadoop#%EC%9D%91%EB%8B%B5%EC%83%81%ED%83%9C%EC%BD%94%EB%93%9C)를 참조해 주십시오.

### 응답 예시

응답 예시는 다음과 같습니다.

```
{
    "CloudMysqlInstanceListForHiveMetaStoreResponse": {
        "totalRows": 1,
        "cloudMysqlInstanceListForHiveMetaStore": [
            {
                "cloudMysqlInstanceNo": "18*****",
                "cloudMysqlInstanceName": "test",
                "vpcName": "vpc4hadoop"
            }
        ],
        "requestId": "e149ea85-****-****-****-7e606f2058ef",
        "returnCode": "0",
        "returnMessage": "success"
    }
}
```
