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

updateStartupScript

Update Startup Script

Details

  • Method: PATCH
  • Path: /startup-scripts/{startup-id}
  • Operation ID: update-startup-script

Parameters

{
  "name": {
    "description": "The name of the Startup Script.",
    "required": false,
    "location": "body",
    "type": "string"
  },
  "script": {
    "description": "The base-64 encoded Startup Script.",
    "required": false,
    "location": "body",
    "type": "string"
  },
  "type": {
    "description": "The Startup Script type.\n\nboot (default)\npxe",
    "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('updateStartupScript', {
    # Add required parameters here
})