action rumble_create_site { label: "Create a new site" provider: rumble method: PUT path: "/org/sites" encoding: json input: { type: "object" required: ["name"] properties: { description: { type: "string" } excludes: { type: "string" } name: { type: "string" } scope: { type: "string" } } } 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" } } } }