HPI-B0101-MIB

File: HPI-B0101-MIB.mib (469443 bytes)

Imported modules

SNMPv2-SMI SNMPv2-TC SNMPv2-CONF
SAF-TC-MIB

Imported symbols

MODULE-IDENTITY OBJECT-TYPE NOTIFICATION-TYPE
Unsigned32 Gauge32 Counter32
Integer32 TEXTUAL-CONVENTION RowPointer
RowStatus DisplayString TruthValue
MODULE-COMPLIANCE OBJECT-GROUP NOTIFICATION-GROUP
hpiD

Defined Types

Unsigned16  
Textual convention for an unsigned 16-bit data, 2-byte alignment data type.
TEXTUAL-CONVENTION    
  Integer32 0..65535  

Unsigned8  
Textual convention for an unsigned 8-bit data type.
TEXTUAL-CONVENTION    
  Integer32 0..255  

Double  
Textual convention for an 64 bit float number, 8 byte alignment data type.
TEXTUAL-CONVENTION    
  OCTET STRING Size(0..8)  

SaHpiEntityPath  
Entity Path associated with Announcement. This object converts HPI's saHpiEntityPathT structure to a canonical string. This string is formed by removing the SAHPI_ENT_ prefix from the HPI types, and creating tuples for the entity types. If an entity path contains entity types implemented from the reserved ranges, such as ATCA, then if those types contain SAHPI_ENT_ prefixes they too shall be removed. Order of significance is inverted to make entity paths look more like Unix directory structure. It is also assumed that {ROOT,0} exists implicitly before all of these entries. For example: {SYSTEM_CHASSIS,2}{PROCESSOR_BOARD,0}
TEXTUAL-CONVENTION    
  OCTET STRING Size(0..255)  

SaHpiDomainId  
Domain identifier. The number is unique within the system.
TEXTUAL-CONVENTION    
  Unsigned32  

SaHpiInstrumentId  
Textual convention for all HPI MIB management instrument identifiers - sensor numbers, control numbers, watchdog timer numbers, etc.
TEXTUAL-CONVENTION    
  Unsigned32  

SaHpiEntryId  
Textual convention for the entry ID of a record. This value is used to enumerate the indexes of records that are held by HPI. There are three different unique values to denote the first, last, and unspecified entries in HPI: SAHPI_FIRST_ENTRY 0x00000000 SAHPI_LAST_ENTRY 0xFFFFFFFF SAHPI_ENTRY_UNSPECIFIED SAHPI_FIRST_ENTRY As a result, we can use SAHPI_FIRST_ENTRY and SAHPI_ENTRY_UNSPECIFIED to query HPI so that it will return the first entry in a particular table. SAHPI_LAST_ENTRY is not a valid entry identifier to query HPI because the value denotes the end of a table or list. Please note that these values will not be used to denote actual entries in an SNMP agent implementation.
TEXTUAL-CONVENTION    
  Unsigned32  

SaHpiManufacturerId  
Textual convention for the identifier of the manufacturer. SAHPI_MANUFACTURER_ID_UNSPECIFIED == 0 is used when no value is assigned. This is the IANA-assigned private enterprise number for the manufacturer of the resource or FRU, or of the manufacturer defining an Oem control or event type. A list of current IANA-assigned private enterprise numbers may be obtained at http://www.iana.org/assignments/enterprise-numbers If a manufacturer does not currently have an assigned number, one may be obtained by following the instructions located at http://www.iana.org/cgi-bin/enterprise.pl
TEXTUAL-CONVENTION    
  Unsigned32  

SaHpiOptionalData  
Sensor events may contain optional data items passed and stored with the event. If these optional data items are present, they will be included with the event data. This texual definition defines the types of optional data passed back from a sensor during an event response. Each capability is seperated by a delimeter a comma ',' or semicolon ';'. Specific implementations of HPI (SNMP subagent) may have restrictions on how much data may be passed to this textual convention. These restrictions should be documented by the provider of the HPI interface. String token values are listed below. SAHPI_SOD_TRIGGER_READING SAHPI_SOD_TRIGGER_THRESHOLD SAHPI_SOD_OEM SAHPI_SOD_PREVIOUS_STATE SAHPI_SOD_CURRENT_STATE SAHPI_SOD_SENSOR_SPECIFIC
TEXTUAL-CONVENTION    
  OCTET STRING Size(0..255)  

SaHpiTime  
This textual convention defines the HPI time value as an 64-bit value. An HPI time value represents the local time as the number of nanoseconds from 00:00:00, January 1, 1970, in a 64-bit signed integer. This format is sufficient to represent times with nano-second resolution from the year 1678 to 2262. Every API which deals with time values must define the timezone used. It should be noted that although nano-second resolution is supported in the data type, the actual resolution provided by an implementation may be more limited than this. The value -2^63, which is 0x8000000000000000, is used to indicate 'unknown/unspecified time'. Conversion to/from POSIX and other common time representations is relatively straightforward. The following code framgment converts between SaHpiTimeT and time_t: time_t tt1, tt2; SaHpiTimeT saHpiTime; time(&tt1); saHpiTime = (SaHpiTimeT) tt1 1000000000; tt2 = saHpiTime / 1000000000; The following fragment converts between SaHpiTimeT and a struct timeval: struct timeval tv1, tv2; SaHpiTimeT saHpiTime; gettimeofday(&tv1, NULL); saHpiTime = (SaHpiTimeT) tv1.tv_sec 1000000000 + tv1.tv_usec 1000; tv2.tv_sec = saHpiTime / 1000000000; tv2.tv_usec = saHpiTime % 1000000000 / 1000; The following fragment converts between SaHpiTimeT and a struct timespec: struct timespec ts1, ts2; SaHpiTimeT saHpiTime; clock_gettime(CLOCK_REALTIME, &ts1); saHpiTime = (SaHpiTimeT) ts1.tv_sec 1000000000 + ts1.tv_nsec; ts2.tv_sec = saHpiTime / 1000000000; ts2.tv_nsec = saHpiTime % 1000000000; Note, however, that since time_t is (effectively) universally 32 bits, all of these conversions will cease to work on January 18, 2038. Some subsystems may need the flexibility to report either absolute or relative (eg. to system boot) times. This will typically be in the case of a board which may or may not, depending on the system setup, have an idea of absolute time. For example, some boards may have 'time of day' clocks which start at zero, and never get set to the time of day. In these cases, times which represent 'current' time (in events, for example) can be reported based on the clock value, whether it has been set to the actual date/time, or whether it represents the elapsed time since boot. If it is the time since boot, the value will be (for 27 years) less than 0x0C00000000000000, which is Mon May 26 16:58:48 1997. If the value is greater than this, then it can be assumed to be an absolute time. Every API which can report either absolute or relative times must state this rule clearly in its interface specification. SAHPI_TIME_UNSPECIFIED 0x8000000000000000LL Maximum time that can be specified as relative : SAHPI_TIME_MAX_RELATIVE 0x0C00000000000000LL Used when textual convention is used to specify a time value conveying a non-blocking action. Take action immediately. SAHPI_TIMEOUT_IMMEDIATE 0x0000000000000000LL Used when textual convention is used to specify a time value conveying a time independent wait should occur. Wait for all time if necessary. SAHPI_TIMEOUT_BLOCK -1LL In all cases, time will be displayed in network-byte order - big endian.
TEXTUAL-CONVENTION    
  OCTET STRING Size(8)  

SaHpiSeverity  
This textual convention defines the severity levels. When using these event severities the event severity should match the event state (for example minor(3) should have an event state of LOWER_MINOR). The possible levels are: critical (1) major (2) minor (3) informational (4) ok (5) debug (6) The last level, allSeverities(7) is only used with Domain Alarm Table and Annunciator table. It is not a valid severity for events or alarms. Note: These values are offset by +1 as compared to the SAI-HPI-B.01.01 values.
TEXTUAL-CONVENTION    
  INTEGER undefined(0), critical(1), major(2), minor(3), informational(4), ok(5), debug(6), allSeverities(7)  

SaHpiStatusCondType  
This textual convention defines the types of announcements available: sensor (1), resource (2) oem (3) user (4)
TEXTUAL-CONVENTION    
  INTEGER undefined(0), sensor(1), resource(2), oem(3), user(4)  

SaHpiEventCategory  
This textual convention defines the enumeration of event categories and is used extensivly by sensors and events. Depending on the event category, the event states (defined by the textual convention SaHpiEventState) takes on different meanings for events generated by specific sensors. For sensors, events contain an event category and event state. The generic(128) category can be used for discrete sensors which have state meanings other than those identified with other event categories. Note: Enumerated values are increased by one value compared to SAI-HPI-B spec.
TEXTUAL-CONVENTION    
  INTEGER undefined(0), unspecified(1), threshold(2), usage(3), state(4), predFail(5), limit(6), performance(7), severity(8), presence(9), enable(10), availability(11), redundancy(12), sensorSpecific(127), generic(128)  

SaHpiEventState  
The following event states are available for variables using the saHpiEventCategory textual convention to provide event origin information. Each set of events is uniquely identified with a label which easily refers back to the corresponding category. Only events from the same category should be coalesced in a variable of this type. Each event will have one or more event states seperated by a common delimiter (, or ;) associated with it. When retrieving the event status, all applicable event states can be used. Similarly, when setting the event enabled status a set of all applicable event states can be used. For example, for the type threshold(2), the retrieved states can be: LOWER_MINOR, UPPER_CRIT, UPPER_MAJOR When the event category is the unspecified(0) type, the event can be: UNSPECIFIED Event category of type threshold(2), can have the following values : LOWER_MINOR LOWER_MAJOR LOWER_CRIT UPPER_MINOR UPPER_MAJOR UPPER_CRIT Event category of type usage(3), can have : IDLE ACTIVE BUSY Event category of type state(4), can have : STATE_DEASSERTED STATE_ASSERTED Event category of type predFail(5), can have : PRED_FAILURE_DEASSERT PRED_FAILURE_ASSERT Event category of type limit(6), can have : LIMIT_NOT_EXCEEDED LIMIT_EXCEEDED Event category of type performance(7), can have : PERFORMANCE_MET PERFORMANCE_LAGS Event category of type severity(8), can have : OK MINOR_FROM_OK MAJOR_FROM_LESS CRITICAL_FROM_LESS MINOR_FROM_MORE MAJOR_FROM_CRITICAL CRITICAL MONITOR INFORMATIONAL Event category of type presence(9), can be: ABSENT PRESENT Event category of type enable(10), can be: DISABLED ENABLED Event category of type availability(11), can have the following values : RUNNING TEST POWER_OFF ON_LINE OFF_LINE OFF_DUTY DEGRADED POWER_SAVE INSTALL_ERROR Event category of type redundancy(12), can have: FULLY_REDUNDANT REDUNDANCY_LOST REDUNDANCY_DEGRADED REDUNDANCY_LOST_SUFFICIENT_RESOURCES NON_REDUNDANT_SUFFICIENT_RESOURCES NON_REDUNDANT_INSUFFICIENT_RESOURCES REDUNDANCY_DEGRADED_FROM_FULL REDUNDANCY_DEGRADED_FROM_NON For the event category of generic(128) or sensor-specific(127), permitted strings are implementation-specific but can be from : STATE_00 STATE_01 STATE_02 STATE_03 STATE_04 STATE_05 STATE_06 STATE_07 STATE_08 STATE_09 STATE_10 STATE_11 STATE_12 STATE_13 STATE_14 When using these event states, the event state should match the event severity (for example LOWER_MINOR should have an event severity of minor(3)).
TEXTUAL-CONVENTION    
  OCTET STRING Size(0..255)  

SaHpiHotSwapState  
This textual convention defines the enumeration of states specific to Hot Swap records. They are: inactive(1): The inactive(1) state indicates that the FRU, which supports the full hot swap model, is no longer active in the system, and that it has completed the extraction process. When a FRU completes the hardware disconnection process, it is logically and electrically disconnected or isolated from the platform but still physically located in the platform, so the associated resource remains in the domain. Typically, a FRU will be powered off or held in reset when in this state. The HPI implementation should generate a hot swap event with SaHpiHotSwapState = inactive(1) when the resource is transitioning to an inactive(1) state. insertionPending(2): The insertionPending(2) state is entered after a resource that supports the full hot swap model has been added to the domain, as a result of the associated FRU being physically inserted into the system. This state indicates the resource is transitioning from a notPresent(5) state or inactive(1) state into the ACTIVE state. When transitioning into the insertionPending(2) state, the resource should generate a hot swap event with SaHpiHotSwapState = insertionPending(2). The event can be generated when the ejector latch is shut (cPCI) or the device is seated in a slot. Upon receiving the event, the HPI User has the opportunity to discover the capabilities of the resource before allowing the FRU associated with the resource to power on and become an active component in the system. During this state, the FRU can be commanded to power on or de-assert reset. active(3): The active(3) state indicates that a resource is now an active member of the domain. After a FRU completes the hardware connection process, the associated resource enters the active(3) state. This does not mean that the FRU is now active at the software level, but merely indicates that the FRU is now active in the system and that it should not be abruptly removed. The HPI implementation generates a hot swap event with SaHpiHotSwapState = active(3) when the resource transitions to the active(3) state. extractionPending(4): The extractionPending(4) state indicates that the resource, which supports the full hot swap model, has requested extraction of the associated FRU. Typically, a resource enters an extractionPending(4) state when an ejector latch is opened (PICMG 2.1) or when a hot swap button is pressed. The HPI implementation should generate a hot swap event with SaHpiHotSwapState = extractionPending(4) when a resource that supports Managed Hot Swap requests extraction. Upon receiving the event, the HPI User has the opportunity to unload software drivers, relocate processes, or unmount file systems (software disconnect) before allowing a FRU to power down and disconnect from the system. notPresent(5): The notPresent(5) state is actually a virtual state that represents a resource that is not currently present in the domain, because the FRU associated with that resource is not currently present in the system. A resource is in this state before the FRU is physically inserted into the system or if it has been removed from the system. A resource that supports the full Hot Swap model typically transitions to this state from the inactive(1) state, but a resource can transition to this state from any state due to a surprise extraction of the FRU. The HPI implementation should generate a hot swap event with SaHpiHotSwapState = notPresent(5) when the resource transitions from any state to the notPresent(5) state. The event can indicate a normal transition from inactive(1) to the notPresent(5) state or a surprise extraction from any other state. Normal transition events are issued with a severity of informational(4). A resource following the simplified hot swap model always indicates the transition to the notPresent(5) state as a surprise extraction. When a resource associated with a FRU fails, many systems will detect this as a notPresent(5) state for the FRU, and report it as a transition to the notPresent(5) state (a normal transition if the resource was in the inactive(1) state, or a surprise extraction if it was in a different state). If the resource is subsequently restored to functionality, these systems will then detect the presence of the FRU, and report another state transition from the notPresent(5) state to the current hot swap state for the restored resource. If the current hot swap state is not the normal ~initial~ state for the FRU when it is inserted (i.e., insertionPending(2) for a resource that uses the full hot swap model or active(3) for a resource that uses the simplified hot swap model), then the severity of the ~unusual~ hot swap event showing a transition from notPresent(5) to a different state should be the severity contained in the ResourceSeverity field in the resource~s RPT entry. Note: Enumerated values are increased by one value compared to SAI-HPI-B spec.
TEXTUAL-CONVENTION    
  INTEGER undefined(0), inactive(1), insertionPending(2), active(3), extractionPending(4), notPresent(5)  

SaHpiWatchdogPreTimerAction  
This textual convention defines the enumerations which represent the possible types of interrupts that may be triggered by a watchdog pre-timer event. The actual meaning of these operations may differ depending on the hardware architecture.
TEXTUAL-CONVENTION    
  INTEGER undefined(0), none(1), smi(2), nmi(3), messageInterrupt(4), oem(16)  

SaHpiWatchdogTimerUse  
The textual convention defines the enumerations which represent the possible watchdog uses that may have caused the watchdog to expire. For instance, if watchdog is being used during power on self test (POST), and it expires, the biosPost(3) expiration type will be set. Most specific uses for Watchdog timer by users of HPI should indicate smsOs(5) if the use is to provide an OS-healthy heartbeat, or oem(6) if it is used for some other purpose. Note: Enumerated values are increased by one value compared to SAI-HPI-B.01.01 spec.
TEXTUAL-CONVENTION    
  INTEGER undefined(0), none(1), biosFrb2(2), biosPost(3), osLoad(4), smsOs(5), oem(6), unspecified(16)  

SaHpiTextType  
This textual convention defines the enumeration type of text value. The encoding of the SaHpiText type is defined by this enumeration. The following table describes the various encodings: DataType Encoding -------- -------- unicode 16-bit Unicode, least significant byte first. Buffer must contain even number of bytes. bcdplus 8-bit ASCII, '0'-'9' or space, dash, period, colon, comma, or underscore only. ascii6 8-bit ASCII, reduced set, 0x20=0x5f only. text 8-bit ASCII+Latin 1 binary 8-bit bytes, any values legal Note: 'ASCII+Latin 1' is derived from the first 256 characters of Unicode 2.0. The first 256 codes of Unicode follow ISO 646 (ASCII) and ISO 8859/1 (Latin 1). The Unicode 'C0 Controls and Basic Latin' set defines the first 128 8-bit characters (00h-7Fh) and the 'C1 Controls and Latin 1 Supplement' defines the second 128 (80h-FFh). Note: The bcdplus(2) and ascii6(3) encodings use normal ASCII character encodings, but restrict the allowed characters to a subset of the entire ASCII character set. These encodings are used when the target device contains restrictions on which characters it can store or display. BCDPLUS data may be stored externally as 4-bit values, and ASCII6 may be stored externally as 6-bit values. But, regardless of how the data is stored externally, it is encoded as 8-bit ASCII in the SaHpiText structure passed across the HPI. Note: Enumerated values are increased by one value compared to SAI-HPI-B.01.01 spec.
TEXTUAL-CONVENTION    
  INTEGER undefined(0), unicode(1), bcdplus(2), ascii6(3), text(4), binary(5)  

SaHpiTextLanguage  
This textual convention defines these enumeration of all of the languages that can be associated with text. undefined (0) indicates that the language is unspecified or unknown. Note: Enumerated values are increased by one value compared to SAI-HPI-B.01.01 spec.
TEXTUAL-CONVENTION    
  INTEGER undefined(0), unknown(1), afar(2), abkhazian(3), afrikaans(4), amharic(5), arabic(6), assamese(7), aymara(8), azerbaijani(9), bashkir(10), byelorussian(11), bulgarian(12), bihari(13), bislama(14), bengali(15), tibetan(16), breton(17), catalan(18), corsican(19), czech(20), welsh(21), danish(22), german(23), bhutani(24), greek(25), english(26), esperanto(27), spanish(28), estonian(29), basque(30), persian(31), finnish(32), fiji(33), faeroese(34), french(35), frisian(36), irish(37), scotsgaelic(38), galician(39), guarani(40), gujarati(41), hausa(42), hindi(43), croatian(44), hungarian(45), armenian(46), interlingua(47), interlingue(48), inupiak(49), indonesian(50), icelandic(51), italian(52), hebrew(53), japanese(54), yiddish(55), javanese(56), georgian(57), kazakh(58), greenlandic(59), cambodian(60), kannada(61), korean(62), kashmiri(63), kurdish(64), kirghiz(65), latin(66), lingala(67), laothian(68), lithuanian(69), latvianlettish(70), malagasy(71), maori(72), macedonian(73), malayalam(74), mongolian(75), moldavian(76), marathi(77), malay(78), maltese(79), burmese(80), nauru(81), nepali(82), dutch(83), norwegian(84), occitan(85), afanoromo(86), oriya(87), punjabi(88), polish(89), pashtopushto(90), portuguese(91), quechua(92), rhaetoromance(93), kirundi(94), romanian(95), russian(96), kinyarwanda(97), sanskrit(98), sindhi(99), sangro(100), serbocroatian(101), singhalese(102), slovak(103), slovenian(104), samoan(105), shona(106), somali(107), albanian(108), serbian(109), siswati(110), sesotho(111), sudanese(112), swedish(113), swahili(114), tamil(115), telugu(116), tajik(117), thai(118), tigrinya(119), turkmen(120), tagalog(121), setswana(122), tonga(123), turkish(124), tsonga(125), tatar(126), twi(127), ukrainian(128), urdu(129), uzbek(130), vietnamese(131), volapuk(132), wolof(133), xhosa(134), yoruba(135), chinese(136), zulu(137)  

SaHpiText  
This textual convention defines the Text data. The data can be in different languages (represented by SaHpiTextLanguage textual convention) and in different encodings (represented by saHpiTextType textual convention).
TEXTUAL-CONVENTION    
  OCTET STRING Size(0..255)  

SaHpiSensorType  
This textual convention describes the general sensor types. Note: Enumerated values are increased by one value compared to SAI-HPI-B.01.01 spec.
TEXTUAL-CONVENTION    
  INTEGER undefined(0), temperature(2), voltage(3), current(4), fan(5), physicalSecurity(6), platformViolation(7), processor(8), powerSupply(9), powerUnit(10), coolingDevice(11), otherUnitsBasedSensor(12), memory(13), driveSlot(14), postMemoryResize(15), systemFwProgress(16), eventLoggingDisabled(17), reserved1(18), systemEvent(19), criticalInterrupt(20), button(21), moduleBoard(22), microcontrollerCoProcessor(23), addinCard(24), chassis(25), chipSet(26), otherFru(27), cableInterconnect(28), terminator(29), systemBootInitiated(30), bootError(31), osBoot(32), osCriticalStop(33), slotConnector(34), systemACPIPowerState(35), reserved2(36), platformAlert(37), entityPresence(38), monitorAsicIC(39), lan(40), managementSubsystemHealth(41), battery(42), operational(161), oemSensor(193)  

SaHpiSensorUnits  
This textual convention enumerates the all of the sensor units supported by HPI. Note: Enumerated values are increased by one value compared to SAI-HPI-B.01.01 spec.
TEXTUAL-CONVENTION    
  INTEGER undefined(0), unspecified(1), degreesC(2), degreesF(3), degreesK(4), volts(5), amps(6), watts(7), joules(8), coulombs(9), va(10), nits(11), lumen(12), lux(13), candela(14), kpa(15), psi(16), newton(17), cfm(18), rpm(19), hz(20), microsecond(21), millisecond(22), second(23), minute(24), hour(25), day(26), week(27), mil(28), inches(29), feet(30), cuInches(31), cuFeet(32), mm(33), cm(34), m(35), cuCm(36), cuM(37), liters(38), fluidOunce(39), radians(40), steradians(41), revolutions(42), cycles(43), gravities(44), ounce(45), pound(46), ftLbs(47), ozInches(48), gauss(49), gilberts(50), henry(51), millihenry(52), farad(53), microfarad(54), ohms(55), siemens(56), mole(57), becquerel(58), ppm(59), reserved(60), decibels(61), dba(62), dbc(63), gray(64), sievert(65), colorTempDegK(66), bit(67), kilobit(68), megabit(69), gigabit(70), byte(71), kilobyte(72), megabyte(73), gigabyte(74), word(75), dword(76), qword(77), line(78), hit(79), miss(80), retry(81), reset(82), overrun(83), underrun(84), collision(85), packets(86), messages(87), characters(88), errors(89), correctableErrors(90), uncorrectableErrors(91)  

SaHpiSensorReadingType  
This textual convention defines the enumeration of the available data types that can be used for sensor readings. Note: Enumerated values are increased by one value compared to SAI-HPI-B.01.01 spec.
TEXTUAL-CONVENTION    
  INTEGER undefined(0), int64(1), uint64(2), float64(3), buffer(4), notSupported(5)  

SaHpiSensorReadingValue  
This textual convention defines the sensor reading value as represented as one of the enumerated types listed in SaHpiSensorReadingType textual convention. This value by itself is of string type and needs to be evaluated in the context of SaHpiSensorReadingType textual convention. Signed integer values will be displayed using the ASCII decimal digit format. This means that each digit in the value will be displayed in its corresponding hexidecimal value. For example, a signed integer value of '-11' will be displayed using the ASCII decimal notation for the character '-' and for each numeric character '1'. The corresponding result is the hexidecimal string '2D 31 31'. Unsigned integer values will be displayed using the ASCII decimal digit format. This means that each digit in the value will be displayed in its corresponding hexidecimal value. For example, an unsigned integer value of '99' will be displayed using the ASCII decimal notation for each numeric caharacter '9'. The corresponding result is the hexidecimal string '39 39'. Floating point values will be displayed in the 'e' notation, where e = 10^1, as ASCII decimal digits. For example, the value of .000000007 will be displayed in ASCII decimal as '37 65 2D 39'. When reading type is 'buffer' this object will hold arbitrary data.
TEXTUAL-CONVENTION    
  OCTET STRING Size(0..255)  

SaHpiGuid  
This textual convention defines the Globally Unique Identifier (GUID) which is used to uniquely identify a domain. A GUID value of zero is not valid and indicates that the domain does not have an associated GUID. The format if the ID follows that specified by the Wired for Management Baseline, Version 2.0 specification. HPI uses version 1 of the GUID format, with a 3-bit variant field of 10x (where x indicates 'don't care')
TEXTUAL-CONVENTION    
  OCTET STRING Size(0..15)  

SaHpiCtrlStateDigital  
Defines the types of digital control states. Any of the four states may be set using saHpiCtrlDigitalState columnar object. Only on(2) or off(1) are appropriate returns from saHpiCtrlDigitalState columnar object. pulseOn(4) and pulseOff(3) are transitory and end in off(1) and on(2) states, respectively.) Explanations of states: off(1) - the control is off on(2) - the control is on pulseOff(3) - the control is briefly turned off, and then turned back on pulseOn(4) - the control is briefly turned on, and then turned back off
TEXTUAL-CONVENTION    
  INTEGER undefined(0), off(1), on(2), pulseOff(3), pulseOn(4)  

SaHpiCtrlOutputType  
This textual convention defines what the control's output will be.
TEXTUAL-CONVENTION    
  INTEGER undefined(0), generic(1), led(2), fanSpeed(3), dryContactClosure(4), powerSupplyInhibit(5), audible(6), frontPanelLockout(7), powerInterlock(8), powerState(9), lcdDisplay(10), oem(11)  

SaHpiCtrlMode  
Controls may be in either auto(1) mode or manual(2) mode.
TEXTUAL-CONVENTION    
  INTEGER undefined(0), auto(1), manual(2)  

SaHpiDomainInfoEntry  
SEQUENCE    
  saHpiDomainId SaHpiDomainId
  saHpiDomainCapabilities BITS
  saHpiDomainIsPeer TruthValue
  saHpiDomainTagTextType SaHpiTextType
  saHpiDomainTagTextLanguage SaHpiTextLanguage
  saHpiDomainTag SaHpiText
  saHpiDomainReferenceUpdateCount Unsigned32
  saHpiDomainReferenceUpdateTimestamp SaHpiTime
  saHpiDomainResourcePresenceUpdateCount Unsigned32
  saHpiDomainResourcePresenceUpdateTimestamp SaHpiTime
  saHpiDomainAlarmUpdateCount Unsigned32
  saHpiDomainAlarmUpdateTimestamp SaHpiTime
  saHpiDomainActiveAlarms Unsigned32
  saHpiDomainCriticalAlarms Unsigned32
  saHpiDomainMajorAlarms Unsigned32
  saHpiDomainMinorAlarms Unsigned32
  saHpiDomainAlarmUserLimit Unsigned32
  saHpiDomainAlarmOverflow TruthValue
  saHpiDomainGuid SaHpiGuid

SaHpiDomainReferenceEntry  
SEQUENCE    
  saHpiDomainRef SaHpiDomainId
  saHpiDomainReferenceIsPeer TruthValue

SaHpiDomainAlarmEntry  
SEQUENCE    
  saHpiDomainAlarmId SaHpiEntryId
  saHpiDomainAlarmTimestamp SaHpiTime
  saHpiDomainAlarmSeverity SaHpiSeverity
  saHpiDomainAlarmAcknowledged TruthValue
  saHpiDomainAlarmAckBySeverity SaHpiSeverity
  saHpiDomainAlarmCondStatusCondType SaHpiStatusCondType
  saHpiDomainAlarmCondEntityPath SaHpiEntityPath
  saHpiDomainAlarmCondSensorNum Unsigned32
  saHpiDomainAlarmCondEventState SaHpiEventState
  saHpiDomainAlarmCondNameValue OCTET STRING
  saHpiDomainAlarmCondMid SaHpiManufacturerId
  saHpiDomainAlarmCondTextType SaHpiTextType
  saHpiDomainAlarmCondTextLanguage SaHpiTextLanguage
  saHpiDomainAlarmCondText SaHpiText
  saHpiDomainAlarmRowStatus RowStatus

SaHpiResourceEntry  
SEQUENCE    
  saHpiResourceId Unsigned32
  saHpiResourceEntryId SaHpiEntryId
  saHpiResourceEntityPath SaHpiEntityPath
  saHpiResourceCapabilities BITS
  saHpiResourceHotSwapCapabilities BITS
  saHpiResourceSeverity SaHpiSeverity
  saHpiResourceFailed TruthValue
  saHpiResourceInfoResourceRev Unsigned8
  saHpiResourceInfoSpecificVer Unsigned8
  saHpiResourceInfoDeviceSupport Unsigned8
  saHpiResourceInfoManufacturerId SaHpiManufacturerId
  saHpiResourceInfoProductId Unsigned16
  saHpiResourceInfoFirmwareMajorRev Unsigned8
  saHpiResourceInfoFirmwareMinorRev Unsigned8
  saHpiResourceInfoAuxFirmwareRev Unsigned8
  saHpiResourceInfoGuid SaHpiGuid
  saHpiResourceTagTextType SaHpiTextType
  saHpiResourceTagTextLanguage SaHpiTextLanguage
  saHpiResourceTag SaHpiText
  saHpiResourceParmControl INTEGER
  saHpiResourceResetAction INTEGER
  saHpiResourcePowerAction INTEGER
  saHpiResourceIsHistorical TruthValue

SaHpiAutoInsertTimeoutEntry  
SEQUENCE    
  saHpiAutoInsertTimeoutForInsert SaHpiTime

SaHpiHotSwapEntry  
SEQUENCE    
  saHpiHotSwapIndicator INTEGER
  saHpiHotSwapState SaHpiHotSwapState
  saHpiHotSwapExtractTimeout SaHpiTime
  saHpiHotSwapActionRequest INTEGER
  saHpiHotSwapPolicyCancel INTEGER
  saHpiHotSwapResourceRequest INTEGER

SaHpiEventEntry  
SEQUENCE    
  saHpiEventRowPointer RowPointer
  saHpiEventSeverity SaHpiSeverity
  saHpiEventSaHpiTime SaHpiTime
  saHpiEventType INTEGER

SaHpiResourceEventEntry  
SEQUENCE    
  saHpiResourceEventEntryId SaHpiEntryId
  saHpiResourceEventTimestamp SaHpiTime
  saHpiResourceEventType INTEGER

SaHpiDomainEventEntry  
SEQUENCE    
  saHpiDomainEventEntryId SaHpiEntryId
  saHpiDomainEventTimestamp SaHpiTime
  saHpiDomainEventType INTEGER

SaHpiSensorEventEntry  
SEQUENCE    
  saHpiSensorEventEntryId SaHpiEntryId
  saHpiSensorEventTimestamp SaHpiTime
  saHpiSensorEventType SaHpiSensorType
  saHpiSensorEventCategory SaHpiEventCategory
  saHpiSensorEventAssertion TruthValue
  saHpiSensorEventState SaHpiEventState
  saHpiSensorEventOptionalData SaHpiOptionalData
  saHpiSensorEventTriggerReadingType SaHpiSensorReadingType
  saHpiSensorEventTriggerReading SaHpiSensorReadingValue
  saHpiSensorEventTriggerThresholdType SaHpiSensorReadingType
  saHpiSensorEventTriggerThreshold SaHpiSensorReadingValue
  saHpiSensorEventPreviousState SaHpiEventState
  saHpiSensorEventCurrentState SaHpiEventState
  saHpiSensorEventOem Unsigned32
  saHpiSensorEventSpecific Unsigned32

SaHpiSensorEnableChangeEventEntry  
SEQUENCE    
  saHpiSensorEnableChangeEventEntryId SaHpiEntryId
  saHpiSensorEnableChangeEventTimestamp SaHpiTime
  saHpiSensorEnableChangeEventType SaHpiSensorType
  saHpiSensorEnableChangeEventCategory SaHpiEventCategory
  saHpiSensorEnableChangeEventEnabled TruthValue
  saHpiSensorEnableChangeEventEventsEnabled TruthValue
  saHpiSensorEnableChangeEventAssertEvents SaHpiEventState
  saHpiSensorEnableChangeEventDeassertEvents SaHpiEventState
  saHpiSensorEnableChangeEventOptionalData SaHpiOptionalData
  saHpiSensorEnableChangeEventState SaHpiEventState

SaHpiHotSwapEventEntry  
SEQUENCE    
  saHpiHotSwapEventEntryId SaHpiEntryId
  saHpiHotSwapEventTimestamp SaHpiTime
  saHpiHotSwapEventState SaHpiHotSwapState
  saHpiHotSwapEventPreviousState SaHpiHotSwapState

SaHpiWatchdogEventEntry  
SEQUENCE    
  saHpiWatchdogEventEntryId SaHpiEntryId
  saHpiWatchdogEventTimestamp SaHpiTime
  saHpiWatchdogEventAction INTEGER
  saHpiWatchdogEventPreTimerAction SaHpiWatchdogPreTimerAction
  saHpiWatchdogEventUse SaHpiWatchdogTimerUse

SaHpiSoftwareEventEntry  
SEQUENCE    
  saHpiSoftwareEventEntryId SaHpiEntryId
  saHpiSoftwareEventTimestamp SaHpiTime
  saHpiSoftwareEventManufacturerIdT SaHpiManufacturerId
  saHpiSoftwareEventType INTEGER
  saHpiSoftwareEventTextType SaHpiTextType
  saHpiSoftwareEventTextLanguage SaHpiTextLanguage
  saHpiSoftwareEventText SaHpiText

SaHpiOemEventEntry  
SEQUENCE    
  saHpiOemEventEntryId SaHpiEntryId
  saHpiOemEventTimestamp SaHpiTime
  saHpiOemEventManufacturerIdT SaHpiManufacturerId
  saHpiOemEventTextType SaHpiTextType
  saHpiOemEventTextLanguage SaHpiTextLanguage
  saHpiOemEventText SaHpiText

SaHpiUserEventEntry  
SEQUENCE    
  saHpiUserEventEntryId SaHpiEntryId
  saHpiUserEventTimestamp SaHpiTime
  saHpiUserEventTextType SaHpiTextType
  saHpiUserEventTextLanguage SaHpiTextLanguage
  saHpiUserEventText SaHpiText
  saHpiUserEventRowStatus RowStatus

SaHpiAnnouncementEntry  
SEQUENCE    
  saHpiAnnouncementEntryId SaHpiEntryId
  saHpiAnnouncementAnnunciatorNum SaHpiInstrumentId
  saHpiAnnouncementTimestamp SaHpiTime
  saHpiAnnouncementAddedByUser TruthValue
  saHpiAnnouncementSeverity SaHpiSeverity
  saHpiAnnouncementAcknowledged TruthValue
  saHpiAnnouncementAckBySeverity SaHpiSeverity
  saHpiAnnouncementStatusCondType SaHpiStatusCondType
  saHpiAnnouncementEntityPath SaHpiEntityPath
  saHpiAnnouncementSensorNum Unsigned32
  saHpiAnnouncementEventState SaHpiEventState
  saHpiAnnouncementName OCTET STRING
  saHpiAnnouncementMid SaHpiManufacturerId
  saHpiAnnouncementTextType SaHpiTextType
  saHpiAnnouncementTextLanguage SaHpiTextLanguage
  saHpiAnnouncementText SaHpiText
  saHpiAnnouncementDelete RowStatus

