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

创建

描述

object hostinterface.create(object/array hostInterfaces)

该方法允许创建新的主机接口.

参数

(对象/数组) 创建主机接口,该方法接受标准主机接口属性的主机接口.

返回值

(对象)interfaceids属性中返回已创建主机接口ID的对象.返回的ID顺序与传入的主机接口顺序保持一致.

示例

创建主机接口

给ID为30052主机创建辅助IP代理接口

请求:

{
           "jsonrpc": "2.0",
           "method": "hostinterface.create",
           "params": {
               "hostid": "30052",
               "dns": "",
               "ip": "127.0.0.1",
               "main": 0,
               "port": "10050",
               "type": 1,
               "useip": 1
           },
           "auth": "038e1d7b1735c6a5436ee9eae095879e",
           "id": 1
       }

响应:

{
           "jsonrpc": "2.0",
           "result": {
               "interfaceids": [
                   "30062"
               ]
           },
           "id": 1
       }

参考

来源

CHostInterface::create() in frontends/php/include/classes/api/services/CHostInterface.php.

Source

CHostInterface::create() in ui/include/classes/api/services/CHostInterface.php.