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.

getCloudMysqlBackupDetailList

Prev Next

Available in VPC

Get Cloud DB for MySQL instance backup details in a list.

Syntax

The getCloudMysqlBackupDetailList syntax is as follows:

./ncloud vmysql getCloudMysqlBackupDetailList \
    --cloudMysqlInstanceNo <instance-no> \
    [--pageNo <page-no>] \
    [--pageSize <page-size>] \
    [--regionCode <KR|SGN|JPN>] \
    [--output <json|xml>]

Options

This section describes the options available when running getCloudMysqlBackupDetailList.

Required options

The following options are required for getCloudMysqlBackupDetailList.

Options Type Required Description
--cloudMysqlInstanceNo String Required Cloud DB for MySQL instance number

Optional options

These are the optional options for getCloudMysqlBackupDetailList. Options that are not specified will use their default values.

Options Type Required Description
--pageNo Integer Optional Page number
  • 0-N
--pageSize Integer Optional Number of items per page
  • 1-N

Common options

For information about the options common to all vmysql subcommands, see Cloud DB for MySQL (VPC) options.

Examples

If the request to retrieve detailed information about Cloud DB for MySQL backups is successful, the name, time, and size of each backup file are returned.

Command

The command example is as follows:

./ncloud vmysql getCloudMysqlBackupDetailList \
    --cloudMysqlInstanceNo 12345678 \
    --pageNo 0 \
    --pageSize 10 \
    --regionCode KR \
    --output json

Output

The output example is as follows:

{
  "getCloudMysqlBackupDetailListResponse": {
    "totalRows": 1,
    "cloudMysqlBackupDetailList": [
      {
        "fileName": "20260604",
        "startTime": "2026-06-04T17:12:16+0900",
        "endTime": "2026-06-04T17:12:26+0900",
        "backupSize": 604997814,
        "dataStorageSize": 10737418240
      }
    ],
    "requestId": "b2c3d4e5-f6a7-8901-bcde-f23456789012",
    "returnCode": "0",
    "returnMessage": "success"
  }
}