SaHpiEventLogInfoEntry  
SEQUENCE    
  saHpiEventLogInfoEntries Unsigned32
  saHpiEventLogInfoSize Unsigned32
  saHpiEventLogInfoUserEventMaxSize Unsigned32
  saHpiEventLogInfoUpdateTimestamp SaHpiTime
  saHpiEventLogInfoTime SaHpiTime
  saHpiEventLogInfoIsEnabled TruthValue
  saHpiEventLogInfoOverflowFlag TruthValue
  saHpiEventLogInfoOverflowResetable TruthValue
  saHpiEventLogInfoOverflowAction INTEGER
  saHpiEventLogInfoOverflowReset INTEGER
  saHpiEventLogClear TruthValue
  saHpiEventLogState TruthValue

SaHpiEventLogEntry  
SEQUENCE    
  saHpiEventLogIndex SaHpiEntryId
  saHpiEventLogType INTEGER
  saHpiEventLogAddedTimestamp SaHpiTime
  saHpiEventLogRowPointer RowPointer

SaHpiResourceEventLogEntry  
SEQUENCE    
  saHpiResourceEventLogEntryId SaHpiEntryId
  saHpiResourceEventLogTimestamp SaHpiTime
  saHpiResourceEventLogType INTEGER

SaHpiDomainEventLogEntry  
SEQUENCE    
  saHpiDomainEventLogEntryId SaHpiEntryId
  saHpiDomainEventLogTimestamp SaHpiTime
  saHpiDomainEventLogType INTEGER

SaHpiSensorEventLogEntry  
SEQUENCE    
  saHpiSensorEventLogTimestamp SaHpiTime
  saHpiSensorEventLogType SaHpiSensorType
  saHpiSensorEventLogCategory SaHpiEventCategory
  saHpiSensorEventLogAssertion TruthValue
  saHpiSensorEventLogState SaHpiEventState
  saHpiSensorEventLogOptionalData SaHpiOptionalData
  saHpiSensorEventLogTriggerReadingType SaHpiSensorReadingType
  saHpiSensorEventLogTriggerReading SaHpiSensorReadingValue
  saHpiSensorEventLogTriggerThresholdType SaHpiSensorReadingType
  saHpiSensorEventLogTriggerThreshold SaHpiSensorReadingValue
  saHpiSensorEventLogPreviousState SaHpiEventState
  saHpiSensorEventLogCurrentState SaHpiEventState
  saHpiSensorEventLogOem Unsigned32
  saHpiSensorEventLogSpecific Unsigned32

SaHpiSensorEnableChangeEventLogEntry  
SEQUENCE    
  saHpiSensorEnableChangeEventLogTimestamp SaHpiTime
  saHpiSensorEnableChangeEventLogType SaHpiSensorType
  saHpiSensorEnableChangeEventLogCategory SaHpiEventCategory
  saHpiSensorEnableChangeEventLogEnabled TruthValue
  saHpiSensorEnableChangeEventLogEventsEnabled TruthValue
  saHpiSensorEnableChangeEventLogAssertEvents SaHpiEventState
  saHpiSensorEnableChangeEventLogDeassertEvents SaHpiEventState
  saHpiSensorEnableChangeEventLogOptionalData SaHpiOptionalData
  saHpiSensorEnableChangeEventLogState SaHpiEventState

SaHpiHotSwapEventLogEntry  
SEQUENCE    
  saHpiHotSwapEventLogTimestamp SaHpiTime
  saHpiHotSwapEventLogState SaHpiHotSwapState
  saHpiHotSwapEventLogPreviousState SaHpiHotSwapState

SaHpiWatchdogEventLogEntry  
SEQUENCE    
  saHpiWatchdogEventLogTimestamp SaHpiTime
  saHpiWatchdogEventLogAction INTEGER
  saHpiWatchdogEventLogPreTimerAction SaHpiWatchdogPreTimerAction
  saHpiWatchdogEventLogUse SaHpiWatchdogTimerUse

SaHpiSoftwareEventLogEntry  
SEQUENCE    
  saHpiSoftwareEventLogTimestamp SaHpiTime
  saHpiSoftwareEventLogManufacturerIdT SaHpiManufacturerId
  saHpiSoftwareEventLogType INTEGER
  saHpiSoftwareEventLogTextType SaHpiTextType
  saHpiSoftwareEventLogTextLanguage SaHpiTextLanguage
  saHpiSoftwareEventLogText SaHpiText

SaHpiOemEventLogEntry  
SEQUENCE    
  saHpiOemEventLogTimestamp SaHpiTime
  saHpiOemEventLogManufacturerIdT SaHpiManufacturerId
  saHpiOemEventLogTextType SaHpiTextType
  saHpiOemEventLogTextLanguage SaHpiTextLanguage
  saHpiOemEventLogText SaHpiText

SaHpiUserEventLogEntry  
SEQUENCE    
  saHpiUserEventLogTimestamp SaHpiTime
  saHpiUserEventLogTextType SaHpiTextType
  saHpiUserEventLogTextLanguage SaHpiTextLanguage
  saHpiUserEventLogText SaHpiText
  saHpiUserEventLogRowStatus RowStatus

SaHpiRdrEntry  
SEQUENCE    
  saHpiRdrEntryId SaHpiEntryId
  saHpiRdrNextEntryId SaHpiEntryId
  saHpiRdrType INTEGER
  saHpiRdrEntityPath SaHpiEntityPath
  saHpiRdrIsFru TruthValue
  saHpiRdrRowPointer RowPointer
  saHpiRdrRPT RowPointer
  saHpiRdrTextType SaHpiTextType
  saHpiRdrTextLanguage SaHpiTextLanguage
  saHpiRdrIdString OCTET STRING

SaHpiCtrlDigitalEntry  
SEQUENCE    
  saHpiCtrlDigitalEntryId SaHpiEntryId
  saHpiCtrlDigitalNum SaHpiInstrumentId
  saHpiCtrlDigitalOutputType SaHpiCtrlOutputType
  saHpiCtrlDigitalDefaultMode SaHpiCtrlMode
  saHpiCtrlDigitalMode SaHpiCtrlMode
  saHpiCtrlDigitalIsReadOnly TruthValue
  saHpiCtrlDigitalIsWriteOnly TruthValue
  saHpiCtrlDigitalDefaultState SaHpiCtrlStateDigital
  saHpiCtrlDigitalState SaHpiCtrlStateDigital
  saHpiCtrlDigitalOem Unsigned32
  saHpiCtrlDigitalRDR RowPointer

SaHpiCtrlDiscreteEntry  
SEQUENCE    
  saHpiCtrlDiscreteEntryId SaHpiEntryId
  saHpiCtrlDiscreteNum SaHpiInstrumentId
  saHpiCtrlDiscreteOutputType SaHpiCtrlOutputType
  saHpiCtrlDiscreteDefaultMode SaHpiCtrlMode
  saHpiCtrlDiscreteMode SaHpiCtrlMode
  saHpiCtrlDiscreteIsReadOnly TruthValue
  saHpiCtrlDiscreteIsWriteOnly TruthValue
  saHpiCtrlDiscreteDefaultState Unsigned32
  saHpiCtrlDiscreteState Unsigned32
  saHpiCtrlDiscreteOem Unsigned32
  saHpiCtrlDiscreteRDR RowPointer

SaHpiCtrlAnalogEntry  
SEQUENCE    
  saHpiCtrlAnalogEntryId SaHpiEntryId
  saHpiCtrlAnalogNum SaHpiInstrumentId
  saHpiCtrlAnalogOutputType SaHpiCtrlOutputType
  saHpiCtrlAnalogDefaultMode SaHpiCtrlMode
  saHpiCtrlAnalogMode SaHpiCtrlMode
  saHpiCtrlAnalogIsReadOnly TruthValue
  saHpiCtrlAnalogIsWriteOnly TruthValue
  saHpiCtrlAnalogDefaultMinState Integer32
  saHpiCtrlAnalogDefaultMaxState Integer32
  saHpiCtrlAnalogDefaultState Integer32
  saHpiCtrlAnalogState Integer32
  saHpiCtrlAnalogOem Unsigned32
  saHpiCtrlAnalogRDR RowPointer

SaHpiCtrlStreamEntry  
SEQUENCE    
  saHpiCtrlStreamEntryId SaHpiEntryId
  saHpiCtrlStreamNum SaHpiInstrumentId
  saHpiCtrlStreamOutputType SaHpiCtrlOutputType
  saHpiCtrlStreamDefaultMode SaHpiCtrlMode
  saHpiCtrlStreamMode SaHpiCtrlMode
  saHpiCtrlStreamIsReadOnly TruthValue
  saHpiCtrlStreamIsWriteOnly TruthValue
  saHpiCtrlStreamDefaultRepeat TruthValue
  saHpiCtrlStreamDefaultState SaHpiText
  saHpiCtrlStreamRepeat TruthValue
  saHpiCtrlStreamState SaHpiText
  saHpiCtrlStreamOem Unsigned32
  saHpiCtrlStreamRDR RowPointer

SaHpiCtrlTextEntry  
SEQUENCE    
  saHpiCtrlTextEntryId SaHpiEntryId
  saHpiCtrlTextNum SaHpiInstrumentId
  saHpiCtrlTextOutputType SaHpiCtrlOutputType
  saHpiCtrlTextDefaultMode SaHpiCtrlMode
  saHpiCtrlTextMode SaHpiCtrlMode
  saHpiCtrlTextIsReadOnly TruthValue
  saHpiCtrlTextIsWriteOnly TruthValue
  saHpiCtrlTextMaxChars Unsigned8
  saHpiCtrlTextMaxLines Unsigned8
  saHpiCtrlTextLanguage SaHpiTextLanguage
  saHpiCtrlTextType SaHpiTextType
  saHpiCtrlTextDefaultLine Unsigned8
  saHpiCtrlTextDefault SaHpiText
  saHpiCtrlTextLine Unsigned8
  saHpiCtrlTextState SaHpiText
  saHpiCtrlTextOem Unsigned32
  saHpiCtrlTextRDR RowPointer

SaHpiCtrlOemEntry  
SEQUENCE    
  saHpiCtrlOemEntryId SaHpiEntryId
  saHpiCtrlOemNum SaHpiInstrumentId
  saHpiCtrlOemOutputType SaHpiCtrlOutputType
  saHpiCtrlOemDefaultMode SaHpiCtrlMode
  saHpiCtrlOemMode SaHpiCtrlMode
  saHpiCtrlOemIsReadOnly TruthValue
  saHpiCtrlOemIsWriteOnly TruthValue
  saHpiCtrlOemManufacturerId SaHpiManufacturerId
  saHpiCtrlOemDefaultConfigData OCTET STRING
  saHpiCtrlOemDefaultMId SaHpiManufacturerId
  saHpiCtrlOemDefaultState OCTET STRING
  saHpiCtrlOemState OCTET STRING
  saHpiCtrlOemValue Unsigned32
  saHpiCtrlOemRDR RowPointer

SaHpiSensorEntry  
SEQUENCE    
  saHpiSensorNum SaHpiInstrumentId
  saHpiSensorType SaHpiSensorType
  saHpiSensorCategory SaHpiEventCategory
  saHpiSensorEnableCtrl TruthValue
  saHpiSensorEventCtrl INTEGER
  saHpiSensorSupportedEventStates SaHpiEventState
  saHpiSensorIsSupported TruthValue
  saHpiSensorReadingType SaHpiSensorReadingType
  saHpiSensorBaseUnits SaHpiSensorUnits
  saHpiSensorModifierUnits SaHpiSensorUnits
  saHpiSensorModifierUse INTEGER
  saHpiSensorPercentage TruthValue
  saHpiSensorRangeFlags OCTET STRING
  saHpiSensorAccuracyFactor Double
  saHpiSensorOem Unsigned32
  saHpiSensorRDR RowPointer

SaHpiCurrentSensorStateEntry  
SEQUENCE    
  saHpiCurrentSensorStateDataPresent INTEGER
  saHpiCurrentSensorStateType SaHpiSensorReadingType
  saHpiCurrentSensorStateValue SaHpiSensorReadingValue
  saHpiCurrentSensorStateEventState SaHpiEventState
  saHpiCurrentSensorStateSensorEnable TruthValue
  saHpiCurrentSensorStateEventEnable TruthValue
  saHpiCurrentSensorStateAssertAddEventMask SaHpiEventState
  saHpiCurrentSensorStateAssertRemoveEventMask SaHpiEventState
  saHpiCurrentSensorStateDeassertAddEventMask SaHpiEventState
  saHpiCurrentSensorStateDeassertRemoveEventMask SaHpiEventState

SaHpiSensorReadingMaxEntry  
SEQUENCE    
  saHpiSensorReadingMaxIsSupported TruthValue
  saHpiSensorReadingMaxType SaHpiSensorReadingType
  saHpiSensorReadingMaxValue SaHpiSensorReadingValue

SaHpiSensorReadingMinEntry  
SEQUENCE    
  saHpiSensorReadingMinIsSupported TruthValue
  saHpiSensorReadingMinType SaHpiSensorReadingType
  saHpiSensorReadingMinValue SaHpiSensorReadingValue

SaHpiSensorReadingNominalEntry  
SEQUENCE    
  saHpiSensorReadingNominalIsSupported TruthValue
  saHpiSensorReadingNominalType SaHpiSensorReadingType
  saHpiSensorReadingNominalValue SaHpiSensorReadingValue

SaHpiSensorReadingNormalMaxEntry  
SEQUENCE    
  saHpiSensorReadingNormalMaxIsSupported TruthValue
  saHpiSensorReadingNormalMaxType SaHpiSensorReadingType
  saHpiSensorReadingNormalMaxValue SaHpiSensorReadingValue

SaHpiSensorReadingNormalMinEntry  
SEQUENCE    
  saHpiSensorReadingNormalMinIsSupported TruthValue
  saHpiSensorReadingNormalMinType SaHpiSensorReadingType
  saHpiSensorReadingNormalMinValue SaHpiSensorReadingValue

SaHpiSensorThdLowCriticalEntry  
SEQUENCE    
  saHpiSensorThdLowCriticalIsReadable TruthValue
  saHpiSensorThdLowCriticalIsWritable TruthValue
  saHpiSensorThdLowCriticalType SaHpiSensorReadingType
  saHpiSensorThdLowCriticalValue SaHpiSensorReadingValue
  saHpiSensorThdLowCriticalNonLinear TruthValue

SaHpiSensorThdLowMajorEntry  
SEQUENCE    
  saHpiSensorThdLowMajorIsReadable TruthValue
  saHpiSensorThdLowMajorIsWritable TruthValue
  saHpiSensorThdLowMajorType SaHpiSensorReadingType
  saHpiSensorThdLowMajorValue SaHpiSensorReadingValue
  saHpiSensorThdLowMajorNonLinear TruthValue

SaHpiSensorThdLowMinorEntry  
SEQUENCE    
  saHpiSensorThdLowMinorIsReadable TruthValue
  saHpiSensorThdLowMinorIsWritable TruthValue
  saHpiSensorThdLowMinorType SaHpiSensorReadingType
  saHpiSensorThdLowMinorValue SaHpiSensorReadingValue
  saHpiSensorThdLowMinorNonLinear TruthValue

SaHpiSensorThdUpCriticalEntry  
SEQUENCE    
  saHpiSensorThdUpCriticalIsReadable TruthValue
  saHpiSensorThdUpCriticalIsWritable TruthValue
  saHpiSensorThdUpCriticalType SaHpiSensorReadingType
  saHpiSensorThdUpCriticalValue SaHpiSensorReadingValue
  saHpiSensorThdUpCriticalNonLinear TruthValue

SaHpiSensorThdUpMajorEntry  
SEQUENCE    
  saHpiSensorThdUpMajorIsReadable TruthValue
  saHpiSensorThdUpMajorIsWritable TruthValue
  saHpiSensorThdUpMajorType SaHpiSensorReadingType
  saHpiSensorThdUpMajorValue SaHpiSensorReadingValue
  saHpiSensorThdUpMajorNonLinear TruthValue

SaHpiSensorThdUpMinorEntry  
SEQUENCE    
  saHpiSensorThdUpMinorIsReadable TruthValue
  saHpiSensorThdUpMinorIsWritable TruthValue
  saHpiSensorThdUpMinorType SaHpiSensorReadingType
  saHpiSensorThdUpMinorValue SaHpiSensorReadingValue
  saHpiSensorThdUpMinorNonLinear TruthValue

SaHpiSensorThdPosHysteresisEntry  
SEQUENCE    
  saHpiSensorThdPosHysteresisIsReadable TruthValue
  saHpiSensorThdPosHysteresisIsWritable TruthValue
  saHpiSensorThdPosHysteresisType SaHpiSensorReadingType
  saHpiSensorThdPosHysteresisValue SaHpiSensorReadingValue
  saHpiSensorThdPosHysteresisNonLinear TruthValue

SaHpiSensorThdNegHysteresisEntry  
SEQUENCE    
  saHpiSensorThdNegHysteresisIsReadable TruthValue
  saHpiSensorThdNegHysteresisIsWritable TruthValue
  saHpiSensorThdNegHysteresisType SaHpiSensorReadingType
  saHpiSensorThdNegHysteresisValue SaHpiSensorReadingValue
  saHpiSensorThdNegHysteresisNonLinear TruthValue

SaHpiInventoryEntry  
SEQUENCE    
  saHpiInventoryId SaHpiInstrumentId
  saHpiInventoryPersistent TruthValue
  saHpiInventoryOem Unsigned32
  saHpiInventoryUpdateCount Unsigned32
  saHpiInventoryIsReadOnly TruthValue
  saHpiInventoryNumAreas Unsigned32
  saHpiInventoryRDR RowPointer

SaHpiAreaEntry  
SEQUENCE    
  saHpiAreaId SaHpiInstrumentId
  saHpiAreaIdIndex SaHpiInstrumentId
  saHpiAreaType INTEGER
  saHpiAreaIsReadOnly TruthValue
  saHpiAreaRowStatus RowStatus
  saHpiAreaNumDataFields Unsigned32

SaHpiFieldEntry  
SEQUENCE    
  saHpiFieldId SaHpiInstrumentId
  saHpiFieldIdIndex SaHpiInstrumentId
  saHpiFieldType INTEGER
  saHpiFieldIsReadOnly TruthValue
  saHpiFieldTextType SaHpiTextType
  saHpiFieldTextLanguage SaHpiTextLanguage
  saHpiFieldText SaHpiText
  saHpiFieldStatus RowStatus

SaHpiWatchdogEntry  
SEQUENCE    
  saHpiWatchdogNum SaHpiInstrumentId
  saHpiWatchdogLog TruthValue
  saHpiWatchdogRunning TruthValue
  saHpiWatchdogTimerUseState SaHpiWatchdogTimerUse
  saHpiWatchdogTimerAction INTEGER
  saHpiWatchdogPretimerInterrupt SaHpiWatchdogPreTimerAction
  saHpiWatchdogPreTimeoutInterval Unsigned32
  saHpiWatchdogTimerUseExpFlags OCTET STRING
  saHpiWatchdogTimerInitialCount Unsigned32
  saHpiWatchdogTimerPresentCount Unsigned32
  saHpiWatchdogTimerReset TruthValue
  saHpiWatchdogOem Unsigned32
  saHpiWatchdogRDR RowPointer

SaHpiAnnunciatorEntry  
SEQUENCE    
  saHpiAnnunciatorNum SaHpiInstrumentId
  saHpiAnnunciatorType INTEGER
  saHpiAnnunciatorModeReadOnly TruthValue
  saHpiAnnunciatorMaxConditions Unsigned32
  saHpiAnnunciatorMode INTEGER
  saHpiAnnunciatorOem Unsigned32
  saHpiAnnunciatorRDR RowPointer

Defined Values

hpiB0101 1.3.6.1.4.1.18568.2.1.1
HPI MIB for SAF-HPI B-01-01. When using this MIB it is strongly recommended to use the SNMPv3 protocol due to security concerns. Additionally if fine grain access configuration is desired, for example to manage access to individual columnar objects, the SNMP configuration should use VACM (View Based Access Control Model - RFC 2275). This MIB defines the HPI instrumentation based on 'Service Availability Forum Hardware Platform Interface' (SAI-HPI-B.01.01). This MIB module defines a set of objects that allow the management of entities on a variety of hardware platforms. The abstractions presented in this MIB are derived from the Service Availability Forum Hardware Platform Interface specification version SAI-HPI-B.01.01. The MIB views a hardware platform as a collections of physical entities that can be managed individually. A logical collection of entities comprises a management domain. Each entity has a common set of attributes reflected in the entity table. Entities may have additional categorical attributes that may exist in one or more of the hotswap table, control table, sensor table, watchdog table, inventory control table and config table. The hotswap table defines management attributes for an entity that supports hotswap, generally referred to as a FRU. The controls table defines variables for reading and setting controls associated with an entity. The sensors table defines variables for reading sensors associated with an entity as well as controlling event generation for that sensor. The watchdog table defines variables for reading watchdog associated with an entitry. The inventory control defines variables for reading inventory resources and changing the settings.
MODULE-IDENTITY    

hpiAdministration 1.3.6.1.4.1.18568.2.1.1.1
OBJECT IDENTIFIER    

hpiDomain 1.3.6.1.4.1.18568.2.1.1.2
OBJECT IDENTIFIER    

hpiEvents 1.3.6.1.4.1.18568.2.1.1.3
OBJECT IDENTIFIER    

hpiResources 1.3.6.1.4.1.18568.2.1.1.4
OBJECT IDENTIFIER    

hpiNotifications 1.3.6.1.4.1.18568.2.1.1.5
OBJECT IDENTIFIER    

hpiConformance 1.3.6.1.4.1.18568.2.1.1.6
OBJECT IDENTIFIER    

hpiHotSwap 1.3.6.1.4.1.18568.2.1.1.2.11
OBJECT IDENTIFIER    

events 1.3.6.1.4.1.18568.2.1.1.3.1
OBJECT IDENTIFIER    

eventLog 1.3.6.1.4.1.18568.2.1.1.3.2
OBJECT IDENTIFIER    

hpiControl 1.3.6.1.4.1.18568.2.1.1.4.7
OBJECT IDENTIFIER    

hpiInventory 1.3.6.1.4.1.18568.2.1.1.4.8
OBJECT IDENTIFIER    

hpiSensor 1.3.6.1.4.1.18568.2.1.1.4.9
OBJECT IDENTIFIER    

saHpiHpiVersion 1.3.6.1.4.1.18568.2.1.1.1.1
This scalar object provides the version of HPI this MIB is based on.
Status: current Access: read-only
OBJECT-TYPE    
  DisplayString  

saHpiAgentVersion 1.3.6.1.4.1.18568.2.1.1.1.2
This scalar object provides the version of the HPI-MIB SNMP implementation.
Status: current Access: read-only
OBJECT-TYPE    
  DisplayString  

saHpiSnmpResourceId 1.3.6.1.4.1.18568.2.1.1.1.3
This scalar object provides the Resource Id of the domain the HPI-MIB SNMP implementation is running on. This is to help prevent powering down the machine providing the SNMP service.
Status: current Access: read-only
OBJECT-TYPE    
  Unsigned32  

saHpiDiscover 1.3.6.1.4.1.18568.2.1.1.1.4
This scalar object forces the discovery of all resources and associated domains by the underlying management service.
Status: current Access: read-write
OBJECT-TYPE    
  TruthValue  

saHpiDomainInfoActiveEntries 1.3.6.1.4.1.18568.2.1.1.2.1
The number of Domain entries present in the system.
Status: current Access: read-only
OBJECT-TYPE    
  Gauge32  

saHpiDomainInfoTable 1.3.6.1.4.1.18568.2.1.1.2.2
This table represents the management attributes common to all Domains within the managed platform. The logical domain ID and the entity ID are used to address an entity.
Status: current Access: not-accessible
OBJECT-TYPE    
  SEQUENCE OF  
    SaHpiDomainInfoEntry

saHpiDomainInfoEntry 1.3.6.1.4.1.18568.2.1.1.2.2.1
Domain Info: This structure is used to store the information regarding the domain including information regarding the domain reference table (DRT) and the resource presence table (RPT). The DomainTag field is an informational value that supplies an HPI SNMP Manager with naming information for the domain. NOTE: Regarding timestamps - If the implementation cannot supply an absolute timestamp, then it may supply a timestamp relative to some system-defined epoch, such as system boot. The value SAHPI_TIME_UNSPECIFIED indicates that the time of the update cannot be determined. Otherwise, If the value is less than or equal to SAHPI_TIME_MAX_RELATIVE, then it is relative; if it is greater than SAHPI_TIME_MAX_RELATIVE, then it is absolute. See SaHpiTime textual convention for more details.
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiDomainInfoEntry  

saHpiDomainId 1.3.6.1.4.1.18568.2.1.1.2.2.1.1
Domain identifier. The number is unique within the system.
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiDomainId  

saHpiDomainCapabilities 1.3.6.1.4.1.18568.2.1.1.2.2.1.2
Domain Capabilities This definition defines the capabilities of a given domain. A domain may support any number of capabilities , each capability seperated by a delimiter. See the textual convention. autoInsertReadOnly(1): Indicates that the domain auto insert timeout value is read-only and may not be modified using the saHpiAutoTimeoutForInsert columnar object.
Status: current Access: read-only
OBJECT-TYPE    
  BITS undefined(0), autoInsertReadOnly(1)  

saHpiDomainIsPeer 1.3.6.1.4.1.18568.2.1.1.2.2.1.3
Indicates that this domain participates in a peer relationship. TRUE = Domain is peer. FALSE = Domain is not peer
Status: current Access: read-only
OBJECT-TYPE    
  TruthValue  

saHpiDomainTagTextType 1.3.6.1.4.1.18568.2.1.1.2.2.1.4
Information tag associated with domain. See Definition for SaHpiTextType for more details.
Status: current Access: read-write
OBJECT-TYPE    
  SaHpiTextType  

saHpiDomainTagTextLanguage 1.3.6.1.4.1.18568.2.1.1.2.2.1.5
Information tag associated with domain. See Definition for SaHpiTextLanguage for more details.
Status: current Access: read-write
OBJECT-TYPE    
  SaHpiTextLanguage  

saHpiDomainTag 1.3.6.1.4.1.18568.2.1.1.2.2.1.6
Information tag associated with domain. The type of data is specified by saHpiDomainTagTextType and saHpiDomainTagLanguage.
Status: current Access: read-write
OBJECT-TYPE    
  SaHpiText  

saHpiDomainReferenceUpdateCount 1.3.6.1.4.1.18568.2.1.1.2.2.1.7
This count is incremented any time the DRT table is changed. It rolls over to zero when the maximum value (2^32) is reached.
Status: current Access: read-only
OBJECT-TYPE    
  Unsigned32  

saHpiDomainReferenceUpdateTimestamp 1.3.6.1.4.1.18568.2.1.1.2.2.1.8
This timestamp is set any time the DRT table is changed. Refer to SaHpiTime for full description.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiTime  

saHpiDomainResourcePresenceUpdateCount 1.3.6.1.4.1.18568.2.1.1.2.2.1.9
This count is incremented any time the RPT is changed. It rolls over to zero when the maximum (2^32) value is reached
Status: current Access: read-only
OBJECT-TYPE    
  Unsigned32  

saHpiDomainResourcePresenceUpdateTimestamp 1.3.6.1.4.1.18568.2.1.1.2.2.1.10
This timestamp is set any time the RPT table is changed. Refer to SaHpiTime for full description.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiTime  

saHpiDomainAlarmUpdateCount 1.3.6.1.4.1.18568.2.1.1.2.2.1.11
This count is incremented any time the DAT is changed. It rolls over to zero when the maximum value (2^32) is reached
Status: current Access: read-only
OBJECT-TYPE    
  Unsigned32  

saHpiDomainAlarmUpdateTimestamp 1.3.6.1.4.1.18568.2.1.1.2.2.1.12
This timestamp is set any time the DAT is changed. Refer to SaHpiTime for full description.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiTime  

saHpiDomainActiveAlarms 1.3.6.1.4.1.18568.2.1.1.2.2.1.13
Count of active alarms in the DAT.
Status: current Access: read-only
OBJECT-TYPE    
  Unsigned32  

saHpiDomainCriticalAlarms 1.3.6.1.4.1.18568.2.1.1.2.2.1.14
Count of active critical alarms in the DAT.
Status: current Access: read-only
OBJECT-TYPE    
  Unsigned32  

saHpiDomainMajorAlarms 1.3.6.1.4.1.18568.2.1.1.2.2.1.15
Count of active major alarms in the DAT.
Status: current Access: read-only
OBJECT-TYPE    
  Unsigned32  

saHpiDomainMinorAlarms 1.3.6.1.4.1.18568.2.1.1.2.2.1.16
Count of active minor alarms in the DAT.
Status: current Access: read-only
OBJECT-TYPE    
  Unsigned32  

saHpiDomainAlarmUserLimit 1.3.6.1.4.1.18568.2.1.1.2.2.1.17
Maximum User Alarms that can be added to DAT. 0=no fixed limit.
Status: current Access: read-only
OBJECT-TYPE    
  Unsigned32  

saHpiDomainAlarmOverflow 1.3.6.1.4.1.18568.2.1.1.2.2.1.18
Set to True if there are one or more non-User Alarms that are missing from the DAT because of space limitations.
Status: current Access: read-only
OBJECT-TYPE    
  TruthValue  

saHpiDomainGuid 1.3.6.1.4.1.18568.2.1.1.2.2.1.19
The GUID is used to uniquely identify a domain. A GUID value of zero is not valid and indicates that the domain does not have an associated GUID. GUID - Globally Unique Identifier A GUID value of zero is not valid and indicates that the domain does not have an associated GUID. See textual convention.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiGuid  

saHpiDomainReferenceActiveEntries 1.3.6.1.4.1.18568.2.1.1.2.3
The number of DRT entries present in the saHpiDomainReferenceTable.
Status: current Access: read-only
OBJECT-TYPE    
  Gauge32  

saHpiDomainReferenceTable 1.3.6.1.4.1.18568.2.1.1.2.4
A table, provided by an HPI implementation, of additional domains related to the current domain.
Status: current Access: not-accessible
OBJECT-TYPE    
  SEQUENCE OF  
    SaHpiDomainReferenceEntry

saHpiDomainReferenceEntry 1.3.6.1.4.1.18568.2.1.1.2.4.1
The Domain Reference Table (DRT) which provides information about other domains associated with the domain. The two saHpiDomainId indices for this table are used to uniquely a domain and an associated domain, that are in a peer or tiered domain relationship. The DRT contains an entry for each associated domain, and HPI MIB Users may read these entries to discover the presence of additional domains within a 'System'. The discovered domains can, in turn, be used to discover additional resources and domains. The DRT is automatically built and maintained by the HPI implementation. Domain entries in the DRT may change over time if the 'System' configuration changes. There are two types of domain references: - A peer domain architecture, which consists of two or more domains that are expected to contain the same resources and domain references. Each domain in a peer relationship contains an RPT listing all resources present in each domain. - A tiered (child) domain architecture is used when all the resources in a 'system' cannot be accessed in a single domain. A 'parent' domain references one or more 'child' domains in its DRT. The 'child' domains may be simple domains containing only resources, or they may themselves be a 'parent' to other 'child' domains. Domains in a tiered relationship are disjointed and do not contain the same resources.
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiDomainReferenceEntry  

saHpiDomainRef 1.3.6.1.4.1.18568.2.1.1.2.4.1.1
If a Peer or child domain exists this is the DomainID.
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiDomainId  

saHpiDomainReferenceIsPeer 1.3.6.1.4.1.18568.2.1.1.2.4.1.2
Indicates that this domain participates in a peer relationship. TRUE = Domain is peer. FALSE = Domain is not peer (is a child)
Status: current Access: read-only
OBJECT-TYPE    
  TruthValue  

saHpiDomainAlarmActiveEntries 1.3.6.1.4.1.18568.2.1.1.2.5
The number of DomainAlarm entries present in the system.
Status: current Access: read-only
OBJECT-TYPE    
  Gauge32  

saHpiDomainAlarmTable 1.3.6.1.4.1.18568.2.1.1.2.6
This table represents the management attributes common to all Domains within the managed platform. The logical domain ID and the entity ID are used to address an entity.
Status: current Access: not-accessible
OBJECT-TYPE    
  SEQUENCE OF  
    SaHpiDomainAlarmEntry

saHpiDomainAlarmEntry 1.3.6.1.4.1.18568.2.1.1.2.6.1
This table is used to store alarm information.
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiDomainAlarmEntry  

saHpiDomainAlarmId 1.3.6.1.4.1.18568.2.1.1.2.6.1.1
DomainAlarm Id
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiEntryId  

saHpiDomainAlarmTimestamp 1.3.6.1.4.1.18568.2.1.1.2.6.1.2
Time when alarm was added to the DAT table. Refer to SaHpiTime for full description.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiTime  

saHpiDomainAlarmSeverity 1.3.6.1.4.1.18568.2.1.1.2.6.1.3
Severity of alarm. Note: Enumerated values are increased by one value compared to SAI-HPI-B.01.01 spec.
Status: current Access: read-create
OBJECT-TYPE    
  SaHpiSeverity  

saHpiDomainAlarmAcknowledged 1.3.6.1.4.1.18568.2.1.1.2.6.1.4
Use this columnar object to acknowledge a specific Alarm. An HPI SNMP Manager acknowledges an alarm to indicate that it is aware of the alarm and to influence platform-specific alarm annunciation that may be provided by the implementation. Typically, an implementation ignores acknowledged alarms when announcing an alarm on annunciation devices such as audible sirens and dry contact closures. However, An acknowledged alarm will have the Acknowledged field in the alarm entry set to True. DomainAlarms are acknowledged by one of two ways: a single alarm entry by DomainAlarmId regardless of severity or as a group of alarm entries by Severity regardless of DomainAlarmId. To acknowledge all alarms contained within the DAT, set the Severity parameter to allSeverities(256), and set the DomainAlarmId parameter to SAHPI_ENTRY_UNSPECIFIED. To acknowledge all alarms of a specific severity contained within the DAT, set the Severity parameter to the appropriate value, and set the DomainAlarmId parameter to SAHPI_ENTRY_UNSPECIFIED. To acknowledge a single alarm entry, set the DomainAlarmId parameter to a value other than SAHPI_ENTRY_UNSPECIFIED. The DomainAlarmId must be a valid identifier for an alarm entry present in the DAT at the time of the function call. If an alarm has been previously acknowledged, acknowledging it again has no effect. However, this is not an error. If the DomainAlarmId parameter has a value other than SAHPI_ENTRY_UNSPECIFIED, the Severity parameter is ignored. If the DomainAlarmId parameter is passed as SAHPI_ENTRY_UNSPECIFIED, and no alarms are present that meet the requested Severity, this function will have no effect. However, this is not an error. SAHPI_ENTRY_UNSPECIFIED is defined as the same value as SAHPI_FIRST_ENTRY, so using either symbol will have the same effect. However, SAHPI_ENTRY_UNSPECIFIED should be used with this function for clarity.
Status: current Access: read-create
OBJECT-TYPE    
  TruthValue  

