host.massremove

描述

object host.massremove(object parameters)

此方法允许从多个 主机 中移除相关的 objects。

此方法仅对 AdminSuper admin 用户类型可用。调用该方法的权限可以在用户角色设置中撤销。更多信息请参见 User roles

参数

(object) 参数包含要 update 的 主机 的 ID 以及应移除的 objects。

参数 数据类型 描述
hostids ID/array 要更新的 主机 的 ID。

参数行为:
- 必填
groupids ID/array 从中移除指定 主机 的 host groups 的 ID。
interfaces object/array 从指定的 主机 中移除的 Host interfaces

主机 接口 object 必须仅定义 ipdnsport 属性。
macros string/array 从指定的 主机 中 delete 的 User macros
templateids ID/array 从指定的 主机 中取消关联的 templates 的 ID。
templateids_clear ID/array 从指定的 主机 中取消关联并 clear 的 templates 的 ID。

返回值

(object) 返回一个 object,其中包含更新后的 主机 的 ID,这些 ID 位于 hostids 属性下。

示例

解除模板关联

从两个 主机 和 delete 解除模板链接,并解除所有模板实体的链接。

执行请求:

{
           "jsonrpc": "2.0",
           "method": "host.massremove",
           "params": {
               "hostids": ["69665", "69666"],
               "templateids_clear": "325"
           },
           "id": 1
       }

响应:

{
           "jsonrpc": "2.0",
           "result": {
               "hostids": [
                   "69665",
                   "69666"
               ]
           },
           "id": 1
       }

另请参阅

来源

CHost::massRemove() 在 ui/include/classes/api/services/CHost.php 中。