action solarvps_get_pods_pod_id_action { label: "Perform action on a specific pod" description: "Allowed actions are reboot, shutdown, boot" provider: solarvps method: GET path: "/pods/{podId}/{action}" encoding: json input: { type: "object" properties: { action: { type: "string" } podId: { type: "string" } } required: ["action", "podId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }