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

Prev Next

VPC 환경에서 이용 가능합니다.

Cloud DB for MySQL 인스턴스의 백업 목록을 조회합니다.

구문

getCloudMysqlBackupList 구문은 다음과 같습니다.

./ncloud vmysql getCloudMysqlBackupList \
    [--regionCode <KR|SGN|JPN>] \
    [--output <json|xml>]

옵션

getCloudMysqlBackupList 실행 시 지정할 수 있는 옵션을 설명합니다.

공통 옵션

vmysql 명령에서 공통으로 사용하는 옵션에 대한 정보는 Cloud DB for MySQL (VPC) 옵션을 참조해 주십시오.

예시

Cloud DB for MySQL 백업 목록 조회 요청이 성공하면 각 인스턴스의 백업 설정 정보가 반환됩니다.

명령

명령 예시는 다음과 같습니다.

./ncloud vmysql getCloudMysqlBackupList \
    --regionCode KR \
    --output json

출력

출력 예시는 다음과 같습니다.

{
  "getCloudMysqlBackupListResponse": {
    "totalRows": 1,
    "cloudMysqlBackupList": [
      {
        "cloudMysqlInstanceNo": "12345678",
        "cloudMysqlServiceName": "test-mysql",
        "backupFileRetentionPeriod": 1,
        "backupTime": "10:30",
        "backupSize": 604997814,
        "lastBackupDate": "2026-06-04T17:12:16+0900"
      }
    ],
    "requestId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
    "returnCode": "0",
    "returnMessage": "success"
  }
}