action gambitcomm_from_list { label: "List the source addresses that the agent will accept messages from." description: "This in effect implements source-address-indexing, where 2 agents with the same address can be configured, each accepting messages from different management stations." provider: gambitcomm method: GET path: "/mimic/agent/{agentNum}/from/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" } } } } }