action gambitcomm_from_del { label: "delete a source address that the agent will accept messages from." description: "An empty ipaddress or 0.0.0.0 both imply any address. Similarly an empty port or 0 both imply any port. For agents with source-address-indexing enabled, messages which do not match any source address will be discarded with an ERROR message, similar to community string mismatches." provider: gambitcomm method: DELETE path: "/mimic/agent/{agentNum}/from/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" } }