---
title: "getCloudCacheManualBackupList"
slug: "cli-vcache-getcloudcachemanualbackuplist"
tags: ["Backup", "Cloud DB for Cache", "Manual"]
updated: 2026-06-25T09:10:27Z
published: 2026-06-25T09:10:27Z
canonical: "cli-fin.ncloud-docs.com/cli-vcache-getcloudcachemanualbackuplist"
---
> ## 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.
# getCloudCacheManualBackupList
## 개요
Cloud DB for Cache Manual 백업 리스트를 조회합니다.
:::(info) (참고)
Cloud DB for Cache CLI는 지원하는 DBMS 범위에 따라 두 가지 버전을 제공합니다.
* getCloudCacheManualBackupList CLI: Valkey, Redis DBMS 이용 가능
* getCloudRedisManualBackupList CLI: Redis DBMS 이용 가능
:::
## getCloudCacheManualBackupList CLI
getCloudCacheManualBackupList CLI의 요청, 응답 형식을 설명합니다.
### 요청
#### 요청 파라미터
| 파라미터명 | 필수 여부 | 타입 | 제약 사항 | 설명 |
|------------|-------|--------|-------|-----------------------------------------------------------------------------------------------------------------------------------------------------|
| regionCode | No | String | | - 리전 코드
regionCode는 [getRegionList](/docs/cli-vserver-server-common-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 getCloudCacheManualBackupList --regionCode FKR
```
#### 응답 예시
```json
{
"getCloudCacheManualBackupListResponse": {
"requestId": "7add8ece-0259-467d-bdc7-de214f51c93d",
"returnCode": "0",
"returnMessage": "success",
"totalRows": 1,
"cloudCacheBackupList": [
{
"cloudCacheInstanceNo": "2360***",
"cloudCacheServiceName": "cxcs***",
"backupTime": "14:10",
"backupSize": 906,
"lastBackupDate": "2022-05-18T00:00:00+0900",
"backupType": {
"code": "CLUSTER",
"codeName": "CLOUD CACHE(VPC) Cluster Backup Type"
},
"shardCount": 3
}
]
}
}
```
```xml
428ce123-d4cf-4805-8810-f243d5c6f65f
0
success
1
2360***
cxcs***
16:25
302
2022-05-16T00:00:00+0900
CLUSTER
CLOUD CACHE(VPC) Cluster Backup Type
3
```
## getCloudRedisManualBackupList CLI
getCloudRedisManualBackupList CLI의 요청, 응답 형식을 설명합니다.
### 요청
#### 요청 파라미터
| 파라미터명 | 필수 여부 | 타입 | 제약 사항 | 설명 |
|------------|-------|--------|-------|----------------------------------------------------------------------------------------------------------------------------------------------------|
| regionCode | No | String | | - 리전 코드
regionCode는 [getRegionList](/docs/cli-vserver-server-common-getregionlist) 액션을 통해서 획득 가능
Default : getRegionList 조회 결과의 첫 번째 리전 선택 |
| output | No | String | | - 응답 결과의 포맷 타입
Options: xml \| json
Default: xml |
### 응답
#### 응답 데이터 타입
- 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 getCloudRedisManualBackupList --regionCode FKR
```
#### 응답
```json
{
"getCloudRedisManualBackupListResponse": {
"requestId": "7add8ece-0259-467d-bdc7-de214f51c93d",
"returnCode": "0",
"returnMessage": "success",
"totalRows": 1,
"cloudRedisBackupList": [
{
"cloudRedisInstanceNo": "2360***",
"cloudRedisServiceName": "cxcs***",
"backupTime": "14:10",
"backupSize": 906,
"lastBackupDate": "2022-05-18T00:00:00+0900",
"backupType": {
"code": "CLUSTER",
"codeName": "CLOUD REDIS(VPC) Cluster Backup Type"
},
"shardCount": 3
}
]
}
}
```
```xml
428ce123-d4cf-4805-8810-f243d5c6f65f
0
success
1
2360***
cxcs***
16:25
302
2022-05-16T00:00:00+0900
CLUSTER
CLOUD REDIS(VPC) Cluster Backup Type
3
```