saHpiDomainAlarmAckBySeverity 1.3.6.1.4.1.18568.2.1.1.2.6.1.5
Use this columnar object to acknowledge Alarms based on severity. An HPI SNMP Manager acknowledges an alarm to indicate that it is aware of the alarm and to influence platform-specific alarm annunciation that may be provided by the implementation. Typically, an implementation ignores acknowledged alarms when announcing an alarm on annunciation devices such as audible sirens and dry contact closures. However, alarm annunciation is implementation-specific. An acknowledged alarm will have the Acknowledged field in the alarm entry set to True. DomainAlarms are acknowledged by one of two ways: a single alarm entry by DomainAlarmId regardless of severity or as a group of alarm entries by Severity regardless of DomainAlarmId. To acknowledge all alarms contained within the DAT, set the Severity parameter to allSeverities(256), and set the DomainAlarmId parameter to SAHPI_ENTRY_UNSPECIFIED. To acknowledge all alarms of a specific severity contained within the DAT, set the Severity parameter to the appropriate value, and set the DomainAlarmId parameter to SAHPI_ENTRY_UNSPECIFIED. To acknowledge a single alarm entry, set the DomainAlarmId parameter to a value other than SAHPI_ENTRY_UNSPECIFIED. The DomainAlarmId must be a valid identifier for an alarm entry present in the DAT at the time of the function call. If an alarm has been previously acknowledged, acknowledging it again has no effect. However, this is not an error. If the DomainAlarmId parameter has a value other than SAHPI_ENTRY_UNSPECIFIED, the Severity parameter is ignored. If the DomainAlarmId parameter is passed as SAHPI_ENTRY_UNSPECIFIED, and no alarms are present that meet the requested Severity, this function will have no effect. However, this is not an error. SAHPI_ENTRY_UNSPECIFIED is defined as the same value as SAHPI_FIRST_ENTRY, so using either symbol will have the same effect. However, SAHPI_ENTRY_UNSPECIFIED should be used with this function for clarity.
Status: current Access: read-create
OBJECT-TYPE    
  SaHpiSeverity  

saHpiDomainAlarmCondStatusCondType 1.3.6.1.4.1.18568.2.1.1.2.6.1.6
Enumeration of status condition type. Note: Enumerated values are increased by one value compared to SAI-HPI-B.01.01 spec.
Status: current Access: read-create
OBJECT-TYPE    
  SaHpiStatusCondType  

saHpiDomainAlarmCondEntityPath 1.3.6.1.4.1.18568.2.1.1.2.6.1.7
See Textual-Convention for details.
Status: current Access: read-create
OBJECT-TYPE    
  SaHpiEntityPath  

saHpiDomainAlarmCondSensorNum 1.3.6.1.4.1.18568.2.1.1.2.6.1.8
Sensor associated with status Only valid if saHpiDomainAlarmCondStatusCondType is sensor(1).
Status: current Access: read-create
OBJECT-TYPE    
  Unsigned32  

saHpiDomainAlarmCondEventState 1.3.6.1.4.1.18568.2.1.1.2.6.1.9
Sensor event state. Only valid if saHpiDomainAlarmCondStatusCondType is sensor(1).
Status: current Access: read-create
OBJECT-TYPE    
  SaHpiEventState  

saHpiDomainAlarmCondNameValue 1.3.6.1.4.1.18568.2.1.1.2.6.1.10
AIS compatible identifier associated with Status condition. The Service Availability(TM) Forum Application Interface Specification standardizes the interface between Service Availability(TM) Forum compliant High Availability (HA) middleware and service applications. http://www.saforum.org
Status: current Access: read-create
OBJECT-TYPE    
  OCTET STRING Size(0..255)  

saHpiDomainAlarmCondMid 1.3.6.1.4.1.18568.2.1.1.2.6.1.11
Manufacturer Id associated with status condition, required when saHpiDomainAlarmCondStatusCondType is oem(3).
Status: current Access: read-create
OBJECT-TYPE    
  SaHpiManufacturerId  

saHpiDomainAlarmCondTextType 1.3.6.1.4.1.18568.2.1.1.2.6.1.12
Optional data associated with status condition associated with Domain. For more details, see textual definition and saHpiDomainAlarmCondDomainTextType and saHpiDomainAlarmCondDomainTextLanguage
Status: current Access: read-create
OBJECT-TYPE    
  SaHpiTextType  

saHpiDomainAlarmCondTextLanguage 1.3.6.1.4.1.18568.2.1.1.2.6.1.13
Optional data associated with status condition. For more details, see textual definition
Status: current Access: read-create
OBJECT-TYPE    
  SaHpiTextLanguage  

saHpiDomainAlarmCondText 1.3.6.1.4.1.18568.2.1.1.2.6.1.14
Optional data associated with status condition. The type of date is specified by saHpiDomainAlarmCondDomainAlarmaTextType and saHpiDomainAlarmCondDomainAlarmaTextLanguage.
Status: current Access: read-create
OBJECT-TYPE    
  SaHpiText  

saHpiDomainAlarmRowStatus 1.3.6.1.4.1.18568.2.1.1.2.6.1.15
This columnar object contains the status of the row and is also used to perform add and delete operations. The status column uses four defined values: - `active(1)', which indicates that the conceptual row is available for use by the managed device; - `notInService(2)', which indicates that the conceptual row exists in the agent, but is unavailable for use by the managed device (see NOTE below); 'notInService' has no implication regarding the internal consistency of the row, availability of resources, or consistency with the current state of the managed device. - `createAndWait(5)', which is supplied by a management station wishing to create a new instance of a conceptual row (but not make it available for use by the managed device). This operation is used to add a User Alarm to the Domain Alarm Table. It also subsequently appears in the User Event Table (a duplicate). The row is created (and changes state to 'active' when the saHpiDomainAlarmSeverity has been set on) to a new instance of the conceptual row. The dis-allowed saHpiDomainAlarmSeverity values are minor(3), major(2), and critical(3). - `destroy(6)', which is supplied by a management station wishing to delete all of the instances associated with an existing conceptual row. This function allows the HPI MIB User to delete a single User Alarm or a group identified by severity (saHpiDomainAlarmSeverity) from the Domain Alarm Table. Note this has no efect on the 'User Event Table.' Only User Alarms added to the DAT can be deleted. To delete a single, specific alarm, set the saHpiDomainAlarmId parameter to a value representing an actual User Alarm ( all three indices must be valid) in the DAT. To delete a group of User Alarms by severity set saHpiDomainAlarmId == SAHPI_ENTRY_UNSPECIFIED (see textual convention for more details.)
Status: current Access: read-create
OBJECT-TYPE    
  RowStatus  

saHpiResourceActiveEntries 1.3.6.1.4.1.18568.2.1.1.2.7
The number of RPT entries present in the system. This field is used to determine if new resources have been added or existing removed.
Status: current Access: read-only
OBJECT-TYPE    
  Gauge32  

saHpiResourceTable 1.3.6.1.4.1.18568.2.1.1.2.8
The logical domain ID and the Resource ID are used to address a Resource.
Status: current Access: not-accessible
OBJECT-TYPE    
  SEQUENCE OF  
    SaHpiResourceEntry

saHpiResourceEntry 1.3.6.1.4.1.18568.2.1.1.2.8.1
A User access the Resource Presence Table (RPT) for each domain in the system. This table represents up-to-date information on the resources currently present in the domain with which it is associated. The ResourceCapabilities field defines the capabilities of the resource. This field must be non-zero for all valid resources. The ResourceTag field is an informational value. The HotSwapCapabilities field denotes the capabilities of the resource, specifically related to hot swap. This field is only valid if the resource supports managed hot swap, as indicated by the SAHPI_CAPABILITY_MANAGED_HOT_SWAP resource capability. All of the fields in the following table may or may not be used by a given resource.
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiResourceEntry  

saHpiResourceId 1.3.6.1.4.1.18568.2.1.1.2.8.1.1
Resource identifier. The SAHPI_UNSPECIFIED_RESOURCE_ID value is used to specify the Domain Event Log and to specify that there is no resource for such things as HPI User events/alarms. Note: SAHPI_UNSPECIFIED_RESOURCE_ID 0xFFFFFFFF
Status: current Access: read-only
OBJECT-TYPE    
  Unsigned32  

saHpiResourceEntryId 1.3.6.1.4.1.18568.2.1.1.2.8.1.2
This index is here to help facilitate browsing a known resources RDR's. For example to find the first RDR's specify a value of SAHPI_FIRST_ENTRY. See textual-convention for further details.
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiEntryId  

saHpiResourceEntityPath 1.3.6.1.4.1.18568.2.1.1.2.8.1.3
See Texual-Convention for details.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiEntityPath  

saHpiResourceCapabilities 1.3.6.1.4.1.18568.2.1.1.2.8.1.4
Resource Capabilities This definition defines the capabilities of a given resource by using a bit values. One resource may support any number of capabilities using the bits. Because each entry in an Resource Table will have the resource(15) bit set; undefined(0) is not a valid value for the capability flag, and is thus would be used to indicate 'no resource present in' in some objects. resource(15) evtDeAsserts(14) Indicates that all sensors on the resource have the property that their Assertion and Deassertion event enable flags are the same. That is, for all event states whose assertion triggers an event, it is guaranteed that the deassertion of that event will also trigger an event. Thus, an HPI SNMP Manager may track the state of sensors on the resource by monitoring events rather than polling for state changes. aggregateStatus(13) configuration(12) managedHotSwap(11) Indicates that the resource supports the full managed hot swap model. Since hot swap only makes sense for field-replaceable units, the FRU capability string must also be set for this columnar object. watchdog(10) control(9) fru(8) Indicates that the resource is a field-replaceable unit; i.e., it is capable of being removed and replaced in a live system. If managedHotSwap(11) is also set, the resource supports the full hot swap model. If managedHotSwap(11) is not set, the resource supports the simplified hot swap model. annunciator(7) power(6) reset(5) inventoryData(4) eventLog(3) rdr(2) Indicates that a resource data record (RDR) repository is supplied by the resource. Since the existence of an RDR is mandatory for all management instruments, this capability must be asserted if the resource contains any annunciators, sensors, controls, watchdog timers , or inventory data repositories. sensor(1) See textual-convention for further definition.
Status: current Access: read-only
OBJECT-TYPE    
  BITS undefined(0), sensor(1), rdr(2), eventLog(3), inventoryDate(4), reset(5), power(6), annunciator(7), fru(8), control(9), watchdog(10), managedHotSwap(11), configuration(12), aggregateStatus(13), evtDeAsserts(14), resource(15)  

saHpiResourceHotSwapCapabilities 1.3.6.1.4.1.18568.2.1.1.2.8.1.5
This definition defines the managed hot swap capabilities of a given resource. autoExtractReadOnly(1) This capability indicates if the hot swap autoextract timer is read-only. indicatorSupported(2) Indicates whether or not the resource has a hot swap indicator. See textual convention for futher details.
Status: current Access: read-only
OBJECT-TYPE    
  BITS undefined(0), autoExtractReadOnly(1), indicatorSupported(2)  

saHpiResourceSeverity 1.3.6.1.4.1.18568.2.1.1.2.8.1.6
Indicates the criticality that should be raised when the resource is not responding. Note: The enumerated named have +1 added as opposed to the SAI-HPI-B.01.01 spec for the same constants.
Status: current Access: read-write
OBJECT-TYPE    
  SaHpiSeverity  

saHpiResourceFailed 1.3.6.1.4.1.18568.2.1.1.2.8.1.7
TRUE = Resource Not Functional. FALSE = Resource Functional
Status: current Access: read-only
OBJECT-TYPE    
  TruthValue  

saHpiResourceInfoResourceRev 1.3.6.1.4.1.18568.2.1.1.2.8.1.8
saHpiResourceInfo contains static configuration data concerning the management controller associated with the resource, or the resource itself. Note this information is used to describe the resource; that is, the piece of infrastructure which manages an entity (or multiple entities) - NOT the entities for which the resource provides management. The purpose of the saHpiResourceInfoT structure is to provide information that the HPI SNMP Manager may need in order to interact correctly with the resource (e.g., recognize a specific management controller which may have defined oem fields in sensors, oem controls, etc.
Status: current Access: read-only
OBJECT-TYPE    
  Unsigned8  

saHpiResourceInfoSpecificVer 1.3.6.1.4.1.18568.2.1.1.2.8.1.9
See saHpiResourceInfoResourceRev in SAI-HPI-B.01.01 for overview.
Status: current Access: read-only
OBJECT-TYPE    
  Unsigned8  

saHpiResourceInfoDeviceSupport 1.3.6.1.4.1.18568.2.1.1.2.8.1.10
See saHpiResourceInfoResourceRev in SAI-HPI-B.01.01 for overview.
Status: current Access: read-only
OBJECT-TYPE    
  Unsigned8  

saHpiResourceInfoManufacturerId 1.3.6.1.4.1.18568.2.1.1.2.8.1.11
See saHpiResourceInfoResourceRev in SAI-HPI-B.01.01 for overview.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiManufacturerId  

saHpiResourceInfoProductId 1.3.6.1.4.1.18568.2.1.1.2.8.1.12
See saHpiResourceInfoResourceRev in SAI-HPI-B.01.01 for overview.
Status: current Access: read-only
OBJECT-TYPE    
  Unsigned16  

saHpiResourceInfoFirmwareMajorRev 1.3.6.1.4.1.18568.2.1.1.2.8.1.13
See saHpiResourceInfoResourceRev in SAI-HPI-B.01.01 for overview.
Status: current Access: read-only
OBJECT-TYPE    
  Unsigned8  

saHpiResourceInfoFirmwareMinorRev 1.3.6.1.4.1.18568.2.1.1.2.8.1.14
See saHpiResourceInfoResourceRev in SAI-HPI-B.01.01 for overview.
Status: current Access: read-only
OBJECT-TYPE    
  Unsigned8  

saHpiResourceInfoAuxFirmwareRev 1.3.6.1.4.1.18568.2.1.1.2.8.1.15
See saHpiResourceInfoResourceRev in SAI-HPI-B.01.01 for overview.
Status: current Access: read-only
OBJECT-TYPE    
  Unsigned8  

saHpiResourceInfoGuid 1.3.6.1.4.1.18568.2.1.1.2.8.1.16
The GUID is used to uniquely identify a Resource. A GUID value of zero is not valid and indicates that the Resource does not have an associated GUID. See textual convention for more details.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiGuid  

saHpiResourceTagTextType 1.3.6.1.4.1.18568.2.1.1.2.8.1.17
This object contains the resource tag information. See textual convention for more information.
Status: current Access: read-write
OBJECT-TYPE    
  SaHpiTextType  

saHpiResourceTagTextLanguage 1.3.6.1.4.1.18568.2.1.1.2.8.1.18
This object contains the resource tag text language enumeration. See textual convention for more information.
Status: current Access: read-write
OBJECT-TYPE    
  SaHpiTextLanguage  

saHpiResourceTag 1.3.6.1.4.1.18568.2.1.1.2.8.1.19
Resource tag. The type of data is specified by saHpiResourceTagTextType and saHpiResourceTagLanguage.
Status: current Access: read-write
OBJECT-TYPE    
  SaHpiText  

saHpiResourceParmControl 1.3.6.1.4.1.18568.2.1.1.2.8.1.20
This object allows the user to save and restore parameters associated with a specific resource. Valid actions for this function include: undefined(0) - resource has no concept of configurations. restoreDefaultParm(1) - Restores factory default settings for a specific resource. Factory defaults include sensor thresholds and configurations, and resource-specific configuration parameters. saveParm(2) - Stores the resource configuration parameters in non-volatile storage. Resource configuration parameters stored in non-volatile storage will survive power cycles and resource resets. restoreParm(3) - Restores resource configuration parameters from non-volatile storage. Resource configuration parameters include sensor thresholds and sensor configurations, as well as resource-specific parameters. unsupported(4) - Specifies if the resource does not support parameter control. This value is not written but is read only. And states the above actions when written are not supported and if written a SNMP error code 'notWritable' will be generated. SNMP error codes should be checked to see of action written succeeded. Note: Enumerated values are increased by one value compared to SAI-HPI-B.01.01 spec.
Status: current Access: read-write
OBJECT-TYPE    
  INTEGER undefined(0), restoreDefaultParm(1), saveParm(2), restoreParm(3), unsupported(4)  

saHpiResourceResetAction 1.3.6.1.4.1.18568.2.1.1.2.8.1.21
This function gets the reset state of an entity, allowing the HPI SNMP Manager to determine if the entity is being held with its reset asserted. If a resource manages multiple entities, this function will address the entity which is identified in the Resource Table entry for the resource. coldReset(1) and warmReset(2) are pulsed resets, and are not valid values to be returned in saHpiResetAction. If the entity is not being held in reset (using resetAssert(3)), the appropriate value is resetDeAssert(4). Note: Enumerated values are increased by one value compared to SAI-HPI-B.01.01 spec.
Status: current Access: read-write
OBJECT-TYPE    
  INTEGER undefined(0), coldReset(1), warmReset(2), resetAssert(3), resetDeAssert(4), unsupported(5)  

saHpiResourcePowerAction 1.3.6.1.4.1.18568.2.1.1.2.8.1.22
This function gets the power state of an entity, allowing the HPI SNMP Manager to determine if the entity is currently powered on or off. If a resource manages multiple entities, this function will address the entity which is identified in the RPT entry for the resource. cycle(3) is a pulsed power operation and is not a valid return for the power state. This function controls the hardware power on a FRU entity regardless of what hot-swap state the resource is in. For example, it is legal (and may be desirable) to cycle power on the FRU even while it is in ACTIVE state in order to attempt to clear a fault condition. Similarly, a resource could be instructed to power on a FRU even while it is in inactive(1) state, for example, in order to run off-line diagnostics. Not all resources supporting hot swap will necessarily support this function. In particular, resources that use the simplified hot swap model may not have the ability to control FRU power. This function may also be supported for non-FRU entities if power control is available for those entities. Note: Enumerated values are increased by one value compared to SAI-HPI-B.01.01 spec.
Status: current Access: read-write
OBJECT-TYPE    
  INTEGER undefined(0), off(1), on(2), cycle(3), unsupported(4)  

saHpiResourceIsHistorical 1.3.6.1.4.1.18568.2.1.1.2.8.1.23
This columnar object, which is part of the index for every resource, determines if this resource is historical. Historical meaning not present in the system anymore, but only present in the event and as part of that. Note that this means that the implementation must in some way control how much data is persisted. Check with the implementation documentation for more details.
Status: current Access: not-accessible
OBJECT-TYPE    
  TruthValue  

saHpiAutoInsertTimeoutTable 1.3.6.1.4.1.18568.2.1.1.2.11.1
In support of HPI saHpiAutoInsertTimeoutGet, and saHpiAutoInsertTimeoutSet.
Status: current Access: not-accessible
OBJECT-TYPE    
  SEQUENCE OF  
    SaHpiAutoInsertTimeoutEntry

saHpiAutoInsertTimeoutEntry 1.3.6.1.4.1.18568.2.1.1.2.11.1.1
Table of domains with a timeout for how long to wait before the default auto-insertion policy is invoked on a resource within a specific domain.
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiAutoInsertTimeoutEntry  

saHpiAutoInsertTimeoutForInsert 1.3.6.1.4.1.18568.2.1.1.2.11.1.1.1
This function allows the HPI SNMP Manager to configure a timeout for how long to wait before the default auto-insertion policy is invoked on a resource within a specific domain. This columnar object accepts a parameter instructing each resource to impose a delay before performing its default hot swap policy for auto-insertion. The parameter may be set to SAHPI_TIMEOUT_IMMEDIATE ( see SaHpiTime Textual-Convention for further details) to direct resources to proceed immediately to auto-insertion, or to SAHPI_TIMEOUT_BLOCK ( see SaHpiTime Textual-Convention for further details) to prevent auto-insertion from ever occurring. If the parameter is set to another value, then it defines the number of nanoseconds between the time a hot swap event with saHpiHotSwapState == insertionPending(5) is generated, and the time that the auto-insertion policy will be invoked for that resource. If, during this time period, a saHpiHotSwapPolicyCancel function call is processed, the timer will be stopped, and the auto-insertion policy will not be invoked. Each domain maintains a single auto-insert timeout value and it is applied to all contained resources upon insertion, which support managed hot swap. Once the auto-insertion process begins, the HPI SNMP Manager will not be allowed to take control of the insertion process; hence, the timeout should be set appropriately to allow for this condition. Note that the timeout period begins when the hot swap event with saHpiHotSwapState == insertionPending(5) is initially generated.
Status: current Access: read-write
OBJECT-TYPE    
  SaHpiTime  

saHpiHotSwapActiveEntries 1.3.6.1.4.1.18568.2.1.1.2.11.2
The number of HotSwap entries present in the system.
Status: current Access: read-only
OBJECT-TYPE    
  Gauge32  

saHpiHotSwapTable 1.3.6.1.4.1.18568.2.1.1.2.11.3
This table represents management attributes common to all hot swappable resources in the managed platform. The entries in this table are straight from the HPI spec. This table builds upon information present in the saHpiResourceTable.
Status: current Access: not-accessible
OBJECT-TYPE    
  SEQUENCE OF  
    SaHpiHotSwapEntry

saHpiHotSwapEntry 1.3.6.1.4.1.18568.2.1.1.2.11.3.1
An entry describing a particular hot swappable entity.
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiHotSwapEntry  

saHpiHotSwapIndicator 1.3.6.1.4.1.18568.2.1.1.2.11.3.1.1
A FRU associated with a hot-swappable resource may include a hot swap indicator such as a blue LED. This indicator signifies that the FRU is ready for removal. This columnar object allows the HPI SNMP Manager to retrieve and set the state of this indicator. When retrieving the values, the valid states are either saHpiHotSwapIndicator == off(1) or saHpiHotSwapIndicator == on(2). This columnar object will return information, regardless of what hot swap state the resource is in. When setting the values, valid states include saHpiHotSwapIndicator == off(1) or saHpiHotSwapIndicator == on(2). This function will set the indicator regardless of what hot swap state the resource is in, though it is recommended that this function be used only in conjunction with moving the resource to the appropriate hot swap state.
Status: current Access: read-write
OBJECT-TYPE    
  INTEGER undefined(0), off(1), on(2)  

saHpiHotSwapState 1.3.6.1.4.1.18568.2.1.1.2.11.3.1.2
Refer to the textual convention for full details.
Status: current Access: read-write
OBJECT-TYPE    
  SaHpiHotSwapState  

saHpiHotSwapExtractTimeout 1.3.6.1.4.1.18568.2.1.1.2.11.3.1.3
This function allows the HPI SNMP Manager to configure a timeout for how long to wait before the default auto-extraction policy is invoked. This function accepts a parameter instructing the resource to impose a delay before performing its default hot swap policy for auto-extraction. The parameter may be set to SAHPI_TIMEOUT_IMMEDIATE to direct the resource to proceed immediately to auto-extraction, or to SAHPI_TIMEOUT_BLOCK to prevent auto-extraction from ever occurring on a resource. If the parameter is set to another value, then it defines the number of nanoseconds between the time a hot swap event with saHpiHotSwapState = extractionPending(4) is generated and the time that the auto-extraction policy will be invoked for the resource. If, during this time period, a saHpiHotSwapPolicyCancel function call is processed, the timer will be stopped, and the auto-extraction policy will not be invoked. Once the auto-extraction process begins, the HPI SNMP Manager will not be allowed to take control of the extraction process; hence, the timeout should be set appropriately to allow for this condition. Note that the timeout period begins when the hot swap event with saHpiHotSwapState = extractionPending(4) is initially generated.
Status: current Access: read-write
OBJECT-TYPE    
  SaHpiTime  

saHpiHotSwapActionRequest 1.3.6.1.4.1.18568.2.1.1.2.11.3.1.4
A resource supporting hot swap typically requires a physical action on the associated FRU to invoke an insertion or extraction process. An insertion process is invoked by physically inserting the FRU into a chassis. Physically opening an ejector latch or pressing a button invokes the extraction process. This columnar object allows the HPI SNMP Manager to invoke an insertion or extraction process via software. Note: Enumerated values are increased by one value compared to SAI-HPI-B.01.01 spec.
Status: current Access: read-write
OBJECT-TYPE    
  INTEGER undefined(0), insertion(1), extraction(2)  

saHpiHotSwapPolicyCancel 1.3.6.1.4.1.18568.2.1.1.2.11.3.1.5
A resource supporting hot swap typically supports default policies for insertion and extraction. On insertion, the default policy may be for the resource to turn the associated FRU~s local power on and to de-assert reset. On extraction, the default policy may be for the resource to immediately power off the FRU and turn on a hot swap indicator. This function allows an HPI SNMP Manager, after receiving a hot swap event with saHpiHotSwapState equal to INSERTION_PENDING or EXTRACTION_PENDING, to prevent the default policy from being executed. Once the resource transitions to either the ACTIVE or inactive(1) state, the default policies will once again execute, unless cancelled using saHpiHotSwapPolicyCancel. The default policy cannot be canceled once it has begun to execute. Because a resource that supports the simplified hot swap model will never transition into insertionPending(2) or extractionPending(4) states, this function is not applicable to those resources. Note: Enumerated values are increased by one value compared to SAI-HPI-B spec.
Status: current Access: read-write
OBJECT-TYPE    
  INTEGER undefined(0), cancel(1)  

saHpiHotSwapResourceRequest 1.3.6.1.4.1.18568.2.1.1.2.11.3.1.6
Depending on the values, the user can: - use this function to request a resource to return to the ACTIVE state from the extractionPending(4) state in order to reject an extraction request. Because a resource that supports the simplified hot swap model will never transition into insertionPending(2) or extractionPending(4) states, this function is not applicable to those resources. - use this function to request a resource to return to the inactive(1) state from the insertionPending(2) state to abort a hot-swap insertion action. Because a resource that supports the simplified hot swap model will never transition into insertionPending(2) or extractionPending(4) states, this function is not applicable to those resources. Note: Enumerated values are increased by one value compared to SAI-HPI-B.01.01 spec.
Status: current Access: read-write
OBJECT-TYPE    
  INTEGER undefined(0), setActive(1), setInActive(2)  

saHpiEventLifetimeChanges 1.3.6.1.4.1.18568.2.1.1.3.1.1
Use this value to determine table activity. It is incremented each time an event is registered in this table. It is also incremented whenever an event is removed or the entire table is cleared. 'saHpiEventLifetimeChanges' represents the sum of all events of all supported types that have occur in the system. Note saHpiDomainEventLifetimeChanges represents the subset of events that are Domain events. The same relationship exists for ResourceEvent, SensorEvent, SensorEnableChangeEvent, HotSwapEvent, WatchdogEvent, HpiSwEvent, OemEvent, UserEvent.
Status: current Access: read-only
OBJECT-TYPE    
  Counter32  

saHpiEventActiveEntries 1.3.6.1.4.1.18568.2.1.1.3.1.2
The number of events present in this table. 'saHpiEventCount' represents the total of all events types currently stored in the 'saHpiEventTable.' saHpiDomainEventCount represents the subset of events that are Domain events. The same relationship exists for ResourceEvent, SensorEvent, SensorEnableChangeEvent, HotSwapEvent, WatchdogEvent, HpiSwEvent, OemEvent, UserEvent.
Status: current Access: read-only
OBJECT-TYPE    
  Gauge32  

saHpiEventTable 1.3.6.1.4.1.18568.2.1.1.3.1.3
Event Master table.
Status: current Access: not-accessible
OBJECT-TYPE    
  SEQUENCE OF  
    SaHpiEventEntry

saHpiEventEntry 1.3.6.1.4.1.18568.2.1.1.3.1.3.1
This table presents the list of all events which are present in the HPI system. The implementation decides how to manipulate the events as they reach a large number. This table is used as a master event table which an index that points to the specific sub-table which has more details on the event. Each time a new event is surfaced in the HPI system this table increases by a new row and its respective sub-event table too (saHpiResourceEventTable, saHpiOemEventTable, etc). Futhermore based on the type of event, an notification is generated as well.
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiEventEntry  

saHpiEventRowPointer 1.3.6.1.4.1.18568.2.1.1.3.1.3.1.1
OID value points to any of the other nine tables: saHpiResourceEventTable, saHpiDomainEventTable, saHpiSensorEventTable, saHpiSensorEnableChangeTable, saHpiHotSwapEventTable, saHpiWatchdogTable, saHpiSoftwareEventTable, saHpiOemEventTable, and saHpiUserEventTable.
Status: current Access: not-accessible
OBJECT-TYPE    
  RowPointer  

saHpiEventSeverity 1.3.6.1.4.1.18568.2.1.1.3.1.3.1.2
Severity of event. Note: Enumerated values are increased by one value compared to SAI-HPI-B.01.01 spec.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiSeverity  

saHpiEventSaHpiTime 1.3.6.1.4.1.18568.2.1.1.3.1.3.1.3
Refer to textual convention for SaHpiTime for more details. The value is Equal to TIME_UNSPECIFIED if time is not available; Absolute time if greater than TIME_MAX_RELATIVE, Relative time if less than or equal to TIME_MAX_RELATIVE.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiTime  

saHpiEventType 1.3.6.1.4.1.18568.2.1.1.3.1.3.1.4
Event type. Note: The enumerated named have +1 added as opposed to the SAI-HPI-B.01.01 spec for the same constants.
Status: current Access: read-only
OBJECT-TYPE    
  INTEGER undefined(0), resource(1), domain(2), sensor(3), sensorEnableChange(4), hotswap(5), watchdog(6), hpiSw(7), oem(8), user(9)  

saHpiResourceEventLifetimeChanges 1.3.6.1.4.1.18568.2.1.1.3.1.4
Use this value to determine table activity. It is incremented each time an event is registered in this table. It is also incremented whenever an event is removed or the entire table is cleared. The number of events registered in this table over the lifetime of the table. If the underlying management system is restarted this count is reset. Use this node to determine table activity. This scalar object represents the subset of events that are Resource Events.
Status: current Access: read-only
OBJECT-TYPE    
  Counter32  

saHpiResourceEventActiveEntries 1.3.6.1.4.1.18568.2.1.1.3.1.5
This scalar object represents the subset of events that are Resource Events.
Status: current Access: read-only
OBJECT-TYPE    
  Gauge32  

saHpiResourceEventTable 1.3.6.1.4.1.18568.2.1.1.3.1.6
Event table.
Status: current Access: not-accessible
OBJECT-TYPE    
  SEQUENCE OF  
    SaHpiResourceEventEntry

saHpiResourceEventEntry 1.3.6.1.4.1.18568.2.1.1.3.1.6.1
Resource events.
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiResourceEventEntry  

saHpiResourceEventEntryId 1.3.6.1.4.1.18568.2.1.1.3.1.6.1.1
Arbitrary table index.
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiEntryId  

saHpiResourceEventTimestamp 1.3.6.1.4.1.18568.2.1.1.3.1.6.1.2
Refer to textual convention for SaHpiTime for more details. The value is Equal to TIME_UNSPECIFIED if time is not available; Absolute time if greater than TIME_MAX_RELATIVE, Relative time if less than or equal to TIME_MAX_RELATIVE.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiTime  

saHpiResourceEventType 1.3.6.1.4.1.18568.2.1.1.3.1.6.1.3
Resource events are sent to indicate the failure or subsequent restoration of a resource. Resource events can also be used to announce the addition of a non-FRU resource to the RPT table. Note: Enumerated values are increased by one value compared to SAI-HPI-B.01.01 spec.
Status: current Access: read-only
OBJECT-TYPE    
  INTEGER undefined(0), resourceFailure(1), resourceRestored(2), resourceAdded(3)  

saHpiDomainEventLifetimeChanges 1.3.6.1.4.1.18568.2.1.1.3.1.7
Use this value to determine table activity. It is incremented each time an event is registered in this table. It is also incremented whenever an event is removed or the entire table is cleared. The number of events registered in this table over the lifetime of the table. If the underlying management system is restarted this count is reset. Use this node to determine table activity. This scalar object represents the subset of events that are Domain events.
Status: current Access: read-only
OBJECT-TYPE    
  Counter32  

saHpiDomainEventActiveEntries 1.3.6.1.4.1.18568.2.1.1.3.1.8
This scalar object represents the subset of events that are Domain events.
Status: current Access: read-only
OBJECT-TYPE    
  Gauge32  

saHpiDomainEventTable 1.3.6.1.4.1.18568.2.1.1.3.1.9
Event table.
Status: current Access: not-accessible
OBJECT-TYPE    
  SEQUENCE OF  
    SaHpiDomainEventEntry

saHpiDomainEventEntry 1.3.6.1.4.1.18568.2.1.1.3.1.9.1
Domain events.
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiDomainEventEntry  

saHpiDomainEventEntryId 1.3.6.1.4.1.18568.2.1.1.3.1.9.1.1
This columnar object is an index for Domain Events in the table.
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiEntryId  

saHpiDomainEventTimestamp 1.3.6.1.4.1.18568.2.1.1.3.1.9.1.2
Refer to textual convention for SaHpiTime for more details. The value is Equal to TIME_UNSPECIFIED if time is not available; Absolute time if greater than TIME_MAX_RELATIVE, Relative time if less than or equal to TIME_MAX_RELATIVE.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiTime  

saHpiDomainEventType 1.3.6.1.4.1.18568.2.1.1.3.1.9.1.3
This object defines the enumeration for the domain to announce the addition of domain references and the removal of domain references to the Domain Table.
Status: current Access: read-only
OBJECT-TYPE    
  INTEGER undefined(0), domainRefAdded(1), domainRefRemoved(2)  

saHpiSensorEventLifetimeChanges 1.3.6.1.4.1.18568.2.1.1.3.1.10
Use this value to determine table activity. It is incremented each time an event is registered in this table. It is also incremented whenever an event is removed or the entire table is cleared. The number of events registered in this table over the lifetime of the table. If the underlying management system is restarted this count is reset. Use this node to determine table activity. This scalar object represents the subset of events that are Sensor events.
Status: current Access: read-only
OBJECT-TYPE    
  Counter32  

saHpiSensorEventActiveEntries 1.3.6.1.4.1.18568.2.1.1.3.1.11
This scalar object represents the subset of events that are Sensor Events.
Status: current Access: read-only
OBJECT-TYPE    
  Gauge32  

saHpiSensorEventTable 1.3.6.1.4.1.18568.2.1.1.3.1.12
Event table.
Status: current Access: not-accessible
OBJECT-TYPE    
  SEQUENCE OF  
    SaHpiSensorEventEntry

saHpiSensorEventEntry 1.3.6.1.4.1.18568.2.1.1.3.1.12.1
Sensor events.
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiSensorEventEntry  

saHpiSensorEventEntryId 1.3.6.1.4.1.18568.2.1.1.3.1.12.1.1
Arbitrary table index.
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiEntryId  

saHpiSensorEventTimestamp 1.3.6.1.4.1.18568.2.1.1.3.1.12.1.2
Refer to textual convention for SaHpiTime for more details. The value is Equal to TIME_UNSPECIFIED if time is not available; Absolute time if greater than TIME_MAX_RELATIVE, Relative time if less than or equal to TIME_MAX_RELATIVE.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiTime  

saHpiSensorEventType 1.3.6.1.4.1.18568.2.1.1.3.1.12.1.3
Refer to the textual convention for more details.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiSensorType  

saHpiSensorEventCategory 1.3.6.1.4.1.18568.2.1.1.3.1.12.1.4
Event category: See TEXTUAL-CONVENTION, SaHpiEventCategory.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiEventCategory  

saHpiSensorEventAssertion 1.3.6.1.4.1.18568.2.1.1.3.1.12.1.5
Sensor Events and Sensor Event States: Each Event State may be asserted or deasserted. The set of Event States a sensor may support is defined by the sensor's 'Event Category.' A particular sensor, however, does not have to support all the Event States defined for its event category. The specific Event States that a particular sensor supports are indicated in the 'Events' field in the sensor's RDR. A sensor is not required to support any Event States. If no Event States are supported by a sensor, the 'Events' field will be 0x0000. A sensor may not support any Event States that are not defined for its event category. Each Event State is independent, although in some event categories the meaning assigned to the Event States will imply that certain Event States will be mutually exclusive. For example, a sensor that uses the limit(6) event category should only have one of the two Event States, SAHPI_ES_LIMIT_NOT_EXCEEDED or SAHPI_ES_LIMIT_EXCEEDED asserted at any one time. Except where mutual exclusion is implied, however, sensors may have multiple Event States asserted simultaneously. For example, the event category threshold(2) uses six different event states to report the relationship between the value currently measured by the sensor and up to six different 'threshold' values. Each threshold is independently examined, and each Event State that represents a threshold that has been 'crossed' will be asserted. Threshold values must be configured so that 'Minor', 'Major' and 'Critical' thresholds are increasingly extreme readings, such that when a 'Major' threshold has been crossed, the corresponding 'Minor' threshold will also have been crossed, and thus both Event States will be asserted. When a sensor Event State is asserted or deasserted, an event may be generated by the resource. The generated event identifies the sensor and the event state being asserted or deasserted. The HPI implementation may assign event severity levels for each event state assertion or deassertion on an individual sensor basis.
Status: current Access: read-only
OBJECT-TYPE    
  TruthValue  

saHpiSensorEventState 1.3.6.1.4.1.18568.2.1.1.3.1.12.1.6
Refer to the textual convention for more details.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiEventState  

saHpiSensorEventOptionalData 1.3.6.1.4.1.18568.2.1.1.3.1.12.1.7
See textual convention aHpiOptionalData.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiOptionalData  

saHpiSensorEventTriggerReadingType 1.3.6.1.4.1.18568.2.1.1.3.1.12.1.8
Refer to the textual convention for more details.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiSensorReadingType  

saHpiSensorEventTriggerReading 1.3.6.1.4.1.18568.2.1.1.3.1.12.1.9
Refer to the textual convention for more details.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiSensorReadingValue  

saHpiSensorEventTriggerThresholdType 1.3.6.1.4.1.18568.2.1.1.3.1.12.1.10
Refer to the textual convention for more details.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiSensorReadingType  

saHpiSensorEventTriggerThreshold 1.3.6.1.4.1.18568.2.1.1.3.1.12.1.11
Refer to the textual convention for more details.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiSensorReadingValue  

saHpiSensorEventPreviousState 1.3.6.1.4.1.18568.2.1.1.3.1.12.1.12
Refer to the textual convention for more details.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiEventState  

saHpiSensorEventCurrentState 1.3.6.1.4.1.18568.2.1.1.3.1.12.1.13
Refer to SaHpiEventState textual convention for more details.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiEventState  

saHpiSensorEventOem 1.3.6.1.4.1.18568.2.1.1.3.1.12.1.14
Reserved for Oem use.
Status: current Access: read-only
OBJECT-TYPE    
  Unsigned32  

saHpiSensorEventSpecific 1.3.6.1.4.1.18568.2.1.1.3.1.12.1.15
Event Specific information.
Status: current Access: read-only
OBJECT-TYPE    
  Unsigned32  

saHpiSensorEnableChangeEventLifetimeChanges 1.3.6.1.4.1.18568.2.1.1.3.1.13
Use this value to determine table activity. It is incremented each time an event is registered in this table. It is also incremented whenever an event is removed or the entire table is cleared. The number of events registered in this table over the lifetime of the table. If the underlying management system is restarted this count is reset. Use this node to determine table activity. This scalar object represents the subset of events that are Sensor Enable ChangeEvents.
Status: current Access: read-only
OBJECT-TYPE    
  Counter32  

saHpiSensorEnableChangeEventActiveEntries 1.3.6.1.4.1.18568.2.1.1.3.1.14
This scalar object represents the subset of events that are Sensor Enable ChangeEvents.
Status: current Access: read-only
OBJECT-TYPE    
  Gauge32  

saHpiSensorEnableChangeEventTable 1.3.6.1.4.1.18568.2.1.1.3.1.15
Event table.
Status: current Access: not-accessible
OBJECT-TYPE    
  SEQUENCE OF  
    SaHpiSensorEnableChangeEventEntry

saHpiSensorEnableChangeEventEntry 1.3.6.1.4.1.18568.2.1.1.3.1.15.1
Sensor Enable Change events.
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiSensorEnableChangeEventEntry  

saHpiSensorEnableChangeEventEntryId 1.3.6.1.4.1.18568.2.1.1.3.1.15.1.1
Arbitrary table index.
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiEntryId  

saHpiSensorEnableChangeEventTimestamp 1.3.6.1.4.1.18568.2.1.1.3.1.15.1.2
Refer to textual convention for SaHpiTime for more details. The value is Equal to TIME_UNSPECIFIED if time is not available; Absolute time if greater than TIME_MAX_RELATIVE, Relative time if less than or equal to TIME_MAX_RELATIVE.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiTime  

saHpiSensorEnableChangeEventType 1.3.6.1.4.1.18568.2.1.1.3.1.15.1.3
Refer to the textual convention for more details.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiSensorType  

saHpiSensorEnableChangeEventCategory 1.3.6.1.4.1.18568.2.1.1.3.1.15.1.4
Refer to the textual convention for more details.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiEventCategory  

saHpiSensorEnableChangeEventEnabled 1.3.6.1.4.1.18568.2.1.1.3.1.15.1.5
Current sensor enable status.
Status: current Access: read-only
OBJECT-TYPE    
  TruthValue  

saHpiSensorEnableChangeEventEventsEnabled 1.3.6.1.4.1.18568.2.1.1.3.1.15.1.6
Current event enable status.
Status: current Access: read-only
OBJECT-TYPE    
  TruthValue  

saHpiSensorEnableChangeEventAssertEvents 1.3.6.1.4.1.18568.2.1.1.3.1.15.1.7
Refer to the textual convention for more details.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiEventState  

saHpiSensorEnableChangeEventDeassertEvents 1.3.6.1.4.1.18568.2.1.1.3.1.15.1.8
Refer to the textual convention for more details.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiEventState  

saHpiSensorEnableChangeEventOptionalData 1.3.6.1.4.1.18568.2.1.1.3.1.15.1.9
See textual convention SaHpiOptionalData.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiOptionalData  

saHpiSensorEnableChangeEventState 1.3.6.1.4.1.18568.2.1.1.3.1.15.1.10
Current set of asserted Event states.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiEventState  

saHpiHotSwapEventLifetimeChanges 1.3.6.1.4.1.18568.2.1.1.3.1.16
Use this value to determine table activity. It is incremented each time an event is registered in this table. It is also incremented whenever an event is removed or the entire table is cleared. The number of events registered in this table over the lifetime of the table. If the underlying management system is restarted this count is reset. Use this node to determine table activity. This scalar object represents the subset of events that are HotSwap Events.
Status: current Access: read-only
OBJECT-TYPE    
  Counter32  

saHpiHotSwapEventActiveEntries 1.3.6.1.4.1.18568.2.1.1.3.1.17
This scalar object represents the subset of events that are HotSwap Events.
Status: current Access: read-only
OBJECT-TYPE    
  Gauge32  

saHpiHotSwapEventTable 1.3.6.1.4.1.18568.2.1.1.3.1.18
Event table.
Status: current Access: not-accessible
OBJECT-TYPE    
  SEQUENCE OF  
    SaHpiHotSwapEventEntry

saHpiHotSwapEventEntry 1.3.6.1.4.1.18568.2.1.1.3.1.18.1
Hot Swap events.
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiHotSwapEventEntry  

saHpiHotSwapEventEntryId 1.3.6.1.4.1.18568.2.1.1.3.1.18.1.1
Arbitrary table index.
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiEntryId  

saHpiHotSwapEventTimestamp 1.3.6.1.4.1.18568.2.1.1.3.1.18.1.2
Refer to textual convention for SaHpiTime for more details. The value is Equal to TIME_UNSPECIFIED if time is not available; Absolute time if greater than TIME_MAX_RELATIVE, Relative time if less than or equal to TIME_MAX_RELATIVE.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiTime  

saHpiHotSwapEventState 1.3.6.1.4.1.18568.2.1.1.3.1.18.1.3
Refer to the textual convention for full details.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiHotSwapState  

saHpiHotSwapEventPreviousState 1.3.6.1.4.1.18568.2.1.1.3.1.18.1.4
Refer to the textual convention for full details.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiHotSwapState  

saHpiWatchdogEventLifetimeChanges 1.3.6.1.4.1.18568.2.1.1.3.1.19
Use this value to determine table activity. It is incremented each time an event is registered in this table. It is also incremented whenever an event is removed or the entire table is cleared. The number of events registered in this table over the lifetime of the table. If the underlying management system is restarted this count is reset. Use this node to determine table activity. This scalar object represents the subset of events that are Watchdog Events.
Status: current Access: read-only
OBJECT-TYPE    
  Counter32  

saHpiWatchdogEventActiveEntries 1.3.6.1.4.1.18568.2.1.1.3.1.20
This scalar object represents the subset of events that are Watchdog Events.
Status: current Access: read-only
OBJECT-TYPE    
  Gauge32  

saHpiWatchdogEventTable 1.3.6.1.4.1.18568.2.1.1.3.1.21
Event table.
Status: current Access: not-accessible
OBJECT-TYPE    
  SEQUENCE OF  
    SaHpiWatchdogEventEntry

saHpiWatchdogEventEntry 1.3.6.1.4.1.18568.2.1.1.3.1.21.1
Watchdog events.
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiWatchdogEventEntry  

saHpiWatchdogEventEntryId 1.3.6.1.4.1.18568.2.1.1.3.1.21.1.1
Arbitrary table index.
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiEntryId  

saHpiWatchdogEventTimestamp 1.3.6.1.4.1.18568.2.1.1.3.1.21.1.2
Refer to textual convention for SaHpiTime for more details. The value is Equal to TIME_UNSPECIFIED if time is not available; Absolute time if greater than TIME_MAX_RELATIVE, Relative time if less than or equal to TIME_MAX_RELATIVE.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiTime  

saHpiWatchdogEventAction 1.3.6.1.4.1.18568.2.1.1.3.1.21.1.3
These enumerations represent the possible actions to be taken upon watchdog timer timeout and the events that are generated for watchdog actions.
Status: current Access: read-only
OBJECT-TYPE    
  INTEGER undefined(0), noAction(1), reset(2), powerDown(3), powerCycle(4), timerInt(9)  

saHpiWatchdogEventPreTimerAction 1.3.6.1.4.1.18568.2.1.1.3.1.21.1.4
These enumerations represent the possible types of interrupts that may be triggered by a watchdog pre-timer event. The actual meaning of these operations may differ depending on the hardware architecture.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiWatchdogPreTimerAction  

saHpiWatchdogEventUse 1.3.6.1.4.1.18568.2.1.1.3.1.21.1.5
Watchdog Timer Use These enumerations represent the possible watchdog users that may have caused the watchdog to expire. For instance, if watchdog is being used during power on self test (POST), and it expires, the biosPost(3) expiration type will be set. Most specific uses for Watchdog timer by users of HPI should indicate smsOs(5) if the use is to provide an OS-healthy heartbeat, or oem(6) if it is used for some other purpose.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiWatchdogTimerUse  

saHpiSoftwareEventLifetimeChanges 1.3.6.1.4.1.18568.2.1.1.3.1.22
Use this value to determine table activity. It is incremented each time an event is registered in this table. It is also incremented whenever an event is removed or the entire table is cleared. The number of events registered in this table over the lifetime of the table. If the underlying management system is restarted this count is reset. Use this node to determine table activity. This scalar object represents the subset of events that are Software Events.
Status: current Access: read-only
OBJECT-TYPE    
  Counter32  

saHpiSoftwareEventActiveEntries 1.3.6.1.4.1.18568.2.1.1.3.1.23
This scalar object represents the subset of events that are Software Events.
Status: current Access: read-only
OBJECT-TYPE    
  Gauge32  

saHpiSoftwareEventTable 1.3.6.1.4.1.18568.2.1.1.3.1.24
Event table.
Status: current Access: not-accessible
OBJECT-TYPE    
  SEQUENCE OF  
    SaHpiSoftwareEventEntry

saHpiSoftwareEventEntry 1.3.6.1.4.1.18568.2.1.1.3.1.24.1
Software events.
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiSoftwareEventEntry  

saHpiSoftwareEventEntryId 1.3.6.1.4.1.18568.2.1.1.3.1.24.1.1
Arbitrary table index.
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiEntryId  

saHpiSoftwareEventTimestamp 1.3.6.1.4.1.18568.2.1.1.3.1.24.1.2
Refer to textual convention for SaHpiTime for more details. The value is Equal to TIME_UNSPECIFIED if time is not available; Absolute time if greater than TIME_MAX_RELATIVE, Relative time if less than or equal to TIME_MAX_RELATIVE.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiTime  

saHpiSoftwareEventManufacturerIdT 1.3.6.1.4.1.18568.2.1.1.3.1.24.1.3
Refer to the textual convention for more details.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiManufacturerId  

saHpiSoftwareEventType 1.3.6.1.4.1.18568.2.1.1.3.1.24.1.4
The following type defines the types of events that can be reported by the HPI software implementation. Audit events report a discrepancy in the audit process. Audits are typically performed by HA software to detect problems. Audits may look for such things as corrupted data stores, inconsistent RPT information, or improperly managed queues. Startup events report a failure to start-up properly, or inconsistencies in persisted data. Note: Enumerated values are increased by one value compared to SAI-HPI-B.01.01 spec.
Status: current Access: read-only
OBJECT-TYPE    
  INTEGER undefined(0), hpieAudit(1), hpieStartup(2), hpieOther(3)  

saHpiSoftwareEventTextType 1.3.6.1.4.1.18568.2.1.1.3.1.24.1.5
Refer to the textual convention for more details.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiTextType  

saHpiSoftwareEventTextLanguage 1.3.6.1.4.1.18568.2.1.1.3.1.24.1.6
Refer to the textual convention for more details.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiTextLanguage  

saHpiSoftwareEventText 1.3.6.1.4.1.18568.2.1.1.3.1.24.1.7
Refer to the textual convention for more details.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiText  

saHpiOemEventLifetimeChanges 1.3.6.1.4.1.18568.2.1.1.3.1.25
Use this value to determine table activity. It is incremented each time an event is registered in this table. It is also incremented whenever an event is removed or the entire table is cleared. The number of events registered in this table over the lifetime of the table. If the underlying management system is restarted this count is reset. Use this node to determine table activity. This scalar object represents the subset of events that are oem Events.
Status: current Access: read-only
OBJECT-TYPE    
  Counter32  

saHpiOemEventActiveEntries 1.3.6.1.4.1.18568.2.1.1.3.1.26
This scalar object represents the subset of events that are oem Events.
Status: current Access: read-only
OBJECT-TYPE    
  Gauge32  

saHpiOemEventTable 1.3.6.1.4.1.18568.2.1.1.3.1.27
Event table.
Status: current Access: not-accessible
OBJECT-TYPE    
  SEQUENCE OF  
    SaHpiOemEventEntry

saHpiOemEventEntry 1.3.6.1.4.1.18568.2.1.1.3.1.27.1
Oem events.
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiOemEventEntry  

saHpiOemEventEntryId 1.3.6.1.4.1.18568.2.1.1.3.1.27.1.1
Arbitrary table index.
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiEntryId  

saHpiOemEventTimestamp 1.3.6.1.4.1.18568.2.1.1.3.1.27.1.2
Refer to textual convention for SaHpiTime for more details. The value is Equal to TIME_UNSPECIFIED if time is not available; Absolute time if greater than TIME_MAX_RELATIVE, Relative time if less than or equal to TIME_MAX_RELATIVE.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiTime  

saHpiOemEventManufacturerIdT 1.3.6.1.4.1.18568.2.1.1.3.1.27.1.3
Refer to the textual convention for more details.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiManufacturerId  

saHpiOemEventTextType 1.3.6.1.4.1.18568.2.1.1.3.1.27.1.4
Refer to the textual convention for more details.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiTextType  

saHpiOemEventTextLanguage 1.3.6.1.4.1.18568.2.1.1.3.1.27.1.5
Refer to the textual convention for more details.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiTextLanguage  

saHpiOemEventText 1.3.6.1.4.1.18568.2.1.1.3.1.27.1.6
Refer to the textual convention for more details.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiText  

saHpiUserEventLifetimeChanges 1.3.6.1.4.1.18568.2.1.1.3.1.28
Use this value to determine table activity. It is incremented each time an event is registered in this table. It is also incremented whenever an event is removed or the entire table is cleared. The number of events registered in this table over the lifetime of the table. If the underlying management system is restarted this count is reset. Use this node to determine table activity. This scalar object represents the subset of events that are User Events.
Status: current Access: read-only
OBJECT-TYPE    
  Counter32  

saHpiUserEventActiveEntries 1.3.6.1.4.1.18568.2.1.1.3.1.29
This scalar object represents the subset of events that are User Events.
Status: current Access: read-only
OBJECT-TYPE    
  Gauge32  

saHpiUserEventTable 1.3.6.1.4.1.18568.2.1.1.3.1.30
Event table.
Status: current Access: not-accessible
OBJECT-TYPE    
  SEQUENCE OF  
    SaHpiUserEventEntry

saHpiUserEventEntry 1.3.6.1.4.1.18568.2.1.1.3.1.30.1
User events.
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiUserEventEntry  

saHpiUserEventEntryId 1.3.6.1.4.1.18568.2.1.1.3.1.30.1.1
Arbitrary table index.
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiEntryId  

saHpiUserEventTimestamp 1.3.6.1.4.1.18568.2.1.1.3.1.30.1.2
Refer to textual convention for SaHpiTime for more details. The value is Equal to TIME_UNSPECIFIED if time is not available; Absolute time if greater than TIME_MAX_RELATIVE, Relative time if less than or equal to TIME_MAX_RELATIVE.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiTime  

saHpiUserEventTextType 1.3.6.1.4.1.18568.2.1.1.3.1.30.1.3
Refer to SaHpiTextType for more details.
Status: current Access: read-create
OBJECT-TYPE    
  SaHpiTextType  

saHpiUserEventTextLanguage 1.3.6.1.4.1.18568.2.1.1.3.1.30.1.4
Refer to saHpiTextLanguage for more details.
Status: current Access: read-create
OBJECT-TYPE    
  SaHpiTextLanguage  

saHpiUserEventText 1.3.6.1.4.1.18568.2.1.1.3.1.30.1.5
Refer to saHpiText for more details.
Status: current Access: read-create
OBJECT-TYPE    
  SaHpiText  

saHpiUserEventRowStatus 1.3.6.1.4.1.18568.2.1.1.3.1.30.1.6
This columnar object contains the status of the row and also perform add and delete operations. The status column uses three defined values: - `active(1)', which indicates that the conceptual row is available for use by the managed device; - `createAndWait(5)', which is supplied by a management station wishing to create a new instance of a conceptual row (but not make it available for use by the managed device). This function is used to add a User Alarm to this User Event Table and also to the to the Domain Alarm Table; The effect of creating a new row will also be reflected in the DAT - with a new row there. - `destroy(6)', which is supplied by a management station wishing to delete all of the instances associated with an existing conceptual row. This function allows the HPI MIB User to delete an User Event. Note a deletion of a row that is already in the 'active(1)' state is prohibited. HPI does not support deleting existing events. A row can only be deleted if its RowStatus value is 'createAndGo(4)'. Developers Note: Avoid creating duplicate entries here! 1. a manager would add an event to the User Event Table, 2. the Sub-agent would see this and call saHpiEventAdd(), 3. the event would go thru the HPI system and would be added to the HPI event queue, 4. the sub-agent would read the event queue as part of its normal operations, and when it sees this event it would know to ignore it, since it is already in the table (because the manager added it to the table to start this whole process).
Status: current Access: read-create
OBJECT-TYPE    
  RowStatus  

saHpiAnnouncementActiveEntries 1.3.6.1.4.1.18568.2.1.1.3.1.31
The number of announcements present on this system.
Status: current Access: read-only
OBJECT-TYPE    
  Gauge32  

saHpiAnnouncementTable 1.3.6.1.4.1.18568.2.1.1.3.1.32
Table of Announcements.
Status: current Access: not-accessible
OBJECT-TYPE    
  SEQUENCE OF  
    SaHpiAnnouncementEntry

saHpiAnnouncementEntry 1.3.6.1.4.1.18568.2.1.1.3.1.32.1
The table of announcements is used to provide a common interface to varied mechanisms for announcing conditions. Each announcement in an Annunciator's current set contains a severity level, details describing the specific condition that is being reported, an Acknowledged flag, a timestamp indicating when the announcement was added to the set, and an EntryId that uniquely identifies the particular status item within the set. EntryIds are assigned to announcements as they are added to the set as well as a Timestamp. After an announcement is deleted from the current set, its EntryId may be reused for a newly added announcement as long as the new announcement will have a different timestamp than any previously deleted announcement using the same EntryId. Thus, the EntryId and Timestamp together will uniquely identify any announcement, which was ever present in the Annunciator's set. The actual meaning of the Acknowledged flag is arbitrary, and the actions taken by the platform when announcements are flagged as 'acknowledged' or 'unacknowledged' are implementation-specific. The intended use of the flag is to indicate whether a particular announcement in the current set has been recognized by whomever or whatever is inspecting the LEDs, displays, etc., that are being driven by the Annunciator management instrument. Thus, when announcements are added to the current set, generally the flag should be set to indicate that the condition is 'unacknowledged'. Later, either as the result of an HPI SNMP Manager function call, or due to some implementation-dependent action (such as pressing an 'acknowledge' button on a front-panel display), the flag can be changed to indicate that the announcement is now 'acknowledged.' The ability to acknowledge announcements is not controlled by the Annunciator 'mode' setting (Auto, User, or Shared). Any announcement may be acknowledged by the HPI implementation, or via the saHpiAnnunciatorAcknowledge() function call, regardless of the current mode setting for the Annunciator. Over time, announcements are added to and deleted from an Annunciator`s current set of announcements. This may be done automatically by the HPI implementation to reflect platform fault conditions, or by the HPI SNMP Manager via the HPI interface. When announcements are added or deleted automatically by the HPI implementation, it is implementation-specific which announcements are added or removed.
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiAnnouncementEntry  

