---
title: "getCloudMysqlBackupList"
slug: "cli-vmysql-getcloudmysqlbackuplist"
tags: ["Cloud DB for MySQL", "Backup", "VPC"]
updated: 2026-04-23T08:57:04Z
published: 2026-04-23T08:58:56Z
canonical: "cli.ncloud-docs.com/cli-vmysql-getcloudmysqlbackuplist"
---

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

# getCloudMysqlBackupList

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

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

Cloud DB for MySQL 인스턴스의 백업 리스트를 조회합니다.

## 요청<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>
- CloudMysqlBackupList 타입

| CloudMysqlBackupList extends CommonResponse |
| ---------- |
| private Integer totalRows; |
| private List&lt;CloudMysqlBackup&gt; cloudMysqlBackupList = new ArrayList<>(); |

| CloudMysqlBackup |
| ---------- |
| private String cloudMysqlInstanceNo; |
| private String cloudMysqlServiceName; |
| private Integer backupFileRetentionPeriod; |
| private String backupTime; |
| private Long backupSize; |
| private Date lastBackupDate; |

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

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

```
ncloud vmysql getCloudMysqlBackupList --regionCode KR
```

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

```xml
<getCloudMysqlBackupListResponse>
    <requestId>2086d40d-d152-49a7-aa26-effaecb5a616</requestId>
    <returnCode>0</returnCode>
    <returnMessage>success</returnMessage>
    <totalRows>1</totalRows>
    <cloudMysqlBackupList>
        <cloudMysqlBackup>
            <cloudMysqlInstanceNo>****890</cloudMysqlInstanceNo>
            <cloudMysqlServiceName>test-****</cloudMysqlServiceName>
            <backupFileRetentionPeriod>10</backupFileRetentionPeriod>
            <backupTime>02:00</backupTime>
            <backupSize>571482767</backupSize>
            <lastBackupDate>2021-05-28T02:10:00+0900</lastBackupDate>
        </cloudMysqlBackup>
    </cloudMysqlBackupList>
</getCloudMysqlBackupListResponse>
```
