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"
  }
}