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.

getCloudCacheManualBackupList

Prev Next

Available in VPC

Get the Cloud DB for Cache manual backup list.

Note

Cloud DB for Cache CLI offers two versions based on the supported DBMS range.

  • getCloudCacheManualBackupList CLI: Support for Valkey and Redis DBMS
  • getCloudRedisManualBackupList CLI: Support for Redis DBMS

getCloudCacheManualBackupList CLI

This section describes the command syntax, options, commands, and output examples for the getCloudCacheManualBackupList CLI.

Syntax

The getCloudCacheManualBackupList syntax is as follows:

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

Options

This section describes the options available when running getCloudCacheManualBackupList.

Common options

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

Examples

If the request to retrieve the manual backup list is successful, the time and size of each backup are returned.

Command

The command example is as follows:

./ncloud vcache getCloudCacheManualBackupList \
    --regionCode KR \
    --output json

Output

The output example is as follows:

{
  "getCloudCacheManualBackupListResponse": {
    "totalRows": 1,
    "cloudCacheBackupList": [
      {
        "backupTime": "15:08",
        "backupSize": 522,
        "lastBackupDate": "2026-06-10T00:00:00+0900",
        "shardCount": 3
      }
    ],
    "requestId": "b2c3d4e5-f6a7-8901-bcde-f23456789012",
    "returnCode": "0",
    "returnMessage": "success"
  }
}

getCloudRedisManualBackupList CLI

This section describes the command syntax, options, commands, and output examples for the getCloudRedisManualBackupList CLI.

Syntax

The getCloudRedisManualBackupList syntax is as follows:

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

Options

This section describes the options available when running getCloudRedisManualBackupList.

Common options

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

Examples

If the request to retrieve the manual backup list is successful, the time and size of each backup are returned.

Command

The command example is as follows:

./ncloud vredis getCloudRedisManualBackupList \
    --regionCode KR \
    --output json

Output

The output example is as follows:

{
  "getCloudRedisManualBackupListResponse": {
    "totalRows": 1,
    "cloudRedisBackupList": [
      {
        "cloudRedisInstanceNo": "34567890",
        "cloudRedisServiceName": "test-redis-01",
        "backupTime": "13:20",
        "backupSize": 112,
        "lastBackupDate": "2026-07-01T00:00:00+0900",
        "backupType": {
          "code": "SIMPLE",
          "codeName": "Backup type code - CLOUD Cache (VPC)"
        },
        "shardCount": 1
      }
    ],
    "requestId": "b2c3d4e5-f6a7-8901-bcde-f23456789012",
    "returnCode": "0",
    "returnMessage": "success"
  }
}