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.

getCloudMongoDbBackupDetailList

Prev Next

Available in VPC

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

Syntax

The getCloudMongoDbBackupDetailList syntax is as follows:

./ncloud vmongodb getCloudMongoDbBackupDetailList \
    --cloudMongoDbInstanceNo <instance-no> \
    [--pageNo <page-no>] \
    [--pageSize <page-size>] \
    [--regionCode <KR|SGN|JPN>] \
    [--output <json|xml>]

Options

This section describes the options available when running getCloudMongoDbBackupDetailList.

Required options

The following options are required for getCloudMongoDbBackupDetailList.

Options Type Required Description
--cloudMongoDbInstanceNo String Required Instance number of Cloud DB for MongoDB
--pageSize Integer Conditional Number of items per page
  • 1-N
  • Required when entering pageNo.

Optional options

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

Options Type Required Description
--pageNo Integer Optional Page number
  • 0-N

Common options

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

Examples

If the request to retrieve the detailed list of Cloud DB for MongoDB backups is successful, the time, size, and identifier for each backup are returned.

Command

The command example is as follows:

./ncloud vmongodb getCloudMongoDbBackupDetailList \
    --cloudMongoDbInstanceNo 34567890 \
    --pageNo 0 \
    --pageSize 10 \
    --regionCode KR \
    --output json

Output

The output example is as follows:

{
  "getCloudMongoDbBackupDetailListResponse": {
    "totalRows": 1,
    "cloudMongoDbBackupDetailList": [
      {
        "startTime": "2026-06-11T02:00:01+0900",
        "endTime": "2026-06-11T02:00:06+0900",
        "backupSize": 8474,
        "dataStorageSize": 10737418240,
        "shard": "mongodb-01001",
        "objectName": "a1b2c3d4e5f6a7b8c9d0e1f2",
        "backupParallel": 1
      }
    ],
    "requestId": "b2c3d4e5-f6a7-8901-bcde-f23456789012",
    "returnCode": "0",
    "returnMessage": "success"
  }
}