--- title: "getCloudMssqlProductList" slug: "cli-vmssql-getcloudmssqlproductlist" tags: ["Cloud DB for MSSQL"] updated: 2026-06-25T09:10:29Z published: 2026-06-25T09:10:29Z canonical: "cli-fin.ncloud-docs.com/cli-vmssql-getcloudmssqlproductlist" --- > ## 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. # getCloudMssqlProductList 사용 가능한 Cloud DB for MSSQL 서버 스펙 코드 목록을 조회합니다. ## 명령어 명령어 구문은 다음과 같습니다. ``` ncloud vmssql getCloudMssqlProductList [regionCode] [zoneCode] [cloudMssqlImageProductCode] [productCode] [exclusionProductCode] [output] ``` ### 파라미터 파라미터에 대한 설명은 다음과 같습니다. | 파라미터 | 타입 | 필수 여부 | 설명 | 제약 사항 | | --- | --- | --- | --- | --- | | regionCode | String | N | 리전 코드 - regionCode는 [getRegionList](/docs/cli-vserver-server-common-getregionlist) 액션을 통해서 획득 - default: getRegionList 조회 결과의 첫 번째 리전을 선택 | - | | zoneCode | String | N | Zone 코드 - zoneCode는 [getZoneList](/docs/cli-vserver-server-common-getzonelist) 액션을 통해서 획득 | - | | cloudMssqlImageProductCode | String | Y | Cloud DB for MSSQL 이미지 상품 코드 - Cloud DB for MSSQL 이미지 상품에서 생성 가능한 서버 스펙 상품 목록 조회 - cloudMssqlImageProductCode는 [getCloudMssqlImageProductList](/docs/cli-vmssql-getcloudmssqlimageproductlist) 액션의 productCode로 획득 | - | | productCode | String | N | 조회할 Cloud DB for MSSQL 상품 코드 - productCode는 [getCloudMssqlProductList](/docs/cli-vmssql-getcloudmssqlproductlist) 액션의 productCode로 획득 | - | | exclusionProductCode | String | N | 제외할 Cloud DB for MSSQL 상품 코드 - exclusionProductCode는 [getCloudMssqlProductList](/docs/cli-vmssql-getcloudmssqlproductlist) 액션의 productCode로 획득 | - | | output | String | N | 응답 결과의 포맷 타입 - options: xml \| json - default: json | - | ## 응답 ### 응답 데이터 타입 - ProductList 타입 | ProductList extends CommonResponse | 설명 | | --- | --- | | private Integer totalRows; | 조회된 목록의 총 개수 | | private List 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 vmssql getCloudMssqlProductList --regionCode FKR --cloudMssqlImageProductCode SW.VMSSL.OS.WND64.WINNT.SVR2016.MSSQL.15020005.SE.B100 --productCode SVR.VMSSL.STAND.C016.M032.NET.HDD.B100.G001 ``` ### 응답 예시 응답 예시는 다음과 같습니다. 응답 결과 포맷 타입(output)이 json 일 때 ``` { "getCloudMssqlProductListResponse": { "requestId": "f4dda363-8389-42e4-aefe-5cd4798ec7d9", "returnCode": 0, "returnMessage": "success", "totalRows": 1, "productList": [ { "productCode": "SVR.VMSSL.STAND.C016.M032.NET.HDD.B100.G001", "productName": "vCPU 16EA, Memory 64GB", "productType": { "code": "STAND", "codeName": "Standard" }, "productDescription": "vCPU 16개, 메모리 64GB", "infraResourceType": { "code": "VMSSL", "codeName": "Cloud DB For MSSQL (VPC)" }, "cpuCount": 16, "memorySize": 68719476736, "diskType": { "code": "NET", "codeName": "Network Storage" } } ] } } ``` 응답 결과 포맷 타입(responseFormatType)이 xml 일 때 ``` f4dda363-8389-42e4-aefe-5cd4798ec7d9 0 success 1 SVR.VMSSL.STAND.C016.M032.NET.HDD.B100.G001 vCPU 16EA, Memory 64GB STAND Standard vCPU 16개, 메모리 64GB VMSSL Cloud DB For MSSQL (VPC) 16 68719476736 NET Network Storage ```