--- title: "getCloudPostgresqlImageProductList" slug: "cli-vpostgresql-getcloudpostgresqlimageproductlist" tags: ["Cloud DB for PostgreSQL"] updated: 2026-06-25T09:10:29Z published: 2026-06-25T09:10:29Z canonical: "cli-fin.ncloud-docs.com/cli-vpostgresql-getcloudpostgresqlimageproductlist" --- > ## 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. # getCloudPostgresqlImageProductList Cloud DB for PostgreSQL 상품 코드 목록을 조회합니다. ## 명령어 명령어 구문은 다음과 같습니다. ``` ncloud vpostgresql getCloudPostgresqlImageProductList [regionCode] [productCode] [exclusionProductCode] [generationCode] [output] ``` ### 파라미터 파라미터에 대한 설명은 다음과 같습니다. | 파라미터 | 타입 | 필수 여부 | 설명 | 제약 사항 | | -------------------- | ------ | --------- | ------------------------------------------------------------ | --------- | | regionCode | String | N | 리전 코드
- regionCode는 [getRegionList](/docs/cli-vserver-server-common-getregionlist) 액션을 통해 획득
- default: getRegionList 조회 결과의 첫 번째 리전을 선택 | - | | productCode | String | N | 조회할 Cloud DB for PostgreSQL 이미지 상품 코드
- productCode는 [getCloudPostgresqlImageProductList](/docs/cli-vpostgresql-getcloudpostgresqlimageproductlist) 액션의 productCode로 획득 | - | | exclusionProductCode | String | N | 제외할 Cloud DB for PostgreSQL 이미지 상품 코드
- exclusionProductCode는 [getCloudPostgresqlImageProductList](/docs/cli-vpostgresql-getcloudpostgresqlimageproductlist) 액션의 productCode로 획득 | - | | generationCode | String | N | 세대 코드
- Options: G2 | - | | output | String | N | 응답 결과의 포맷 타입
- options: xml \| json
- default: json | - | ## 응답 ### 응답 데이터 타입 - ProductList 타입 | ProductList extends CommonResponse | 설명 | | ------------------------------------------------------------ | --------------------- | | private Integer totalRows; | 조회된 목록의 총 개수 | | private List<Product> productList = new ArrayList<>(); | 상품 목록 | - Product 타입 | Product | 설명 | | ------------------------------------------- | ------------------------------------------------------------ | | private String productCode; | 서버의 스펙이나 서버 OS를 정의한 NAVER Cloud Platform에서 관리하고 있는 상품코드 | | private String productName; | 상품 이름 | | private CommonCode productType; | 상품 유형 | | private String productDescription; | 상품 설명 | | private CommonCode infraResourceType; | 인프라 자원 유형 | | private CommonCode infraResourceDetailType; | 인프라 자원 상세 유형 | | private Integer cpuCount; | CPU 개수 | | private Long memorySize; | 메모리 사이즈 | | private Long baseBlockStorageSize; | 기본 블록 스토리지 사이즈 | | private CommonCode platformType; | 플랫폼 유형 | | private String osInformation; | OS 정보 | | private CommonCode diskType; | 디스크 유형 | | private String dbKindCode; | DB 유형 코드 | | private Long addBlockStorageSize; | 추가 블록 스토리지 사이즈 | | private String generationCode; | 세대 코드 | ## 예시 호출과 응답 예시를 설명합니다. ### 호출 예시 호출 예시는 다음과 같습니다. ``` ncloud vpostgresql getCloudPostgresqlImageProductList --regionCode FKR ``` ### 응답 예시 응답 예시는 다음과 같습니다. 응답 결과 포맷 타입(output)이 json 일 때 ```json { "getCloudPostgresqlImageProductListResponse": { "requestId": "15607e06-e159-40d6-a6e3-00d9f7ba167c", "returnCode": 0, "returnMessage": "success", "totalRows": 3, "productList": [ { "productCode": "SW.VPGSL.OS.LNX64.CNTOS.0708.PGSQL.133.B050", "productName": "PostgreSQL 13.3", "productType": { "code": "LINUX", "codeName": "Linux" }, "productDescription": "CentOS 7.8 with PostgreSQL 13.3", "infraResourceType": { "code": "SW", "codeName": "Software" }, "baseBlockStorageSize": 53687091200, "platformType": { "code": "LNX64", "codeName": "Linux 64 Bit" }, "osInformation": "CentOS 7.8 with PostgreSQL 13.3 (64-bit)", "generationCode": "G2" }, { "productCode": "SW.VPGSL.OS.LNX64.CNTOS.0708.PGSQL.137.B050", "productName": "PostgreSQL 13.7", "productType": { "code": "LINUX", "codeName": "Linux" }, "productDescription": "CentOS 7.8 with PostgreSQL 13.7", "infraResourceType": { "code": "SW", "codeName": "Software" }, "baseBlockStorageSize": 53687091200, "platformType": { "code": "LNX64", "codeName": "Linux 64 Bit" }, "osInformation": "CentOS 7.8 with PostgreSQL 13.7 (64-bit)", "generationCode": "G2" }, { "productCode": "SW.VPGSL.OS.LNX64.CNTOS.0708.PGSQL.1310.B050", "productName": "PostgreSQL 13.10", "productType": { "code": "LINUX", "codeName": "Linux" }, "productDescription": "CentOS 7.8 with PostgreSQL 13.10", "infraResourceType": { "code": "SW", "codeName": "Software" }, "baseBlockStorageSize": 53687091200, "platformType": { "code": "LNX64", "codeName": "Linux 64 Bit" }, "osInformation": "CentOS 7.8 with PostgreSQL 13.10 (64-bit)", "generationCode": "G2" } ] } } ``` 응답 결과 포맷 타입(output)이 xml 일 때 ```xml 15607e06-e159-40d6-a6e3-00d9f7ba167c 0 success 3 SW.VPGSL.OS.LNX64.CNTOS.0708.PGSQL.133.B050 PostgreSQL 13.3 LINUX Linux CentOS 7.8 with PostgreSQL 13.3 SW Software 53687091200 LNX64 Linux 64 Bit CentOS 7.8 with PostgreSQL 13.3 (64-bit) G2 SW.VPGSL.OS.LNX64.CNTOS.0708.PGSQL.137.B050 PostgreSQL 13.7 LINUX Linux CentOS 7.8 with PostgreSQL 13.7 SW Software 53687091200 LNX64 Linux 64 Bit CentOS 7.8 with PostgreSQL 13.7 (64-bit) G2 SW.VPGSL.OS.LNX64.CNTOS.0708.PGSQL.1310.B050 PostgreSQL 13.10 LINUX Linux CentOS 7.8 with PostgreSQL 13.10 SW Software 53687091200 LNX64 Linux 64 Bit CentOS 7.8 with PostgreSQL 13.10 (64-bit) G2 ```