action gambitcomm_get_variables { label: "Display the variables for the specified instance instance for the specified MIB object object" description: "This enables variable browsing of the MIB on the current agent." provider: gambitcomm method: GET path: "/mimic/agent/{agentNum}/value/variables/{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: "array" items: { type: "string" } } }