Generic high-level API to SNMP v.1 PDU objects

The pysnmp.proto.api.generic.rfc1157 module implements a set of mix-in classes that provide high-level interface to SNMP v.1 message objects within a unified "Generic" API.

class MessageMixIn()

This is a mix-in for Message class. It defines a few methods (see below) composing high-level API to SNMP v.1 rfc1157.Message-based classes such as v1.GetRequest, v1.Trap etc.

class GetRequestPduMixIn()
class GetNextRequestPduMixIn()
class SetRequestPduMixIn()

These are the mix-ins for their complementary classes. They define a few methods (see below) composing high-level API to SNMP v.1 GetRequestPdu, GetNextRequestPdu and SetRequestPdu objects.

class GetResponsePduMixIn()

This's the mix-in for its complementary class. It define a few methods (see below) composing high-level API to SNMP v.1 GetResponsePdu objects.

class TrapPduMixIn()

This's the mix-in for its complementary class. It define a few methods (see below) composing high-level API to SNMP v.1 TrapPdu objects.

Methods of the above classes may raise exceptions based on error.ProtoApiGenError base class.


Subsections


ilya@glas.net