action gambitcomm_meval_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/meval/{objInsArray}" encoding: json input: { type: "object" properties: { agentNum: { type: "integer" format: "int32" } objInsArray: { type: "array" items: { type: "array" items: { type: "string" } } } } required: ["agentNum", "objInsArray"] additionalProperties: false } output: { type: "array" items: { type: "string" } } }