获取
描述
integer/array dcheck.get(object parameters)
这个方法允许根据给定的参数检索发现检查。
参数
(object)
定义需要输出的参数。
这个方法支持以下参数。
返回值
(integer/array)
返回:
- 一个对象数组;
- 如果使用了
countOutput
参数,被检索的对象的数量。
示例
为一个发现规则检索发现检查
检索被发现规则 “6” 使用的所有发现检查。
请求:
{
"jsonrpc": "2.0",
"method": "dcheck.get",
"params": {
"output": "extend",
"dcheckids": "6"
},
"auth": "038e1d7b1735c6a5436ee9eae095879e",
"id": 1
}
响应:
{
"jsonrpc": "2.0",
"result": [
{
"dcheckid": "6",
"druleid": "4",
"type": "3",
"key_": "",
"snmp_community": "",
"ports": "21",
"snmpv3_securityname": "",
"snmpv3_securitylevel": "0",
"snmpv3_authpassphrase": "",
"snmpv3_privpassphrase": "",
"uniq": "0",
"snmpv3_authprotocol": "0",
"snmpv3_privprotocol": "0"
}
],
"id": 1
}
来源
CDCheck::get() in frontends/php/include/classes/api/services/CDCheck.php.