saHpiAnnouncementEntryId 1.3.6.1.4.1.18568.2.1.1.3.1.32.1.1
Entry ID for record Table Related Type Definitions SAHPI_FIRST_ENTRY 0x00000000 SAHPI_LAST_ENTRY 0xFFFFFFFF
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiEntryId  

saHpiAnnouncementAnnunciatorNum 1.3.6.1.4.1.18568.2.1.1.3.1.32.1.2
Annunciator number for the addressed Annunciator.
Status: current Access: read-create
OBJECT-TYPE    
  SaHpiInstrumentId  

saHpiAnnouncementTimestamp 1.3.6.1.4.1.18568.2.1.1.3.1.32.1.3
Time when announcement added to set.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiTime  

saHpiAnnouncementAddedByUser 1.3.6.1.4.1.18568.2.1.1.3.1.32.1.4
True if added to set by HPI SNMP Manager, False if added automatically by HPI implementation.
Status: current Access: read-only
OBJECT-TYPE    
  TruthValue  

saHpiAnnouncementSeverity 1.3.6.1.4.1.18568.2.1.1.3.1.32.1.5
Only used with DAT and Annunciator functions. This is not a valid severity for events or alarms.
Status: current Access: read-create
OBJECT-TYPE    
  SaHpiSeverity  

saHpiAnnouncementAcknowledged 1.3.6.1.4.1.18568.2.1.1.3.1.32.1.6
Acknowledged flag.Use this columnar object to acknowledge a specific Announcement.
Status: current Access: read-create
OBJECT-TYPE    
  TruthValue  

saHpiAnnouncementAckBySeverity 1.3.6.1.4.1.18568.2.1.1.3.1.32.1.7
Use this columnar object to acknowledge all Announcements of a particular severity.
Status: current Access: read-create
OBJECT-TYPE    
  SaHpiSeverity  

saHpiAnnouncementStatusCondType 1.3.6.1.4.1.18568.2.1.1.3.1.32.1.8
Status Condition Type.
Status: current Access: read-create
OBJECT-TYPE    
  SaHpiStatusCondType  

saHpiAnnouncementEntityPath 1.3.6.1.4.1.18568.2.1.1.3.1.32.1.9
See Textual-Convention for details.
Status: current Access: read-create
OBJECT-TYPE    
  SaHpiEntityPath  

saHpiAnnouncementSensorNum 1.3.6.1.4.1.18568.2.1.1.3.1.32.1.10
Sensor associated with status Only valid if Type is SAHPI_STATUS_COND_TYPE_SENSOR.
Status: current Access: read-create
OBJECT-TYPE    
  Unsigned32  

saHpiAnnouncementEventState 1.3.6.1.4.1.18568.2.1.1.3.1.32.1.11
Sensor event state. Only valid if Type is SAHPI_STATUS_COND_TYPE_SENSOR..
Status: current Access: read-create
OBJECT-TYPE    
  SaHpiEventState  

saHpiAnnouncementName 1.3.6.1.4.1.18568.2.1.1.3.1.32.1.12
AIS compatible identifier associated with Status condition.
Status: current Access: read-create
OBJECT-TYPE    
  OCTET STRING Size(0..255)  

saHpiAnnouncementMid 1.3.6.1.4.1.18568.2.1.1.3.1.32.1.13
Manufacturer Id associated with status condition, required when type is SAHPI_STATUS_COND_TYPE_OEM.
Status: current Access: read-create
OBJECT-TYPE    
  SaHpiManufacturerId  

saHpiAnnouncementTextType 1.3.6.1.4.1.18568.2.1.1.3.1.32.1.14
Field Data. See Definition for SaHpiTextType for more details.
Status: current Access: read-create
OBJECT-TYPE    
  SaHpiTextType  

saHpiAnnouncementTextLanguage 1.3.6.1.4.1.18568.2.1.1.3.1.32.1.15
Field Data. See Definition for SaHpiTextLanguage for more details.
Status: current Access: read-create
OBJECT-TYPE    
  SaHpiTextLanguage  

saHpiAnnouncementText 1.3.6.1.4.1.18568.2.1.1.3.1.32.1.16
Field Data. The type of date is specified by saHpiResourceTagTextType and saHpiResourceTagLanguage.
Status: current Access: read-create
OBJECT-TYPE    
  SaHpiText  

saHpiAnnouncementDelete 1.3.6.1.4.1.18568.2.1.1.3.1.32.1.17
This function allows the HPI SNMP Manager to delete a single announcement. Announcements may be deleted individually by specifying a specific index and setting this columnar object to destroy(6).
Status: current Access: read-create
OBJECT-TYPE    
  RowStatus  

saHpiEventLogInfoTable 1.3.6.1.4.1.18568.2.1.1.3.2.1
A table definining Event Log Information records.
Status: current Access: not-accessible
OBJECT-TYPE    
  SEQUENCE OF  
    SaHpiEventLogInfoEntry

saHpiEventLogInfoEntry 1.3.6.1.4.1.18568.2.1.1.3.2.1.1
Each resource has a Event Log Information record, which contains per resource pertinent logging information.
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiEventLogInfoEntry  

saHpiEventLogInfoEntries 1.3.6.1.4.1.18568.2.1.1.3.2.1.1.1
The number of active entries contained in the log.
Status: current Access: read-only
OBJECT-TYPE    
  Unsigned32  

saHpiEventLogInfoSize 1.3.6.1.4.1.18568.2.1.1.3.2.1.1.2
The total number of entries the log is able to hold.
Status: current Access: read-only
OBJECT-TYPE    
  Unsigned32  

saHpiEventLogInfoUserEventMaxSize 1.3.6.1.4.1.18568.2.1.1.3.2.1.1.3
The UserEventMaxSize entry indicates the maximum size of the text buffer data field in an HPI SNMP Manager event that is supported by the Event Log implementation. If the implementation does not enforce a more restrictive data length, it should be set to SAHPI_MAX_TEXT_BUFFER_LENGTH (255).
Status: current Access: read-only
OBJECT-TYPE    
  Unsigned32 0..255  

saHpiEventLogInfoUpdateTimestamp 1.3.6.1.4.1.18568.2.1.1.3.2.1.1.4
The UpdateTimestamp entry denotes the time of the last update to the Event Log. Refer to SaHpiTime for full description.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiTime  

saHpiEventLogInfoTime 1.3.6.1.4.1.18568.2.1.1.3.2.1.1.5
The Time entry denotes the Event Log's idea of the current time; i.e the timestamp that would be placed on an entry if it was added now. Remarks: Entries placed in the Event Log after this function is called will have Event Log timestamps (i.e., the Timestamp field in the SaHpiEventLogEntryT structure) based on the new time. Setting the clock does not affect existing Event Log entries. If the time is set to a relative time, subsequent entries placed in the Event Log will have an Event Log timestamp expressed as a relative time; if the time is set to an absolute time, subsequent entries will have an Event Log timestamp expressed as an absolute time. This function only sets the Event Log time clock and does not have any direct bearing on the timestamps placed on events (i.e., the Timestamp field in the SaHpiEventT structure), or the timestamps placed in the domain RPT info record. Setting the clocks used to generate timestamps other than Event Log timestamps is implementation-dependent, and should be documented by the HPI implementation provider. Some underlying implementations may not be able to handle the same relative and absolute time ranges, as those defined in HPI. Such limitations will be documented in implementation-specific documentation. When a time value is set in a region that is not supported by the implementation, an error code of SNMP_GENERROR will be returned. Refer to SaHpiTime for full description.
Status: current Access: read-create
OBJECT-TYPE    
  SaHpiTime  

saHpiEventLogInfoIsEnabled 1.3.6.1.4.1.18568.2.1.1.3.2.1.1.6
The Enabled entry indicates whether the log is enabled. If the event log is 'disabled' no events generated within the HPI implementation will be added to the event log. User events may still be added to the event log. When the event log is 'enabled' events may be automatically added to the event log as they are generated in a resource or a domain, however, it is implementation-specific which events are automatically added to any event log.
Status: current Access: read-only
OBJECT-TYPE    
  TruthValue  

saHpiEventLogInfoOverflowFlag 1.3.6.1.4.1.18568.2.1.1.3.2.1.1.7
The OverflowFlag entry indicates the log has overflowed. Events have been dropped or overwritten due to a table overflow.
Status: current Access: read-only
OBJECT-TYPE    
  TruthValue  

saHpiEventLogInfoOverflowResetable 1.3.6.1.4.1.18568.2.1.1.3.2.1.1.8
Indicates if the the overflow falg can be cleared by calling saHpiEventLogInfoOverflowReset.
Status: current Access: read-only
OBJECT-TYPE    
  TruthValue  

saHpiEventLogInfoOverflowAction 1.3.6.1.4.1.18568.2.1.1.3.2.1.1.9
The OverflowAction entry indicates the behavior of the event log when an overflow occurs. drop(1) New entries are dropped when log is full overwrite(2) Event Log overwrites existing entries when Event Log is full
Status: current Access: read-only
OBJECT-TYPE    
  INTEGER undefined(0), drop(1), overwrite(2)  

saHpiEventLogInfoOverflowReset 1.3.6.1.4.1.18568.2.1.1.3.2.1.1.10
This function resets the OverflowFlag in the Event Log info record of the specified Event Log.
Status: current Access: read-create
OBJECT-TYPE    
  INTEGER undefined(0), resetOverflowFlag(1)  

saHpiEventLogClear 1.3.6.1.4.1.18568.2.1.1.3.2.1.1.11
This function erases the contents of the specified Event Log. TRUE clears the event log of the resource specified. FALSE has no effect. NOTE: The OverflowFlag field in the Event Log info record will be reset when this function is called.
Status: current Access: read-create
OBJECT-TYPE    
  TruthValue  

saHpiEventLogState 1.3.6.1.4.1.18568.2.1.1.3.2.1.1.12
When reading this value, true indicates that the Event Log is enabled; False indicates that it is disabled. When writing this value, true indicates that the Event Log is to be enabled; False indicates that it is to be disabled. This node enables an HPI SNMP Manager to set/get the Event Log state. If the Event Log is disabled no events generated within the HPI implementation will be added to the Event Log. Events may still be added to the Event Log. When the Event Log is enabled events may be automatically added to the Event Log as they are generated in a resource or a domain, however, it is implementation-specific which events are automatically added to any Event Log.
Status: current Access: read-create
OBJECT-TYPE    
  TruthValue  

saHpiEventLogTable 1.3.6.1.4.1.18568.2.1.1.3.2.2
A table definining Event Log records.
Status: current Access: not-accessible
OBJECT-TYPE    
  SEQUENCE OF  
    SaHpiEventLogEntry

saHpiEventLogEntry 1.3.6.1.4.1.18568.2.1.1.3.2.2.1
This section defines the types associated with the SEL.
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiEventLogEntry  

saHpiEventLogIndex 1.3.6.1.4.1.18568.2.1.1.3.2.2.1.1
Entry ID for record Reserved values for event log entry IDs OLDEST_ENTRY 0x00000000 NEWEST_ENTRY 0xFFFFFFFF NO_MORE_ENTRIES 0xFFFFFFFE
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiEntryId  

saHpiEventLogType 1.3.6.1.4.1.18568.2.1.1.3.2.2.1.2
The type of event. Note: The enumerated named have +1 added as opposed to the SA HPI spec for the same constants.
Status: current Access: read-only
OBJECT-TYPE    
  INTEGER undefined(0), resource(1), domain(2), sensor(3), sensorEnableChange(4), hotswap(5), watchdog(6), hpiSoftware(7), oem(8), user(9)  

saHpiEventLogAddedTimestamp 1.3.6.1.4.1.18568.2.1.1.3.2.2.1.3
Refer to SaHpiTime for full description.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiTime  

saHpiEventLogRowPointer 1.3.6.1.4.1.18568.2.1.1.3.2.2.1.4
Pointer to the event.
Status: current Access: read-only
OBJECT-TYPE    
  RowPointer  

saHpiResourceEventLogLifetimeChanges 1.3.6.1.4.1.18568.2.1.1.3.2.3
Use this value to determine table activity. It is incremented each time an event is registered in this table. It is also incremented whenever an event is removed or the entire table is cleared. The number of events registered in this table over the lifetime of the table. If the underlying management system is restarted this count is reset. Use this node to determine table activity. This scalar object represents the subset of events that are Resource Events.
Status: current Access: read-only
OBJECT-TYPE    
  Counter32  

saHpiResourceEventLogActiveEntries 1.3.6.1.4.1.18568.2.1.1.3.2.4
This scalar object represents the subset of events that are Resource Events.
Status: current Access: read-only
OBJECT-TYPE    
  Gauge32  

saHpiResourceEventLogTable 1.3.6.1.4.1.18568.2.1.1.3.2.5
Event table.
Status: current Access: not-accessible
OBJECT-TYPE    
  SEQUENCE OF  
    SaHpiResourceEventLogEntry

saHpiResourceEventLogEntry 1.3.6.1.4.1.18568.2.1.1.3.2.5.1
Resource events.
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiResourceEventLogEntry  

saHpiResourceEventLogEntryId 1.3.6.1.4.1.18568.2.1.1.3.2.5.1.1
Table Index.
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiEntryId  

saHpiResourceEventLogTimestamp 1.3.6.1.4.1.18568.2.1.1.3.2.5.1.2
Refer to textual convention for SaHpiTime for more details. The value is Equal to TIME_UNSPECIFIED if time is not available; Absolute time if greater than TIME_MAX_RELATIVE, Relative time if less than or equal to TIME_MAX_RELATIVE.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiTime  

saHpiResourceEventLogType 1.3.6.1.4.1.18568.2.1.1.3.2.5.1.3
Resource events are sent to indicate the failure or subsequent restoration of a resource. Resource events can also be used to announce the addition of a non-FRU resource to the RPT table. Note: Enumerated values are increased by one value compared to SAI-HPI-B spec.
Status: current Access: read-only
OBJECT-TYPE    
  INTEGER undefined(0), resourceFailure(1), resourceRestored(2), resourceAdded(3)  

