detachInstanceIso
Detach ISO from instance
Details
- Method:
POST - Path:
/instances/{instance-id}/iso/detach - Operation ID:
detach-instance-iso
Parameters
{}Response Schema
{
"type": "object",
"properties": {
"iso_status": {
"type": "object",
"properties": {
"state": {
"type": "string",
"description": "State of the ISO\n\n* isunmounting"
}
}
}
}
}Usage
from ocp_agent import OCPAgent
agent = OCPAgent()
await agent.register_api('vultr')
# Call this tool
result = await agent.call_tool('detachInstanceIso', {
# Add required parameters here
})