action rumble_update_agent_site { label: "Update the site associated with agent" provider: rumble method: PATCH path: "/org/agents/{agent_id}" encoding: json input: { type: "object" properties: { agent_id: { type: "string" format: "uuid" } site_id: { type: "string" format: "uuid" } } required: ["agent_id", "site_id"] additionalProperties: false } output: { type: "object" required: ["id"] properties: { arch: { type: "string" } client_id: { type: "string" format: "uuid" } connected: { type: "boolean" } created_at: { type: "integer" format: "int64" } deactivated_at: { type: "integer" format: "int64" } external_ip: { type: "string" } host_id: { type: "string" } hub_id: { type: "string" format: "uuid" } id: { type: "string" format: "uuid" } inactive: { type: "boolean" } internal_ip: { type: "string" } last_checkin: { type: "integer" format: "int64" } name: { type: "string" format: "hostname" } organization_id: { type: "string" format: "uuid" } os: { type: "string" } site_id: { type: "string" format: "uuid" } system_info: { type: "object" } updated_at: { type: "integer" format: "int64" } version: { type: "string" } } } }