Open Context Protocol is live! 🚀 Read the launch post
getInstanceIsoStatus

getInstanceIsoStatus

Get Instance ISO Status

Details

  • Method: GET
  • Path: /instances/{instance-id}/iso
  • Operation ID: get-instance-iso-status

Parameters

{}

Response Schema

{
  "type": "object",
  "properties": {
    "iso_status": {
      "type": "object",
      "properties": {
        "iso_id": {
          "description": "The [ISO id](#operation/list-isos).",
          "type": "string"
        },
        "state": {
          "type": "string",
          "description": "The status of this ISO.\n* ready\n* attached"
        }
      }
    }
  }
}

Usage

from ocp_agent import OCPAgent

agent = OCPAgent()
await agent.register_api('vultr')

# Call this tool
result = await agent.call_tool('getInstanceIsoStatus', {
    # Add required parameters here
})