saHpiDomainEventLogLifetimeChanges 1.3.6.1.4.1.18568.2.1.1.3.2.6
Use this value to determine table activity. It is incremented each time an event is registered in this table. It is also incremented whenever an event is removed or the entire table is cleared. The number of events registered in this table over the lifetime of the table. If the underlying management system is restarted this count is reset. Use this node to determine table activity. This scalar object represents the subset of events that are Domain events.
Status: current Access: read-only
OBJECT-TYPE    
  Counter32  

saHpiDomainEventLogActiveEntries 1.3.6.1.4.1.18568.2.1.1.3.2.7
This scalar object represents the subset of events that are Domain events.
Status: current Access: read-only
OBJECT-TYPE    
  Gauge32  

saHpiDomainEventLogTable 1.3.6.1.4.1.18568.2.1.1.3.2.8
Event table.
Status: current Access: not-accessible
OBJECT-TYPE    
  SEQUENCE OF  
    SaHpiDomainEventLogEntry

saHpiDomainEventLogEntry 1.3.6.1.4.1.18568.2.1.1.3.2.8.1
Domain events.
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiDomainEventLogEntry  

saHpiDomainEventLogEntryId 1.3.6.1.4.1.18568.2.1.1.3.2.8.1.1
This columnar object is an index for Domain Events in the table.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiEntryId  

saHpiDomainEventLogTimestamp 1.3.6.1.4.1.18568.2.1.1.3.2.8.1.2
Refer to textual convention for SaHpiTime for more details. The value is Equal to TIME_UNSPECIFIED if time is not available; Absolute time if greater than TIME_MAX_RELATIVE, Relative time if less than or equal to TIME_MAX_RELATIVE.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiTime  

saHpiDomainEventLogType 1.3.6.1.4.1.18568.2.1.1.3.2.8.1.3
Domain events are used to announce the addition of domain references and the removal of domain references to the DRT.
Status: current Access: read-only
OBJECT-TYPE    
  INTEGER undefined(0), domainRefAdded(1), domainRefRemoved(2)  

saHpiSensorEventLogLifetimeChanges 1.3.6.1.4.1.18568.2.1.1.3.2.9
Use this value to determine table activity. It is incremented each time an event is registered in this table. It is also incremented whenever an event is removed or the entire table is cleared. The number of events registered in this table over the lifetime of the table. If the underlying management system is restarted this count is reset. Use this node to determine table activity. This scalar object represents the subset of events that are Sensor events.
Status: current Access: read-only
OBJECT-TYPE    
  Counter32  

saHpiSensorEventLogActiveEntries 1.3.6.1.4.1.18568.2.1.1.3.2.10
This scalar object represents the subset of events that are Sensor Events.
Status: current Access: read-only
OBJECT-TYPE    
  Gauge32  

saHpiSensorEventLogTable 1.3.6.1.4.1.18568.2.1.1.3.2.11
Event table.
Status: current Access: not-accessible
OBJECT-TYPE    
  SEQUENCE OF  
    SaHpiSensorEventLogEntry

saHpiSensorEventLogEntry 1.3.6.1.4.1.18568.2.1.1.3.2.11.1
Sensor events.
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiSensorEventLogEntry  

saHpiSensorEventLogTimestamp 1.3.6.1.4.1.18568.2.1.1.3.2.11.1.1
Refer to textual convention for SaHpiTime for more details. The value is Equal to TIME_UNSPECIFIED if time is not available; Absolute time if greater than TIME_MAX_RELATIVE, Relative time if less than or equal to TIME_MAX_RELATIVE.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiTime  

saHpiSensorEventLogType 1.3.6.1.4.1.18568.2.1.1.3.2.11.1.2
Refer to the textual convention for more details.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiSensorType  

saHpiSensorEventLogCategory 1.3.6.1.4.1.18568.2.1.1.3.2.11.1.3
Event category: See TEXTUAL-CONVENTION, SaHpiEventCategory.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiEventCategory  

saHpiSensorEventLogAssertion 1.3.6.1.4.1.18568.2.1.1.3.2.11.1.4
Sensor Events and Sensor Event States: Each Event State may be asserted or deasserted. The set of Event States a sensor may support is defined by the sensor's 'Event Category.' A particular sensor, however, does not have to support all the Event States defined for its event category. The specific Event States that a particular sensor supports are indicated in the 'Events' field in the sensor's RDR. A sensor is not required to support any Event States. If no Event States are supported by a sensor, the 'Events' field will be 0x0000. A sensor may not support any Event States that are not defined for its event category. Each Event State is independent, although in some event categories the meaning assigned to the Event States will imply that certain Event States will be mutually exclusive. For example, a sensor that uses the limit(6) event category should only have one of the two Event States, SAHPI_ES_LIMIT_NOT_EXCEEDED or SAHPI_ES_LIMIT_EXCEEDED asserted at any one time. Except where mutual exclusion is implied, however, sensors may have multiple Event States asserted simultaneously. For example, the event category threshold(2) uses six different event states to report the relationship between the value currently measured by the sensor and up to six different 'threshold' values. Each threshold is independently examined, and each Event State that represents a threshold that has been 'crossed' will be asserted. Threshold values must be configured so that 'Minor', 'Major' and 'Critical' thresholds are increasingly extreme readings, such that when a 'Major' threshold has been crossed, the corresponding 'Minor' threshold will also have been crossed, and thus both Event States will be asserted. When a sensor Event State is asserted or deasserted, an event may be generated by the resource. The generated event identifies the sensor and the event state being asserted or deasserted. The HPI implementation may assign event severity levels for each event state assertion or deassertion on an individual sensor basis.
Status: current Access: read-only
OBJECT-TYPE    
  TruthValue  

saHpiSensorEventLogState 1.3.6.1.4.1.18568.2.1.1.3.2.11.1.5
Refer to the textual convention for more details.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiEventState  

saHpiSensorEventLogOptionalData 1.3.6.1.4.1.18568.2.1.1.3.2.11.1.6
See textual convention aHpiOptionalData.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiOptionalData  

saHpiSensorEventLogTriggerReadingType 1.3.6.1.4.1.18568.2.1.1.3.2.11.1.7
Refer to the textual convention for more details.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiSensorReadingType  

saHpiSensorEventLogTriggerReading 1.3.6.1.4.1.18568.2.1.1.3.2.11.1.8
Refer to the textual convention for more details.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiSensorReadingValue  

saHpiSensorEventLogTriggerThresholdType 1.3.6.1.4.1.18568.2.1.1.3.2.11.1.9
Refer to the textual convention for more details.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiSensorReadingType  

saHpiSensorEventLogTriggerThreshold 1.3.6.1.4.1.18568.2.1.1.3.2.11.1.10
Refer to the textual convention for more details.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiSensorReadingValue  

saHpiSensorEventLogPreviousState 1.3.6.1.4.1.18568.2.1.1.3.2.11.1.11
Refer to the textual convention for more details.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiEventState  

saHpiSensorEventLogCurrentState 1.3.6.1.4.1.18568.2.1.1.3.2.11.1.12
Refer to SaHpiEventState textual convention for more details.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiEventState  

saHpiSensorEventLogOem 1.3.6.1.4.1.18568.2.1.1.3.2.11.1.13
Reserved for Oem use.
Status: current Access: read-only
OBJECT-TYPE    
  Unsigned32  

saHpiSensorEventLogSpecific 1.3.6.1.4.1.18568.2.1.1.3.2.11.1.14
Event log specific data.
Status: current Access: read-only
OBJECT-TYPE    
  Unsigned32  

saHpiSensorEnableChangeEventLogLifetimeChanges 1.3.6.1.4.1.18568.2.1.1.3.2.12
Use this value to determine table activity. It is incremented each time an event is registered in this table. It is also incremented whenever an event is removed or the entire table is cleared. The number of events registered in this table over the lifetime of the table. If the underlying management system is restarted this count is reset. Use this node to determine table activity. This scalar object represents the subset of events that are Sensor Enable ChangeEvents.
Status: current Access: read-only
OBJECT-TYPE    
  Counter32  

saHpiSensorEnableChangeEventLogActiveEntries 1.3.6.1.4.1.18568.2.1.1.3.2.13
This scalar object represents the subset of events that are Sensor Enable ChangeEvents.
Status: current Access: read-only
OBJECT-TYPE    
  Gauge32  

saHpiSensorEnableChangeEventLogTable 1.3.6.1.4.1.18568.2.1.1.3.2.14
Event table.
Status: current Access: not-accessible
OBJECT-TYPE    
  SEQUENCE OF  
    SaHpiSensorEnableChangeEventLogEntry

saHpiSensorEnableChangeEventLogEntry 1.3.6.1.4.1.18568.2.1.1.3.2.14.1
Sensor Enable Change events.
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiSensorEnableChangeEventLogEntry  

saHpiSensorEnableChangeEventLogTimestamp 1.3.6.1.4.1.18568.2.1.1.3.2.14.1.1
Refer to textual convention for SaHpiTime for more details. The value is Equal to TIME_UNSPECIFIED if time is not available; Absolute time if greater than TIME_MAX_RELATIVE, Relative time if less than or equal to TIME_MAX_RELATIVE.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiTime  

saHpiSensorEnableChangeEventLogType 1.3.6.1.4.1.18568.2.1.1.3.2.14.1.2
Refer to the textual convention for more details.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiSensorType  

saHpiSensorEnableChangeEventLogCategory 1.3.6.1.4.1.18568.2.1.1.3.2.14.1.3
Refer to the textual convention for more details.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiEventCategory  

saHpiSensorEnableChangeEventLogEnabled 1.3.6.1.4.1.18568.2.1.1.3.2.14.1.4
Current sensor enable status.
Status: current Access: read-only
OBJECT-TYPE    
  TruthValue  

saHpiSensorEnableChangeEventLogEventsEnabled 1.3.6.1.4.1.18568.2.1.1.3.2.14.1.5
Current event enable status.
Status: current Access: read-only
OBJECT-TYPE    
  TruthValue  

saHpiSensorEnableChangeEventLogAssertEvents 1.3.6.1.4.1.18568.2.1.1.3.2.14.1.6
Refer to the textual convention for more details.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiEventState  

saHpiSensorEnableChangeEventLogDeassertEvents 1.3.6.1.4.1.18568.2.1.1.3.2.14.1.7
Refer to the textual convention for more details.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiEventState  

saHpiSensorEnableChangeEventLogOptionalData 1.3.6.1.4.1.18568.2.1.1.3.2.14.1.8
See textual convention SaHpiOptionalData.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiOptionalData  

saHpiSensorEnableChangeEventLogState 1.3.6.1.4.1.18568.2.1.1.3.2.14.1.9
Current set of asserted Event states.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiEventState  

saHpiHotSwapEventLogLifetimeChanges 1.3.6.1.4.1.18568.2.1.1.3.2.15
Use this value to determine table activity. It is incremented each time an event is registered in this table. It is also incremented whenever an event is removed or the entire table is cleared. The number of events registered in this table over the lifetime of the table. If the underlying management system is restarted this count is reset. Use this node to determine table activity. This scalar object represents the subset of events that are HotSwap Events.
Status: current Access: read-only
OBJECT-TYPE    
  Counter32  

saHpiHotSwapEventLogActiveEntries 1.3.6.1.4.1.18568.2.1.1.3.2.16
This scalar object represents the subset of events that are HotSwap Events.
Status: current Access: read-only
OBJECT-TYPE    
  Gauge32  

saHpiHotSwapEventLogTable 1.3.6.1.4.1.18568.2.1.1.3.2.17
Event table.
Status: current Access: not-accessible
OBJECT-TYPE    
  SEQUENCE OF  
    SaHpiHotSwapEventLogEntry

saHpiHotSwapEventLogEntry 1.3.6.1.4.1.18568.2.1.1.3.2.17.1
Hot Swap events.
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiHotSwapEventLogEntry  

saHpiHotSwapEventLogTimestamp 1.3.6.1.4.1.18568.2.1.1.3.2.17.1.1
Refer to textual convention for SaHpiTime for more details. The value is Equal to TIME_UNSPECIFIED if time is not available; Absolute time if greater than TIME_MAX_RELATIVE, Relative time if less than or equal to TIME_MAX_RELATIVE.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiTime  

saHpiHotSwapEventLogState 1.3.6.1.4.1.18568.2.1.1.3.2.17.1.2
Refer to the textual convention for full details.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiHotSwapState  

saHpiHotSwapEventLogPreviousState 1.3.6.1.4.1.18568.2.1.1.3.2.17.1.3
Refer to the textual convention for full details.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiHotSwapState  

saHpiWatchdogEventLogLifetimeChanges 1.3.6.1.4.1.18568.2.1.1.3.2.18
Use this value to determine table activity. It is incremented each time an event is registered in this table. It is also incremented whenever an event is removed or the entire table is cleared. The number of events registered in this table over the lifetime of the table. If the underlying management system is restarted this count is reset. Use this node to determine table activity. This scalar object represents the subset of events that are Watchdog Events.
Status: current Access: read-only
OBJECT-TYPE    
  Counter32  

saHpiWatchdogEventLogActiveEntries 1.3.6.1.4.1.18568.2.1.1.3.2.19
This scalar object represents the subset of events that are Watchdog Events.
Status: current Access: read-only
OBJECT-TYPE    
  Gauge32  

saHpiWatchdogEventLogTable 1.3.6.1.4.1.18568.2.1.1.3.2.20
Event table.
Status: current Access: not-accessible
OBJECT-TYPE    
  SEQUENCE OF  
    SaHpiWatchdogEventLogEntry

saHpiWatchdogEventLogEntry 1.3.6.1.4.1.18568.2.1.1.3.2.20.1
Watchdog events.
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiWatchdogEventLogEntry  

saHpiWatchdogEventLogTimestamp 1.3.6.1.4.1.18568.2.1.1.3.2.20.1.1
Refer to textual convention for SaHpiTime for more details. The value is Equal to TIME_UNSPECIFIED if time is not available; Absolute time if greater than TIME_MAX_RELATIVE, Relative time if less than or equal to TIME_MAX_RELATIVE.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiTime  

saHpiWatchdogEventLogAction 1.3.6.1.4.1.18568.2.1.1.3.2.20.1.2
These enumerations represent the possible actions to be taken upon watchdog timer timeout and the events that are generated for watchdog actions.
Status: current Access: read-only
OBJECT-TYPE    
  INTEGER undefined(0), noAction(1), reset(2), powerDown(3), powerCycle(4), timerInt(9)  

saHpiWatchdogEventLogPreTimerAction 1.3.6.1.4.1.18568.2.1.1.3.2.20.1.3
These enumerations represent the possible types of interrupts that may be triggered by a watchdog pre-timer event. The actual meaning of these operations may differ depending on the hardware architecture.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiWatchdogPreTimerAction  

saHpiWatchdogEventLogUse 1.3.6.1.4.1.18568.2.1.1.3.2.20.1.4
Watchdog Timer Use These enumerations represent the possible watchdog users that may have caused the watchdog to expire. For instance, if watchdog is being used during power on self test (POST), and it expires, the biosPost(3) expiration type will be set. Most specific uses for Watchdog timer by users of HPI should indicate smsOs(5) if the use is to provide an OS-healthy heartbeat, or oem(6) if it is used for some other purpose.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiWatchdogTimerUse  

saHpiSoftwareEventLogLifetimeChanges 1.3.6.1.4.1.18568.2.1.1.3.2.21
Use this value to determine table activity. It is incremented each time an event is registered in this table. It is also incremented whenever an event is removed or the entire table is cleared. The number of events registered in this table over the lifetime of the table. If the underlying management system is restarted this count is reset. Use this node to determine table activity. This scalar object represents the subset of events that are Software Events.
Status: current Access: read-only
OBJECT-TYPE    
  Counter32  

saHpiSoftwareEventLogActiveEntries 1.3.6.1.4.1.18568.2.1.1.3.2.22
This scalar object represents the subset of events that are Software Events.
Status: current Access: read-only
OBJECT-TYPE    
  Gauge32  

saHpiSoftwareEventLogTable 1.3.6.1.4.1.18568.2.1.1.3.2.23
Event table.
Status: current Access: not-accessible
OBJECT-TYPE    
  SEQUENCE OF  
    SaHpiSoftwareEventLogEntry

saHpiSoftwareEventLogEntry 1.3.6.1.4.1.18568.2.1.1.3.2.23.1
Software events.
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiSoftwareEventLogEntry  

saHpiSoftwareEventLogTimestamp 1.3.6.1.4.1.18568.2.1.1.3.2.23.1.1
Refer to textual convention for SaHpiTime for more details. The value is Equal to TIME_UNSPECIFIED if time is not available; Absolute time if greater than TIME_MAX_RELATIVE, Relative time if less than or equal to TIME_MAX_RELATIVE.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiTime  

saHpiSoftwareEventLogManufacturerIdT 1.3.6.1.4.1.18568.2.1.1.3.2.23.1.2
Refer to the textual convention for more details.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiManufacturerId  

saHpiSoftwareEventLogType 1.3.6.1.4.1.18568.2.1.1.3.2.23.1.3
The following type defines the types of events that can be reported by the HPI software implementation. Audit events report a discrepancy in the audit process. Audits are typically performed by HA software to detect problems. Audits may look for such things as corrupted data stores, inconsistent RPT information, or improperly managed queues. Startup events report a failure to start-up properly, or inconsistencies in persisted data. Note: Enumerated values are increased by one value compared to SAI-HPI-B spec.
Status: current Access: read-only
OBJECT-TYPE    
  INTEGER undefined(0), hpieAudit(1), hpieStartup(2), hpieOther(3)  

saHpiSoftwareEventLogTextType 1.3.6.1.4.1.18568.2.1.1.3.2.23.1.4
Refer to the textual convention for more details.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiTextType  

saHpiSoftwareEventLogTextLanguage 1.3.6.1.4.1.18568.2.1.1.3.2.23.1.5
Refer to the textual convention for more details.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiTextLanguage  

saHpiSoftwareEventLogText 1.3.6.1.4.1.18568.2.1.1.3.2.23.1.6
Refer to the textual convention for more details.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiText  

saHpiOemEventLogLifetimeChanges 1.3.6.1.4.1.18568.2.1.1.3.2.24
Use this value to determine table activity. It is incremented each time an event is registered in this table. It is also incremented whenever an event is removed or the entire table is cleared. The number of events registered in this table over the lifetime of the table. If the underlying management system is restarted this count is reset. Use this node to determine table activity. This scalar object represents the subset of events that are Oem Events.
Status: current Access: read-only
OBJECT-TYPE    
  Counter32  

saHpiOemEventLogActiveEntries 1.3.6.1.4.1.18568.2.1.1.3.2.25
This scalar object represents the subset of events that are Oem Events.
Status: current Access: read-only
OBJECT-TYPE    
  Gauge32  

saHpiOemEventLogTable 1.3.6.1.4.1.18568.2.1.1.3.2.26
Event table.
Status: current Access: not-accessible
OBJECT-TYPE    
  SEQUENCE OF  
    SaHpiOemEventLogEntry

saHpiOemEventLogEntry 1.3.6.1.4.1.18568.2.1.1.3.2.26.1
Oem events.
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiOemEventLogEntry  

saHpiOemEventLogTimestamp 1.3.6.1.4.1.18568.2.1.1.3.2.26.1.1
Refer to textual convention for SaHpiTime for more details. The value is Equal to TIME_UNSPECIFIED if time is not available; Absolute time if greater than TIME_MAX_RELATIVE, Relative time if less than or equal to TIME_MAX_RELATIVE.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiTime  

saHpiOemEventLogManufacturerIdT 1.3.6.1.4.1.18568.2.1.1.3.2.26.1.2
Refer to the textual convention for more details.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiManufacturerId  

saHpiOemEventLogTextType 1.3.6.1.4.1.18568.2.1.1.3.2.26.1.3
Refer to the textual convention for more details.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiTextType  

saHpiOemEventLogTextLanguage 1.3.6.1.4.1.18568.2.1.1.3.2.26.1.4
Refer to the textual convention for more details.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiTextLanguage  

saHpiOemEventLogText 1.3.6.1.4.1.18568.2.1.1.3.2.26.1.5
Refer to the textual convention for more details.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiText  

saHpiUserEventLogLifetimeChanges 1.3.6.1.4.1.18568.2.1.1.3.2.27
Use this value to determine table activity. It is incremented each time an event is registered in this table. It is also incremented whenever an event is removed or the entire table is cleared. The number of events registered in this table over the lifetime of the table. If the underlying management system is restarted this count is reset. Use this node to determine table activity. This scalar object represents the subset of events that are User Events.
Status: current Access: read-only
OBJECT-TYPE    
  Counter32  

saHpiUserEventLogActiveEntries 1.3.6.1.4.1.18568.2.1.1.3.2.28
This scalar object represents the subset of events that are User Events.
Status: current Access: read-only
OBJECT-TYPE    
  Gauge32  

saHpiUserEventLogTable 1.3.6.1.4.1.18568.2.1.1.3.2.29
Event table.
Status: current Access: not-accessible
OBJECT-TYPE    
  SEQUENCE OF  
    SaHpiUserEventLogEntry

saHpiUserEventLogEntry 1.3.6.1.4.1.18568.2.1.1.3.2.29.1
User events.
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiUserEventLogEntry  

saHpiUserEventLogTimestamp 1.3.6.1.4.1.18568.2.1.1.3.2.29.1.1
Refer to textual convention for SaHpiTime for more details. The value is Equal to TIME_UNSPECIFIED if time is not available; Absolute time if greater than TIME_MAX_RELATIVE, Relative time if less than or equal to TIME_MAX_RELATIVE.
Status: current Access: read-create
OBJECT-TYPE    
  SaHpiTime  

saHpiUserEventLogTextType 1.3.6.1.4.1.18568.2.1.1.3.2.29.1.2
Refer to SaHpiTextType for more details.
Status: current Access: read-create
OBJECT-TYPE    
  SaHpiTextType  

saHpiUserEventLogTextLanguage 1.3.6.1.4.1.18568.2.1.1.3.2.29.1.3
Refer to saHpiTextLanguage for more details.
Status: current Access: read-create
OBJECT-TYPE    
  SaHpiTextLanguage  

saHpiUserEventLogText 1.3.6.1.4.1.18568.2.1.1.3.2.29.1.4
Refer to saHpiText for more details.
Status: current Access: read-create
OBJECT-TYPE    
  SaHpiText  

saHpiUserEventLogRowStatus 1.3.6.1.4.1.18568.2.1.1.3.2.29.1.5
This columnar object contains the status of the row and also perform add and delete operations. The status column uses four defined values: - `active(1)', which indicates that the conceptual row is available for use by the managed device; - `createAndGo(4)', which is supplied by a management station wishing to create a new instance of a conceptual row (but not make it available for use by the managed device). This function is used to add a User Alarm to this User Event Table and also to the to the Domain Alarm Table; The effect of creating a new row will also be reflected in the DAT - with a new row there. Developers Note: Avoid creating duplicate entries here! 1. a manager would add an event to the User Event Table, 2. the Sub-agent would see this and call saHpiEventLogAdd(), 3. the event would go thru the HPI system and would be added to the HPI event queue, 4. the sub-agent would read the event queue as part of its normal operations, and when it sees this event it would know to ignore it, since it is already in the table (because the manager added it to the table to start this whole process).
Status: current Access: read-create
OBJECT-TYPE    
  RowStatus  

saHpiRdrActiveEntries 1.3.6.1.4.1.18568.2.1.1.4.1
Number of resource data records in this system.
Status: current Access: read-only
OBJECT-TYPE    
  Gauge32  

saHpiRdrTable 1.3.6.1.4.1.18568.2.1.1.4.2
A table definining Resource Data Records (RDR) records.
Status: current Access: not-accessible
OBJECT-TYPE    
  SEQUENCE OF  
    SaHpiRdrEntry

saHpiRdrEntry 1.3.6.1.4.1.18568.2.1.1.4.2.1
The following describes the different types of records that exist within a Resource Data Repository and the RDR super-structure to all of the specific RDR types (sensor, inventory data, watchdog, etc.).
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiRdrEntry  

saHpiRdrEntryId 1.3.6.1.4.1.18568.2.1.1.4.2.1.1
Id of the Resource Data Repository (RDR) entry.
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiEntryId  

saHpiRdrNextEntryId 1.3.6.1.4.1.18568.2.1.1.4.2.1.2
ID of the next Resource Data Repository (RDR) entry. Use this to aid in walking just the RDRs for a given ResourceId. For example If you know the DomainId and ResourceId use SAHPI_FIRST_ENTRY to retrieve this columnar object. Now you have the saHpiRdrEntryId for the next RDR owned by the Resource in question. When the value of saHpiRdrNextEntryId is SAHPI_LAST_ENTRY it means the index specified represents the last valid RDR represented by the Resource in question.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiEntryId  

saHpiRdrType 1.3.6.1.4.1.18568.2.1.1.4.2.1.3
Type of Resource Data Repository entry. Note: Enumerated values are increased by one value compared to SAI-HPI-B.01.01 spec.
Status: current Access: read-only
OBJECT-TYPE    
  INTEGER undefined(0), noRecord(1), ctrlRdr(2), sensorRdr(3), inventoryRdr(4), watchdogRdr(5), annunciatorRdr(6)  

saHpiRdrEntityPath 1.3.6.1.4.1.18568.2.1.1.4.2.1.4
See Textual-Convention for details.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiEntityPath  

saHpiRdrIsFru 1.3.6.1.4.1.18568.2.1.1.4.2.1.5
Entity is a FRU. This field is Only valid if the Entity path given in the 'Entity' field is different from the Entity path in the RPT entry for the resource.
Status: current Access: read-only
OBJECT-TYPE    
  TruthValue  

saHpiRdrRowPointer 1.3.6.1.4.1.18568.2.1.1.4.2.1.6
Forward pointer to one of the four types of tables: saHpiCtrlRec saHpiSensorRec saHpiInventoryRec saHpiWatchdogRec
Status: current Access: read-only
OBJECT-TYPE    
  RowPointer  

saHpiRdrRPT 1.3.6.1.4.1.18568.2.1.1.4.2.1.7
Forward pointer to the Resource Presence Table (RPT) entry.
Status: current Access: read-only
OBJECT-TYPE    
  RowPointer  

saHpiRdrTextType 1.3.6.1.4.1.18568.2.1.1.4.2.1.8
The resource text definition. See textual definition for more information.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiTextType  

saHpiRdrTextLanguage 1.3.6.1.4.1.18568.2.1.1.4.2.1.9
The resource text language type. See textual definition for more information.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiTextLanguage  

saHpiRdrIdString 1.3.6.1.4.1.18568.2.1.1.4.2.1.10
ID String of the Resource Data Repository entry.
Status: current Access: read-only
OBJECT-TYPE    
  OCTET STRING  

saHpiCtrlDigitalActiveEntries 1.3.6.1.4.1.18568.2.1.1.4.7.1
The number of digital controls in the system.
Status: current Access: read-only
OBJECT-TYPE    
  Gauge32  

saHpiCtrlDigitalTable 1.3.6.1.4.1.18568.2.1.1.4.7.2
A table of digital controls and its states.
Status: current Access: not-accessible
OBJECT-TYPE    
  SEQUENCE OF  
    SaHpiCtrlDigitalEntry

saHpiCtrlDigitalEntry 1.3.6.1.4.1.18568.2.1.1.4.7.2.1
Definition of the digital control table.
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiCtrlDigitalEntry  

saHpiCtrlDigitalEntryId 1.3.6.1.4.1.18568.2.1.1.4.7.2.1.1
This index element is here to help facilitate browsing of digital controls based on resource id. For example to find the first digital control from the domain 1, for the resource 3, construct the index tuple to be 1.3.0. See textual convention for further details.
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiEntryId  

saHpiCtrlDigitalNum 1.3.6.1.4.1.18568.2.1.1.4.7.2.1.2
The control number
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiInstrumentId  

saHpiCtrlDigitalOutputType 1.3.6.1.4.1.18568.2.1.1.4.7.2.1.3
Refer to the textual convention for more details on the enumerations. Note: Enumerated values are increased by one value compared to SAI-HPI-B.01.01 spec.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiCtrlOutputType  

saHpiCtrlDigitalDefaultMode 1.3.6.1.4.1.18568.2.1.1.4.7.2.1.4
This object describes the default method the control is managed. The control may be managed automatically by the implementation (auto mode). Or it may be managed by the HPI SNMP Manager (manual mode). Some controls allow their modes to be changed, allowing the HPI SNMP Manager to determine if they will manage the control, or relinquish the management to the implementation. But, other controls do not allow the mode to be changed. These static-mode controls are indicated with the saHpiCtrlDigitalReadOnly flag set as part of the default control mode. Note: Enumerated values are increased by one value compared to SAI-HPI-B.01.01 spec.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiCtrlMode  

saHpiCtrlDigitalMode 1.3.6.1.4.1.18568.2.1.1.4.7.2.1.5
This object describes how the control is managed. The control may be managed automatically by the implementation (auto mode). Or it may be managed by the HPI SNMP Manager (manual mode). Some controls allow their modes to be changed, allowing the HPI SNMP Manager to determine if they will manage the control, or relinquish the management to the implementation. But, other controls do not allow the mode to be changed. These static-mode controls are indicated with the saHpiCtrlDigitalReadOnly flag set as part of the default control mode. When the mode is set to auto(1), the state input is ignored. Ignored state inputs are not checked by the implementation. Note: Enumerated values are increased by one value compared to SAI-HPI-B.01.01 spec.
Status: current Access: read-write
OBJECT-TYPE    
  SaHpiCtrlMode  

saHpiCtrlDigitalIsReadOnly 1.3.6.1.4.1.18568.2.1.1.4.7.2.1.6
Indicates if mode is read-only
Status: current Access: read-only
OBJECT-TYPE    
  TruthValue  

saHpiCtrlDigitalIsWriteOnly 1.3.6.1.4.1.18568.2.1.1.4.7.2.1.7
Indicates if Control is write-only
Status: current Access: read-only
OBJECT-TYPE    
  TruthValue  

saHpiCtrlDigitalDefaultState 1.3.6.1.4.1.18568.2.1.1.4.7.2.1.8
This object represents the default digital control state. Refer to the textual convention for more details on the enumerations.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiCtrlStateDigital  

saHpiCtrlDigitalState 1.3.6.1.4.1.18568.2.1.1.4.7.2.1.9
This object represents the current digital state of the control. Write to this object to change the digital state. You may not change the state of the control unless the Mode is set to manual(2). If a write is attempted when the mode is set to auto(1), SNMP will return an error-status of inconsistentValue. Refer to the textual convention for more details on the enumerations. Note that the SNMP errors that are returned are mapped to the HPI errors that could be returned (errors above the value 6 are SNMPv2 or v3 protocol and are converted to genErr(1) for v1 protocol). SA_ERR_HPI_ERROR genErr(5) SA_ERR_HPI_UNSUPPORTED_API genErr(5) SA_ERR_HPI_BUSY genErr(5) SA_ERR_HPI_INTERNAL_ERROR genErr(5) SA_ERR_HPI_INVALID_CMD genErr(5) SA_ERR_HPI_TIMEOUT genErr(5) SA_ERR_HPI_OUT_OF_SPACE genErr(5) SA_ERR_HPI_OUT_OF_MEMORY genErr(5) SA_ERR_HPI_INVALID_PARAMS genErr(5) SA_ERR_HPI_INVALID_DATA wrongValue(10) SA_ERR_HPI_NOT_PRESENT inconsistentName(18) SA_ERR_HPI_NO_RESPONSE genErr(5) SA_ERR_HPI_DUPLICATE genErr(5) SA_ERR_HPI_INVALID_SESSION genErr(5) SA_ERR_HPI_INVALID_DOMAIN inconsistentName(18) SA_ERR_HPI_INVALID_RESOURCE inconsistentName(18) SA_ERR_HPI_INVALID_REQUEST genErr(5) SA_ERR_HPI_ENTITY_NOT_PRESENT inconsistentName(18) SA_ERR_HPI_READ_ONLY notWritable(9) SA_ERR_HPI_CAPABILITY genErr(5) SA_ERR_HPI_UNKNOWN genErr(5)
Status: current Access: read-write
OBJECT-TYPE    
  SaHpiCtrlStateDigital  

saHpiCtrlDigitalOem 1.3.6.1.4.1.18568.2.1.1.4.7.2.1.10
Reserved for Oem use
Status: current Access: read-only
OBJECT-TYPE    
  Unsigned32  

saHpiCtrlDigitalRDR 1.3.6.1.4.1.18568.2.1.1.4.7.2.1.11
Pointer to Resource Table for this digital control.
Status: current Access: read-only
OBJECT-TYPE    
  RowPointer  

saHpiCtrlDiscreteActiveEntries 1.3.6.1.4.1.18568.2.1.1.4.7.3
The number of discrete controls in the system.
Status: current Access: read-only
OBJECT-TYPE    
  Gauge32  

saHpiCtrlDiscreteTable 1.3.6.1.4.1.18568.2.1.1.4.7.4
A table of discrete controls and its states.
Status: current Access: not-accessible
OBJECT-TYPE    
  SEQUENCE OF  
    SaHpiCtrlDiscreteEntry

saHpiCtrlDiscreteEntry 1.3.6.1.4.1.18568.2.1.1.4.7.4.1
Definition of the discrete control table.
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiCtrlDiscreteEntry  

saHpiCtrlDiscreteEntryId 1.3.6.1.4.1.18568.2.1.1.4.7.4.1.1
This index element is here to help facilitate browsing of digital controls based on resource id. For example to find the first digital control from the domain 1, for the resource 3, construct the index tuple to be 1.3.0. See textual convention for further details.
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiEntryId  

saHpiCtrlDiscreteNum 1.3.6.1.4.1.18568.2.1.1.4.7.4.1.2
The control number
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiInstrumentId  

saHpiCtrlDiscreteOutputType 1.3.6.1.4.1.18568.2.1.1.4.7.4.1.3
Refer to the textual convention for more details on the enumerations. Note: Enumerated values are increased by one value compared to SAI-HPI-B.01.01 spec.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiCtrlOutputType  

saHpiCtrlDiscreteDefaultMode 1.3.6.1.4.1.18568.2.1.1.4.7.4.1.4
This object describes the default method the control is managed. The control may be managed automatically by the implementation (auto mode). Or it may be managed by the HPI SNMP Manager (manual mode). Some controls allow their modes to be changed, allowing the HPI SNMP Manager to determine if they will manage the control, or relinquish the management to the implementation. Other controls do not allow the mode to be changed. These static-mode controls are indicated with the saHpiCtrlDiscreteReadOnly flag set as part of the default control mode. Note: Enumerated values are increased by one value compared to SAI-HPI-B.01.01 spec.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiCtrlMode  

saHpiCtrlDiscreteMode 1.3.6.1.4.1.18568.2.1.1.4.7.4.1.5
This object describes how the control is managed. The control may be managed automatically by the implementation (auto mode). Or it may be managed by the HPI SNMP Manager (manual mode). Some controls allow their modes to be changed, allowing the HPI SNMP Manager to determine if they will manage the control, or relinquish the management to the implementation. But, other controls do not allow the mode to be changed. These static-mode controls are indicated with the saHpiCtrlDiscreteReadOnly flag set as part of the default control mode. Note: Enumerated values are increased by one value compared to SAI-HPI-B.01.01 spec.
Status: current Access: read-write
OBJECT-TYPE    
  SaHpiCtrlMode  

saHpiCtrlDiscreteIsReadOnly 1.3.6.1.4.1.18568.2.1.1.4.7.4.1.6
Indicates if mode is read-only
Status: current Access: read-only
OBJECT-TYPE    
  TruthValue  

saHpiCtrlDiscreteIsWriteOnly 1.3.6.1.4.1.18568.2.1.1.4.7.4.1.7
Indicates if Control is write-only
Status: current Access: read-only
OBJECT-TYPE    
  TruthValue  

