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

listInstanceIpv6Reverse

List Instance IPv6 Reverse

Details

  • Method: GET
  • Path: /instances/{instance-id}/ipv6/reverse
  • Operation ID: list-instance-ipv6-reverse

Parameters

{}

Response Schema

{
  "type": "object",
  "properties": {
    "reverse_ipv6s": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "reverse": {
            "type": "string",
            "description": "The IPv6 reverse entry."
          },
          "ip": {
            "type": "string",
            "description": "The IPv6 address."
          }
        }
      }
    }
  }
}

Usage

from ocp_agent import OCPAgent

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

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