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.

deleteBlockStorageInstances

Prev Next

Available in VPC

Delete the list of block storage instances.

Syntax

The deleteBlockStorageInstances syntax is as follows:

./ncloud vserver deleteBlockStorageInstances \
    --blockStorageInstanceNoList <block-storage-instance-no-list> \
    [--regionCode <KR|SGN|JPN>] \
    [--output <json|xml>]

Options

This section describes the options available when running deleteBlockStorageInstances.

Required options

The following options are required for deleteBlockStorageInstances.

Options Type Required Description
--blockStorageInstanceNoList List Required Block storage number list

Common options

For information about the options common to all vserver subcommands, see Server (VPC) options.

Examples

If the request to delete a block storage instance is successful, the instance's identification information and termination status are returned.

Command

The command example is as follows:

./ncloud vserver deleteBlockStorageInstances \
    --blockStorageInstanceNoList 89012345 \
    --regionCode KR \
    --output json

Output

The output example is as follows:

{
  "deleteBlockStorageInstancesResponse": {
    "totalRows": 1,
    "blockStorageInstanceList": [
      {
        "blockStorageInstanceNo": "89012345",
        "blockStorageName": "test-block-storage-01",
        "blockStorageType": {
          "code": "SVRBS",
          "codeName": "Server BS"
        },
        "blockStorageSize": 75161927680,
        "blockStorageProductCode": "SPBSTBSTAD000006",
        "blockStorageInstanceStatus": {
          "code": "CREAT",
          "codeName": "Block storage CREATED status"
        },
        "blockStorageInstanceOperation": {
          "code": "TERMT",
          "codeName": "Block storage TERMINATE OP"
        },
        "blockStorageInstanceStatusName": "terminating",
        "createDate": "2026-05-14T20:18:21+0900",
        "blockStorageDescription": "Test block storage",
        "blockStorageDiskType": {
          "code": "NET",
          "codeName": "Network storage"
        },
        "blockStorageDiskDetailType": {
          "code": "SSD",
          "codeName": "SSD"
        },
        "maxIopsThroughput": 4000,
        "isEncryptedVolume": false,
        "zoneCode": "KR-1",
        "regionCode": "KR",
        "isReturnProtection": false,
        "blockStorageVolumeType": {
          "code": "SSD",
          "codeName": "SSD"
        },
        "hypervisorType": {
          "code": "XEN",
          "codeName": "XEN"
        }
      }
    ],
    "requestId": "d5e6f7a8-b9c0-1234-efab-890123456789",
    "returnCode": "0",
    "returnMessage": "success"
  }
}