attachInstanceIso
Attach ISO to Instance
POST /instances/{instance-id}/iso/attach HTTP/1.1Parameters
{
"iso_id": {
"description": "The [ISO id](#operation/list-isos) to attach to this Instance.",
"required": false,
"location": "body",
"type": "string"
}
}Response Schema
{
"type": "object",
"properties": {
"iso_status": {
"type": "object",
"properties": {
"state": {
"type": "string",
"description": "State of the ISO\n\n* ismounting"
},
"iso_id": {
"type": "string",
"description": "The [ISO id](#operation/list-isos) being attached."
}
}
}
}
}