action gambitcomm_get_instances { label: "Display the MIB object instances for the specified object." description: "This enables MIB browsing of the MIB on the current agent." provider: gambitcomm method: GET path: "/mimic/agent/{agentNum}/value/instances/{object}" encoding: json input: { type: "object" properties: { agentNum: { type: "integer" format: "int32" } object: { type: "string" } } required: ["agentNum", "object"] additionalProperties: false } output: { type: "array" items: { type: "string" } } }