ZabbixApiHostInterface.java

package eu.linuxengineering.zabbix.api;

import java.util.List;

/**
 * https://www.zabbix.com/documentation/3.0/manual/api/reference/hostinterface/create
 * TODO:
 * 	- 
 * */
public interface ZabbixApiHostInterface extends ZabbixApi
{
	public static class ZabbixHostInterface extends TargetObject
	{
		public Integer interfaceid;
		public Integer hostid;
		public Integer main;
		public Integer type;
		public Integer useip;
		public String ip;
		public String dns;
		public Integer port;
		public Integer bulk;
	}
	
	public List<ZabbixHostInterface> get(ZabbixParams params);
}