opennms
Version:
Client API for the OpenNMS network monitoring platform
18 lines (14 loc) • 394 B
text/typescript
/**
* OpenNMS flow node SNMP interface metadata.
* @category Model
*/
export class OnmsFlowSnmpInterface {
/** the interface's ifIndex */
public index?: number;
/** the interface name */
public name?: string;
/** the interface's ifDescription */
public description?: string;
/** the interface's OpenNMS resource identifier */
public resourceId?: string;
}