UpdateVmCdRom
API Request
URLs
PUT zstack/v1/vm-instances/cdroms/{uuid}/actionsHeaders
Authorization: OAuth the-session-uuidBody
Note: In
the preceding sample, both systemTags and userTags are optional.
These two fields can be included in the body structure.
{
"updateVmCdRom": {
"name": "cd-2"
},
"systemTags": [],
"userTags": []
}
Note: In
the preceding sample, both systemTags and userTags are optional.
These two fields can be included in the body structure.Curl
Sample
curl -H "Content-Type: application/json;charset=UTF-8" \
-H "Authorization: OAuth b86c9016b4f24953a9edefb53ca0678c" \
-X PUT -d '{"updateVmCdRom":{"name":"cd-2"}}' http://localhost:8080/zstack/v1/vm-instances/cdroms/407c8e5cee4b3430bbb9f0f4d4c8a422/actionsRequest Parameters
| Name | Type | Location | Description | Optional Value | Starting Version |
|---|---|---|---|---|---|
| uuid | String | url | The resource UUID. | 3.3.0 | |
| description | String | body (contained in the updateVmCdRom structure) | Optional. The detailed description of the resource. | 3.3.0 | |
| name | String | body (contained in the updateVmCdRom structure) | Optional. The resource name. | 3.3.0 | |
| systemTags | List | body | Optional. The system tags. | 3.3.0 | |
| userTags | List | body | Optional. The user tags. | 3.3.0 |
API Response
Sample
Response
{
"inventory": {
"uuid": "257369b2f7e83256940adce2a6279187",
"deviceId": 0.0,
"isoUuid": "5ffbf20fb5e5342f91db1416740cf578",
"name": "cd-1",
"description": "desc",
"createDate": "Nov 14, 2017 10:20:57 PM",
"lastOpDate": "Nov 14, 2017 10:20:57 PM"
}
}| Name | Type | Description | Starting Version |
|---|---|---|---|
| error | ErrorCode | The error code. If not null, the operation fails, or vice versa. For more information, see error. | 3.3.0 |
| inventory | VmCdRomInventory | See inventory. | 3.3.0 |
#error
| Name | Type | Description | Starting Version |
|---|---|---|---|
| code | String | The error code, which is a numbered or alphanumeric code that specifies an error. For example, SYS.1000, HOST.1001. | 3.3.0 |
| description | String | The brief description of the error. | 3.3.0 |
| details | String | The details about the error. | 3.3.0 |
| elaboration | String | The reserved field. Default value: null. | 3.3.0 |
| opaque | LinkedHashMap | The reserved field. Default value: null. | 3.3.0 |
| cause | ErrorCode | The root error, which is the associated root cause of the current error. If no root error exists, this parameter is null. | 3.3.0 |
#inventory
| Name | Type | Description | Starting Version |
|---|---|---|---|
| uuid | String | The resource UUID. | 3.3.0 |
| vmInstanceUuid | String | The VM instance UUID. | 3.3.0 |
| deviceId | Integer | The CD-ROM device ID. | 3.3.0 |
| isoUuid | String | The ISO image UUID. | 3.3.0 |
| isoInstallPath | String | The path to install the ISO image. | 3.3.0 |
| name | String | The resource name. | 3.3.0 |
| description | String | The detailed description of the resource. | 3.3.0 |
| createDate | Timestamp | The creation date. | 3.3.0 |
| lastOpDate | Timestamp | The last operation date. | 3.3.0 |
SDK Sample
Java
SDK
UpdateVmCdRomAction action = new UpdateVmCdRomAction();
action.uuid = "407c8e5cee4b3430bbb9f0f4d4c8a422";
action.name = "cd-2";
action.sessionId = "b86c9016b4f24953a9edefb53ca0678c";
UpdateVmCdRomAction.Result res = action.call();Python
SDK
UpdateVmCdRomAction action = UpdateVmCdRomAction()
action.uuid = "407c8e5cee4b3430bbb9f0f4d4c8a422"
action.name = "cd-2"
action.sessionId = "b86c9016b4f24953a9edefb53ca0678c"
UpdateVmCdRomAction.Result res = action.call()