---
title: "getCloudCacheManualBackupList"
slug: "cli-vcache-getcloudcachemanualbackuplist"
tags: ["Backup", "Cloud DB for Cache", "VPC"]
updated: 2026-04-23T08:57:07Z
published: 2026-04-23T08:58:56Z
canonical: "cli.ncloud-docs.com/cli-vcache-getcloudcachemanualbackuplist"
---

> ## Documentation Index
> Fetch the complete documentation index at: https://cli.ncloud-docs.com/llms.txt
> Use this file to discover all available pages before exploring further.

# getCloudCacheManualBackupList

<p class="platform-info type-vpc">VPC 환경에서 이용 가능</p>

:::(info) (참고)
Cloud DB for Cache CLI는 지원하는 DBMS 범위에 따라 두 가지 버전을 제공합니다.
* getCloudCacheManualBackupList CLI: Valkey, Redis DBMS 이용 가능
* getCloudRedisManualBackupList CLI: Redis DBMS 이용 가능
:::

## getCloudCacheManualBackupList CLI<a name="getCloudCacheManualBackupList CLI"></a> 
getCloudCacheManualBackupList CLI의 요청, 응답 형식을 설명합니다.

### 요청<a name="요청"></a>

#### 요청 파라미터<a name="요청파라미터"></a>

| 파라미터명      | 필수 여부 | 타입     | 제약 사항 | 설명                                                                                                                                                  |
|------------|-------|--------|-------|-----------------------------------------------------------------------------------------------------------------------------------------------------|
| regionCode | No    | String |       | - 리전 코드<br/>regionCode는 [getRegionList](/docs/cli-vserver-server-common-getregionlist) 액션을 통해서 획득 가능<br/>Default : getRegionList 조회 결과의 첫 번째 리전을 선택 |
| output     | No    | String |       | - 응답 결과의 포맷 타입<br/>Options: xml \| json<br/>Default: json                                                                                           |

### 응답<a name="응답"></a>

#### 응답 데이터 타입<a name="응답데이터타입"></a>

- CloudCacheBackupList 타입

| CloudCacheBackupList extends CommonResponse                                      |
|----------------------------------------------------------------------------------|
| private Integer totalRows;                                                       |
| private List&lt;CloudCacheBackup&gt; 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;                |

### 예시<a name="예시"></a>

#### 호출 예시<a name="호출예시"></a>

```
ncloud vcache getCloudCacheManualBackupList --regionCode KR
```

#### 응답 예시<a name="응답예시"></a>

```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

<getCloudCacheManualBackupListResponse>
    <requestId>428ce123-d4cf-4805-8810-f243d5c6f65f</requestId>
    <returnCode>0</returnCode>
    <returnMessage>success</returnMessage>
    <totalRows>1</totalRows>
    <cloudCacheBackupList>
        <cloudCacheBackup>
            <cloudCacheInstanceNo>2360***</cloudCacheInstanceNo>
            <cloudCacheServiceName>cxcs***</cloudCacheServiceName>
            <backupTime>16:25</backupTime>
            <backupSize>302</backupSize>
            <lastBackupDate>2022-05-16T00:00:00+0900</lastBackupDate>
            <backupType>
                <code>CLUSTER</code>
                <codeName>CLOUD CACHE(VPC) Cluster Backup Type</codeName>
            </backupType>
            <shardCount>3</shardCount>
        </cloudCacheBackup>
    </cloudCacheBackupList>
</getCloudCacheManualBackupListResponse>
```
