action gambitcomm_protocol_dhcp_get_config { label: "Show the agent's DHCP configuration" description: "Agent's DHCP configuration hwaddr,classid,add_options,script" provider: gambitcomm method: GET path: "/mimic/agent/{agentNum}/protocol/msg/dhcp/get/config" encoding: json input: { type: "object" properties: { agentNum: { type: "integer" format: "int32" } } required: ["agentNum"] additionalProperties: false } output: { type: "object" properties: { add_options: { type: "string" } classid: { type: "string" } hwaddr: { type: "string" } script: { type: "string" } } } }