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.

getCloudCacheBackupList

Prev Next

Available in VPC

Get the Cloud DB for Cache system backup list.

Note

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

  • getCloudCacheBackupList CLI: Support for Valkey and Redis DBMS
  • getCloudRedisBackupList CLI: Support for Redis DBMS

getCloudCacheBackupList CLI

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

Syntax

The getCloudCacheBackupList syntax is as follows:

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

Options

This section describes the options available when running getCloudCacheBackupList.

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 Cloud DB for Cache system backup list is successful, the configuration information for each backup is returned.

Command

The command example is as follows:

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

Output

The output example is as follows:

{
  "getCloudCacheBackupListResponse": {
    "totalRows": 1,
    "cloudCacheBackupList": [
      {
        "backupFileRetentionPeriod": 1,
        "backupTime": "01:45",
        "backupSize": 528,
        "lastBackupDate": "2026-06-11T00:00:00+0900",
        "shardCount": 3
      }
    ],
    "requestId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
    "returnCode": "0",
    "returnMessage": "success"
  }
}

getCloudRedisBackupList CLI

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

Syntax

The getCloudRedisBackupList syntax is as follows:

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

Options

This section describes the options available when running getCloudRedisBackupList.

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 Cloud DB for Cache system backup list is successful, the configuration information for each backup is returned.

Command

The command example is as follows:

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

Output

The output example is as follows:

{
  "getCloudRedisBackupListResponse": {
    "totalRows": 1,
    "cloudRedisBackupList": [
      {
        "cloudRedisInstanceNo": "34567890",
        "cloudRedisServiceName": "test-redis-01",
        "backupFileRetentionPeriod": 1,
        "backupTime": "14:15",
        "backupSize": 112,
        "lastBackupDate": "2026-07-02T00:00:00+0900",
        "backupType": {
          "code": "SIMPLE",
          "codeName": "Backup type code - CLOUD Cache (VPC)"
        },
        "shardCount": 1
      }
    ],
    "requestId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
    "returnCode": "0",
    "returnMessage": "success"
  }
}