获取

描述

integer/array dcheck.get(object parameters)

这个方法允许根据给定的参数检索发现检查。

参数

(object) 定义需要输出的参数。

这个方法支持以下参数。

参数 类描述
dcheckids字符串/数组 只返回拥给定 ID 的发现检查。
druleids字符串/数组 只返回发检查,该检查属于给定的发现规则
dserviceids字符串/数组 只返回发检查,该检查已检测到给定的已发现服务
sortfield字符串/数组 根据给定属性对结果进行排序。

可能的值有:dcheckiddruleid
countOutput布尔值 在用评论中详细描述了所有 get 方法的常见参数。
editable布尔值 ::
excludeSearch布尔值 ::
filter对象 ::
limit整数 ::
output查询 ::
preservekeys布尔值 ::
search对象 ::
searchByAny布尔值 ::
searchWildcardsEnabled布尔值 ::
sortorder字符串/数组 :::
startSearch布尔值 ::

返回值

(integer/array) 返回:

  • 一个对象数组;
  • 如果使用了 countOutput 参数,被检索的对象的数量。

示例

为一个发现规则检索发现检查

检索被发现规则 “6” 使用的所有发现检查。

请求:

  1. {
  2. "jsonrpc": "2.0",
  3. "method": "dcheck.get",
  4. "params": {
  5. "output": "extend",
  6. "dcheckids": "6"
  7. },
  8. "auth": "038e1d7b1735c6a5436ee9eae095879e",
  9. "id": 1
  10. }

响应:

  1. {
  2. "jsonrpc": "2.0",
  3. "result": [
  4. {
  5. "dcheckid": "6",
  6. "druleid": "4",
  7. "type": "3",
  8. "key_": "",
  9. "snmp_community": "",
  10. "ports": "21",
  11. "snmpv3_securityname": "",
  12. "snmpv3_securitylevel": "0",
  13. "snmpv3_authpassphrase": "",
  14. "snmpv3_privpassphrase": "",
  15. "uniq": "0",
  16. "snmpv3_authprotocol": "0",
  17. "snmpv3_privprotocol": "0"
  18. }
  19. ],
  20. "id": 1
  21. }

来源

CDCheck::get() in frontends/php/include/classes/api/services/CDCheck.php.