This API is used to rebuild an ECS.
You can use the original image or another image to rebuild an ECS. This API supports different OSs.
This API is native from the community for defcore tests.
If you are required to reinstall or change an ECS OS, ECS APIs are recommended. For details, see "Reinstalling an ECS OS (Using an Image with Cloud-Init Installed)" and "Changing an OS (Using an Image with Cloud-Init Installed)".
POST /v2.1/{project_id}/servers/{server_id}/action
POST /v2/{project_id}/servers/{server_id}/action
Table 2 describes the request parameters.
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
rebuild |
Yes |
Object |
Rebuilds an ECS. For details, see Table 3. |
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
name |
No |
String |
Specifies the name of the rebuilt ECS. The value contains 1 to 254 characters. |
metadata |
No |
Object |
Specifies the metadata of the rebuilt ECS. |
imageRef |
Yes |
String |
Specifies the image ID or URL. |
adminPass |
No |
String |
Specifies the password for logging in to the rebuilt ECS. This parameter does not take effect. |
OS-DCF:diskConfig |
No |
String |
Not supported |
preserve_ephemeral |
No |
Boolean |
Specifies whether to retain the temporary disk. This parameter is not supported. |
key_name |
No |
String |
Specifies the key pair name. If the value is null, the existing key pair is left blank. This parameter is supported in microversion 2.54 and later. |
user_data |
No |
String |
Specifies the user data to be injected during the ECS creation. This is an extended attribute. Text and text files can be injected. NOTE:
For more information about the user data to be injected, see "Injecting User Data into ECSs" in Elastic Cloud Server User Guide. Examples Before base64 encoding:
After base64 encoding:
|
Table 4 describes the response parameters.
Parameter |
Type |
Description |
---|---|---|
status |
String |
Specifies the ECS status. Values:
For details, see ECS Statuses. |
updated |
String |
Specifies the time when the ECS was updated last time. |
hostId |
String |
Specifies the ID of the host on which the ECS is deployed. |
addresses |
Array of objects |
Specifies the network attribute of the ECS. |
links |
Array of objects |
Describes the ECS. |
image |
Object |
Specifies the ECS image information. For the ECS that boots from a volume, the value is left blank. |
flavor |
Object |
Specifies the ECS flavor. |
id |
String |
Specifies the ECS ID in UUID format. |
user_id |
String |
Specifies the user UUID of the ECS. |
name |
String |
Specifies the ECS name. |
tenant_id |
String |
Specifies the UUID of the tenant who owns the ECS. |
OS-DCF:diskConfig |
String |
Specifies the diskConfig type. It is an extended attributed.
|
accessIPv4 |
String |
Discarded |
accessIPv6 |
String |
Discarded |
progress |
String |
Specifies the ECS creation progress. |
metadata |
Object |
Specifies the ECS metadata. |
POST https://{endpoint}/v2/{project_id}/servers/{server_id}/action POST https://{endpoint}/v2.1/{project_id}/servers/{server_id}/action
{ "rebuild" : { "imageRef" : "3ed456f5-3d8f-4383-a6c9-312032afcd1a", "name" : "rebuildName", "metadata" : { "rebuild" : "rebuild vm" } } }
{ "server": { "tenant_id": "7459f9935ed2422eb9800fea1d4d9378", "image": { "links": [ { "rel": "bookmark", "href": "https://xxx/7459f9935ed2422eb9800fea1d4d9378/images/3ed456f5-3d8f-4383-a6c9-312032afcd1a" } ], "id": "3ed456f5-3d8f-4383-a6c9-312032afcd1a" }, "accessIPv4": "", "addresses": { "443dd9e3-c165-4764-ad92-b17fcf12a3eb": [ { "addr": "192.168.0.119", "version": 4 } ] }, "metadata": { "name": "rebuildName" }, "accessIPv6": "", "created": "2016-09-19T01:13:26Z", "hostId": "fd16ebd9c2629e8595875cc1e1400fa67f392431d7937fcc9cf37671", "adminPass": "qGVjnEjY3ZoY", "flavor": { "links": [ { "rel": "bookmark", "href": "https://xxx/7459f9935ed2422eb9800fea1d4d9378/flavors/normal1" } ], "id": "normal1" }, "OS-DCF:diskConfig": "MANUAL", "user_id": "ed2965d80d394be0b41e56f50ac650ca", "name": "rebuildName", "progress": 0, "links": [ { "rel": "self", "href": "https://xxx/v2/7459f9935ed2422eb9800fea1d4d9378/servers/ea681a24-9b24-4f49-98ef-8e1f73acf19e" }, { "rel": "bookmark", "href": "https://xxx/7459f9935ed2422eb9800fea1d4d9378/servers/ea681a24-9b24-4f49-98ef-8e1f73acf19e" } ], "id": "ea681a24-9b24-4f49-98ef-8e1f73acf19e", "updated": "2016-09-19T07:22:05Z", "status": "REBUILD" } }