--- title: "getCloudCacheBackupDetailList" slug: "cli-vcache-getcloudcachebackupdetaillist" tags: ["Backup", "Cloud DB for Cache"] updated: 2026-06-25T09:10:27Z published: 2026-06-25T09:10:27Z canonical: "cli-fin.ncloud-docs.com/cli-vcache-getcloudcachebackupdetaillist" --- > ## 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. # getCloudCacheBackupDetailList ## 개요 사용 가능한 Cloud DB for Cache 백업 상세 정보 목록을 조회합니다. :::(info) (참고) Cloud DB for Cache CLI는 지원하는 DBMS 범위에 따라 두 가지 버전을 제공합니다. * getCloudCacheBackupDetailList CLI: Valkey, Redis DBMS 이용 가능 * getCloudRedisBackupDetailList CLI: Redis DBMS 이용 가능 ::: ## getCloudCacheBackupDetailList CLI getCloudCacheBackupDetailList CLI의 요청, 응답 형식을 설명합니다. ### 요청 #### 요청 파라미터 | 파라미터명 | 필수 여부 | 타입 | 제약 사항 | 설명 | |----------------------|-------|--------|-------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | regionCode | No | String | | - 리전 코드
Cloud DB for Cache 백업 상세 목록이 조회될 리전(Region) 결정 가능
regionCode는 [getRegionList](/docs/cli-server-getregionlist) 액션을 통해 획득 가능
Default: getRegionList 조회 결과의 첫 번째 리전을 선택 | | cloudCacheInstanceNo | Yes | String | | - Cloud DB for Cache 인스턴스 번호
백업 상세 정보를 조회할 Cloud DB for Cache 인스턴스 번호 결정 가능
cloudCacheInstanceNo는 [getCloudCacheInstanceList](/docs/cli-vcache-getcloudcacheinstancelist) 액션을 통해 획득 가능 | | output | No | String | | - 응답 결과의 포맷 타입
Options: xml \| json
Default: json | ### 응답 #### 응답 데이터 타입 - CloudCacheBackupDetailList 타입 | CloudCacheBackupDetailList extends CommonResponse | |----------------------------------------------------------------------------------------| | private Integer totalRows; | | private List<CloudCacheBackupDetail> cloudCacheInstanceList = new ArrayList<>(); | | CloudCacheBackupDetail | |-------------------------------| | private Date startTime; | | private Date endTime; | | private Long backupSize; | | private Long dataStorageSize; | ### 예시 #### 호출 예시 ``` ncloud vcache getCloudCacheBackupDetailList --regionCode FKR --cloudCacheInstanceNo ****821 ``` #### 응답 예시 ```xml 2e320a76-469e-4f28-81b0-a03ea6c8053b 0 success 1 2021-05-12T16:00:00+0900 2021-05-12T16:00:00+0900 116 10737418240 ``` ## getCloudRedisBackupDetailList CLI getCloudRedisBackupDetailList CLI의 요청, 응답 형식을 설명합니다. ### 요청 #### 요청 파라미터 | 파라미터명 | 필수 여부 | 타입 | 제약 사항 | 설명 | |----------------------|-------|--------|-------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | regionCode | No | String | | - 리전 코드
regionCode는 [getRegionList](/docs/cli-vserver-server-common-getregionlist) 액션을 통해서 획득 가능.
Default: getRegionList 조회 결과의 첫 번째 리전 선택 | | cloudRedisInstanceNo | Yes | String | | - Cloud DB for Cache 인스턴스 번호
백업 상세 정보를 조회할 Cloud DB for Cache 인스턴스 번호를 결정 가능
cloudRedisInstanceNo는 [getCloudCacheInstanceList](/docs/cli-vcache-getcloudcacheinstancelist) 액션을 통해서 획득 가능 | | output | No | String | | - 응답 결과의 포맷 타입
Options: xml \| json
Default: xml | ### 응답 #### 응답 데이터 타입 - CloudRedisBackupDetailList 타입 | CloudRedisBackupDetailList extends CommonResponse | |----------------------------------------------------------------------------------------| | private Integer totalRows; | | private List<CloudRedisBackupDetail> cloudRedisInstanceList = new ArrayList<>(); | | CloudRedisBackupDetail | |-------------------------------| | private Date startTime; | | private Date endTime; | | private Long backupSize; | | private Long dataStorageSize; | | private String fileName; | ### 예시 #### 호출 ```http ncloud vredis getCloudRedisBackupDetailList --regionCode FKR --cloudRedisInstanceNo ****821 ``` #### 응답 예시 ```json { "getCloudRedisBackupDetailListResponse": { "requestId": "e603a8ee-9308-457e-9754-5497c931f222", "returnCode": "0", "returnMessage": "success", "totalRows": 1, "cloudRedisBackupDetailList": [ { "startTime": "2022-05-18T14:10:28+0900", "endTime": "2022-05-18T14:10:28+0900", "backupSize": 302, "dataStorageSize": 10737418240, "fileName": "2022051*****" } ] } } ``` ```xml 213c6297-42ab-4ac4-81fd-9852837c3105 0 success 1 2022-05-16T16:25:07+0900 2022-05-16T16:25:07+0900 302 10737418240 2022051***** ```