---
title: "getCloudHadoopImageProductList"
slug: "analytics-vhadoop-getcloudhadoopimageproductlist"
tags: ["Cloud Hadoop"]
updated: 2026-07-23T09:04:38Z
published: 2026-07-23T09:04:38Z
canonical: "api.ncloud-docs.com/analytics-vhadoop-getcloudhadoopimageproductlist"
---
> ## 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.
# getCloudHadoopImageProductList
VPC 환경에서 이용 가능합니다.
Cloud Hadoop에서 사용할 수 있는 클러스터 이미지를 조회합니다.
## 요청
요청 형식을 설명합니다. 요청 형식은 다음과 같습니다.
| 메서드 | URI |
| :--- | :--- |
| GET \| POST | /vhadoop/v2/getCloudHadoopImageProductList |
:::(Info) (참고)
가이드는 GET 방식 기준으로 안내합니다. POST 방식의 호출 테스트는 네이버 클라우드 플랫폼 콘솔의 API Gateway 서비스에서 Swagger를 통해서 가능합니다.
:::
### 요청 헤더
Cloud Hadoop API에서 공통으로 사용하는 헤더에 대한 정보는 [Cloud Hadoop 요청 헤더](/docs/analytics-vhadoop#요청헤더)를 참조해 주십시오.
### 요청 쿼리 파라미터
요청 쿼리 파라미터에 대한 설명은 다음과 같습니다.
| 필드 | 타입 | 필수 여부 | 설명 |
| :---- | :---- | :---- | :---- |
| `regionCode` | String | Optional | 리전 코드- [getRegionList](/docs/compute-vserver-server-common-getregionlist) 참조
|
| `productCode` | String | Optional | 클러스터 이미지 코드로 필터링 |
| `generationCode` | String | Optional | 서버 세대 코드 |
| `exclusionProductCode` | String | Optional | 클러스터 이미지 코드를 제외하여 필터링 |
| `responseFormatType` | String | Optional | 응답 데이터의 형식 |
### 요청 예시
요청 예시는 다음과 같습니다.
```shell
curl --location --request GET 'https://ncloud.apigw.ntruss.com/vhadoop/v2/getCloudHadoopImageProductList
?regionCode=KR
&productCode=SW.VCHDP.LNX64.CNTOS.0708.HDP.13.B050
&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}'
```
## 응답
응답 형식을 설명합니다.
### 응답 바디
응답 바디에 대한 설명은 다음과 같습니다.
| 필드 | 타입 | 필수 여부 | 설명 |
| :---- | :---- | :---- | :---- |
| `getCloudHadoopImageProductListResponse` | Object | - | 응답 결과- [ProductList](/docs/common-vapidatatype-productlist) 참조
|
| `getCloudHadoopImageProductListResponse.requestId` | String | - | 요청에 대한 아이디 |
| `getCloudHadoopImageProductListResponse.returnCode` | String | - | 응답 코드 |
| `getCloudHadoopImageProductListResponse.returnMessage` | String | - | 응답 메시지 |
### 응답 상태 코드
Cloud Hadoop API에서 공통으로 사용하는 응답 상태 코드에 대한 정보는 [Cloud Hadoop 응답 상태 코드](/docs/analytics-vhadoop#응답상태코드)를 참조해 주십시오.
### 응답 예시
응답 예시는 다음과 같습니다.
```json
{
"getCloudHadoopImageProductListResponse": {
"totalRows": 1,
"productList": [
{
"productCode": "SW.VCHDP.LNX64.CNTOS.0708.HDP.13.B050",
"productName": "Cloud Hadoop 1.3",
"productType": {
"code": "LINUX",
"codeName": "리눅스"
},
"productDescription": "CentOS 7.8 with Cloud Hadoop 1.3",
"infraResourceType": {
"code": "SW",
"codeName": "Software"
},
"baseBlockStorageSize": 53687091200,
"platformType": {
"code": "LNX64",
"codeName": "Linux 64 Bit"
},
"osInformation": "CentOS 7.8 with Cloud Hadoop 1.3 (64-bit)",
"generationCode": "G2"
}
],
"requestId": "56e3b947-****-****-****-93f758d15758",
"returnCode": "0",
"returnMessage": "success"
}
}
```