action gambitcomm_eval_value { label: "Evaluate the values of the specified instance instance for each specified MIB object object and return it as it would through SNMP requests." description: "Evaluate the values of the specified instance instance for each specified MIB object object and return it as it would through SNMP requests." provider: gambitcomm method: GET path: "/mimic/agent/{agentNum}/value/eval/{object}/{instance}" encoding: json input: { type: "object" properties: { agentNum: { type: "integer" format: "int32" } instance: { type: "string" } object: { type: "string" } } required: ["agentNum", "instance", "object"] additionalProperties: false } output: { type: "string" } }