saHpiCtrlDiscreteDefaultState 1.3.6.1.4.1.18568.2.1.1.4.7.4.1.8
This object represents the default value of the discrete control resource. Refer to the textual convention for more details on the enumerations.
Status: current Access: read-only
OBJECT-TYPE    
  Unsigned32  

saHpiCtrlDiscreteState 1.3.6.1.4.1.18568.2.1.1.4.7.4.1.9
This object represents the current discrete state of the control. Write to this object to change the values of the state. You may not change the state of the control unless the Mode is set to manual(2). If a write is attempted when the mode is set to auto(1), SNMP will return an error-status of inconsistentValue. Note that the SNMP errors that are returned are mapped to the HPI errors that could be returned (errors above the value 6 are SNMPv2 or v3 protocol and are converted to genErr(1) for v1 protocol). SA_ERR_HPI_ERROR genErr(5) SA_ERR_HPI_UNSUPPORTED_API genErr(5) SA_ERR_HPI_BUSY genErr(5) SA_ERR_HPI_INTERNAL_ERROR genErr(5) SA_ERR_HPI_INVALID_CMD genErr(5) SA_ERR_HPI_TIMEOUT genErr(5) SA_ERR_HPI_OUT_OF_SPACE genErr(5) SA_ERR_HPI_OUT_OF_MEMORY genErr(5) SA_ERR_HPI_INVALID_PARAMS genErr(5) SA_ERR_HPI_INVALID_DATA wrongValue(10) SA_ERR_HPI_NOT_PRESENT inconsistentName(18) SA_ERR_HPI_NO_RESPONSE genErr(5) SA_ERR_HPI_DUPLICATE genErr(5) SA_ERR_HPI_INVALID_SESSION genErr(5) SA_ERR_HPI_INVALID_DOMAIN inconsistentName(18) SA_ERR_HPI_INVALID_RESOURCE inconsistentName(18) SA_ERR_HPI_INVALID_REQUEST genErr(5) SA_ERR_HPI_ENTITY_NOT_PRESENT inconsistentName(18) SA_ERR_HPI_READ_ONLY notWritable(9) SA_ERR_HPI_CAPABILITY genErr(5) SA_ERR_HPI_UNKNOWN genErr(5)
Status: current Access: read-write
OBJECT-TYPE    
  Unsigned32  

saHpiCtrlDiscreteOem 1.3.6.1.4.1.18568.2.1.1.4.7.4.1.10
Reserved for Oem use
Status: current Access: read-only
OBJECT-TYPE    
  Unsigned32  

saHpiCtrlDiscreteRDR 1.3.6.1.4.1.18568.2.1.1.4.7.4.1.11
Pointer to Resource Table for this discrete control entry.
Status: current Access: read-only
OBJECT-TYPE    
  RowPointer  

saHpiCtrlAnalogActiveEntries 1.3.6.1.4.1.18568.2.1.1.4.7.6
The number of analog controls in the system.
Status: current Access: read-only
OBJECT-TYPE    
  Gauge32  

saHpiCtrlAnalogTable 1.3.6.1.4.1.18568.2.1.1.4.7.7
A table of analog controls and its states.
Status: current Access: not-accessible
OBJECT-TYPE    
  SEQUENCE OF  
    SaHpiCtrlAnalogEntry

saHpiCtrlAnalogEntry 1.3.6.1.4.1.18568.2.1.1.4.7.7.1
Definition of the analog control table.
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiCtrlAnalogEntry  

saHpiCtrlAnalogEntryId 1.3.6.1.4.1.18568.2.1.1.4.7.7.1.1
This index element is here to help facilitate browsing of digital controls based on resource id. For example to find the first digital control from the domain 1, for the resource 3, construct the index tuple to be 1.3.0. See textual convention for further details.
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiEntryId  

saHpiCtrlAnalogNum 1.3.6.1.4.1.18568.2.1.1.4.7.7.1.2
The control number
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiInstrumentId  

saHpiCtrlAnalogOutputType 1.3.6.1.4.1.18568.2.1.1.4.7.7.1.3
Refer to the textual convention for more details on the enumerations. Note: Enumerated values are increased by one value compared to SAI-HPI-B.01.01 spec.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiCtrlOutputType  

saHpiCtrlAnalogDefaultMode 1.3.6.1.4.1.18568.2.1.1.4.7.7.1.4
This object describes the default method control is managed. The control may be managed automatically by the implementation (auto mode). Or it may be managed by the HPI SNMP Manager (manual mode). Some controls allow their modes to be changed, allowing the HPI SNMP Manager to determine if they will manage the control, or relinquish the management to the implementation. But, other controls do not allow the mode to be changed. These static-mode controls are indicated with the saHpiCtrlAnalogReadOnly flag set as part of the default control mode. Note: Enumerated values are increased by one value compared to SAI-HPI-B.01.01 spec.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiCtrlMode  

saHpiCtrlAnalogMode 1.3.6.1.4.1.18568.2.1.1.4.7.7.1.5
This object describes how the control is managed. The control may be managed automatically by the implementation (auto mode). Or it may be managed by the HPI SNMP Manager (manual mode). Some controls allow their modes to be changed, allowing the HPI SNMP Manager to determine if they will manage the control, or relinquish the management to the implementation. But, other controls do not allow the mode to be changed. These static-mode controls are indicated with the saHpiCtrlAnalogReadOnly flag set as part of the default control mode. When the mode is set to auto(1), the state input is ignored. Ignored state inputs are not checked by the implementation. Note: Enumerated values are increased by one value compared to SAI-HPI-B.01.01 spec.
Status: current Access: read-write
OBJECT-TYPE    
  SaHpiCtrlMode  

saHpiCtrlAnalogIsReadOnly 1.3.6.1.4.1.18568.2.1.1.4.7.7.1.6
Indicates if mode is read-only
Status: current Access: read-only
OBJECT-TYPE    
  TruthValue  

saHpiCtrlAnalogIsWriteOnly 1.3.6.1.4.1.18568.2.1.1.4.7.7.1.7
Indicates if Control is write-only
Status: current Access: read-only
OBJECT-TYPE    
  TruthValue  

saHpiCtrlAnalogDefaultMinState 1.3.6.1.4.1.18568.2.1.1.4.7.7.1.8
This object represents the default minimum value of this analog control.
Status: current Access: read-only
OBJECT-TYPE    
  Integer32  

saHpiCtrlAnalogDefaultMaxState 1.3.6.1.4.1.18568.2.1.1.4.7.7.1.9
This object represents the default maximum value of this analog control.
Status: current Access: read-only
OBJECT-TYPE    
  Integer32  

saHpiCtrlAnalogDefaultState 1.3.6.1.4.1.18568.2.1.1.4.7.7.1.10
This object represents the default value of this analog control.
Status: current Access: read-only
OBJECT-TYPE    
  Integer32  

saHpiCtrlAnalogState 1.3.6.1.4.1.18568.2.1.1.4.7.7.1.11
This object represents the current state of the analog control. Write to this object to change the state. You may not change the state of the control unless the Mode is set to manual(2). If a write is attempted when the mode is set to auto(1), SNMP will return an error-status of inconsistentValue. Note that the SNMP errors that are returned are mapped to the HPI errors that could be returned (errors above the value 6 are SNMPv2 or v3 protocol and are converted to genErr(1) for v1 protocol). SA_ERR_HPI_ERROR genErr(5) SA_ERR_HPI_UNSUPPORTED_API genErr(5) SA_ERR_HPI_BUSY genErr(5) SA_ERR_HPI_INTERNAL_ERROR genErr(5) SA_ERR_HPI_INVALID_CMD genErr(5) SA_ERR_HPI_TIMEOUT genErr(5) SA_ERR_HPI_OUT_OF_SPACE genErr(5) SA_ERR_HPI_OUT_OF_MEMORY genErr(5) SA_ERR_HPI_INVALID_PARAMS genErr(5) SA_ERR_HPI_INVALID_DATA wrongValue(10) SA_ERR_HPI_NOT_PRESENT inconsistentName(18) SA_ERR_HPI_NO_RESPONSE genErr(5) SA_ERR_HPI_DUPLICATE genErr(5) SA_ERR_HPI_INVALID_SESSION genErr(5) SA_ERR_HPI_INVALID_DOMAIN inconsistentName(18) SA_ERR_HPI_INVALID_RESOURCE inconsistentName(18) SA_ERR_HPI_INVALID_REQUEST genErr(5) SA_ERR_HPI_ENTITY_NOT_PRESENT inconsistentName(18) SA_ERR_HPI_READ_ONLY notWritable(9) SA_ERR_HPI_CAPABILITY genErr(5) SA_ERR_HPI_UNKNOWN genErr(5)
Status: current Access: read-write
OBJECT-TYPE    
  Integer32  

saHpiCtrlAnalogOem 1.3.6.1.4.1.18568.2.1.1.4.7.7.1.12
Reserved for Oem use
Status: current Access: read-only
OBJECT-TYPE    
  Unsigned32  

saHpiCtrlAnalogRDR 1.3.6.1.4.1.18568.2.1.1.4.7.7.1.13
Pointer to Resource Table for this analog control.
Status: current Access: read-only
OBJECT-TYPE    
  RowPointer  

saHpiCtrlStreamActiveEntries 1.3.6.1.4.1.18568.2.1.1.4.7.8
The number of stream controls in the system.
Status: current Access: read-only
OBJECT-TYPE    
  Gauge32  

saHpiCtrlStreamTable 1.3.6.1.4.1.18568.2.1.1.4.7.9
A table of stream controls and its states.
Status: current Access: not-accessible
OBJECT-TYPE    
  SEQUENCE OF  
    SaHpiCtrlStreamEntry

saHpiCtrlStreamEntry 1.3.6.1.4.1.18568.2.1.1.4.7.9.1
Definition of the stream control table.
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiCtrlStreamEntry  

saHpiCtrlStreamEntryId 1.3.6.1.4.1.18568.2.1.1.4.7.9.1.1
This index element is here to help facilitate browsing of digital controls based on resource id. For example to find the first digital control from the domain 1, for the resource 3, construct the index tuple to be 1.3.0. See textual convention for further details.
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiEntryId  

saHpiCtrlStreamNum 1.3.6.1.4.1.18568.2.1.1.4.7.9.1.2
The control number
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiInstrumentId  

saHpiCtrlStreamOutputType 1.3.6.1.4.1.18568.2.1.1.4.7.9.1.3
Refer to the textual convention for more details on the enumerations. Note: Enumerated values are increased by one value compared to SAI-HPI-B.01.01 spec.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiCtrlOutputType  

saHpiCtrlStreamDefaultMode 1.3.6.1.4.1.18568.2.1.1.4.7.9.1.4
This object describes the default method the control is managed. The control may be managed automatically by the implementation (auto mode). Or it may be managed by the HPI SNMP Manager (manual mode). Some controls allow their modes to be changed, allowing the HPI SNMP Manager to determine if they will manage the control, or relinquish the management to the implementation. But, other controls do not allow the mode to be changed. These static-mode controls are indicated with the saHpiCtrlReadOnly flag set as part of the default control mode. Note: Enumerated values are increased by one value compared to SAI-HPI-B.01.01 spec.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiCtrlMode  

saHpiCtrlStreamMode 1.3.6.1.4.1.18568.2.1.1.4.7.9.1.5
This object describes how the control is managed. The control may be managed automatically by the implementation (auto mode). Or it may be managed by the HPI SNMP Manager (manual mode). Some controls allow their modes to be changed, allowing the HPI SNMP Manager to determine if they will manage the control, or relinquish the management to the implementation. But, other controls do not allow the mode to be changed. These static-mode controls are indicated with the saHpiCtrlReadOnly flag set as part of the default control mode. When the mode is set to auto(1), the state input is ignored. Ignored state inputs are not checked by the implementation. Note: Enumerated values are increased by one value compared to SAI-HPI-B.01.01 spec.
Status: current Access: read-write
OBJECT-TYPE    
  SaHpiCtrlMode  

saHpiCtrlStreamIsReadOnly 1.3.6.1.4.1.18568.2.1.1.4.7.9.1.6
Indicates if mode is read-only
Status: current Access: read-only
OBJECT-TYPE    
  TruthValue  

saHpiCtrlStreamIsWriteOnly 1.3.6.1.4.1.18568.2.1.1.4.7.9.1.7
Indicates if Control is write-only
Status: current Access: read-only
OBJECT-TYPE    
  TruthValue  

saHpiCtrlStreamDefaultRepeat 1.3.6.1.4.1.18568.2.1.1.4.7.9.1.8
This object represents the default repeat flag of stream control.
Status: current Access: read-only
OBJECT-TYPE    
  TruthValue  

saHpiCtrlStreamDefaultState 1.3.6.1.4.1.18568.2.1.1.4.7.9.1.9
This object represents the default value of the stream control.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiText  

saHpiCtrlStreamRepeat 1.3.6.1.4.1.18568.2.1.1.4.7.9.1.10
This object represents the current repeat flag of the stream control. Write to this object to change the repeat value of the stream data. You may not change the state of the control unless the Mode is set to manual(2). If a write is attempted when the mode is set to auto(1), SNMP will return an error-status of inconsistentValue. Note that the SNMP errors that are returned are mapped to the HPI errors that could be returned (errors above the value 6 are SNMPv2 or v3 protocol and are converted to genErr(1) for v1 protocol). SA_ERR_HPI_ERROR genErr(5) SA_ERR_HPI_UNSUPPORTED_API genErr(5) SA_ERR_HPI_BUSY genErr(5) SA_ERR_HPI_INTERNAL_ERROR genErr(5) SA_ERR_HPI_INVALID_CMD genErr(5) SA_ERR_HPI_TIMEOUT genErr(5) SA_ERR_HPI_OUT_OF_SPACE genErr(5) SA_ERR_HPI_OUT_OF_MEMORY genErr(5) SA_ERR_HPI_INVALID_PARAMS genErr(5) SA_ERR_HPI_INVALID_DATA wrongValue(10) SA_ERR_HPI_NOT_PRESENT inconsistentName(18) SA_ERR_HPI_NO_RESPONSE genErr(5) SA_ERR_HPI_DUPLICATE genErr(5) SA_ERR_HPI_INVALID_SESSION * genErr(5) SA_ERR_HPI_INVALID_DOMAIN inconsistentName(18) SA_ERR_HPI_INVALID_RESOURCE inconsistentName(18) SA_ERR_HPI_INVALID_REQUEST genErr(5) SA_ERR_HPI_ENTITY_NOT_PRESENT inconsistentName(18) SA_ERR_HPI_READ_ONLY notWritable(9) SA_ERR_HPI_CAPABILITY genErr(5) SA_ERR_HPI_UNKNOWN genErr(5)
Status: current Access: read-write
OBJECT-TYPE    
  TruthValue  

saHpiCtrlStreamState 1.3.6.1.4.1.18568.2.1.1.4.7.9.1.11
This object represents the current state of the stream control. Write to this object to change the state of the stream control. You may not change the state of the control unless the Mode is set to manual(2). If a write is attempted when the mode is set to auto(1), SNMP will return an error-status of inconsistentValue. Note that the SNMP errors that are returned are mapped to the HPI errors that could be returned (errors above the value 6 are SNMPv2 or v3 protocol and are converted to genErr(1) for v1 protocol). SA_ERR_HPI_ERROR genErr(5) SA_ERR_HPI_UNSUPPORTED_API genErr(5) SA_ERR_HPI_BUSY genErr(5) SA_ERR_HPI_INTERNAL_ERROR genErr(5) SA_ERR_HPI_INVALID_CMD genErr(5) SA_ERR_HPI_TIMEOUT genErr(5) SA_ERR_HPI_OUT_OF_SPACE genErr(5) SA_ERR_HPI_OUT_OF_MEMORY genErr(5) SA_ERR_HPI_INVALID_PARAMS genErr(5) SA_ERR_HPI_INVALID_DATA wrongValue(10) SA_ERR_HPI_NOT_PRESENT inconsistentName(18) SA_ERR_HPI_NO_RESPONSE genErr(5) SA_ERR_HPI_DUPLICATE genErr(5) SA_ERR_HPI_INVALID_SESSION genErr(5) SA_ERR_HPI_INVALID_DOMAIN inconsistentName(18) SA_ERR_HPI_INVALID_RESOURCE inconsistentName(18) SA_ERR_HPI_INVALID_REQUEST genErr(5) SA_ERR_HPI_ENTITY_NOT_PRESENT inconsistentName(18) SA_ERR_HPI_READ_ONLY notWritable(9) SA_ERR_HPI_CAPABILITY genErr(5) SA_ERR_HPI_UNKNOWN genErr(5)
Status: current Access: read-write
OBJECT-TYPE    
  SaHpiText  

saHpiCtrlStreamOem 1.3.6.1.4.1.18568.2.1.1.4.7.9.1.12
Reserved for Oem use
Status: current Access: read-only
OBJECT-TYPE    
  Unsigned32  

saHpiCtrlStreamRDR 1.3.6.1.4.1.18568.2.1.1.4.7.9.1.13
Pointer to Resource Table for this stream control.
Status: current Access: read-only
OBJECT-TYPE    
  RowPointer  

saHpiCtrlTextActiveEntries 1.3.6.1.4.1.18568.2.1.1.4.7.10
The number of text controls in the system.
Status: current Access: read-only
OBJECT-TYPE    
  Gauge32  

saHpiCtrlTextTable 1.3.6.1.4.1.18568.2.1.1.4.7.11
A table of text controls and its states.
Status: current Access: not-accessible
OBJECT-TYPE    
  SEQUENCE OF  
    SaHpiCtrlTextEntry

saHpiCtrlTextEntry 1.3.6.1.4.1.18568.2.1.1.4.7.11.1
Definition of the text control table.
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiCtrlTextEntry  

saHpiCtrlTextEntryId 1.3.6.1.4.1.18568.2.1.1.4.7.11.1.1
This index element is here to help facilitate browsing of digital controls based on resource id. For example to find the first digital control from the domain 1, for the resource 3, construct the index tuple to be 1.3.0. See textual convention for further details.
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiEntryId  

saHpiCtrlTextNum 1.3.6.1.4.1.18568.2.1.1.4.7.11.1.2
The control number
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiInstrumentId  

saHpiCtrlTextOutputType 1.3.6.1.4.1.18568.2.1.1.4.7.11.1.3
Refer to the textual convention for more details on the enumerations. Note: Enumerated values are increased by one value compared to SAI-HPI-B.01.01 spec.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiCtrlOutputType  

saHpiCtrlTextDefaultMode 1.3.6.1.4.1.18568.2.1.1.4.7.11.1.4
This object describes the default method the control is managed. The control may be managed automatically by the implementation (auto mode). Or it may be managed by the HPI User (manual mode). Some controls allow their modes to be changed, allowing the HPI User to determine if they will manage the control, or relinquish the management to the implementation. But, other controls do not allow the mode to be changed. These static-mode controls are indicated with the saHpiCtrlReadOnly flag set as part of the default control mode. When the mode is set to auto(1), the state input is ignored. Ignored state inputs are not checked by the implementation. Note: Enumerated values are increased by one value compared to SAI-HPI-B.01.01 spec.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiCtrlMode  

saHpiCtrlTextMode 1.3.6.1.4.1.18568.2.1.1.4.7.11.1.5
This object describes how the control is managed. The control may be managed automatically by the implementation (auto mode). Or it may be managed by the HPI User (manual mode). Some controls allow their modes to be changed, allowing the HPI User to determine if they will manage the control, or relinquish the management to the implementation. But, other controls do not allow the mode to be changed. These static-mode controls are indicated with the saHpiCtrlReadOnly flag set as part of the default control mode. When the mode is set to auto(1), the state input is ignored. Ignored state inputs are not checked by the implementation. Note: Enumerated values are increased by one value compared to SAI-HPI-B.01.01 spec.
Status: current Access: read-write
OBJECT-TYPE    
  SaHpiCtrlMode  

saHpiCtrlTextIsReadOnly 1.3.6.1.4.1.18568.2.1.1.4.7.11.1.6
Indicates if mode is read-only
Status: current Access: read-only
OBJECT-TYPE    
  TruthValue  

saHpiCtrlTextIsWriteOnly 1.3.6.1.4.1.18568.2.1.1.4.7.11.1.7
Indicates if Control is write-only
Status: current Access: read-only
OBJECT-TYPE    
  TruthValue  

saHpiCtrlTextMaxChars 1.3.6.1.4.1.18568.2.1.1.4.7.11.1.8
This object represents the maximum characters per line for this text control. Note: If the saHpiCtrlTextType is unicode(1), there will be two bytes required for each character. This field reports the number of characters per line- not the number of bytes. saHpiCtrlTextMaxChars must not be larger than the number of characters that can be placed in a saHpiTextState columnar object.
Status: current Access: read-only
OBJECT-TYPE    
  Unsigned8  

saHpiCtrlTextMaxLines 1.3.6.1.4.1.18568.2.1.1.4.7.11.1.9
This object represents the maximum number of lines of the text control.
Status: current Access: read-only
OBJECT-TYPE    
  Unsigned8  

saHpiCtrlTextLanguage 1.3.6.1.4.1.18568.2.1.1.4.7.11.1.10
This object represents the default text language setting of the control text.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiTextLanguage  

saHpiCtrlTextType 1.3.6.1.4.1.18568.2.1.1.4.7.11.1.11
This represents the current text setting of the control.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiTextType  

saHpiCtrlTextDefaultLine 1.3.6.1.4.1.18568.2.1.1.4.7.11.1.12
This object represents the default line number of text represented in saHpiCtrlTextDefault object. If the line is 255, then saHpiCtrlTextDefault columnar object will containt the entire text of the control, or as much of it as will fit in a single columnar object. This value will consist of the text of all the lines concatenated, using the maximum number of characters for each line (no trimming of trailing blanks). Note that depending on the data type and language, the text may be encoded in 2-byte Unicode, which requires two bytes of data per character. Note that the number of lines and columns in a text control can be obtained from the saHpiCtrlTextMaxLines and saHpiCtrlTextMaxChars.
Status: current Access: read-only
OBJECT-TYPE    
  Unsigned8  

saHpiCtrlTextDefault 1.3.6.1.4.1.18568.2.1.1.4.7.11.1.13
The default text of a control text resource. Refer to saHpiCtrlTextDefaultLine for the line number, saHpiCtrlTextLanguage for the language setting and saHpiCtrlTextType for the text type.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiText  

saHpiCtrlTextLine 1.3.6.1.4.1.18568.2.1.1.4.7.11.1.14
The current line number of text. Refer to saHpiCtrlTextState for usage examples. If the line number passed in is 255, then saHpiCtrlTextState columnar object will containt the entire text of the control, or as much of it as will fit in a single columnar object. This value will consist of the text of all the lines concatenated, using the maximum number of characters for each line (no trimming of trailing blanks). Note that depending on the data type and language, the text may be encoded in 2-byte Unicode, which requires two bytes of data per character. Note that the number of lines and columns in a text control can be obtained from the saHpiCtrlTextMaxLines and saHpiCtrlTextMaxChars. Note that the SNMP errors that are returned are mapped to the HPI errors that could be returned (errors above the value 6 are SNMPv2 or v3 protocol and are converted to genErr(1) for v1 protocol). SA_ERR_HPI_ERROR genErr(5) SA_ERR_HPI_UNSUPPORTED_API genErr(5) SA_ERR_HPI_BUSY genErr(5) SA_ERR_HPI_INTERNAL_ERROR genErr(5) SA_ERR_HPI_INVALID_CMD genErr(5) SA_ERR_HPI_TIMEOUT genErr(5) SA_ERR_HPI_OUT_OF_SPACE genErr(5) SA_ERR_HPI_OUT_OF_MEMORY genErr(5) SA_ERR_HPI_INVALID_PARAMS genErr(5) SA_ERR_HPI_INVALID_DATA wrongValue(10) SA_ERR_HPI_NOT_PRESENT inconsistentName(18) SA_ERR_HPI_NO_RESPONSE genErr(5) SA_ERR_HPI_DUPLICATE genErr(5) SA_ERR_HPI_INVALID_SESSION genErr(5) SA_ERR_HPI_INVALID_DOMAIN inconsistentName(18) SA_ERR_HPI_INVALID_RESOURCE inconsistentName(18) SA_ERR_HPI_INVALID_REQUEST genErr(5) SA_ERR_HPI_ENTITY_NOT_PRESENT inconsistentName(18) SA_ERR_HPI_READ_ONLY notWritable(9) SA_ERR_HPI_CAPABILITY genErr(5) SA_ERR_HPI_UNKNOWN genErr(5)
Status: current Access: read-write
OBJECT-TYPE    
  Unsigned8  

saHpiCtrlTextState 1.3.6.1.4.1.18568.2.1.1.4.7.11.1.15
This columnar object can be used to write to the text controls. To do so, first set the line number in saHpiCtrlTextLine and then write to this object. The first line of the text control is line number 1 . If less than a full line of data is written, the control will clear all spaces beyond those written on the line. Thus writing a zero-length string will clear the addressed line. It is also possible to include more characters in the text passed in this columnar object than will fit on one line; in this case, the control will wrap to the next line (still clearing the trailing characters on the last line written). Thus, there are two ways to write multiple lines to a text control: (a) set saHpiCtrlTextState repeatedly for each line, or (b) set saHpiCtrlTextState once and send more characters than will fit on one line. An HPI SNMP Manager should not assume any cursor positioning characters are available to use, but rather should always write full lines and allow wrapping to occur. When calling this object, an HPI SNMP Manager may set the line number to 255; in this case, the entire control will be cleared, and the data will be written starting on line 1. (This is different from simply writing at line 1, which only alters the lines written to.) This feature may be used to clear the entire control, which can be accomplished by setting: saHpiCtrlTextLine = 255; saHpiCtrlState = ''; Note that the number of lines and columns in a text control can be obtained from the saHpiCtrlTextMaxLines and saHpiCtrlTextMaxChars. Note that the saHpiCtrlTextLanguage object has the language setting and saHpiCtrlTextType object has the text type. Note that the SNMP errors that are returned are mapped to the HPI errors that could be returned (errors above the value 6 are SNMPv2 or v3 protocol and are converted to genErr(1) for v1 protocol). SA_ERR_HPI_ERROR genErr(5) SA_ERR_HPI_UNSUPPORTED_API genErr(5) SA_ERR_HPI_BUSY genErr(5) SA_ERR_HPI_INTERNAL_ERROR genErr(5) SA_ERR_HPI_INVALID_CMD genErr(5) SA_ERR_HPI_TIMEOUT genErr(5) SA_ERR_HPI_OUT_OF_SPACE genErr(5) SA_ERR_HPI_OUT_OF_MEMORY genErr(5) SA_ERR_HPI_INVALID_PARAMS genErr(5) SA_ERR_HPI_INVALID_DATA wrongValue(10) SA_ERR_HPI_NOT_PRESENT inconsistentName(18) SA_ERR_HPI_NO_RESPONSE genErr(5) SA_ERR_HPI_DUPLICATE genErr(5) SA_ERR_HPI_INVALID_SESSION genErr(5) SA_ERR_HPI_INVALID_DOMAIN inconsistentName(18) SA_ERR_HPI_INVALID_RESOURCE inconsistentName(18) SA_ERR_HPI_INVALID_REQUEST genErr(5) SA_ERR_HPI_ENTITY_NOT_PRESENT inconsistentName(18) SA_ERR_HPI_READ_ONLY notWritable(9) SA_ERR_HPI_CAPABILITY genErr(5) SA_ERR_HPI_UNKNOWN genErr(5)
Status: current Access: read-write
OBJECT-TYPE    
  SaHpiText  

saHpiCtrlTextOem 1.3.6.1.4.1.18568.2.1.1.4.7.11.1.16
Reserved for Oem use
Status: current Access: read-only
OBJECT-TYPE    
  Unsigned32  

saHpiCtrlTextRDR 1.3.6.1.4.1.18568.2.1.1.4.7.11.1.17
Pointer to Resource Table for this text control.
Status: current Access: read-only
OBJECT-TYPE    
  RowPointer  

saHpiCtrlOemActiveEntries 1.3.6.1.4.1.18568.2.1.1.4.7.12
The number of Oem controls in the system.
Status: current Access: read-only
OBJECT-TYPE    
  Gauge32  

saHpiCtrlOemTable 1.3.6.1.4.1.18568.2.1.1.4.7.13
A table of Oem controls and its states.
Status: current Access: not-accessible
OBJECT-TYPE    
  SEQUENCE OF  
    SaHpiCtrlOemEntry

saHpiCtrlOemEntry 1.3.6.1.4.1.18568.2.1.1.4.7.13.1
Definition of the Oem control table.
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiCtrlOemEntry  

saHpiCtrlOemEntryId 1.3.6.1.4.1.18568.2.1.1.4.7.13.1.1
This index element is here to help facilitate browsing of digital controls based on resource id. For example to find the first digital control from the domain 1, for the resource 3, construct the index tuple to be 1.3.0. See textual convention for further details.
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiEntryId  

saHpiCtrlOemNum 1.3.6.1.4.1.18568.2.1.1.4.7.13.1.2
The control number
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiInstrumentId  

saHpiCtrlOemOutputType 1.3.6.1.4.1.18568.2.1.1.4.7.13.1.3
Refer to the textual convention for more details on the enumerations. Note: Enumerated values are increased by one value compared to SAI-HPI-B.01.01 spec.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiCtrlOutputType  

saHpiCtrlOemDefaultMode 1.3.6.1.4.1.18568.2.1.1.4.7.13.1.4
This object describes the default method the control is managed. The control may be managed automatically by the implementation (auto mode). Or it may be managed by the HPI User (manual mode). Some controls allow their modes to be changed, allowing the HPI User to determine if they will manage the control, or relinquish the management to the implementation. But, other controls do not allow the mode to be changed. These static-mode controls are indicated with the saHpiCtrlReadOnly flag set as part of the default control mode. When the mode is set to auto(1), the state input is ignored. Ignored state inputs are not checked by the implementation. Note: Enumerated values are increased by one value compared to SAI-HPI-B.01.01 spec.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiCtrlMode  

saHpiCtrlOemMode 1.3.6.1.4.1.18568.2.1.1.4.7.13.1.5
This object describes how the control is managed. The control may be managed automatically by the implementation (auto mode). Or it may be managed by the HPI User (manual mode). Some controls allow their modes to be changed, allowing the HPI User to determine if they will manage the control, or relinquish the management to the implementation. But, other controls do not allow the mode to be changed. These static-mode controls are indicated with the saHpiCtrlReadOnly flag set as part of the default control mode. When the mode is set to auto(1), the state input is ignored. Ignored state inputs are not checked by the implementation. Note: Enumerated values are increased by one value compared to SAI-HPI-B.01.01 spec.
Status: current Access: read-write
OBJECT-TYPE    
  SaHpiCtrlMode  

saHpiCtrlOemIsReadOnly 1.3.6.1.4.1.18568.2.1.1.4.7.13.1.6
Indicates if mode is read-only
Status: current Access: read-only
OBJECT-TYPE    
  TruthValue  

saHpiCtrlOemIsWriteOnly 1.3.6.1.4.1.18568.2.1.1.4.7.13.1.7
Indicates if Control is write-only
Status: current Access: read-only
OBJECT-TYPE    
  TruthValue  

saHpiCtrlOemManufacturerId 1.3.6.1.4.1.18568.2.1.1.4.7.13.1.8
This object represents the Oem's manufacturer ID for this Oem control. Refer to the textual convention for more details.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiManufacturerId  

saHpiCtrlOemDefaultConfigData 1.3.6.1.4.1.18568.2.1.1.4.7.13.1.9
This object represents the Oem control configuration data.
Status: current Access: read-only
OBJECT-TYPE    
  OCTET STRING Size(0..10)  

saHpiCtrlOemDefaultMId 1.3.6.1.4.1.18568.2.1.1.4.7.13.1.10
This object represents the Oem's manufacturer ID for this Oem control resource. Refer to the textual convention for more details.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiManufacturerId  

saHpiCtrlOemDefaultState 1.3.6.1.4.1.18568.2.1.1.4.7.13.1.11
This represents the Oem control state setting.
Status: current Access: read-only
OBJECT-TYPE    
  OCTET STRING Size(0..255)  

saHpiCtrlOemState 1.3.6.1.4.1.18568.2.1.1.4.7.13.1.12
This object allows to write to the Oem control state setting. You may not change the state of the control unless the Mode is set to manual(2). If a write is attempted when the mode is set to auto(1), SNMP will return an error-status of inconsistentValue. Note that the SNMP errors that are returned are mapped to the HPI errors that could be returned (errors above the value 6 are SNMPv2 or v3 protocol and are converted to genErr(1) for v1 protocol). SA_ERR_HPI_ERROR genErr(5) SA_ERR_HPI_UNSUPPORTED_API genErr(5) SA_ERR_HPI_BUSY genErr(5) SA_ERR_HPI_INTERNAL_ERROR genErr(5) SA_ERR_HPI_INVALID_CMD genErr(5) SA_ERR_HPI_TIMEOUT genErr(5) SA_ERR_HPI_OUT_OF_SPACE genErr(5) SA_ERR_HPI_OUT_OF_MEMORY genErr(5) SA_ERR_HPI_INVALID_PARAMS genErr(5) SA_ERR_HPI_INVALID_DATA wrongValue(10) SA_ERR_HPI_NOT_PRESENT inconsistentName(18) SA_ERR_HPI_NO_RESPONSE genErr(5) SA_ERR_HPI_DUPLICATE genErr(5) SA_ERR_HPI_INVALID_SESSION genErr(5) SA_ERR_HPI_INVALID_DOMAIN inconsistentName(18) SA_ERR_HPI_INVALID_RESOURCE inconsistentName(18) SA_ERR_HPI_INVALID_REQUEST genErr(5) SA_ERR_HPI_ENTITY_NOT_PRESENT inconsistentName(18) SA_ERR_HPI_READ_ONLY notWritable(9) SA_ERR_HPI_CAPABILITY genErr(5) SA_ERR_HPI_UNKNOWN genErr(5)
Status: current Access: read-write
OBJECT-TYPE    
  OCTET STRING Size(0..255)  

saHpiCtrlOemValue 1.3.6.1.4.1.18568.2.1.1.4.7.13.1.13
Reserved for Oem use
Status: current Access: read-only
OBJECT-TYPE    
  Unsigned32  

saHpiCtrlOemRDR 1.3.6.1.4.1.18568.2.1.1.4.7.13.1.14
Pointer to Resource Table for this Oem control.
Status: current Access: read-only
OBJECT-TYPE    
  RowPointer  

saHpiSensorActiveEntries 1.3.6.1.4.1.18568.2.1.1.4.9.1
The number of sensor resource data records in the system.
Status: current Access: read-only
OBJECT-TYPE    
  Gauge32  

saHpiSensorTable 1.3.6.1.4.1.18568.2.1.1.4.9.2
A table defining the static Sensor data found in the Sensor Resource Data Repository.
Status: current Access: not-accessible
OBJECT-TYPE    
  SEQUENCE OF  
    SaHpiSensorEntry

saHpiSensorEntry 1.3.6.1.4.1.18568.2.1.1.4.9.2.1
This is the sensor resource data record which describes all of the static data associated with a sensor.
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiSensorEntry  

saHpiSensorNum 1.3.6.1.4.1.18568.2.1.1.4.9.2.1.1
The sensor number.
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiInstrumentId  

saHpiSensorType 1.3.6.1.4.1.18568.2.1.1.4.9.2.1.2
Refer to the textual convention for more details.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiSensorType  

saHpiSensorCategory 1.3.6.1.4.1.18568.2.1.1.4.9.2.1.3
Sensors category. Sensor events contain an event category and event state. Depending on the event category, the event states take on different meanings for events generated by specific sensors. The generic(128) category can be used for discrete sensors which have state meanings other than those identified with other event categories.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiEventCategory  

