SetVmInstanceDefaultCdRom
API Request
URLs
PUT zstack/v1/vm-instances/{vmInstanceUuid}/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.
{
"setVmInstanceDefaultCdRom": {},
"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 '{"setVmInstanceDefaultCdRom":{}}' http://localhost:8080/zstack/v1/vm-instances/d447a8ba0a7739ebb9ea4328740cb6df/cdroms/65a54c4273433d74970e8bac4c406cd8/actionsRequest Parameters
| Name | Type | Location | Description | Optional Value | Starting Version |
|---|---|---|---|---|---|
| uuid | String | url | The resource UUID. | 3.3.0 | |
| vmInstanceUuid | String | url | The VM instance UUID. | 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": {
"vmInstanceUuid": "ec0fdf7fd86f39e89510b3102ad1c66e",
"deviceId": 0.0,
"isoUuid": "57adfd535d05345895007787f74d11a0",
"name": "cd-1",
"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
SetVmInstanceDefaultCdRomAction action = new SetVmInstanceDefaultCdRomAction();
action.uuid = "65a54c4273433d74970e8bac4c406cd8";
action.vmInstanceUuid = "d447a8ba0a7739ebb9ea4328740cb6df";
action.sessionId = "b86c9016b4f24953a9edefb53ca0678c";
SetVmInstanceDefaultCdRomAction.Result res = action.call();Python
SDK
SetVmInstanceDefaultCdRomAction action = SetVmInstanceDefaultCdRomAction()
action.uuid = "65a54c4273433d74970e8bac4c406cd8"
action.vmInstanceUuid = "d447a8ba0a7739ebb9ea4328740cb6df"
action.sessionId = "b86c9016b4f24953a9edefb53ca0678c"
SetVmInstanceDefaultCdRomAction.Result res = action.call()