action gambitcomm_get_state { label: "Get the state of a MIB object object." description: "To disable traversal into a MIB object and any subtree underneath, set the state to 0, else set the state to 1." provider: gambitcomm method: GET path: "/mimic/agent/{agentNum}/value/state/get/{object}" encoding: json input: { type: "object" properties: { agentNum: { type: "integer" format: "int32" } object: { type: "string" } } required: ["agentNum", "object"] additionalProperties: false } output: { type: "string" } }