saHpiSensorEnableCtrl 1.3.6.1.4.1.18568.2.1.1.4.9.2.1.4
True if HPI SNMP Manager can enable or disable sensor via saHpiSensorEnableSet.
Status: current Access: read-only
OBJECT-TYPE    
  TruthValue  

saHpiSensorEventCtrl 1.3.6.1.4.1.18568.2.1.1.4.9.2.1.5
This columnar object represents the sensor category control of events. The possible states are: perEvent - Event message control per event, or by entire sensor; sensor event enable status can be changed, and assert/deassert masks can be changed readOnlyMasks - Control for entire sensor only; sensor event enable status can be changed, but assert/deassert masks cannot be changed readOnly - Event control not supported; sensor event enable status cannot be changed and assert/deassert masks cannot be changed. Note: Enumerated values are increased by one value compared to SAI-HPI-B.01.01 section 8.5.
Status: current Access: read-only
OBJECT-TYPE    
  INTEGER undefined(0), perEvent(1), readOnlyMasks(2), readOnly(3)  

saHpiSensorSupportedEventStates 1.3.6.1.4.1.18568.2.1.1.4.9.2.1.6
Set of event states supported. For format and possible types, refer to SaHpiEventState.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiEventState  

saHpiSensorIsSupported 1.3.6.1.4.1.18568.2.1.1.4.9.2.1.7
Indicates if sensor data readings are supported.
Status: current Access: read-only
OBJECT-TYPE    
  TruthValue  

saHpiSensorReadingType 1.3.6.1.4.1.18568.2.1.1.4.9.2.1.8
Type of value for sensor reading.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiSensorReadingType  

saHpiSensorBaseUnits 1.3.6.1.4.1.18568.2.1.1.4.9.2.1.9
This columnar object provides the sensor data base units, (meters, etc.)
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiSensorUnits  

saHpiSensorModifierUnits 1.3.6.1.4.1.18568.2.1.1.4.9.2.1.10
This columnar object provides the sensor data modifier unit(s). Example unit = second, etc. Also see modifier use columnar object saHpiSensorModifierUse for further insight.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiSensorUnits  

saHpiSensorModifierUse 1.3.6.1.4.1.18568.2.1.1.4.9.2.1.11
Modifier Unit Use (m/sec, etc.). This type defines how the modifier unit is used. For example: base unit == meter, modifier unit == seconds, and modifier unit use == basicOverModifier(1). The resulting unit would be meters per second. Note: Enumerated values are increased by one value compared to SAI-HPI-B.01.01 section 8.5.
Status: current Access: read-only
OBJECT-TYPE    
  INTEGER undefined(0), none(1), basicOverModifier(2), basicTimesModifier(3)  

saHpiSensorPercentage 1.3.6.1.4.1.18568.2.1.1.4.9.2.1.12
Is the value a percentage.
Status: current Access: read-only
OBJECT-TYPE    
  TruthValue  

saHpiSensorRangeFlags 1.3.6.1.4.1.18568.2.1.1.4.9.2.1.13
Defines which range flags the sensor supports. The string tokens are MIN, MAX, NOMINAL, NORMAL_MAX, NORMAL_MIN, or nothing (NULL) if the sensor does not support any ranges. If more than one range is supported then the strings tokens are comma (',') or semicolon (';') delimited
Status: current Access: read-only
OBJECT-TYPE    
  OCTET STRING Size(0..255)  

saHpiSensorAccuracyFactor 1.3.6.1.4.1.18568.2.1.1.4.9.2.1.14
The Accuracy Factor is expressed as a floating point percentage (e.g. 0.05 = 5%) and represents statistically how close the measured reading is to the actual value. It is an interpreted value that figures in all sensor accuracies, resolutions, and tolerances.
Status: current Access: read-only
OBJECT-TYPE    
  Double  

saHpiSensorOem 1.3.6.1.4.1.18568.2.1.1.4.9.2.1.15
Reserved for Oem use.
Status: current Access: read-only
OBJECT-TYPE    
  Unsigned32  

saHpiSensorRDR 1.3.6.1.4.1.18568.2.1.1.4.9.2.1.16
Forward pointer to the Resource Data Repository OID.
Status: current Access: read-only
OBJECT-TYPE    
  RowPointer  

saHpiCurrentSensorStateTable 1.3.6.1.4.1.18568.2.1.1.4.9.3
A table definining current sensor readings and settings of a sensor.
Status: current Access: not-accessible
OBJECT-TYPE    
  SEQUENCE OF  
    SaHpiCurrentSensorStateEntry

saHpiCurrentSensorStateEntry 1.3.6.1.4.1.18568.2.1.1.4.9.3.1
This is the sensor dynamic data associated with sensors readings and event states.
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiCurrentSensorStateEntry  

saHpiCurrentSensorStateDataPresent 1.3.6.1.4.1.18568.2.1.1.4.9.3.1.1
reading(1) - This table contains only the sensor reading values. Refer to saHpiCurrentSensorStateType and saHpiCurrentSensorStateValue. SAI-HPI-b.01.01 IsSupported is set when a sensor reading/threshold value is available. eventState(2) - The sensor does not support reading values, instead events are available. Refer to saHpiCurrentSensorStateEventState. readingAndEventState(3) - The sensor supports both reading current values and events. Refer to saHpiCurrentSensorStateType, saHpiCurrentSensorStateValue, saHpiCurrentSensorStateEventState. noData(4) - The sensor does not support reading current values nor events. See SAI-HPI-B.01.01 SaHpiSensorReadingT, this columnar node is analogous to field 'IsSupported' in SaHpiSensorReadingT. 'IsSupported' is set when a sensor reading/threshold value is available. Otherwise, if no reading or threshold is supported, this flag is set to False.
Status: current Access: read-only
OBJECT-TYPE    
  INTEGER undefined(0), reading(1), eventState(2), readingAndEventState(3), noData(4)  

saHpiCurrentSensorStateType 1.3.6.1.4.1.18568.2.1.1.4.9.3.1.2
See Definition in TEXTUAL-CONVENTION.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiSensorReadingType  

saHpiCurrentSensorStateValue 1.3.6.1.4.1.18568.2.1.1.4.9.3.1.3
See Definition in TEXTUAL-CONVENTION.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiSensorReadingValue  

saHpiCurrentSensorStateEventState 1.3.6.1.4.1.18568.2.1.1.4.9.3.1.4
See Definition in TEXTUAL-CONVENTION.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiEventState  

saHpiCurrentSensorStateSensorEnable 1.3.6.1.4.1.18568.2.1.1.4.9.3.1.5
When reading, this object returns the current sensor enable status for an addressed sensor. When writing this object sets the sensor enable status for an addressed sensor. If a sensor is disabled, the rows in saHpiCurrentSensorState for that sensor will not be present, and no events will be generated for the sensor.
Status: current Access: read-write
OBJECT-TYPE    
  TruthValue  

saHpiCurrentSensorStateEventEnable 1.3.6.1.4.1.18568.2.1.1.4.9.3.1.6
When reading, this object returns the current sensor event enable status for an addressed sensor. When writing this object sets the sensor event enable status for an addressed sensor. If event generation for a sensor is disabled, no events will be generated as a result of the assertion or deassertion of any event state, regardless of the setting of the assert or deassert event masks for the sensor. If event generation for a sensor is enabled, events will be generated when event states are asserted or deasserted, according to the settings of the assert and deassert event masks for the sensor. Event states may still be read for a sensor even if event generation is disabled, by reading the saHpiCurrentSensorState table.
Status: current Access: read-write
OBJECT-TYPE    
  TruthValue  

saHpiCurrentSensorStateAssertAddEventMask 1.3.6.1.4.1.18568.2.1.1.4.9.3.1.7
A string values separated by a delimiter (see SaHpiEventState for more details) is returned by this object. A string value, seperated by a delimiter in the saHpiSesnorAssertEventMask indicates that an event will be generated by the sensor when the corresponding event state for that sensor changes from deasserted to asserted. Events will only be generated by the sensor if the appropriate saHpiSensorAssertEventMask or saHpiSensorDeassertEventMask events is set, sensor events are enabled, and the sensor is enabled. Remarks For sensors hosted by a resource that has the evtDeAsserts(14) flag set in its Resource Table , the assert and deassert event masks cannot be independently configured. Only this object can be set, and the saHpiSensorAssertEventMask values are used to determine which values to set or clear in both the assert event mask and deassert event mask for the sensor. If the sensor assert event masks change as a result of writing to this object , an event will be generated.
Status: current Access: read-write
OBJECT-TYPE    
  SaHpiEventState  

saHpiCurrentSensorStateAssertRemoveEventMask 1.3.6.1.4.1.18568.2.1.1.4.9.3.1.8
A string values seperated by a delimiter (see SaHpiEventState for more details) is returned by this object. A string value, separated by a delimiter in the saHpiSesnorAssertEventMask indicates that an event will be generated by the sensor when the corresponding event state for that sensor changes from deasserted to asserted. Events will only be generated by the sensor if the appropriate saHpiSensorAssertEventMask or saHpiSensorDeassertEventMask events is set, sensor events are enabled, and the sensor is enabled. Remarks For sensors hosted by a resource that has the evtDeAsserts(14) flag set in its Resource Table , the assert and deassert event masks cannot be independently configured. Only this object can be set, and the saHpiSensorAssertEventMask values are used to determine which values to set or clear in both the assert event mask and deassert event mask for the sensor. If the sensor assert event masks change as a result of writing to this object , an event will be generated.
Status: current Access: read-write
OBJECT-TYPE    
  SaHpiEventState  

saHpiCurrentSensorStateDeassertAddEventMask 1.3.6.1.4.1.18568.2.1.1.4.9.3.1.9
A string values seperated by a delimiter (see SaHpiEventState for more details) is returned by this object. A string value, seperated by a delimiter in the saHpiSensorDeassertEventMask indicates that an event will be generated by the sensor when the corresponding event state for that sensor changes from asserted to deasserted. Events will only be generated by the sensor if the appropriate saHpiSensorAssertEventMask or saHpiSensorDeassertEventMask events is set, sensor events are enabled, and the sensor is enabled. Remarks For sensors hosted by a resource that has the evtDeAsserts(14) flag set in its Repository Table , the assert and deassert event masks cannot be independently configured. Only saHpiSensorAssertEventMask object can set, and the saHpiAssertEventMask values are used to determine which values to set or clear in both the assert event mask and deassert event mask for the sensor. If the sensor deassert event masks change as a result of writing to this object , an event will be generated.
Status: current Access: read-write
OBJECT-TYPE    
  SaHpiEventState  

saHpiCurrentSensorStateDeassertRemoveEventMask 1.3.6.1.4.1.18568.2.1.1.4.9.3.1.10
A string values seperated by a delimiter (see SaHpiEventState for more details) is returned by this object. A string value, seperated by a delimiter in the saHpiSensorDeassertEventMask indicates that an event will be generated by the sensor when the corresponding event state for that sensor changes from asserted to deasserted. Events will only be generated by the sensor if the appropriate saHpiSensorAssertEventMask or saHpiSensorDeassertEventMask events is set, sensor events are enabled, and the sensor is enabled. Remarks For sensors hosted by a resource that has the evtDeAsserts(14) flag set in its Repository Table , the assert and deassert event masks cannot be independently configured. Only saHpiSensorAssertEventMask object can set, and the saHpiAssertEventMask values are used to determine which values to set or clear in both the assert event mask and deassert event mask for the sensor. If the sensor deassert event masks change as a result of writing to this object , an event will be generated.
Status: current Access: read-write
OBJECT-TYPE    
  SaHpiEventState  

saHpiSensorReadingMaxTable 1.3.6.1.4.1.18568.2.1.1.4.9.4
A table definining maximum sensor readings as defined in the sensor Resource Data Repository
Status: current Access: not-accessible
OBJECT-TYPE    
  SEQUENCE OF  
    SaHpiSensorReadingMaxEntry

saHpiSensorReadingMaxEntry 1.3.6.1.4.1.18568.2.1.1.4.9.4.1
This table contains the fields used to define the sensor SAHPI_SRF_MAX values. It is representative of the static data found in the SAI-HPI-B.01.01 sensor RDR records.
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiSensorReadingMaxEntry  

saHpiSensorReadingMaxIsSupported 1.3.6.1.4.1.18568.2.1.1.4.9.4.1.1
IsSupported is set when a sensor reading/threshold value is available. Otherwise, if no reading or threshold is supported, this flag is set to False.
Status: current Access: read-only
OBJECT-TYPE    
  TruthValue  

saHpiSensorReadingMaxType 1.3.6.1.4.1.18568.2.1.1.4.9.4.1.2
See Definition in TEXTUAL-CONVENTION.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiSensorReadingType  

saHpiSensorReadingMaxValue 1.3.6.1.4.1.18568.2.1.1.4.9.4.1.3
See Definition in TEXTUAL-CONVENTION.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiSensorReadingValue  

saHpiSensorReadingMinTable 1.3.6.1.4.1.18568.2.1.1.4.9.5
A table definining minimum sensor readings as defined in the sensor Resource Data Repository.
Status: current Access: not-accessible
OBJECT-TYPE    
  SEQUENCE OF  
    SaHpiSensorReadingMinEntry

saHpiSensorReadingMinEntry 1.3.6.1.4.1.18568.2.1.1.4.9.5.1
This table contains the fields used to define the sensor SAHPI_SRF_MIN values. It is representative of the static data found in the SAI-HPI-B.01.01 sensor RDR records.
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiSensorReadingMinEntry  

saHpiSensorReadingMinIsSupported 1.3.6.1.4.1.18568.2.1.1.4.9.5.1.1
IsSupported is set when a sensor reading/threshold value is available. Otherwise, if no reading or threshold is supported, this flag is set to False.
Status: current Access: read-only
OBJECT-TYPE    
  TruthValue  

saHpiSensorReadingMinType 1.3.6.1.4.1.18568.2.1.1.4.9.5.1.2
See Definition in TEXTUAL-CONVENTION.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiSensorReadingType  

saHpiSensorReadingMinValue 1.3.6.1.4.1.18568.2.1.1.4.9.5.1.3
See Definition in TEXTUAL-CONVENTION.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiSensorReadingValue  

saHpiSensorReadingNominalTable 1.3.6.1.4.1.18568.2.1.1.4.9.6
A table definining nominal sensor readings.
Status: current Access: not-accessible
OBJECT-TYPE    
  SEQUENCE OF  
    SaHpiSensorReadingNominalEntry

saHpiSensorReadingNominalEntry 1.3.6.1.4.1.18568.2.1.1.4.9.6.1
This table contains the fields used to define the sensor SAHPI_SRF_NOMINAL values. It is representative of the static data found in the SAI-HPI-B.01.01 sensor RDR records.
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiSensorReadingNominalEntry  

saHpiSensorReadingNominalIsSupported 1.3.6.1.4.1.18568.2.1.1.4.9.6.1.1
IsSupported is set when a sensor reading/threshold value is available. Otherwise, if no reading or threshold is supported, this flag is set to False.
Status: current Access: read-only
OBJECT-TYPE    
  TruthValue  

saHpiSensorReadingNominalType 1.3.6.1.4.1.18568.2.1.1.4.9.6.1.2
See Definition in TEXTUAL-CONVENTION.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiSensorReadingType  

saHpiSensorReadingNominalValue 1.3.6.1.4.1.18568.2.1.1.4.9.6.1.3
See Definition in TEXTUAL-CONVENTION.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiSensorReadingValue  

saHpiSensorReadingNormalMaxTable 1.3.6.1.4.1.18568.2.1.1.4.9.7
A table definining normal maximum sensor readings.
Status: current Access: not-accessible
OBJECT-TYPE    
  SEQUENCE OF  
    SaHpiSensorReadingNormalMaxEntry

saHpiSensorReadingNormalMaxEntry 1.3.6.1.4.1.18568.2.1.1.4.9.7.1
This table contains the fields used to define the sensor SAHPI_SRF_NORMAL_MAX values. It is representative of the static data found in the SAI-HPI-B.01.01 sensor RDR records.
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiSensorReadingNormalMaxEntry  

saHpiSensorReadingNormalMaxIsSupported 1.3.6.1.4.1.18568.2.1.1.4.9.7.1.1
IsSupported is set when a sensor reading/threshold value is available. Otherwise, if no reading or threshold is supported, this flag is set to False.
Status: current Access: read-only
OBJECT-TYPE    
  TruthValue  

saHpiSensorReadingNormalMaxType 1.3.6.1.4.1.18568.2.1.1.4.9.7.1.2
See Definition in TEXTUAL-CONVENTION.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiSensorReadingType  

saHpiSensorReadingNormalMaxValue 1.3.6.1.4.1.18568.2.1.1.4.9.7.1.3
See Definition in TEXTUAL-CONVENTION.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiSensorReadingValue  

saHpiSensorReadingNormalMinTable 1.3.6.1.4.1.18568.2.1.1.4.9.8
A table definining normal minimum sensor readings.
Status: current Access: not-accessible
OBJECT-TYPE    
  SEQUENCE OF  
    SaHpiSensorReadingNormalMinEntry

saHpiSensorReadingNormalMinEntry 1.3.6.1.4.1.18568.2.1.1.4.9.8.1
This table contains the fields used to define the sensor SAHPI_SRF_NORMAL_MIN values. It is representative of the static data found in the SAI-HPI-B.01.01 sensor RDR records.
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiSensorReadingNormalMinEntry  

saHpiSensorReadingNormalMinIsSupported 1.3.6.1.4.1.18568.2.1.1.4.9.8.1.1
IsSupported is set when a sensor reading/threshold value is available. Otherwise, if no reading or threshold is supported, this flag is set to False.
Status: current Access: read-only
OBJECT-TYPE    
  TruthValue  

saHpiSensorReadingNormalMinType 1.3.6.1.4.1.18568.2.1.1.4.9.8.1.2
See Definition in TEXTUAL-CONVENTION.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiSensorReadingType  

saHpiSensorReadingNormalMinValue 1.3.6.1.4.1.18568.2.1.1.4.9.8.1.3
See Definition in TEXTUAL-CONVENTION.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiSensorReadingValue  

saHpiSensorThdLowCriticalTable 1.3.6.1.4.1.18568.2.1.1.4.9.9
A table definining the lower critical threshold value. If SAI-HPI-B.01.01 SaHpiSensorThdDefnT field IsAccessible == FALSE then no threshold record is created. Also see saHpiCurrentSensorStateDataPresent for dependencies.
Status: current Access: not-accessible
OBJECT-TYPE    
  SEQUENCE OF  
    SaHpiSensorThdLowCriticalEntry

saHpiSensorThdLowCriticalEntry 1.3.6.1.4.1.18568.2.1.1.4.9.9.1
This is the sensor threshold data for lower critical thresholds.
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiSensorThdLowCriticalEntry  

saHpiSensorThdLowCriticalIsReadable 1.3.6.1.4.1.18568.2.1.1.4.9.9.1.1
Defines if sensor threshold information can be read.
Status: current Access: read-only
OBJECT-TYPE    
  TruthValue  

saHpiSensorThdLowCriticalIsWritable 1.3.6.1.4.1.18568.2.1.1.4.9.9.1.2
Defines if sensor threshold information can be written.
Status: current Access: read-only
OBJECT-TYPE    
  TruthValue  

saHpiSensorThdLowCriticalType 1.3.6.1.4.1.18568.2.1.1.4.9.9.1.3
See Definition in TEXTUAL-CONVENTION.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiSensorReadingType  

saHpiSensorThdLowCriticalValue 1.3.6.1.4.1.18568.2.1.1.4.9.9.1.4
See Definition in TEXTUAL-CONVENTION.
Status: current Access: read-write
OBJECT-TYPE    
  SaHpiSensorReadingValue  

saHpiSensorThdLowCriticalNonLinear 1.3.6.1.4.1.18568.2.1.1.4.9.9.1.5
This columnar object flag is set, hysteresis values are calculated at the nominal sensor value.
Status: current Access: read-only
OBJECT-TYPE    
  TruthValue  

saHpiSensorThdLowMajorTable 1.3.6.1.4.1.18568.2.1.1.4.9.10
A table definining the lower major threshold value. If SAI-HPI-B.01.01 SaHpiSensorThdDefnT field IsAccessible == FALSE then no threshold record is created. Also see saHpiCurrentSensorStateDataPresent for dependencies.
Status: current Access: not-accessible
OBJECT-TYPE    
  SEQUENCE OF  
    SaHpiSensorThdLowMajorEntry

saHpiSensorThdLowMajorEntry 1.3.6.1.4.1.18568.2.1.1.4.9.10.1
This is the sensor threshold data for lower major thresholds.
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiSensorThdLowMajorEntry  

saHpiSensorThdLowMajorIsReadable 1.3.6.1.4.1.18568.2.1.1.4.9.10.1.1
Defines if sensor threshold information can be read.
Status: current Access: read-only
OBJECT-TYPE    
  TruthValue  

saHpiSensorThdLowMajorIsWritable 1.3.6.1.4.1.18568.2.1.1.4.9.10.1.2
Defines if sensor threshold information can be written. If set to 'false(2)' writting to saHpiSensorThdLowMajorRaw and saHpiSensorThdLowMajorInterpreted will not change the threshold values.
Status: current Access: read-only
OBJECT-TYPE    
  TruthValue  

saHpiSensorThdLowMajorType 1.3.6.1.4.1.18568.2.1.1.4.9.10.1.3
See Definition in TEXTUAL-CONVENTION.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiSensorReadingType  

saHpiSensorThdLowMajorValue 1.3.6.1.4.1.18568.2.1.1.4.9.10.1.4
See Definition in TEXTUAL-CONVENTION.
Status: current Access: read-write
OBJECT-TYPE    
  SaHpiSensorReadingValue  

saHpiSensorThdLowMajorNonLinear 1.3.6.1.4.1.18568.2.1.1.4.9.10.1.5
This columnar object flag is set, hysteresis values are calculated at the nominal sensor value.
Status: current Access: read-only
OBJECT-TYPE    
  TruthValue  

saHpiSensorThdLowMinorTable 1.3.6.1.4.1.18568.2.1.1.4.9.11
A table definining the lower minor threshold value. If SAI-HPI-B.01.01 SaHpiSensorThdDefnT field IsAccessible == FALSE then no threshold record is created. Also see saHpiCurrentSensorStateDataPresent for dependencies.
Status: current Access: not-accessible
OBJECT-TYPE    
  SEQUENCE OF  
    SaHpiSensorThdLowMinorEntry

saHpiSensorThdLowMinorEntry 1.3.6.1.4.1.18568.2.1.1.4.9.11.1
Sensor threshold data for lower minor thresholds.
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiSensorThdLowMinorEntry  

saHpiSensorThdLowMinorIsReadable 1.3.6.1.4.1.18568.2.1.1.4.9.11.1.1
Defines if sensor threshold information can be read.
Status: current Access: read-only
OBJECT-TYPE    
  TruthValue  

saHpiSensorThdLowMinorIsWritable 1.3.6.1.4.1.18568.2.1.1.4.9.11.1.2
Defines if sensor threshold information can be written.
Status: current Access: read-only
OBJECT-TYPE    
  TruthValue  

saHpiSensorThdLowMinorType 1.3.6.1.4.1.18568.2.1.1.4.9.11.1.3
See Definition in TEXTUAL-CONVENTION.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiSensorReadingType  

saHpiSensorThdLowMinorValue 1.3.6.1.4.1.18568.2.1.1.4.9.11.1.4
See Definition in TEXTUAL-CONVENTION.
Status: current Access: read-write
OBJECT-TYPE    
  SaHpiSensorReadingValue  

saHpiSensorThdLowMinorNonLinear 1.3.6.1.4.1.18568.2.1.1.4.9.11.1.5
This columnar object flag is set, hysteresis values are calculated at the nominal sensor value.
Status: current Access: read-only
OBJECT-TYPE    
  TruthValue  

saHpiSensorThdUpCriticalTable 1.3.6.1.4.1.18568.2.1.1.4.9.12
A table definining the upper critical threshold value. If SAI-HPI-B.01.01 SaHpiSensorThdDefnT field IsAccessible == FALSE then no threshold record is created. Also see saHpiCurrentSensorStateDataPresent for dependencies.
Status: current Access: not-accessible
OBJECT-TYPE    
  SEQUENCE OF  
    SaHpiSensorThdUpCriticalEntry

saHpiSensorThdUpCriticalEntry 1.3.6.1.4.1.18568.2.1.1.4.9.12.1
Sensor threshold data for upper critical thresholds.
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiSensorThdUpCriticalEntry  

saHpiSensorThdUpCriticalIsReadable 1.3.6.1.4.1.18568.2.1.1.4.9.12.1.1
Defines if sensor threshold information can be read.
Status: current Access: read-only
OBJECT-TYPE    
  TruthValue  

saHpiSensorThdUpCriticalIsWritable 1.3.6.1.4.1.18568.2.1.1.4.9.12.1.2
Defines if sensor threshold information can be written.
Status: current Access: read-only
OBJECT-TYPE    
  TruthValue  

saHpiSensorThdUpCriticalType 1.3.6.1.4.1.18568.2.1.1.4.9.12.1.3
See Definition in TEXTUAL-CONVENTION.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiSensorReadingType  

saHpiSensorThdUpCriticalValue 1.3.6.1.4.1.18568.2.1.1.4.9.12.1.4
See Definition in TEXTUAL-CONVENTION.
Status: current Access: read-write
OBJECT-TYPE    
  SaHpiSensorReadingValue  

saHpiSensorThdUpCriticalNonLinear 1.3.6.1.4.1.18568.2.1.1.4.9.12.1.5
This columnar object flag is set, hysteresis values are calculated at the nominal sensor value.
Status: current Access: read-only
OBJECT-TYPE    
  TruthValue  

saHpiSensorThdUpMajorTable 1.3.6.1.4.1.18568.2.1.1.4.9.13
A table definining the upper major threshold value. If SAI-HPI-B.01.01 SaHpiSensorThdDefnT field IsAccessible == FALSE then no threshold record is created. Also see saHpiCurrentSensorStateDataPresent for dependencies.
Status: current Access: not-accessible
OBJECT-TYPE    
  SEQUENCE OF  
    SaHpiSensorThdUpMajorEntry

saHpiSensorThdUpMajorEntry 1.3.6.1.4.1.18568.2.1.1.4.9.13.1
Sensor threshold data for upper major thresholds.
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiSensorThdUpMajorEntry  

saHpiSensorThdUpMajorIsReadable 1.3.6.1.4.1.18568.2.1.1.4.9.13.1.1
Defines if sensor threshold information can be read
Status: current Access: read-only
OBJECT-TYPE    
  TruthValue  

saHpiSensorThdUpMajorIsWritable 1.3.6.1.4.1.18568.2.1.1.4.9.13.1.2
Defines if sensor threshold information can be written.
Status: current Access: read-only
OBJECT-TYPE    
  TruthValue  

saHpiSensorThdUpMajorType 1.3.6.1.4.1.18568.2.1.1.4.9.13.1.3
See Definition in TEXTUAL-CONVENTION.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiSensorReadingType  

saHpiSensorThdUpMajorValue 1.3.6.1.4.1.18568.2.1.1.4.9.13.1.4
See Definition in TEXTUAL-CONVENTION.
Status: current Access: read-write
OBJECT-TYPE    
  SaHpiSensorReadingValue  

saHpiSensorThdUpMajorNonLinear 1.3.6.1.4.1.18568.2.1.1.4.9.13.1.5
This columnar object flag is set, hysteresis values are calculated at the nominal sensor value.
Status: current Access: read-only
OBJECT-TYPE    
  TruthValue  

saHpiSensorThdUpMinorTable 1.3.6.1.4.1.18568.2.1.1.4.9.14
A table definining the upper minor threshold value. If SAI-HPI-B.01.01 SaHpiSensorThdDefnT field IsAccessible == FALSE then no threshold record is created. Also see saHpiCurrentSensorStateDataPresent for dependencies.
Status: current Access: not-accessible
OBJECT-TYPE    
  SEQUENCE OF  
    SaHpiSensorThdUpMinorEntry

saHpiSensorThdUpMinorEntry 1.3.6.1.4.1.18568.2.1.1.4.9.14.1
Sensor threshold data for upper minor thresholds.
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiSensorThdUpMinorEntry  

saHpiSensorThdUpMinorIsReadable 1.3.6.1.4.1.18568.2.1.1.4.9.14.1.1
Defines if sensor threshold information can be read.
Status: current Access: read-only
OBJECT-TYPE    
  TruthValue  

saHpiSensorThdUpMinorIsWritable 1.3.6.1.4.1.18568.2.1.1.4.9.14.1.2
Defines if sensor threshold information can be written.
Status: current Access: read-only
OBJECT-TYPE    
  TruthValue  

saHpiSensorThdUpMinorType 1.3.6.1.4.1.18568.2.1.1.4.9.14.1.3
See Definition in TEXTUAL-CONVENTION.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiSensorReadingType  

saHpiSensorThdUpMinorValue 1.3.6.1.4.1.18568.2.1.1.4.9.14.1.4
See Definition in TEXTUAL-CONVENTION.
Status: current Access: read-write
OBJECT-TYPE    
  SaHpiSensorReadingValue  

saHpiSensorThdUpMinorNonLinear 1.3.6.1.4.1.18568.2.1.1.4.9.14.1.5
This columnar object flag is set, hysteresis values are calculated at the nominal sensor value.
Status: current Access: read-only
OBJECT-TYPE    
  TruthValue  

saHpiSensorThdPosHysteresisTable 1.3.6.1.4.1.18568.2.1.1.4.9.15
A table definining the positive going hysteresis upper bound.
Status: current Access: not-accessible
OBJECT-TYPE    
  SEQUENCE OF  
    SaHpiSensorThdPosHysteresisEntry

saHpiSensorThdPosHysteresisEntry 1.3.6.1.4.1.18568.2.1.1.4.9.15.1
This is the sensor hysteresis data which defines hysteresis values at the positive upper bound.
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiSensorThdPosHysteresisEntry  

saHpiSensorThdPosHysteresisIsReadable 1.3.6.1.4.1.18568.2.1.1.4.9.15.1.1
Defines if sensor hysteresis information can be read.
Status: current Access: read-only
OBJECT-TYPE    
  TruthValue  

saHpiSensorThdPosHysteresisIsWritable 1.3.6.1.4.1.18568.2.1.1.4.9.15.1.2
Defines if sensor hysteresis information can be written.
Status: current Access: read-only
OBJECT-TYPE    
  TruthValue  

saHpiSensorThdPosHysteresisType 1.3.6.1.4.1.18568.2.1.1.4.9.15.1.3
See Definition in TEXTUAL-CONVENTION.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiSensorReadingType  

saHpiSensorThdPosHysteresisValue 1.3.6.1.4.1.18568.2.1.1.4.9.15.1.4
See Definition in TEXTUAL-CONVENTION.
Status: current Access: read-write
OBJECT-TYPE    
  SaHpiSensorReadingValue  

saHpiSensorThdPosHysteresisNonLinear 1.3.6.1.4.1.18568.2.1.1.4.9.15.1.5
This columnar object flag is set, hysteresis values are calculated at the nominal sensor value.
Status: current Access: read-only
OBJECT-TYPE    
  TruthValue  

saHpiSensorThdNegHysteresisTable 1.3.6.1.4.1.18568.2.1.1.4.9.16
A table definining the negative going hysteresis lower bound.
Status: current Access: not-accessible
OBJECT-TYPE    
  SEQUENCE OF  
    SaHpiSensorThdNegHysteresisEntry

saHpiSensorThdNegHysteresisEntry 1.3.6.1.4.1.18568.2.1.1.4.9.16.1
This is the sensor hysteresis data which defines hysteresis values at the negative lower bound for a given sensor.
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiSensorThdNegHysteresisEntry  

saHpiSensorThdNegHysteresisIsReadable 1.3.6.1.4.1.18568.2.1.1.4.9.16.1.1
Defines if sensor hysteresis information can be read.
Status: current Access: read-only
OBJECT-TYPE    
  TruthValue  

saHpiSensorThdNegHysteresisIsWritable 1.3.6.1.4.1.18568.2.1.1.4.9.16.1.2
Defines if sensor hysteresis information can be written.
Status: current Access: read-only
OBJECT-TYPE    
  TruthValue  

saHpiSensorThdNegHysteresisType 1.3.6.1.4.1.18568.2.1.1.4.9.16.1.3
See Definition in TEXTUAL-CONVENTION.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiSensorReadingType  

saHpiSensorThdNegHysteresisValue 1.3.6.1.4.1.18568.2.1.1.4.9.16.1.4
See Definition in TEXTUAL-CONVENTION.
Status: current Access: read-write
OBJECT-TYPE    
  SaHpiSensorReadingValue  

saHpiSensorThdNegHysteresisNonLinear 1.3.6.1.4.1.18568.2.1.1.4.9.16.1.5
This columnar object flag is set, hysteresis values are calculated at the nominal sensor value.
Status: current Access: read-only
OBJECT-TYPE    
  TruthValue  

saHpiInventoryActiveEntries 1.3.6.1.4.1.18568.2.1.1.4.8.1
The number of inventory resource data records managed by the underlying management system.
Status: current Access: read-only
OBJECT-TYPE    
  Gauge32  

saHpiInventoryTable 1.3.6.1.4.1.18568.2.1.1.4.8.2
Table defining static data associated with Inventory Repository Data Repository.
Status: current Access: not-accessible
OBJECT-TYPE    
  SEQUENCE OF  
    SaHpiInventoryEntry

saHpiInventoryEntry 1.3.6.1.4.1.18568.2.1.1.4.8.2.1
These structures are used to read and write inventory data to Inventory entity Data Repository (IDR). Each table row represents an IDR. All inventory data contained in an inventory data repository (IDR) must be represented in the RDR repository as an RDR record.
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiInventoryEntry  

saHpiInventoryId 1.3.6.1.4.1.18568.2.1.1.4.8.2.1.1
See TEXTUAL-CONVENTION 'SaHpiInstrumentId'
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiInstrumentId  

saHpiInventoryPersistent 1.3.6.1.4.1.18568.2.1.1.4.8.2.1.2
True indicates that updates to IDR are automatically and immediately persistent. False indicates that updates are not immediately persistent; but optionally may be persisted via saHpiParmControl function, as defined in implementation documentation.
Status: current Access: read-only
OBJECT-TYPE    
  TruthValue  

saHpiInventoryOem 1.3.6.1.4.1.18568.2.1.1.4.8.2.1.3
Oem value for the inventory record. This is manufacturer' specific value.
Status: current Access: read-only
OBJECT-TYPE    
  Unsigned32  

saHpiInventoryUpdateCount 1.3.6.1.4.1.18568.2.1.1.4.8.2.1.4
The count is incremented any time the IDR is changed.
Status: current Access: read-only
OBJECT-TYPE    
  Unsigned32  

saHpiInventoryIsReadOnly 1.3.6.1.4.1.18568.2.1.1.4.8.2.1.5
Describes if the IDR is read-only. If 'IsReadOnly is 'TRUE' then all 'areas' and 'fields' associated with Inventory Data Repository are also flagged as 'Read Only' in thier repsective columnar objects tracking this capability. An IDR with read-only elements does not allow additions, deletetions, or modifications of its elements.
Status: current Access: read-only
OBJECT-TYPE    
  TruthValue  

saHpiInventoryNumAreas 1.3.6.1.4.1.18568.2.1.1.4.8.2.1.6
Number of Area(s) contained in IDR
Status: current Access: read-only
OBJECT-TYPE    
  Unsigned32  

saHpiInventoryRDR 1.3.6.1.4.1.18568.2.1.1.4.8.2.1.7
Pointer to resource data record for this particular inventory resource data record
Status: current Access: read-only
OBJECT-TYPE    
  RowPointer  

