---
title: "getCloudCacheBackupList"
slug: "cli-vcache-getcloudcachebackuplist"
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-getcloudcachebackuplist"
---
> ## 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.
# getCloudCacheBackupList
## 개요
Cloud DB for Cache 백업 리스트를 조회합니다.
:::(info) (참고)
Cloud DB for Cache CLI는 지원하는 DBMS 범위에 따라 두 가지 버전을 제공합니다.
* getCloudCacheBackupList CLI: Valkey, Redis DBMS 이용 가능
* getCloudRedisBackupList CLI: Redis DBMS 이용 가능
:::
## getCloudCacheBackupList CLI
getCloudCacheBackupList CLI의 요청, 응답 형식을 설명합니다.
### 요청
#### 요청 파라미터
| 파라미터명 | 필수 여부 | 타입 | 제약 사항 | 설명 |
|------------|-------|--------|-------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| regionCode | No | String | | - 리전 코드
Cloud DB for Cache 백업 리스트가 조회될 리전(Region) 결정 가능
regionCode는 [getRegionList](/docs/cli-server-getregionlist) 액션을 통해 획득 가능
Default : getRegionList 조회 결과의 첫 번째 리전을 선택 |
| output | No | String | | - 응답 결과의 포맷 타입
Options: xml \| json
Default: json |
### 응답
#### 응답 데이터 타입
- CloudCacheBackupList 타입
| CloudCacheBackupList extends CommonResponse |
|----------------------------------------------------------------------------------|
| private Integer totalRows; |
| private List<CloudCacheBackup> cloudCacheInstanceList = new ArrayList<>(); |
| CloudCacheBackup |
|--------------------------------------------|
| private String cloudCacheInstanceNo; |
| private String cloudCacheServiceName; |
| private Integer backupFileRetentionPeriod; |
| private String backupTime; |
| private Long backupSize; |
| private Date lastBackupDate; |
| private CommonCode backupType; |
| private Integer shardCount; |
### 예시
#### 호출 예시
```
ncloud vcache getCloudCacheBackupList --regionCode FKR
```
#### 응답 예시
```xml
94edea29-9c1e-44f5-9e9c-120f22688ca1
0
success
1
****890
test-****
1
00:30
302
2021-05-25T00:00:00+0900
SIMPLE
CLOUD CACHE(VPC) Cluster Backup Type
1
```
## getCloudRedisBackupList CLI
getCloudRedisBackupList CLI의 요청, 응답 형식을 설명합니다.
### 요청
#### 요청 파라미터
| 파라미터명 | 필수 여부 | 타입 | 제약 사항 | 설명 |
|------------|-------|--------|-------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| regionCode | No | String | | - 리전 코드
Cloud DB for Cache 백업 리스트가 조회될 리전(Region) 결정 가능
regionCode는 [getRegionList](/docs/cli-vserver-server-common-getregionlist) 액션을 통해 획득 가능
Default : getRegionList 조회 결과의 첫 번째 리전을 선택 |
| output | No | String | | - 응답 결과의 포맷 타입
Options: xml \| json
Default: json |
### 응답
#### 응답 데이터 타입
- CloudRedisBackupList 타입
| CloudRedisBackupList extends CommonResponse |
|----------------------------------------------------------------------------------|
| private Integer totalRows; |
| private List<CloudRedisBackup> cloudRedisInstanceList = new ArrayList<>(); |
| CloudRedisBackup |
|--------------------------------------------|
| private String cloudRedisInstanceNo; |
| private String cloudRedisServiceName; |
| private Integer backupFileRetentionPeriod; |
| private String backupTime; |
| private Long backupSize; |
| private Date lastBackupDate; |
| private CommonCode backupType; |
| private Integer shardCount; |
### 예시
#### 호출 예시
```
ncloud vredis getCloudRedisBackupList --regionCode FKR
```
#### 응답 예시
```xml
94edea29-9c1e-44f5-9e9c-120f22688ca1
0
success
1
****890
test-****
1
00:30
302
2021-05-25T00:00:00+0900
CLUSTER
CLOUD REDIS(VPC) Cluster Backup Type
3
```