c8159ea6cb
Create fault management REST API service Create fault management client and CLI shell Add a python extension for fault management application APIs Update fault management python APIs to use the python extension Update fault manager to retrieve the SNMP configuration from the config file Story: 2002828 Task: 22747 Depends-On: https://review.openstack.org/#/c/592176/ Change-Id: I888d8d23edf75d05d51594ccca55570ae366c848 Signed-off-by: Tao Liu <tao.liu@windriver.com>
20 lines
318 B
C++
20 lines
318 B
C++
//
|
|
// Copyright (c) 2014 Wind River Systems, Inc.
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
#ifndef __FM_SNMP_UTILS_H
|
|
#define __FM_SNMP_UTILS_H
|
|
|
|
#include <string>
|
|
|
|
#include "fmAPI.h"
|
|
#include "fmDb.h"
|
|
|
|
bool fm_snmp_util_gen_trap(int type, SFmAlarmDataT &data);
|
|
|
|
void set_trap_dest_list(std::string value);
|
|
|
|
#endif
|