action apache_get_pool { label: "Get a pool" provider: apache method: GET path: "/pools/{pool_name}" encoding: json output: { type: "object" description: "The pool" properties: { description: { type: "string" description: "The description of the pool.\n\n*New in version 2.3.0*\n" } name: { type: "string" description: "The name of pool." } occupied_slots: { type: "integer" description: "The number of slots used by running/queued tasks at the moment." } open_slots: { type: "integer" description: "The number of free slots at the moment." } queued_slots: { type: "integer" description: "The number of slots used by queued tasks at the moment." } slots: { type: "integer" description: "The maximum number of slots that can be assigned to tasks. One job may occupy one or more slots.\n" } used_slots: { type: "integer" description: "The number of slots used by running tasks at the moment." } } } }