--- title: "getCloudPostgresqlBackupDetailList" slug: "cli-vpostgresql-getcloudpostgresqlbackupdetaillist" tags: ["Cloud DB for PostgreSQL", "Backup", "VPC"] updated: 2026-06-25T09:10:29Z published: 2026-06-25T09:10:29Z canonical: "cli-fin.ncloud-docs.com/cli-vpostgresql-getcloudpostgresqlbackupdetaillist" --- > ## 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. # getCloudPostgresqlBackupDetailList Cloud DB for PostgreSQL 백업 상세 목록을 조회합니다. ## 명령어 명령어 구문은 다음과 같습니다. ``` ncloud vpostgresql getCloudPostgresqlBackupDetailList [regionCode] [cloudPostgresqlInstanceNo] [pageNo] [pageSize] [output] ``` ### 파라미터 파라미터에 대한 설명은 다음과 같습니다. | 파라미터 | 타입 | 필수 여부 | 설명 | 제약 사항 | | ------------------------- | ------- | --------- | ------------------------------------------------------------ | ------------------------ | | regionCode | String | N | 리전 코드
- regionCode는 [getRegionList](/docs/cli-vserver-server-common-getregionlist) 액션을 통해서 획득
- default: getRegionList 조회 결과의 첫 번째 리전을 선택 | | | cloudPostgresqlInstanceNo | String | Y | Cloud DB for PostgreSQL 인스턴스 번호
- cloudPostgresqlInstanceNo는 [getCloudPostgresqlInstanceList](/docs/cli-vpostgresql-getcloudpostgresqlinstancelist) 액션을 통해서 획득 | | | pageNo | Integer | N | 페이징 된 결과의 페이지 번호
- 결괏값을 pageNo, pageSize를 이용하여 페이징 처리 가능 | - Min: 0 | | pageSize | Integer | N | 페이징 시 보여줄 각 페이지 사이즈
- 결괏값을 pageNo, pageSize를 이용하여 페이징 처리 가능
- pageNo 입력 시 반드시 입력 | - Min: 1
- Max: 1000 | | output | String | N | 응답 결과의 포맷 타입
- options: xml \| json
- default: json | - | ## 응답 ### 응답 데이터 타입 - CloudPostgresqlBackupDetailList 타입 | CloudPostgresqlBackupDetailList extends CommonResponse | 설명 | | ------------------------------------------------------------ | -------------------------------------- | | private Integer totalRows; | 조회된 목록의 총 개수 | | private List<CloudPostgresqlBackupDetail> cloudPostgresqlBackupDetailList = new ArrayList<>(); | Cloud DB for PostgreSQL 백업 상세 목록 | - CloudPostgresqlBackupDetail 타입 | CloudPostgresqlBackupDetail | 설명 | | --------------------------------- | ------------------------ | | private String fileName; | 백업 파일 이름 | | private Date startTime; | 백업 시작 시간 | | private Date endTime; | 백업 종료 시간 | | private Long backupSize; | 백업 사이즈 | | private Long dataStorageSize; | 데이터 스토리지 사이즈 | | private Long archivedWalFileSize; | Archived Wal File 사이즈 | ## 예시 호출과 응답 예시를 설명합니다. ### 호출 예시 호출 예시는 다음과 같습니다. ``` ncloud vpostgresql getCloudPostgresqlBackupDetailList --regionCode FKR --cloudPostgresqlInstanceNo ****890 ``` ### 응답 예시 응답 예시는 다음과 같습니다. 응답 결과 포맷 타입(output)이 json 일 때 ```json { "getCloudPostgresqlBackupDetailListResponse": { "requestId": "11ca8ac0-841c-4776-aef5-3feb6eb9440e", "returnCode": "0", "returnMessage": "success", "totalRows": "1", "cloudPostgresqlBackupDetailList": [ { "fileName": "20210528", "startTime": "2021-05-28T02:10:00+0900", "endTime": "2021-05-28T02:10:10+0900", "backupSize": "571482767", "dataStorageSize": "10737418240", "archivedWalFileSize": "0" } ] } } ``` 응답 결과 포맷 타입(output)이 xml 일 때 ```xml d76f9b88-fb9f-44b9-b7a1-f19b4710681e 0 success 1 20210528 2021-05-28T02:10:00+0900 2021-05-28T02:10:10+0900 571482767 10737418240 0 ```