action gambitcomm_del_ipalias { label: "Deletes an existing ipalias from the agent." description: "port defaults to 161 if not specified." provider: gambitcomm method: DELETE path: "/mimic/agent/{agentNum}/ipalias/delete/{IP}/{port}" encoding: json input: { type: "object" properties: { IP: { type: "string" } agentNum: { type: "integer" format: "int32" } port: { type: "integer" format: "int32" } } required: ["IP", "agentNum", "port"] additionalProperties: false } output: { type: "string" } }