---
title: "getCloudCacheManualBackupDetailList"
slug: "cli-vcache-getcloudcachemanualbackupdetaillist"
tags: ["Backup", "Cloud DB for Cache", "Manual"]
updated: 2026-04-23T09:04:56Z
published: 2026-04-23T09:07:31Z
---

> ## 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.

# getCloudCacheManualBackupDetailList

## 개요

사용 가능한 Cloud DB for Cache Manual 백업 상세 정보 목록을 조회합니다.

참고

Cloud DB for Cache CLI는 지원하는 DBMS 범위에 따라 두 가지 버전을 제공합니다.

- getCloudCacheManualBackupDetailList CLI: Valkey, Redis DBMS 이용 가능
- getCloudRedisManualBackupDetailList CLI: Redis DBMS 이용 가능

## getCloudCacheManualBackupDetailList CLI

getCloudCacheManualBackupDetailList CLI의 요청, 응답 형식을 설명합니다.

### 요청

#### 요청 파라미터

| 파라미터명 | 필수 여부 | 타입 | 제약 사항 | 설명 |
| --- | --- | --- | --- | --- |
| regionCode | No | String |  | - 리전 코드 regionCode는 [getRegionList](/docs/cli-vserver-server-common-getregionlist) 액션을 통해서 획득 가능 Default: getRegionList 조회 결과의 첫 번째 리전을 선택 |
| cloudCacheInstanceNo | Yes | String |  | - Cloud DB for Cache 인스턴스 번호 Manual 백업 상세 정보를 조회할 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; |
| private String fileName; |

### 예시

#### 호출 예시

```
ncloud vcache getCloudCacheManualBackupDetailList --regionCode FKR --cloudCacheInstanceNo ****821
```

#### 응답 예시

```
{
  "getCloudCacheManualBackupDetailListResponse": {
    "requestId": "e603a8ee-9308-457e-9754-5497c931f222",
    "returnCode": "0",
    "returnMessage": "success",
    "totalRows": 1,
    "cloudCacheBackupDetailList": [
      {
        "startTime": "2022-05-18T14:10:28+0900",
        "endTime": "2022-05-18T14:10:28+0900",
        "backupSize": 302,
        "dataStorageSize": 10737418240,
        "fileName": "2022051*****"
      }
    ]
  }
}
```

```

<getCloudCacheManualBackupDetailListResponse>
    <requestId>213c6297-42ab-4ac4-81fd-9852837c3105</requestId>
    <returnCode>0</returnCode>
    <returnMessage>success</returnMessage>
    <totalRows>1</totalRows>
    <cloudCacheBackupDetailList>
        <cloudCacheBackupDetail>
            <startTime>2022-05-16T16:25:07+0900</startTime>
            <endTime>2022-05-16T16:25:07+0900</endTime>
            <backupSize>302</backupSize>
            <dataStorageSize>10737418240</dataStorageSize>
            <fileName>2022051*****</fileName>
        </cloudCacheBackupDetail>
    </cloudCacheBackupDetailList>
</getCloudCacheManualBackupDetailListResponse>
```

## getCloudRedisManualBackupDetailList CLI

getCloudRedisManualBackupDetailList CLI의 요청, 응답 형식을 설명합니다.

### 요청

#### 요청 파라미터

| 파라미터명 | 필수 여부 | 타입 | 제약 사항 | 설명 |
| --- | --- | --- | --- | --- |
| regionCode | No | String |  | - 리전 코드 regionCode는 [getRegionList](/docs/cli-vserver-server-common-getregionlist) 액션을 통해서 획득 가능 Default: getRegionList 조회 결과의 첫 번째 리전 선택 |
| cloudRedisInstanceNo | Yes | String |  | - Cloud DB for Cache 인스턴스 번호 Manual 백업 상세 정보를 조회할 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; |

### 예시

#### 호출

```
ncloud vredis getCloudRedisManualBackupDetailList --regionCode FKR --cloudRedisInstanceNo ****821
```

#### 응답

```
{
  "getCloudRedisManualBackupDetailListResponse": {
    "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*****"
      }
    ]
  }
}
```

```

<getCloudRedisManualBackupDetailListResponse>
    <requestId>213c6297-42ab-4ac4-81fd-9852837c3105</requestId>
    <returnCode>0</returnCode>
    <returnMessage>success</returnMessage>
    <totalRows>1</totalRows>
    <cloudRedisBackupDetailList>
        <cloudRedisBackupDetail>
            <startTime>2022-05-16T16:25:07+0900</startTime>
            <endTime>2022-05-16T16:25:07+0900</endTime>
            <backupSize>302</backupSize>
            <dataStorageSize>10737418240</dataStorageSize>
            <fileName>2022051*****</fileName>
        </cloudRedisBackupDetail>
    </cloudRedisBackupDetailList>
</getCloudRedisManualBackupDetailListResponse>
```
