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.

getMemberServerImageInstanceList

Prev Next

Available in VPC

Get the list of My server image instances. KVM-based server images are not supported.

Syntax

The getMemberServerImageInstanceList syntax is as follows:

./ncloud vserver getMemberServerImageInstanceList \
    [--memberServerImageInstanceNoList <member-server-image-no-list>] \
    [--memberServerImageName <member-server-image-name>] \
    [--memberServerImageInstanceStatusCode <INIT|CREAT|CREFL>] \
    [--platformTypeCodeList <LNX32|LNX64|WND32|WND64|UBD64|UBS64>] \
    [--pageNo <page-no>] \
    [--pageSize <page-size>] \
    [--sortedBy <memberServerImageName>] \
    [--sortingOrder <ASC|DESC>] \
    [--regionCode <KR|SGN|JPN>] \
    [--output <json|xml>]

Options

This section describes the options available when running getMemberServerImageInstanceList.

Required options

The following options are required for getMemberServerImageInstanceList.

Options Type Required Description
--pageSize Integer Conditional Number of items per page
  • 1-1000 (default: 1)
  • Required when entering pageNo

Optional options

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

Options Type Required Description
--memberServerImageInstanceNoList List Optional Server image instance number list
  • You can enter multiple items separated by spaces. (e.g., --memberServerImageInstanceNoList 1234 2345)
--memberServerImageName String Optional Server image name
--memberServerImageInstanceStatusCode String Optional Server image status code
  • INIT | CREAT | CREFL
    • INIT: Creating
    • CREAT: Creation completed
    • CREFL: Creation failed
--platformTypeCodeList List Optional Platform type code list
  • LNX32 | LNX64 | WND32 | WND64 | UBD64 | UBS64
  • You can enter multiple items separated by spaces. (e.g., --platformTypeCodeList LNX32 LNX64)
--pageNo Integer Optional Page number
  • 0-N (default: 0)
  • First page: Enter 0 or 1.
--sortedBy String Optional Sort by
  • memberServerImageName: Member server image name
--sortingOrder String Optional Sort order
  • ASC (default) | DESC
    • ASC: Ascending order
    • DESC: Descending order

Common options

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

Examples

If the request to retrieve the list of member server image instances is successful, the identification and configuration information for each instance is returned.

Command

The command example is as follows:

./ncloud vserver getMemberServerImageInstanceList \
    --memberServerImageInstanceStatusCode CREAT \
    --platformTypeCodeList LNX64 \
    --pageNo 0 \
    --pageSize 10 \
    --sortedBy memberServerImageName \
    --sortingOrder ASC \
    --regionCode KR \
    --output json

Output

The output example is as follows:

{
  "getMemberServerImageInstanceListResponse": {
    "totalRows": 1,
    "memberServerImageInstanceList": [
      {
        "memberServerImageInstanceNo": "91234567",
        "memberServerImageName": "test-msi-01",
        "memberServerImageDescription": "Test member server image",
        "originalServerInstanceNo": "34567890",
        "originalServerImageProductCode": "SW.VSVR.OS.LNX64.ROCKY.0810.B050",
        "memberServerImageInstanceStatus": {
          "code": "CREAT",
          "codeName": "NSI CREATED state"
        },
        "memberServerImageInstanceOperation": {
          "code": "NULL",
          "codeName": "NSI NULL OP"
        },
        "memberServerImageInstanceStatusName": "created",
        "createDate": "2026-05-14T16:33:01+0900",
        "memberServerImageBlockStorageTotalRows": 1,
        "memberServerImageBlockStorageTotalSize": 53687091200,
        "shareStatus": {
          "code": "NULL",
          "codeName": "NSI Share NULL State"
        },
        "sharedLoginIdList": []
      }
    ],
    "requestId": "e5f67890-1234-5678-ef01-567890123456",
    "returnCode": "0",
    "returnMessage": "success"
  }
}