action gambitcomm_trap_config_list { label: "List the set of trap destinations for this agent instance." description: "Each trap destination is identified with an IP address and a port number. The default port number is the standard SNMP trap port 162." provider: gambitcomm method: GET path: "/mimic/agent/{agentNum}/trap/config/list" encoding: json input: { type: "object" properties: { agentNum: { type: "integer" format: "int32" } } required: ["agentNum"] additionalProperties: false } output: { type: "array" items: { type: "object" properties: { IP: { type: "string" } port: { type: "integer" format: "int32" } } } } }