detachInstanceNetwork
Detach Private Network from Instance.
Details
- Method:
POST - Path:
/instances/{instance-id}/private-networks/detach - Operation ID:
detach-instance-network
Parameters
{
"network_id": {
"description": "The [Private Network id](#operation/list-networks) to detach from this Instance.",
"required": false,
"location": "body",
"type": "string"
}
}Usage
from ocp_agent import OCPAgent
agent = OCPAgent()
await agent.register_api('vultr')
# Call this tool
result = await agent.call_tool('detachInstanceNetwork', {
# Add required parameters here
})