批量删除

描述

object hostinterface.massremove(object parameters)

该方法允许从给定主机中删除主机接口。

此方法仅适用于 AdminSuper admin 用户类型。调用该方法的权限可在用户角色设置中撤销。更多信息请参阅 用户角色

参数

(object) 参数,其中包含要更新的主机 ID 和要删除的接口。

参数类型说明
interfacesobject/array要从给定的主机删除的 主机接口

主机接口对象必须只定义ipdnsport属性。

参数行为:
- 必须
hostidsID/array要更新的主机 ID。

参数行为:
- 必须

返回值

(object) 返回一个对象,其中在 interfaceids 属性下包含已删除主机接口的 ID。

示例

删除接口

从两台主机上删除 “127.0.0.1” SNMP 接口。

请求

  1. {
  2. "jsonrpc": "2.0",
  3. "method": "hostinterface.massremove",
  4. "params": {
  5. "hostids": [
  6. "30050",
  7. "30052"
  8. ],
  9. "interfaces": {
  10. "dns": "",
  11. "ip": "127.0.0.1",
  12. "port": "161"
  13. }
  14. },
  15. "id": 1
  16. }

响应:

  1. {
  2. "jsonrpc": "2.0",
  3. "result": {
  4. "interfaceids": [
  5. "30069",
  6. "30070"
  7. ]
  8. },
  9. "id": 1
  10. }

另见

来源

CHostInterface::massRemove() 在 ui/include/classes/api/services/CHostInterface.php