action rumble_update_site { label: "Update a site definition" provider: rumble method: PATCH path: "/org/sites/{site_id}" encoding: json input: { type: "object" properties: { description: { type: "string" } excludes: { type: "string" } name: { type: "string" } scope: { type: "string" } site_id: { type: "string" format: "uuid" } } required: ["name", "site_id"] additionalProperties: false } output: { type: "object" required: ["id", "name"] properties: { created_at: { type: "integer" format: "int64" } description: { type: "string" } excludes: { type: "string" } id: { type: "string" format: "uuid" } name: { type: "string" } permanent: { type: "boolean" } scope: { type: "string" } subnets: { type: "object" } updated_at: { type: "integer" format: "int64" } } } }