Available in VPC
Create a My server image with a KVM-based snapshot.
Syntax
The createServerImageFromSnapshot syntax is as follows:
./ncloud vserver createServerImageFromSnapshot \
--serverImageName <server-image-name> \
--blockStorageList <block-storage-config> \
[--serverImageDescription <description>] \
[--regionCode <KR|SGN|JPN>] \
[--output <json|xml>]
Options
This section describes the options available when running createServerImageFromSnapshot.
Required options
The following options are required for createServerImageFromSnapshot.
| Options | Type | Required | Description |
|---|---|---|---|
--serverImageName |
String | Required | Server image name
|
--blockStorageList |
List | Required | List of block storage devices for the server image
|
Optional options
These are the optional options for createServerImageFromSnapshot. Options that are not specified will use their default values.
| Options | Type | Required | Description |
|---|---|---|---|
--serverImageDescription |
String | Optional | Server image description (byte)
|
Common options
For information about the options common to all vserver subcommands, see Server (VPC) options.
Examples
If the request to create a server image from a snapshot is successful, the server image's identifier and the source snapshot information are returned.
Command
The command example is as follows:
./ncloud vserver createServerImageFromSnapshot \
--serverImageName test-server-image-fromsnap-01 \
--blockStorageList "order='0',snapshotInstanceNo='90123456'" \
--regionCode KR \
--output json
Output
The output example is as follows:
{
"createServerImageFromSnapshotResponse": {
"totalRows": 1,
"serverImageList": [
{
"serverImageNo": "45678901",
"serverImageName": "test-server-image-fromsnap-01",
"serverImageType": {
"code": "SELF",
"codeName": "SELF server image"
},
"serverImageLifeCyclePhase": {
"code": "IN_SERVICE",
"codeName": "In Service"
},
"hypervisorType": {
"code": "KVM",
"codeName": "KVM"
},
"cpuArchitectureType": {
"code": "X86_64",
"codeName": "x86 64bit"
},
"osCategoryType": {
"code": "LINUX",
"codeName": "LINUX"
},
"osType": {
"code": "NAVIX",
"codeName": "NAVIX"
},
"serverImageStatus": {
"code": "CREAT",
"codeName": "NSI CREATED state"
},
"serverImageOperation": {
"code": "NULL",
"codeName": "NSI NULL OP"
},
"serverImageStatusName": "created",
"shareStatus": {
"code": "NULL",
"codeName": "NSI Share NULL State"
},
"blockStorageMappingList": [
{
"order": 0,
"blockStorageSnapshotInstanceNo": 90123456,
"blockStorageSnapshotName": "test-bootable-snap-01",
"blockStorageSize": 10737418240,
"blockStorageVolumeType": {
"code": "CB1",
"codeName": "Common BlockStorage 1"
},
"iops": 100,
"throughput": 104857600,
"isEncryptedVolume": false
}
],
"sharedLoginIdList": [],
"serverImageProductCode": "SW.VSVR.OS.LNX64.NAVIX.09.G003",
"createDate": "2026-05-14T16:31:28+0900",
"platformCategoryCode": "OS"
}
],
"requestId": "b2c3d4e5-f678-9012-bcde-f23456789012",
"returnCode": "0",
"returnMessage": "success"
}
}