2022 Zabbix中国峰会
2022 Zabbix中国峰会

hostprototype.delete

Description 说明

object hostprototype.delete(array hostPrototypeIds)

This method allows to delete host prototypes.该方法允许删除主机原型。

Parameters 参数

(array) IDs of the host prototypes to delete.要删除的主机原型的ID。

Return values 返回值

(object) Returns an object containing the IDs of the deleted host prototypes under the hostids property.返回一个包含“hostid”属性下删除的主机原型的ID的对象。

Examples 示例

Deleting multiple host prototypes删除多个主机原型

Delete two host prototypes.删除两个主机原型

Request:

{
           "jsonrpc": "2.0",
           "method": "hostprototype.delete",
           "params": [
               "10103",
               "10105"
           ],
           "auth": "3a57200802b24cda67c4e4010b50c065",
           "id": 1
       }

Response:

{
           "jsonrpc": "2.0",
           "result": {
               "hostids": [
                   "10103",
                   "10105"
               ]
           },
           "id": 1
       }

Source 来源

CHostPrototype::delete() in frontends/php/include/classes/api/services/CHostPrototype.php.