saHpiAreaActiveEntries 1.3.6.1.4.1.18568.2.1.1.4.8.3
The number of inventory data records present on this system.
Status: current Access: read-only
OBJECT-TYPE    
  Gauge32  

saHpiAreaTable 1.3.6.1.4.1.18568.2.1.1.4.8.4
Table defining inventory data respository data area records.
Status: current Access: not-accessible
OBJECT-TYPE    
  SEQUENCE OF  
    SaHpiAreaEntry

saHpiAreaEntry 1.3.6.1.4.1.18568.2.1.1.4.8.4.1
These structures are used to read and write inventory data respository data area records. The four-tuple index value consits of: - saHpiDomainId, which is the domain of the resource - saHpiResourceId, the id value for the resource - saHpiIdrId, the id value of entity inventory - saHpiAreaId, the id value of inventory data area. SAI-HPI-B.01.01, section 7.4.
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiAreaEntry  

saHpiAreaId 1.3.6.1.4.1.18568.2.1.1.4.8.4.1.1
This is the HPI management user specified AreaId value. It is this value that is used in row 'createAndWait' function, which is synonomous with adding a new IDR 'Area.' See saHpiAreaRowStatus. See TEXTUAL-CONVENTION 'SaHpiInstrumentId.'
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiInstrumentId  

saHpiAreaIdIndex 1.3.6.1.4.1.18568.2.1.1.4.8.4.1.2
This columnar object is the value generated and utilized by the underlying system management implementation. This is the SAI-HPI-b.01.01 AreaId. See TEXTUAL-CONVENTION 'SaHpiInstrumentId'
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiInstrumentId  

saHpiAreaType 1.3.6.1.4.1.18568.2.1.1.4.8.4.1.3
The type of Area. New Area's are Created when 'saHpiIdrAreaType' is written with the appropriate index values's. Note: Enumerated values are increased by one value compared to SAI-HPI-B.01.01 spec.
Status: current Access: read-create
OBJECT-TYPE    
  INTEGER undefined(0), internalUse(177), chassisInfo(178), boardInfo(179), productInfo(180), oem(193), unspecified(256)  

saHpiAreaIsReadOnly 1.3.6.1.4.1.18568.2.1.1.4.8.4.1.4
This columnar object is informational only. Describes if an area is read-only. If it is set to 'FASLE' then a user can 'delete' this 'area' and add new 'fields.' If the 'IsReadOnly' is 'TRUE' then 'area' cannot be deleted nor have 'fields' added. Additionally, if an 'IsReadOnly' may be FALSE and a delete still may not be possibly if one or more of the 'area's' fields are flagged as read-only. If 'IsReadOnly' is 'FASLE' then all area 'fields' are flagged as 'read-only' as well.
Status: current Access: read-only
OBJECT-TYPE    
  TruthValue  

saHpiAreaRowStatus 1.3.6.1.4.1.18568.2.1.1.4.8.4.1.5
This columnar object contains the status of the row and also perform add and delete operations. The status column uses three defined values: - `active(1)', which indicates that the conceptual row is available for use by the managed device; - `notInService(2)', which indicates that the conceptual row exists in the agent, but is unavailable for use by the managed device (see NOTE below); 'notInService' has no implication regarding the internal consistency of the row, availability of resources, or consistency with the current state of the managed device. - `createAndWait(5)', which is supplied by a management station wishing to create a new instance of a conceptual row (but not make it available for use by the managed device). This function is used to add an Area to the specified Inventory Data Repository. The row is created (and changes state to 'active' when the saHpiAreaType has been correctly set) to a new instance of the conceptual row. The dis-allowed saHpiAreaType value is undefined(0) and unspecified(256). It is the responsibility of the caller to specify an AreadId that has not been previously assigned. The user specifies AreaId may or maynot be the same value as the under lying HPI system management service. The HPI assigned ID will be reflected in the columnar object 'saHpiAreaIdIndex'. - `destroy(6)', which is supplied by a management station wishing to delete all of the instances associated with an existing conceptual row. This function allows the HPI MIB User to delete an Inventory Data Area, including the Area header and all fields contained with the area, from a particular Inventory Data Repository. In some implementations, certain Areas are intrinsically read-only. The saHpiAreaIsReadOnly flag, indicates if the Area is read-only. If the Inventory Data Area is not read-only, but contains a Field that is read-only, the Area cannot be deleted. An attempt to delete an Area that contains a read-only Field will return an error.
Status: current Access: read-create
OBJECT-TYPE    
  RowStatus  

saHpiAreaNumDataFields 1.3.6.1.4.1.18568.2.1.1.4.8.4.1.6
Number of Fields contained in Area
Status: current Access: read-only
OBJECT-TYPE    
  Unsigned32  

saHpiFieldActiveEntries 1.3.6.1.4.1.18568.2.1.1.4.8.5
The number of inventory data repository field records.
Status: current Access: read-only
OBJECT-TYPE    
  Gauge32  

saHpiFieldTable 1.3.6.1.4.1.18568.2.1.1.4.8.6
Table defining inventory data repository field records.
Status: current Access: not-accessible
OBJECT-TYPE    
  SEQUENCE OF  
    SaHpiFieldEntry

saHpiFieldEntry 1.3.6.1.4.1.18568.2.1.1.4.8.6.1
These structures are used to read and write inventory data repository field records.
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiFieldEntry  

saHpiFieldId 1.3.6.1.4.1.18568.2.1.1.4.8.6.1.1
See TEXTUAL-CONVENTION 'SaHpiInstrumentId'. SubAgent created and maintained Index value. Do not confuse this with saHpiFieldIdIndex that is created and maintained by the underlying HPI library. See next column.
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiInstrumentId  

saHpiFieldIdIndex 1.3.6.1.4.1.18568.2.1.1.4.8.6.1.2
See TEXTUAL-CONVENTION 'SaHpiInstrumentId', Used to store the HPI generated AreaId, very important.
Status: current Access: read-only
OBJECT-TYPE    
  SaHpiInstrumentId  

saHpiFieldType 1.3.6.1.4.1.18568.2.1.1.4.8.6.1.3
Inventory Data Field type definitions. Note: Enumerated values are increased by one value compared to SAI-HPI-B spec.
Status: current Access: read-create
OBJECT-TYPE    
  INTEGER undefined(0), chassisType(1), mfgDatetime(2), manufacturer(3), productName(4), productVersion(5), serialNumber(6), partNumber(7), fileId(8), assetTag(9), custom(10), unspecified(256)  

saHpiFieldIsReadOnly 1.3.6.1.4.1.18568.2.1.1.4.8.6.1.4
Describes if an field is read-only. All field headers in a read-only IDR are flagged as read-only as well.
Status: current Access: read-only
OBJECT-TYPE    
  TruthValue  

saHpiFieldTextType 1.3.6.1.4.1.18568.2.1.1.4.8.6.1.5
Field Data. See Definition for SaHpiTextType for more details.
Status: current Access: read-create
OBJECT-TYPE    
  SaHpiTextType  

saHpiFieldTextLanguage 1.3.6.1.4.1.18568.2.1.1.4.8.6.1.6
Field Data. See Definition for SaHpiTextLanguage for more details.
Status: current Access: read-create
OBJECT-TYPE    
  SaHpiTextLanguage  

saHpiFieldText 1.3.6.1.4.1.18568.2.1.1.4.8.6.1.7
Field Data. The type of date is specified by saHpiResourceTagTextType and saHpiResourceTagLanguage.
Status: current Access: read-create
OBJECT-TYPE    
  SaHpiText  

saHpiFieldStatus 1.3.6.1.4.1.18568.2.1.1.4.8.6.1.8
This object provides a method to create and delete a Data Inventory Field. Supported states are: active(1), notInService(2), createAndWait(5), destroy(6) The status column has four defined values: - `active(1)', which indicates that the conceptual row is available for use by the managed device. For it to be in such state, the columnar objects: saHpiFieldType, saHpiFieldTextType, saHpiTextLanguage, and saHpiFieldText must have valid values. - `notInService(2)', which indicates that the conceptual row exists in the agent, but is unavailable for use by the managed device (see NOTE below); 'notInService' has no implication regarding the internal consistency of the row, availability of resources, or consistency with the current state of the managed device. - `createAndWait(5)', which is supplied by a management station wishing to create a new instance of a conceptual row. After setting this value, the management station is responsible of providing valid values to the columnar objects: saHpiFieldIsReadOnly, saHpiFieldType, saHpiFieldTextType, saHpiTextLanguage and saHpiFieldText. - `destroy(6)', which is supplied by a management station wishing to delete all of the instances associated with an existing conceptual row.
Status: current Access: read-create
OBJECT-TYPE    
  RowStatus  

saHpiWatchdogActiveEntries 1.3.6.1.4.1.18568.2.1.1.4.3
The number of watchdogs present on this system.
Status: current Access: read-only
OBJECT-TYPE    
  Gauge32  

saHpiWatchdogTable 1.3.6.1.4.1.18568.2.1.1.4.4
Table of static and dynamic watchdog information including watchdog RDR data. The dynamic data portion is necessary for control and operation of the watchdog timers.
Status: current Access: not-accessible
OBJECT-TYPE    
  SEQUENCE OF  
    SaHpiWatchdogEntry

saHpiWatchdogEntry 1.3.6.1.4.1.18568.2.1.1.4.4.1
When the 'Watchdog' capability is set in a resource, a watchdog with an identifier of SAHPI_DEFAULT_WATCHDOG_NUM(0), that is defined as 0, is required. All watchdogs shall be represented with an entry in saHpiWatchdogTable, including the initial watchdog with an identifier of SAHPI_DEFAULT_WATCHDOG_NUM(0).
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiWatchdogEntry  

saHpiWatchdogNum 1.3.6.1.4.1.18568.2.1.1.4.4.1.1
RPT entry for a resource indicates that it supports watchdog timers, then there must be at least one watchdog timer hosted by the resource, with the watchdog number of SAHPI_DEFAULT_WATCHDOG_NUM (0x00000). If additional watchdog timers are hosted by the resource, they may have any watchdog number, and may be located by watchdog records in the RDR repository. Note: The SAHPI_DEFAULT_WATCHDOG_NUM is defined as 0x0000000.
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiInstrumentId  

saHpiWatchdogLog 1.3.6.1.4.1.18568.2.1.1.4.4.1.2
If you read this object, it means: Log - indicates whether or not the Watchdog is configured to issue an event when it next times out. TRUE=event will be issued on timeout. If you set this object, it means: Log - indicates whether or not the Watchdog should issue an event when it next times out. TRUE=event will be issued on timeout. Setting this object will NOT take effect on the Watchdog until the object SaHpiWatchdogRunning is set to true(1).
Status: current Access: read-write
OBJECT-TYPE    
  TruthValue  

saHpiWatchdogRunning 1.3.6.1.4.1.18568.2.1.1.4.4.1.3
If you read this object, it means: Running - indicates whether or not the Watchdog is currently running or stopped. TRUE=Watchdog is running. If you set this object, it means: Running - indicates whether or not the Watchdog should be stopped before updating. TRUE = Watchdog is not stopped. If it is already stopped, it will remain stopped, but if it is running, it will continue to run, with the countdown timer reset to the new InitialCount. Note that there is a race condition possible with this setting, so it should be used with care. FALSE = Watchdog is stopped. After this object is called, a subsequent write to saHpiWatchdogTimerReset is required to start the timer.
Status: current Access: read-write
OBJECT-TYPE    
  TruthValue  

saHpiWatchdogTimerUseState 1.3.6.1.4.1.18568.2.1.1.4.4.1.4
If you read this object, it means: TimerUse - indicates the current use of the timer; one of five preset uses which was included on the last SET object request, or through some other implementation-dependent means to start the Watchdog timer. If you set this object, it means: TimerUse - indicates the current use of the timer. Will control which saHpiWatchdogTimerUseExpFlags is set if the timer expires Setting this object will NOT take effect on the Watchdog until the object SaHpiWatchdogRunning is set to true(1).
Status: current Access: read-write
OBJECT-TYPE    
  SaHpiWatchdogTimerUse  

saHpiWatchdogTimerAction 1.3.6.1.4.1.18568.2.1.1.4.4.1.5
Indicates what action will be taken when the Watchdog times out. Setting this object will NOT take effect on the Watchdog until the object SaHpiWatchdogRunning is set to true(1). Note: Enumerated values are increased by one value compared to SAI-HPI-B spec.
Status: current Access: read-write
OBJECT-TYPE    
  INTEGER undefined(0), noAction(1), reset(2), powerDown(3), powerCycle(4)  

saHpiWatchdogPretimerInterrupt 1.3.6.1.4.1.18568.2.1.1.4.4.1.6
PretimerInterrupt - indicates which action will be taken 'PreTimeoutInterval' seconds prior to Watchdog timer expiration. Setting this object will NOT take effect on the Watchdog until the object SaHpiWatchdogRunning is set to true(1).
Status: current Access: read-write
OBJECT-TYPE    
  SaHpiWatchdogPreTimerAction  

saHpiWatchdogPreTimeoutInterval 1.3.6.1.4.1.18568.2.1.1.4.4.1.7
PreTimeoutInterval indicates how many milliseconds prior to timer time out the PretimerInterrupt action will be taken. If 'PreTimeoutInterval' = 0, the PretimerInterrupt action will occur concurrently with 'TimerAction.' HPI implementations may not be able to support millisecond resolution and may have a maximum value restriction. These restrictions should be documented by the provider of the HPI interface. Setting this object will NOT take effect on the Watchdog until the object SaHpiWatchdogRunning is set to true(1).
Status: current Access: read-write
OBJECT-TYPE    
  Unsigned32  

saHpiWatchdogTimerUseExpFlags 1.3.6.1.4.1.18568.2.1.1.4.4.1.8
Set of values seperated by a delimiter. For each value set, the corresponding Timer Use Expiration Flag will be CLEARED. Generally, a program should only clear the Timer Use Expiration Flag corresponding to its own TimerUse, so that other software, which may have used the timer for another purpose in the past can still read its TimerUseExpFlag to determine whether or not the timer expired during that use. The values are: EXP_BIOS_FRB2 EXP_BIOS_POST EXP_OS_LOAD EXP_SMS_OS EXP_OEM Setting this object will NOT take effect on the Watchdog until the object SaHpiWatchdogRunning is set to true(1).
Status: current Access: read-write
OBJECT-TYPE    
  OCTET STRING Size(0..56)  

saHpiWatchdogTimerInitialCount 1.3.6.1.4.1.18568.2.1.1.4.4.1.9
InitialCount - The time, in milliseconds, before the timer will time out after a SaHpiWatchdogTimerReset() function call is made, or some other implementation-dependent strobe is sent to the Watchdog. HPI implementations may not be able to support millisecond resolution and may have a maximum value restriction. These restrictions should be documented by the provider of the HPI interface. Setting this object will NOT take effect on the Watchdog until the object SaHpiWatchdogRunning is set to true(1).
Status: current Access: read-write
OBJECT-TYPE    
  Unsigned32  

saHpiWatchdogTimerPresentCount 1.3.6.1.4.1.18568.2.1.1.4.4.1.10
PresentCount - The remaining time in milliseconds before the timer will time out unless a SaHpiWatchdogTimerReset() function call is made, or some other implementation- dependent strobe is sent to the Watchdog. HPI implementations may not be able to support millisecond resolution on watchdog timers, but will return the number of clock ticks remaining times the number of milliseconds between each tick. Setting this object will NOT take effect on the Watchdog until the object SaHpiWatchdogRunning is set to true(1).
Status: current Access: read-write
OBJECT-TYPE    
  Unsigned32  

saHpiWatchdogTimerReset 1.3.6.1.4.1.18568.2.1.1.4.4.1.11
This object provides a method to start or restart the watchdog timer from the initial countdown value. Setting this to true(1) will 'strobe' the counter and reset to the initial countdown value as specified in saHpiWatchdogTimerInitialCount. Setting this object will NOT take effect on the Watchdog until the object SaHpiWatchdogRunning is set to true(1).
Status: current Access: read-write
OBJECT-TYPE    
  TruthValue  

saHpiWatchdogOem 1.3.6.1.4.1.18568.2.1.1.4.4.1.12
Reserved for Oem use
Status: current Access: read-only
OBJECT-TYPE    
  Unsigned32  

saHpiWatchdogRDR 1.3.6.1.4.1.18568.2.1.1.4.4.1.13
Forward pointer to the Resource Data Repository OID.
Status: current Access: read-only
OBJECT-TYPE    
  RowPointer  

saHpiAnnunciatorActiveEntries 1.3.6.1.4.1.18568.2.1.1.4.5
The number of annunciators present on this system.
Status: current Access: read-only
OBJECT-TYPE    
  Gauge32  

saHpiAnnunciatorTable 1.3.6.1.4.1.18568.2.1.1.4.6
Table of static Annunciator resource data record information and dynamic control data. The columnar object 'saHpiAnnunciatorMode' is in support of SAI-HPI-B.01.01 sections 7.6.6 and 7.6.7 and is representative of the dynamic control data found in this table.
Status: current Access: not-accessible
OBJECT-TYPE    
  SEQUENCE OF  
    SaHpiAnnunciatorEntry

saHpiAnnunciatorEntry 1.3.6.1.4.1.18568.2.1.1.4.6.1
The Annunciator table is used to control the set of annunciators associated with a resource. An Annunciator management instrument holds a set of individual announcements. The function of the Annunciator is to communicate the contents of its current set via whatever platform-specific mechanism is associated with that particular Annunciator management instrument. For example, if announcements are to be communicated via lighting a set of LEDs on a front-panel display, the Annunciator management instrument may analyze its current set of announcements and turn on a single LED reflecting the most severe condition found, or turn on a 'System Ok' LED if there are currently no items in the set. A different Annunciator may continuously scroll each announcement in its set on a text display, as well as turning on LEDs and setting dry-contact relays to reflect the severity of conditions present. A third Annunciator may announce items in its set by sending messages to a proprietary management system, or by sending emails or pages to a system technician. The Annunciator provides a common interface to these varied mechanisms for announcing conditions, so the HPI SNMP Manager is not burdened by platform-to-platform differences. However, the current content of any annunciator management instrument is not defined by the HPI standard in the same way that the contents of the DAT are defined. Thus, the HPI implementation and HPI SNMP Manager's can exert more control over what conditions should be announced. Further, a platform can contain multiple Annunciator management instruments, each reflecting a different physical announcement device in the platform. By exposing each separately, HPI SNMP Manager's and the HPI implementation can control which conditions are handled by each announcement device. An Annunciator management instrument may be implemented using other HPI controls that are in 'auto' mode; for example, digital controls to turn LEDs on and off, stream controls to sound audible alerts, and/or text controls to display detailed information. However, Annunciators may also operate directly to report conditions using mechanisms that are not themselves visible directly in the HPI interface. Over time, announcements are added to and deleted from an Annunciator`s current set of announcements. This may be done automatically by the HPI implementation to reflect platform fault conditions, or by the HPI SNMP Manager via the HPI interface. When announcements are added or deleted automatically by the HPI implementation, it is implementation-specific which announcements are added or removed.
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiAnnunciatorEntry  

saHpiAnnunciatorNum 1.3.6.1.4.1.18568.2.1.1.4.6.1.1
Unique Number identifying each annunciator.
Status: current Access: not-accessible
OBJECT-TYPE    
  SaHpiInstrumentId  

saHpiAnnunciatorType 1.3.6.1.4.1.18568.2.1.1.4.6.1.2
The following enumerated type defines the possible output types which can be associated with an Annunciator Management Instrument. Note: Enumerated values are increased by one value compared to SAI-HPI-B spec.
Status: current Access: read-only
OBJECT-TYPE    
  INTEGER undefined(0), led(1), dryContactClosure(2), audible(3), lcdDisplay(4), message(5), composite(6), oem(7)  

saHpiAnnunciatorModeReadOnly 1.3.6.1.4.1.18568.2.1.1.4.6.1.3
if True, Mode may not be changed by HPI SNMP Manager.
Status: current Access: read-only
OBJECT-TYPE    
  TruthValue  

saHpiAnnunciatorMaxConditions 1.3.6.1.4.1.18568.2.1.1.4.6.1.4
Maximum number of conditions that can be held in current set. 0 means no fixed limit.
Status: current Access: read-only
OBJECT-TYPE    
  Unsigned32  

saHpiAnnunciatorMode 1.3.6.1.4.1.18568.2.1.1.4.6.1.5
The Annunciator management instrument has a current mode that indicates whether announcements are added and removed automatically by the HPI implementation, by the HPI SNMP Manager, or both. The mode may be set to one of three values, with the following meanings: auto(1) - the HPI implementation automatically adds and deletes announcements; the HPI SNMP Manager is not permitted to add or delete announcements. user(2) - the HPI SNMP Manager may add and delete announcements; the HPI implementation will not automatically add or delete announcements. shared(3) - the HPI implementation automatically adds and deletes announcements, and the HPI SNMP Manager may also add and delete announcements. The initial mode of each Annunciator is implementation-specific. The HPI User may change the mode of Annunciators with the saHpiAnnunciatorMode object. However, the mode may be configured to be Read-only, in which case the HPI User will not be able to change the mode. When the mode is user(2) or shared(3), HPI SNMP Managers may add or delete any types of announcements in the Annunciator's current set - not just HPI SNMP Manager announcements. This is allowed so that the HPI SNMP Manager can exert complete control over what conditions are being announced, if that is required. Note that this is less restrictive than the similar operations on the DAT. To distinguish between announcements added to an Annunciator automatically and those added by an HPI SNMP Manager, an saHpiAddedByUser field in the announcement indicates the source of the announcement in the set. Note: Enumerated values are increased by one value compared to SAI-HPI-B.01.01 spec.
Status: current Access: read-write
OBJECT-TYPE    
  INTEGER undefined(0), auto(1), user(2), shared(3)  

saHpiAnnunciatorOem 1.3.6.1.4.1.18568.2.1.1.4.6.1.6
Maximum number of conditions that can be held in current set. 0 means no fixed limit. if True, Mode may not be changed by HPI SNMP Manager.
Status: current Access: read-only
OBJECT-TYPE    
  Unsigned32  

saHpiAnnunciatorRDR 1.3.6.1.4.1.18568.2.1.1.4.6.1.7
Forward pointer to the Resource Data Repository OID.
Status: current Access: read-only
OBJECT-TYPE    
  RowPointer  

hpiNotificationPrefix 1.3.6.1.4.1.18568.2.1.1.5.0
OBJECT IDENTIFIER    

saHpiSensorNotification 1.3.6.1.4.1.18568.2.1.1.5.0.1
Sensor event notification.
Status: current Access: read-only
NOTIFICATION-TYPE    

saHpiSensorEnableChangeNotification 1.3.6.1.4.1.18568.2.1.1.5.0.2
Sensor enable change event notification.
Status: current Access: read-only
NOTIFICATION-TYPE    

saHpiResourceNotification 1.3.6.1.4.1.18568.2.1.1.5.0.3
Resource failure/restoration event notifications.
Status: current Access: read-only
NOTIFICATION-TYPE    

saHpiDomainNotification 1.3.6.1.4.1.18568.2.1.1.5.0.4
Domain events are used to announce the addition of domain references and the removal of domain references to the DRT.
Status: current Access: read-only
NOTIFICATION-TYPE    

saHpiWatchdogNotification 1.3.6.1.4.1.18568.2.1.1.5.0.5
Watchdog notification.
Status: current Access: read-only
NOTIFICATION-TYPE    

saHpiHotSwapNotification 1.3.6.1.4.1.18568.2.1.1.5.0.6
Hot swap notification.
Status: current Access: read-only
NOTIFICATION-TYPE    

saHpiSoftwareNotification 1.3.6.1.4.1.18568.2.1.1.5.0.7
Audit events report a discrepancy in the audit process. Audits are typically performed by HA software to detect problems. Audits may look for such things as corrupted data stores, inconsistent RPT information, or improperly managed queues. Startup events report a failure to start-up properly, or inconsistencies in persisted data.
Status: current Access: read-only
NOTIFICATION-TYPE    

saHpiOemNotification 1.3.6.1.4.1.18568.2.1.1.5.0.8
Oem event notifications.
Status: current Access: read-only
NOTIFICATION-TYPE    

saHpiUserNotification 1.3.6.1.4.1.18568.2.1.1.5.0.9
User events may be used for storing custom events created by an HPI User when injecting events into the Event Log using saHpiEventLogEntryAdd().
Status: current Access: read-only
NOTIFICATION-TYPE    

hpiGroups 1.3.6.1.4.1.18568.2.1.1.6.1
OBJECT IDENTIFIER    

hpiCompliances 1.3.6.1.4.1.18568.2.1.1.6.2
OBJECT IDENTIFIER    

saHpiCompliance 1.3.6.1.4.1.18568.2.1.1.6.2.1
The compliance statement for SNMP hardware platform entities.
Status: current Access: read-only
MODULE-COMPLIANCE    

saHpiDomainInfoGroup 1.3.6.1.4.1.18568.2.1.1.6.1.1
saHpiDomainInfo table.
Status: current Access: read-only
OBJECT-GROUP    

saHpiDomainReferenceGroup 1.3.6.1.4.1.18568.2.1.1.6.1.2
saHpiDomainReference table.
Status: current Access: read-only
OBJECT-GROUP    

saHpiDomainAlarmGroup 1.3.6.1.4.1.18568.2.1.1.6.1.3
saHpiDomainAlarm table.
Status: current Access: read-only
OBJECT-GROUP    

saHpiResourceGroup 1.3.6.1.4.1.18568.2.1.1.6.1.4
saHpiResource table.
Status: current Access: read-only
OBJECT-GROUP    

saHpiAutoInsertTimeoutGroup 1.3.6.1.4.1.18568.2.1.1.6.1.5
saHpiAutoInsertTimeout table.
Status: current Access: read-only
OBJECT-GROUP    

saHpiHotSwapGroup 1.3.6.1.4.1.18568.2.1.1.6.1.6
saHpiHotSwap table.
Status: current Access: read-only
OBJECT-GROUP    

saHpiEventGroup 1.3.6.1.4.1.18568.2.1.1.6.1.7
saHpiEvent table.
Status: current Access: read-only
OBJECT-GROUP    

saHpiResourceEventGroup 1.3.6.1.4.1.18568.2.1.1.6.1.8
saHpiResourceEvent table.
Status: current Access: read-only
OBJECT-GROUP    

saHpiDomainEventGroup 1.3.6.1.4.1.18568.2.1.1.6.1.9
saHpiDomainEvent table.
Status: current Access: read-only
OBJECT-GROUP    

saHpiSensorEventGroup 1.3.6.1.4.1.18568.2.1.1.6.1.10
saHpiSensorEvent table.
Status: current Access: read-only
OBJECT-GROUP    

saHpiSensorEnableChangeEventGroup 1.3.6.1.4.1.18568.2.1.1.6.1.11
saHpiSensorEnableChangeEvent table.
Status: current Access: read-only
OBJECT-GROUP    

saHpiHotSwapEventGroup 1.3.6.1.4.1.18568.2.1.1.6.1.12
saHpiHotSwapEvent table.
Status: current Access: read-only
OBJECT-GROUP    

saHpiWatchdogEventGroup 1.3.6.1.4.1.18568.2.1.1.6.1.13
saHpiWatchdogEvent table.
Status: current Access: read-only
OBJECT-GROUP    

saHpiSoftwareEventGroup 1.3.6.1.4.1.18568.2.1.1.6.1.14
saHpiSoftwareEvent table.
Status: current Access: read-only
OBJECT-GROUP    

saHpiOemEventGroup 1.3.6.1.4.1.18568.2.1.1.6.1.15
saHpiOemEvent table.
Status: current Access: read-only
OBJECT-GROUP    

saHpiUserEventGroup 1.3.6.1.4.1.18568.2.1.1.6.1.16
saHpiUserEvent table.
Status: current Access: read-only
OBJECT-GROUP    

saHpiAnnouncementGroup 1.3.6.1.4.1.18568.2.1.1.6.1.17
saHpiAnnouncement table.
Status: current Access: read-only
OBJECT-GROUP    

saHpiEventLogInfoGroup 1.3.6.1.4.1.18568.2.1.1.6.1.18
saHpiEventLogInfo table.
Status: current Access: read-only
OBJECT-GROUP    

saHpiEventLogGroup 1.3.6.1.4.1.18568.2.1.1.6.1.19
saHpiEventLog table.
Status: current Access: read-only
OBJECT-GROUP    

saHpiResourceEventLogGroup 1.3.6.1.4.1.18568.2.1.1.6.1.20
saHpiResourceEventLog table.
Status: current Access: read-only
OBJECT-GROUP    

saHpiDomainEventLogGroup 1.3.6.1.4.1.18568.2.1.1.6.1.21
saHpiDomainEventLog table.
Status: current Access: read-only
OBJECT-GROUP    

saHpiSensorEventLogGroup 1.3.6.1.4.1.18568.2.1.1.6.1.22
saHpiSensorEventLog table.
Status: current Access: read-only
OBJECT-GROUP    

saHpiSensorEnableChangeEventLogGroup 1.3.6.1.4.1.18568.2.1.1.6.1.23
saHpiSensorEnableChangeEventLog table.
Status: current Access: read-only
OBJECT-GROUP    

saHpiHotSwapEventLogGroup 1.3.6.1.4.1.18568.2.1.1.6.1.24
saHpiHotSwapEventLog table.
Status: current Access: read-only
OBJECT-GROUP    

saHpiWatchdogEventLogGroup 1.3.6.1.4.1.18568.2.1.1.6.1.25
saHpiWatchdogEventLog table.
Status: current Access: read-only
OBJECT-GROUP    

saHpiSoftwareEventLogGroup 1.3.6.1.4.1.18568.2.1.1.6.1.26
saHpiSoftwareEventLog table.
Status: current Access: read-only
OBJECT-GROUP    

saHpiOemEventLogGroup 1.3.6.1.4.1.18568.2.1.1.6.1.27
saHpiOemEventLog table.
Status: current Access: read-only
OBJECT-GROUP    

saHpiUserEventLogGroup 1.3.6.1.4.1.18568.2.1.1.6.1.28
saHpiUserEventLog table.
Status: current Access: read-only
OBJECT-GROUP    

saHpiRdrGroup 1.3.6.1.4.1.18568.2.1.1.6.1.29
saHpiRdr table.
Status: current Access: read-only
OBJECT-GROUP    

saHpiCtrlDigitalGroup 1.3.6.1.4.1.18568.2.1.1.6.1.30
saHpiCtrlDigital table.
Status: current Access: read-only
OBJECT-GROUP    

saHpiCtrlDiscreteGroup 1.3.6.1.4.1.18568.2.1.1.6.1.31
saHpiCtrlDiscrete table.
Status: current Access: read-only
OBJECT-GROUP    

saHpiCtrlAnalogGroup 1.3.6.1.4.1.18568.2.1.1.6.1.32
saHpiCtrlAnalog table.
Status: current Access: read-only
OBJECT-GROUP    

saHpiCtrlStreamGroup 1.3.6.1.4.1.18568.2.1.1.6.1.33
saHpiCtrlStream table.
Status: current Access: read-only
OBJECT-GROUP    

saHpiCtrlTextGroup 1.3.6.1.4.1.18568.2.1.1.6.1.34
saHpiCtrlText table.
Status: current Access: read-only
OBJECT-GROUP    

saHpiCtrlOemGroup 1.3.6.1.4.1.18568.2.1.1.6.1.35
saHpiCtrlOem table.
Status: current Access: read-only
OBJECT-GROUP    

saHpiSensorGroup 1.3.6.1.4.1.18568.2.1.1.6.1.36
saHpiSensor table.
Status: current Access: read-only
OBJECT-GROUP    

saHpiCurrentSensorStateGroup 1.3.6.1.4.1.18568.2.1.1.6.1.37
saHpiCurrentSensorState table.
Status: current Access: read-only
OBJECT-GROUP    

saHpiSensorReadingMaxGroup 1.3.6.1.4.1.18568.2.1.1.6.1.38
saHpiSensorReadingMax table.
Status: current Access: read-only
OBJECT-GROUP    

saHpiSensorReadingMinGroup 1.3.6.1.4.1.18568.2.1.1.6.1.39
saHpiSensorReadingMin table.
Status: current Access: read-only
OBJECT-GROUP    

saHpiSensorReadingNominalGroup 1.3.6.1.4.1.18568.2.1.1.6.1.40
saHpiSensorReadingNominal table.
Status: current Access: read-only
OBJECT-GROUP    

saHpiSensorReadingNormalMaxGroup 1.3.6.1.4.1.18568.2.1.1.6.1.41
saHpiSensorReadingNormalMax table.
Status: current Access: read-only
OBJECT-GROUP    

saHpiSensorReadingNormalMinGroup 1.3.6.1.4.1.18568.2.1.1.6.1.42
saHpiSensorReadingNormalMin table.
Status: current Access: read-only
OBJECT-GROUP    

saHpiSensorThdLowCriticalGroup 1.3.6.1.4.1.18568.2.1.1.6.1.43
saHpiSensorThdLowCritical table.
Status: current Access: read-only
OBJECT-GROUP    

saHpiSensorThdLowMajorGroup 1.3.6.1.4.1.18568.2.1.1.6.1.44
saHpiSensorThdLowMajor table.
Status: current Access: read-only
OBJECT-GROUP    

saHpiSensorThdLowMinorGroup 1.3.6.1.4.1.18568.2.1.1.6.1.45
saHpiSensorThdLowMinor table.
Status: current Access: read-only
OBJECT-GROUP    

saHpiSensorThdUpCriticalGroup 1.3.6.1.4.1.18568.2.1.1.6.1.46
saHpiSensorThdUpCritical table.
Status: current Access: read-only
OBJECT-GROUP    

saHpiSensorThdUpMajorGroup 1.3.6.1.4.1.18568.2.1.1.6.1.47
saHpiSensorThdUpMajor table.
Status: current Access: read-only
OBJECT-GROUP    

saHpiSensorThdUpMinorGroup 1.3.6.1.4.1.18568.2.1.1.6.1.48
saHpiSensorThdUpMinor table.
Status: current Access: read-only
OBJECT-GROUP    

saHpiSensorThdPosHysteresisGroup 1.3.6.1.4.1.18568.2.1.1.6.1.49
saHpiSensorThdPosHysteresis table.
Status: current Access: read-only
OBJECT-GROUP    

saHpiSensorThdNegHysteresisGroup 1.3.6.1.4.1.18568.2.1.1.6.1.50
saHpiSensorThdNegHysteresis table.
Status: current Access: read-only
OBJECT-GROUP    

saHpiInventoryGroup 1.3.6.1.4.1.18568.2.1.1.6.1.51
saHpiInventory table.
Status: current Access: read-only
OBJECT-GROUP    

saHpiAreaGroup 1.3.6.1.4.1.18568.2.1.1.6.1.52
saHpiArea table.
Status: current Access: read-only
OBJECT-GROUP    

saHpiFieldGroup 1.3.6.1.4.1.18568.2.1.1.6.1.53
saHpiField table.
Status: current Access: read-only
OBJECT-GROUP    

saHpiWatchdogGroup 1.3.6.1.4.1.18568.2.1.1.6.1.54
saHpiWatchdog table.
Status: current Access: read-only
OBJECT-GROUP    

saHpiAnnunciatorGroup 1.3.6.1.4.1.18568.2.1.1.6.1.55
saHpiAnnunciator table.
Status: current Access: read-only
OBJECT-GROUP    

saHpiNotificationGroup 1.3.6.1.4.1.18568.2.1.1.6.1.56
Notification group.
Status: current Access: read-only
NOTIFICATION-GROUP    

saHpiAdministrationGroup 1.3.6.1.4.1.18568.2.1.1.6.1.57
Administration group.
Status: current Access: read-only
OBJECT-GROUP