Available in VPC
Get the log backup file list of a Cloud DB for MSSQL instance.
Syntax
The getCloudMssqlLogBackupFileList syntax is as follows:
./ncloud vmssql getCloudMssqlLogBackupFileList \
--cloudMssqlInstanceNo <instance-no> \
--databaseName <database-name> \
--backupSetId <backup-set-id> \
[--regionCode <KR|SGN|JPN>] \
[--output <json|xml>]
Options
This section describes the options available when running getCloudMssqlLogBackupFileList.
Required options
The following options are required for getCloudMssqlLogBackupFileList.
| Options | Type | Required | Description |
|---|---|---|---|
--cloudMssqlInstanceNo |
String | Required | Cloud DB for MSSQL instance number |
--databaseName |
String | Required | Database name |
--backupSetId |
String | Required | Backup set ID |
Common options
For information about the options common to all vmssql subcommands, see Cloud DB for MSSQL (VPC) options.
Examples
If the request to retrieve the list of Cloud DB for MSSQL log backup files is successful, the identification information, backup time, and file size for each log backup file are returned.
Command
The command example is as follows:
./ncloud vmssql getCloudMssqlLogBackupFileList \
--cloudMssqlInstanceNo 25280088 \
--databaseName msdb \
--backupSetId 12 \
--regionCode KR \
--output json
Output
The output example is as follows:
{
"getCloudMssqlLogBackupFileListResponse": {
"totalRows": 1,
"cloudMssqlLogBackupFileList": [
{
"fileName": "msdb_20260609_020000.full",
"fullFileName": "Z:\\cmssql_backup\\user_idx_0000000\\cmssql_10-0-0-6_m-25280088-001\\msdb_20260609_172525.log",
"startDate": "2026-06-09T17:25:25+0900",
"endDate": "2026-06-09T17:25:25+0900",
"fileSize": 620280
}
],
"requestId": "b2c3d4e5-f6a7-8901-bcde-f23456789012",
"returnCode": "0",
"returnMessage": "success"
}
}