action gambitcomm_list_ipaliases { label: "Lists all the additional ipaliases configured for the agent." description: "The agent host address (set with mimic agent set host) is not in this list, since it is already accessible separately with mimic agent get host." provider: gambitcomm method: GET path: "/mimic/agent/{agentNum}/ipalias/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" } interface: { type: "string" } mask: { type: "string" } port: { type: "integer" format: "int32" } } } } }