From 7de4a3572fe925c47f72328af4fe885cbefbd641 Mon Sep 17 00:00:00 2001 From: alexquali Date: Fri, 26 Jan 2024 00:32:20 +0100 Subject: [PATCH] discovery, powerOn, powerOff, powerCycle functionality was added --- .github/workflows/deploy-package.yml | 2 +- .github/workflows/github-release.yml | 2 +- .github/workflows/package.yml | 2 +- .pre-commit-config.yaml | 13 +- cloudshell/{template => raritan}/__init__.py | 0 cloudshell/raritan/autoload/__init__.py | 3 + .../raritan/autoload/mibs/PDU2-MIB.json | 25658 ++++++++++++++++ cloudshell/raritan/cli/__init__.py | 3 + .../raritan/cli/raritan_cli_configurator.py | 70 + .../raritan/cli/raritan_command_modes.py | 44 + .../raritan/command_actions/__init__.py | 3 + .../enable_disable_snmp_actions.py | 64 + .../raritan/command_actions/system_actions.py | 71 + .../raritan/command_templates/__init__.py | 3 + .../snmp_configuration_templates.py | 24 + .../command_templates/system_templates.py | 16 + cloudshell/raritan/flows/__init__.py | 3 + .../raritan/flows/raritan_autoload_flow.py | 48 + .../flows/raritan_enable_disable_snmp_flow.py | 98 + .../flows/raritan_outlets_state_flow.py | 37 + cloudshell/raritan/helpers/__init__.py | 3 + cloudshell/raritan/helpers/errors.py | 13 + cloudshell/template/a.py | 1 - cloudshell/template/package.py | 7 - requirements.txt | 9 +- setup.py | 14 +- tests/cloudshell/raritan/__init__.py | 0 .../raritan/command_actions/__init__.py | 0 .../command_actions/test_system_actions.py | 107 + tests/cloudshell/test_package.py | 5 - tox.ini | 8 +- version.txt | 2 +- 32 files changed, 26293 insertions(+), 40 deletions(-) rename cloudshell/{template => raritan}/__init__.py (100%) create mode 100644 cloudshell/raritan/autoload/__init__.py create mode 100644 cloudshell/raritan/autoload/mibs/PDU2-MIB.json create mode 100644 cloudshell/raritan/cli/__init__.py create mode 100644 cloudshell/raritan/cli/raritan_cli_configurator.py create mode 100644 cloudshell/raritan/cli/raritan_command_modes.py create mode 100644 cloudshell/raritan/command_actions/__init__.py create mode 100644 cloudshell/raritan/command_actions/enable_disable_snmp_actions.py create mode 100644 cloudshell/raritan/command_actions/system_actions.py create mode 100644 cloudshell/raritan/command_templates/__init__.py create mode 100644 cloudshell/raritan/command_templates/snmp_configuration_templates.py create mode 100644 cloudshell/raritan/command_templates/system_templates.py create mode 100644 cloudshell/raritan/flows/__init__.py create mode 100644 cloudshell/raritan/flows/raritan_autoload_flow.py create mode 100644 cloudshell/raritan/flows/raritan_enable_disable_snmp_flow.py create mode 100644 cloudshell/raritan/flows/raritan_outlets_state_flow.py create mode 100644 cloudshell/raritan/helpers/__init__.py create mode 100644 cloudshell/raritan/helpers/errors.py delete mode 100644 cloudshell/template/a.py delete mode 100644 cloudshell/template/package.py create mode 100644 tests/cloudshell/raritan/__init__.py create mode 100644 tests/cloudshell/raritan/command_actions/__init__.py create mode 100644 tests/cloudshell/raritan/command_actions/test_system_actions.py delete mode 100644 tests/cloudshell/test_package.py diff --git a/.github/workflows/deploy-package.yml b/.github/workflows/deploy-package.yml index 0a5e215..025eb4c 100644 --- a/.github/workflows/deploy-package.yml +++ b/.github/workflows/deploy-package.yml @@ -4,7 +4,7 @@ on: types: [ published ] jobs: tox-ci: - uses: QualiSystems/.github/.github/workflows/package-tox-py-37-39.yml@master + uses: QualiSystems/.github/.github/workflows/package-tox-py-39.yml@master pypi-deploy: needs: tox-ci uses: QualiSystems/.github/.github/workflows/package-deploy-pypi.yml@master diff --git a/.github/workflows/github-release.yml b/.github/workflows/github-release.yml index bf380e2..7c05337 100644 --- a/.github/workflows/github-release.yml +++ b/.github/workflows/github-release.yml @@ -7,7 +7,7 @@ on: - master jobs: tox-ci: - uses: QualiSystems/.github/.github/workflows/package-tox-py-37-39.yml@master + uses: QualiSystems/.github/.github/workflows/package-tox-py-39.yml@master pypi-deploy: needs: tox-ci uses: QualiSystems/.github/.github/workflows/package-github-release.yml@master diff --git a/.github/workflows/package.yml b/.github/workflows/package.yml index 34e31cc..955503b 100644 --- a/.github/workflows/package.yml +++ b/.github/workflows/package.yml @@ -7,4 +7,4 @@ on: - master jobs: tox-ci: - uses: QualiSystems/.github/.github/workflows/package-tox-py-37-39.yml@master + uses: QualiSystems/.github/.github/workflows/package-tox-py-39.yml@master diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 154d5b9..95d056b 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -4,14 +4,14 @@ repos: hooks: - id: pyupgrade args: - - "--py37-plus" + - "--py39-plus" - repo: https://github.com/timothycrosley/isort rev: 5.12.0 hooks: - id: isort exclude: '/mibs' - repo: https://github.com/python/black - rev: 23.3.0 + rev: 22.12.0 hooks: - id: black exclude: '/mibs' @@ -27,13 +27,4 @@ repos: flake8-eradicate, flake8-requirements, ] - args: [ - "--known-modules=cloudshell-template:[cloudshell.template],cloudshell-shell-core:[cloudshell.shell.core]" - ] exclude: '/mibs' - - repo: https://github.com/pre-commit/mirrors-mypy - rev: v1.1.1 - hooks: - - id: mypy - additional_dependencies: [types-attrs] - exclude: ^tests/ diff --git a/cloudshell/template/__init__.py b/cloudshell/raritan/__init__.py similarity index 100% rename from cloudshell/template/__init__.py rename to cloudshell/raritan/__init__.py diff --git a/cloudshell/raritan/autoload/__init__.py b/cloudshell/raritan/autoload/__init__.py new file mode 100644 index 0000000..b36383a --- /dev/null +++ b/cloudshell/raritan/autoload/__init__.py @@ -0,0 +1,3 @@ +from pkgutil import extend_path + +__path__ = extend_path(__path__, __name__) diff --git a/cloudshell/raritan/autoload/mibs/PDU2-MIB.json b/cloudshell/raritan/autoload/mibs/PDU2-MIB.json new file mode 100644 index 0000000..41e07f6 --- /dev/null +++ b/cloudshell/raritan/autoload/mibs/PDU2-MIB.json @@ -0,0 +1,25658 @@ +{ + "imports": { + "class": "imports", + "INET-ADDRESS-MIB": [ + "InetAddressType", + "InetAddress", + "InetPortNumber" + ], + "SNMPv2-CONF": [ + "OBJECT-GROUP", + "MODULE-COMPLIANCE", + "NOTIFICATION-GROUP" + ], + "SNMPv2-MIB": [ + "sysContact", + "sysName", + "sysLocation" + ], + "SNMPv2-SMI": [ + "NOTIFICATION-TYPE", + "Integer32", + "IpAddress", + "iso", + "Bits", + "enterprises", + "Unsigned32", + "MODULE-IDENTITY", + "OBJECT-IDENTITY", + "Counter64", + "Gauge32", + "Counter32", + "MibIdentifier", + "TimeTicks", + "OBJECT-TYPE" + ], + "SNMPv2-TC": [ + "TruthValue", + "MacAddress", + "DisplayString", + "TEXTUAL-CONVENTION", + "RowPointer" + ] + }, + "raritan": { + "name": "raritan", + "oid": "1.3.6.1.4.1.13742", + "class": "moduleidentity", + "revisions": [ + { + "revision": "2023-05-26 00:00", + "description": "Release 4.1.0: 1) Added to SensorUnitsEnumeration: hour(27) minute(28) second(29) coulomb(30) kelvin(31) voltAmpReactiveHour(32) voltPerAmpere(33) voltPerMeter(34) gram(35) meterPerSquareSec(36) litersPerHour(37) nit(38) candela(39) lumen(40) lumenSecond(41) cubicMeter(42) radiant(43) steradiant(44) newton(45) joule(46) ohm(47) tesla(48) henry(49) farad(50) mol(51) becquerel(52) gray(53) sievert(54) 2) Added to SensorTypeEnumeration: dewPoint(63) mass(64) flux(65) luminousIntensity(66) luminousEnergy(67) luminousFlux(68) luminousEmittance(69) electricalResistance(70) electricalImpedance(71) totalHarmonicDistortion(72) magneticFieldStrength(73) magneticFluxDensity(74) electricFieldStrength(75) selection(76) rotationalSpeed(77) 3) Added traps: linkUnitAdded linkUnitReleased linkUnitCommunicationOk linkUnitCommunicationFailed doorMechanicallyUnlocked doorForcedOpen" + }, + { + "revision": "2022-09-21 00:00", + "description": "Release 4.0.20: 1) Changed range of logIndex to 1..20000" + }, + { + "revision": "2022-06-01 00:00", + "description": "Release 4.0.10: 1) unitDeviceCapabilities: Added apparentPower(5) 2) Changed MAX-ACCESS for logSize to read-write 3) Changed range of logSize to 60..20000 4) Added trap portFuseStateChange" + }, + { + "revision": "2022-01-05 00:00", + "description": "Release 4.0.0: 1) Added OIDs and tables for inlet line pair metrics: inletLinePairCount inletLinePairCapabilities inletLinePairConfigurationTable inletLinePairSensorConfigurationTable inletLinePairSensorLogTable inletLinePairSensorMeasurementsTable inletLinePairSensorControlTable 2) Added numeric min/max measurements: measurementUnitSensor(MinMaxValid|(Min|Max)Value|Signed(Min|Max)Value|(Min|Max)TimeStamp|MinMaxResetTimeStamp), measurementsInletSensor(MinMaxValid|(Min|Max)Value|Signed(Min|Max)Value|(Min|Max)TimeStamp|MinMaxResetTimeStamp), measurementsInletPoleSensor(MinMaxValid|(Min|Max)Value|Signed(Min|Max)Value|(Min|Max)TimeStamp|MinMaxResetTimeStamp), measurementsInletLinePairSensor(MinMaxValid|(Min|Max)Value|Signed(Min|Max)Value|(Min|Max)TimeStamp|MinMaxResetTimeStamp), measurementsOutletSensor(MinMaxValid|(Min|Max)Value|Signed(Min|Max)Value|(Min|Max)TimeStamp|MinMaxResetTimeStamp), measurementsOutletPoleSensor(MinMaxValid|(Min|Max)Value|Signed(Min|Max)Value|(Min|Max)TimeStamp|MinMaxResetTimeStamp), measurementsOverCurrentProtectorSensor(MinMaxValid|(Min|Max)Value|Signed(Min|Max)Value|(Min|Max)TimeStamp|MinMaxResetTimeStamp), measurementsExternalSensor(MinMaxValid|(Min|Max)Value|(Min|Max)TimeStamp|MinMaxResetTimeStamp), measurementsTransferSwitch(MinMaxValid|(Min|Max)Value|Signed(Min|Max)Value|(Min|Max)TimeStamp|MinMaxResetTimeStamp), measurementsCircuit(MinMaxValid|(Min|Max)Value|Signed(Min|Max)Value|(Min|Max)TimeStamp|MinMaxResetTimeStamp), measurementsCircuitPole(MinMaxValid|(Min|Max)Value|Signed(Min|Max)Value|(Min|Max)TimeStamp|MinMaxResetTimeStamp), measurementsOutletGroup(MinMaxValid|(Min|Max)Value|Signed(Min|Max)Value|(Min|Max)TimeStamp|MinMaxResetTimeStamp) 3) Added for reset control: overCurrentProtectorSensorControl, transferSwitchSensorControl 4) Added reset control for numeric min/max measurements: unitSensorResetMinMax, inletSensorResetMinMax, inletPoleSensorResetMinMax, inletLinePairSensorResetMinMax, outletSensorResetMinMax, outletPoleSensorResetMinMax, overCurrentProtectorSensorResetMinMax, transferSwitchSensorResetMinMax, circuitSensorResetMinMax, circuitPoleSensorResetMinMax, outletGroupSensorResetMinMax 5) Added to unitConfigurationTable: pduOrientation pduUptime tripCauseOutletHandling 6) Added to outletSwitchControlTable: outletSuspendedState 7) Added to externalSensorTypeDefaultThresholdsTable: externalSensorTypeDefaultUnit externalSensorTypeDefaultDecimalDigits externalSensorTypeDefaultMaximum externalSensorTypeDefaultMinimum 8) SensorTypeEnumeration: Added particleDensity(56) voltageThd(57) currentThd(58) inrushCurrent(59) unbalancedVoltage(60) unbalancedLineLineCurrent(61) unbalancedLineLineVoltage(62) 9) SensorUnitsEnumeration: Added feetpersec(24) lbspercubicfoot(25) microgrampercubicmeter(26) 10) LineEnumeration: Added lineDcPositive(5) lineDcNegative(6) 11) unitDeviceCapabilities: Added apparentEnergy(8) 12) inletDeviceCapabilities: Added voltageThd(56) currentThd(57) unbalancedVoltage(59) unbalancedLineLineCurrent(60) unbalancedLineLineVoltage(61) 13) inletPoleCapabilities: Added voltageThd(56) currentThd(57) 14) outletGroupCapabilities: Added apparentPower(5) apparentEnergy(8) 15) peripheralDevicePackageId: Changed range to include 0 16) Added traps: inletLinePairSensorStateChange tacPlusError outletSuspended userRenamed inletDipEvent inletSwellEvent inletPoleDipEvent inletPoleSwellEvent 17) Added pduNumber varbind to the following traps: rawConfigurationDownloaded rawConfigurationUpdated hwFailureStatusChanged 18) Renamed traps: usbSlaveConnected -> usbExpansionUnitConnected usbSlaveDisconnected -> usbExpansionUnitDisconnected 19) DaisychainMemberTypeEnumeration: Renamed master(1) -> primaryUnit(1) slave(2) -> expansionUnit(2) 20) HwFailureTypeEnumeration: Renamed slaveCtrlNotReachable(3) -> subCtrlNotReachable(3) slaveCtrlMalfunction(4) -> subCtrlMalfunction(4) 21) Marked the following as deprecated: lhxSupportEnabled lhxSupportChanged" + }, + { + "revision": "2021-08-03 00:00", + "description": "PX2/PX3 release 3.6.50: 1) overCurrentProtectorCapabilities: Added residualCurrent(25), rcmState(26), residualDcCurrent(35), residualAcCurrent(54) 2) New table: overCurrentProtectorRcmSelfTestTable" + }, + { + "revision": "2020-12-11 00:00", + "description": "PX2/PX3 release 3.6.30: 1) Added to unitConfigurationTable: hasDCInlets 2) Added to inletConfigurationTable: inletIsDC 3) Added wireless keywords to externalSensorPosition" + }, + { + "revision": "2020-10-22 00:00", + "description": "PX2/PX3 release 3.6.20: 1) SensorTypeEnumeration: Added residualAcCurrent(55) 2) Added residualAcCurrent(54) to the following bitmasks: inletDeviceCapabilities inletPoleCapabilities" + }, + { + "revision": "2020-07-06 00:00", + "description": "PX2/PX3 release 3.6.10: 1) Added the following to unitConfigurationTable: demandUpdateInterval demandAveragingIntervals 2) SensorTypeEnumeration: Added length(52) distance(53) activePowerDemand(54) 3) Added crestFactor(50) to the following bitmasks: inletDeviceCapabilities inletPoleCapabilities outletDeviceCapabilities outletPoleCapabilities circuitCapabilities circuitPoleCapabilities 4) Added activePowerDemand(53) to the following bitmasks: inletDeviceCapabilities circuitCapabilities 5) Added traps: keypadPinEntered doorAccessGranted doorAccessDenied doorAccessRuleAdded doorAccessRuleChanged doorAccessRuleDeleted 6) Added pduNumber varbind to the following traps: powerControl bulkConfigurationSaved/-Copied loadSheddingModeEntered/-Exited deviceIdentificationChanged deviceSettingsSaved/-Restored inletEnabled/-Disabled unknownPeripheralDeviceAttached peripheralDeviceFirmwareUpdate 7) Added varbinds to smartCardInserted/-Removed traps: smartCardReaderPosition smartCardReaderName smartCardReaderDescription 8) Clarified some descriptions" + }, + { + "revision": "2019-11-29 00:00", + "description": "PX2/PX3 release 3.6.0: 1) SensorTypeEnumeration: Added crestFactor(51) 2) powerMeterPanelPositions: Changed range to include 0 3) transferSwitchTransferToInlet: Changed range to allow 0 (value when read) 4) Added traps: testEventTriggered, actuatorSwitched 5) Added pduNumber to the following traps: webcamInserted webcamRemoved smartCardInserted smartCardRemoved systemStarted systemReset deviceUpdateStarted deviceUpdateCompleted firmwareValidationFailed deviceUpdateFailed" + }, + { + "revision": "2019-05-20 00:00", + "description": "PX2/PX3 release 3.5.10: 1) Added trap: webcamStorageUploadStarted 2) Added trapInformation parameters: webcamName, webcamFolderUrl 3) Added externalSensorName to externalSensorStateChange trap" + }, + { + "revision": "2018-10-16 00:00", + "description": "PX2/PX3 release 3.5.0: 1) deviceCascadeType access read-only 2) Added the following to unitConfigurationTable: peripheralDevicePackageCount outletGroupCount 3) Added tables: hwFailureTable outletGroupConfigurationTable outletGroupSensorConfigurationTable outletGroupSensorLogTable outletGroupSensorMeasurementsTable outletGroupSwitchControlTable outletGroupSensorControlTable serverPowerControlTable 4) Added traps: rawConfigurationDownloaded rawConfigurationUpdated hwFailureStatusChanged outletGroupAdded outletGroupModified outletGroupDeleted outletGroupSensorStateChange outletGroupSensorReset outletGroupPowerControl serverPowerControlInitiated serverPowerControlCompleted 5) Changed MAX-ACCESS of trapInformationTable to accessible-for-notify 6) Marked the following as deprecated: inletPlug outletReceptacle 7) Marked the following as obsolete: wireCount wireConfigurationTable wireSensorConfigurationTable wireSensorLogTable wireSensorMeasurementsTable wireSensorStateChange trap 8) Declare and correct ranges for integer OIDs 9) Added the following to trapInformationGroup: outletGroupNumber serverPowerOperation serverPowerResult" + }, + { + "revision": "2018-05-07 00:00", + "description": "PX2/PX3 release 3.4.20: 1) unitDeviceCapabilities: Added activePower(4) activeEnergy(7) 2) Added the following to trapInformationGroup, smartCardInserted and smartCardRemoved: smartCardReaderManufacturer smartCardReaderProduct smartCardReaderSerialNumber smartCardReaderChannel" + }, + { + "revision": "2018-03-05 00:00", + "description": "PX2/PX3 release 3.4.10: - Support for residual DC current sensor 1) SensorTypeEnumeration: Added residualDcCurrent(36) 2) inletDeviceCapabilities: Added displacementPowerFactor(34) residualDcCurrent(35) 3) inletPoleCapabilities: Added residualCurrent(25) rcmState(26) residualDcCurrent(35) 4) outletDeviceCapabilities: Added reactivePower(28) displacementPowerFactor(34) 5) outletPoleCapabilities: Added phaseAngle(23) reactivePower(28) displacementPowerFactor(34)" + }, + { + "revision": "2017-11-13 00:00", + "description": "PX2/PX3 release 3.4.0: 1) Changed STATUS of inletConfigurationTable/inletRCMResidualOperatingCurrent to obsolete 2) Added to trapInformationGroup: smartCardReaderId smartCardTimestamp smartCardType smartCardId suspectedTripCauseLabel 3) Added the following traps: smartCardInserted smartCardRemoved 4) Deprecated the following traps: rfCodeTagConnected rfCodeTagDisconnected 5) Revised the DESCRIPTION of all objects 6) SensorTypeEnumeration: Added doorLockState(49) doorHandleLock(50) 7) Added to overCurrentProtectorSensorStateChange trap: suspectedTripCauseLabel" + }, + { + "revision": "2016-12-02 00:00", + "description": "PX2/PX3 release 3.3.10: 1) Added 'none(2)' to DeviceCascadeTypeEnumeration 2) Deprecated unitConfigurationTable/pxMACAddress 3) Deprecated unitConfigurationTable/networkInterfaceType 4) Added pduSerialNumber to the OBJECTS clause of all traps 5) Deprecated activeDNSServerTable/activeDNSServerAddressSource 6) Deprecated activeNTPServerTable/activeNTPServerAddressSource 7) Changed STATUS of unitConfigurationTable/useDHCPProvidedNTPServer to obsolete 8) Added OBJECT-GROUP obsoleteObjectsGroup 9) Modified DESCRPTION of the following: deviceCascadeType deviceCascadePosition outletPowerCyclingPowerOffPeriod pduPowerCyclingPowerOffPeriod globalOutletPowerCyclingPowerOffPeriod usbSlaveConnected usbSlaveDisconnected" + }, + { + "revision": "2016-02-16 00:00", + "description": "PX2/PX3 release 3.3.0: 1) Added inletRatedCurrent to the following traps: powerMeterModified powerMeterAdded 2) Added activeNTPServerCount to unitConfigurationTable 3) Added activeNTPServerTable" + }, + { + "revision": "2016-02-09 00:00", + "description": "PX2/PX3 release 3.2.20: 1) Added the following: NetworkInterfaceTypeEnumeration, networkInterfaceType to unitConfigurationTable 2) Added AddressSourceEnumeration 3) Added activeDNS ServerCount to unitConfigurationTable 4) Added activeDNSServerTable" + }, + { + "revision": "2015-10-26 00:00", + "description": "PX2/PX3 release 3.2.10: 1) Added to trapInformation: phoneNumber 2) Added the following traps: smsMessageTransmissionFailure trap" + }, + { + "revision": "2015-09-30 00:00", + "description": "PX2/PX3 release 3.2.1: - Support for PMC/BCM2 - Line and node information for component poles 1) SensorTypeEnumeration: Added reactivePower(29) displacementPowerFactor(35) 2) SensorUnitsEnumeration: Added var(23) 3) ProductTypeEnumeration: Added powerMeter(3) 4) Added the following enumerations: PanelLayoutEnumeration PanelNumberingEnumeration CircuitTypeEnumeration PhaseEnumeration LineEnumeration PowerMeterTypeEnumeration 5) Added the following tables: inletPoleConfigurationTable overCurrentProtectorPoleConfigurationTable outletPoleConfigurationTable transferSwitchPoleConfigurationTable powerMeterConfigurationTable circuitConfigurationTable circuitPoleConfigurationTable circuitSensorConfigurationTable circuitPoleSensorConfigurationTable circuitSensorLogTable circuitPoleSensorLogTable circuitSensorMeasurementsTable circuitPoleSensorMeasurementsTable circuitSensorControlTable 6) unitConfigurationTable: Added circuitCount 7) inletDeviceCapabilities: Added reactivePower(28) 8) inletPoleCapabilities: Added phaseAngle(23) reactivePower(28) displacementPowerFactor(34) 9) overCurrentProtectorConfigurationTable: Added overCurrentProtectorPoleCount 10) transferSwitchConfigurationTable: Added transferSwitchPoleCount 11) Added the following to trapInformation: circuitNumber circuitPoleNumber 12) Added the following traps: circuitSensorStateChange circuitPoleSensorStateChange circuitAdded circuitDeleted circuitModified circuitSensorReset powerMeterAdded powerMeterDeleted powerMeterModified 13) Revised the DESCRIPTION clauses of: pduCount pduId inletPoleCount" + }, + { + "revision": "2015-02-18 00:00", + "description": "PX2/PX3 release 3.1.0: - Support absolute humidity sensors 1) SensorStateEnumeration: Added nonRedundant(30) 2) SensorTypeEnumeration: Added absoluteHumidity(28) 3) SensorUnitsEnumeration: Added grampercubicmeter(22) 4) Corrected the possible states for the rcmState, operatingState and activeInlet sensors 5) Documented that the unitSensorResetValue object in unitSensorControlTable applies only to multi-inlet PDUs 6) Deprecated inletRatedVA, inletRatedFrequency 7) inletDeviceCapabilities: Corrected bit values for residualCurrent(25) and rcmState(26)" + }, + { + "revision": "2014-06-04 00:00", + "description": "PX2/PX3 release 3.0.0: - Support for signed sensor readings - Support for unit-level power and energy sensors - Send trap on peripheral device firmware update - Allow peripheral device auto management to be disabled - Allow front panel outlet switching to be enabled or disabled - Support DX-PIR occupancy sensor 1) Changed the SYNTAX from Integer32 to Unsigned32: measurementsUnitSensorValue 2) Added signed value, range and threshold columns to: unitSensorConfigurationTable unitSensorMeasurementsTable pduSensorStateChange inletSensorConfigurationTable inletSensorMeasurementsTable inletSensorLogTable inletSensorStateChange inletPoleSensorConfigurationTable inletPoleSensorMeasurementsTable inletPoleSensorLogTable inletPoleSensorStateChange overCurrentProtectorSensorConfigurationTable overCurrentProtectorSensorMeasurementsTable overCurrentProtectorSensorLogTable overCurrentProtectorSensorStateChange outletSensorConfigurationTable outletSensorMeasurementsTable outletSensorLogTable outletSensorStateChange outletPoleSensorConfigurationTable outletPoleSensorMeasurementsTable outletPoleSensorLogTable outletPoleSensorStateChange 3) Added unsigned value, range and threshold columns to: unitSensorLogTable transferSwitchSensorConfigurationTable transferSwitchSensorMeasurementsTable transferSwitchSensorLogTable transferSwitchSensorStateChange 4) Added UnitSensorControlTable 5) Added unitSensorReset and unitSensorStateChange traps 6) Deprecated pduSensorStateChange trap 7) Added to unitConfigurationTable: peripheralDevicesAutoManagement frontPanelOutletSwitching frontPanelRCMSelfTest frontPanelActuatorControl 8) Added to externalSensorConfigurationTable: externalSensorAlarmedToNormalDelay 9) Deprecated: wireCount in unitConfiguraionTable tables for wireSensors traps for wireSensors 10) SensorStateEnumeration: Added fail(14) 11) ProductTypeEnumeration: Renamed rackSts(2) to transferSwitch 12) Added: PeripheralDeviceFirmwareUpdateStateEnumeration peripheralDeviceFirmwareUpdateState peripheralDeviceFirmwareUpdate trap 13) Added userName to the following traps: bulkConfigurationSaved bulkConfigurationCopied lhxSupportChanged deviceSettingsSaved deviceSettingsRestored" + }, + { + "revision": "2014-01-09 00:00", + "description": "PX2/PX3 release 2.6.0: - Support for PX3TS transfer switches 1) SensorTypeEnumeration: Removed: scrOpenStatus scrShortStatus Added: i1SmpsStatus(46) i2SmpsStatus(47) switchStatus(48) 2) SensorStateEnumeration: Removed: marginal fail Added: i1OpenFault(22) i1ShortFault(23) i2OpenFault(24) i2ShortFault(25) fault(26) warning(27) critical(28) 3) unitDeviceCapabilities: Added i1SmpsStatus(45) i2SmpsStatus(46) 4) transferSwitchCapabilities: Added switchStatus(47) 5) Added transferSwitchConfiguration table 6) unitSensorLogTable: Removed: logUnitSensorAvgValue logUnitSensorMaxValue logUnitSensorMinValue Added: logUnitSensorSignedAvgValue logUnitSensorSignedMaxValue logUnitSensorSignedMinValue" + }, + { + "revision": "2014-01-07 00:00", + "description": "PX2/PX3 release 2.5.30: - Accumulating sensors (energy counters) can be reset - Sensor accuray and tolerance variables are deprecated 1) Added peripheralDevicePackagePosition and peripheralDevicePackageState 2) Added radiusError trap 3) Added serverReachabilityError trap 4) Deprecated the following: unitSensorConfigurationTable/unitSensorAccuracy unitSensorConfigurationTable/unitSensorTolerance inletSensorConfigurationTable/inletSensorAccuracy inletSensorConfigurationTable/inletSensorTolerance inletPoleSensorConfigurationTable/inletPoleSensorAccuracy inletPoleSensorConfigurationTable/inletPoleSensorTolerance outletSensorConfigurationTable/outetSensorAccuracy outletSensorConfigurationTable/outletSensorTolerance outletPoleSensorConfigurationTable/outetPoleSensorAccuracy outletPoleSensorConfigurationTable/outletPoleSensorTolerance overCurrentProtectorSensorConfigurationTable/overCurrentProtectorSensorAccuracy overCurrentProtectorSensorConfigurationTable/overCurrentProtectorSensorTolerance externalSensorConfigurationTable/externalSensorAccuracy externalSensorConfigurationTable/externalSensorTolerance wireSensorConfigurationTable/wireSensorAccuracy wireSensorConfigurationTable/wireSensorTolerance transferSwitchSensorConfigurationTable/transferSwitchSensorAccuracy transferSwitchSensorConfigurationTable/transferSwitchSensorTolerance 5) Added inletSensorReset and outletSensorReset traps 6) Added inletSensorControl and inletSensorControlTable 7) Added outletSensorControl and outletSensorControlTable 8) Added unknownPeripheralDeviceAttached trap" + }, + { + "revision": "2013-11-21 00:00", + "description": "PX2/PX3 release 2.5.20: - Support for residual current monitors - Support for USB cascading with one IP address - Support for line-neutral voltage sensors 1) SensorTypeEnumeration: Added rmsVoltageLN(25) residualCurrent(26) rcmState(27) 2) SensorStateEnumeration: Added warning(27) critical(28) selfTest(29) 3) inletDeviceCapabilities: Added residualCurrent(26) rcmState(27) 4) Added rmsVoltageLN(24) to inletPoleCapabilities 5) Added inletRCMResidualOperatingCurrent to inletConfigurationTable 6) Added rcmControl under control 7) Added rcmSelfTestTable under rcmControl 8) Added DeviceCascadeTypeEnumeration 9) Added deviceCascadeType, deviceCascadePosition to unitConfigurationTable 10) Added agentInetPortNumber under trapInformation 11) Added agentInetPortNumber as a varbind to all traps 12) Added peripheralDevicePackageTable containing information on peripheral device packages" + }, + { + "revision": "2013-09-18 00:00", + "description": "1) Added serverConnectivityUnrecoverable trap" + }, + { + "revision": "2013-08-01 00:00", + "description": "1) Added RCBO OCP types" + }, + { + "revision": "2013-07-10 00:00", + "description": "1) Added externalSensorTypeDefaultThresholdsTable" + }, + { + "revision": "2013-07-02 00:00", + "description": "1) Added relayBehaviorOnPowerLoss to unitConfigurationTable" + }, + { + "revision": "2013-05-21 00:00", + "description": "1) Added inletEnableState to inletConfigurationTable 2) Added traps: inletEnabled and inletDisabled" + }, + { + "revision": "2013-04-26 00:00", + "description": "1) Added traps: webcamInserted and webcamRemoved 2) Added trapInformation parameters: webcamModel, webcamConnectionPort" + }, + { + "revision": "2013-03-27 00:00", + "description": "1) Changed outletSource to outletPowerSource in outletConfigurationTable 2) Changed transferSwitchSource1 and transferSwitchSource2 to transferSwitchPowerSource1 and transferSwitchPowerSource2 in transferSwitchConfigurationTable 3) Changed overCurrentProtectorSource to overCurrentProtectorPowerSource in overCurrentProtectorConfigurationTable 4) Changed wireSource to wirePowerSource in wireConfigurationTable" + }, + { + "revision": "2013-03-25 10:00", + "description": "1) Added comments showing the possible states for each sensor type." + }, + { + "revision": "2013-03-25 00:00", + "description": "1) Added outletSource to outletConfigurationTable 2) Added transferSwitchSource1 and transferSwitchSource2 to transferSwitchConfigurationTable 3) Added overCurrentProtectorSource to overCurrentProtectorConfigurationTable 4) Added wireSource to wireConfigurationTable" + }, + { + "revision": "2013-03-18 00:00", + "description": "1) Added meteringControllerCount to the unitConfigurationTable 2) Added meteringController to BoardTypeEnumeration" + }, + { + "revision": "2013-02-25 00:00", + "description": "1) Added ProductTypeEnumeration 2) Added productType to unitConfigurationTable" + }, + { + "revision": "2013-02-04 00:00", + "description": "1) Added TransferSwitchTransferReasonEnumeration 2) Added transferSwitchLastTransferReason to transferSwitchControlTable 3) Added transferSwitchLastTransferReason to transferSwitchSensorStateChange trap" + }, + { + "revision": "2013-01-24 00:00", + "description": "1) Added required sensor types and units" + }, + { + "revision": "2012-11-20 00:00", + "description": "1) Added externalSensorIsActuator and externalSensorPosition to the externalSensorConfigurationTable 2) Added actuatorControlTable" + }, + { + "revision": "2012-11-15 00:00", + "description": "1) Removed transferSwitchOutputCapabilities from transferSwitchConfigurationTable 2) Removed the following tables: transferSwitchOutputSensorConfigurationTable transferSwitchOutputSensorLogTable transferSwitchOutputSensorMeasurementsTable 3) Removed transferSwitchOutputSensorStateChange trap 4) Added transferSwitchControlTable 5) Removed the following entries from SensorTypeEnumeration: overTemperatureFault fans internalFault inletPhaseDeviationFault overloadFault 6) Added the following entries to SensorTypeEnumeration: overloadStatus overheatStatus scrOpenStatus scrShortStatus fanStatus inletPhaseSyncAngle inletPhaseSync 7) Added the following entries to SensorStateEnumeration: inSync, outOfSync 8) Renamed transferSwitchNoTransferIfPhaseDeviationFault to transferSwitchAutoReTransferRequiresPhaseSync" + }, + { + "revision": "2012-10-05 00:00", + "description": "1) Modified the DESCRIPTION of the following: outletSwitchControlTable transferSwitchOutputSensorMeasurementsEntry overCurrentProtectorSensorMeasurementsEntry outletPoleSensorMeasurementsEntry transferSwitchOutputSensorLogEntry transferSwitchOutputSensorLogTable wireSensorLogEntry externalSensorNumber controllerConfigurationEntry SensorUnitsEnumeration measurementsGroup logGroup" + }, + { + "revision": "2012-10-04 00:00", + "description": "1) In the transferSwitchConfigurationTable, replaced transferSwitchFrequencyDeviation with transferSwitchLowerMarginalFrequency and transferSwitchUpperMarginalFrequency" + }, + { + "revision": "2012-09-28 00:00", + "description": "1) Modified the DESCRIPTION of the following: bulkConfigurationCopied, userModified, userSessionTimeout" + }, + { + "revision": "2012-09-21 00:00", + "description": "1) Added the following traps: deviceSettingsSaved, deviceSettingsRestored" + }, + { + "revision": "2012-09-20 00:00", + "description": "1) Added the following objects to the transferSwitchConfigurationTable: transferSwitchInternalFaultType 2) Added transferSwitchInternalFaultType to transferSwitchSensorStateChange trap 3) Added marginal to SensorStateEnumeration" + }, + { + "revision": "2012-09-17 00:00", + "description": "1) Deprecated the following objects from the unitConfigurationTable pxInetAddressType pxInetIPAddress pxInetNetmask pxInetGateway" + }, + { + "revision": "2012-09-04 00:00", + "description": "Support for transfer Switch objects and sensors 1) Added transferSwitchCount to unitConfigurationTable 2) Added the following tables: transferSwitchConfigurationTable transferSwitchSensorConfigurationTable transferSwitchSensorLogTable transferSwitchSensorMeasurementsTable transferSwitchOutputSensorConfigurationTable transferSwitchOutputSensorLogTable transferSwitchOutputSensorMeasurementsTable 3) Added transferSwitchSensorStateChange trap transferSwitchOutputSensorStateChange trap" + }, + { + "revision": "2012-06-22 00:00", + "description": "1) Added surgeProtectorStatus to SensorTypeEnumeration 2) Added surgeProtectorStatus to inletDeviceCapabilities" + }, + { + "revision": "2012-06-18 00:00", + "description": "1) Added a comment before the section listing the traps. The comment notes that the pxInetIPAddressType and pxInetIPAddress fields are not used for IPv6 traps" + }, + { + "revision": "2012-06-06 00:00", + "description": "Support for wire objects and sensors 1) Added wireCount to unitConfigurationTable 2) Added the following tables: wireConfigurationTable wireSensorConfigurationTable wireSensorLogTable wireSensorMeasurementsTable 3) Added wireSensorStateChange trap" + }, + { + "revision": "2012-05-25 00:00", + "description": "1) Added userAccepted/DeclinedRestrictedServiceAgreement traps" + }, + { + "revision": "2012-05-15 00:00", + "description": "Added support for NTP servers 1) Added the following objects under info: synchronizeWithNTPServer useDHCPProvidedNTPServer firstNTPServerAddressType firstNTPServerAddress secondNTPServerAddressType secondNTPServerAddress" + }, + { + "revision": "2012-03-26 00:00", + "description": "1) Added lhxSupportChanged trap" + }, + { + "revision": "2011-12-13 00:00", + "description": "1) Added usbSlaveConnected, usbSlaveDisonnected traps" + }, + { + "revision": "2011-11-29 00:00", + "description": "1) Added cascadedDeviceConnected to UnitConfigurationEntryStruct" + }, + { + "revision": "2011-10-25 00:00", + "description": "1) Added DeviceIdentificationParameterEnumeration 2) Added deviceIdentificationChanged Trap 3) Added sysContact, sysName, sysLocation to all traps" + }, + { + "revision": "2011-06-16 00:00", + "description": "1) Changed DESCRIPTION of outletSequencingDelay" + }, + { + "revision": "2011-03-22 00:00", + "description": "1) Added rfCodeTagConnected, rfCodeTagDisconnected traps 2) Changed MAX-ACCESS for externalOnOffSensorSubtype to read-write" + }, + { + "revision": "2011-02-21 00:00", + "description": "1) Added rpm(19) to SensorUnitsEnumeration" + }, + { + "revision": "2011-02-14 00:00", + "description": "1) Changed 5WIRE IEC60309 enumerations from 250V to 208V" + }, + { + "revision": "2011-02-08 00:00", + "description": "1) Removed OnOffSensorSubtypeEnumeration 2) Changed SYNTAX of externalOnOffSensorSubtype to SensorTypeEnumeration 3) Added binary, contact, fanspeed, none to SensorTypeEnumeration 4) Changed outletPoleCapabilities to be the same as inletPoleCapabilities" + }, + { + "revision": "2011-02-03 00:00", + "description": "1) Added externalSensorSerialNumber,externalOnOffSensorSubtype, externalSensorChannelNumber to the externalSensorStateChange trap." + }, + { + "revision": "2011-01-31 00:00", + "description": "1) Modifed the DESCRIPTION of the powerControl trap" + }, + { + "revision": "2010-12-15 00:00", + "description": "1) Added dataLoggingEnableForAllSensors to logConfigurationTable" + }, + { + "revision": "2010-12-13 11:31", + "description": "1) Added inrushGuardDelay to unitConfigurationTable 2) Added outletSequenceDelay to outletConfigurationTable 3) Deprecated outletSequencingDelay" + }, + { + "revision": "2010-12-13 00:00", + "description": "1) Added externalOnOffSensorSubtype to ExternalSensorConfigurationEntryStruct 2) Added OnOffSensorSubtypeEnumeration 3) Added alarmed to SensorStateEnumeration 4) Removed firmwareFileDiscarded trap 5) Removed securityViolation trap" + }, + { + "revision": "2010-12-07 00:00", + "description": "1) Changed DESCRIPTION of measurementPeriod to say that the value is fixed at 1 second" + }, + { + "revision": "2010-10-07 00:00", + "description": "1) Added ocpFUSEPAIR(5) to OverCurrentProtectorTypeEnumeration 2) Changed ocpFUSE1POLE(4) to ocpFUSE(4) in OverCurrentProtectorTypeEnumeration" + }, + { + "revision": "2010-10-04 00:00", + "description": "1) added ocpFUSE2POLE(5) to OverCurrentProtectorTypeEnumeration 2) changed ocpFUSE(4) to ocpFUSE1POLE(4) in OverCurrentProtectorTypeEnumeration" + }, + { + "revision": "2010-09-01 00:00", + "description": "1) Removed userName from serverNotReachable and serverReachable traps" + }, + { + "revision": "2010-08-05 00:00", + "description": "1) Added reliabilityDataTableSequenceNumber 2) Changed SYNTAX of reliabilityErrorLogIndex to Integer32(1..2147483647)" + }, + { + "revision": "2010-07-23 00:00", + "description": "1) Moved serverCount to unitConfigurationTable" + }, + { + "revision": "2010-07-22 00:00", + "description": "1) Added support for the Reliability Tables 2) Added new group reliabilityGroup 3) Defined nodes reliability,reliabilityData,reliabilityErrorLog 4) Added reliabilityDataTable & reliabilityErrorLogTable" + }, + { + "revision": "2010-07-21 00:00", + "description": "1) Added plug56PA320 to PlugTypeEnumeration 2) Added plug56P320F to PlugTypeEnumeration" + }, + { + "revision": "2010-07-14 00:00", + "description": "1) Added the following traps: pingServerEnabled pingServerDisabled serverNotReachable serverReachable 2) Added the serverReachabilityTable" + }, + { + "revision": "2010-07-06 00:00", + "description": "1) Added externalSensorChannelNumber to externalSensorConfigurationTable" + }, + { + "revision": "2010-07-01 00:00", + "description": "1) Added outletSwitchingState to outletSwitchControlTable 2) Added outletSwitchingTimeStamp to outletSwitchControlTable" + }, + { + "revision": "2010-06-30 00:00", + "description": "1) Added switchingOperation to the powerControl trap" + }, + { + "revision": "2010-06-21 00:00", + "description": "1) Added support for Load shedding 2) Added loadShedding to the unitConfigurationTable. 3) Added nonCritical to the outletConfigurationTable 4) Added loadSheddingModeEntered & loadSheddingModeExited traps 5) Modified description of inletPlug in inletConfigurationTable" + }, + { + "revision": "2010-06-03 00:00", + "description": "1) Added plugOTHER to PlugTypeEnumeration 2) Added receptacleOTHER to ReceptacleTypeEnumeration 3) Added inletPlugDescriptor to inletConfigurationTable 4) Added outletReceptacleDescriptor to outletConfigurationTable" + }, + { + "revision": "2010-05-27 00:00", + "description": "1) Added INetAddressType and INetAddress to represent IP addresses 2) unitConfigurationTable: deprecated pxIpAddress 3) unitConfigurationTable: added pxInetAddressType pxInetIPAddress pxInetNetmask pxInetGateway 4) Added pxInetAddressType,pxInetIPAddress to all traps 5) Defined new trap deviceUpdateFailed" + }, + { + "revision": "2010-05-24 00:00", + "description": "Added typeOfSensor to externalSensorStateChange trap" + }, + { + "revision": "2010-04-19 00:00", + "description": "Modified the DESCRIPTION of the deviceUpdateCompleted trap" + }, + { + "revision": "2010-04-15 00:00", + "description": "Modified the DESCRIPTION of all SensorStateChangeDelay parameters" + }, + { + "revision": "2010-04-08 00:00", + "description": "Modified the DESCRIPTION of sensor parameters that do not apply to discrete sensors" + }, + { + "revision": "2010-03-29 00:00", + "description": "Added trap ldapError" + }, + { + "revision": "2010-03-25 00:00", + "description": "Changed the SYNTAX of the following objects from Integer32 to Unsigned32: logInletSensorMaxValue, logInletSensorMinValue, logInletSensorAvgValue, logInletPoleSensorMaxValue, logInletPoleSensorMinValue, logInletPoleSensorAvgValue, logOutletSensorMaxValue, logOutletSensorMinValue, logOutletSensorAvgValue, logOutletPoleSensorMaxValue, logOutlePoletSensorMinValue, logOutletPoleSensorAvgValue, logOverCurrentProtectorSensorMaxValue, logOverCurrentProtectorSensorMinValue, logOverCurrentProtectorSensorAvgValue, measurementsInletSensorValue, measurementsInletPoleSensorValue, measurementsOutletSensorValue, measurementsOutletPoleSensorValue, measurementsOverCurrentProtectorSensorValue" + }, + { + "revision": "2010-03-16 00:00", + "description": "Added trap smtpMessageTransmissionFailure" + }, + { + "revision": "2010-03-01 00:00", + "description": "Changed externalSensorsZCoordinateUnits to an enumeration" + }, + { + "revision": "2010-01-29 00:00", + "description": "The first version of the MIB" + } + ] + }, + "pdu2": { + "name": "pdu2", + "oid": "1.3.6.1.4.1.13742.6", + "class": "objectidentity" + }, + "traps": { + "name": "traps", + "oid": "1.3.6.1.4.1.13742.6.0", + "class": "objectidentity" + }, + "trapInformation": { + "name": "trapInformation", + "oid": "1.3.6.1.4.1.13742.6.0.0", + "class": "objectidentity" + }, + "board": { + "name": "board", + "oid": "1.3.6.1.4.1.13742.6.1", + "class": "objectidentity" + }, + "environmental": { + "name": "environmental", + "oid": "1.3.6.1.4.1.13742.6.2", + "class": "objectidentity" + }, + "configuration": { + "name": "configuration", + "oid": "1.3.6.1.4.1.13742.6.3", + "class": "objectidentity" + }, + "control": { + "name": "control", + "oid": "1.3.6.1.4.1.13742.6.4", + "class": "objectidentity" + }, + "measurements": { + "name": "measurements", + "oid": "1.3.6.1.4.1.13742.6.5", + "class": "objectidentity" + }, + "log": { + "name": "log", + "oid": "1.3.6.1.4.1.13742.6.6", + "class": "objectidentity" + }, + "conformance": { + "name": "conformance", + "oid": "1.3.6.1.4.1.13742.6.9", + "class": "objectidentity" + }, + "reliability": { + "name": "reliability", + "oid": "1.3.6.1.4.1.13742.6.10", + "class": "objectidentity" + }, + "unit": { + "name": "unit", + "oid": "1.3.6.1.4.1.13742.6.3.2", + "class": "objectidentity" + }, + "inlets": { + "name": "inlets", + "oid": "1.3.6.1.4.1.13742.6.3.3", + "class": "objectidentity" + }, + "overCurrentProtector": { + "name": "overCurrentProtector", + "oid": "1.3.6.1.4.1.13742.6.3.4", + "class": "objectidentity" + }, + "outlets": { + "name": "outlets", + "oid": "1.3.6.1.4.1.13742.6.3.5", + "class": "objectidentity" + }, + "externalSensors": { + "name": "externalSensors", + "oid": "1.3.6.1.4.1.13742.6.3.6", + "class": "objectidentity" + }, + "serverReachability": { + "name": "serverReachability", + "oid": "1.3.6.1.4.1.13742.6.3.7", + "class": "objectidentity" + }, + "wires": { + "name": "wires", + "oid": "1.3.6.1.4.1.13742.6.3.8", + "class": "objectidentity" + }, + "transferSwitch": { + "name": "transferSwitch", + "oid": "1.3.6.1.4.1.13742.6.3.9", + "class": "objectidentity" + }, + "powerMeter": { + "name": "powerMeter", + "oid": "1.3.6.1.4.1.13742.6.3.10", + "class": "objectidentity" + }, + "circuit": { + "name": "circuit", + "oid": "1.3.6.1.4.1.13742.6.3.11", + "class": "objectidentity" + }, + "outletGroups": { + "name": "outletGroups", + "oid": "1.3.6.1.4.1.13742.6.3.12", + "class": "objectidentity" + }, + "outletControl": { + "name": "outletControl", + "oid": "1.3.6.1.4.1.13742.6.4.1", + "class": "objectidentity" + }, + "externalSensorControl": { + "name": "externalSensorControl", + "oid": "1.3.6.1.4.1.13742.6.4.2", + "class": "objectidentity" + }, + "transferSwitchControl": { + "name": "transferSwitchControl", + "oid": "1.3.6.1.4.1.13742.6.4.3", + "class": "objectidentity" + }, + "actuatorControl": { + "name": "actuatorControl", + "oid": "1.3.6.1.4.1.13742.6.4.4", + "class": "objectidentity" + }, + "rcmControl": { + "name": "rcmControl", + "oid": "1.3.6.1.4.1.13742.6.4.5", + "class": "objectidentity" + }, + "inletSensorControl": { + "name": "inletSensorControl", + "oid": "1.3.6.1.4.1.13742.6.4.6", + "class": "objectidentity" + }, + "outletSensorControl": { + "name": "outletSensorControl", + "oid": "1.3.6.1.4.1.13742.6.4.7", + "class": "objectidentity" + }, + "unitSensorControl": { + "name": "unitSensorControl", + "oid": "1.3.6.1.4.1.13742.6.4.8", + "class": "objectidentity" + }, + "circuitSensorControl": { + "name": "circuitSensorControl", + "oid": "1.3.6.1.4.1.13742.6.4.9", + "class": "objectidentity" + }, + "outletGroupControl": { + "name": "outletGroupControl", + "oid": "1.3.6.1.4.1.13742.6.4.10", + "class": "objectidentity" + }, + "outletGroupSensorControl": { + "name": "outletGroupSensorControl", + "oid": "1.3.6.1.4.1.13742.6.4.11", + "class": "objectidentity" + }, + "serverPowerControl": { + "name": "serverPowerControl", + "oid": "1.3.6.1.4.1.13742.6.4.12", + "class": "objectidentity" + }, + "overCurrentProtectorSensorControl": { + "name": "overCurrentProtectorSensorControl", + "oid": "1.3.6.1.4.1.13742.6.4.13", + "class": "objectidentity" + }, + "transferSwitchSensorControl": { + "name": "transferSwitchSensorControl", + "oid": "1.3.6.1.4.1.13742.6.4.14", + "class": "objectidentity" + }, + "measurementsUnit": { + "name": "measurementsUnit", + "oid": "1.3.6.1.4.1.13742.6.5.1", + "class": "objectidentity" + }, + "measurementsInlet": { + "name": "measurementsInlet", + "oid": "1.3.6.1.4.1.13742.6.5.2", + "class": "objectidentity" + }, + "measurementsOverCurrentProtector": { + "name": "measurementsOverCurrentProtector", + "oid": "1.3.6.1.4.1.13742.6.5.3", + "class": "objectidentity" + }, + "measurementsOutlet": { + "name": "measurementsOutlet", + "oid": "1.3.6.1.4.1.13742.6.5.4", + "class": "objectidentity" + }, + "measurementsExternalSensor": { + "name": "measurementsExternalSensor", + "oid": "1.3.6.1.4.1.13742.6.5.5", + "class": "objectidentity" + }, + "measurementsWire": { + "name": "measurementsWire", + "oid": "1.3.6.1.4.1.13742.6.5.6", + "class": "objectidentity" + }, + "measurementsTransferSwitch": { + "name": "measurementsTransferSwitch", + "oid": "1.3.6.1.4.1.13742.6.5.7", + "class": "objectidentity" + }, + "measurementsCircuit": { + "name": "measurementsCircuit", + "oid": "1.3.6.1.4.1.13742.6.5.8", + "class": "objectidentity" + }, + "measurementsOutletGroup": { + "name": "measurementsOutletGroup", + "oid": "1.3.6.1.4.1.13742.6.5.9", + "class": "objectidentity" + }, + "logUnit": { + "name": "logUnit", + "oid": "1.3.6.1.4.1.13742.6.6.1", + "class": "objectidentity" + }, + "logInlet": { + "name": "logInlet", + "oid": "1.3.6.1.4.1.13742.6.6.2", + "class": "objectidentity" + }, + "logOverCurrentProtector": { + "name": "logOverCurrentProtector", + "oid": "1.3.6.1.4.1.13742.6.6.3", + "class": "objectidentity" + }, + "logOutlet": { + "name": "logOutlet", + "oid": "1.3.6.1.4.1.13742.6.6.4", + "class": "objectidentity" + }, + "logExternalSensor": { + "name": "logExternalSensor", + "oid": "1.3.6.1.4.1.13742.6.6.5", + "class": "objectidentity" + }, + "logWire": { + "name": "logWire", + "oid": "1.3.6.1.4.1.13742.6.6.6", + "class": "objectidentity" + }, + "logTransferSwitch": { + "name": "logTransferSwitch", + "oid": "1.3.6.1.4.1.13742.6.6.7", + "class": "objectidentity" + }, + "logCircuit": { + "name": "logCircuit", + "oid": "1.3.6.1.4.1.13742.6.6.8", + "class": "objectidentity" + }, + "logOutletGroup": { + "name": "logOutletGroup", + "oid": "1.3.6.1.4.1.13742.6.6.9", + "class": "objectidentity" + }, + "reliabilityData": { + "name": "reliabilityData", + "oid": "1.3.6.1.4.1.13742.6.10.1", + "class": "objectidentity" + }, + "reliabilityErrorLog": { + "name": "reliabilityErrorLog", + "oid": "1.3.6.1.4.1.13742.6.10.2", + "class": "objectidentity" + }, + "reliabilityHardwareHealth": { + "name": "reliabilityHardwareHealth", + "oid": "1.3.6.1.4.1.13742.6.10.3", + "class": "objectidentity" + }, + "compliances": { + "name": "compliances", + "oid": "1.3.6.1.4.1.13742.6.9.1", + "class": "objectidentity" + }, + "groups": { + "name": "groups", + "oid": "1.3.6.1.4.1.13742.6.9.2", + "class": "objectidentity" + }, + "complianceRev2": { + "name": "complianceRev2", + "oid": "1.3.6.1.4.1.13742.6.9.1.2", + "class": "modulecompliance", + "modulecompliance": [ + { + "object": "configGroup", + "module": "PDU2-MIB" + }, + { + "object": "logGroup", + "module": "PDU2-MIB" + }, + { + "object": "measurementsGroup", + "module": "PDU2-MIB" + }, + { + "object": "controlGroup", + "module": "PDU2-MIB" + }, + { + "object": "trapInformationGroup", + "module": "PDU2-MIB" + }, + { + "object": "trapsGroup", + "module": "PDU2-MIB" + }, + { + "object": "reliabilityGroup", + "module": "PDU2-MIB" + } + ], + "status": "current" + }, + "complianceRev1": { + "name": "complianceRev1", + "oid": "1.3.6.1.4.1.13742.6.9.1.1", + "class": "modulecompliance", + "modulecompliance": [ + { + "object": "ipAddressGroup", + "module": "PDU2-MIB" + }, + { + "object": "oldConfigGroup", + "module": "PDU2-MIB" + }, + { + "object": "oldTrapsGroup", + "module": "PDU2-MIB" + } + ], + "status": "deprecated" + }, + "configGroup": { + "name": "configGroup", + "oid": "1.3.6.1.4.1.13742.6.9.2.1", + "class": "objectgroup", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduCount" + }, + { + "module": "PDU2-MIB", + "object": "pduManufacturer" + }, + { + "module": "PDU2-MIB", + "object": "pduModel" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + }, + { + "module": "PDU2-MIB", + "object": "pduRatedVoltage" + }, + { + "module": "PDU2-MIB", + "object": "pduRatedCurrent" + }, + { + "module": "PDU2-MIB", + "object": "pduRatedFrequency" + }, + { + "module": "PDU2-MIB", + "object": "pduRatedVA" + }, + { + "module": "PDU2-MIB", + "object": "pduImage" + }, + { + "module": "PDU2-MIB", + "object": "inletCount" + }, + { + "module": "PDU2-MIB", + "object": "transferSwitchCount" + }, + { + "module": "PDU2-MIB", + "object": "productType" + }, + { + "module": "PDU2-MIB", + "object": "overCurrentProtectorCount" + }, + { + "module": "PDU2-MIB", + "object": "outletCount" + }, + { + "module": "PDU2-MIB", + "object": "inletControllerCount" + }, + { + "module": "PDU2-MIB", + "object": "outletControllerCount" + }, + { + "module": "PDU2-MIB", + "object": "meteringControllerCount" + }, + { + "module": "PDU2-MIB", + "object": "externalSensorCount" + }, + { + "module": "PDU2-MIB", + "object": "circuitCount" + }, + { + "module": "PDU2-MIB", + "object": "utcOffset" + }, + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "boardVersion" + }, + { + "module": "PDU2-MIB", + "object": "boardFirmwareVersion" + }, + { + "module": "PDU2-MIB", + "object": "boardFirmwareTimeStamp" + }, + { + "module": "PDU2-MIB", + "object": "unitSensorLogAvailable" + }, + { + "module": "PDU2-MIB", + "object": "unitSensorUnits" + }, + { + "module": "PDU2-MIB", + "object": "unitSensorDecimalDigits" + }, + { + "module": "PDU2-MIB", + "object": "unitSensorResolution" + }, + { + "module": "PDU2-MIB", + "object": "unitSensorMaximum" + }, + { + "module": "PDU2-MIB", + "object": "unitSensorMinimum" + }, + { + "module": "PDU2-MIB", + "object": "unitSensorHysteresis" + }, + { + "module": "PDU2-MIB", + "object": "unitSensorStateChangeDelay" + }, + { + "module": "PDU2-MIB", + "object": "unitSensorLowerCriticalThreshold" + }, + { + "module": "PDU2-MIB", + "object": "unitSensorLowerWarningThreshold" + }, + { + "module": "PDU2-MIB", + "object": "unitSensorUpperCriticalThreshold" + }, + { + "module": "PDU2-MIB", + "object": "unitSensorUpperWarningThreshold" + }, + { + "module": "PDU2-MIB", + "object": "unitSensorEnabledThresholds" + }, + { + "module": "PDU2-MIB", + "object": "unitSensorSignedMaximum" + }, + { + "module": "PDU2-MIB", + "object": "unitSensorSignedMinimum" + }, + { + "module": "PDU2-MIB", + "object": "unitSensorSignedLowerCriticalThreshold" + }, + { + "module": "PDU2-MIB", + "object": "unitSensorSignedLowerWarningThreshold" + }, + { + "module": "PDU2-MIB", + "object": "unitSensorSignedUpperCriticalThreshold" + }, + { + "module": "PDU2-MIB", + "object": "unitSensorSignedUpperWarningThreshold" + }, + { + "module": "PDU2-MIB", + "object": "inletLabel" + }, + { + "module": "PDU2-MIB", + "object": "inletName" + }, + { + "module": "PDU2-MIB", + "object": "inletPoleCount" + }, + { + "module": "PDU2-MIB", + "object": "inletRatedVoltage" + }, + { + "module": "PDU2-MIB", + "object": "inletRatedCurrent" + }, + { + "module": "PDU2-MIB", + "object": "inletDeviceCapabilities" + }, + { + "module": "PDU2-MIB", + "object": "inletPoleCapabilities" + }, + { + "module": "PDU2-MIB", + "object": "inletPlugDescriptor" + }, + { + "module": "PDU2-MIB", + "object": "inletEnableState" + }, + { + "module": "PDU2-MIB", + "object": "inletIsDC" + }, + { + "module": "PDU2-MIB", + "object": "inletLinePairCount" + }, + { + "module": "PDU2-MIB", + "object": "inletPoleLine" + }, + { + "module": "PDU2-MIB", + "object": "inletPoleNode" + }, + { + "module": "PDU2-MIB", + "object": "inletSensorLogAvailable" + }, + { + "module": "PDU2-MIB", + "object": "inletSensorUnits" + }, + { + "module": "PDU2-MIB", + "object": "inletSensorDecimalDigits" + }, + { + "module": "PDU2-MIB", + "object": "inletSensorResolution" + }, + { + "module": "PDU2-MIB", + "object": "inletSensorMaximum" + }, + { + "module": "PDU2-MIB", + "object": "inletSensorMinimum" + }, + { + "module": "PDU2-MIB", + "object": "inletSensorHysteresis" + }, + { + "module": "PDU2-MIB", + "object": "inletSensorStateChangeDelay" + }, + { + "module": "PDU2-MIB", + "object": "inletSensorLowerCriticalThreshold" + }, + { + "module": "PDU2-MIB", + "object": "inletSensorLowerWarningThreshold" + }, + { + "module": "PDU2-MIB", + "object": "inletSensorUpperCriticalThreshold" + }, + { + "module": "PDU2-MIB", + "object": "inletSensorUpperWarningThreshold" + }, + { + "module": "PDU2-MIB", + "object": "inletSensorEnabledThresholds" + }, + { + "module": "PDU2-MIB", + "object": "inletSensorSignedMaximum" + }, + { + "module": "PDU2-MIB", + "object": "inletSensorSignedMinimum" + }, + { + "module": "PDU2-MIB", + "object": "inletSensorSignedLowerCriticalThreshold" + }, + { + "module": "PDU2-MIB", + "object": "inletSensorSignedLowerWarningThreshold" + }, + { + "module": "PDU2-MIB", + "object": "inletSensorSignedUpperCriticalThreshold" + }, + { + "module": "PDU2-MIB", + "object": "inletSensorSignedUpperWarningThreshold" + }, + { + "module": "PDU2-MIB", + "object": "inletPoleSensorLogAvailable" + }, + { + "module": "PDU2-MIB", + "object": "inletPoleSensorUnits" + }, + { + "module": "PDU2-MIB", + "object": "inletPoleSensorDecimalDigits" + }, + { + "module": "PDU2-MIB", + "object": "inletPoleSensorResolution" + }, + { + "module": "PDU2-MIB", + "object": "inletPoleSensorMaximum" + }, + { + "module": "PDU2-MIB", + "object": "inletPoleSensorMinimum" + }, + { + "module": "PDU2-MIB", + "object": "inletPoleSensorHysteresis" + }, + { + "module": "PDU2-MIB", + "object": "inletPoleSensorStateChangeDelay" + }, + { + "module": "PDU2-MIB", + "object": "inletPoleSensorLowerCriticalThreshold" + }, + { + "module": "PDU2-MIB", + "object": "inletPoleSensorLowerWarningThreshold" + }, + { + "module": "PDU2-MIB", + "object": "inletPoleSensorUpperCriticalThreshold" + }, + { + "module": "PDU2-MIB", + "object": "inletPoleSensorUpperWarningThreshold" + }, + { + "module": "PDU2-MIB", + "object": "inletPoleSensorEnabledThresholds" + }, + { + "module": "PDU2-MIB", + "object": "inletPoleSensorSignedMaximum" + }, + { + "module": "PDU2-MIB", + "object": "inletPoleSensorSignedMinimum" + }, + { + "module": "PDU2-MIB", + "object": "inletPoleSensorSignedLowerCriticalThreshold" + }, + { + "module": "PDU2-MIB", + "object": "inletPoleSensorSignedLowerWarningThreshold" + }, + { + "module": "PDU2-MIB", + "object": "inletPoleSensorSignedUpperCriticalThreshold" + }, + { + "module": "PDU2-MIB", + "object": "inletPoleSensorSignedUpperWarningThreshold" + }, + { + "module": "PDU2-MIB", + "object": "inletLinePairCapabilities" + }, + { + "module": "PDU2-MIB", + "object": "inletLinePairLeftLine" + }, + { + "module": "PDU2-MIB", + "object": "inletLinePairRightLine" + }, + { + "module": "PDU2-MIB", + "object": "inletLinePairLeftNode" + }, + { + "module": "PDU2-MIB", + "object": "inletLinePairRightNode" + }, + { + "module": "PDU2-MIB", + "object": "inletLinePairSensorLogAvailable" + }, + { + "module": "PDU2-MIB", + "object": "inletLinePairSensorUnits" + }, + { + "module": "PDU2-MIB", + "object": "inletLinePairSensorDecimalDigits" + }, + { + "module": "PDU2-MIB", + "object": "inletLinePairSensorResolution" + }, + { + "module": "PDU2-MIB", + "object": "inletLinePairSensorMaximum" + }, + { + "module": "PDU2-MIB", + "object": "inletLinePairSensorMinimum" + }, + { + "module": "PDU2-MIB", + "object": "inletLinePairSensorHysteresis" + }, + { + "module": "PDU2-MIB", + "object": "inletLinePairSensorStateChangeDelay" + }, + { + "module": "PDU2-MIB", + "object": "inletLinePairSensorLowerCriticalThreshold" + }, + { + "module": "PDU2-MIB", + "object": "inletLinePairSensorLowerWarningThreshold" + }, + { + "module": "PDU2-MIB", + "object": "inletLinePairSensorUpperCriticalThreshold" + }, + { + "module": "PDU2-MIB", + "object": "inletLinePairSensorUpperWarningThreshold" + }, + { + "module": "PDU2-MIB", + "object": "inletLinePairSensorEnabledThresholds" + }, + { + "module": "PDU2-MIB", + "object": "inletLinePairSensorSignedMaximum" + }, + { + "module": "PDU2-MIB", + "object": "inletLinePairSensorSignedMinimum" + }, + { + "module": "PDU2-MIB", + "object": "inletLinePairSensorSignedLowerCriticalThreshold" + }, + { + "module": "PDU2-MIB", + "object": "inletLinePairSensorSignedLowerWarningThreshold" + }, + { + "module": "PDU2-MIB", + "object": "inletLinePairSensorSignedUpperCriticalThreshold" + }, + { + "module": "PDU2-MIB", + "object": "inletLinePairSensorSignedUpperWarningThreshold" + }, + { + "module": "PDU2-MIB", + "object": "overCurrentProtectorLabel" + }, + { + "module": "PDU2-MIB", + "object": "overCurrentProtectorName" + }, + { + "module": "PDU2-MIB", + "object": "overCurrentProtectorType" + }, + { + "module": "PDU2-MIB", + "object": "overCurrentProtectorRatedCurrent" + }, + { + "module": "PDU2-MIB", + "object": "overCurrentProtectorCapabilities" + }, + { + "module": "PDU2-MIB", + "object": "overCurrentProtectorPoleCount" + }, + { + "module": "PDU2-MIB", + "object": "overCurrentProtectorPoleLine" + }, + { + "module": "PDU2-MIB", + "object": "overCurrentProtectorPoleInNode" + }, + { + "module": "PDU2-MIB", + "object": "overCurrentProtectorPoleOutNode" + }, + { + "module": "PDU2-MIB", + "object": "overCurrentProtectorSensorLogAvailable" + }, + { + "module": "PDU2-MIB", + "object": "overCurrentProtectorSensorUnits" + }, + { + "module": "PDU2-MIB", + "object": "overCurrentProtectorSensorDecimalDigits" + }, + { + "module": "PDU2-MIB", + "object": "overCurrentProtectorSensorResolution" + }, + { + "module": "PDU2-MIB", + "object": "overCurrentProtectorSensorMaximum" + }, + { + "module": "PDU2-MIB", + "object": "overCurrentProtectorSensorMinimum" + }, + { + "module": "PDU2-MIB", + "object": "overCurrentProtectorSensorHysteresis" + }, + { + "module": "PDU2-MIB", + "object": "overCurrentProtectorSensorStateChangeDelay" + }, + { + "module": "PDU2-MIB", + "object": "overCurrentProtectorSensorLowerCriticalThreshold" + }, + { + "module": "PDU2-MIB", + "object": "overCurrentProtectorSensorLowerWarningThreshold" + }, + { + "module": "PDU2-MIB", + "object": "overCurrentProtectorSensorUpperCriticalThreshold" + }, + { + "module": "PDU2-MIB", + "object": "overCurrentProtectorSensorUpperWarningThreshold" + }, + { + "module": "PDU2-MIB", + "object": "overCurrentProtectorSensorEnabledThresholds" + }, + { + "module": "PDU2-MIB", + "object": "overCurrentProtectorSensorSignedMaximum" + }, + { + "module": "PDU2-MIB", + "object": "overCurrentProtectorSensorSignedMinimum" + }, + { + "module": "PDU2-MIB", + "object": "overCurrentProtectorSensorSignedLowerCriticalThreshold" + }, + { + "module": "PDU2-MIB", + "object": "overCurrentProtectorSensorSignedLowerWarningThreshold" + }, + { + "module": "PDU2-MIB", + "object": "overCurrentProtectorSensorSignedUpperCriticalThreshold" + }, + { + "module": "PDU2-MIB", + "object": "overCurrentProtectorSensorSignedUpperWarningThreshold" + }, + { + "module": "PDU2-MIB", + "object": "overCurrentProtectorPowerSource" + }, + { + "module": "PDU2-MIB", + "object": "outletLabel" + }, + { + "module": "PDU2-MIB", + "object": "outletName" + }, + { + "module": "PDU2-MIB", + "object": "outletPoleCount" + }, + { + "module": "PDU2-MIB", + "object": "outletRatedVoltage" + }, + { + "module": "PDU2-MIB", + "object": "outletRatedCurrent" + }, + { + "module": "PDU2-MIB", + "object": "outletRatedVA" + }, + { + "module": "PDU2-MIB", + "object": "outletDeviceCapabilities" + }, + { + "module": "PDU2-MIB", + "object": "outletPoleCapabilities" + }, + { + "module": "PDU2-MIB", + "object": "outletPowerCyclingPowerOffPeriod" + }, + { + "module": "PDU2-MIB", + "object": "outletStateOnStartup" + }, + { + "module": "PDU2-MIB", + "object": "outletUseGlobalPowerCyclingPowerOffPeriod" + }, + { + "module": "PDU2-MIB", + "object": "outletSwitchable" + }, + { + "module": "PDU2-MIB", + "object": "outletReceptacleDescriptor" + }, + { + "module": "PDU2-MIB", + "object": "outletNonCritical" + }, + { + "module": "PDU2-MIB", + "object": "outletSequenceDelay" + }, + { + "module": "PDU2-MIB", + "object": "outletPoleLine" + }, + { + "module": "PDU2-MIB", + "object": "outletPoleNode" + }, + { + "module": "PDU2-MIB", + "object": "outletSensorLogAvailable" + }, + { + "module": "PDU2-MIB", + "object": "outletSensorUnits" + }, + { + "module": "PDU2-MIB", + "object": "outletSensorDecimalDigits" + }, + { + "module": "PDU2-MIB", + "object": "outletSensorResolution" + }, + { + "module": "PDU2-MIB", + "object": "outletSensorMaximum" + }, + { + "module": "PDU2-MIB", + "object": "outletSensorMinimum" + }, + { + "module": "PDU2-MIB", + "object": "outletSensorHysteresis" + }, + { + "module": "PDU2-MIB", + "object": "outletSensorStateChangeDelay" + }, + { + "module": "PDU2-MIB", + "object": "outletSensorLowerCriticalThreshold" + }, + { + "module": "PDU2-MIB", + "object": "outletSensorLowerWarningThreshold" + }, + { + "module": "PDU2-MIB", + "object": "outletSensorUpperCriticalThreshold" + }, + { + "module": "PDU2-MIB", + "object": "outletSensorUpperWarningThreshold" + }, + { + "module": "PDU2-MIB", + "object": "outletSensorEnabledThresholds" + }, + { + "module": "PDU2-MIB", + "object": "outletSensorSignedMaximum" + }, + { + "module": "PDU2-MIB", + "object": "outletSensorSignedMinimum" + }, + { + "module": "PDU2-MIB", + "object": "outletSensorSignedLowerCriticalThreshold" + }, + { + "module": "PDU2-MIB", + "object": "outletSensorSignedLowerWarningThreshold" + }, + { + "module": "PDU2-MIB", + "object": "outletSensorSignedUpperCriticalThreshold" + }, + { + "module": "PDU2-MIB", + "object": "outletSensorSignedUpperWarningThreshold" + }, + { + "module": "PDU2-MIB", + "object": "outletPoleSensorLogAvailable" + }, + { + "module": "PDU2-MIB", + "object": "outletPoleSensorUnits" + }, + { + "module": "PDU2-MIB", + "object": "outletPoleSensorDecimalDigits" + }, + { + "module": "PDU2-MIB", + "object": "outletPoleSensorResolution" + }, + { + "module": "PDU2-MIB", + "object": "outletPoleSensorMaximum" + }, + { + "module": "PDU2-MIB", + "object": "outletPoleSensorMinimum" + }, + { + "module": "PDU2-MIB", + "object": "outletPoleSensorHysteresis" + }, + { + "module": "PDU2-MIB", + "object": "outletPoleSensorStateChangeDelay" + }, + { + "module": "PDU2-MIB", + "object": "outletPoleSensorLowerCriticalThreshold" + }, + { + "module": "PDU2-MIB", + "object": "outletPoleSensorLowerWarningThreshold" + }, + { + "module": "PDU2-MIB", + "object": "outletPoleSensorUpperCriticalThreshold" + }, + { + "module": "PDU2-MIB", + "object": "outletPoleSensorUpperWarningThreshold" + }, + { + "module": "PDU2-MIB", + "object": "outletPoleSensorEnabledThresholds" + }, + { + "module": "PDU2-MIB", + "object": "outletPoleSensorSignedMaximum" + }, + { + "module": "PDU2-MIB", + "object": "outletPoleSensorSignedMinimum" + }, + { + "module": "PDU2-MIB", + "object": "outletPoleSensorSignedLowerCriticalThreshold" + }, + { + "module": "PDU2-MIB", + "object": "outletPoleSensorSignedLowerWarningThreshold" + }, + { + "module": "PDU2-MIB", + "object": "outletPoleSensorSignedUpperCriticalThreshold" + }, + { + "module": "PDU2-MIB", + "object": "outletPoleSensorSignedUpperWarningThreshold" + }, + { + "module": "PDU2-MIB", + "object": "outletPowerSource" + }, + { + "module": "PDU2-MIB", + "object": "externalSensorType" + }, + { + "module": "PDU2-MIB", + "object": "externalSensorSerialNumber" + }, + { + "module": "PDU2-MIB", + "object": "externalSensorName" + }, + { + "module": "PDU2-MIB", + "object": "externalSensorDescription" + }, + { + "module": "PDU2-MIB", + "object": "externalSensorXCoordinate" + }, + { + "module": "PDU2-MIB", + "object": "externalSensorYCoordinate" + }, + { + "module": "PDU2-MIB", + "object": "externalSensorZCoordinate" + }, + { + "module": "PDU2-MIB", + "object": "externalSensorChannelNumber" + }, + { + "module": "PDU2-MIB", + "object": "externalOnOffSensorSubtype" + }, + { + "module": "PDU2-MIB", + "object": "externalSensorLogAvailable" + }, + { + "module": "PDU2-MIB", + "object": "externalSensorUnits" + }, + { + "module": "PDU2-MIB", + "object": "externalSensorDecimalDigits" + }, + { + "module": "PDU2-MIB", + "object": "externalSensorResolution" + }, + { + "module": "PDU2-MIB", + "object": "externalSensorMaximum" + }, + { + "module": "PDU2-MIB", + "object": "externalSensorMinimum" + }, + { + "module": "PDU2-MIB", + "object": "externalSensorHysteresis" + }, + { + "module": "PDU2-MIB", + "object": "externalSensorStateChangeDelay" + }, + { + "module": "PDU2-MIB", + "object": "externalSensorLowerCriticalThreshold" + }, + { + "module": "PDU2-MIB", + "object": "externalSensorLowerWarningThreshold" + }, + { + "module": "PDU2-MIB", + "object": "externalSensorUpperCriticalThreshold" + }, + { + "module": "PDU2-MIB", + "object": "externalSensorUpperWarningThreshold" + }, + { + "module": "PDU2-MIB", + "object": "externalSensorEnabledThresholds" + }, + { + "module": "PDU2-MIB", + "object": "externalSensorsZCoordinateUnits" + }, + { + "module": "PDU2-MIB", + "object": "externalSensorIsActuator" + }, + { + "module": "PDU2-MIB", + "object": "externalSensorPosition" + }, + { + "module": "PDU2-MIB", + "object": "externalSensorUseDefaultThresholds" + }, + { + "module": "PDU2-MIB", + "object": "externalSensorTypeDefaultHysteresis" + }, + { + "module": "PDU2-MIB", + "object": "externalSensorTypeDefaultStateChangeDelay" + }, + { + "module": "PDU2-MIB", + "object": "externalSensorTypeDefaultLowerCriticalThreshold" + }, + { + "module": "PDU2-MIB", + "object": "externalSensorTypeDefaultLowerWarningThreshold" + }, + { + "module": "PDU2-MIB", + "object": "externalSensorTypeDefaultUpperCriticalThreshold" + }, + { + "module": "PDU2-MIB", + "object": "externalSensorTypeDefaultUpperWarningThreshold" + }, + { + "module": "PDU2-MIB", + "object": "externalSensorTypeDefaultEnabledThresholds" + }, + { + "module": "PDU2-MIB", + "object": "externalSensorTypeDefaultUnit" + }, + { + "module": "PDU2-MIB", + "object": "externalSensorTypeDefaultDecimalDigits" + }, + { + "module": "PDU2-MIB", + "object": "externalSensorTypeDefaultMaximum" + }, + { + "module": "PDU2-MIB", + "object": "externalSensorTypeDefaultMinimum" + }, + { + "module": "PDU2-MIB", + "object": "measurementPeriod" + }, + { + "module": "PDU2-MIB", + "object": "measurementsPerLogEntry" + }, + { + "module": "PDU2-MIB", + "object": "logSize" + }, + { + "module": "PDU2-MIB", + "object": "unitDeviceCapabilities" + }, + { + "module": "PDU2-MIB", + "object": "globalOutletPowerCyclingPowerOffPeriod" + }, + { + "module": "PDU2-MIB", + "object": "globalOutletStateOnStartup" + }, + { + "module": "PDU2-MIB", + "object": "relayBehaviorOnPowerLoss" + }, + { + "module": "PDU2-MIB", + "object": "pduPowerCyclingPowerOffPeriod" + }, + { + "module": "PDU2-MIB", + "object": "pduDaisychainMemberType" + }, + { + "module": "PDU2-MIB", + "object": "managedExternalSensorCount" + }, + { + "module": "PDU2-MIB", + "object": "outletPowerupSequence" + }, + { + "module": "PDU2-MIB", + "object": "loadShedding" + }, + { + "module": "PDU2-MIB", + "object": "serverCount" + }, + { + "module": "PDU2-MIB", + "object": "serverIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "serverPingEnabled" + }, + { + "module": "PDU2-MIB", + "object": "inrushGuardDelay" + }, + { + "module": "PDU2-MIB", + "object": "cascadedDeviceConnected" + }, + { + "module": "PDU2-MIB", + "object": "synchronizeWithNTPServer" + }, + { + "module": "PDU2-MIB", + "object": "firstNTPServerAddressType" + }, + { + "module": "PDU2-MIB", + "object": "firstNTPServerAddress" + }, + { + "module": "PDU2-MIB", + "object": "secondNTPServerAddressType" + }, + { + "module": "PDU2-MIB", + "object": "secondNTPServerAddress" + }, + { + "module": "PDU2-MIB", + "object": "transferSwitchLabel" + }, + { + "module": "PDU2-MIB", + "object": "transferSwitchName" + }, + { + "module": "PDU2-MIB", + "object": "transferSwitchPreferredInlet" + }, + { + "module": "PDU2-MIB", + "object": "transferSwitchPoleCount" + }, + { + "module": "PDU2-MIB", + "object": "transferSwitchAutoReTransferEnabled" + }, + { + "module": "PDU2-MIB", + "object": "transferSwitchAutoReTransferWaitTime" + }, + { + "module": "PDU2-MIB", + "object": "transferSwitchAutoReTransferRequiresPhaseSync" + }, + { + "module": "PDU2-MIB", + "object": "transferSwitchFrontPanelManualTransferButtonEnabled" + }, + { + "module": "PDU2-MIB", + "object": "transferSwitchCapabilities" + }, + { + "module": "PDU2-MIB", + "object": "transferSwitchPoleLine" + }, + { + "module": "PDU2-MIB", + "object": "transferSwitchPoleIn1Node" + }, + { + "module": "PDU2-MIB", + "object": "transferSwitchPoleIn2Node" + }, + { + "module": "PDU2-MIB", + "object": "transferSwitchPoleOutNode" + }, + { + "module": "PDU2-MIB", + "object": "transferSwitchSensorLogAvailable" + }, + { + "module": "PDU2-MIB", + "object": "transferSwitchSensorUnits" + }, + { + "module": "PDU2-MIB", + "object": "transferSwitchSensorDecimalDigits" + }, + { + "module": "PDU2-MIB", + "object": "transferSwitchSensorResolution" + }, + { + "module": "PDU2-MIB", + "object": "transferSwitchSensorMaximum" + }, + { + "module": "PDU2-MIB", + "object": "transferSwitchSensorMinimum" + }, + { + "module": "PDU2-MIB", + "object": "transferSwitchSensorHysteresis" + }, + { + "module": "PDU2-MIB", + "object": "transferSwitchSensorStateChangeDelay" + }, + { + "module": "PDU2-MIB", + "object": "transferSwitchSensorLowerCriticalThreshold" + }, + { + "module": "PDU2-MIB", + "object": "transferSwitchSensorLowerWarningThreshold" + }, + { + "module": "PDU2-MIB", + "object": "transferSwitchSensorUpperCriticalThreshold" + }, + { + "module": "PDU2-MIB", + "object": "transferSwitchSensorUpperWarningThreshold" + }, + { + "module": "PDU2-MIB", + "object": "transferSwitchSensorEnabledThresholds" + }, + { + "module": "PDU2-MIB", + "object": "transferSwitchSensorSignedMaximum" + }, + { + "module": "PDU2-MIB", + "object": "transferSwitchSensorSignedMinimum" + }, + { + "module": "PDU2-MIB", + "object": "transferSwitchSensorSignedLowerCriticalThreshold" + }, + { + "module": "PDU2-MIB", + "object": "transferSwitchSensorSignedLowerWarningThreshold" + }, + { + "module": "PDU2-MIB", + "object": "transferSwitchSensorSignedUpperCriticalThreshold" + }, + { + "module": "PDU2-MIB", + "object": "transferSwitchSensorSignedUpperWarningThreshold" + }, + { + "module": "PDU2-MIB", + "object": "transferSwitchPowerSource1" + }, + { + "module": "PDU2-MIB", + "object": "transferSwitchPowerSource2" + }, + { + "module": "PDU2-MIB", + "object": "peripheralDevicePackageSerialNumber" + }, + { + "module": "PDU2-MIB", + "object": "peripheralDevicePackageModel" + }, + { + "module": "PDU2-MIB", + "object": "peripheralDevicePackageFirmwareVersion" + }, + { + "module": "PDU2-MIB", + "object": "peripheralDevicePackageMinFirmwareVersion" + }, + { + "module": "PDU2-MIB", + "object": "peripheralDevicePackageFirmwareTimeStamp" + }, + { + "module": "PDU2-MIB", + "object": "peripheralDevicePackagePosition" + }, + { + "module": "PDU2-MIB", + "object": "peripheralDevicePackageState" + }, + { + "module": "PDU2-MIB", + "object": "deviceCascadeType" + }, + { + "module": "PDU2-MIB", + "object": "deviceCascadePosition" + }, + { + "module": "PDU2-MIB", + "object": "peripheralDevicesAutoManagement" + }, + { + "module": "PDU2-MIB", + "object": "externalSensorAlarmedToNormalDelay" + }, + { + "module": "PDU2-MIB", + "object": "frontPanelOutletSwitching" + }, + { + "module": "PDU2-MIB", + "object": "frontPanelRCMSelfTest" + }, + { + "module": "PDU2-MIB", + "object": "frontPanelActuatorControl" + }, + { + "module": "PDU2-MIB", + "object": "powerMeterPanelPositions" + }, + { + "module": "PDU2-MIB", + "object": "powerMeterPanelLayout" + }, + { + "module": "PDU2-MIB", + "object": "powerMeterPanelNumbering" + }, + { + "module": "PDU2-MIB", + "object": "powerMeterPhaseCTRating" + }, + { + "module": "PDU2-MIB", + "object": "powerMeterNeutralCTRating" + }, + { + "module": "PDU2-MIB", + "object": "powerMeterEarthCTRating" + }, + { + "module": "PDU2-MIB", + "object": "powerMeterBranchCount" + }, + { + "module": "PDU2-MIB", + "object": "powerMeterType" + }, + { + "module": "PDU2-MIB", + "object": "circuitPoleCount" + }, + { + "module": "PDU2-MIB", + "object": "circuitName" + }, + { + "module": "PDU2-MIB", + "object": "circuitType" + }, + { + "module": "PDU2-MIB", + "object": "circuitRatedCurrent" + }, + { + "module": "PDU2-MIB", + "object": "circuitCTRating" + }, + { + "module": "PDU2-MIB", + "object": "circuitCapabilities" + }, + { + "module": "PDU2-MIB", + "object": "circuitPoleCapabilities" + }, + { + "module": "PDU2-MIB", + "object": "circuitPowerSource" + }, + { + "module": "PDU2-MIB", + "object": "circuitPolePanelPosition" + }, + { + "module": "PDU2-MIB", + "object": "circuitPoleCTNumber" + }, + { + "module": "PDU2-MIB", + "object": "circuitPolePhase" + }, + { + "module": "PDU2-MIB", + "object": "circuitSensorLogAvailable" + }, + { + "module": "PDU2-MIB", + "object": "circuitSensorUnits" + }, + { + "module": "PDU2-MIB", + "object": "circuitSensorDecimalDigits" + }, + { + "module": "PDU2-MIB", + "object": "circuitSensorResolution" + }, + { + "module": "PDU2-MIB", + "object": "circuitSensorMaximum" + }, + { + "module": "PDU2-MIB", + "object": "circuitSensorMinimum" + }, + { + "module": "PDU2-MIB", + "object": "circuitSensorHysteresis" + }, + { + "module": "PDU2-MIB", + "object": "circuitSensorStateChangeDelay" + }, + { + "module": "PDU2-MIB", + "object": "circuitSensorLowerCriticalThreshold" + }, + { + "module": "PDU2-MIB", + "object": "circuitSensorLowerWarningThreshold" + }, + { + "module": "PDU2-MIB", + "object": "circuitSensorUpperCriticalThreshold" + }, + { + "module": "PDU2-MIB", + "object": "circuitSensorUpperWarningThreshold" + }, + { + "module": "PDU2-MIB", + "object": "circuitSensorEnabledThresholds" + }, + { + "module": "PDU2-MIB", + "object": "circuitSensorSignedMaximum" + }, + { + "module": "PDU2-MIB", + "object": "circuitSensorSignedMinimum" + }, + { + "module": "PDU2-MIB", + "object": "circuitSensorSignedLowerCriticalThreshold" + }, + { + "module": "PDU2-MIB", + "object": "circuitSensorSignedLowerWarningThreshold" + }, + { + "module": "PDU2-MIB", + "object": "circuitSensorSignedUpperCriticalThreshold" + }, + { + "module": "PDU2-MIB", + "object": "circuitSensorSignedUpperWarningThreshold" + }, + { + "module": "PDU2-MIB", + "object": "circuitPoleSensorLogAvailable" + }, + { + "module": "PDU2-MIB", + "object": "circuitPoleSensorUnits" + }, + { + "module": "PDU2-MIB", + "object": "circuitPoleSensorDecimalDigits" + }, + { + "module": "PDU2-MIB", + "object": "circuitPoleSensorResolution" + }, + { + "module": "PDU2-MIB", + "object": "circuitPoleSensorMaximum" + }, + { + "module": "PDU2-MIB", + "object": "circuitPoleSensorMinimum" + }, + { + "module": "PDU2-MIB", + "object": "circuitPoleSensorHysteresis" + }, + { + "module": "PDU2-MIB", + "object": "circuitPoleSensorStateChangeDelay" + }, + { + "module": "PDU2-MIB", + "object": "circuitPoleSensorLowerCriticalThreshold" + }, + { + "module": "PDU2-MIB", + "object": "circuitPoleSensorLowerWarningThreshold" + }, + { + "module": "PDU2-MIB", + "object": "circuitPoleSensorUpperCriticalThreshold" + }, + { + "module": "PDU2-MIB", + "object": "circuitPoleSensorUpperWarningThreshold" + }, + { + "module": "PDU2-MIB", + "object": "circuitPoleSensorEnabledThresholds" + }, + { + "module": "PDU2-MIB", + "object": "circuitPoleSensorSignedMaximum" + }, + { + "module": "PDU2-MIB", + "object": "circuitPoleSensorSignedMinimum" + }, + { + "module": "PDU2-MIB", + "object": "circuitPoleSensorSignedLowerCriticalThreshold" + }, + { + "module": "PDU2-MIB", + "object": "circuitPoleSensorSignedLowerWarningThreshold" + }, + { + "module": "PDU2-MIB", + "object": "circuitPoleSensorSignedUpperCriticalThreshold" + }, + { + "module": "PDU2-MIB", + "object": "circuitPoleSensorSignedUpperWarningThreshold" + }, + { + "module": "PDU2-MIB", + "object": "activeDNSServerAddressType" + }, + { + "module": "PDU2-MIB", + "object": "activeDNSServerAddress" + }, + { + "module": "PDU2-MIB", + "object": "activeDNSServerCount" + }, + { + "module": "PDU2-MIB", + "object": "activeNTPServerAddressType" + }, + { + "module": "PDU2-MIB", + "object": "activeNTPServerAddress" + }, + { + "module": "PDU2-MIB", + "object": "activeNTPServerCount" + }, + { + "module": "PDU2-MIB", + "object": "peripheralDevicePackageCount" + }, + { + "module": "PDU2-MIB", + "object": "outletGroupCount" + }, + { + "module": "PDU2-MIB", + "object": "outletGroupName" + }, + { + "module": "PDU2-MIB", + "object": "outletGroupCapabilities" + }, + { + "module": "PDU2-MIB", + "object": "outletGroupMembers" + }, + { + "module": "PDU2-MIB", + "object": "outletGroupSensorLogAvailable" + }, + { + "module": "PDU2-MIB", + "object": "outletGroupSensorUnits" + }, + { + "module": "PDU2-MIB", + "object": "outletGroupSensorDecimalDigits" + }, + { + "module": "PDU2-MIB", + "object": "outletGroupSensorResolution" + }, + { + "module": "PDU2-MIB", + "object": "outletGroupSensorMaximum" + }, + { + "module": "PDU2-MIB", + "object": "outletGroupSensorMinimum" + }, + { + "module": "PDU2-MIB", + "object": "outletGroupSensorHysteresis" + }, + { + "module": "PDU2-MIB", + "object": "outletGroupSensorStateChangeDelay" + }, + { + "module": "PDU2-MIB", + "object": "outletGroupSensorLowerCriticalThreshold" + }, + { + "module": "PDU2-MIB", + "object": "outletGroupSensorLowerWarningThreshold" + }, + { + "module": "PDU2-MIB", + "object": "outletGroupSensorUpperCriticalThreshold" + }, + { + "module": "PDU2-MIB", + "object": "outletGroupSensorUpperWarningThreshold" + }, + { + "module": "PDU2-MIB", + "object": "outletGroupSensorEnabledThresholds" + }, + { + "module": "PDU2-MIB", + "object": "outletGroupSensorSignedMaximum" + }, + { + "module": "PDU2-MIB", + "object": "outletGroupSensorSignedMinimum" + }, + { + "module": "PDU2-MIB", + "object": "outletGroupSensorSignedLowerCriticalThreshold" + }, + { + "module": "PDU2-MIB", + "object": "outletGroupSensorSignedLowerWarningThreshold" + }, + { + "module": "PDU2-MIB", + "object": "outletGroupSensorSignedUpperCriticalThreshold" + }, + { + "module": "PDU2-MIB", + "object": "outletGroupSensorSignedUpperWarningThreshold" + }, + { + "module": "PDU2-MIB", + "object": "demandUpdateInterval" + }, + { + "module": "PDU2-MIB", + "object": "demandAveragingIntervals" + }, + { + "module": "PDU2-MIB", + "object": "hasDCInlets" + }, + { + "module": "PDU2-MIB", + "object": "pduOrientation" + }, + { + "module": "PDU2-MIB", + "object": "pduUptime" + }, + { + "module": "PDU2-MIB", + "object": "tripCauseOutletHandling" + } + ], + "status": "current" + }, + "ipAddressGroup": { + "name": "ipAddressGroup", + "oid": "1.3.6.1.4.1.13742.6.9.2.12", + "class": "objectgroup", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pxIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "netmask" + }, + { + "module": "PDU2-MIB", + "object": "gateway" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "pxInetNetmask" + }, + { + "module": "PDU2-MIB", + "object": "pxInetGateway" + } + ], + "status": "deprecated" + }, + "obsoleteObjectsGroup": { + "name": "obsoleteObjectsGroup", + "oid": "1.3.6.1.4.1.13742.6.9.2.20", + "class": "objectgroup", + "objects": [ + { + "module": "PDU2-MIB", + "object": "useDHCPProvidedNTPServer" + }, + { + "module": "PDU2-MIB", + "object": "inletRCMResidualOperatingCurrent" + }, + { + "module": "PDU2-MIB", + "object": "wireSensorAccuracy" + }, + { + "module": "PDU2-MIB", + "object": "wireSensorTolerance" + }, + { + "module": "PDU2-MIB", + "object": "wireCount" + }, + { + "module": "PDU2-MIB", + "object": "wireLabel" + }, + { + "module": "PDU2-MIB", + "object": "wireCapabilities" + }, + { + "module": "PDU2-MIB", + "object": "wireSensorLogAvailable" + }, + { + "module": "PDU2-MIB", + "object": "wireSensorUnits" + }, + { + "module": "PDU2-MIB", + "object": "wireSensorDecimalDigits" + }, + { + "module": "PDU2-MIB", + "object": "wireSensorResolution" + }, + { + "module": "PDU2-MIB", + "object": "wireSensorMaximum" + }, + { + "module": "PDU2-MIB", + "object": "wireSensorMinimum" + }, + { + "module": "PDU2-MIB", + "object": "wireSensorHysteresis" + }, + { + "module": "PDU2-MIB", + "object": "wireSensorStateChangeDelay" + }, + { + "module": "PDU2-MIB", + "object": "wireSensorLowerCriticalThreshold" + }, + { + "module": "PDU2-MIB", + "object": "wireSensorLowerWarningThreshold" + }, + { + "module": "PDU2-MIB", + "object": "wireSensorUpperCriticalThreshold" + }, + { + "module": "PDU2-MIB", + "object": "wireSensorUpperWarningThreshold" + }, + { + "module": "PDU2-MIB", + "object": "wireSensorEnabledThresholds" + }, + { + "module": "PDU2-MIB", + "object": "wirePowerSource" + }, + { + "module": "PDU2-MIB", + "object": "logWireSensorDataAvailable" + }, + { + "module": "PDU2-MIB", + "object": "logWireSensorState" + }, + { + "module": "PDU2-MIB", + "object": "logWireSensorAvgValue" + }, + { + "module": "PDU2-MIB", + "object": "logWireSensorMaxValue" + }, + { + "module": "PDU2-MIB", + "object": "logWireSensorMinValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsWireSensorIsAvailable" + }, + { + "module": "PDU2-MIB", + "object": "measurementsWireSensorState" + }, + { + "module": "PDU2-MIB", + "object": "measurementsWireSensorValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsWireSensorTimeStamp" + } + ], + "status": "obsolete" + }, + "oldConfigGroup": { + "name": "oldConfigGroup", + "oid": "1.3.6.1.4.1.13742.6.9.2.13", + "class": "objectgroup", + "objects": [ + { + "module": "PDU2-MIB", + "object": "outletSequencingDelay" + }, + { + "module": "PDU2-MIB", + "object": "unitSensorAccuracy" + }, + { + "module": "PDU2-MIB", + "object": "unitSensorTolerance" + }, + { + "module": "PDU2-MIB", + "object": "inletSensorAccuracy" + }, + { + "module": "PDU2-MIB", + "object": "inletSensorTolerance" + }, + { + "module": "PDU2-MIB", + "object": "inletPoleSensorAccuracy" + }, + { + "module": "PDU2-MIB", + "object": "inletPoleSensorTolerance" + }, + { + "module": "PDU2-MIB", + "object": "outletSensorAccuracy" + }, + { + "module": "PDU2-MIB", + "object": "outletSensorTolerance" + }, + { + "module": "PDU2-MIB", + "object": "outletPoleSensorAccuracy" + }, + { + "module": "PDU2-MIB", + "object": "outletPoleSensorTolerance" + }, + { + "module": "PDU2-MIB", + "object": "overCurrentProtectorSensorAccuracy" + }, + { + "module": "PDU2-MIB", + "object": "overCurrentProtectorSensorTolerance" + }, + { + "module": "PDU2-MIB", + "object": "externalSensorAccuracy" + }, + { + "module": "PDU2-MIB", + "object": "externalSensorTolerance" + }, + { + "module": "PDU2-MIB", + "object": "transferSwitchSensorAccuracy" + }, + { + "module": "PDU2-MIB", + "object": "transferSwitchSensorTolerance" + }, + { + "module": "PDU2-MIB", + "object": "inletRatedFrequency" + }, + { + "module": "PDU2-MIB", + "object": "inletRatedVA" + }, + { + "module": "PDU2-MIB", + "object": "pxMACAddress" + }, + { + "module": "PDU2-MIB", + "object": "networkInterfaceType" + }, + { + "module": "PDU2-MIB", + "object": "activeDNSServerAddressSource" + }, + { + "module": "PDU2-MIB", + "object": "activeNTPServerAddressSource" + }, + { + "module": "PDU2-MIB", + "object": "inletPlug" + }, + { + "module": "PDU2-MIB", + "object": "outletReceptacle" + }, + { + "module": "PDU2-MIB", + "object": "lhxSupportEnabled" + } + ], + "status": "deprecated" + }, + "logGroup": { + "name": "logGroup", + "oid": "1.3.6.1.4.1.13742.6.9.2.2", + "class": "objectgroup", + "objects": [ + { + "module": "PDU2-MIB", + "object": "dataLogging" + }, + { + "module": "PDU2-MIB", + "object": "oldestLogID" + }, + { + "module": "PDU2-MIB", + "object": "newestLogID" + }, + { + "module": "PDU2-MIB", + "object": "logTimeStamp" + }, + { + "module": "PDU2-MIB", + "object": "dataLoggingEnableForAllSensors" + }, + { + "module": "PDU2-MIB", + "object": "logUnitSensorDataAvailable" + }, + { + "module": "PDU2-MIB", + "object": "logUnitSensorState" + }, + { + "module": "PDU2-MIB", + "object": "logUnitSensorAvgValue" + }, + { + "module": "PDU2-MIB", + "object": "logUnitSensorMaxValue" + }, + { + "module": "PDU2-MIB", + "object": "logUnitSensorMinValue" + }, + { + "module": "PDU2-MIB", + "object": "logUnitSensorSignedAvgValue" + }, + { + "module": "PDU2-MIB", + "object": "logUnitSensorSignedMaxValue" + }, + { + "module": "PDU2-MIB", + "object": "logUnitSensorSignedMinValue" + }, + { + "module": "PDU2-MIB", + "object": "logInletSensorDataAvailable" + }, + { + "module": "PDU2-MIB", + "object": "logInletSensorState" + }, + { + "module": "PDU2-MIB", + "object": "logInletSensorAvgValue" + }, + { + "module": "PDU2-MIB", + "object": "logInletSensorMaxValue" + }, + { + "module": "PDU2-MIB", + "object": "logInletSensorMinValue" + }, + { + "module": "PDU2-MIB", + "object": "logInletSensorSignedAvgValue" + }, + { + "module": "PDU2-MIB", + "object": "logInletSensorSignedMaxValue" + }, + { + "module": "PDU2-MIB", + "object": "logInletSensorSignedMinValue" + }, + { + "module": "PDU2-MIB", + "object": "logInletPoleSensorDataAvailable" + }, + { + "module": "PDU2-MIB", + "object": "logInletPoleSensorState" + }, + { + "module": "PDU2-MIB", + "object": "logInletPoleSensorAvgValue" + }, + { + "module": "PDU2-MIB", + "object": "logInletPoleSensorMaxValue" + }, + { + "module": "PDU2-MIB", + "object": "logInletPoleSensorMinValue" + }, + { + "module": "PDU2-MIB", + "object": "logInletPoleSensorSignedAvgValue" + }, + { + "module": "PDU2-MIB", + "object": "logInletPoleSensorSignedMaxValue" + }, + { + "module": "PDU2-MIB", + "object": "logInletPoleSensorSignedMinValue" + }, + { + "module": "PDU2-MIB", + "object": "logInletLinePairSensorDataAvailable" + }, + { + "module": "PDU2-MIB", + "object": "logInletLinePairSensorState" + }, + { + "module": "PDU2-MIB", + "object": "logInletLinePairSensorAvgValue" + }, + { + "module": "PDU2-MIB", + "object": "logInletLinePairSensorMaxValue" + }, + { + "module": "PDU2-MIB", + "object": "logInletLinePairSensorMinValue" + }, + { + "module": "PDU2-MIB", + "object": "logInletLinePairSensorSignedAvgValue" + }, + { + "module": "PDU2-MIB", + "object": "logInletLinePairSensorSignedMaxValue" + }, + { + "module": "PDU2-MIB", + "object": "logInletLinePairSensorSignedMinValue" + }, + { + "module": "PDU2-MIB", + "object": "logOutletSensorDataAvailable" + }, + { + "module": "PDU2-MIB", + "object": "logOutletSensorState" + }, + { + "module": "PDU2-MIB", + "object": "logOutletSensorAvgValue" + }, + { + "module": "PDU2-MIB", + "object": "logOutletSensorMaxValue" + }, + { + "module": "PDU2-MIB", + "object": "logOutletSensorMinValue" + }, + { + "module": "PDU2-MIB", + "object": "logOutletSensorSignedAvgValue" + }, + { + "module": "PDU2-MIB", + "object": "logOutletSensorSignedMaxValue" + }, + { + "module": "PDU2-MIB", + "object": "logOutletSensorSignedMinValue" + }, + { + "module": "PDU2-MIB", + "object": "logOutletPoleSensorDataAvailable" + }, + { + "module": "PDU2-MIB", + "object": "logOutletPoleSensorState" + }, + { + "module": "PDU2-MIB", + "object": "logOutletPoleSensorAvgValue" + }, + { + "module": "PDU2-MIB", + "object": "logOutletPoleSensorMaxValue" + }, + { + "module": "PDU2-MIB", + "object": "logOutletPoleSensorMinValue" + }, + { + "module": "PDU2-MIB", + "object": "logOutletPoleSensorSignedAvgValue" + }, + { + "module": "PDU2-MIB", + "object": "logOutletPoleSensorSignedMaxValue" + }, + { + "module": "PDU2-MIB", + "object": "logOutletPoleSensorSignedMinValue" + }, + { + "module": "PDU2-MIB", + "object": "logOverCurrentProtectorSensorDataAvailable" + }, + { + "module": "PDU2-MIB", + "object": "logOverCurrentProtectorSensorState" + }, + { + "module": "PDU2-MIB", + "object": "logOverCurrentProtectorSensorAvgValue" + }, + { + "module": "PDU2-MIB", + "object": "logOverCurrentProtectorSensorMaxValue" + }, + { + "module": "PDU2-MIB", + "object": "logOverCurrentProtectorSensorMinValue" + }, + { + "module": "PDU2-MIB", + "object": "logOverCurrentProtectorSensorSignedAvgValue" + }, + { + "module": "PDU2-MIB", + "object": "logOverCurrentProtectorSensorSignedMaxValue" + }, + { + "module": "PDU2-MIB", + "object": "logOverCurrentProtectorSensorSignedMinValue" + }, + { + "module": "PDU2-MIB", + "object": "logExternalSensorDataAvailable" + }, + { + "module": "PDU2-MIB", + "object": "logExternalSensorState" + }, + { + "module": "PDU2-MIB", + "object": "logExternalSensorAvgValue" + }, + { + "module": "PDU2-MIB", + "object": "logExternalSensorMaxValue" + }, + { + "module": "PDU2-MIB", + "object": "logExternalSensorMinValue" + }, + { + "module": "PDU2-MIB", + "object": "logTransferSwitchSensorDataAvailable" + }, + { + "module": "PDU2-MIB", + "object": "logTransferSwitchSensorState" + }, + { + "module": "PDU2-MIB", + "object": "logTransferSwitchSensorAvgValue" + }, + { + "module": "PDU2-MIB", + "object": "logTransferSwitchSensorMaxValue" + }, + { + "module": "PDU2-MIB", + "object": "logTransferSwitchSensorMinValue" + }, + { + "module": "PDU2-MIB", + "object": "logTransferSwitchSensorSignedAvgValue" + }, + { + "module": "PDU2-MIB", + "object": "logTransferSwitchSensorSignedMaxValue" + }, + { + "module": "PDU2-MIB", + "object": "logTransferSwitchSensorSignedMinValue" + }, + { + "module": "PDU2-MIB", + "object": "logCircuitSensorDataAvailable" + }, + { + "module": "PDU2-MIB", + "object": "logCircuitSensorState" + }, + { + "module": "PDU2-MIB", + "object": "logCircuitSensorAvgValue" + }, + { + "module": "PDU2-MIB", + "object": "logCircuitSensorMaxValue" + }, + { + "module": "PDU2-MIB", + "object": "logCircuitSensorMinValue" + }, + { + "module": "PDU2-MIB", + "object": "logCircuitSensorSignedAvgValue" + }, + { + "module": "PDU2-MIB", + "object": "logCircuitSensorSignedMaxValue" + }, + { + "module": "PDU2-MIB", + "object": "logCircuitSensorSignedMinValue" + }, + { + "module": "PDU2-MIB", + "object": "logCircuitPoleSensorDataAvailable" + }, + { + "module": "PDU2-MIB", + "object": "logCircuitPoleSensorState" + }, + { + "module": "PDU2-MIB", + "object": "logCircuitPoleSensorAvgValue" + }, + { + "module": "PDU2-MIB", + "object": "logCircuitPoleSensorMaxValue" + }, + { + "module": "PDU2-MIB", + "object": "logCircuitPoleSensorMinValue" + }, + { + "module": "PDU2-MIB", + "object": "logCircuitPoleSensorSignedAvgValue" + }, + { + "module": "PDU2-MIB", + "object": "logCircuitPoleSensorSignedMaxValue" + }, + { + "module": "PDU2-MIB", + "object": "logCircuitPoleSensorSignedMinValue" + }, + { + "module": "PDU2-MIB", + "object": "logOutletGroupSensorDataAvailable" + }, + { + "module": "PDU2-MIB", + "object": "logOutletGroupSensorState" + }, + { + "module": "PDU2-MIB", + "object": "logOutletGroupSensorAvgValue" + }, + { + "module": "PDU2-MIB", + "object": "logOutletGroupSensorMaxValue" + }, + { + "module": "PDU2-MIB", + "object": "logOutletGroupSensorMinValue" + }, + { + "module": "PDU2-MIB", + "object": "logOutletGroupSensorSignedAvgValue" + }, + { + "module": "PDU2-MIB", + "object": "logOutletGroupSensorSignedMaxValue" + }, + { + "module": "PDU2-MIB", + "object": "logOutletGroupSensorSignedMinValue" + } + ], + "status": "current" + }, + "measurementsGroup": { + "name": "measurementsGroup", + "oid": "1.3.6.1.4.1.13742.6.9.2.3", + "class": "objectgroup", + "objects": [ + { + "module": "PDU2-MIB", + "object": "measurementsUnitSensorIsAvailable" + }, + { + "module": "PDU2-MIB", + "object": "measurementsUnitSensorState" + }, + { + "module": "PDU2-MIB", + "object": "measurementsUnitSensorValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsUnitSensorTimeStamp" + }, + { + "module": "PDU2-MIB", + "object": "measurementsUnitSensorSignedValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsUnitSensorMinMaxValid" + }, + { + "module": "PDU2-MIB", + "object": "measurementsUnitSensorMinValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsUnitSensorSignedMinValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsUnitSensorMinTimeStamp" + }, + { + "module": "PDU2-MIB", + "object": "measurementsUnitSensorMaxValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsUnitSensorSignedMaxValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsUnitSensorMaxTimeStamp" + }, + { + "module": "PDU2-MIB", + "object": "measurementsUnitSensorMinMaxResetTimeStamp" + }, + { + "module": "PDU2-MIB", + "object": "measurementsInletSensorIsAvailable" + }, + { + "module": "PDU2-MIB", + "object": "measurementsInletSensorState" + }, + { + "module": "PDU2-MIB", + "object": "measurementsInletSensorValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsInletSensorTimeStamp" + }, + { + "module": "PDU2-MIB", + "object": "measurementsInletSensorSignedValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsInletSensorMinMaxValid" + }, + { + "module": "PDU2-MIB", + "object": "measurementsInletSensorMinValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsInletSensorSignedMinValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsInletSensorMinTimeStamp" + }, + { + "module": "PDU2-MIB", + "object": "measurementsInletSensorMaxValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsInletSensorSignedMaxValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsInletSensorMaxTimeStamp" + }, + { + "module": "PDU2-MIB", + "object": "measurementsInletSensorMinMaxResetTimeStamp" + }, + { + "module": "PDU2-MIB", + "object": "measurementsInletPoleSensorIsAvailable" + }, + { + "module": "PDU2-MIB", + "object": "measurementsInletPoleSensorState" + }, + { + "module": "PDU2-MIB", + "object": "measurementsInletPoleSensorValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsInletPoleSensorTimeStamp" + }, + { + "module": "PDU2-MIB", + "object": "measurementsInletPoleSensorSignedValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsInletPoleSensorMinMaxValid" + }, + { + "module": "PDU2-MIB", + "object": "measurementsInletPoleSensorMinValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsInletPoleSensorSignedMinValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsInletPoleSensorMinTimeStamp" + }, + { + "module": "PDU2-MIB", + "object": "measurementsInletPoleSensorMaxValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsInletPoleSensorSignedMaxValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsInletPoleSensorMaxTimeStamp" + }, + { + "module": "PDU2-MIB", + "object": "measurementsInletPoleSensorMinMaxResetTimeStamp" + }, + { + "module": "PDU2-MIB", + "object": "measurementsInletLinePairSensorIsAvailable" + }, + { + "module": "PDU2-MIB", + "object": "measurementsInletLinePairSensorState" + }, + { + "module": "PDU2-MIB", + "object": "measurementsInletLinePairSensorValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsInletLinePairSensorTimeStamp" + }, + { + "module": "PDU2-MIB", + "object": "measurementsInletLinePairSensorSignedValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsInletLinePairSensorMinMaxValid" + }, + { + "module": "PDU2-MIB", + "object": "measurementsInletLinePairSensorMinValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsInletLinePairSensorSignedMinValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsInletLinePairSensorMinTimeStamp" + }, + { + "module": "PDU2-MIB", + "object": "measurementsInletLinePairSensorMaxValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsInletLinePairSensorSignedMaxValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsInletLinePairSensorMaxTimeStamp" + }, + { + "module": "PDU2-MIB", + "object": "measurementsInletLinePairSensorMinMaxResetTimeStamp" + }, + { + "module": "PDU2-MIB", + "object": "measurementsOutletSensorIsAvailable" + }, + { + "module": "PDU2-MIB", + "object": "measurementsOutletSensorState" + }, + { + "module": "PDU2-MIB", + "object": "measurementsOutletSensorValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsOutletSensorTimeStamp" + }, + { + "module": "PDU2-MIB", + "object": "measurementsOutletSensorSignedValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsOutletSensorMinMaxValid" + }, + { + "module": "PDU2-MIB", + "object": "measurementsOutletSensorMinValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsOutletSensorSignedMinValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsOutletSensorMinTimeStamp" + }, + { + "module": "PDU2-MIB", + "object": "measurementsOutletSensorMaxValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsOutletSensorSignedMaxValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsOutletSensorMaxTimeStamp" + }, + { + "module": "PDU2-MIB", + "object": "measurementsOutletSensorMinMaxResetTimeStamp" + }, + { + "module": "PDU2-MIB", + "object": "measurementsOutletPoleSensorIsAvailable" + }, + { + "module": "PDU2-MIB", + "object": "measurementsOutletPoleSensorState" + }, + { + "module": "PDU2-MIB", + "object": "measurementsOutletPoleSensorValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsOutletPoleSensorTimeStamp" + }, + { + "module": "PDU2-MIB", + "object": "measurementsOutletPoleSensorSignedValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsOutletPoleSensorMinMaxValid" + }, + { + "module": "PDU2-MIB", + "object": "measurementsOutletPoleSensorMinValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsOutletPoleSensorSignedMinValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsOutletPoleSensorMinTimeStamp" + }, + { + "module": "PDU2-MIB", + "object": "measurementsOutletPoleSensorMaxValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsOutletPoleSensorSignedMaxValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsOutletPoleSensorMaxTimeStamp" + }, + { + "module": "PDU2-MIB", + "object": "measurementsOutletPoleSensorMinMaxResetTimeStamp" + }, + { + "module": "PDU2-MIB", + "object": "measurementsOverCurrentProtectorSensorIsAvailable" + }, + { + "module": "PDU2-MIB", + "object": "measurementsOverCurrentProtectorSensorState" + }, + { + "module": "PDU2-MIB", + "object": "measurementsOverCurrentProtectorSensorValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsOverCurrentProtectorSensorTimeStamp" + }, + { + "module": "PDU2-MIB", + "object": "measurementsOverCurrentProtectorSensorSignedValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsOverCurrentProtectorSensorMinMaxValid" + }, + { + "module": "PDU2-MIB", + "object": "measurementsOverCurrentProtectorSensorMinValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsOverCurrentProtectorSensorSignedMinValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsOverCurrentProtectorSensorMinTimeStamp" + }, + { + "module": "PDU2-MIB", + "object": "measurementsOverCurrentProtectorSensorMaxValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsOverCurrentProtectorSensorSignedMaxValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsOverCurrentProtectorSensorMaxTimeStamp" + }, + { + "module": "PDU2-MIB", + "object": "measurementsOverCurrentProtectorSensorMinMaxResetTimeStamp" + }, + { + "module": "PDU2-MIB", + "object": "measurementsExternalSensorIsAvailable" + }, + { + "module": "PDU2-MIB", + "object": "measurementsExternalSensorState" + }, + { + "module": "PDU2-MIB", + "object": "measurementsExternalSensorValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsExternalSensorTimeStamp" + }, + { + "module": "PDU2-MIB", + "object": "measurementsExternalSensorMinMaxValid" + }, + { + "module": "PDU2-MIB", + "object": "measurementsExternalSensorMinValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsExternalSensorMinTimeStamp" + }, + { + "module": "PDU2-MIB", + "object": "measurementsExternalSensorMaxValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsExternalSensorMaxTimeStamp" + }, + { + "module": "PDU2-MIB", + "object": "measurementsExternalSensorMinMaxResetTimeStamp" + }, + { + "module": "PDU2-MIB", + "object": "measurementsTransferSwitchSensorIsAvailable" + }, + { + "module": "PDU2-MIB", + "object": "measurementsTransferSwitchSensorState" + }, + { + "module": "PDU2-MIB", + "object": "measurementsTransferSwitchSensorValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsTransferSwitchSensorTimeStamp" + }, + { + "module": "PDU2-MIB", + "object": "measurementsTransferSwitchSensorSignedValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsTransferSwitchSensorMinMaxValid" + }, + { + "module": "PDU2-MIB", + "object": "measurementsTransferSwitchSensorMinValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsTransferSwitchSensorSignedMinValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsTransferSwitchSensorMinTimeStamp" + }, + { + "module": "PDU2-MIB", + "object": "measurementsTransferSwitchSensorMaxValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsTransferSwitchSensorSignedMaxValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsTransferSwitchSensorMaxTimeStamp" + }, + { + "module": "PDU2-MIB", + "object": "measurementsTransferSwitchSensorMinMaxResetTimeStamp" + }, + { + "module": "PDU2-MIB", + "object": "measurementsCircuitSensorIsAvailable" + }, + { + "module": "PDU2-MIB", + "object": "measurementsCircuitSensorState" + }, + { + "module": "PDU2-MIB", + "object": "measurementsCircuitSensorValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsCircuitSensorTimeStamp" + }, + { + "module": "PDU2-MIB", + "object": "measurementsCircuitSensorSignedValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsCircuitSensorMinMaxValid" + }, + { + "module": "PDU2-MIB", + "object": "measurementsCircuitSensorMinValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsCircuitSensorSignedMinValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsCircuitSensorMinTimeStamp" + }, + { + "module": "PDU2-MIB", + "object": "measurementsCircuitSensorMaxValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsCircuitSensorSignedMaxValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsCircuitSensorMaxTimeStamp" + }, + { + "module": "PDU2-MIB", + "object": "measurementsCircuitSensorMinMaxResetTimeStamp" + }, + { + "module": "PDU2-MIB", + "object": "measurementsCircuitPoleSensorIsAvailable" + }, + { + "module": "PDU2-MIB", + "object": "measurementsCircuitPoleSensorState" + }, + { + "module": "PDU2-MIB", + "object": "measurementsCircuitPoleSensorValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsCircuitPoleSensorTimeStamp" + }, + { + "module": "PDU2-MIB", + "object": "measurementsCircuitPoleSensorSignedValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsCircuitPoleSensorMinMaxValid" + }, + { + "module": "PDU2-MIB", + "object": "measurementsCircuitPoleSensorMinValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsCircuitPoleSensorSignedMinValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsCircuitPoleSensorMinTimeStamp" + }, + { + "module": "PDU2-MIB", + "object": "measurementsCircuitPoleSensorMaxValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsCircuitPoleSensorSignedMaxValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsCircuitPoleSensorMaxTimeStamp" + }, + { + "module": "PDU2-MIB", + "object": "measurementsCircuitPoleSensorMinMaxResetTimeStamp" + }, + { + "module": "PDU2-MIB", + "object": "measurementsOutletGroupSensorIsAvailable" + }, + { + "module": "PDU2-MIB", + "object": "measurementsOutletGroupSensorState" + }, + { + "module": "PDU2-MIB", + "object": "measurementsOutletGroupSensorValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsOutletGroupSensorTimeStamp" + }, + { + "module": "PDU2-MIB", + "object": "measurementsOutletGroupSensorSignedValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsOutletGroupSensorMinMaxValid" + }, + { + "module": "PDU2-MIB", + "object": "measurementsOutletGroupSensorMinValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsOutletGroupSensorSignedMinValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsOutletGroupSensorMinTimeStamp" + }, + { + "module": "PDU2-MIB", + "object": "measurementsOutletGroupSensorMaxValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsOutletGroupSensorSignedMaxValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsOutletGroupSensorMaxTimeStamp" + }, + { + "module": "PDU2-MIB", + "object": "measurementsOutletGroupSensorMinMaxResetTimeStamp" + } + ], + "status": "current" + }, + "controlGroup": { + "name": "controlGroup", + "oid": "1.3.6.1.4.1.13742.6.9.2.4", + "class": "objectgroup", + "objects": [ + { + "module": "PDU2-MIB", + "object": "switchingOperation" + }, + { + "module": "PDU2-MIB", + "object": "outletSwitchingState" + }, + { + "module": "PDU2-MIB", + "object": "outletSwitchingTimeStamp" + }, + { + "module": "PDU2-MIB", + "object": "outletSuspendedState" + }, + { + "module": "PDU2-MIB", + "object": "transferSwitchActiveInlet" + }, + { + "module": "PDU2-MIB", + "object": "transferSwitchTransferToInlet" + }, + { + "module": "PDU2-MIB", + "object": "transferSwitchAlarmOverride" + }, + { + "module": "PDU2-MIB", + "object": "transferSwitchLastTransferReason" + }, + { + "module": "PDU2-MIB", + "object": "actuatorState" + }, + { + "module": "PDU2-MIB", + "object": "rcmState" + }, + { + "module": "PDU2-MIB", + "object": "inletSensorResetValue" + }, + { + "module": "PDU2-MIB", + "object": "inletSensorResetMinMax" + }, + { + "module": "PDU2-MIB", + "object": "inletPoleSensorResetMinMax" + }, + { + "module": "PDU2-MIB", + "object": "inletLinePairSensorResetMinMax" + }, + { + "module": "PDU2-MIB", + "object": "outletSensorResetValue" + }, + { + "module": "PDU2-MIB", + "object": "outletSensorResetMinMax" + }, + { + "module": "PDU2-MIB", + "object": "outletPoleSensorResetMinMax" + }, + { + "module": "PDU2-MIB", + "object": "unitSensorResetValue" + }, + { + "module": "PDU2-MIB", + "object": "unitSensorResetMinMax" + }, + { + "module": "PDU2-MIB", + "object": "overCurrentProtectorSensorResetMinMax" + }, + { + "module": "PDU2-MIB", + "object": "externalSensorResetMinMax" + }, + { + "module": "PDU2-MIB", + "object": "transferSwitchSensorResetMinMax" + }, + { + "module": "PDU2-MIB", + "object": "circuitSensorResetValue" + }, + { + "module": "PDU2-MIB", + "object": "circuitSensorResetMinMax" + }, + { + "module": "PDU2-MIB", + "object": "circuitPoleSensorResetMinMax" + }, + { + "module": "PDU2-MIB", + "object": "outletGroupSwitchingOperation" + }, + { + "module": "PDU2-MIB", + "object": "outletGroupSensorResetValue" + }, + { + "module": "PDU2-MIB", + "object": "outletGroupSensorResetMinMax" + }, + { + "module": "PDU2-MIB", + "object": "serverPowerControlOperation" + }, + { + "module": "PDU2-MIB", + "object": "overCurrentProtectorRcmState" + } + ], + "status": "current" + }, + "trapInformationGroup": { + "name": "trapInformationGroup", + "oid": "1.3.6.1.4.1.13742.6.9.2.5", + "class": "objectgroup", + "objects": [ + { + "module": "PDU2-MIB", + "object": "userName" + }, + { + "module": "PDU2-MIB", + "object": "targetUser" + }, + { + "module": "PDU2-MIB", + "object": "newTargetUser" + }, + { + "module": "PDU2-MIB", + "object": "imageVersion" + }, + { + "module": "PDU2-MIB", + "object": "roleName" + }, + { + "module": "PDU2-MIB", + "object": "oldSensorState" + }, + { + "module": "PDU2-MIB", + "object": "pduNumber" + }, + { + "module": "PDU2-MIB", + "object": "inletPoleNumber" + }, + { + "module": "PDU2-MIB", + "object": "outletPoleNumber" + }, + { + "module": "PDU2-MIB", + "object": "externalSensorNumber" + }, + { + "module": "PDU2-MIB", + "object": "typeOfSensor" + }, + { + "module": "PDU2-MIB", + "object": "smtpMessageRecipients" + }, + { + "module": "PDU2-MIB", + "object": "smtpServer" + }, + { + "module": "PDU2-MIB", + "object": "errorDescription" + }, + { + "module": "PDU2-MIB", + "object": "deviceChangedParameter" + }, + { + "module": "PDU2-MIB", + "object": "changedParameterNewValue" + }, + { + "module": "PDU2-MIB", + "object": "webcamModel" + }, + { + "module": "PDU2-MIB", + "object": "webcamConnectionPort" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "PDU2-MIB", + "object": "peripheralDeviceRomcode" + }, + { + "module": "PDU2-MIB", + "object": "peripheralDeviceFirmwareUpdateState" + }, + { + "module": "PDU2-MIB", + "object": "circuitNumber" + }, + { + "module": "PDU2-MIB", + "object": "circuitPoleNumber" + }, + { + "module": "PDU2-MIB", + "object": "phoneNumber" + }, + { + "module": "PDU2-MIB", + "object": "smartCardReaderId" + }, + { + "module": "PDU2-MIB", + "object": "smartCardTimestamp" + }, + { + "module": "PDU2-MIB", + "object": "smartCardType" + }, + { + "module": "PDU2-MIB", + "object": "smartCardId" + }, + { + "module": "PDU2-MIB", + "object": "suspectedTripCauseLabel" + }, + { + "module": "PDU2-MIB", + "object": "smartCardReaderDescription" + }, + { + "module": "PDU2-MIB", + "object": "smartCardReaderManufacturer" + }, + { + "module": "PDU2-MIB", + "object": "smartCardReaderName" + }, + { + "module": "PDU2-MIB", + "object": "smartCardReaderProduct" + }, + { + "module": "PDU2-MIB", + "object": "smartCardReaderSerialNumber" + }, + { + "module": "PDU2-MIB", + "object": "smartCardReaderChannel" + }, + { + "module": "PDU2-MIB", + "object": "smartCardReaderPosition" + }, + { + "module": "PDU2-MIB", + "object": "outletGroupNumber" + }, + { + "module": "PDU2-MIB", + "object": "serverPowerOperation" + }, + { + "module": "PDU2-MIB", + "object": "serverPowerResult" + }, + { + "module": "PDU2-MIB", + "object": "webcamName" + }, + { + "module": "PDU2-MIB", + "object": "webcamFolderUrl" + }, + { + "module": "PDU2-MIB", + "object": "keypadDescription" + }, + { + "module": "PDU2-MIB", + "object": "keypadId" + }, + { + "module": "PDU2-MIB", + "object": "keypadPinTimestamp" + }, + { + "module": "PDU2-MIB", + "object": "keypadPin" + }, + { + "module": "PDU2-MIB", + "object": "keypadManufacturer" + }, + { + "module": "PDU2-MIB", + "object": "keypadName" + }, + { + "module": "PDU2-MIB", + "object": "keypadProduct" + }, + { + "module": "PDU2-MIB", + "object": "keypadSerialNumber" + }, + { + "module": "PDU2-MIB", + "object": "keypadChannel" + }, + { + "module": "PDU2-MIB", + "object": "keypadPosition" + }, + { + "module": "PDU2-MIB", + "object": "doorAccessRuleId" + }, + { + "module": "PDU2-MIB", + "object": "doorAccessDenialReason" + }, + { + "module": "PDU2-MIB", + "object": "doorAccessRuleName" + }, + { + "module": "PDU2-MIB", + "object": "inletLinePairNumber" + }, + { + "module": "PDU2-MIB", + "object": "dipSwellEventVoltage" + }, + { + "module": "PDU2-MIB", + "object": "dipSwellEventTimeStamp" + }, + { + "module": "PDU2-MIB", + "object": "dipSwellEventDuration" + }, + { + "module": "PDU2-MIB", + "object": "portFuseState" + }, + { + "module": "PDU2-MIB", + "object": "externalPortFuseId" + }, + { + "module": "PDU2-MIB", + "object": "externalPortName" + }, + { + "module": "PDU2-MIB", + "object": "linkUnitId" + }, + { + "module": "PDU2-MIB", + "object": "linkUnitAddress" + }, + { + "module": "PDU2-MIB", + "object": "doorHandleName" + }, + { + "module": "PDU2-MIB", + "object": "doorLockName" + }, + { + "module": "PDU2-MIB", + "object": "doorStateName" + } + ], + "status": "current" + }, + "trapsGroup": { + "name": "trapsGroup", + "oid": "1.3.6.1.4.1.13742.6.9.2.9", + "class": "notificationgroup", + "objects": [ + { + "module": "PDU2-MIB", + "object": "systemStarted" + }, + { + "module": "PDU2-MIB", + "object": "systemReset" + }, + { + "module": "PDU2-MIB", + "object": "userLogin" + }, + { + "module": "PDU2-MIB", + "object": "userLogout" + }, + { + "module": "PDU2-MIB", + "object": "userAuthenticationFailure" + }, + { + "module": "PDU2-MIB", + "object": "userSessionTimeout" + }, + { + "module": "PDU2-MIB", + "object": "userAdded" + }, + { + "module": "PDU2-MIB", + "object": "userRenamed" + }, + { + "module": "PDU2-MIB", + "object": "userModified" + }, + { + "module": "PDU2-MIB", + "object": "userDeleted" + }, + { + "module": "PDU2-MIB", + "object": "roleAdded" + }, + { + "module": "PDU2-MIB", + "object": "roleModified" + }, + { + "module": "PDU2-MIB", + "object": "roleDeleted" + }, + { + "module": "PDU2-MIB", + "object": "deviceUpdateStarted" + }, + { + "module": "PDU2-MIB", + "object": "deviceUpdateCompleted" + }, + { + "module": "PDU2-MIB", + "object": "userBlocked" + }, + { + "module": "PDU2-MIB", + "object": "powerControl" + }, + { + "module": "PDU2-MIB", + "object": "userPasswordChanged" + }, + { + "module": "PDU2-MIB", + "object": "passwordSettingsChanged" + }, + { + "module": "PDU2-MIB", + "object": "firmwareValidationFailed" + }, + { + "module": "PDU2-MIB", + "object": "logFileCleared" + }, + { + "module": "PDU2-MIB", + "object": "bulkConfigurationSaved" + }, + { + "module": "PDU2-MIB", + "object": "bulkConfigurationCopied" + }, + { + "module": "PDU2-MIB", + "object": "inletSensorStateChange" + }, + { + "module": "PDU2-MIB", + "object": "inletPoleSensorStateChange" + }, + { + "module": "PDU2-MIB", + "object": "outletSensorStateChange" + }, + { + "module": "PDU2-MIB", + "object": "outletPoleSensorStateChange" + }, + { + "module": "PDU2-MIB", + "object": "overCurrentProtectorSensorStateChange" + }, + { + "module": "PDU2-MIB", + "object": "externalSensorStateChange" + }, + { + "module": "PDU2-MIB", + "object": "smtpMessageTransmissionFailure" + }, + { + "module": "PDU2-MIB", + "object": "ldapError" + }, + { + "module": "PDU2-MIB", + "object": "deviceUpdateFailed" + }, + { + "module": "PDU2-MIB", + "object": "loadSheddingModeEntered" + }, + { + "module": "PDU2-MIB", + "object": "loadSheddingModeExited" + }, + { + "module": "PDU2-MIB", + "object": "pingServerEnabled" + }, + { + "module": "PDU2-MIB", + "object": "pingServerDisabled" + }, + { + "module": "PDU2-MIB", + "object": "serverNotReachable" + }, + { + "module": "PDU2-MIB", + "object": "serverReachable" + }, + { + "module": "PDU2-MIB", + "object": "deviceIdentificationChanged" + }, + { + "module": "PDU2-MIB", + "object": "usbExpansionUnitConnected" + }, + { + "module": "PDU2-MIB", + "object": "usbExpansionUnitDisconnected" + }, + { + "module": "PDU2-MIB", + "object": "userAcceptedRestrictedServiceAgreement" + }, + { + "module": "PDU2-MIB", + "object": "userDeclinedRestrictedServiceAgreement" + }, + { + "module": "PDU2-MIB", + "object": "transferSwitchSensorStateChange" + }, + { + "module": "PDU2-MIB", + "object": "deviceSettingsSaved" + }, + { + "module": "PDU2-MIB", + "object": "deviceSettingsRestored" + }, + { + "module": "PDU2-MIB", + "object": "webcamInserted" + }, + { + "module": "PDU2-MIB", + "object": "webcamRemoved" + }, + { + "module": "PDU2-MIB", + "object": "inletEnabled" + }, + { + "module": "PDU2-MIB", + "object": "inletDisabled" + }, + { + "module": "PDU2-MIB", + "object": "serverConnectivityUnrecoverable" + }, + { + "module": "PDU2-MIB", + "object": "radiusError" + }, + { + "module": "PDU2-MIB", + "object": "serverReachabilityError" + }, + { + "module": "PDU2-MIB", + "object": "inletSensorReset" + }, + { + "module": "PDU2-MIB", + "object": "outletSensorReset" + }, + { + "module": "PDU2-MIB", + "object": "unitSensorReset" + }, + { + "module": "PDU2-MIB", + "object": "circuitSensorReset" + }, + { + "module": "PDU2-MIB", + "object": "unknownPeripheralDeviceAttached" + }, + { + "module": "PDU2-MIB", + "object": "peripheralDeviceFirmwareUpdate" + }, + { + "module": "PDU2-MIB", + "object": "unitSensorStateChange" + }, + { + "module": "PDU2-MIB", + "object": "circuitSensorStateChange" + }, + { + "module": "PDU2-MIB", + "object": "circuitPoleSensorStateChange" + }, + { + "module": "PDU2-MIB", + "object": "circuitAdded" + }, + { + "module": "PDU2-MIB", + "object": "circuitDeleted" + }, + { + "module": "PDU2-MIB", + "object": "circuitModified" + }, + { + "module": "PDU2-MIB", + "object": "powerMeterAdded" + }, + { + "module": "PDU2-MIB", + "object": "powerMeterDeleted" + }, + { + "module": "PDU2-MIB", + "object": "powerMeterModified" + }, + { + "module": "PDU2-MIB", + "object": "smsMessageTransmissionFailure" + }, + { + "module": "PDU2-MIB", + "object": "smartCardInserted" + }, + { + "module": "PDU2-MIB", + "object": "smartCardRemoved" + }, + { + "module": "PDU2-MIB", + "object": "rawConfigurationDownloaded" + }, + { + "module": "PDU2-MIB", + "object": "rawConfigurationUpdated" + }, + { + "module": "PDU2-MIB", + "object": "hwFailureStatusChanged" + }, + { + "module": "PDU2-MIB", + "object": "outletGroupAdded" + }, + { + "module": "PDU2-MIB", + "object": "outletGroupModified" + }, + { + "module": "PDU2-MIB", + "object": "outletGroupDeleted" + }, + { + "module": "PDU2-MIB", + "object": "outletGroupSensorStateChange" + }, + { + "module": "PDU2-MIB", + "object": "outletGroupSensorReset" + }, + { + "module": "PDU2-MIB", + "object": "outletGroupPowerControl" + }, + { + "module": "PDU2-MIB", + "object": "serverPowerControlInitiated" + }, + { + "module": "PDU2-MIB", + "object": "serverPowerControlCompleted" + }, + { + "module": "PDU2-MIB", + "object": "webcamStorageUploadStarted" + }, + { + "module": "PDU2-MIB", + "object": "testEventTriggered" + }, + { + "module": "PDU2-MIB", + "object": "actuatorSwitched" + }, + { + "module": "PDU2-MIB", + "object": "keypadPinEntered" + }, + { + "module": "PDU2-MIB", + "object": "doorAccessGranted" + }, + { + "module": "PDU2-MIB", + "object": "doorAccessDenied" + }, + { + "module": "PDU2-MIB", + "object": "doorAccessRuleAdded" + }, + { + "module": "PDU2-MIB", + "object": "doorAccessRuleChanged" + }, + { + "module": "PDU2-MIB", + "object": "doorAccessRuleDeleted" + }, + { + "module": "PDU2-MIB", + "object": "inletLinePairSensorStateChange" + }, + { + "module": "PDU2-MIB", + "object": "tacPlusError" + }, + { + "module": "PDU2-MIB", + "object": "outletSuspended" + }, + { + "module": "PDU2-MIB", + "object": "inletDipEvent" + }, + { + "module": "PDU2-MIB", + "object": "inletSwellEvent" + }, + { + "module": "PDU2-MIB", + "object": "inletPoleDipEvent" + }, + { + "module": "PDU2-MIB", + "object": "inletPoleSwellEvent" + }, + { + "module": "PDU2-MIB", + "object": "portFuseStateChange" + }, + { + "module": "PDU2-MIB", + "object": "linkUnitAdded" + }, + { + "module": "PDU2-MIB", + "object": "linkUnitReleased" + }, + { + "module": "PDU2-MIB", + "object": "linkUnitCommunicationOk" + }, + { + "module": "PDU2-MIB", + "object": "linkUnitCommunicationFailed" + }, + { + "module": "PDU2-MIB", + "object": "doorMechanicallyUnlocked" + }, + { + "module": "PDU2-MIB", + "object": "doorForcedOpen" + } + ], + "status": "current" + }, + "oldTrapsGroup": { + "name": "oldTrapsGroup", + "oid": "1.3.6.1.4.1.13742.6.9.2.16", + "class": "notificationgroup", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduSensorStateChange" + }, + { + "module": "PDU2-MIB", + "object": "rfCodeTagConnected" + }, + { + "module": "PDU2-MIB", + "object": "rfCodeTagDisconnected" + }, + { + "module": "PDU2-MIB", + "object": "lhxSupportChanged" + } + ], + "status": "deprecated" + }, + "obsoleteTrapsGroup": { + "name": "obsoleteTrapsGroup", + "oid": "1.3.6.1.4.1.13742.6.9.2.17", + "class": "notificationgroup", + "objects": [ + { + "module": "PDU2-MIB", + "object": "wireSensorStateChange" + } + ], + "status": "obsolete" + }, + "reliabilityGroup": { + "name": "reliabilityGroup", + "oid": "1.3.6.1.4.1.13742.6.9.2.10", + "class": "objectgroup", + "objects": [ + { + "module": "PDU2-MIB", + "object": "reliabilityId" + }, + { + "module": "PDU2-MIB", + "object": "reliabilityDataValue" + }, + { + "module": "PDU2-MIB", + "object": "reliabilityDataMaxPossible" + }, + { + "module": "PDU2-MIB", + "object": "reliabilityDataWorstValue" + }, + { + "module": "PDU2-MIB", + "object": "reliabilityDataThreshold" + }, + { + "module": "PDU2-MIB", + "object": "reliabilityDataRawUpperBytes" + }, + { + "module": "PDU2-MIB", + "object": "reliabilityDataRawLowerBytes" + }, + { + "module": "PDU2-MIB", + "object": "reliabilityDataFlags" + }, + { + "module": "PDU2-MIB", + "object": "reliabilityErrorLogId" + }, + { + "module": "PDU2-MIB", + "object": "reliabilityErrorLogValue" + }, + { + "module": "PDU2-MIB", + "object": "reliabilityErrorLogThreshold" + }, + { + "module": "PDU2-MIB", + "object": "reliabilityErrorLogRawUpperBytes" + }, + { + "module": "PDU2-MIB", + "object": "reliabilityErrorLogRawLowerBytes" + }, + { + "module": "PDU2-MIB", + "object": "reliabilityErrorLogPOH" + }, + { + "module": "PDU2-MIB", + "object": "reliabilityErrorLogTime" + }, + { + "module": "PDU2-MIB", + "object": "reliabilityDataTableSequenceNumber" + }, + { + "module": "PDU2-MIB", + "object": "hwFailureComponentId" + }, + { + "module": "PDU2-MIB", + "object": "hwFailureType" + }, + { + "module": "PDU2-MIB", + "object": "hwFailureAsserted" + }, + { + "module": "PDU2-MIB", + "object": "hwFailureLastAssertTimeStamp" + }, + { + "module": "PDU2-MIB", + "object": "hwFailureLastDeassertTimeStamp" + }, + { + "module": "PDU2-MIB", + "object": "hwFailureAssertCount" + } + ], + "status": "current" + }, + "SensorTypeEnumeration": { + "name": "SensorTypeEnumeration", + "class": "textualconvention", + "type": { + "type": "INTEGER", + "class": "type", + "constraints": { + "enumeration": { + "rmsCurrent": 1, + "peakCurrent": 2, + "unbalancedCurrent": 3, + "rmsVoltage": 4, + "activePower": 5, + "apparentPower": 6, + "powerFactor": 7, + "activeEnergy": 8, + "apparentEnergy": 9, + "temperature": 10, + "humidity": 11, + "airFlow": 12, + "airPressure": 13, + "onOff": 14, + "trip": 15, + "vibration": 16, + "waterDetection": 17, + "smokeDetection": 18, + "binary": 19, + "contact": 20, + "fanSpeed": 21, + "surgeProtectorStatus": 22, + "frequency": 23, + "phaseAngle": 24, + "rmsVoltageLN": 25, + "residualCurrent": 26, + "rcmState": 27, + "absoluteHumidity": 28, + "reactivePower": 29, + "other": 30, + "none": 31, + "powerQuality": 32, + "overloadStatus": 33, + "overheatStatus": 34, + "displacementPowerFactor": 35, + "residualDcCurrent": 36, + "fanStatus": 37, + "inletPhaseSyncAngle": 38, + "inletPhaseSync": 39, + "operatingState": 40, + "activeInlet": 41, + "illuminance": 42, + "doorContact": 43, + "tamperDetection": 44, + "motionDetection": 45, + "i1smpsStatus": 46, + "i2smpsStatus": 47, + "switchStatus": 48, + "doorLockState": 49, + "doorHandleLock": 50, + "crestFactor": 51, + "length": 52, + "distance": 53, + "activePowerDemand": 54, + "residualAcCurrent": 55, + "particleDensity": 56, + "voltageThd": 57, + "currentThd": 58, + "inrushCurrent": 59, + "unbalancedVoltage": 60, + "unbalancedLineLineCurrent": 61, + "unbalancedLineLineVoltage": 62, + "dewPoint": 63, + "mass": 64, + "flux": 65, + "luminousIntensity": 66, + "luminousEnergy": 67, + "luminousFlux": 68, + "luminousEmittance": 69, + "electricalResistance": 70, + "electricalImpedance": 71, + "totalHarmonicDistortion": 72, + "magneticFieldStrength": 73, + "magneticFluxDensity": 74, + "electricFieldStrength": 75, + "selection": 76, + "rotationalSpeed": 77 + } + } + }, + "status": "current" + }, + "SensorStateEnumeration": { + "name": "SensorStateEnumeration", + "class": "textualconvention", + "type": { + "type": "INTEGER", + "class": "type", + "constraints": { + "enumeration": { + "unavailable": -1, + "open": 0, + "closed": 1, + "belowLowerCritical": 2, + "belowLowerWarning": 3, + "normal": 4, + "aboveUpperWarning": 5, + "aboveUpperCritical": 6, + "on": 7, + "off": 8, + "detected": 9, + "notDetected": 10, + "alarmed": 11, + "ok": 12, + "fail": 14, + "yes": 15, + "no": 16, + "standby": 17, + "one": 18, + "two": 19, + "inSync": 20, + "outOfSync": 21, + "i1OpenFault": 22, + "i1ShortFault": 23, + "i2OpenFault": 24, + "i2ShortFault": 25, + "fault": 26, + "warning": 27, + "critical": 28, + "selfTest": 29, + "nonRedundant": 30 + } + } + }, + "status": "current" + }, + "PlugTypeEnumeration": { + "name": "PlugTypeEnumeration", + "class": "textualconvention", + "type": { + "type": "INTEGER", + "class": "type", + "constraints": { + "enumeration": { + "plugOTHER": -1, + "plugNONE": 0, + "plug56P320": 1, + "plug56P520": 2, + "plug56P532": 3, + "plugCS8365C": 4, + "plugIEC320C14": 5, + "plugIEC320C20": 6, + "plugIEC603093WIRE250V16A": 7, + "plugIEC603093WIRE250V20A": 8, + "plugIEC603093WIRE250V30A": 9, + "plugIEC603093WIRE250V32A": 10, + "plugIEC603093WIRE250V60A": 11, + "plugIEC603093WIRE250V63A": 12, + "plugIEC603093WIRE250V100A": 13, + "plugIEC603093WIRE250V125A": 14, + "plugIEC603094WIRE250V20A": 15, + "plugIEC603094WIRE250V30A": 16, + "plugIEC603094WIRE250V60A": 17, + "plugIEC603094WIRE250V100A": 18, + "plugIEC603095WIRE208V20A": 23, + "plugIEC603095WIRE208V30A": 24, + "plugIEC603095WIRE208V60A": 25, + "plugIEC603095WIRE208V100A": 26, + "plugIEC603095WIRE415V16A": 27, + "plugIEC603095WIRE415V32A": 28, + "plugIEC603095WIRE415V63A": 29, + "plugIEC603095WIRE415V125A": 30, + "plugIEC603095WIRE480V20A": 31, + "plugIEC603095WIRE480V30A": 32, + "plugIEC603095WIRE480V60A": 33, + "plugIEC603095WIRE480V100A": 34, + "plugNEMA515P": 35, + "plugNEMAL515P": 36, + "plugNEMA520P": 37, + "plugNEMAL520P": 38, + "plugNEMAL530P": 39, + "plugNEMAL615P": 40, + "plugNEMAL620P": 41, + "plugNEMAL630P": 42, + "plugNEMAL1520P": 43, + "plugNEMAL1530P": 44, + "plugNEMAL2120P": 45, + "plugNEMAL2130P": 46, + "plugNEMAL2230P": 47, + "plug56P320F": 48, + "plug56PA320": 49 + } + } + }, + "status": "current" + }, + "ReceptacleTypeEnumeration": { + "name": "ReceptacleTypeEnumeration", + "class": "textualconvention", + "type": { + "type": "INTEGER", + "class": "type", + "constraints": { + "enumeration": { + "receptacleOTHER": -1, + "receptacleNONE": 0, + "receptacleBS1363": 1, + "receptacle56P532": 3, + "receptacleCS8364C": 4, + "receptacleIEC320C13": 5, + "receptacleIEC320C19": 6, + "receptacleIEC603093WIRE250V16A": 7, + "receptacleIEC603093WIRE250V20A": 8, + "receptacleIEC603093WIRE250V30A": 9, + "receptacleIEC603093WIRE250V32A": 10, + "receptacleIEC603093WIRE250V60A": 11, + "receptacleIEC603093WIRE250V63A": 12, + "receptacleIEC603093WIRE250V100A": 13, + "receptacleIEC603093WIRE250V125A": 14, + "receptacleIEC603094WIRE250V20A": 15, + "receptacleIEC603094WIRE250V30A": 16, + "receptacleIEC603094WIRE250V60A": 17, + "receptacleIEC603094WIRE250V100A": 18, + "receptacleIEC603095WIRE208V20A": 23, + "receptacleIEC603095WIRE208V30A": 24, + "receptacleIEC603095WIRE208V60A": 25, + "receptacleIEC603095WIRE208V100A": 26, + "receptacleIEC603095WIRE415V16A": 27, + "receptacleIEC603095WIRE415V32A": 28, + "receptacleIEC603095WIRE415V63A": 29, + "receptacleIEC603095WIRE415V125A": 30, + "receptacleIEC603095WIRE480V20A": 31, + "receptacleIEC603095WIRE480V30A": 32, + "receptacleIEC603095WIRE480V60A": 33, + "receptacleIEC603095WIRE480V100A": 34, + "receptacleNEMA515R": 35, + "receptacleNEMAL515R": 36, + "receptacleNEMA520R": 37, + "receptacleNEMAL520R": 38, + "receptacleNEMAL530R": 39, + "receptacleNEMAL615R": 40, + "receptacleNEMAL620R": 41, + "receptacleNEMAL630R": 42, + "receptacleNEMAL1520R": 43, + "receptacleNEMAL1530R": 44, + "receptacleNEMAL2120RP": 45, + "receptacleNEMAL2130R": 46, + "receptacleSCHUKOTYPEE": 47, + "receptacleSCHUKOTYPEF": 48 + } + } + }, + "status": "current" + }, + "OverCurrentProtectorTypeEnumeration": { + "name": "OverCurrentProtectorTypeEnumeration", + "class": "textualconvention", + "type": { + "type": "INTEGER", + "class": "type", + "constraints": { + "enumeration": { + "ocpBREAKER1POLE": 1, + "ocpBREAKER2POLE": 2, + "ocpBREAKER3POLE": 3, + "ocpFUSE": 4, + "ocpFUSEPAIR": 5, + "ocpRCBO2POLE": 6, + "ocpRCBO3POLE": 7, + "ocpRCBO4POLE": 8 + } + } + }, + "status": "current" + }, + "BoardTypeEnumeration": { + "name": "BoardTypeEnumeration", + "class": "textualconvention", + "type": { + "type": "INTEGER", + "class": "type", + "constraints": { + "enumeration": { + "mainController": 1, + "inletController": 2, + "outletController": 3, + "meteringController": 4 + } + } + }, + "status": "current" + }, + "OutletSwitchingOperationsEnumeration": { + "name": "OutletSwitchingOperationsEnumeration", + "class": "textualconvention", + "type": { + "type": "INTEGER", + "class": "type", + "constraints": { + "enumeration": { + "off": 0, + "on": 1, + "cycle": 2 + } + } + }, + "status": "current" + }, + "SensorUnitsEnumeration": { + "name": "SensorUnitsEnumeration", + "class": "textualconvention", + "type": { + "type": "INTEGER", + "class": "type", + "constraints": { + "enumeration": { + "none": -1, + "other": 0, + "volt": 1, + "amp": 2, + "watt": 3, + "voltamp": 4, + "wattHour": 5, + "voltampHour": 6, + "degreeC": 7, + "hertz": 8, + "percent": 9, + "meterpersec": 10, + "pascal": 11, + "psi": 12, + "g": 13, + "degreeF": 14, + "feet": 15, + "inches": 16, + "cm": 17, + "meters": 18, + "rpm": 19, + "degrees": 20, + "lux": 21, + "grampercubicmeter": 22, + "var": 23, + "feetpersec": 24, + "lbspercubicfoot": 25, + "microgrampercubicmeter": 26, + "hour": 27, + "minute": 28, + "second": 29, + "coulomb": 30, + "kelvin": 31, + "voltAmpReactiveHour": 32, + "voltPerAmpere": 33, + "voltPerMeter": 34, + "gram": 35, + "meterPerSquareSec": 36, + "litersPerHour": 37, + "nit": 38, + "candela": 39, + "lumen": 40, + "lumenSecond": 41, + "cubicMeter": 42, + "radiant": 43, + "steradiant": 44, + "newton": 45, + "joule": 46, + "ohm": 47, + "tesla": 48, + "henry": 49, + "farad": 50, + "mol": 51, + "becquerel": 52, + "gray": 53, + "sievert": 54 + } + } + }, + "status": "current" + }, + "DaisychainMemberTypeEnumeration": { + "name": "DaisychainMemberTypeEnumeration", + "class": "textualconvention", + "type": { + "type": "INTEGER", + "class": "type", + "constraints": { + "enumeration": { + "standalone": 0, + "primaryUnit": 1, + "expansionUnit": 2 + } + } + }, + "status": "current" + }, + "URL": { + "name": "URL", + "class": "textualconvention", + "type": { + "type": "OCTET STRING", + "class": "type", + "constraints": { + "size": [ + { + "min": 0, + "max": 255 + } + ] + } + }, + "displayhint": "255a", + "status": "current" + }, + "GlobalOutletStateOnStartupEnumeration": { + "name": "GlobalOutletStateOnStartupEnumeration", + "class": "textualconvention", + "type": { + "type": "INTEGER", + "class": "type", + "constraints": { + "enumeration": { + "off": 0, + "on": 1, + "lastKnownState": 2 + } + } + }, + "status": "current" + }, + "OutletStateOnStartupEnumeration": { + "name": "OutletStateOnStartupEnumeration", + "class": "textualconvention", + "type": { + "type": "INTEGER", + "class": "type", + "constraints": { + "enumeration": { + "off": 0, + "on": 1, + "lastKnownState": 2, + "globalOutletStateOnStartup": 3 + } + } + }, + "status": "current" + }, + "ExternalSensorsZCoordinateUnitsEnumeration": { + "name": "ExternalSensorsZCoordinateUnitsEnumeration", + "class": "textualconvention", + "type": { + "type": "INTEGER", + "class": "type", + "constraints": { + "enumeration": { + "rackUnits": 0, + "text": 1 + } + } + }, + "status": "current" + }, + "HundredthsOfAPercentage": { + "name": "HundredthsOfAPercentage", + "class": "textualconvention", + "type": { + "type": "Unsigned32", + "class": "type", + "constraints": { + "range": [ + { + "min": 0, + "max": 10000 + } + ] + } + }, + "displayhint": "d", + "status": "current" + }, + "DeviceIdentificationParameterEnumeration": { + "name": "DeviceIdentificationParameterEnumeration", + "class": "textualconvention", + "type": { + "type": "INTEGER", + "class": "type", + "constraints": { + "enumeration": { + "pduName": 0, + "sysContact": 1, + "sysName": 2, + "sysLocation": 3 + } + } + }, + "status": "current" + }, + "TransferSwitchTransferReasonEnumeration": { + "name": "TransferSwitchTransferReasonEnumeration", + "class": "textualconvention", + "type": { + "type": "INTEGER", + "class": "type", + "constraints": { + "enumeration": { + "unknown": 0, + "startup": 1, + "manualTransfer": 2, + "automaticReTransfer": 3, + "powerFailure": 4, + "powerQuality": 5, + "overloadAlarm": 6, + "overheatAlarm": 7, + "internalFailure": 8 + } + } + }, + "status": "current" + }, + "ProductTypeEnumeration": { + "name": "ProductTypeEnumeration", + "class": "textualconvention", + "type": { + "type": "INTEGER", + "class": "type", + "constraints": { + "enumeration": { + "rackPdu": 0, + "bcm": 1, + "transferSwitch": 2, + "powerMeter": 3 + } + } + }, + "status": "current" + }, + "RelayPowerLossBehaviorEnumeration": { + "name": "RelayPowerLossBehaviorEnumeration", + "class": "textualconvention", + "type": { + "type": "INTEGER", + "class": "type", + "constraints": { + "enumeration": { + "nonLatching": 0, + "latching": 1 + } + } + }, + "status": "current" + }, + "TripCauseOutletHandlingEnumeration": { + "name": "TripCauseOutletHandlingEnumeration", + "class": "textualconvention", + "type": { + "type": "INTEGER", + "class": "type", + "constraints": { + "enumeration": { + "keepUnchanged": 0, + "suspend": 1 + } + } + }, + "status": "current" + }, + "DeviceCascadeTypeEnumeration": { + "name": "DeviceCascadeTypeEnumeration", + "class": "textualconvention", + "type": { + "type": "INTEGER", + "class": "type", + "constraints": { + "enumeration": { + "bridging": 0, + "portForwarding": 1, + "none": 2 + } + } + }, + "status": "current" + }, + "PeripheralDeviceFirmwareUpdateStateEnumeration": { + "name": "PeripheralDeviceFirmwareUpdateStateEnumeration", + "class": "textualconvention", + "type": { + "type": "INTEGER", + "class": "type", + "constraints": { + "enumeration": { + "started": 1, + "successful": 2, + "failed": 3 + } + } + }, + "status": "current" + }, + "PanelLayoutEnumeration": { + "name": "PanelLayoutEnumeration", + "class": "textualconvention", + "type": { + "type": "INTEGER", + "class": "type", + "constraints": { + "enumeration": { + "invalid": -1, + "oneColumn": 1, + "twoColumns": 2 + } + } + }, + "status": "current" + }, + "PanelNumberingEnumeration": { + "name": "PanelNumberingEnumeration", + "class": "textualconvention", + "type": { + "type": "INTEGER", + "class": "type", + "constraints": { + "enumeration": { + "invalid": -1, + "oddEven": 1, + "sequential": 2 + } + } + }, + "status": "current" + }, + "CircuitTypeEnumeration": { + "name": "CircuitTypeEnumeration", + "class": "textualconvention", + "type": { + "type": "INTEGER", + "class": "type", + "constraints": { + "enumeration": { + "onePhaseLL": 1, + "onePhaseLN": 2, + "onePhaseLLN": 3, + "threePhase": 4 + } + } + }, + "status": "current" + }, + "PhaseEnumeration": { + "name": "PhaseEnumeration", + "class": "textualconvention", + "type": { + "type": "INTEGER", + "class": "type", + "constraints": { + "enumeration": { + "phaseA": 1, + "phaseB": 2, + "phaseC": 3, + "neutral": 4, + "earth": 5 + } + } + }, + "status": "current" + }, + "LineEnumeration": { + "name": "LineEnumeration", + "class": "textualconvention", + "type": { + "type": "INTEGER", + "class": "type", + "constraints": { + "enumeration": { + "lineL1": 1, + "lineL2": 2, + "lineL3": 3, + "lineNeutral": 4, + "lineDcPositive": 5, + "lineDcNegative": 6 + } + } + }, + "status": "current" + }, + "PowerMeterTypeEnumeration": { + "name": "PowerMeterTypeEnumeration", + "class": "textualconvention", + "type": { + "type": "INTEGER", + "class": "type", + "constraints": { + "enumeration": { + "singlePhase": 1, + "splitPhase": 2, + "threePhase": 3 + } + } + }, + "status": "current" + }, + "NetworkInterfaceTypeEnumeration": { + "name": "NetworkInterfaceTypeEnumeration", + "class": "textualconvention", + "type": { + "type": "INTEGER", + "class": "type", + "constraints": { + "enumeration": { + "wired": 0, + "wireless": 1 + } + } + }, + "status": "current" + }, + "AddressSourceEnumeration": { + "name": "AddressSourceEnumeration", + "class": "textualconvention", + "type": { + "type": "INTEGER", + "class": "type", + "constraints": { + "enumeration": { + "static": 1, + "dhcp": 2, + "dhcpv6": 3 + } + } + }, + "status": "current" + }, + "HwFailureTypeEnumeration": { + "name": "HwFailureTypeEnumeration", + "class": "textualconvention", + "type": { + "type": "INTEGER", + "class": "type", + "constraints": { + "enumeration": { + "networkDeviceNotDetected": 1, + "i2cBusStuck": 2, + "subCtrlNotReachable": 3, + "subCtrlMalfunction": 4, + "outletPowerStateInconsistent": 5 + } + } + }, + "status": "current" + }, + "ServerPowerStateEnumeration": { + "name": "ServerPowerStateEnumeration", + "class": "textualconvention", + "type": { + "type": "INTEGER", + "class": "type", + "constraints": { + "enumeration": { + "unknown": 0, + "on": 1, + "off": 2, + "shuttingDown": 3 + } + } + }, + "status": "current" + }, + "ServerPowerControlResultEnumeration": { + "name": "ServerPowerControlResultEnumeration", + "class": "textualconvention", + "type": { + "type": "INTEGER", + "class": "type", + "constraints": { + "enumeration": { + "noError": 0, + "shutdownCmdFailed": 1, + "switchingOffFailed": 2, + "switchingOnFailed": 3, + "powerCheckTimeout": 4 + } + } + }, + "status": "current" + }, + "PduOrientationEnumeration": { + "name": "PduOrientationEnumeration", + "class": "textualconvention", + "type": { + "type": "INTEGER", + "class": "type", + "constraints": { + "enumeration": { + "none": 0, + "bottomFeed": 1, + "topFeed": 2 + } + } + }, + "status": "current" + }, + "PortFuseStateEnumeration": { + "name": "PortFuseStateEnumeration", + "class": "textualconvention", + "type": { + "type": "INTEGER", + "class": "type", + "constraints": { + "enumeration": { + "unknown": 0, + "good": 1, + "tripped": 2 + } + } + }, + "status": "current" + }, + "pduCount": { + "name": "pduCount", + "oid": "1.3.6.1.4.1.13742.6.3.1", + "nodetype": "scalar", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "nameplateTable": { + "name": "nameplateTable", + "oid": "1.3.6.1.4.1.13742.6.3.2.1", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "current" + }, + "nameplateEntry": { + "name": "nameplateEntry", + "oid": "1.3.6.1.4.1.13742.6.3.2.1.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "pduId", + "implied": 0 + } + ], + "status": "current" + }, + "pduId": { + "name": "pduId", + "oid": "1.3.6.1.4.1.13742.6.3.2.1.1.1", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type", + "constraints": { + "range": [ + { + "min": 0, + "max": 256 + } + ] + } + }, + "maxaccess": "not-accessible", + "status": "current" + }, + "pduManufacturer": { + "name": "pduManufacturer", + "oid": "1.3.6.1.4.1.13742.6.3.2.1.1.2", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "pduModel": { + "name": "pduModel", + "oid": "1.3.6.1.4.1.13742.6.3.2.1.1.3", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "pduSerialNumber": { + "name": "pduSerialNumber", + "oid": "1.3.6.1.4.1.13742.6.3.2.1.1.4", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "pduRatedVoltage": { + "name": "pduRatedVoltage", + "oid": "1.3.6.1.4.1.13742.6.3.2.1.1.5", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "pduRatedCurrent": { + "name": "pduRatedCurrent", + "oid": "1.3.6.1.4.1.13742.6.3.2.1.1.6", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "pduRatedFrequency": { + "name": "pduRatedFrequency", + "oid": "1.3.6.1.4.1.13742.6.3.2.1.1.7", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "pduRatedVA": { + "name": "pduRatedVA", + "oid": "1.3.6.1.4.1.13742.6.3.2.1.1.8", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "pduImage": { + "name": "pduImage", + "oid": "1.3.6.1.4.1.13742.6.3.2.1.1.9", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "URL", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "unitConfigurationTable": { + "name": "unitConfigurationTable", + "oid": "1.3.6.1.4.1.13742.6.3.2.2", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "current" + }, + "unitConfigurationEntry": { + "name": "unitConfigurationEntry", + "oid": "1.3.6.1.4.1.13742.6.3.2.2.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "pduId", + "implied": 0 + } + ], + "status": "current" + }, + "inletCount": { + "name": "inletCount", + "oid": "1.3.6.1.4.1.13742.6.3.2.2.1.2", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type", + "constraints": { + "range": [ + { + "min": 0, + "max": 256 + } + ] + } + }, + "maxaccess": "read-only", + "status": "current" + }, + "overCurrentProtectorCount": { + "name": "overCurrentProtectorCount", + "oid": "1.3.6.1.4.1.13742.6.3.2.2.1.3", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type", + "constraints": { + "range": [ + { + "min": 0, + "max": 255 + } + ] + } + }, + "maxaccess": "read-only", + "status": "current" + }, + "outletCount": { + "name": "outletCount", + "oid": "1.3.6.1.4.1.13742.6.3.2.2.1.4", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type", + "constraints": { + "range": [ + { + "min": 0, + "max": 256 + } + ] + } + }, + "maxaccess": "read-only", + "status": "current" + }, + "inletControllerCount": { + "name": "inletControllerCount", + "oid": "1.3.6.1.4.1.13742.6.3.2.2.1.5", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type", + "constraints": { + "range": [ + { + "min": 0, + "max": 255 + } + ] + } + }, + "maxaccess": "read-only", + "status": "current" + }, + "outletControllerCount": { + "name": "outletControllerCount", + "oid": "1.3.6.1.4.1.13742.6.3.2.2.1.6", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type", + "constraints": { + "range": [ + { + "min": 0, + "max": 255 + } + ] + } + }, + "maxaccess": "read-only", + "status": "current" + }, + "externalSensorCount": { + "name": "externalSensorCount", + "oid": "1.3.6.1.4.1.13742.6.3.2.2.1.7", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type", + "constraints": { + "range": [ + { + "min": 0, + "max": 255 + } + ] + } + }, + "maxaccess": "read-only", + "status": "current" + }, + "pxIPAddress": { + "name": "pxIPAddress", + "oid": "1.3.6.1.4.1.13742.6.3.2.2.1.8", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "IpAddress", + "class": "type" + }, + "maxaccess": "read-only", + "status": "deprecated" + }, + "netmask": { + "name": "netmask", + "oid": "1.3.6.1.4.1.13742.6.3.2.2.1.9", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "IpAddress", + "class": "type" + }, + "maxaccess": "read-only", + "status": "deprecated" + }, + "gateway": { + "name": "gateway", + "oid": "1.3.6.1.4.1.13742.6.3.2.2.1.10", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "IpAddress", + "class": "type" + }, + "maxaccess": "read-only", + "status": "deprecated" + }, + "pxMACAddress": { + "name": "pxMACAddress", + "oid": "1.3.6.1.4.1.13742.6.3.2.2.1.11", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "MacAddress", + "class": "type" + }, + "maxaccess": "read-only", + "status": "deprecated" + }, + "utcOffset": { + "name": "utcOffset", + "oid": "1.3.6.1.4.1.13742.6.3.2.2.1.12", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "pduName": { + "name": "pduName", + "oid": "1.3.6.1.4.1.13742.6.3.2.2.1.13", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "networkInterfaceType": { + "name": "networkInterfaceType", + "oid": "1.3.6.1.4.1.13742.6.3.2.2.1.14", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "NetworkInterfaceTypeEnumeration", + "class": "type" + }, + "maxaccess": "read-only", + "status": "deprecated" + }, + "externalSensorsZCoordinateUnits": { + "name": "externalSensorsZCoordinateUnits", + "oid": "1.3.6.1.4.1.13742.6.3.2.2.1.34", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "ExternalSensorsZCoordinateUnitsEnumeration", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "unitDeviceCapabilities": { + "name": "unitDeviceCapabilities", + "oid": "1.3.6.1.4.1.13742.6.3.2.2.1.35", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Bits", + "class": "type", + "bits": { + "activePower": 4, + "apparentPower": 5, + "activeEnergy": 7, + "apparentEnergy": 8, + "i1smpsStatus": 45, + "i2smpsStatus": 46 + } + }, + "maxaccess": "read-only", + "status": "current" + }, + "outletSequencingDelay": { + "name": "outletSequencingDelay", + "oid": "1.3.6.1.4.1.13742.6.3.2.2.1.36", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type", + "constraints": { + "range": [ + { + "min": 100, + "max": 10000 + } + ] + } + }, + "maxaccess": "read-write", + "status": "deprecated" + }, + "globalOutletPowerCyclingPowerOffPeriod": { + "name": "globalOutletPowerCyclingPowerOffPeriod", + "oid": "1.3.6.1.4.1.13742.6.3.2.2.1.37", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type", + "constraints": { + "range": [ + { + "min": 1, + "max": 3600 + } + ] + } + }, + "maxaccess": "read-write", + "status": "current" + }, + "globalOutletStateOnStartup": { + "name": "globalOutletStateOnStartup", + "oid": "1.3.6.1.4.1.13742.6.3.2.2.1.38", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "GlobalOutletStateOnStartupEnumeration", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "outletPowerupSequence": { + "name": "outletPowerupSequence", + "oid": "1.3.6.1.4.1.13742.6.3.2.2.1.39", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "pduPowerCyclingPowerOffPeriod": { + "name": "pduPowerCyclingPowerOffPeriod", + "oid": "1.3.6.1.4.1.13742.6.3.2.2.1.40", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type", + "constraints": { + "range": [ + { + "min": 1, + "max": 3600 + } + ] + } + }, + "maxaccess": "read-write", + "status": "current" + }, + "pduDaisychainMemberType": { + "name": "pduDaisychainMemberType", + "oid": "1.3.6.1.4.1.13742.6.3.2.2.1.41", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "DaisychainMemberTypeEnumeration", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "managedExternalSensorCount": { + "name": "managedExternalSensorCount", + "oid": "1.3.6.1.4.1.13742.6.3.2.2.1.42", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type", + "constraints": { + "range": [ + { + "min": 0, + "max": 255 + } + ] + } + }, + "maxaccess": "read-only", + "status": "current" + }, + "pxInetAddressType": { + "name": "pxInetAddressType", + "oid": "1.3.6.1.4.1.13742.6.3.2.2.1.50", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "InetAddressType", + "class": "type" + }, + "maxaccess": "read-only", + "status": "deprecated" + }, + "pxInetIPAddress": { + "name": "pxInetIPAddress", + "oid": "1.3.6.1.4.1.13742.6.3.2.2.1.51", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "InetAddress", + "class": "type" + }, + "maxaccess": "read-only", + "status": "deprecated" + }, + "pxInetNetmask": { + "name": "pxInetNetmask", + "oid": "1.3.6.1.4.1.13742.6.3.2.2.1.52", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "InetAddress", + "class": "type" + }, + "maxaccess": "read-only", + "status": "deprecated" + }, + "pxInetGateway": { + "name": "pxInetGateway", + "oid": "1.3.6.1.4.1.13742.6.3.2.2.1.53", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "InetAddress", + "class": "type" + }, + "maxaccess": "read-only", + "status": "deprecated" + }, + "loadShedding": { + "name": "loadShedding", + "oid": "1.3.6.1.4.1.13742.6.3.2.2.1.55", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "serverCount": { + "name": "serverCount", + "oid": "1.3.6.1.4.1.13742.6.3.2.2.1.56", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type", + "constraints": { + "range": [ + { + "min": 0, + "max": 255 + } + ] + } + }, + "maxaccess": "read-only", + "status": "current" + }, + "inrushGuardDelay": { + "name": "inrushGuardDelay", + "oid": "1.3.6.1.4.1.13742.6.3.2.2.1.57", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type", + "constraints": { + "range": [ + { + "min": 100, + "max": 10000 + } + ] + } + }, + "maxaccess": "read-write", + "status": "current" + }, + "cascadedDeviceConnected": { + "name": "cascadedDeviceConnected", + "oid": "1.3.6.1.4.1.13742.6.3.2.2.1.58", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "synchronizeWithNTPServer": { + "name": "synchronizeWithNTPServer", + "oid": "1.3.6.1.4.1.13742.6.3.2.2.1.59", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "useDHCPProvidedNTPServer": { + "name": "useDHCPProvidedNTPServer", + "oid": "1.3.6.1.4.1.13742.6.3.2.2.1.60", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-write", + "status": "obsolete" + }, + "firstNTPServerAddressType": { + "name": "firstNTPServerAddressType", + "oid": "1.3.6.1.4.1.13742.6.3.2.2.1.61", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "InetAddressType", + "class": "type" + }, + "default": { + "default": { + "value": "ipv4", + "format": "enum" + } + }, + "maxaccess": "read-write", + "status": "current" + }, + "firstNTPServerAddress": { + "name": "firstNTPServerAddress", + "oid": "1.3.6.1.4.1.13742.6.3.2.2.1.62", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "InetAddress", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "secondNTPServerAddressType": { + "name": "secondNTPServerAddressType", + "oid": "1.3.6.1.4.1.13742.6.3.2.2.1.63", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "InetAddressType", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "secondNTPServerAddress": { + "name": "secondNTPServerAddress", + "oid": "1.3.6.1.4.1.13742.6.3.2.2.1.64", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "InetAddress", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "wireCount": { + "name": "wireCount", + "oid": "1.3.6.1.4.1.13742.6.3.2.2.1.65", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type", + "constraints": { + "range": [ + { + "min": 0, + "max": 255 + } + ] + } + }, + "maxaccess": "read-only", + "status": "obsolete" + }, + "transferSwitchCount": { + "name": "transferSwitchCount", + "oid": "1.3.6.1.4.1.13742.6.3.2.2.1.66", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type", + "constraints": { + "range": [ + { + "min": 0, + "max": 255 + } + ] + } + }, + "maxaccess": "read-only", + "status": "current" + }, + "productType": { + "name": "productType", + "oid": "1.3.6.1.4.1.13742.6.3.2.2.1.67", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "ProductTypeEnumeration", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "meteringControllerCount": { + "name": "meteringControllerCount", + "oid": "1.3.6.1.4.1.13742.6.3.2.2.1.68", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type", + "constraints": { + "range": [ + { + "min": 0, + "max": 255 + } + ] + } + }, + "maxaccess": "read-only", + "status": "current" + }, + "relayBehaviorOnPowerLoss": { + "name": "relayBehaviorOnPowerLoss", + "oid": "1.3.6.1.4.1.13742.6.3.2.2.1.69", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "RelayPowerLossBehaviorEnumeration", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "deviceCascadeType": { + "name": "deviceCascadeType", + "oid": "1.3.6.1.4.1.13742.6.3.2.2.1.70", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "DeviceCascadeTypeEnumeration", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "deviceCascadePosition": { + "name": "deviceCascadePosition", + "oid": "1.3.6.1.4.1.13742.6.3.2.2.1.71", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type", + "constraints": { + "range": [ + { + "min": 0, + "max": 99 + } + ] + } + }, + "maxaccess": "read-only", + "status": "current" + }, + "peripheralDevicesAutoManagement": { + "name": "peripheralDevicesAutoManagement", + "oid": "1.3.6.1.4.1.13742.6.3.2.2.1.72", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "frontPanelOutletSwitching": { + "name": "frontPanelOutletSwitching", + "oid": "1.3.6.1.4.1.13742.6.3.2.2.1.73", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "frontPanelRCMSelfTest": { + "name": "frontPanelRCMSelfTest", + "oid": "1.3.6.1.4.1.13742.6.3.2.2.1.74", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "frontPanelActuatorControl": { + "name": "frontPanelActuatorControl", + "oid": "1.3.6.1.4.1.13742.6.3.2.2.1.75", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "circuitCount": { + "name": "circuitCount", + "oid": "1.3.6.1.4.1.13742.6.3.2.2.1.76", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type", + "constraints": { + "range": [ + { + "min": 0, + "max": 96 + } + ] + } + }, + "maxaccess": "read-only", + "status": "current" + }, + "activeDNSServerCount": { + "name": "activeDNSServerCount", + "oid": "1.3.6.1.4.1.13742.6.3.2.2.1.77", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type", + "constraints": { + "range": [ + { + "min": 0, + "max": 16 + } + ] + } + }, + "maxaccess": "read-only", + "status": "current" + }, + "activeNTPServerCount": { + "name": "activeNTPServerCount", + "oid": "1.3.6.1.4.1.13742.6.3.2.2.1.78", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type", + "constraints": { + "range": [ + { + "min": 0, + "max": 16 + } + ] + } + }, + "maxaccess": "read-only", + "status": "current" + }, + "peripheralDevicePackageCount": { + "name": "peripheralDevicePackageCount", + "oid": "1.3.6.1.4.1.13742.6.3.2.2.1.79", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type", + "constraints": { + "range": [ + { + "min": 0, + "max": 256 + } + ] + } + }, + "maxaccess": "read-only", + "status": "current" + }, + "outletGroupCount": { + "name": "outletGroupCount", + "oid": "1.3.6.1.4.1.13742.6.3.2.2.1.80", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type", + "constraints": { + "range": [ + { + "min": 0, + "max": 128 + } + ] + } + }, + "maxaccess": "read-only", + "status": "current" + }, + "demandUpdateInterval": { + "name": "demandUpdateInterval", + "oid": "1.3.6.1.4.1.13742.6.3.2.2.1.81", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type", + "constraints": { + "range": [ + { + "min": 15, + "max": 300 + } + ] + } + }, + "maxaccess": "read-write", + "status": "current" + }, + "demandAveragingIntervals": { + "name": "demandAveragingIntervals", + "oid": "1.3.6.1.4.1.13742.6.3.2.2.1.82", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type", + "constraints": { + "range": [ + { + "min": 1, + "max": 60 + } + ] + } + }, + "maxaccess": "read-write", + "status": "current" + }, + "hasDCInlets": { + "name": "hasDCInlets", + "oid": "1.3.6.1.4.1.13742.6.3.2.2.1.83", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "pduOrientation": { + "name": "pduOrientation", + "oid": "1.3.6.1.4.1.13742.6.3.2.2.1.84", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "PduOrientationEnumeration", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "pduUptime": { + "name": "pduUptime", + "oid": "1.3.6.1.4.1.13742.6.3.2.2.1.85", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type", + "constraints": { + "range": [ + { + "min": 0, + "max": 4294967295 + } + ] + } + }, + "maxaccess": "read-only", + "status": "current" + }, + "tripCauseOutletHandling": { + "name": "tripCauseOutletHandling", + "oid": "1.3.6.1.4.1.13742.6.3.2.2.1.86", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TripCauseOutletHandlingEnumeration", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "activeDNSServerTable": { + "name": "activeDNSServerTable", + "oid": "1.3.6.1.4.1.13742.6.3.2.6", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "current" + }, + "activeDNSServerEntry": { + "name": "activeDNSServerEntry", + "oid": "1.3.6.1.4.1.13742.6.3.2.6.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "pduId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "activeDNSServerIndex", + "implied": 0 + } + ], + "status": "current" + }, + "activeDNSServerIndex": { + "name": "activeDNSServerIndex", + "oid": "1.3.6.1.4.1.13742.6.3.2.6.1.2", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type", + "constraints": { + "range": [ + { + "min": 1, + "max": 16 + } + ] + } + }, + "maxaccess": "not-accessible", + "status": "current" + }, + "activeDNSServerAddressType": { + "name": "activeDNSServerAddressType", + "oid": "1.3.6.1.4.1.13742.6.3.2.6.1.3", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "InetAddressType", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "activeDNSServerAddress": { + "name": "activeDNSServerAddress", + "oid": "1.3.6.1.4.1.13742.6.3.2.6.1.4", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "InetAddress", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "activeDNSServerAddressSource": { + "name": "activeDNSServerAddressSource", + "oid": "1.3.6.1.4.1.13742.6.3.2.6.1.5", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "AddressSourceEnumeration", + "class": "type" + }, + "maxaccess": "read-only", + "status": "deprecated" + }, + "activeNTPServerTable": { + "name": "activeNTPServerTable", + "oid": "1.3.6.1.4.1.13742.6.3.2.7", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "current" + }, + "activeNTPServerEntry": { + "name": "activeNTPServerEntry", + "oid": "1.3.6.1.4.1.13742.6.3.2.7.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "pduId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "activeNTPServerIndex", + "implied": 0 + } + ], + "status": "current" + }, + "activeNTPServerIndex": { + "name": "activeNTPServerIndex", + "oid": "1.3.6.1.4.1.13742.6.3.2.7.1.2", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type", + "constraints": { + "range": [ + { + "min": 1, + "max": 16 + } + ] + } + }, + "maxaccess": "not-accessible", + "status": "current" + }, + "activeNTPServerAddressType": { + "name": "activeNTPServerAddressType", + "oid": "1.3.6.1.4.1.13742.6.3.2.7.1.3", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "InetAddressType", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "activeNTPServerAddress": { + "name": "activeNTPServerAddress", + "oid": "1.3.6.1.4.1.13742.6.3.2.7.1.4", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "InetAddress", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "activeNTPServerAddressSource": { + "name": "activeNTPServerAddressSource", + "oid": "1.3.6.1.4.1.13742.6.3.2.7.1.5", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "AddressSourceEnumeration", + "class": "type" + }, + "maxaccess": "read-only", + "status": "deprecated" + }, + "controllerConfigurationTable": { + "name": "controllerConfigurationTable", + "oid": "1.3.6.1.4.1.13742.6.3.2.3", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "current" + }, + "controllerConfigurationEntry": { + "name": "controllerConfigurationEntry", + "oid": "1.3.6.1.4.1.13742.6.3.2.3.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "pduId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "boardType", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "boardIndex", + "implied": 0 + } + ], + "status": "current" + }, + "boardType": { + "name": "boardType", + "oid": "1.3.6.1.4.1.13742.6.3.2.3.1.1", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "BoardTypeEnumeration", + "class": "type" + }, + "maxaccess": "not-accessible", + "status": "current" + }, + "boardIndex": { + "name": "boardIndex", + "oid": "1.3.6.1.4.1.13742.6.3.2.3.1.2", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type", + "constraints": { + "range": [ + { + "min": 1, + "max": 256 + } + ] + } + }, + "maxaccess": "not-accessible", + "status": "current" + }, + "boardVersion": { + "name": "boardVersion", + "oid": "1.3.6.1.4.1.13742.6.3.2.3.1.4", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "boardFirmwareVersion": { + "name": "boardFirmwareVersion", + "oid": "1.3.6.1.4.1.13742.6.3.2.3.1.6", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "boardFirmwareTimeStamp": { + "name": "boardFirmwareTimeStamp", + "oid": "1.3.6.1.4.1.13742.6.3.2.3.1.8", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logConfigurationTable": { + "name": "logConfigurationTable", + "oid": "1.3.6.1.4.1.13742.6.3.2.4", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "current" + }, + "logConfigurationEntry": { + "name": "logConfigurationEntry", + "oid": "1.3.6.1.4.1.13742.6.3.2.4.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "pduId", + "implied": 0 + } + ], + "status": "current" + }, + "dataLogging": { + "name": "dataLogging", + "oid": "1.3.6.1.4.1.13742.6.3.2.4.1.1", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "measurementPeriod": { + "name": "measurementPeriod", + "oid": "1.3.6.1.4.1.13742.6.3.2.4.1.2", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsPerLogEntry": { + "name": "measurementsPerLogEntry", + "oid": "1.3.6.1.4.1.13742.6.3.2.4.1.3", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type", + "constraints": { + "range": [ + { + "min": 1, + "max": 600 + } + ] + } + }, + "maxaccess": "read-write", + "status": "current" + }, + "logSize": { + "name": "logSize", + "oid": "1.3.6.1.4.1.13742.6.3.2.4.1.4", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type", + "constraints": { + "range": [ + { + "min": 60, + "max": 20000 + } + ] + } + }, + "maxaccess": "read-write", + "status": "current" + }, + "dataLoggingEnableForAllSensors": { + "name": "dataLoggingEnableForAllSensors", + "oid": "1.3.6.1.4.1.13742.6.3.2.4.1.5", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "trapInformationTable": { + "name": "trapInformationTable", + "oid": "1.3.6.1.4.1.13742.6.0.0.1", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "current" + }, + "trapInformationEntry": { + "name": "trapInformationEntry", + "oid": "1.3.6.1.4.1.13742.6.0.0.1.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "pduId", + "implied": 0 + } + ], + "status": "current" + }, + "userName": { + "name": "userName", + "oid": "1.3.6.1.4.1.13742.6.0.0.1.1.2", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "accessible-for-notify", + "status": "current" + }, + "targetUser": { + "name": "targetUser", + "oid": "1.3.6.1.4.1.13742.6.0.0.1.1.3", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "accessible-for-notify", + "status": "current" + }, + "imageVersion": { + "name": "imageVersion", + "oid": "1.3.6.1.4.1.13742.6.0.0.1.1.5", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "accessible-for-notify", + "status": "current" + }, + "roleName": { + "name": "roleName", + "oid": "1.3.6.1.4.1.13742.6.0.0.1.1.6", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "accessible-for-notify", + "status": "current" + }, + "smtpMessageRecipients": { + "name": "smtpMessageRecipients", + "oid": "1.3.6.1.4.1.13742.6.0.0.1.1.7", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "accessible-for-notify", + "status": "current" + }, + "smtpServer": { + "name": "smtpServer", + "oid": "1.3.6.1.4.1.13742.6.0.0.1.1.8", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "accessible-for-notify", + "status": "current" + }, + "newTargetUser": { + "name": "newTargetUser", + "oid": "1.3.6.1.4.1.13742.6.0.0.1.1.9", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "accessible-for-notify", + "status": "current" + }, + "oldSensorState": { + "name": "oldSensorState", + "oid": "1.3.6.1.4.1.13742.6.0.0.2", + "nodetype": "scalar", + "class": "objecttype", + "syntax": { + "type": "SensorStateEnumeration", + "class": "type" + }, + "maxaccess": "accessible-for-notify", + "status": "current" + }, + "pduNumber": { + "name": "pduNumber", + "oid": "1.3.6.1.4.1.13742.6.0.0.3", + "nodetype": "scalar", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type", + "constraints": { + "range": [ + { + "min": 1, + "max": 256 + } + ] + } + }, + "maxaccess": "accessible-for-notify", + "status": "current" + }, + "inletPoleNumber": { + "name": "inletPoleNumber", + "oid": "1.3.6.1.4.1.13742.6.0.0.5", + "nodetype": "scalar", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type", + "constraints": { + "range": [ + { + "min": 1, + "max": 256 + } + ] + } + }, + "maxaccess": "accessible-for-notify", + "status": "current" + }, + "outletPoleNumber": { + "name": "outletPoleNumber", + "oid": "1.3.6.1.4.1.13742.6.0.0.7", + "nodetype": "scalar", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type", + "constraints": { + "range": [ + { + "min": 1, + "max": 256 + } + ] + } + }, + "maxaccess": "accessible-for-notify", + "status": "current" + }, + "externalSensorNumber": { + "name": "externalSensorNumber", + "oid": "1.3.6.1.4.1.13742.6.0.0.8", + "nodetype": "scalar", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type", + "constraints": { + "range": [ + { + "min": 1, + "max": 256 + } + ] + } + }, + "maxaccess": "accessible-for-notify", + "status": "current" + }, + "typeOfSensor": { + "name": "typeOfSensor", + "oid": "1.3.6.1.4.1.13742.6.0.0.10", + "nodetype": "scalar", + "class": "objecttype", + "syntax": { + "type": "SensorTypeEnumeration", + "class": "type" + }, + "maxaccess": "accessible-for-notify", + "status": "current" + }, + "errorDescription": { + "name": "errorDescription", + "oid": "1.3.6.1.4.1.13742.6.0.0.11", + "nodetype": "scalar", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "accessible-for-notify", + "status": "current" + }, + "deviceChangedParameter": { + "name": "deviceChangedParameter", + "oid": "1.3.6.1.4.1.13742.6.0.0.12", + "nodetype": "scalar", + "class": "objecttype", + "syntax": { + "type": "DeviceIdentificationParameterEnumeration", + "class": "type" + }, + "maxaccess": "accessible-for-notify", + "status": "current" + }, + "changedParameterNewValue": { + "name": "changedParameterNewValue", + "oid": "1.3.6.1.4.1.13742.6.0.0.13", + "nodetype": "scalar", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "accessible-for-notify", + "status": "current" + }, + "lhxSupportEnabled": { + "name": "lhxSupportEnabled", + "oid": "1.3.6.1.4.1.13742.6.0.0.14", + "nodetype": "scalar", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "accessible-for-notify", + "status": "deprecated" + }, + "webcamModel": { + "name": "webcamModel", + "oid": "1.3.6.1.4.1.13742.6.0.0.15", + "nodetype": "scalar", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "accessible-for-notify", + "status": "current" + }, + "webcamConnectionPort": { + "name": "webcamConnectionPort", + "oid": "1.3.6.1.4.1.13742.6.0.0.16", + "nodetype": "scalar", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "accessible-for-notify", + "status": "current" + }, + "agentInetPortNumber": { + "name": "agentInetPortNumber", + "oid": "1.3.6.1.4.1.13742.6.0.0.18", + "nodetype": "scalar", + "class": "objecttype", + "syntax": { + "type": "InetPortNumber", + "class": "type" + }, + "maxaccess": "accessible-for-notify", + "status": "current" + }, + "peripheralDeviceRomcode": { + "name": "peripheralDeviceRomcode", + "oid": "1.3.6.1.4.1.13742.6.0.0.19", + "nodetype": "scalar", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "accessible-for-notify", + "status": "current" + }, + "peripheralDeviceFirmwareUpdateState": { + "name": "peripheralDeviceFirmwareUpdateState", + "oid": "1.3.6.1.4.1.13742.6.0.0.20", + "nodetype": "scalar", + "class": "objecttype", + "syntax": { + "type": "PeripheralDeviceFirmwareUpdateStateEnumeration", + "class": "type" + }, + "maxaccess": "accessible-for-notify", + "status": "current" + }, + "circuitNumber": { + "name": "circuitNumber", + "oid": "1.3.6.1.4.1.13742.6.0.0.21", + "nodetype": "scalar", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type", + "constraints": { + "range": [ + { + "min": 1, + "max": 33000 + } + ] + } + }, + "maxaccess": "accessible-for-notify", + "status": "current" + }, + "circuitPoleNumber": { + "name": "circuitPoleNumber", + "oid": "1.3.6.1.4.1.13742.6.0.0.22", + "nodetype": "scalar", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type", + "constraints": { + "range": [ + { + "min": 1, + "max": 256 + } + ] + } + }, + "maxaccess": "accessible-for-notify", + "status": "current" + }, + "phoneNumber": { + "name": "phoneNumber", + "oid": "1.3.6.1.4.1.13742.6.0.0.23", + "nodetype": "scalar", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "accessible-for-notify", + "status": "current" + }, + "smartCardReaderId": { + "name": "smartCardReaderId", + "oid": "1.3.6.1.4.1.13742.6.0.0.24", + "nodetype": "scalar", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "accessible-for-notify", + "status": "current" + }, + "smartCardTimestamp": { + "name": "smartCardTimestamp", + "oid": "1.3.6.1.4.1.13742.6.0.0.25", + "nodetype": "scalar", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "accessible-for-notify", + "status": "current" + }, + "smartCardType": { + "name": "smartCardType", + "oid": "1.3.6.1.4.1.13742.6.0.0.26", + "nodetype": "scalar", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "accessible-for-notify", + "status": "current" + }, + "smartCardId": { + "name": "smartCardId", + "oid": "1.3.6.1.4.1.13742.6.0.0.27", + "nodetype": "scalar", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "accessible-for-notify", + "status": "current" + }, + "suspectedTripCauseLabel": { + "name": "suspectedTripCauseLabel", + "oid": "1.3.6.1.4.1.13742.6.0.0.28", + "nodetype": "scalar", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "accessible-for-notify", + "status": "current" + }, + "smartCardReaderManufacturer": { + "name": "smartCardReaderManufacturer", + "oid": "1.3.6.1.4.1.13742.6.0.0.29", + "nodetype": "scalar", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "accessible-for-notify", + "status": "current" + }, + "smartCardReaderProduct": { + "name": "smartCardReaderProduct", + "oid": "1.3.6.1.4.1.13742.6.0.0.30", + "nodetype": "scalar", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "accessible-for-notify", + "status": "current" + }, + "smartCardReaderSerialNumber": { + "name": "smartCardReaderSerialNumber", + "oid": "1.3.6.1.4.1.13742.6.0.0.31", + "nodetype": "scalar", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "accessible-for-notify", + "status": "current" + }, + "smartCardReaderChannel": { + "name": "smartCardReaderChannel", + "oid": "1.3.6.1.4.1.13742.6.0.0.32", + "nodetype": "scalar", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type", + "constraints": { + "range": [ + { + "min": -1, + "max": 256 + } + ] + } + }, + "maxaccess": "accessible-for-notify", + "status": "current" + }, + "outletGroupNumber": { + "name": "outletGroupNumber", + "oid": "1.3.6.1.4.1.13742.6.0.0.33", + "nodetype": "scalar", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type", + "constraints": { + "range": [ + { + "min": 1, + "max": 256 + } + ] + } + }, + "maxaccess": "accessible-for-notify", + "status": "current" + }, + "serverPowerOperation": { + "name": "serverPowerOperation", + "oid": "1.3.6.1.4.1.13742.6.0.0.34", + "nodetype": "scalar", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "accessible-for-notify", + "status": "current" + }, + "serverPowerResult": { + "name": "serverPowerResult", + "oid": "1.3.6.1.4.1.13742.6.0.0.35", + "nodetype": "scalar", + "class": "objecttype", + "syntax": { + "type": "ServerPowerControlResultEnumeration", + "class": "type" + }, + "maxaccess": "accessible-for-notify", + "status": "current" + }, + "webcamName": { + "name": "webcamName", + "oid": "1.3.6.1.4.1.13742.6.0.0.36", + "nodetype": "scalar", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "accessible-for-notify", + "status": "current" + }, + "webcamFolderUrl": { + "name": "webcamFolderUrl", + "oid": "1.3.6.1.4.1.13742.6.0.0.37", + "nodetype": "scalar", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "accessible-for-notify", + "status": "current" + }, + "keypadId": { + "name": "keypadId", + "oid": "1.3.6.1.4.1.13742.6.0.0.38", + "nodetype": "scalar", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "accessible-for-notify", + "status": "current" + }, + "keypadPinTimestamp": { + "name": "keypadPinTimestamp", + "oid": "1.3.6.1.4.1.13742.6.0.0.39", + "nodetype": "scalar", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "accessible-for-notify", + "status": "current" + }, + "keypadPin": { + "name": "keypadPin", + "oid": "1.3.6.1.4.1.13742.6.0.0.40", + "nodetype": "scalar", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "accessible-for-notify", + "status": "current" + }, + "keypadManufacturer": { + "name": "keypadManufacturer", + "oid": "1.3.6.1.4.1.13742.6.0.0.41", + "nodetype": "scalar", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "accessible-for-notify", + "status": "current" + }, + "keypadProduct": { + "name": "keypadProduct", + "oid": "1.3.6.1.4.1.13742.6.0.0.42", + "nodetype": "scalar", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "accessible-for-notify", + "status": "current" + }, + "keypadSerialNumber": { + "name": "keypadSerialNumber", + "oid": "1.3.6.1.4.1.13742.6.0.0.43", + "nodetype": "scalar", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "accessible-for-notify", + "status": "current" + }, + "keypadChannel": { + "name": "keypadChannel", + "oid": "1.3.6.1.4.1.13742.6.0.0.44", + "nodetype": "scalar", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type", + "constraints": { + "range": [ + { + "min": -1, + "max": 256 + } + ] + } + }, + "maxaccess": "accessible-for-notify", + "status": "current" + }, + "doorAccessRuleId": { + "name": "doorAccessRuleId", + "oid": "1.3.6.1.4.1.13742.6.0.0.45", + "nodetype": "scalar", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type", + "constraints": { + "range": [ + { + "min": -1, + "max": 256 + } + ] + } + }, + "maxaccess": "accessible-for-notify", + "status": "current" + }, + "doorAccessDenialReason": { + "name": "doorAccessDenialReason", + "oid": "1.3.6.1.4.1.13742.6.0.0.46", + "nodetype": "scalar", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "accessible-for-notify", + "status": "current" + }, + "doorAccessRuleName": { + "name": "doorAccessRuleName", + "oid": "1.3.6.1.4.1.13742.6.0.0.47", + "nodetype": "scalar", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "accessible-for-notify", + "status": "current" + }, + "smartCardReaderPosition": { + "name": "smartCardReaderPosition", + "oid": "1.3.6.1.4.1.13742.6.0.0.48", + "nodetype": "scalar", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "accessible-for-notify", + "status": "current" + }, + "keypadPosition": { + "name": "keypadPosition", + "oid": "1.3.6.1.4.1.13742.6.0.0.49", + "nodetype": "scalar", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "accessible-for-notify", + "status": "current" + }, + "keypadDescription": { + "name": "keypadDescription", + "oid": "1.3.6.1.4.1.13742.6.0.0.50", + "nodetype": "scalar", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "accessible-for-notify", + "status": "current" + }, + "keypadName": { + "name": "keypadName", + "oid": "1.3.6.1.4.1.13742.6.0.0.51", + "nodetype": "scalar", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "accessible-for-notify", + "status": "current" + }, + "smartCardReaderDescription": { + "name": "smartCardReaderDescription", + "oid": "1.3.6.1.4.1.13742.6.0.0.52", + "nodetype": "scalar", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "accessible-for-notify", + "status": "current" + }, + "smartCardReaderName": { + "name": "smartCardReaderName", + "oid": "1.3.6.1.4.1.13742.6.0.0.53", + "nodetype": "scalar", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "accessible-for-notify", + "status": "current" + }, + "inletLinePairNumber": { + "name": "inletLinePairNumber", + "oid": "1.3.6.1.4.1.13742.6.0.0.54", + "nodetype": "scalar", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type", + "constraints": { + "range": [ + { + "min": 1, + "max": 3 + } + ] + } + }, + "maxaccess": "accessible-for-notify", + "status": "current" + }, + "dipSwellEventVoltage": { + "name": "dipSwellEventVoltage", + "oid": "1.3.6.1.4.1.13742.6.0.0.55", + "nodetype": "scalar", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "accessible-for-notify", + "status": "current" + }, + "dipSwellEventTimeStamp": { + "name": "dipSwellEventTimeStamp", + "oid": "1.3.6.1.4.1.13742.6.0.0.56", + "nodetype": "scalar", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "accessible-for-notify", + "status": "current" + }, + "dipSwellEventDuration": { + "name": "dipSwellEventDuration", + "oid": "1.3.6.1.4.1.13742.6.0.0.57", + "nodetype": "scalar", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "accessible-for-notify", + "status": "current" + }, + "portFuseState": { + "name": "portFuseState", + "oid": "1.3.6.1.4.1.13742.6.0.0.58", + "nodetype": "scalar", + "class": "objecttype", + "syntax": { + "type": "PortFuseStateEnumeration", + "class": "type" + }, + "maxaccess": "accessible-for-notify", + "status": "current" + }, + "externalPortFuseId": { + "name": "externalPortFuseId", + "oid": "1.3.6.1.4.1.13742.6.0.0.59", + "nodetype": "scalar", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "accessible-for-notify", + "status": "current" + }, + "externalPortName": { + "name": "externalPortName", + "oid": "1.3.6.1.4.1.13742.6.0.0.60", + "nodetype": "scalar", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "accessible-for-notify", + "status": "current" + }, + "linkUnitId": { + "name": "linkUnitId", + "oid": "1.3.6.1.4.1.13742.6.0.0.61", + "nodetype": "scalar", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type", + "constraints": { + "range": [ + { + "min": 2, + "max": 256 + } + ] + } + }, + "maxaccess": "accessible-for-notify", + "status": "current" + }, + "linkUnitAddress": { + "name": "linkUnitAddress", + "oid": "1.3.6.1.4.1.13742.6.0.0.62", + "nodetype": "scalar", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "accessible-for-notify", + "status": "current" + }, + "doorHandleName": { + "name": "doorHandleName", + "oid": "1.3.6.1.4.1.13742.6.0.0.63", + "nodetype": "scalar", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "accessible-for-notify", + "status": "current" + }, + "doorLockName": { + "name": "doorLockName", + "oid": "1.3.6.1.4.1.13742.6.0.0.64", + "nodetype": "scalar", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "accessible-for-notify", + "status": "current" + }, + "doorStateName": { + "name": "doorStateName", + "oid": "1.3.6.1.4.1.13742.6.0.0.65", + "nodetype": "scalar", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "accessible-for-notify", + "status": "current" + }, + "unitSensorConfigurationTable": { + "name": "unitSensorConfigurationTable", + "oid": "1.3.6.1.4.1.13742.6.3.2.5", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "current" + }, + "unitSensorConfigurationEntry": { + "name": "unitSensorConfigurationEntry", + "oid": "1.3.6.1.4.1.13742.6.3.2.5.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "pduId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "sensorType", + "implied": 0 + } + ], + "status": "current" + }, + "sensorType": { + "name": "sensorType", + "oid": "1.3.6.1.4.1.13742.6.3.2.5.1.1", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "SensorTypeEnumeration", + "class": "type" + }, + "maxaccess": "not-accessible", + "status": "current" + }, + "unitSensorLogAvailable": { + "name": "unitSensorLogAvailable", + "oid": "1.3.6.1.4.1.13742.6.3.2.5.1.4", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "unitSensorUnits": { + "name": "unitSensorUnits", + "oid": "1.3.6.1.4.1.13742.6.3.2.5.1.6", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "SensorUnitsEnumeration", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "unitSensorDecimalDigits": { + "name": "unitSensorDecimalDigits", + "oid": "1.3.6.1.4.1.13742.6.3.2.5.1.7", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "unitSensorAccuracy": { + "name": "unitSensorAccuracy", + "oid": "1.3.6.1.4.1.13742.6.3.2.5.1.8", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "HundredthsOfAPercentage", + "class": "type" + }, + "maxaccess": "read-only", + "status": "deprecated" + }, + "unitSensorResolution": { + "name": "unitSensorResolution", + "oid": "1.3.6.1.4.1.13742.6.3.2.5.1.9", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "unitSensorTolerance": { + "name": "unitSensorTolerance", + "oid": "1.3.6.1.4.1.13742.6.3.2.5.1.10", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "deprecated" + }, + "unitSensorMaximum": { + "name": "unitSensorMaximum", + "oid": "1.3.6.1.4.1.13742.6.3.2.5.1.11", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "unitSensorMinimum": { + "name": "unitSensorMinimum", + "oid": "1.3.6.1.4.1.13742.6.3.2.5.1.12", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "unitSensorHysteresis": { + "name": "unitSensorHysteresis", + "oid": "1.3.6.1.4.1.13742.6.3.2.5.1.13", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "unitSensorStateChangeDelay": { + "name": "unitSensorStateChangeDelay", + "oid": "1.3.6.1.4.1.13742.6.3.2.5.1.14", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type", + "constraints": { + "range": [ + { + "min": 0, + "max": 300 + } + ] + } + }, + "maxaccess": "read-write", + "status": "current" + }, + "unitSensorLowerCriticalThreshold": { + "name": "unitSensorLowerCriticalThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.2.5.1.21", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "unitSensorLowerWarningThreshold": { + "name": "unitSensorLowerWarningThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.2.5.1.22", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "unitSensorUpperCriticalThreshold": { + "name": "unitSensorUpperCriticalThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.2.5.1.23", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "unitSensorUpperWarningThreshold": { + "name": "unitSensorUpperWarningThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.2.5.1.24", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "unitSensorEnabledThresholds": { + "name": "unitSensorEnabledThresholds", + "oid": "1.3.6.1.4.1.13742.6.3.2.5.1.25", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Bits", + "class": "type", + "bits": { + "lowerCritical": 0, + "lowerWarning": 1, + "upperWarning": 2, + "upperCritical": 3 + } + }, + "maxaccess": "read-write", + "status": "current" + }, + "unitSensorSignedMaximum": { + "name": "unitSensorSignedMaximum", + "oid": "1.3.6.1.4.1.13742.6.3.2.5.1.26", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "unitSensorSignedMinimum": { + "name": "unitSensorSignedMinimum", + "oid": "1.3.6.1.4.1.13742.6.3.2.5.1.27", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "unitSensorSignedLowerCriticalThreshold": { + "name": "unitSensorSignedLowerCriticalThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.2.5.1.28", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "unitSensorSignedLowerWarningThreshold": { + "name": "unitSensorSignedLowerWarningThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.2.5.1.29", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "unitSensorSignedUpperCriticalThreshold": { + "name": "unitSensorSignedUpperCriticalThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.2.5.1.30", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "unitSensorSignedUpperWarningThreshold": { + "name": "unitSensorSignedUpperWarningThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.2.5.1.31", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "inletConfigurationTable": { + "name": "inletConfigurationTable", + "oid": "1.3.6.1.4.1.13742.6.3.3.3", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "current" + }, + "inletConfigurationEntry": { + "name": "inletConfigurationEntry", + "oid": "1.3.6.1.4.1.13742.6.3.3.3.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "pduId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "inletId", + "implied": 0 + } + ], + "status": "current" + }, + "inletId": { + "name": "inletId", + "oid": "1.3.6.1.4.1.13742.6.3.3.3.1.1", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type", + "constraints": { + "range": [ + { + "min": 1, + "max": 256 + } + ] + } + }, + "maxaccess": "not-accessible", + "status": "current" + }, + "inletLabel": { + "name": "inletLabel", + "oid": "1.3.6.1.4.1.13742.6.3.3.3.1.2", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "inletName": { + "name": "inletName", + "oid": "1.3.6.1.4.1.13742.6.3.3.3.1.3", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "inletPlug": { + "name": "inletPlug", + "oid": "1.3.6.1.4.1.13742.6.3.3.3.1.4", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "PlugTypeEnumeration", + "class": "type" + }, + "maxaccess": "read-only", + "status": "deprecated" + }, + "inletPoleCount": { + "name": "inletPoleCount", + "oid": "1.3.6.1.4.1.13742.6.3.3.3.1.5", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type", + "constraints": { + "range": [ + { + "min": 2, + "max": 5 + } + ] + } + }, + "maxaccess": "read-only", + "status": "current" + }, + "inletRatedVoltage": { + "name": "inletRatedVoltage", + "oid": "1.3.6.1.4.1.13742.6.3.3.3.1.6", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "inletRatedCurrent": { + "name": "inletRatedCurrent", + "oid": "1.3.6.1.4.1.13742.6.3.3.3.1.7", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "inletRatedFrequency": { + "name": "inletRatedFrequency", + "oid": "1.3.6.1.4.1.13742.6.3.3.3.1.8", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "read-only", + "status": "deprecated" + }, + "inletRatedVA": { + "name": "inletRatedVA", + "oid": "1.3.6.1.4.1.13742.6.3.3.3.1.9", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "read-only", + "status": "deprecated" + }, + "inletDeviceCapabilities": { + "name": "inletDeviceCapabilities", + "oid": "1.3.6.1.4.1.13742.6.3.3.3.1.10", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Bits", + "class": "type", + "bits": { + "rmsCurrent": 0, + "peakCurrent": 1, + "unbalancedCurrent": 2, + "rmsVoltage": 3, + "activePower": 4, + "apparentPower": 5, + "powerFactor": 6, + "activeEnergy": 7, + "apparentEnergy": 8, + "surgeProtectorStatus": 21, + "frequency": 22, + "phaseAngle": 23, + "residualCurrent": 25, + "rcmState": 26, + "reactivePower": 28, + "powerQuality": 31, + "displacementPowerFactor": 34, + "residualDcCurrent": 35, + "crestFactor": 50, + "activePowerDemand": 53, + "residualAcCurrent": 54, + "voltageThd": 56, + "currentThd": 57, + "unbalancedVoltage": 59, + "unbalancedLineLineCurrent": 60, + "unbalancedLineLineVoltage": 61 + } + }, + "maxaccess": "read-only", + "status": "current" + }, + "inletPoleCapabilities": { + "name": "inletPoleCapabilities", + "oid": "1.3.6.1.4.1.13742.6.3.3.3.1.11", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Bits", + "class": "type", + "bits": { + "rmsCurrent": 0, + "peakCurrent": 1, + "rmsVoltage": 3, + "activePower": 4, + "apparentPower": 5, + "powerFactor": 6, + "activeEnergy": 7, + "apparentEnergy": 8, + "phaseAngle": 23, + "rmsVoltageLN": 24, + "residualCurrent": 25, + "rcmState": 26, + "reactivePower": 28, + "displacementPowerFactor": 34, + "residualDcCurrent": 35, + "crestFactor": 50, + "residualAcCurrent": 54, + "voltageThd": 56, + "currentThd": 57 + } + }, + "maxaccess": "read-only", + "status": "current" + }, + "inletPlugDescriptor": { + "name": "inletPlugDescriptor", + "oid": "1.3.6.1.4.1.13742.6.3.3.3.1.12", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "inletEnableState": { + "name": "inletEnableState", + "oid": "1.3.6.1.4.1.13742.6.3.3.3.1.13", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "inletRCMResidualOperatingCurrent": { + "name": "inletRCMResidualOperatingCurrent", + "oid": "1.3.6.1.4.1.13742.6.3.3.3.1.14", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "obsolete" + }, + "inletIsDC": { + "name": "inletIsDC", + "oid": "1.3.6.1.4.1.13742.6.3.3.3.1.15", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "inletLinePairCount": { + "name": "inletLinePairCount", + "oid": "1.3.6.1.4.1.13742.6.3.3.3.1.16", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type", + "constraints": { + "range": [ + { + "min": 0, + "max": 3 + } + ] + } + }, + "maxaccess": "read-only", + "status": "current" + }, + "inletLinePairCapabilities": { + "name": "inletLinePairCapabilities", + "oid": "1.3.6.1.4.1.13742.6.3.3.3.1.17", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Bits", + "class": "type", + "bits": { + "rmsCurrent": 0, + "peakCurrent": 1, + "rmsVoltage": 3, + "activePower": 4, + "apparentPower": 5, + "powerFactor": 6, + "activeEnergy": 7, + "apparentEnergy": 8, + "phaseAngle": 23, + "reactivePower": 28, + "displacementPowerFactor": 34, + "crestFactor": 50, + "voltageThd": 56, + "currentThd": 57 + } + }, + "maxaccess": "read-only", + "status": "current" + }, + "inletPoleConfigurationTable": { + "name": "inletPoleConfigurationTable", + "oid": "1.3.6.1.4.1.13742.6.3.3.5", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "current" + }, + "inletPoleConfigurationEntry": { + "name": "inletPoleConfigurationEntry", + "oid": "1.3.6.1.4.1.13742.6.3.3.5.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "pduId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "inletId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "inletPoleIndex", + "implied": 0 + } + ], + "status": "current" + }, + "inletPoleLine": { + "name": "inletPoleLine", + "oid": "1.3.6.1.4.1.13742.6.3.3.5.1.1", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "LineEnumeration", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "inletPoleNode": { + "name": "inletPoleNode", + "oid": "1.3.6.1.4.1.13742.6.3.3.5.1.2", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "inletSensorConfigurationTable": { + "name": "inletSensorConfigurationTable", + "oid": "1.3.6.1.4.1.13742.6.3.3.4", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "current" + }, + "inletSensorConfigurationEntry": { + "name": "inletSensorConfigurationEntry", + "oid": "1.3.6.1.4.1.13742.6.3.3.4.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "pduId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "inletId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "sensorType", + "implied": 0 + } + ], + "status": "current" + }, + "inletSensorLogAvailable": { + "name": "inletSensorLogAvailable", + "oid": "1.3.6.1.4.1.13742.6.3.3.4.1.4", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "inletSensorUnits": { + "name": "inletSensorUnits", + "oid": "1.3.6.1.4.1.13742.6.3.3.4.1.6", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "SensorUnitsEnumeration", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "inletSensorDecimalDigits": { + "name": "inletSensorDecimalDigits", + "oid": "1.3.6.1.4.1.13742.6.3.3.4.1.7", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "inletSensorAccuracy": { + "name": "inletSensorAccuracy", + "oid": "1.3.6.1.4.1.13742.6.3.3.4.1.8", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "HundredthsOfAPercentage", + "class": "type" + }, + "maxaccess": "read-only", + "status": "deprecated" + }, + "inletSensorResolution": { + "name": "inletSensorResolution", + "oid": "1.3.6.1.4.1.13742.6.3.3.4.1.9", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "inletSensorTolerance": { + "name": "inletSensorTolerance", + "oid": "1.3.6.1.4.1.13742.6.3.3.4.1.10", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "deprecated" + }, + "inletSensorMaximum": { + "name": "inletSensorMaximum", + "oid": "1.3.6.1.4.1.13742.6.3.3.4.1.11", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "inletSensorMinimum": { + "name": "inletSensorMinimum", + "oid": "1.3.6.1.4.1.13742.6.3.3.4.1.12", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "inletSensorHysteresis": { + "name": "inletSensorHysteresis", + "oid": "1.3.6.1.4.1.13742.6.3.3.4.1.13", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "inletSensorStateChangeDelay": { + "name": "inletSensorStateChangeDelay", + "oid": "1.3.6.1.4.1.13742.6.3.3.4.1.14", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type", + "constraints": { + "range": [ + { + "min": 0, + "max": 300 + } + ] + } + }, + "maxaccess": "read-write", + "status": "current" + }, + "inletSensorLowerCriticalThreshold": { + "name": "inletSensorLowerCriticalThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.3.4.1.21", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "inletSensorLowerWarningThreshold": { + "name": "inletSensorLowerWarningThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.3.4.1.22", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "inletSensorUpperCriticalThreshold": { + "name": "inletSensorUpperCriticalThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.3.4.1.23", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "inletSensorUpperWarningThreshold": { + "name": "inletSensorUpperWarningThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.3.4.1.24", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "inletSensorEnabledThresholds": { + "name": "inletSensorEnabledThresholds", + "oid": "1.3.6.1.4.1.13742.6.3.3.4.1.25", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Bits", + "class": "type", + "bits": { + "lowerCritical": 0, + "lowerWarning": 1, + "upperWarning": 2, + "upperCritical": 3 + } + }, + "maxaccess": "read-write", + "status": "current" + }, + "inletSensorSignedMaximum": { + "name": "inletSensorSignedMaximum", + "oid": "1.3.6.1.4.1.13742.6.3.3.4.1.26", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "inletSensorSignedMinimum": { + "name": "inletSensorSignedMinimum", + "oid": "1.3.6.1.4.1.13742.6.3.3.4.1.27", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "inletSensorSignedLowerCriticalThreshold": { + "name": "inletSensorSignedLowerCriticalThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.3.4.1.28", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "inletSensorSignedLowerWarningThreshold": { + "name": "inletSensorSignedLowerWarningThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.3.4.1.29", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "inletSensorSignedUpperCriticalThreshold": { + "name": "inletSensorSignedUpperCriticalThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.3.4.1.30", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "inletSensorSignedUpperWarningThreshold": { + "name": "inletSensorSignedUpperWarningThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.3.4.1.31", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "inletPoleSensorConfigurationTable": { + "name": "inletPoleSensorConfigurationTable", + "oid": "1.3.6.1.4.1.13742.6.3.3.6", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "current" + }, + "inletPoleSensorConfigurationEntry": { + "name": "inletPoleSensorConfigurationEntry", + "oid": "1.3.6.1.4.1.13742.6.3.3.6.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "pduId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "inletId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "inletPoleIndex", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "sensorType", + "implied": 0 + } + ], + "status": "current" + }, + "inletPoleIndex": { + "name": "inletPoleIndex", + "oid": "1.3.6.1.4.1.13742.6.3.3.6.1.1", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type", + "constraints": { + "range": [ + { + "min": 1, + "max": 256 + } + ] + } + }, + "maxaccess": "not-accessible", + "status": "current" + }, + "inletPoleSensorLogAvailable": { + "name": "inletPoleSensorLogAvailable", + "oid": "1.3.6.1.4.1.13742.6.3.3.6.1.4", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "inletPoleSensorUnits": { + "name": "inletPoleSensorUnits", + "oid": "1.3.6.1.4.1.13742.6.3.3.6.1.6", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "SensorUnitsEnumeration", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "inletPoleSensorDecimalDigits": { + "name": "inletPoleSensorDecimalDigits", + "oid": "1.3.6.1.4.1.13742.6.3.3.6.1.7", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "inletPoleSensorAccuracy": { + "name": "inletPoleSensorAccuracy", + "oid": "1.3.6.1.4.1.13742.6.3.3.6.1.8", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "HundredthsOfAPercentage", + "class": "type" + }, + "maxaccess": "read-only", + "status": "deprecated" + }, + "inletPoleSensorResolution": { + "name": "inletPoleSensorResolution", + "oid": "1.3.6.1.4.1.13742.6.3.3.6.1.9", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "inletPoleSensorTolerance": { + "name": "inletPoleSensorTolerance", + "oid": "1.3.6.1.4.1.13742.6.3.3.6.1.10", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "deprecated" + }, + "inletPoleSensorMaximum": { + "name": "inletPoleSensorMaximum", + "oid": "1.3.6.1.4.1.13742.6.3.3.6.1.11", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "inletPoleSensorMinimum": { + "name": "inletPoleSensorMinimum", + "oid": "1.3.6.1.4.1.13742.6.3.3.6.1.12", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "inletPoleSensorHysteresis": { + "name": "inletPoleSensorHysteresis", + "oid": "1.3.6.1.4.1.13742.6.3.3.6.1.13", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "inletPoleSensorStateChangeDelay": { + "name": "inletPoleSensorStateChangeDelay", + "oid": "1.3.6.1.4.1.13742.6.3.3.6.1.14", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type", + "constraints": { + "range": [ + { + "min": 0, + "max": 300 + } + ] + } + }, + "maxaccess": "read-write", + "status": "current" + }, + "inletPoleSensorLowerCriticalThreshold": { + "name": "inletPoleSensorLowerCriticalThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.3.6.1.21", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "inletPoleSensorLowerWarningThreshold": { + "name": "inletPoleSensorLowerWarningThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.3.6.1.22", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "inletPoleSensorUpperCriticalThreshold": { + "name": "inletPoleSensorUpperCriticalThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.3.6.1.23", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "inletPoleSensorUpperWarningThreshold": { + "name": "inletPoleSensorUpperWarningThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.3.6.1.24", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "inletPoleSensorEnabledThresholds": { + "name": "inletPoleSensorEnabledThresholds", + "oid": "1.3.6.1.4.1.13742.6.3.3.6.1.25", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Bits", + "class": "type", + "bits": { + "lowerCritical": 0, + "lowerWarning": 1, + "upperWarning": 2, + "upperCritical": 3 + } + }, + "maxaccess": "read-write", + "status": "current" + }, + "inletPoleSensorSignedMaximum": { + "name": "inletPoleSensorSignedMaximum", + "oid": "1.3.6.1.4.1.13742.6.3.3.6.1.26", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "inletPoleSensorSignedMinimum": { + "name": "inletPoleSensorSignedMinimum", + "oid": "1.3.6.1.4.1.13742.6.3.3.6.1.27", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "inletPoleSensorSignedLowerCriticalThreshold": { + "name": "inletPoleSensorSignedLowerCriticalThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.3.6.1.28", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "inletPoleSensorSignedLowerWarningThreshold": { + "name": "inletPoleSensorSignedLowerWarningThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.3.6.1.29", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "inletPoleSensorSignedUpperCriticalThreshold": { + "name": "inletPoleSensorSignedUpperCriticalThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.3.6.1.30", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "inletPoleSensorSignedUpperWarningThreshold": { + "name": "inletPoleSensorSignedUpperWarningThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.3.6.1.31", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "inletLinePairConfigurationTable": { + "name": "inletLinePairConfigurationTable", + "oid": "1.3.6.1.4.1.13742.6.3.3.7", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "current" + }, + "inletLinePairConfigurationEntry": { + "name": "inletLinePairConfigurationEntry", + "oid": "1.3.6.1.4.1.13742.6.3.3.7.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "pduId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "inletId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "inletLinePairIndex", + "implied": 0 + } + ], + "status": "current" + }, + "inletLinePairIndex": { + "name": "inletLinePairIndex", + "oid": "1.3.6.1.4.1.13742.6.3.3.7.1.1", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type", + "constraints": { + "range": [ + { + "min": 1, + "max": 256 + } + ] + } + }, + "maxaccess": "not-accessible", + "status": "current" + }, + "inletLinePairLeftLine": { + "name": "inletLinePairLeftLine", + "oid": "1.3.6.1.4.1.13742.6.3.3.7.1.2", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "LineEnumeration", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "inletLinePairRightLine": { + "name": "inletLinePairRightLine", + "oid": "1.3.6.1.4.1.13742.6.3.3.7.1.3", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "LineEnumeration", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "inletLinePairLeftNode": { + "name": "inletLinePairLeftNode", + "oid": "1.3.6.1.4.1.13742.6.3.3.7.1.4", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "inletLinePairRightNode": { + "name": "inletLinePairRightNode", + "oid": "1.3.6.1.4.1.13742.6.3.3.7.1.5", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "inletLinePairSensorConfigurationTable": { + "name": "inletLinePairSensorConfigurationTable", + "oid": "1.3.6.1.4.1.13742.6.3.3.8", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "current" + }, + "inletLinePairSensorConfigurationEntry": { + "name": "inletLinePairSensorConfigurationEntry", + "oid": "1.3.6.1.4.1.13742.6.3.3.8.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "pduId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "inletId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "inletLinePairIndex", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "sensorType", + "implied": 0 + } + ], + "status": "current" + }, + "inletLinePairSensorLogAvailable": { + "name": "inletLinePairSensorLogAvailable", + "oid": "1.3.6.1.4.1.13742.6.3.3.8.1.4", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "inletLinePairSensorUnits": { + "name": "inletLinePairSensorUnits", + "oid": "1.3.6.1.4.1.13742.6.3.3.8.1.6", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "SensorUnitsEnumeration", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "inletLinePairSensorDecimalDigits": { + "name": "inletLinePairSensorDecimalDigits", + "oid": "1.3.6.1.4.1.13742.6.3.3.8.1.7", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "inletLinePairSensorResolution": { + "name": "inletLinePairSensorResolution", + "oid": "1.3.6.1.4.1.13742.6.3.3.8.1.9", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "inletLinePairSensorMaximum": { + "name": "inletLinePairSensorMaximum", + "oid": "1.3.6.1.4.1.13742.6.3.3.8.1.11", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "inletLinePairSensorMinimum": { + "name": "inletLinePairSensorMinimum", + "oid": "1.3.6.1.4.1.13742.6.3.3.8.1.12", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "inletLinePairSensorHysteresis": { + "name": "inletLinePairSensorHysteresis", + "oid": "1.3.6.1.4.1.13742.6.3.3.8.1.13", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "inletLinePairSensorStateChangeDelay": { + "name": "inletLinePairSensorStateChangeDelay", + "oid": "1.3.6.1.4.1.13742.6.3.3.8.1.14", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type", + "constraints": { + "range": [ + { + "min": 0, + "max": 300 + } + ] + } + }, + "maxaccess": "read-write", + "status": "current" + }, + "inletLinePairSensorLowerCriticalThreshold": { + "name": "inletLinePairSensorLowerCriticalThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.3.8.1.21", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "inletLinePairSensorLowerWarningThreshold": { + "name": "inletLinePairSensorLowerWarningThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.3.8.1.22", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "inletLinePairSensorUpperCriticalThreshold": { + "name": "inletLinePairSensorUpperCriticalThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.3.8.1.23", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "inletLinePairSensorUpperWarningThreshold": { + "name": "inletLinePairSensorUpperWarningThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.3.8.1.24", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "inletLinePairSensorEnabledThresholds": { + "name": "inletLinePairSensorEnabledThresholds", + "oid": "1.3.6.1.4.1.13742.6.3.3.8.1.25", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Bits", + "class": "type", + "bits": { + "lowerCritical": 0, + "lowerWarning": 1, + "upperWarning": 2, + "upperCritical": 3 + } + }, + "maxaccess": "read-write", + "status": "current" + }, + "inletLinePairSensorSignedMaximum": { + "name": "inletLinePairSensorSignedMaximum", + "oid": "1.3.6.1.4.1.13742.6.3.3.8.1.26", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "inletLinePairSensorSignedMinimum": { + "name": "inletLinePairSensorSignedMinimum", + "oid": "1.3.6.1.4.1.13742.6.3.3.8.1.27", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "inletLinePairSensorSignedLowerCriticalThreshold": { + "name": "inletLinePairSensorSignedLowerCriticalThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.3.8.1.28", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "inletLinePairSensorSignedLowerWarningThreshold": { + "name": "inletLinePairSensorSignedLowerWarningThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.3.8.1.29", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "inletLinePairSensorSignedUpperCriticalThreshold": { + "name": "inletLinePairSensorSignedUpperCriticalThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.3.8.1.30", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "inletLinePairSensorSignedUpperWarningThreshold": { + "name": "inletLinePairSensorSignedUpperWarningThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.3.8.1.31", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "overCurrentProtectorConfigurationTable": { + "name": "overCurrentProtectorConfigurationTable", + "oid": "1.3.6.1.4.1.13742.6.3.4.3", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "current" + }, + "overCurrentProtectorConfigurationEntry": { + "name": "overCurrentProtectorConfigurationEntry", + "oid": "1.3.6.1.4.1.13742.6.3.4.3.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "pduId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "overCurrentProtectorIndex", + "implied": 0 + } + ], + "status": "current" + }, + "overCurrentProtectorIndex": { + "name": "overCurrentProtectorIndex", + "oid": "1.3.6.1.4.1.13742.6.3.4.3.1.1", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type", + "constraints": { + "range": [ + { + "min": 1, + "max": 256 + } + ] + } + }, + "maxaccess": "not-accessible", + "status": "current" + }, + "overCurrentProtectorLabel": { + "name": "overCurrentProtectorLabel", + "oid": "1.3.6.1.4.1.13742.6.3.4.3.1.2", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "overCurrentProtectorName": { + "name": "overCurrentProtectorName", + "oid": "1.3.6.1.4.1.13742.6.3.4.3.1.3", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "overCurrentProtectorType": { + "name": "overCurrentProtectorType", + "oid": "1.3.6.1.4.1.13742.6.3.4.3.1.4", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "OverCurrentProtectorTypeEnumeration", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "overCurrentProtectorRatedCurrent": { + "name": "overCurrentProtectorRatedCurrent", + "oid": "1.3.6.1.4.1.13742.6.3.4.3.1.5", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "overCurrentProtectorPoleCount": { + "name": "overCurrentProtectorPoleCount", + "oid": "1.3.6.1.4.1.13742.6.3.4.3.1.6", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type", + "constraints": { + "range": [ + { + "min": 1, + "max": 3 + } + ] + } + }, + "maxaccess": "read-only", + "status": "current" + }, + "overCurrentProtectorCapabilities": { + "name": "overCurrentProtectorCapabilities", + "oid": "1.3.6.1.4.1.13742.6.3.4.3.1.9", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Bits", + "class": "type", + "bits": { + "rmsCurrent": 0, + "peakCurrent": 1, + "trip": 14, + "residualCurrent": 25, + "rcmState": 26, + "residualDcCurrent": 35, + "residualAcCurrent": 54 + } + }, + "maxaccess": "read-only", + "status": "current" + }, + "overCurrentProtectorPowerSource": { + "name": "overCurrentProtectorPowerSource", + "oid": "1.3.6.1.4.1.13742.6.3.4.3.1.10", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "RowPointer", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "overCurrentProtectorPoleConfigurationTable": { + "name": "overCurrentProtectorPoleConfigurationTable", + "oid": "1.3.6.1.4.1.13742.6.3.4.5", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "current" + }, + "overCurrentProtectorPoleConfigurationEntry": { + "name": "overCurrentProtectorPoleConfigurationEntry", + "oid": "1.3.6.1.4.1.13742.6.3.4.5.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "pduId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "overCurrentProtectorIndex", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "overCurrentProtectorPoleIndex", + "implied": 0 + } + ], + "status": "current" + }, + "overCurrentProtectorPoleIndex": { + "name": "overCurrentProtectorPoleIndex", + "oid": "1.3.6.1.4.1.13742.6.3.4.5.1.1", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type", + "constraints": { + "range": [ + { + "min": 1, + "max": 256 + } + ] + } + }, + "maxaccess": "not-accessible", + "status": "current" + }, + "overCurrentProtectorPoleLine": { + "name": "overCurrentProtectorPoleLine", + "oid": "1.3.6.1.4.1.13742.6.3.4.5.1.2", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "LineEnumeration", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "overCurrentProtectorPoleInNode": { + "name": "overCurrentProtectorPoleInNode", + "oid": "1.3.6.1.4.1.13742.6.3.4.5.1.3", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "overCurrentProtectorPoleOutNode": { + "name": "overCurrentProtectorPoleOutNode", + "oid": "1.3.6.1.4.1.13742.6.3.4.5.1.4", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "overCurrentProtectorSensorConfigurationTable": { + "name": "overCurrentProtectorSensorConfigurationTable", + "oid": "1.3.6.1.4.1.13742.6.3.4.4", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "current" + }, + "overCurrentProtectorSensorConfigurationEntry": { + "name": "overCurrentProtectorSensorConfigurationEntry", + "oid": "1.3.6.1.4.1.13742.6.3.4.4.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "pduId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "overCurrentProtectorIndex", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "sensorType", + "implied": 0 + } + ], + "status": "current" + }, + "overCurrentProtectorSensorLogAvailable": { + "name": "overCurrentProtectorSensorLogAvailable", + "oid": "1.3.6.1.4.1.13742.6.3.4.4.1.4", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "overCurrentProtectorSensorUnits": { + "name": "overCurrentProtectorSensorUnits", + "oid": "1.3.6.1.4.1.13742.6.3.4.4.1.6", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "SensorUnitsEnumeration", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "overCurrentProtectorSensorDecimalDigits": { + "name": "overCurrentProtectorSensorDecimalDigits", + "oid": "1.3.6.1.4.1.13742.6.3.4.4.1.7", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "overCurrentProtectorSensorAccuracy": { + "name": "overCurrentProtectorSensorAccuracy", + "oid": "1.3.6.1.4.1.13742.6.3.4.4.1.8", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "HundredthsOfAPercentage", + "class": "type" + }, + "maxaccess": "read-only", + "status": "deprecated" + }, + "overCurrentProtectorSensorResolution": { + "name": "overCurrentProtectorSensorResolution", + "oid": "1.3.6.1.4.1.13742.6.3.4.4.1.9", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "overCurrentProtectorSensorTolerance": { + "name": "overCurrentProtectorSensorTolerance", + "oid": "1.3.6.1.4.1.13742.6.3.4.4.1.10", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "deprecated" + }, + "overCurrentProtectorSensorMaximum": { + "name": "overCurrentProtectorSensorMaximum", + "oid": "1.3.6.1.4.1.13742.6.3.4.4.1.11", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "overCurrentProtectorSensorMinimum": { + "name": "overCurrentProtectorSensorMinimum", + "oid": "1.3.6.1.4.1.13742.6.3.4.4.1.12", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "overCurrentProtectorSensorHysteresis": { + "name": "overCurrentProtectorSensorHysteresis", + "oid": "1.3.6.1.4.1.13742.6.3.4.4.1.13", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "overCurrentProtectorSensorStateChangeDelay": { + "name": "overCurrentProtectorSensorStateChangeDelay", + "oid": "1.3.6.1.4.1.13742.6.3.4.4.1.14", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type", + "constraints": { + "range": [ + { + "min": 0, + "max": 300 + } + ] + } + }, + "maxaccess": "read-write", + "status": "current" + }, + "overCurrentProtectorSensorLowerCriticalThreshold": { + "name": "overCurrentProtectorSensorLowerCriticalThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.4.4.1.21", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "overCurrentProtectorSensorLowerWarningThreshold": { + "name": "overCurrentProtectorSensorLowerWarningThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.4.4.1.22", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "overCurrentProtectorSensorUpperCriticalThreshold": { + "name": "overCurrentProtectorSensorUpperCriticalThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.4.4.1.23", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "overCurrentProtectorSensorUpperWarningThreshold": { + "name": "overCurrentProtectorSensorUpperWarningThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.4.4.1.24", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "overCurrentProtectorSensorEnabledThresholds": { + "name": "overCurrentProtectorSensorEnabledThresholds", + "oid": "1.3.6.1.4.1.13742.6.3.4.4.1.25", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Bits", + "class": "type", + "bits": { + "lowerCritical": 0, + "lowerWarning": 1, + "upperWarning": 2, + "upperCritical": 3 + } + }, + "maxaccess": "read-write", + "status": "current" + }, + "overCurrentProtectorSensorSignedMaximum": { + "name": "overCurrentProtectorSensorSignedMaximum", + "oid": "1.3.6.1.4.1.13742.6.3.4.4.1.26", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "overCurrentProtectorSensorSignedMinimum": { + "name": "overCurrentProtectorSensorSignedMinimum", + "oid": "1.3.6.1.4.1.13742.6.3.4.4.1.27", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "overCurrentProtectorSensorSignedLowerCriticalThreshold": { + "name": "overCurrentProtectorSensorSignedLowerCriticalThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.4.4.1.28", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "overCurrentProtectorSensorSignedLowerWarningThreshold": { + "name": "overCurrentProtectorSensorSignedLowerWarningThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.4.4.1.29", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "overCurrentProtectorSensorSignedUpperCriticalThreshold": { + "name": "overCurrentProtectorSensorSignedUpperCriticalThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.4.4.1.30", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "overCurrentProtectorSensorSignedUpperWarningThreshold": { + "name": "overCurrentProtectorSensorSignedUpperWarningThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.4.4.1.31", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "outletConfigurationTable": { + "name": "outletConfigurationTable", + "oid": "1.3.6.1.4.1.13742.6.3.5.3", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "current" + }, + "outletConfigurationEntry": { + "name": "outletConfigurationEntry", + "oid": "1.3.6.1.4.1.13742.6.3.5.3.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "pduId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "outletId", + "implied": 0 + } + ], + "status": "current" + }, + "outletId": { + "name": "outletId", + "oid": "1.3.6.1.4.1.13742.6.3.5.3.1.1", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type", + "constraints": { + "range": [ + { + "min": 1, + "max": 256 + } + ] + } + }, + "maxaccess": "not-accessible", + "status": "current" + }, + "outletLabel": { + "name": "outletLabel", + "oid": "1.3.6.1.4.1.13742.6.3.5.3.1.2", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "outletName": { + "name": "outletName", + "oid": "1.3.6.1.4.1.13742.6.3.5.3.1.3", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "outletReceptacle": { + "name": "outletReceptacle", + "oid": "1.3.6.1.4.1.13742.6.3.5.3.1.4", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "ReceptacleTypeEnumeration", + "class": "type" + }, + "maxaccess": "read-only", + "status": "deprecated" + }, + "outletPoleCount": { + "name": "outletPoleCount", + "oid": "1.3.6.1.4.1.13742.6.3.5.3.1.5", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type", + "constraints": { + "range": [ + { + "min": 2, + "max": 4 + } + ] + } + }, + "maxaccess": "read-only", + "status": "current" + }, + "outletRatedVoltage": { + "name": "outletRatedVoltage", + "oid": "1.3.6.1.4.1.13742.6.3.5.3.1.6", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "outletRatedCurrent": { + "name": "outletRatedCurrent", + "oid": "1.3.6.1.4.1.13742.6.3.5.3.1.7", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "outletRatedVA": { + "name": "outletRatedVA", + "oid": "1.3.6.1.4.1.13742.6.3.5.3.1.8", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "outletDeviceCapabilities": { + "name": "outletDeviceCapabilities", + "oid": "1.3.6.1.4.1.13742.6.3.5.3.1.10", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Bits", + "class": "type", + "bits": { + "rmsCurrent": 0, + "peakCurrent": 1, + "unbalancedCurrent": 2, + "rmsVoltage": 3, + "activePower": 4, + "apparentPower": 5, + "powerFactor": 6, + "activeEnergy": 7, + "apparentEnergy": 8, + "onOff": 13, + "frequency": 22, + "phaseAngle": 23, + "reactivePower": 28, + "displacementPowerFactor": 34, + "crestFactor": 50, + "voltageThd": 56, + "currentThd": 57, + "inrushCurrent": 58 + } + }, + "maxaccess": "read-only", + "status": "current" + }, + "outletPoleCapabilities": { + "name": "outletPoleCapabilities", + "oid": "1.3.6.1.4.1.13742.6.3.5.3.1.11", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Bits", + "class": "type", + "bits": { + "rmsCurrent": 0, + "peakCurrent": 1, + "rmsVoltage": 3, + "activePower": 4, + "apparentPower": 5, + "powerFactor": 6, + "activeEnergy": 7, + "apparentEnergy": 8, + "phaseAngle": 23, + "rmsVoltageLN": 24, + "reactivePower": 28, + "displacementPowerFactor": 34, + "crestFactor": 50, + "voltageThd": 56, + "currentThd": 57 + } + }, + "maxaccess": "read-only", + "status": "current" + }, + "outletPowerCyclingPowerOffPeriod": { + "name": "outletPowerCyclingPowerOffPeriod", + "oid": "1.3.6.1.4.1.13742.6.3.5.3.1.12", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type", + "constraints": { + "range": [ + { + "min": 1, + "max": 3600 + } + ] + } + }, + "maxaccess": "read-write", + "status": "current" + }, + "outletStateOnStartup": { + "name": "outletStateOnStartup", + "oid": "1.3.6.1.4.1.13742.6.3.5.3.1.13", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "OutletStateOnStartupEnumeration", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "outletUseGlobalPowerCyclingPowerOffPeriod": { + "name": "outletUseGlobalPowerCyclingPowerOffPeriod", + "oid": "1.3.6.1.4.1.13742.6.3.5.3.1.14", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "outletSwitchable": { + "name": "outletSwitchable", + "oid": "1.3.6.1.4.1.13742.6.3.5.3.1.28", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "outletReceptacleDescriptor": { + "name": "outletReceptacleDescriptor", + "oid": "1.3.6.1.4.1.13742.6.3.5.3.1.29", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "outletNonCritical": { + "name": "outletNonCritical", + "oid": "1.3.6.1.4.1.13742.6.3.5.3.1.30", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "outletSequenceDelay": { + "name": "outletSequenceDelay", + "oid": "1.3.6.1.4.1.13742.6.3.5.3.1.32", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type", + "constraints": { + "range": [ + { + "min": 0, + "max": 3600 + } + ] + } + }, + "maxaccess": "read-write", + "status": "current" + }, + "outletPowerSource": { + "name": "outletPowerSource", + "oid": "1.3.6.1.4.1.13742.6.3.5.3.1.33", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "RowPointer", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "outletPoleConfigurationTable": { + "name": "outletPoleConfigurationTable", + "oid": "1.3.6.1.4.1.13742.6.3.5.5", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "current" + }, + "outletPoleConfigurationEntry": { + "name": "outletPoleConfigurationEntry", + "oid": "1.3.6.1.4.1.13742.6.3.5.5.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "pduId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "outletId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "outletPoleIndex", + "implied": 0 + } + ], + "status": "current" + }, + "outletPoleLine": { + "name": "outletPoleLine", + "oid": "1.3.6.1.4.1.13742.6.3.5.5.1.1", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "LineEnumeration", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "outletPoleNode": { + "name": "outletPoleNode", + "oid": "1.3.6.1.4.1.13742.6.3.5.5.1.2", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "outletSensorConfigurationTable": { + "name": "outletSensorConfigurationTable", + "oid": "1.3.6.1.4.1.13742.6.3.5.4", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "current" + }, + "outletSensorConfigurationEntry": { + "name": "outletSensorConfigurationEntry", + "oid": "1.3.6.1.4.1.13742.6.3.5.4.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "pduId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "outletId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "sensorType", + "implied": 0 + } + ], + "status": "current" + }, + "outletSensorLogAvailable": { + "name": "outletSensorLogAvailable", + "oid": "1.3.6.1.4.1.13742.6.3.5.4.1.4", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "outletSensorUnits": { + "name": "outletSensorUnits", + "oid": "1.3.6.1.4.1.13742.6.3.5.4.1.6", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "SensorUnitsEnumeration", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "outletSensorDecimalDigits": { + "name": "outletSensorDecimalDigits", + "oid": "1.3.6.1.4.1.13742.6.3.5.4.1.7", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "outletSensorAccuracy": { + "name": "outletSensorAccuracy", + "oid": "1.3.6.1.4.1.13742.6.3.5.4.1.8", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "HundredthsOfAPercentage", + "class": "type" + }, + "maxaccess": "read-only", + "status": "deprecated" + }, + "outletSensorResolution": { + "name": "outletSensorResolution", + "oid": "1.3.6.1.4.1.13742.6.3.5.4.1.9", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "outletSensorTolerance": { + "name": "outletSensorTolerance", + "oid": "1.3.6.1.4.1.13742.6.3.5.4.1.10", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "deprecated" + }, + "outletSensorMaximum": { + "name": "outletSensorMaximum", + "oid": "1.3.6.1.4.1.13742.6.3.5.4.1.11", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "outletSensorMinimum": { + "name": "outletSensorMinimum", + "oid": "1.3.6.1.4.1.13742.6.3.5.4.1.12", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "outletSensorHysteresis": { + "name": "outletSensorHysteresis", + "oid": "1.3.6.1.4.1.13742.6.3.5.4.1.13", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "outletSensorStateChangeDelay": { + "name": "outletSensorStateChangeDelay", + "oid": "1.3.6.1.4.1.13742.6.3.5.4.1.14", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type", + "constraints": { + "range": [ + { + "min": 0, + "max": 300 + } + ] + } + }, + "maxaccess": "read-write", + "status": "current" + }, + "outletSensorLowerCriticalThreshold": { + "name": "outletSensorLowerCriticalThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.5.4.1.21", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "outletSensorLowerWarningThreshold": { + "name": "outletSensorLowerWarningThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.5.4.1.22", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "outletSensorUpperCriticalThreshold": { + "name": "outletSensorUpperCriticalThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.5.4.1.23", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "outletSensorUpperWarningThreshold": { + "name": "outletSensorUpperWarningThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.5.4.1.24", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "outletSensorEnabledThresholds": { + "name": "outletSensorEnabledThresholds", + "oid": "1.3.6.1.4.1.13742.6.3.5.4.1.25", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Bits", + "class": "type", + "bits": { + "lowerCritical": 0, + "lowerWarning": 1, + "upperWarning": 2, + "upperCritical": 3 + } + }, + "maxaccess": "read-write", + "status": "current" + }, + "outletSensorSignedMaximum": { + "name": "outletSensorSignedMaximum", + "oid": "1.3.6.1.4.1.13742.6.3.5.4.1.26", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "outletSensorSignedMinimum": { + "name": "outletSensorSignedMinimum", + "oid": "1.3.6.1.4.1.13742.6.3.5.4.1.27", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "outletSensorSignedLowerCriticalThreshold": { + "name": "outletSensorSignedLowerCriticalThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.5.4.1.28", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "outletSensorSignedLowerWarningThreshold": { + "name": "outletSensorSignedLowerWarningThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.5.4.1.29", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "outletSensorSignedUpperCriticalThreshold": { + "name": "outletSensorSignedUpperCriticalThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.5.4.1.30", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "outletSensorSignedUpperWarningThreshold": { + "name": "outletSensorSignedUpperWarningThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.5.4.1.31", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "outletPoleSensorConfigurationTable": { + "name": "outletPoleSensorConfigurationTable", + "oid": "1.3.6.1.4.1.13742.6.3.5.6", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "current" + }, + "outletPoleSensorConfigurationEntry": { + "name": "outletPoleSensorConfigurationEntry", + "oid": "1.3.6.1.4.1.13742.6.3.5.6.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "pduId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "outletId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "outletPoleIndex", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "sensorType", + "implied": 0 + } + ], + "status": "current" + }, + "outletPoleIndex": { + "name": "outletPoleIndex", + "oid": "1.3.6.1.4.1.13742.6.3.5.6.1.1", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type", + "constraints": { + "range": [ + { + "min": 1, + "max": 256 + } + ] + } + }, + "maxaccess": "not-accessible", + "status": "current" + }, + "outletPoleSensorLogAvailable": { + "name": "outletPoleSensorLogAvailable", + "oid": "1.3.6.1.4.1.13742.6.3.5.6.1.4", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "outletPoleSensorUnits": { + "name": "outletPoleSensorUnits", + "oid": "1.3.6.1.4.1.13742.6.3.5.6.1.6", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "SensorUnitsEnumeration", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "outletPoleSensorDecimalDigits": { + "name": "outletPoleSensorDecimalDigits", + "oid": "1.3.6.1.4.1.13742.6.3.5.6.1.7", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "outletPoleSensorAccuracy": { + "name": "outletPoleSensorAccuracy", + "oid": "1.3.6.1.4.1.13742.6.3.5.6.1.8", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "HundredthsOfAPercentage", + "class": "type" + }, + "maxaccess": "read-only", + "status": "deprecated" + }, + "outletPoleSensorResolution": { + "name": "outletPoleSensorResolution", + "oid": "1.3.6.1.4.1.13742.6.3.5.6.1.9", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "outletPoleSensorTolerance": { + "name": "outletPoleSensorTolerance", + "oid": "1.3.6.1.4.1.13742.6.3.5.6.1.10", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "deprecated" + }, + "outletPoleSensorMaximum": { + "name": "outletPoleSensorMaximum", + "oid": "1.3.6.1.4.1.13742.6.3.5.6.1.11", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "outletPoleSensorMinimum": { + "name": "outletPoleSensorMinimum", + "oid": "1.3.6.1.4.1.13742.6.3.5.6.1.12", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "outletPoleSensorHysteresis": { + "name": "outletPoleSensorHysteresis", + "oid": "1.3.6.1.4.1.13742.6.3.5.6.1.13", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "outletPoleSensorStateChangeDelay": { + "name": "outletPoleSensorStateChangeDelay", + "oid": "1.3.6.1.4.1.13742.6.3.5.6.1.14", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type", + "constraints": { + "range": [ + { + "min": 0, + "max": 300 + } + ] + } + }, + "maxaccess": "read-write", + "status": "current" + }, + "outletPoleSensorLowerCriticalThreshold": { + "name": "outletPoleSensorLowerCriticalThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.5.6.1.21", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "outletPoleSensorLowerWarningThreshold": { + "name": "outletPoleSensorLowerWarningThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.5.6.1.22", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "outletPoleSensorUpperCriticalThreshold": { + "name": "outletPoleSensorUpperCriticalThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.5.6.1.23", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "outletPoleSensorUpperWarningThreshold": { + "name": "outletPoleSensorUpperWarningThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.5.6.1.24", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "outletPoleSensorEnabledThresholds": { + "name": "outletPoleSensorEnabledThresholds", + "oid": "1.3.6.1.4.1.13742.6.3.5.6.1.25", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Bits", + "class": "type", + "bits": { + "lowerCritical": 0, + "lowerWarning": 1, + "upperWarning": 2, + "upperCritical": 3 + } + }, + "maxaccess": "read-write", + "status": "current" + }, + "outletPoleSensorSignedMaximum": { + "name": "outletPoleSensorSignedMaximum", + "oid": "1.3.6.1.4.1.13742.6.3.5.6.1.26", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "outletPoleSensorSignedMinimum": { + "name": "outletPoleSensorSignedMinimum", + "oid": "1.3.6.1.4.1.13742.6.3.5.6.1.27", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "outletPoleSensorSignedLowerCriticalThreshold": { + "name": "outletPoleSensorSignedLowerCriticalThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.5.6.1.28", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "outletPoleSensorSignedLowerWarningThreshold": { + "name": "outletPoleSensorSignedLowerWarningThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.5.6.1.29", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "outletPoleSensorSignedUpperCriticalThreshold": { + "name": "outletPoleSensorSignedUpperCriticalThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.5.6.1.30", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "outletPoleSensorSignedUpperWarningThreshold": { + "name": "outletPoleSensorSignedUpperWarningThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.5.6.1.31", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "externalSensorConfigurationTable": { + "name": "externalSensorConfigurationTable", + "oid": "1.3.6.1.4.1.13742.6.3.6.3", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "current" + }, + "externalSensorConfigurationEntry": { + "name": "externalSensorConfigurationEntry", + "oid": "1.3.6.1.4.1.13742.6.3.6.3.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "pduId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "sensorID", + "implied": 0 + } + ], + "status": "current" + }, + "sensorID": { + "name": "sensorID", + "oid": "1.3.6.1.4.1.13742.6.3.6.3.1.1", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type", + "constraints": { + "range": [ + { + "min": 1, + "max": 256 + } + ] + } + }, + "maxaccess": "not-accessible", + "status": "current" + }, + "externalSensorType": { + "name": "externalSensorType", + "oid": "1.3.6.1.4.1.13742.6.3.6.3.1.2", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "SensorTypeEnumeration", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "externalSensorSerialNumber": { + "name": "externalSensorSerialNumber", + "oid": "1.3.6.1.4.1.13742.6.3.6.3.1.3", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "externalSensorName": { + "name": "externalSensorName", + "oid": "1.3.6.1.4.1.13742.6.3.6.3.1.4", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "externalSensorDescription": { + "name": "externalSensorDescription", + "oid": "1.3.6.1.4.1.13742.6.3.6.3.1.5", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "externalSensorXCoordinate": { + "name": "externalSensorXCoordinate", + "oid": "1.3.6.1.4.1.13742.6.3.6.3.1.6", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "externalSensorYCoordinate": { + "name": "externalSensorYCoordinate", + "oid": "1.3.6.1.4.1.13742.6.3.6.3.1.7", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "externalSensorZCoordinate": { + "name": "externalSensorZCoordinate", + "oid": "1.3.6.1.4.1.13742.6.3.6.3.1.8", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "externalSensorChannelNumber": { + "name": "externalSensorChannelNumber", + "oid": "1.3.6.1.4.1.13742.6.3.6.3.1.9", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "externalOnOffSensorSubtype": { + "name": "externalOnOffSensorSubtype", + "oid": "1.3.6.1.4.1.13742.6.3.6.3.1.10", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "SensorTypeEnumeration", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "externalSensorLogAvailable": { + "name": "externalSensorLogAvailable", + "oid": "1.3.6.1.4.1.13742.6.3.6.3.1.14", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "externalSensorUnits": { + "name": "externalSensorUnits", + "oid": "1.3.6.1.4.1.13742.6.3.6.3.1.16", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "SensorUnitsEnumeration", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "externalSensorDecimalDigits": { + "name": "externalSensorDecimalDigits", + "oid": "1.3.6.1.4.1.13742.6.3.6.3.1.17", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "externalSensorAccuracy": { + "name": "externalSensorAccuracy", + "oid": "1.3.6.1.4.1.13742.6.3.6.3.1.18", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "HundredthsOfAPercentage", + "class": "type" + }, + "maxaccess": "read-only", + "status": "deprecated" + }, + "externalSensorResolution": { + "name": "externalSensorResolution", + "oid": "1.3.6.1.4.1.13742.6.3.6.3.1.19", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "externalSensorTolerance": { + "name": "externalSensorTolerance", + "oid": "1.3.6.1.4.1.13742.6.3.6.3.1.20", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "deprecated" + }, + "externalSensorMaximum": { + "name": "externalSensorMaximum", + "oid": "1.3.6.1.4.1.13742.6.3.6.3.1.21", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "externalSensorMinimum": { + "name": "externalSensorMinimum", + "oid": "1.3.6.1.4.1.13742.6.3.6.3.1.22", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "externalSensorHysteresis": { + "name": "externalSensorHysteresis", + "oid": "1.3.6.1.4.1.13742.6.3.6.3.1.23", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "externalSensorStateChangeDelay": { + "name": "externalSensorStateChangeDelay", + "oid": "1.3.6.1.4.1.13742.6.3.6.3.1.24", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type", + "constraints": { + "range": [ + { + "min": 0, + "max": 300 + } + ] + } + }, + "maxaccess": "read-write", + "status": "current" + }, + "externalSensorLowerCriticalThreshold": { + "name": "externalSensorLowerCriticalThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.6.3.1.31", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "externalSensorLowerWarningThreshold": { + "name": "externalSensorLowerWarningThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.6.3.1.32", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "externalSensorUpperCriticalThreshold": { + "name": "externalSensorUpperCriticalThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.6.3.1.33", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "externalSensorUpperWarningThreshold": { + "name": "externalSensorUpperWarningThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.6.3.1.34", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "externalSensorEnabledThresholds": { + "name": "externalSensorEnabledThresholds", + "oid": "1.3.6.1.4.1.13742.6.3.6.3.1.35", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Bits", + "class": "type", + "bits": { + "lowerCritical": 0, + "lowerWarning": 1, + "upperWarning": 2, + "upperCritical": 3 + } + }, + "maxaccess": "read-write", + "status": "current" + }, + "externalSensorIsActuator": { + "name": "externalSensorIsActuator", + "oid": "1.3.6.1.4.1.13742.6.3.6.3.1.36", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "externalSensorPosition": { + "name": "externalSensorPosition", + "oid": "1.3.6.1.4.1.13742.6.3.6.3.1.37", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "externalSensorUseDefaultThresholds": { + "name": "externalSensorUseDefaultThresholds", + "oid": "1.3.6.1.4.1.13742.6.3.6.3.1.38", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "externalSensorAlarmedToNormalDelay": { + "name": "externalSensorAlarmedToNormalDelay", + "oid": "1.3.6.1.4.1.13742.6.3.6.3.1.39", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type", + "constraints": { + "range": [ + { + "min": 0, + "max": 300 + } + ] + } + }, + "maxaccess": "read-write", + "status": "current" + }, + "externalSensorTypeDefaultThresholdsTable": { + "name": "externalSensorTypeDefaultThresholdsTable", + "oid": "1.3.6.1.4.1.13742.6.3.6.4", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "current" + }, + "externalSensorTypeDefaultThresholdsEntry": { + "name": "externalSensorTypeDefaultThresholdsEntry", + "oid": "1.3.6.1.4.1.13742.6.3.6.4.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "pduId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "sensorType", + "implied": 0 + } + ], + "status": "current" + }, + "externalSensorTypeDefaultHysteresis": { + "name": "externalSensorTypeDefaultHysteresis", + "oid": "1.3.6.1.4.1.13742.6.3.6.4.1.3", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "externalSensorTypeDefaultStateChangeDelay": { + "name": "externalSensorTypeDefaultStateChangeDelay", + "oid": "1.3.6.1.4.1.13742.6.3.6.4.1.4", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type", + "constraints": { + "range": [ + { + "min": 0, + "max": 300 + } + ] + } + }, + "maxaccess": "read-write", + "status": "current" + }, + "externalSensorTypeDefaultLowerCriticalThreshold": { + "name": "externalSensorTypeDefaultLowerCriticalThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.6.4.1.5", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "externalSensorTypeDefaultLowerWarningThreshold": { + "name": "externalSensorTypeDefaultLowerWarningThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.6.4.1.6", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "externalSensorTypeDefaultUpperCriticalThreshold": { + "name": "externalSensorTypeDefaultUpperCriticalThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.6.4.1.7", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "externalSensorTypeDefaultUpperWarningThreshold": { + "name": "externalSensorTypeDefaultUpperWarningThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.6.4.1.8", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "externalSensorTypeDefaultEnabledThresholds": { + "name": "externalSensorTypeDefaultEnabledThresholds", + "oid": "1.3.6.1.4.1.13742.6.3.6.4.1.9", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Bits", + "class": "type", + "bits": { + "lowerCritical": 0, + "lowerWarning": 1, + "upperWarning": 2, + "upperCritical": 3 + } + }, + "maxaccess": "read-write", + "status": "current" + }, + "externalSensorTypeDefaultUnit": { + "name": "externalSensorTypeDefaultUnit", + "oid": "1.3.6.1.4.1.13742.6.3.6.4.1.10", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "SensorUnitsEnumeration", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "externalSensorTypeDefaultDecimalDigits": { + "name": "externalSensorTypeDefaultDecimalDigits", + "oid": "1.3.6.1.4.1.13742.6.3.6.4.1.11", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "externalSensorTypeDefaultMaximum": { + "name": "externalSensorTypeDefaultMaximum", + "oid": "1.3.6.1.4.1.13742.6.3.6.4.1.12", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "externalSensorTypeDefaultMinimum": { + "name": "externalSensorTypeDefaultMinimum", + "oid": "1.3.6.1.4.1.13742.6.3.6.4.1.13", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "serverReachabilityTable": { + "name": "serverReachabilityTable", + "oid": "1.3.6.1.4.1.13742.6.3.7.3", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "current" + }, + "serverReachabilityEntry": { + "name": "serverReachabilityEntry", + "oid": "1.3.6.1.4.1.13742.6.3.7.3.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "pduId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "serverID", + "implied": 0 + } + ], + "status": "current" + }, + "serverID": { + "name": "serverID", + "oid": "1.3.6.1.4.1.13742.6.3.7.3.1.1", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type", + "constraints": { + "range": [ + { + "min": 1, + "max": 256 + } + ] + } + }, + "maxaccess": "not-accessible", + "status": "current" + }, + "serverIPAddress": { + "name": "serverIPAddress", + "oid": "1.3.6.1.4.1.13742.6.3.7.3.1.3", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "serverPingEnabled": { + "name": "serverPingEnabled", + "oid": "1.3.6.1.4.1.13742.6.3.7.3.1.4", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "wireConfigurationTable": { + "name": "wireConfigurationTable", + "oid": "1.3.6.1.4.1.13742.6.3.8.3", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "obsolete" + }, + "wireConfigurationEntry": { + "name": "wireConfigurationEntry", + "oid": "1.3.6.1.4.1.13742.6.3.8.3.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "pduId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "wireId", + "implied": 0 + } + ], + "status": "obsolete" + }, + "wireId": { + "name": "wireId", + "oid": "1.3.6.1.4.1.13742.6.3.8.3.1.1", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type", + "constraints": { + "range": [ + { + "min": 1, + "max": 256 + } + ] + } + }, + "maxaccess": "not-accessible", + "status": "obsolete" + }, + "wireLabel": { + "name": "wireLabel", + "oid": "1.3.6.1.4.1.13742.6.3.8.3.1.2", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "read-only", + "status": "obsolete" + }, + "wireCapabilities": { + "name": "wireCapabilities", + "oid": "1.3.6.1.4.1.13742.6.3.8.3.1.3", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Bits", + "class": "type", + "bits": { + "rmsCurrent": 0, + "peakCurrent": 1, + "unbalancedCurrent": 2, + "rmsVoltage": 3, + "activePower": 4, + "apparentPower": 5, + "powerFactor": 6, + "activeEnergy": 7, + "apparentEnergy": 8 + } + }, + "maxaccess": "read-only", + "status": "obsolete" + }, + "wirePowerSource": { + "name": "wirePowerSource", + "oid": "1.3.6.1.4.1.13742.6.3.8.3.1.4", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "RowPointer", + "class": "type" + }, + "maxaccess": "read-only", + "status": "obsolete" + }, + "wireSensorConfigurationTable": { + "name": "wireSensorConfigurationTable", + "oid": "1.3.6.1.4.1.13742.6.3.8.4", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "obsolete" + }, + "wireSensorConfigurationEntry": { + "name": "wireSensorConfigurationEntry", + "oid": "1.3.6.1.4.1.13742.6.3.8.4.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "pduId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "wireId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "sensorType", + "implied": 0 + } + ], + "status": "obsolete" + }, + "wireSensorLogAvailable": { + "name": "wireSensorLogAvailable", + "oid": "1.3.6.1.4.1.13742.6.3.8.4.1.4", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-write", + "status": "obsolete" + }, + "wireSensorUnits": { + "name": "wireSensorUnits", + "oid": "1.3.6.1.4.1.13742.6.3.8.4.1.6", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "SensorUnitsEnumeration", + "class": "type" + }, + "maxaccess": "read-only", + "status": "obsolete" + }, + "wireSensorDecimalDigits": { + "name": "wireSensorDecimalDigits", + "oid": "1.3.6.1.4.1.13742.6.3.8.4.1.7", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "obsolete" + }, + "wireSensorAccuracy": { + "name": "wireSensorAccuracy", + "oid": "1.3.6.1.4.1.13742.6.3.8.4.1.8", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "HundredthsOfAPercentage", + "class": "type" + }, + "maxaccess": "read-only", + "status": "obsolete" + }, + "wireSensorResolution": { + "name": "wireSensorResolution", + "oid": "1.3.6.1.4.1.13742.6.3.8.4.1.9", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "obsolete" + }, + "wireSensorTolerance": { + "name": "wireSensorTolerance", + "oid": "1.3.6.1.4.1.13742.6.3.8.4.1.10", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "obsolete" + }, + "wireSensorMaximum": { + "name": "wireSensorMaximum", + "oid": "1.3.6.1.4.1.13742.6.3.8.4.1.11", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "obsolete" + }, + "wireSensorMinimum": { + "name": "wireSensorMinimum", + "oid": "1.3.6.1.4.1.13742.6.3.8.4.1.12", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "obsolete" + }, + "wireSensorHysteresis": { + "name": "wireSensorHysteresis", + "oid": "1.3.6.1.4.1.13742.6.3.8.4.1.13", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "obsolete" + }, + "wireSensorStateChangeDelay": { + "name": "wireSensorStateChangeDelay", + "oid": "1.3.6.1.4.1.13742.6.3.8.4.1.14", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type", + "constraints": { + "range": [ + { + "min": 0, + "max": 300 + } + ] + } + }, + "maxaccess": "read-write", + "status": "obsolete" + }, + "wireSensorLowerCriticalThreshold": { + "name": "wireSensorLowerCriticalThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.8.4.1.21", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "obsolete" + }, + "wireSensorLowerWarningThreshold": { + "name": "wireSensorLowerWarningThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.8.4.1.22", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "obsolete" + }, + "wireSensorUpperCriticalThreshold": { + "name": "wireSensorUpperCriticalThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.8.4.1.23", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "obsolete" + }, + "wireSensorUpperWarningThreshold": { + "name": "wireSensorUpperWarningThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.8.4.1.24", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "obsolete" + }, + "wireSensorEnabledThresholds": { + "name": "wireSensorEnabledThresholds", + "oid": "1.3.6.1.4.1.13742.6.3.8.4.1.25", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Bits", + "class": "type", + "bits": { + "lowerCritical": 0, + "lowerWarning": 1, + "upperWarning": 2, + "upperCritical": 3 + } + }, + "maxaccess": "read-write", + "status": "obsolete" + }, + "transferSwitchConfigurationTable": { + "name": "transferSwitchConfigurationTable", + "oid": "1.3.6.1.4.1.13742.6.3.9.3", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "current" + }, + "transferSwitchConfigurationEntry": { + "name": "transferSwitchConfigurationEntry", + "oid": "1.3.6.1.4.1.13742.6.3.9.3.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "pduId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "transferSwitchId", + "implied": 0 + } + ], + "status": "current" + }, + "transferSwitchId": { + "name": "transferSwitchId", + "oid": "1.3.6.1.4.1.13742.6.3.9.3.1.1", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type", + "constraints": { + "range": [ + { + "min": 1, + "max": 256 + } + ] + } + }, + "maxaccess": "not-accessible", + "status": "current" + }, + "transferSwitchLabel": { + "name": "transferSwitchLabel", + "oid": "1.3.6.1.4.1.13742.6.3.9.3.1.2", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "transferSwitchName": { + "name": "transferSwitchName", + "oid": "1.3.6.1.4.1.13742.6.3.9.3.1.3", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "transferSwitchPreferredInlet": { + "name": "transferSwitchPreferredInlet", + "oid": "1.3.6.1.4.1.13742.6.3.9.3.1.4", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type", + "constraints": { + "range": [ + { + "min": 1, + "max": 64 + } + ] + } + }, + "maxaccess": "read-only", + "status": "current" + }, + "transferSwitchPoleCount": { + "name": "transferSwitchPoleCount", + "oid": "1.3.6.1.4.1.13742.6.3.9.3.1.5", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type", + "constraints": { + "range": [ + { + "min": 2, + "max": 4 + } + ] + } + }, + "maxaccess": "read-only", + "status": "current" + }, + "transferSwitchAutoReTransferEnabled": { + "name": "transferSwitchAutoReTransferEnabled", + "oid": "1.3.6.1.4.1.13742.6.3.9.3.1.20", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "transferSwitchAutoReTransferWaitTime": { + "name": "transferSwitchAutoReTransferWaitTime", + "oid": "1.3.6.1.4.1.13742.6.3.9.3.1.21", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type", + "constraints": { + "range": [ + { + "min": 1, + "max": 180 + } + ] + } + }, + "maxaccess": "read-write", + "status": "current" + }, + "transferSwitchAutoReTransferRequiresPhaseSync": { + "name": "transferSwitchAutoReTransferRequiresPhaseSync", + "oid": "1.3.6.1.4.1.13742.6.3.9.3.1.22", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "transferSwitchFrontPanelManualTransferButtonEnabled": { + "name": "transferSwitchFrontPanelManualTransferButtonEnabled", + "oid": "1.3.6.1.4.1.13742.6.3.9.3.1.23", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "transferSwitchCapabilities": { + "name": "transferSwitchCapabilities", + "oid": "1.3.6.1.4.1.13742.6.3.9.3.1.24", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Bits", + "class": "type", + "bits": { + "overloadStatus": 32, + "inletPhaseSyncAngle": 37, + "inletPhaseSync": 38, + "operatingState": 39, + "activeInlet": 40, + "switchStatus": 47 + } + }, + "maxaccess": "read-only", + "status": "current" + }, + "transferSwitchPowerSource1": { + "name": "transferSwitchPowerSource1", + "oid": "1.3.6.1.4.1.13742.6.3.9.3.1.31", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "RowPointer", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "transferSwitchPowerSource2": { + "name": "transferSwitchPowerSource2", + "oid": "1.3.6.1.4.1.13742.6.3.9.3.1.32", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "RowPointer", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "transferSwitchPoleConfigurationTable": { + "name": "transferSwitchPoleConfigurationTable", + "oid": "1.3.6.1.4.1.13742.6.3.9.5", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "current" + }, + "transferSwitchPoleConfigurationEntry": { + "name": "transferSwitchPoleConfigurationEntry", + "oid": "1.3.6.1.4.1.13742.6.3.9.5.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "pduId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "transferSwitchId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "transferSwitchPoleIndex", + "implied": 0 + } + ], + "status": "current" + }, + "transferSwitchPoleIndex": { + "name": "transferSwitchPoleIndex", + "oid": "1.3.6.1.4.1.13742.6.3.9.5.1.1", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type", + "constraints": { + "range": [ + { + "min": 1, + "max": 256 + } + ] + } + }, + "maxaccess": "not-accessible", + "status": "current" + }, + "transferSwitchPoleLine": { + "name": "transferSwitchPoleLine", + "oid": "1.3.6.1.4.1.13742.6.3.9.5.1.2", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "LineEnumeration", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "transferSwitchPoleIn1Node": { + "name": "transferSwitchPoleIn1Node", + "oid": "1.3.6.1.4.1.13742.6.3.9.5.1.3", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "transferSwitchPoleIn2Node": { + "name": "transferSwitchPoleIn2Node", + "oid": "1.3.6.1.4.1.13742.6.3.9.5.1.4", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "transferSwitchPoleOutNode": { + "name": "transferSwitchPoleOutNode", + "oid": "1.3.6.1.4.1.13742.6.3.9.5.1.5", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "transferSwitchSensorConfigurationTable": { + "name": "transferSwitchSensorConfigurationTable", + "oid": "1.3.6.1.4.1.13742.6.3.9.4", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "current" + }, + "transferSwitchSensorConfigurationEntry": { + "name": "transferSwitchSensorConfigurationEntry", + "oid": "1.3.6.1.4.1.13742.6.3.9.4.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "pduId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "transferSwitchId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "sensorType", + "implied": 0 + } + ], + "status": "current" + }, + "transferSwitchSensorLogAvailable": { + "name": "transferSwitchSensorLogAvailable", + "oid": "1.3.6.1.4.1.13742.6.3.9.4.1.4", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "transferSwitchSensorUnits": { + "name": "transferSwitchSensorUnits", + "oid": "1.3.6.1.4.1.13742.6.3.9.4.1.6", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "SensorUnitsEnumeration", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "transferSwitchSensorDecimalDigits": { + "name": "transferSwitchSensorDecimalDigits", + "oid": "1.3.6.1.4.1.13742.6.3.9.4.1.7", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "transferSwitchSensorAccuracy": { + "name": "transferSwitchSensorAccuracy", + "oid": "1.3.6.1.4.1.13742.6.3.9.4.1.8", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "HundredthsOfAPercentage", + "class": "type" + }, + "maxaccess": "read-only", + "status": "deprecated" + }, + "transferSwitchSensorResolution": { + "name": "transferSwitchSensorResolution", + "oid": "1.3.6.1.4.1.13742.6.3.9.4.1.9", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "transferSwitchSensorTolerance": { + "name": "transferSwitchSensorTolerance", + "oid": "1.3.6.1.4.1.13742.6.3.9.4.1.10", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "deprecated" + }, + "transferSwitchSensorMaximum": { + "name": "transferSwitchSensorMaximum", + "oid": "1.3.6.1.4.1.13742.6.3.9.4.1.11", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "transferSwitchSensorMinimum": { + "name": "transferSwitchSensorMinimum", + "oid": "1.3.6.1.4.1.13742.6.3.9.4.1.12", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "transferSwitchSensorHysteresis": { + "name": "transferSwitchSensorHysteresis", + "oid": "1.3.6.1.4.1.13742.6.3.9.4.1.13", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "transferSwitchSensorStateChangeDelay": { + "name": "transferSwitchSensorStateChangeDelay", + "oid": "1.3.6.1.4.1.13742.6.3.9.4.1.14", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type", + "constraints": { + "range": [ + { + "min": 0, + "max": 300 + } + ] + } + }, + "maxaccess": "read-write", + "status": "current" + }, + "transferSwitchSensorLowerCriticalThreshold": { + "name": "transferSwitchSensorLowerCriticalThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.9.4.1.21", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "transferSwitchSensorLowerWarningThreshold": { + "name": "transferSwitchSensorLowerWarningThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.9.4.1.22", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "transferSwitchSensorUpperCriticalThreshold": { + "name": "transferSwitchSensorUpperCriticalThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.9.4.1.23", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "transferSwitchSensorUpperWarningThreshold": { + "name": "transferSwitchSensorUpperWarningThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.9.4.1.24", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "transferSwitchSensorEnabledThresholds": { + "name": "transferSwitchSensorEnabledThresholds", + "oid": "1.3.6.1.4.1.13742.6.3.9.4.1.25", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Bits", + "class": "type", + "bits": { + "lowerCritical": 0, + "lowerWarning": 1, + "upperWarning": 2, + "upperCritical": 3 + } + }, + "maxaccess": "read-write", + "status": "current" + }, + "transferSwitchSensorSignedMaximum": { + "name": "transferSwitchSensorSignedMaximum", + "oid": "1.3.6.1.4.1.13742.6.3.9.4.1.26", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "transferSwitchSensorSignedMinimum": { + "name": "transferSwitchSensorSignedMinimum", + "oid": "1.3.6.1.4.1.13742.6.3.9.4.1.27", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "transferSwitchSensorSignedLowerCriticalThreshold": { + "name": "transferSwitchSensorSignedLowerCriticalThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.9.4.1.28", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "transferSwitchSensorSignedLowerWarningThreshold": { + "name": "transferSwitchSensorSignedLowerWarningThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.9.4.1.29", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "transferSwitchSensorSignedUpperCriticalThreshold": { + "name": "transferSwitchSensorSignedUpperCriticalThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.9.4.1.30", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "transferSwitchSensorSignedUpperWarningThreshold": { + "name": "transferSwitchSensorSignedUpperWarningThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.9.4.1.31", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "powerMeterConfigurationTable": { + "name": "powerMeterConfigurationTable", + "oid": "1.3.6.1.4.1.13742.6.3.10.2", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "current" + }, + "powerMeterConfigurationEntry": { + "name": "powerMeterConfigurationEntry", + "oid": "1.3.6.1.4.1.13742.6.3.10.2.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "pduId", + "implied": 0 + } + ], + "status": "current" + }, + "powerMeterPhaseCTRating": { + "name": "powerMeterPhaseCTRating", + "oid": "1.3.6.1.4.1.13742.6.3.10.2.1.2", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "powerMeterNeutralCTRating": { + "name": "powerMeterNeutralCTRating", + "oid": "1.3.6.1.4.1.13742.6.3.10.2.1.3", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "powerMeterEarthCTRating": { + "name": "powerMeterEarthCTRating", + "oid": "1.3.6.1.4.1.13742.6.3.10.2.1.4", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "powerMeterBranchCount": { + "name": "powerMeterBranchCount", + "oid": "1.3.6.1.4.1.13742.6.3.10.2.1.5", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "powerMeterPanelPositions": { + "name": "powerMeterPanelPositions", + "oid": "1.3.6.1.4.1.13742.6.3.10.2.1.6", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type", + "constraints": { + "range": [ + { + "min": 0, + "max": 256 + } + ] + } + }, + "maxaccess": "read-only", + "status": "current" + }, + "powerMeterPanelLayout": { + "name": "powerMeterPanelLayout", + "oid": "1.3.6.1.4.1.13742.6.3.10.2.1.7", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "PanelLayoutEnumeration", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "powerMeterPanelNumbering": { + "name": "powerMeterPanelNumbering", + "oid": "1.3.6.1.4.1.13742.6.3.10.2.1.8", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "PanelNumberingEnumeration", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "powerMeterType": { + "name": "powerMeterType", + "oid": "1.3.6.1.4.1.13742.6.3.10.2.1.9", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "PowerMeterTypeEnumeration", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "circuitConfigurationTable": { + "name": "circuitConfigurationTable", + "oid": "1.3.6.1.4.1.13742.6.3.11.2", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "current" + }, + "circuitConfigurationEntry": { + "name": "circuitConfigurationEntry", + "oid": "1.3.6.1.4.1.13742.6.3.11.2.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "pduId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "circuitId", + "implied": 0 + } + ], + "status": "current" + }, + "circuitId": { + "name": "circuitId", + "oid": "1.3.6.1.4.1.13742.6.3.11.2.1.1", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type", + "constraints": { + "range": [ + { + "min": 1, + "max": 1024 + } + ] + } + }, + "maxaccess": "not-accessible", + "status": "current" + }, + "circuitPoleCount": { + "name": "circuitPoleCount", + "oid": "1.3.6.1.4.1.13742.6.3.11.2.1.2", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type", + "constraints": { + "range": [ + { + "min": 1, + "max": 256 + } + ] + } + }, + "maxaccess": "read-only", + "status": "current" + }, + "circuitName": { + "name": "circuitName", + "oid": "1.3.6.1.4.1.13742.6.3.11.2.1.3", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "circuitType": { + "name": "circuitType", + "oid": "1.3.6.1.4.1.13742.6.3.11.2.1.4", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "CircuitTypeEnumeration", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "circuitRatedCurrent": { + "name": "circuitRatedCurrent", + "oid": "1.3.6.1.4.1.13742.6.3.11.2.1.5", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "circuitCTRating": { + "name": "circuitCTRating", + "oid": "1.3.6.1.4.1.13742.6.3.11.2.1.6", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "circuitCapabilities": { + "name": "circuitCapabilities", + "oid": "1.3.6.1.4.1.13742.6.3.11.2.1.7", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Bits", + "class": "type", + "bits": { + "rmsCurrent": 0, + "peakCurrent": 1, + "unbalancedCurrent": 2, + "rmsVoltage": 3, + "activePower": 4, + "apparentPower": 5, + "powerFactor": 6, + "activeEnergy": 7, + "apparentEnergy": 8, + "surgeProtectorStatus": 21, + "frequency": 22, + "phaseAngle": 23, + "residualCurrent": 25, + "rcmState": 26, + "reactivePower": 28, + "powerQuality": 31, + "displacementPowerFactor": 34, + "crestFactor": 50, + "activePowerDemand": 53 + } + }, + "maxaccess": "read-only", + "status": "current" + }, + "circuitPoleCapabilities": { + "name": "circuitPoleCapabilities", + "oid": "1.3.6.1.4.1.13742.6.3.11.2.1.8", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Bits", + "class": "type", + "bits": { + "rmsCurrent": 0, + "peakCurrent": 1, + "rmsVoltage": 3, + "activePower": 4, + "apparentPower": 5, + "powerFactor": 6, + "activeEnergy": 7, + "apparentEnergy": 8, + "phaseAngle": 23, + "rmsVoltageLN": 24, + "reactivePower": 28, + "displacementPowerFactor": 34, + "crestFactor": 50 + } + }, + "maxaccess": "read-only", + "status": "current" + }, + "circuitPowerSource": { + "name": "circuitPowerSource", + "oid": "1.3.6.1.4.1.13742.6.3.11.2.1.9", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "RowPointer", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "circuitPoleConfigurationTable": { + "name": "circuitPoleConfigurationTable", + "oid": "1.3.6.1.4.1.13742.6.3.11.3", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "current" + }, + "circuitPoleConfigurationEntry": { + "name": "circuitPoleConfigurationEntry", + "oid": "1.3.6.1.4.1.13742.6.3.11.3.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "pduId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "circuitId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "circuitPoleId", + "implied": 0 + } + ], + "status": "current" + }, + "circuitPoleId": { + "name": "circuitPoleId", + "oid": "1.3.6.1.4.1.13742.6.3.11.3.1.1", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type", + "constraints": { + "range": [ + { + "min": 1, + "max": 256 + } + ] + } + }, + "maxaccess": "not-accessible", + "status": "current" + }, + "circuitPolePanelPosition": { + "name": "circuitPolePanelPosition", + "oid": "1.3.6.1.4.1.13742.6.3.11.3.1.2", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type", + "constraints": { + "range": [ + { + "min": 1, + "max": 256 + } + ] + } + }, + "maxaccess": "read-only", + "status": "current" + }, + "circuitPoleCTNumber": { + "name": "circuitPoleCTNumber", + "oid": "1.3.6.1.4.1.13742.6.3.11.3.1.3", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type", + "constraints": { + "range": [ + { + "min": 0, + "max": 256 + } + ] + } + }, + "maxaccess": "read-write", + "status": "current" + }, + "circuitPolePhase": { + "name": "circuitPolePhase", + "oid": "1.3.6.1.4.1.13742.6.3.11.3.1.4", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "PhaseEnumeration", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "circuitSensorConfigurationTable": { + "name": "circuitSensorConfigurationTable", + "oid": "1.3.6.1.4.1.13742.6.3.11.4", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "current" + }, + "circuitSensorConfigurationEntry": { + "name": "circuitSensorConfigurationEntry", + "oid": "1.3.6.1.4.1.13742.6.3.11.4.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "pduId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "circuitId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "sensorType", + "implied": 0 + } + ], + "status": "current" + }, + "circuitSensorLogAvailable": { + "name": "circuitSensorLogAvailable", + "oid": "1.3.6.1.4.1.13742.6.3.11.4.1.4", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "circuitSensorUnits": { + "name": "circuitSensorUnits", + "oid": "1.3.6.1.4.1.13742.6.3.11.4.1.6", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "SensorUnitsEnumeration", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "circuitSensorDecimalDigits": { + "name": "circuitSensorDecimalDigits", + "oid": "1.3.6.1.4.1.13742.6.3.11.4.1.7", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "circuitSensorResolution": { + "name": "circuitSensorResolution", + "oid": "1.3.6.1.4.1.13742.6.3.11.4.1.9", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "circuitSensorMaximum": { + "name": "circuitSensorMaximum", + "oid": "1.3.6.1.4.1.13742.6.3.11.4.1.11", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "circuitSensorMinimum": { + "name": "circuitSensorMinimum", + "oid": "1.3.6.1.4.1.13742.6.3.11.4.1.12", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "circuitSensorHysteresis": { + "name": "circuitSensorHysteresis", + "oid": "1.3.6.1.4.1.13742.6.3.11.4.1.13", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "circuitSensorStateChangeDelay": { + "name": "circuitSensorStateChangeDelay", + "oid": "1.3.6.1.4.1.13742.6.3.11.4.1.14", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type", + "constraints": { + "range": [ + { + "min": 0, + "max": 300 + } + ] + } + }, + "maxaccess": "read-write", + "status": "current" + }, + "circuitSensorLowerCriticalThreshold": { + "name": "circuitSensorLowerCriticalThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.11.4.1.21", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "circuitSensorLowerWarningThreshold": { + "name": "circuitSensorLowerWarningThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.11.4.1.22", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "circuitSensorUpperCriticalThreshold": { + "name": "circuitSensorUpperCriticalThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.11.4.1.23", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "circuitSensorUpperWarningThreshold": { + "name": "circuitSensorUpperWarningThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.11.4.1.24", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "circuitSensorEnabledThresholds": { + "name": "circuitSensorEnabledThresholds", + "oid": "1.3.6.1.4.1.13742.6.3.11.4.1.25", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Bits", + "class": "type", + "bits": { + "lowerCritical": 0, + "lowerWarning": 1, + "upperWarning": 2, + "upperCritical": 3 + } + }, + "maxaccess": "read-write", + "status": "current" + }, + "circuitSensorSignedMaximum": { + "name": "circuitSensorSignedMaximum", + "oid": "1.3.6.1.4.1.13742.6.3.11.4.1.26", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "circuitSensorSignedMinimum": { + "name": "circuitSensorSignedMinimum", + "oid": "1.3.6.1.4.1.13742.6.3.11.4.1.27", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "circuitSensorSignedLowerCriticalThreshold": { + "name": "circuitSensorSignedLowerCriticalThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.11.4.1.28", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "circuitSensorSignedLowerWarningThreshold": { + "name": "circuitSensorSignedLowerWarningThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.11.4.1.29", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "circuitSensorSignedUpperCriticalThreshold": { + "name": "circuitSensorSignedUpperCriticalThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.11.4.1.30", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "circuitSensorSignedUpperWarningThreshold": { + "name": "circuitSensorSignedUpperWarningThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.11.4.1.31", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "circuitPoleSensorConfigurationTable": { + "name": "circuitPoleSensorConfigurationTable", + "oid": "1.3.6.1.4.1.13742.6.3.11.6", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "current" + }, + "circuitPoleSensorConfigurationEntry": { + "name": "circuitPoleSensorConfigurationEntry", + "oid": "1.3.6.1.4.1.13742.6.3.11.6.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "pduId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "circuitId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "circuitPoleId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "sensorType", + "implied": 0 + } + ], + "status": "current" + }, + "circuitPoleSensorLogAvailable": { + "name": "circuitPoleSensorLogAvailable", + "oid": "1.3.6.1.4.1.13742.6.3.11.6.1.4", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "circuitPoleSensorUnits": { + "name": "circuitPoleSensorUnits", + "oid": "1.3.6.1.4.1.13742.6.3.11.6.1.6", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "SensorUnitsEnumeration", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "circuitPoleSensorDecimalDigits": { + "name": "circuitPoleSensorDecimalDigits", + "oid": "1.3.6.1.4.1.13742.6.3.11.6.1.7", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "circuitPoleSensorResolution": { + "name": "circuitPoleSensorResolution", + "oid": "1.3.6.1.4.1.13742.6.3.11.6.1.9", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "circuitPoleSensorMaximum": { + "name": "circuitPoleSensorMaximum", + "oid": "1.3.6.1.4.1.13742.6.3.11.6.1.11", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "circuitPoleSensorMinimum": { + "name": "circuitPoleSensorMinimum", + "oid": "1.3.6.1.4.1.13742.6.3.11.6.1.12", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "circuitPoleSensorHysteresis": { + "name": "circuitPoleSensorHysteresis", + "oid": "1.3.6.1.4.1.13742.6.3.11.6.1.13", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "circuitPoleSensorStateChangeDelay": { + "name": "circuitPoleSensorStateChangeDelay", + "oid": "1.3.6.1.4.1.13742.6.3.11.6.1.14", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type", + "constraints": { + "range": [ + { + "min": 0, + "max": 300 + } + ] + } + }, + "maxaccess": "read-write", + "status": "current" + }, + "circuitPoleSensorLowerCriticalThreshold": { + "name": "circuitPoleSensorLowerCriticalThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.11.6.1.21", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "circuitPoleSensorLowerWarningThreshold": { + "name": "circuitPoleSensorLowerWarningThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.11.6.1.22", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "circuitPoleSensorUpperCriticalThreshold": { + "name": "circuitPoleSensorUpperCriticalThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.11.6.1.23", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "circuitPoleSensorUpperWarningThreshold": { + "name": "circuitPoleSensorUpperWarningThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.11.6.1.24", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "circuitPoleSensorEnabledThresholds": { + "name": "circuitPoleSensorEnabledThresholds", + "oid": "1.3.6.1.4.1.13742.6.3.11.6.1.25", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Bits", + "class": "type", + "bits": { + "lowerCritical": 0, + "lowerWarning": 1, + "upperWarning": 2, + "upperCritical": 3 + } + }, + "maxaccess": "read-write", + "status": "current" + }, + "circuitPoleSensorSignedMaximum": { + "name": "circuitPoleSensorSignedMaximum", + "oid": "1.3.6.1.4.1.13742.6.3.11.6.1.26", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "circuitPoleSensorSignedMinimum": { + "name": "circuitPoleSensorSignedMinimum", + "oid": "1.3.6.1.4.1.13742.6.3.11.6.1.27", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "circuitPoleSensorSignedLowerCriticalThreshold": { + "name": "circuitPoleSensorSignedLowerCriticalThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.11.6.1.28", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "circuitPoleSensorSignedLowerWarningThreshold": { + "name": "circuitPoleSensorSignedLowerWarningThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.11.6.1.29", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "circuitPoleSensorSignedUpperCriticalThreshold": { + "name": "circuitPoleSensorSignedUpperCriticalThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.11.6.1.30", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "circuitPoleSensorSignedUpperWarningThreshold": { + "name": "circuitPoleSensorSignedUpperWarningThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.11.6.1.31", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "outletGroupConfigurationTable": { + "name": "outletGroupConfigurationTable", + "oid": "1.3.6.1.4.1.13742.6.3.12.2", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "current" + }, + "outletGroupConfigurationEntry": { + "name": "outletGroupConfigurationEntry", + "oid": "1.3.6.1.4.1.13742.6.3.12.2.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "outletGroupId", + "implied": 0 + } + ], + "status": "current" + }, + "outletGroupId": { + "name": "outletGroupId", + "oid": "1.3.6.1.4.1.13742.6.3.12.2.1.1", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type", + "constraints": { + "range": [ + { + "min": 1, + "max": 128 + } + ] + } + }, + "maxaccess": "not-accessible", + "status": "current" + }, + "outletGroupName": { + "name": "outletGroupName", + "oid": "1.3.6.1.4.1.13742.6.3.12.2.1.2", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "outletGroupCapabilities": { + "name": "outletGroupCapabilities", + "oid": "1.3.6.1.4.1.13742.6.3.12.2.1.3", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Bits", + "class": "type", + "bits": { + "activePower": 4, + "apparentPower": 5, + "activeEnergy": 7, + "apparentEnergy": 8 + } + }, + "maxaccess": "read-only", + "status": "current" + }, + "outletGroupMembers": { + "name": "outletGroupMembers", + "oid": "1.3.6.1.4.1.13742.6.3.12.2.1.4", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "outletGroupSensorConfigurationTable": { + "name": "outletGroupSensorConfigurationTable", + "oid": "1.3.6.1.4.1.13742.6.3.12.3", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "current" + }, + "outletGroupSensorConfigurationEntry": { + "name": "outletGroupSensorConfigurationEntry", + "oid": "1.3.6.1.4.1.13742.6.3.12.3.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "outletGroupId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "sensorType", + "implied": 0 + } + ], + "status": "current" + }, + "outletGroupSensorLogAvailable": { + "name": "outletGroupSensorLogAvailable", + "oid": "1.3.6.1.4.1.13742.6.3.12.3.1.4", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "outletGroupSensorUnits": { + "name": "outletGroupSensorUnits", + "oid": "1.3.6.1.4.1.13742.6.3.12.3.1.6", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "SensorUnitsEnumeration", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "outletGroupSensorDecimalDigits": { + "name": "outletGroupSensorDecimalDigits", + "oid": "1.3.6.1.4.1.13742.6.3.12.3.1.7", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "outletGroupSensorResolution": { + "name": "outletGroupSensorResolution", + "oid": "1.3.6.1.4.1.13742.6.3.12.3.1.9", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "outletGroupSensorMaximum": { + "name": "outletGroupSensorMaximum", + "oid": "1.3.6.1.4.1.13742.6.3.12.3.1.11", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "outletGroupSensorMinimum": { + "name": "outletGroupSensorMinimum", + "oid": "1.3.6.1.4.1.13742.6.3.12.3.1.12", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "outletGroupSensorHysteresis": { + "name": "outletGroupSensorHysteresis", + "oid": "1.3.6.1.4.1.13742.6.3.12.3.1.13", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "outletGroupSensorStateChangeDelay": { + "name": "outletGroupSensorStateChangeDelay", + "oid": "1.3.6.1.4.1.13742.6.3.12.3.1.14", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type", + "constraints": { + "range": [ + { + "min": 0, + "max": 300 + } + ] + } + }, + "maxaccess": "read-write", + "status": "current" + }, + "outletGroupSensorLowerCriticalThreshold": { + "name": "outletGroupSensorLowerCriticalThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.12.3.1.21", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "outletGroupSensorLowerWarningThreshold": { + "name": "outletGroupSensorLowerWarningThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.12.3.1.22", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "outletGroupSensorUpperCriticalThreshold": { + "name": "outletGroupSensorUpperCriticalThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.12.3.1.23", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "outletGroupSensorUpperWarningThreshold": { + "name": "outletGroupSensorUpperWarningThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.12.3.1.24", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "outletGroupSensorEnabledThresholds": { + "name": "outletGroupSensorEnabledThresholds", + "oid": "1.3.6.1.4.1.13742.6.3.12.3.1.25", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Bits", + "class": "type", + "bits": { + "lowerCritical": 0, + "lowerWarning": 1, + "upperWarning": 2, + "upperCritical": 3 + } + }, + "maxaccess": "read-write", + "status": "current" + }, + "outletGroupSensorSignedMaximum": { + "name": "outletGroupSensorSignedMaximum", + "oid": "1.3.6.1.4.1.13742.6.3.12.3.1.26", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "outletGroupSensorSignedMinimum": { + "name": "outletGroupSensorSignedMinimum", + "oid": "1.3.6.1.4.1.13742.6.3.12.3.1.27", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "outletGroupSensorSignedLowerCriticalThreshold": { + "name": "outletGroupSensorSignedLowerCriticalThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.12.3.1.28", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "outletGroupSensorSignedLowerWarningThreshold": { + "name": "outletGroupSensorSignedLowerWarningThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.12.3.1.29", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "outletGroupSensorSignedUpperCriticalThreshold": { + "name": "outletGroupSensorSignedUpperCriticalThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.12.3.1.30", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "outletGroupSensorSignedUpperWarningThreshold": { + "name": "outletGroupSensorSignedUpperWarningThreshold", + "oid": "1.3.6.1.4.1.13742.6.3.12.3.1.31", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "peripheralDevicePackageTable": { + "name": "peripheralDevicePackageTable", + "oid": "1.3.6.1.4.1.13742.6.3.6.5", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "current" + }, + "peripheralDevicePackageEntry": { + "name": "peripheralDevicePackageEntry", + "oid": "1.3.6.1.4.1.13742.6.3.6.5.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "pduId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "peripheralDevicePackageId", + "implied": 0 + } + ], + "status": "current" + }, + "peripheralDevicePackageId": { + "name": "peripheralDevicePackageId", + "oid": "1.3.6.1.4.1.13742.6.3.6.5.1.1", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type", + "constraints": { + "range": [ + { + "min": 0, + "max": 256 + } + ] + } + }, + "maxaccess": "not-accessible", + "status": "current" + }, + "peripheralDevicePackageSerialNumber": { + "name": "peripheralDevicePackageSerialNumber", + "oid": "1.3.6.1.4.1.13742.6.3.6.5.1.3", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "peripheralDevicePackageModel": { + "name": "peripheralDevicePackageModel", + "oid": "1.3.6.1.4.1.13742.6.3.6.5.1.4", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "peripheralDevicePackageFirmwareVersion": { + "name": "peripheralDevicePackageFirmwareVersion", + "oid": "1.3.6.1.4.1.13742.6.3.6.5.1.5", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "peripheralDevicePackageMinFirmwareVersion": { + "name": "peripheralDevicePackageMinFirmwareVersion", + "oid": "1.3.6.1.4.1.13742.6.3.6.5.1.6", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "peripheralDevicePackageFirmwareTimeStamp": { + "name": "peripheralDevicePackageFirmwareTimeStamp", + "oid": "1.3.6.1.4.1.13742.6.3.6.5.1.7", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "peripheralDevicePackagePosition": { + "name": "peripheralDevicePackagePosition", + "oid": "1.3.6.1.4.1.13742.6.3.6.5.1.8", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "peripheralDevicePackageState": { + "name": "peripheralDevicePackageState", + "oid": "1.3.6.1.4.1.13742.6.3.6.5.1.9", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logIndexTable": { + "name": "logIndexTable", + "oid": "1.3.6.1.4.1.13742.6.6.1.1", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "current" + }, + "logIndexEntry": { + "name": "logIndexEntry", + "oid": "1.3.6.1.4.1.13742.6.6.1.1.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "pduId", + "implied": 0 + } + ], + "status": "current" + }, + "oldestLogID": { + "name": "oldestLogID", + "oid": "1.3.6.1.4.1.13742.6.6.1.1.1.2", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "newestLogID": { + "name": "newestLogID", + "oid": "1.3.6.1.4.1.13742.6.6.1.1.1.3", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logTimeStampTable": { + "name": "logTimeStampTable", + "oid": "1.3.6.1.4.1.13742.6.6.1.2", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "current" + }, + "logTimeStampEntry": { + "name": "logTimeStampEntry", + "oid": "1.3.6.1.4.1.13742.6.6.1.2.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "pduId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "logIndex", + "implied": 0 + } + ], + "status": "current" + }, + "logIndex": { + "name": "logIndex", + "oid": "1.3.6.1.4.1.13742.6.6.1.2.1.1", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type", + "constraints": { + "range": [ + { + "min": 1, + "max": 20000 + } + ] + } + }, + "maxaccess": "not-accessible", + "status": "current" + }, + "logTimeStamp": { + "name": "logTimeStamp", + "oid": "1.3.6.1.4.1.13742.6.6.1.2.1.2", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "unitSensorLogTable": { + "name": "unitSensorLogTable", + "oid": "1.3.6.1.4.1.13742.6.6.1.3", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "current" + }, + "unitSensorLogEntry": { + "name": "unitSensorLogEntry", + "oid": "1.3.6.1.4.1.13742.6.6.1.3.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "pduId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "sensorType", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "logIndex", + "implied": 0 + } + ], + "status": "current" + }, + "logUnitSensorDataAvailable": { + "name": "logUnitSensorDataAvailable", + "oid": "1.3.6.1.4.1.13742.6.6.1.3.1.2", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logUnitSensorState": { + "name": "logUnitSensorState", + "oid": "1.3.6.1.4.1.13742.6.6.1.3.1.3", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "SensorStateEnumeration", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logUnitSensorAvgValue": { + "name": "logUnitSensorAvgValue", + "oid": "1.3.6.1.4.1.13742.6.6.1.3.1.4", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logUnitSensorMaxValue": { + "name": "logUnitSensorMaxValue", + "oid": "1.3.6.1.4.1.13742.6.6.1.3.1.5", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logUnitSensorMinValue": { + "name": "logUnitSensorMinValue", + "oid": "1.3.6.1.4.1.13742.6.6.1.3.1.6", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logUnitSensorSignedAvgValue": { + "name": "logUnitSensorSignedAvgValue", + "oid": "1.3.6.1.4.1.13742.6.6.1.3.1.7", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logUnitSensorSignedMaxValue": { + "name": "logUnitSensorSignedMaxValue", + "oid": "1.3.6.1.4.1.13742.6.6.1.3.1.8", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logUnitSensorSignedMinValue": { + "name": "logUnitSensorSignedMinValue", + "oid": "1.3.6.1.4.1.13742.6.6.1.3.1.9", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "inletSensorLogTable": { + "name": "inletSensorLogTable", + "oid": "1.3.6.1.4.1.13742.6.6.2.3", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "current" + }, + "inletSensorLogEntry": { + "name": "inletSensorLogEntry", + "oid": "1.3.6.1.4.1.13742.6.6.2.3.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "pduId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "inletId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "sensorType", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "logIndex", + "implied": 0 + } + ], + "status": "current" + }, + "logInletSensorDataAvailable": { + "name": "logInletSensorDataAvailable", + "oid": "1.3.6.1.4.1.13742.6.6.2.3.1.2", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logInletSensorState": { + "name": "logInletSensorState", + "oid": "1.3.6.1.4.1.13742.6.6.2.3.1.3", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "SensorStateEnumeration", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logInletSensorAvgValue": { + "name": "logInletSensorAvgValue", + "oid": "1.3.6.1.4.1.13742.6.6.2.3.1.4", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logInletSensorMaxValue": { + "name": "logInletSensorMaxValue", + "oid": "1.3.6.1.4.1.13742.6.6.2.3.1.5", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logInletSensorMinValue": { + "name": "logInletSensorMinValue", + "oid": "1.3.6.1.4.1.13742.6.6.2.3.1.6", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logInletSensorSignedAvgValue": { + "name": "logInletSensorSignedAvgValue", + "oid": "1.3.6.1.4.1.13742.6.6.2.3.1.7", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logInletSensorSignedMaxValue": { + "name": "logInletSensorSignedMaxValue", + "oid": "1.3.6.1.4.1.13742.6.6.2.3.1.8", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logInletSensorSignedMinValue": { + "name": "logInletSensorSignedMinValue", + "oid": "1.3.6.1.4.1.13742.6.6.2.3.1.9", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "inletPoleSensorLogTable": { + "name": "inletPoleSensorLogTable", + "oid": "1.3.6.1.4.1.13742.6.6.2.4", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "current" + }, + "inletPoleSensorLogEntry": { + "name": "inletPoleSensorLogEntry", + "oid": "1.3.6.1.4.1.13742.6.6.2.4.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "pduId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "inletId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "inletPoleIndex", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "sensorType", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "logIndex", + "implied": 0 + } + ], + "status": "current" + }, + "logInletPoleSensorDataAvailable": { + "name": "logInletPoleSensorDataAvailable", + "oid": "1.3.6.1.4.1.13742.6.6.2.4.1.2", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logInletPoleSensorState": { + "name": "logInletPoleSensorState", + "oid": "1.3.6.1.4.1.13742.6.6.2.4.1.3", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "SensorStateEnumeration", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logInletPoleSensorAvgValue": { + "name": "logInletPoleSensorAvgValue", + "oid": "1.3.6.1.4.1.13742.6.6.2.4.1.4", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logInletPoleSensorMaxValue": { + "name": "logInletPoleSensorMaxValue", + "oid": "1.3.6.1.4.1.13742.6.6.2.4.1.5", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logInletPoleSensorMinValue": { + "name": "logInletPoleSensorMinValue", + "oid": "1.3.6.1.4.1.13742.6.6.2.4.1.6", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logInletPoleSensorSignedAvgValue": { + "name": "logInletPoleSensorSignedAvgValue", + "oid": "1.3.6.1.4.1.13742.6.6.2.4.1.7", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logInletPoleSensorSignedMaxValue": { + "name": "logInletPoleSensorSignedMaxValue", + "oid": "1.3.6.1.4.1.13742.6.6.2.4.1.8", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logInletPoleSensorSignedMinValue": { + "name": "logInletPoleSensorSignedMinValue", + "oid": "1.3.6.1.4.1.13742.6.6.2.4.1.9", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "inletLinePairSensorLogTable": { + "name": "inletLinePairSensorLogTable", + "oid": "1.3.6.1.4.1.13742.6.6.2.5", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "current" + }, + "inletLinePairSensorLogEntry": { + "name": "inletLinePairSensorLogEntry", + "oid": "1.3.6.1.4.1.13742.6.6.2.5.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "pduId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "inletId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "inletLinePairIndex", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "sensorType", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "logIndex", + "implied": 0 + } + ], + "status": "current" + }, + "logInletLinePairSensorDataAvailable": { + "name": "logInletLinePairSensorDataAvailable", + "oid": "1.3.6.1.4.1.13742.6.6.2.5.1.2", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logInletLinePairSensorState": { + "name": "logInletLinePairSensorState", + "oid": "1.3.6.1.4.1.13742.6.6.2.5.1.3", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "SensorStateEnumeration", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logInletLinePairSensorAvgValue": { + "name": "logInletLinePairSensorAvgValue", + "oid": "1.3.6.1.4.1.13742.6.6.2.5.1.4", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logInletLinePairSensorMaxValue": { + "name": "logInletLinePairSensorMaxValue", + "oid": "1.3.6.1.4.1.13742.6.6.2.5.1.5", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logInletLinePairSensorMinValue": { + "name": "logInletLinePairSensorMinValue", + "oid": "1.3.6.1.4.1.13742.6.6.2.5.1.6", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logInletLinePairSensorSignedAvgValue": { + "name": "logInletLinePairSensorSignedAvgValue", + "oid": "1.3.6.1.4.1.13742.6.6.2.5.1.7", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logInletLinePairSensorSignedMaxValue": { + "name": "logInletLinePairSensorSignedMaxValue", + "oid": "1.3.6.1.4.1.13742.6.6.2.5.1.8", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logInletLinePairSensorSignedMinValue": { + "name": "logInletLinePairSensorSignedMinValue", + "oid": "1.3.6.1.4.1.13742.6.6.2.5.1.9", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "outletSensorLogTable": { + "name": "outletSensorLogTable", + "oid": "1.3.6.1.4.1.13742.6.6.4.3", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "current" + }, + "outletSensorLogEntry": { + "name": "outletSensorLogEntry", + "oid": "1.3.6.1.4.1.13742.6.6.4.3.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "pduId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "outletId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "sensorType", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "logIndex", + "implied": 0 + } + ], + "status": "current" + }, + "logOutletSensorDataAvailable": { + "name": "logOutletSensorDataAvailable", + "oid": "1.3.6.1.4.1.13742.6.6.4.3.1.2", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logOutletSensorState": { + "name": "logOutletSensorState", + "oid": "1.3.6.1.4.1.13742.6.6.4.3.1.3", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "SensorStateEnumeration", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logOutletSensorAvgValue": { + "name": "logOutletSensorAvgValue", + "oid": "1.3.6.1.4.1.13742.6.6.4.3.1.4", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logOutletSensorMaxValue": { + "name": "logOutletSensorMaxValue", + "oid": "1.3.6.1.4.1.13742.6.6.4.3.1.5", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logOutletSensorMinValue": { + "name": "logOutletSensorMinValue", + "oid": "1.3.6.1.4.1.13742.6.6.4.3.1.6", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logOutletSensorSignedAvgValue": { + "name": "logOutletSensorSignedAvgValue", + "oid": "1.3.6.1.4.1.13742.6.6.4.3.1.7", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logOutletSensorSignedMaxValue": { + "name": "logOutletSensorSignedMaxValue", + "oid": "1.3.6.1.4.1.13742.6.6.4.3.1.8", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logOutletSensorSignedMinValue": { + "name": "logOutletSensorSignedMinValue", + "oid": "1.3.6.1.4.1.13742.6.6.4.3.1.9", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "outletPoleSensorLogTable": { + "name": "outletPoleSensorLogTable", + "oid": "1.3.6.1.4.1.13742.6.6.4.4", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "current" + }, + "outletPoleSensorLogEntry": { + "name": "outletPoleSensorLogEntry", + "oid": "1.3.6.1.4.1.13742.6.6.4.4.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "pduId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "outletId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "outletPoleIndex", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "sensorType", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "logIndex", + "implied": 0 + } + ], + "status": "current" + }, + "logOutletPoleSensorDataAvailable": { + "name": "logOutletPoleSensorDataAvailable", + "oid": "1.3.6.1.4.1.13742.6.6.4.4.1.2", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logOutletPoleSensorState": { + "name": "logOutletPoleSensorState", + "oid": "1.3.6.1.4.1.13742.6.6.4.4.1.3", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "SensorStateEnumeration", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logOutletPoleSensorAvgValue": { + "name": "logOutletPoleSensorAvgValue", + "oid": "1.3.6.1.4.1.13742.6.6.4.4.1.4", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logOutletPoleSensorMaxValue": { + "name": "logOutletPoleSensorMaxValue", + "oid": "1.3.6.1.4.1.13742.6.6.4.4.1.5", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logOutletPoleSensorMinValue": { + "name": "logOutletPoleSensorMinValue", + "oid": "1.3.6.1.4.1.13742.6.6.4.4.1.6", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logOutletPoleSensorSignedAvgValue": { + "name": "logOutletPoleSensorSignedAvgValue", + "oid": "1.3.6.1.4.1.13742.6.6.4.4.1.7", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logOutletPoleSensorSignedMaxValue": { + "name": "logOutletPoleSensorSignedMaxValue", + "oid": "1.3.6.1.4.1.13742.6.6.4.4.1.8", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logOutletPoleSensorSignedMinValue": { + "name": "logOutletPoleSensorSignedMinValue", + "oid": "1.3.6.1.4.1.13742.6.6.4.4.1.9", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "overCurrentProtectorSensorLogTable": { + "name": "overCurrentProtectorSensorLogTable", + "oid": "1.3.6.1.4.1.13742.6.6.3.3", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "current" + }, + "overCurrentProtectorSensorLogEntry": { + "name": "overCurrentProtectorSensorLogEntry", + "oid": "1.3.6.1.4.1.13742.6.6.3.3.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "pduId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "overCurrentProtectorIndex", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "sensorType", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "logIndex", + "implied": 0 + } + ], + "status": "current" + }, + "logOverCurrentProtectorSensorDataAvailable": { + "name": "logOverCurrentProtectorSensorDataAvailable", + "oid": "1.3.6.1.4.1.13742.6.6.3.3.1.2", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logOverCurrentProtectorSensorState": { + "name": "logOverCurrentProtectorSensorState", + "oid": "1.3.6.1.4.1.13742.6.6.3.3.1.3", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "SensorStateEnumeration", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logOverCurrentProtectorSensorAvgValue": { + "name": "logOverCurrentProtectorSensorAvgValue", + "oid": "1.3.6.1.4.1.13742.6.6.3.3.1.4", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logOverCurrentProtectorSensorMaxValue": { + "name": "logOverCurrentProtectorSensorMaxValue", + "oid": "1.3.6.1.4.1.13742.6.6.3.3.1.5", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logOverCurrentProtectorSensorMinValue": { + "name": "logOverCurrentProtectorSensorMinValue", + "oid": "1.3.6.1.4.1.13742.6.6.3.3.1.6", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logOverCurrentProtectorSensorSignedAvgValue": { + "name": "logOverCurrentProtectorSensorSignedAvgValue", + "oid": "1.3.6.1.4.1.13742.6.6.3.3.1.7", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logOverCurrentProtectorSensorSignedMaxValue": { + "name": "logOverCurrentProtectorSensorSignedMaxValue", + "oid": "1.3.6.1.4.1.13742.6.6.3.3.1.8", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logOverCurrentProtectorSensorSignedMinValue": { + "name": "logOverCurrentProtectorSensorSignedMinValue", + "oid": "1.3.6.1.4.1.13742.6.6.3.3.1.9", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "externalSensorLogTable": { + "name": "externalSensorLogTable", + "oid": "1.3.6.1.4.1.13742.6.6.5.3", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "current" + }, + "externalSensorLogEntry": { + "name": "externalSensorLogEntry", + "oid": "1.3.6.1.4.1.13742.6.6.5.3.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "pduId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "sensorID", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "logIndex", + "implied": 0 + } + ], + "status": "current" + }, + "logExternalSensorDataAvailable": { + "name": "logExternalSensorDataAvailable", + "oid": "1.3.6.1.4.1.13742.6.6.5.3.1.2", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logExternalSensorState": { + "name": "logExternalSensorState", + "oid": "1.3.6.1.4.1.13742.6.6.5.3.1.3", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "SensorStateEnumeration", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logExternalSensorAvgValue": { + "name": "logExternalSensorAvgValue", + "oid": "1.3.6.1.4.1.13742.6.6.5.3.1.4", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logExternalSensorMaxValue": { + "name": "logExternalSensorMaxValue", + "oid": "1.3.6.1.4.1.13742.6.6.5.3.1.5", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logExternalSensorMinValue": { + "name": "logExternalSensorMinValue", + "oid": "1.3.6.1.4.1.13742.6.6.5.3.1.6", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "wireSensorLogTable": { + "name": "wireSensorLogTable", + "oid": "1.3.6.1.4.1.13742.6.6.6.3", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "obsolete" + }, + "wireSensorLogEntry": { + "name": "wireSensorLogEntry", + "oid": "1.3.6.1.4.1.13742.6.6.6.3.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "pduId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "wireId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "sensorType", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "logIndex", + "implied": 0 + } + ], + "status": "obsolete" + }, + "logWireSensorDataAvailable": { + "name": "logWireSensorDataAvailable", + "oid": "1.3.6.1.4.1.13742.6.6.6.3.1.2", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-only", + "status": "obsolete" + }, + "logWireSensorState": { + "name": "logWireSensorState", + "oid": "1.3.6.1.4.1.13742.6.6.6.3.1.3", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "SensorStateEnumeration", + "class": "type" + }, + "maxaccess": "read-only", + "status": "obsolete" + }, + "logWireSensorAvgValue": { + "name": "logWireSensorAvgValue", + "oid": "1.3.6.1.4.1.13742.6.6.6.3.1.4", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "obsolete" + }, + "logWireSensorMaxValue": { + "name": "logWireSensorMaxValue", + "oid": "1.3.6.1.4.1.13742.6.6.6.3.1.5", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "obsolete" + }, + "logWireSensorMinValue": { + "name": "logWireSensorMinValue", + "oid": "1.3.6.1.4.1.13742.6.6.6.3.1.6", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "obsolete" + }, + "transferSwitchSensorLogTable": { + "name": "transferSwitchSensorLogTable", + "oid": "1.3.6.1.4.1.13742.6.6.7.3", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "current" + }, + "transferSwitchSensorLogEntry": { + "name": "transferSwitchSensorLogEntry", + "oid": "1.3.6.1.4.1.13742.6.6.7.3.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "pduId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "transferSwitchId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "sensorType", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "logIndex", + "implied": 0 + } + ], + "status": "current" + }, + "logTransferSwitchSensorDataAvailable": { + "name": "logTransferSwitchSensorDataAvailable", + "oid": "1.3.6.1.4.1.13742.6.6.7.3.1.2", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logTransferSwitchSensorState": { + "name": "logTransferSwitchSensorState", + "oid": "1.3.6.1.4.1.13742.6.6.7.3.1.3", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "SensorStateEnumeration", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logTransferSwitchSensorAvgValue": { + "name": "logTransferSwitchSensorAvgValue", + "oid": "1.3.6.1.4.1.13742.6.6.7.3.1.4", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logTransferSwitchSensorMaxValue": { + "name": "logTransferSwitchSensorMaxValue", + "oid": "1.3.6.1.4.1.13742.6.6.7.3.1.5", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logTransferSwitchSensorMinValue": { + "name": "logTransferSwitchSensorMinValue", + "oid": "1.3.6.1.4.1.13742.6.6.7.3.1.6", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logTransferSwitchSensorSignedAvgValue": { + "name": "logTransferSwitchSensorSignedAvgValue", + "oid": "1.3.6.1.4.1.13742.6.6.7.3.1.7", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logTransferSwitchSensorSignedMaxValue": { + "name": "logTransferSwitchSensorSignedMaxValue", + "oid": "1.3.6.1.4.1.13742.6.6.7.3.1.8", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logTransferSwitchSensorSignedMinValue": { + "name": "logTransferSwitchSensorSignedMinValue", + "oid": "1.3.6.1.4.1.13742.6.6.7.3.1.9", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "circuitSensorLogTable": { + "name": "circuitSensorLogTable", + "oid": "1.3.6.1.4.1.13742.6.6.8.3", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "current" + }, + "circuitSensorLogEntry": { + "name": "circuitSensorLogEntry", + "oid": "1.3.6.1.4.1.13742.6.6.8.3.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "pduId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "circuitId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "sensorType", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "logIndex", + "implied": 0 + } + ], + "status": "current" + }, + "logCircuitSensorDataAvailable": { + "name": "logCircuitSensorDataAvailable", + "oid": "1.3.6.1.4.1.13742.6.6.8.3.1.2", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logCircuitSensorState": { + "name": "logCircuitSensorState", + "oid": "1.3.6.1.4.1.13742.6.6.8.3.1.3", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "SensorStateEnumeration", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logCircuitSensorAvgValue": { + "name": "logCircuitSensorAvgValue", + "oid": "1.3.6.1.4.1.13742.6.6.8.3.1.4", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logCircuitSensorMaxValue": { + "name": "logCircuitSensorMaxValue", + "oid": "1.3.6.1.4.1.13742.6.6.8.3.1.5", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logCircuitSensorMinValue": { + "name": "logCircuitSensorMinValue", + "oid": "1.3.6.1.4.1.13742.6.6.8.3.1.6", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logCircuitSensorSignedAvgValue": { + "name": "logCircuitSensorSignedAvgValue", + "oid": "1.3.6.1.4.1.13742.6.6.8.3.1.7", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logCircuitSensorSignedMaxValue": { + "name": "logCircuitSensorSignedMaxValue", + "oid": "1.3.6.1.4.1.13742.6.6.8.3.1.8", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logCircuitSensorSignedMinValue": { + "name": "logCircuitSensorSignedMinValue", + "oid": "1.3.6.1.4.1.13742.6.6.8.3.1.9", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "circuitPoleSensorLogTable": { + "name": "circuitPoleSensorLogTable", + "oid": "1.3.6.1.4.1.13742.6.6.8.5", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "current" + }, + "circuitPoleSensorLogEntry": { + "name": "circuitPoleSensorLogEntry", + "oid": "1.3.6.1.4.1.13742.6.6.8.5.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "pduId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "circuitId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "circuitPoleId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "sensorType", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "logIndex", + "implied": 0 + } + ], + "status": "current" + }, + "logCircuitPoleSensorDataAvailable": { + "name": "logCircuitPoleSensorDataAvailable", + "oid": "1.3.6.1.4.1.13742.6.6.8.5.1.2", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logCircuitPoleSensorState": { + "name": "logCircuitPoleSensorState", + "oid": "1.3.6.1.4.1.13742.6.6.8.5.1.3", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "SensorStateEnumeration", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logCircuitPoleSensorAvgValue": { + "name": "logCircuitPoleSensorAvgValue", + "oid": "1.3.6.1.4.1.13742.6.6.8.5.1.4", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logCircuitPoleSensorMaxValue": { + "name": "logCircuitPoleSensorMaxValue", + "oid": "1.3.6.1.4.1.13742.6.6.8.5.1.5", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logCircuitPoleSensorMinValue": { + "name": "logCircuitPoleSensorMinValue", + "oid": "1.3.6.1.4.1.13742.6.6.8.5.1.6", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logCircuitPoleSensorSignedAvgValue": { + "name": "logCircuitPoleSensorSignedAvgValue", + "oid": "1.3.6.1.4.1.13742.6.6.8.5.1.7", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logCircuitPoleSensorSignedMaxValue": { + "name": "logCircuitPoleSensorSignedMaxValue", + "oid": "1.3.6.1.4.1.13742.6.6.8.5.1.8", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logCircuitPoleSensorSignedMinValue": { + "name": "logCircuitPoleSensorSignedMinValue", + "oid": "1.3.6.1.4.1.13742.6.6.8.5.1.9", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "outletGroupSensorLogTable": { + "name": "outletGroupSensorLogTable", + "oid": "1.3.6.1.4.1.13742.6.6.9.3", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "current" + }, + "outletGroupSensorLogEntry": { + "name": "outletGroupSensorLogEntry", + "oid": "1.3.6.1.4.1.13742.6.6.9.3.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "outletGroupId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "sensorType", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "logIndex", + "implied": 0 + } + ], + "status": "current" + }, + "logOutletGroupSensorDataAvailable": { + "name": "logOutletGroupSensorDataAvailable", + "oid": "1.3.6.1.4.1.13742.6.6.9.3.1.2", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logOutletGroupSensorState": { + "name": "logOutletGroupSensorState", + "oid": "1.3.6.1.4.1.13742.6.6.9.3.1.3", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "SensorStateEnumeration", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logOutletGroupSensorAvgValue": { + "name": "logOutletGroupSensorAvgValue", + "oid": "1.3.6.1.4.1.13742.6.6.9.3.1.4", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logOutletGroupSensorMaxValue": { + "name": "logOutletGroupSensorMaxValue", + "oid": "1.3.6.1.4.1.13742.6.6.9.3.1.5", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logOutletGroupSensorMinValue": { + "name": "logOutletGroupSensorMinValue", + "oid": "1.3.6.1.4.1.13742.6.6.9.3.1.6", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logOutletGroupSensorSignedAvgValue": { + "name": "logOutletGroupSensorSignedAvgValue", + "oid": "1.3.6.1.4.1.13742.6.6.9.3.1.7", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logOutletGroupSensorSignedMaxValue": { + "name": "logOutletGroupSensorSignedMaxValue", + "oid": "1.3.6.1.4.1.13742.6.6.9.3.1.8", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "logOutletGroupSensorSignedMinValue": { + "name": "logOutletGroupSensorSignedMinValue", + "oid": "1.3.6.1.4.1.13742.6.6.9.3.1.9", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "unitSensorMeasurementsTable": { + "name": "unitSensorMeasurementsTable", + "oid": "1.3.6.1.4.1.13742.6.5.1.3", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "current" + }, + "unitSensorMeasurementsEntry": { + "name": "unitSensorMeasurementsEntry", + "oid": "1.3.6.1.4.1.13742.6.5.1.3.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "pduId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "sensorType", + "implied": 0 + } + ], + "status": "current" + }, + "measurementsUnitSensorIsAvailable": { + "name": "measurementsUnitSensorIsAvailable", + "oid": "1.3.6.1.4.1.13742.6.5.1.3.1.2", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsUnitSensorState": { + "name": "measurementsUnitSensorState", + "oid": "1.3.6.1.4.1.13742.6.5.1.3.1.3", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "SensorStateEnumeration", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsUnitSensorValue": { + "name": "measurementsUnitSensorValue", + "oid": "1.3.6.1.4.1.13742.6.5.1.3.1.4", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsUnitSensorTimeStamp": { + "name": "measurementsUnitSensorTimeStamp", + "oid": "1.3.6.1.4.1.13742.6.5.1.3.1.5", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsUnitSensorSignedValue": { + "name": "measurementsUnitSensorSignedValue", + "oid": "1.3.6.1.4.1.13742.6.5.1.3.1.6", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsUnitSensorMinMaxValid": { + "name": "measurementsUnitSensorMinMaxValid", + "oid": "1.3.6.1.4.1.13742.6.5.1.3.1.7", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsUnitSensorMinValue": { + "name": "measurementsUnitSensorMinValue", + "oid": "1.3.6.1.4.1.13742.6.5.1.3.1.8", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsUnitSensorSignedMinValue": { + "name": "measurementsUnitSensorSignedMinValue", + "oid": "1.3.6.1.4.1.13742.6.5.1.3.1.9", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsUnitSensorMinTimeStamp": { + "name": "measurementsUnitSensorMinTimeStamp", + "oid": "1.3.6.1.4.1.13742.6.5.1.3.1.10", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsUnitSensorMaxValue": { + "name": "measurementsUnitSensorMaxValue", + "oid": "1.3.6.1.4.1.13742.6.5.1.3.1.11", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsUnitSensorSignedMaxValue": { + "name": "measurementsUnitSensorSignedMaxValue", + "oid": "1.3.6.1.4.1.13742.6.5.1.3.1.12", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsUnitSensorMaxTimeStamp": { + "name": "measurementsUnitSensorMaxTimeStamp", + "oid": "1.3.6.1.4.1.13742.6.5.1.3.1.13", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsUnitSensorMinMaxResetTimeStamp": { + "name": "measurementsUnitSensorMinMaxResetTimeStamp", + "oid": "1.3.6.1.4.1.13742.6.5.1.3.1.14", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "inletSensorMeasurementsTable": { + "name": "inletSensorMeasurementsTable", + "oid": "1.3.6.1.4.1.13742.6.5.2.3", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "current" + }, + "inletSensorMeasurementsEntry": { + "name": "inletSensorMeasurementsEntry", + "oid": "1.3.6.1.4.1.13742.6.5.2.3.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "pduId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "inletId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "sensorType", + "implied": 0 + } + ], + "status": "current" + }, + "measurementsInletSensorIsAvailable": { + "name": "measurementsInletSensorIsAvailable", + "oid": "1.3.6.1.4.1.13742.6.5.2.3.1.2", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsInletSensorState": { + "name": "measurementsInletSensorState", + "oid": "1.3.6.1.4.1.13742.6.5.2.3.1.3", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "SensorStateEnumeration", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsInletSensorValue": { + "name": "measurementsInletSensorValue", + "oid": "1.3.6.1.4.1.13742.6.5.2.3.1.4", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsInletSensorTimeStamp": { + "name": "measurementsInletSensorTimeStamp", + "oid": "1.3.6.1.4.1.13742.6.5.2.3.1.5", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsInletSensorSignedValue": { + "name": "measurementsInletSensorSignedValue", + "oid": "1.3.6.1.4.1.13742.6.5.2.3.1.6", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsInletSensorMinMaxValid": { + "name": "measurementsInletSensorMinMaxValid", + "oid": "1.3.6.1.4.1.13742.6.5.2.3.1.7", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsInletSensorMinValue": { + "name": "measurementsInletSensorMinValue", + "oid": "1.3.6.1.4.1.13742.6.5.2.3.1.8", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsInletSensorSignedMinValue": { + "name": "measurementsInletSensorSignedMinValue", + "oid": "1.3.6.1.4.1.13742.6.5.2.3.1.9", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsInletSensorMinTimeStamp": { + "name": "measurementsInletSensorMinTimeStamp", + "oid": "1.3.6.1.4.1.13742.6.5.2.3.1.10", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsInletSensorMaxValue": { + "name": "measurementsInletSensorMaxValue", + "oid": "1.3.6.1.4.1.13742.6.5.2.3.1.11", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsInletSensorSignedMaxValue": { + "name": "measurementsInletSensorSignedMaxValue", + "oid": "1.3.6.1.4.1.13742.6.5.2.3.1.12", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsInletSensorMaxTimeStamp": { + "name": "measurementsInletSensorMaxTimeStamp", + "oid": "1.3.6.1.4.1.13742.6.5.2.3.1.13", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsInletSensorMinMaxResetTimeStamp": { + "name": "measurementsInletSensorMinMaxResetTimeStamp", + "oid": "1.3.6.1.4.1.13742.6.5.2.3.1.14", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "inletPoleSensorMeasurementsTable": { + "name": "inletPoleSensorMeasurementsTable", + "oid": "1.3.6.1.4.1.13742.6.5.2.4", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "current" + }, + "inletPoleSensorMeasurementsEntry": { + "name": "inletPoleSensorMeasurementsEntry", + "oid": "1.3.6.1.4.1.13742.6.5.2.4.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "pduId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "inletId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "inletPoleIndex", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "sensorType", + "implied": 0 + } + ], + "status": "current" + }, + "measurementsInletPoleSensorIsAvailable": { + "name": "measurementsInletPoleSensorIsAvailable", + "oid": "1.3.6.1.4.1.13742.6.5.2.4.1.2", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsInletPoleSensorState": { + "name": "measurementsInletPoleSensorState", + "oid": "1.3.6.1.4.1.13742.6.5.2.4.1.3", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "SensorStateEnumeration", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsInletPoleSensorValue": { + "name": "measurementsInletPoleSensorValue", + "oid": "1.3.6.1.4.1.13742.6.5.2.4.1.4", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsInletPoleSensorTimeStamp": { + "name": "measurementsInletPoleSensorTimeStamp", + "oid": "1.3.6.1.4.1.13742.6.5.2.4.1.5", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsInletPoleSensorSignedValue": { + "name": "measurementsInletPoleSensorSignedValue", + "oid": "1.3.6.1.4.1.13742.6.5.2.4.1.6", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsInletPoleSensorMinMaxValid": { + "name": "measurementsInletPoleSensorMinMaxValid", + "oid": "1.3.6.1.4.1.13742.6.5.2.4.1.7", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsInletPoleSensorMinValue": { + "name": "measurementsInletPoleSensorMinValue", + "oid": "1.3.6.1.4.1.13742.6.5.2.4.1.8", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsInletPoleSensorSignedMinValue": { + "name": "measurementsInletPoleSensorSignedMinValue", + "oid": "1.3.6.1.4.1.13742.6.5.2.4.1.9", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsInletPoleSensorMinTimeStamp": { + "name": "measurementsInletPoleSensorMinTimeStamp", + "oid": "1.3.6.1.4.1.13742.6.5.2.4.1.10", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsInletPoleSensorMaxValue": { + "name": "measurementsInletPoleSensorMaxValue", + "oid": "1.3.6.1.4.1.13742.6.5.2.4.1.11", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsInletPoleSensorSignedMaxValue": { + "name": "measurementsInletPoleSensorSignedMaxValue", + "oid": "1.3.6.1.4.1.13742.6.5.2.4.1.12", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsInletPoleSensorMaxTimeStamp": { + "name": "measurementsInletPoleSensorMaxTimeStamp", + "oid": "1.3.6.1.4.1.13742.6.5.2.4.1.13", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsInletPoleSensorMinMaxResetTimeStamp": { + "name": "measurementsInletPoleSensorMinMaxResetTimeStamp", + "oid": "1.3.6.1.4.1.13742.6.5.2.4.1.14", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "inletLinePairSensorMeasurementsTable": { + "name": "inletLinePairSensorMeasurementsTable", + "oid": "1.3.6.1.4.1.13742.6.5.2.5", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "current" + }, + "inletLinePairSensorMeasurementsEntry": { + "name": "inletLinePairSensorMeasurementsEntry", + "oid": "1.3.6.1.4.1.13742.6.5.2.5.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "pduId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "inletId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "inletLinePairIndex", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "sensorType", + "implied": 0 + } + ], + "status": "current" + }, + "measurementsInletLinePairSensorIsAvailable": { + "name": "measurementsInletLinePairSensorIsAvailable", + "oid": "1.3.6.1.4.1.13742.6.5.2.5.1.2", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsInletLinePairSensorState": { + "name": "measurementsInletLinePairSensorState", + "oid": "1.3.6.1.4.1.13742.6.5.2.5.1.3", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "SensorStateEnumeration", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsInletLinePairSensorValue": { + "name": "measurementsInletLinePairSensorValue", + "oid": "1.3.6.1.4.1.13742.6.5.2.5.1.4", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsInletLinePairSensorTimeStamp": { + "name": "measurementsInletLinePairSensorTimeStamp", + "oid": "1.3.6.1.4.1.13742.6.5.2.5.1.5", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsInletLinePairSensorSignedValue": { + "name": "measurementsInletLinePairSensorSignedValue", + "oid": "1.3.6.1.4.1.13742.6.5.2.5.1.6", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsInletLinePairSensorMinMaxValid": { + "name": "measurementsInletLinePairSensorMinMaxValid", + "oid": "1.3.6.1.4.1.13742.6.5.2.5.1.7", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsInletLinePairSensorMinValue": { + "name": "measurementsInletLinePairSensorMinValue", + "oid": "1.3.6.1.4.1.13742.6.5.2.5.1.8", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsInletLinePairSensorSignedMinValue": { + "name": "measurementsInletLinePairSensorSignedMinValue", + "oid": "1.3.6.1.4.1.13742.6.5.2.5.1.9", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsInletLinePairSensorMinTimeStamp": { + "name": "measurementsInletLinePairSensorMinTimeStamp", + "oid": "1.3.6.1.4.1.13742.6.5.2.5.1.10", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsInletLinePairSensorMaxValue": { + "name": "measurementsInletLinePairSensorMaxValue", + "oid": "1.3.6.1.4.1.13742.6.5.2.5.1.11", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsInletLinePairSensorSignedMaxValue": { + "name": "measurementsInletLinePairSensorSignedMaxValue", + "oid": "1.3.6.1.4.1.13742.6.5.2.5.1.12", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsInletLinePairSensorMaxTimeStamp": { + "name": "measurementsInletLinePairSensorMaxTimeStamp", + "oid": "1.3.6.1.4.1.13742.6.5.2.5.1.13", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsInletLinePairSensorMinMaxResetTimeStamp": { + "name": "measurementsInletLinePairSensorMinMaxResetTimeStamp", + "oid": "1.3.6.1.4.1.13742.6.5.2.5.1.14", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "outletSensorMeasurementsTable": { + "name": "outletSensorMeasurementsTable", + "oid": "1.3.6.1.4.1.13742.6.5.4.3", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "current" + }, + "outletSensorMeasurementsEntry": { + "name": "outletSensorMeasurementsEntry", + "oid": "1.3.6.1.4.1.13742.6.5.4.3.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "pduId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "outletId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "sensorType", + "implied": 0 + } + ], + "status": "current" + }, + "measurementsOutletSensorIsAvailable": { + "name": "measurementsOutletSensorIsAvailable", + "oid": "1.3.6.1.4.1.13742.6.5.4.3.1.2", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsOutletSensorState": { + "name": "measurementsOutletSensorState", + "oid": "1.3.6.1.4.1.13742.6.5.4.3.1.3", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "SensorStateEnumeration", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsOutletSensorValue": { + "name": "measurementsOutletSensorValue", + "oid": "1.3.6.1.4.1.13742.6.5.4.3.1.4", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsOutletSensorTimeStamp": { + "name": "measurementsOutletSensorTimeStamp", + "oid": "1.3.6.1.4.1.13742.6.5.4.3.1.5", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsOutletSensorSignedValue": { + "name": "measurementsOutletSensorSignedValue", + "oid": "1.3.6.1.4.1.13742.6.5.4.3.1.6", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsOutletSensorMinMaxValid": { + "name": "measurementsOutletSensorMinMaxValid", + "oid": "1.3.6.1.4.1.13742.6.5.4.3.1.7", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsOutletSensorMinValue": { + "name": "measurementsOutletSensorMinValue", + "oid": "1.3.6.1.4.1.13742.6.5.4.3.1.8", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsOutletSensorSignedMinValue": { + "name": "measurementsOutletSensorSignedMinValue", + "oid": "1.3.6.1.4.1.13742.6.5.4.3.1.9", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsOutletSensorMinTimeStamp": { + "name": "measurementsOutletSensorMinTimeStamp", + "oid": "1.3.6.1.4.1.13742.6.5.4.3.1.10", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsOutletSensorMaxValue": { + "name": "measurementsOutletSensorMaxValue", + "oid": "1.3.6.1.4.1.13742.6.5.4.3.1.11", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsOutletSensorSignedMaxValue": { + "name": "measurementsOutletSensorSignedMaxValue", + "oid": "1.3.6.1.4.1.13742.6.5.4.3.1.12", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsOutletSensorMaxTimeStamp": { + "name": "measurementsOutletSensorMaxTimeStamp", + "oid": "1.3.6.1.4.1.13742.6.5.4.3.1.13", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsOutletSensorMinMaxResetTimeStamp": { + "name": "measurementsOutletSensorMinMaxResetTimeStamp", + "oid": "1.3.6.1.4.1.13742.6.5.4.3.1.14", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "outletPoleSensorMeasurementsTable": { + "name": "outletPoleSensorMeasurementsTable", + "oid": "1.3.6.1.4.1.13742.6.5.4.4", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "current" + }, + "outletPoleSensorMeasurementsEntry": { + "name": "outletPoleSensorMeasurementsEntry", + "oid": "1.3.6.1.4.1.13742.6.5.4.4.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "pduId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "outletId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "outletPoleIndex", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "sensorType", + "implied": 0 + } + ], + "status": "current" + }, + "measurementsOutletPoleSensorIsAvailable": { + "name": "measurementsOutletPoleSensorIsAvailable", + "oid": "1.3.6.1.4.1.13742.6.5.4.4.1.2", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsOutletPoleSensorState": { + "name": "measurementsOutletPoleSensorState", + "oid": "1.3.6.1.4.1.13742.6.5.4.4.1.3", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "SensorStateEnumeration", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsOutletPoleSensorValue": { + "name": "measurementsOutletPoleSensorValue", + "oid": "1.3.6.1.4.1.13742.6.5.4.4.1.4", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsOutletPoleSensorTimeStamp": { + "name": "measurementsOutletPoleSensorTimeStamp", + "oid": "1.3.6.1.4.1.13742.6.5.4.4.1.5", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsOutletPoleSensorSignedValue": { + "name": "measurementsOutletPoleSensorSignedValue", + "oid": "1.3.6.1.4.1.13742.6.5.4.4.1.6", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsOutletPoleSensorMinMaxValid": { + "name": "measurementsOutletPoleSensorMinMaxValid", + "oid": "1.3.6.1.4.1.13742.6.5.4.4.1.7", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsOutletPoleSensorMinValue": { + "name": "measurementsOutletPoleSensorMinValue", + "oid": "1.3.6.1.4.1.13742.6.5.4.4.1.8", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsOutletPoleSensorSignedMinValue": { + "name": "measurementsOutletPoleSensorSignedMinValue", + "oid": "1.3.6.1.4.1.13742.6.5.4.4.1.9", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsOutletPoleSensorMinTimeStamp": { + "name": "measurementsOutletPoleSensorMinTimeStamp", + "oid": "1.3.6.1.4.1.13742.6.5.4.4.1.10", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsOutletPoleSensorMaxValue": { + "name": "measurementsOutletPoleSensorMaxValue", + "oid": "1.3.6.1.4.1.13742.6.5.4.4.1.11", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsOutletPoleSensorSignedMaxValue": { + "name": "measurementsOutletPoleSensorSignedMaxValue", + "oid": "1.3.6.1.4.1.13742.6.5.4.4.1.12", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsOutletPoleSensorMaxTimeStamp": { + "name": "measurementsOutletPoleSensorMaxTimeStamp", + "oid": "1.3.6.1.4.1.13742.6.5.4.4.1.13", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsOutletPoleSensorMinMaxResetTimeStamp": { + "name": "measurementsOutletPoleSensorMinMaxResetTimeStamp", + "oid": "1.3.6.1.4.1.13742.6.5.4.4.1.14", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "overCurrentProtectorSensorMeasurementsTable": { + "name": "overCurrentProtectorSensorMeasurementsTable", + "oid": "1.3.6.1.4.1.13742.6.5.3.3", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "current" + }, + "overCurrentProtectorSensorMeasurementsEntry": { + "name": "overCurrentProtectorSensorMeasurementsEntry", + "oid": "1.3.6.1.4.1.13742.6.5.3.3.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "pduId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "overCurrentProtectorIndex", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "sensorType", + "implied": 0 + } + ], + "status": "current" + }, + "measurementsOverCurrentProtectorSensorIsAvailable": { + "name": "measurementsOverCurrentProtectorSensorIsAvailable", + "oid": "1.3.6.1.4.1.13742.6.5.3.3.1.2", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsOverCurrentProtectorSensorState": { + "name": "measurementsOverCurrentProtectorSensorState", + "oid": "1.3.6.1.4.1.13742.6.5.3.3.1.3", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "SensorStateEnumeration", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsOverCurrentProtectorSensorValue": { + "name": "measurementsOverCurrentProtectorSensorValue", + "oid": "1.3.6.1.4.1.13742.6.5.3.3.1.4", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsOverCurrentProtectorSensorTimeStamp": { + "name": "measurementsOverCurrentProtectorSensorTimeStamp", + "oid": "1.3.6.1.4.1.13742.6.5.3.3.1.5", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsOverCurrentProtectorSensorSignedValue": { + "name": "measurementsOverCurrentProtectorSensorSignedValue", + "oid": "1.3.6.1.4.1.13742.6.5.3.3.1.6", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsOverCurrentProtectorSensorMinMaxValid": { + "name": "measurementsOverCurrentProtectorSensorMinMaxValid", + "oid": "1.3.6.1.4.1.13742.6.5.3.3.1.7", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsOverCurrentProtectorSensorMinValue": { + "name": "measurementsOverCurrentProtectorSensorMinValue", + "oid": "1.3.6.1.4.1.13742.6.5.3.3.1.8", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsOverCurrentProtectorSensorSignedMinValue": { + "name": "measurementsOverCurrentProtectorSensorSignedMinValue", + "oid": "1.3.6.1.4.1.13742.6.5.3.3.1.9", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsOverCurrentProtectorSensorMinTimeStamp": { + "name": "measurementsOverCurrentProtectorSensorMinTimeStamp", + "oid": "1.3.6.1.4.1.13742.6.5.3.3.1.10", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsOverCurrentProtectorSensorMaxValue": { + "name": "measurementsOverCurrentProtectorSensorMaxValue", + "oid": "1.3.6.1.4.1.13742.6.5.3.3.1.11", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsOverCurrentProtectorSensorSignedMaxValue": { + "name": "measurementsOverCurrentProtectorSensorSignedMaxValue", + "oid": "1.3.6.1.4.1.13742.6.5.3.3.1.12", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsOverCurrentProtectorSensorMaxTimeStamp": { + "name": "measurementsOverCurrentProtectorSensorMaxTimeStamp", + "oid": "1.3.6.1.4.1.13742.6.5.3.3.1.13", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsOverCurrentProtectorSensorMinMaxResetTimeStamp": { + "name": "measurementsOverCurrentProtectorSensorMinMaxResetTimeStamp", + "oid": "1.3.6.1.4.1.13742.6.5.3.3.1.14", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "externalSensorMeasurementsTable": { + "name": "externalSensorMeasurementsTable", + "oid": "1.3.6.1.4.1.13742.6.5.5.3", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "current" + }, + "externalSensorMeasurementsEntry": { + "name": "externalSensorMeasurementsEntry", + "oid": "1.3.6.1.4.1.13742.6.5.5.3.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "pduId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "sensorID", + "implied": 0 + } + ], + "status": "current" + }, + "measurementsExternalSensorIsAvailable": { + "name": "measurementsExternalSensorIsAvailable", + "oid": "1.3.6.1.4.1.13742.6.5.5.3.1.2", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsExternalSensorState": { + "name": "measurementsExternalSensorState", + "oid": "1.3.6.1.4.1.13742.6.5.5.3.1.3", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "SensorStateEnumeration", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsExternalSensorValue": { + "name": "measurementsExternalSensorValue", + "oid": "1.3.6.1.4.1.13742.6.5.5.3.1.4", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsExternalSensorTimeStamp": { + "name": "measurementsExternalSensorTimeStamp", + "oid": "1.3.6.1.4.1.13742.6.5.5.3.1.5", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsExternalSensorMinMaxValid": { + "name": "measurementsExternalSensorMinMaxValid", + "oid": "1.3.6.1.4.1.13742.6.5.5.3.1.7", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsExternalSensorMinValue": { + "name": "measurementsExternalSensorMinValue", + "oid": "1.3.6.1.4.1.13742.6.5.5.3.1.8", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsExternalSensorMinTimeStamp": { + "name": "measurementsExternalSensorMinTimeStamp", + "oid": "1.3.6.1.4.1.13742.6.5.5.3.1.10", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsExternalSensorMaxValue": { + "name": "measurementsExternalSensorMaxValue", + "oid": "1.3.6.1.4.1.13742.6.5.5.3.1.11", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsExternalSensorMaxTimeStamp": { + "name": "measurementsExternalSensorMaxTimeStamp", + "oid": "1.3.6.1.4.1.13742.6.5.5.3.1.13", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsExternalSensorMinMaxResetTimeStamp": { + "name": "measurementsExternalSensorMinMaxResetTimeStamp", + "oid": "1.3.6.1.4.1.13742.6.5.5.3.1.14", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "wireSensorMeasurementsTable": { + "name": "wireSensorMeasurementsTable", + "oid": "1.3.6.1.4.1.13742.6.5.6.3", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "obsolete" + }, + "wireSensorMeasurementsEntry": { + "name": "wireSensorMeasurementsEntry", + "oid": "1.3.6.1.4.1.13742.6.5.6.3.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "pduId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "wireId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "sensorType", + "implied": 0 + } + ], + "status": "obsolete" + }, + "measurementsWireSensorIsAvailable": { + "name": "measurementsWireSensorIsAvailable", + "oid": "1.3.6.1.4.1.13742.6.5.6.3.1.2", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-only", + "status": "obsolete" + }, + "measurementsWireSensorState": { + "name": "measurementsWireSensorState", + "oid": "1.3.6.1.4.1.13742.6.5.6.3.1.3", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "SensorStateEnumeration", + "class": "type" + }, + "maxaccess": "read-only", + "status": "obsolete" + }, + "measurementsWireSensorValue": { + "name": "measurementsWireSensorValue", + "oid": "1.3.6.1.4.1.13742.6.5.6.3.1.4", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "obsolete" + }, + "measurementsWireSensorTimeStamp": { + "name": "measurementsWireSensorTimeStamp", + "oid": "1.3.6.1.4.1.13742.6.5.6.3.1.5", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "obsolete" + }, + "transferSwitchSensorMeasurementsTable": { + "name": "transferSwitchSensorMeasurementsTable", + "oid": "1.3.6.1.4.1.13742.6.5.7.3", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "current" + }, + "transferSwitchSensorMeasurementsEntry": { + "name": "transferSwitchSensorMeasurementsEntry", + "oid": "1.3.6.1.4.1.13742.6.5.7.3.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "pduId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "transferSwitchId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "sensorType", + "implied": 0 + } + ], + "status": "current" + }, + "measurementsTransferSwitchSensorIsAvailable": { + "name": "measurementsTransferSwitchSensorIsAvailable", + "oid": "1.3.6.1.4.1.13742.6.5.7.3.1.2", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsTransferSwitchSensorState": { + "name": "measurementsTransferSwitchSensorState", + "oid": "1.3.6.1.4.1.13742.6.5.7.3.1.3", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "SensorStateEnumeration", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsTransferSwitchSensorValue": { + "name": "measurementsTransferSwitchSensorValue", + "oid": "1.3.6.1.4.1.13742.6.5.7.3.1.4", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsTransferSwitchSensorTimeStamp": { + "name": "measurementsTransferSwitchSensorTimeStamp", + "oid": "1.3.6.1.4.1.13742.6.5.7.3.1.5", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsTransferSwitchSensorSignedValue": { + "name": "measurementsTransferSwitchSensorSignedValue", + "oid": "1.3.6.1.4.1.13742.6.5.7.3.1.6", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsTransferSwitchSensorMinMaxValid": { + "name": "measurementsTransferSwitchSensorMinMaxValid", + "oid": "1.3.6.1.4.1.13742.6.5.7.3.1.7", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsTransferSwitchSensorMinValue": { + "name": "measurementsTransferSwitchSensorMinValue", + "oid": "1.3.6.1.4.1.13742.6.5.7.3.1.8", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsTransferSwitchSensorSignedMinValue": { + "name": "measurementsTransferSwitchSensorSignedMinValue", + "oid": "1.3.6.1.4.1.13742.6.5.7.3.1.9", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsTransferSwitchSensorMinTimeStamp": { + "name": "measurementsTransferSwitchSensorMinTimeStamp", + "oid": "1.3.6.1.4.1.13742.6.5.7.3.1.10", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsTransferSwitchSensorMaxValue": { + "name": "measurementsTransferSwitchSensorMaxValue", + "oid": "1.3.6.1.4.1.13742.6.5.7.3.1.11", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsTransferSwitchSensorSignedMaxValue": { + "name": "measurementsTransferSwitchSensorSignedMaxValue", + "oid": "1.3.6.1.4.1.13742.6.5.7.3.1.12", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsTransferSwitchSensorMaxTimeStamp": { + "name": "measurementsTransferSwitchSensorMaxTimeStamp", + "oid": "1.3.6.1.4.1.13742.6.5.7.3.1.13", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsTransferSwitchSensorMinMaxResetTimeStamp": { + "name": "measurementsTransferSwitchSensorMinMaxResetTimeStamp", + "oid": "1.3.6.1.4.1.13742.6.5.7.3.1.14", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "circuitSensorMeasurementsTable": { + "name": "circuitSensorMeasurementsTable", + "oid": "1.3.6.1.4.1.13742.6.5.8.3", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "current" + }, + "circuitSensorMeasurementsEntry": { + "name": "circuitSensorMeasurementsEntry", + "oid": "1.3.6.1.4.1.13742.6.5.8.3.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "pduId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "circuitId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "sensorType", + "implied": 0 + } + ], + "status": "current" + }, + "measurementsCircuitSensorIsAvailable": { + "name": "measurementsCircuitSensorIsAvailable", + "oid": "1.3.6.1.4.1.13742.6.5.8.3.1.2", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsCircuitSensorState": { + "name": "measurementsCircuitSensorState", + "oid": "1.3.6.1.4.1.13742.6.5.8.3.1.3", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "SensorStateEnumeration", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsCircuitSensorValue": { + "name": "measurementsCircuitSensorValue", + "oid": "1.3.6.1.4.1.13742.6.5.8.3.1.4", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsCircuitSensorTimeStamp": { + "name": "measurementsCircuitSensorTimeStamp", + "oid": "1.3.6.1.4.1.13742.6.5.8.3.1.5", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsCircuitSensorSignedValue": { + "name": "measurementsCircuitSensorSignedValue", + "oid": "1.3.6.1.4.1.13742.6.5.8.3.1.6", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsCircuitSensorMinMaxValid": { + "name": "measurementsCircuitSensorMinMaxValid", + "oid": "1.3.6.1.4.1.13742.6.5.8.3.1.7", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsCircuitSensorMinValue": { + "name": "measurementsCircuitSensorMinValue", + "oid": "1.3.6.1.4.1.13742.6.5.8.3.1.8", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsCircuitSensorSignedMinValue": { + "name": "measurementsCircuitSensorSignedMinValue", + "oid": "1.3.6.1.4.1.13742.6.5.8.3.1.9", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsCircuitSensorMinTimeStamp": { + "name": "measurementsCircuitSensorMinTimeStamp", + "oid": "1.3.6.1.4.1.13742.6.5.8.3.1.10", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsCircuitSensorMaxValue": { + "name": "measurementsCircuitSensorMaxValue", + "oid": "1.3.6.1.4.1.13742.6.5.8.3.1.11", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsCircuitSensorSignedMaxValue": { + "name": "measurementsCircuitSensorSignedMaxValue", + "oid": "1.3.6.1.4.1.13742.6.5.8.3.1.12", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsCircuitSensorMaxTimeStamp": { + "name": "measurementsCircuitSensorMaxTimeStamp", + "oid": "1.3.6.1.4.1.13742.6.5.8.3.1.13", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsCircuitSensorMinMaxResetTimeStamp": { + "name": "measurementsCircuitSensorMinMaxResetTimeStamp", + "oid": "1.3.6.1.4.1.13742.6.5.8.3.1.14", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "circuitPoleSensorMeasurementsTable": { + "name": "circuitPoleSensorMeasurementsTable", + "oid": "1.3.6.1.4.1.13742.6.5.8.4", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "current" + }, + "circuitPoleSensorMeasurementsEntry": { + "name": "circuitPoleSensorMeasurementsEntry", + "oid": "1.3.6.1.4.1.13742.6.5.8.4.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "pduId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "circuitId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "circuitPoleId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "sensorType", + "implied": 0 + } + ], + "status": "current" + }, + "measurementsCircuitPoleSensorIsAvailable": { + "name": "measurementsCircuitPoleSensorIsAvailable", + "oid": "1.3.6.1.4.1.13742.6.5.8.4.1.2", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsCircuitPoleSensorState": { + "name": "measurementsCircuitPoleSensorState", + "oid": "1.3.6.1.4.1.13742.6.5.8.4.1.3", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "SensorStateEnumeration", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsCircuitPoleSensorValue": { + "name": "measurementsCircuitPoleSensorValue", + "oid": "1.3.6.1.4.1.13742.6.5.8.4.1.4", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsCircuitPoleSensorTimeStamp": { + "name": "measurementsCircuitPoleSensorTimeStamp", + "oid": "1.3.6.1.4.1.13742.6.5.8.4.1.5", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsCircuitPoleSensorSignedValue": { + "name": "measurementsCircuitPoleSensorSignedValue", + "oid": "1.3.6.1.4.1.13742.6.5.8.4.1.6", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsCircuitPoleSensorMinMaxValid": { + "name": "measurementsCircuitPoleSensorMinMaxValid", + "oid": "1.3.6.1.4.1.13742.6.5.8.4.1.7", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsCircuitPoleSensorMinValue": { + "name": "measurementsCircuitPoleSensorMinValue", + "oid": "1.3.6.1.4.1.13742.6.5.8.4.1.8", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsCircuitPoleSensorSignedMinValue": { + "name": "measurementsCircuitPoleSensorSignedMinValue", + "oid": "1.3.6.1.4.1.13742.6.5.8.4.1.9", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsCircuitPoleSensorMinTimeStamp": { + "name": "measurementsCircuitPoleSensorMinTimeStamp", + "oid": "1.3.6.1.4.1.13742.6.5.8.4.1.10", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsCircuitPoleSensorMaxValue": { + "name": "measurementsCircuitPoleSensorMaxValue", + "oid": "1.3.6.1.4.1.13742.6.5.8.4.1.11", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsCircuitPoleSensorSignedMaxValue": { + "name": "measurementsCircuitPoleSensorSignedMaxValue", + "oid": "1.3.6.1.4.1.13742.6.5.8.4.1.12", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsCircuitPoleSensorMaxTimeStamp": { + "name": "measurementsCircuitPoleSensorMaxTimeStamp", + "oid": "1.3.6.1.4.1.13742.6.5.8.4.1.13", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsCircuitPoleSensorMinMaxResetTimeStamp": { + "name": "measurementsCircuitPoleSensorMinMaxResetTimeStamp", + "oid": "1.3.6.1.4.1.13742.6.5.8.4.1.14", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "outletGroupSensorMeasurementsTable": { + "name": "outletGroupSensorMeasurementsTable", + "oid": "1.3.6.1.4.1.13742.6.5.9.3", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "current" + }, + "outletGroupSensorMeasurementsEntry": { + "name": "outletGroupSensorMeasurementsEntry", + "oid": "1.3.6.1.4.1.13742.6.5.9.3.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "outletGroupId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "sensorType", + "implied": 0 + } + ], + "status": "current" + }, + "measurementsOutletGroupSensorIsAvailable": { + "name": "measurementsOutletGroupSensorIsAvailable", + "oid": "1.3.6.1.4.1.13742.6.5.9.3.1.2", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsOutletGroupSensorState": { + "name": "measurementsOutletGroupSensorState", + "oid": "1.3.6.1.4.1.13742.6.5.9.3.1.3", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "SensorStateEnumeration", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsOutletGroupSensorValue": { + "name": "measurementsOutletGroupSensorValue", + "oid": "1.3.6.1.4.1.13742.6.5.9.3.1.4", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsOutletGroupSensorTimeStamp": { + "name": "measurementsOutletGroupSensorTimeStamp", + "oid": "1.3.6.1.4.1.13742.6.5.9.3.1.5", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsOutletGroupSensorSignedValue": { + "name": "measurementsOutletGroupSensorSignedValue", + "oid": "1.3.6.1.4.1.13742.6.5.9.3.1.6", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsOutletGroupSensorMinMaxValid": { + "name": "measurementsOutletGroupSensorMinMaxValid", + "oid": "1.3.6.1.4.1.13742.6.5.9.3.1.7", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsOutletGroupSensorMinValue": { + "name": "measurementsOutletGroupSensorMinValue", + "oid": "1.3.6.1.4.1.13742.6.5.9.3.1.8", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsOutletGroupSensorSignedMinValue": { + "name": "measurementsOutletGroupSensorSignedMinValue", + "oid": "1.3.6.1.4.1.13742.6.5.9.3.1.9", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsOutletGroupSensorMinTimeStamp": { + "name": "measurementsOutletGroupSensorMinTimeStamp", + "oid": "1.3.6.1.4.1.13742.6.5.9.3.1.10", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsOutletGroupSensorMaxValue": { + "name": "measurementsOutletGroupSensorMaxValue", + "oid": "1.3.6.1.4.1.13742.6.5.9.3.1.11", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsOutletGroupSensorSignedMaxValue": { + "name": "measurementsOutletGroupSensorSignedMaxValue", + "oid": "1.3.6.1.4.1.13742.6.5.9.3.1.12", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsOutletGroupSensorMaxTimeStamp": { + "name": "measurementsOutletGroupSensorMaxTimeStamp", + "oid": "1.3.6.1.4.1.13742.6.5.9.3.1.13", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "measurementsOutletGroupSensorMinMaxResetTimeStamp": { + "name": "measurementsOutletGroupSensorMinMaxResetTimeStamp", + "oid": "1.3.6.1.4.1.13742.6.5.9.3.1.14", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "outletSwitchControlTable": { + "name": "outletSwitchControlTable", + "oid": "1.3.6.1.4.1.13742.6.4.1.2", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "current" + }, + "outletSwitchControlEntry": { + "name": "outletSwitchControlEntry", + "oid": "1.3.6.1.4.1.13742.6.4.1.2.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "pduId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "outletId", + "implied": 0 + } + ], + "status": "current" + }, + "switchingOperation": { + "name": "switchingOperation", + "oid": "1.3.6.1.4.1.13742.6.4.1.2.1.2", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "OutletSwitchingOperationsEnumeration", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "outletSwitchingState": { + "name": "outletSwitchingState", + "oid": "1.3.6.1.4.1.13742.6.4.1.2.1.3", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "SensorStateEnumeration", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "outletSwitchingTimeStamp": { + "name": "outletSwitchingTimeStamp", + "oid": "1.3.6.1.4.1.13742.6.4.1.2.1.4", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "outletSuspendedState": { + "name": "outletSuspendedState", + "oid": "1.3.6.1.4.1.13742.6.4.1.2.1.5", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "transferSwitchControlTable": { + "name": "transferSwitchControlTable", + "oid": "1.3.6.1.4.1.13742.6.4.3.1", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "current" + }, + "transferSwitchControlEntry": { + "name": "transferSwitchControlEntry", + "oid": "1.3.6.1.4.1.13742.6.4.3.1.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "pduId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "transferSwitchId", + "implied": 0 + } + ], + "status": "current" + }, + "transferSwitchActiveInlet": { + "name": "transferSwitchActiveInlet", + "oid": "1.3.6.1.4.1.13742.6.4.3.1.1.1", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type", + "constraints": { + "range": [ + { + "min": 0, + "max": 64 + } + ] + } + }, + "maxaccess": "read-only", + "status": "current" + }, + "transferSwitchTransferToInlet": { + "name": "transferSwitchTransferToInlet", + "oid": "1.3.6.1.4.1.13742.6.4.3.1.1.2", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type", + "constraints": { + "range": [ + { + "min": 0, + "max": 64 + } + ] + } + }, + "maxaccess": "read-write", + "status": "current" + }, + "transferSwitchAlarmOverride": { + "name": "transferSwitchAlarmOverride", + "oid": "1.3.6.1.4.1.13742.6.4.3.1.1.3", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "transferSwitchLastTransferReason": { + "name": "transferSwitchLastTransferReason", + "oid": "1.3.6.1.4.1.13742.6.4.3.1.1.4", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TransferSwitchTransferReasonEnumeration", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "actuatorControlTable": { + "name": "actuatorControlTable", + "oid": "1.3.6.1.4.1.13742.6.4.4.2", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "current" + }, + "actuatorControlEntry": { + "name": "actuatorControlEntry", + "oid": "1.3.6.1.4.1.13742.6.4.4.2.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "pduId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "sensorID", + "implied": 0 + } + ], + "status": "current" + }, + "actuatorState": { + "name": "actuatorState", + "oid": "1.3.6.1.4.1.13742.6.4.4.2.1.2", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "SensorStateEnumeration", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "rcmSelfTestTable": { + "name": "rcmSelfTestTable", + "oid": "1.3.6.1.4.1.13742.6.4.5.2", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "current" + }, + "rcmSelfTestEntry": { + "name": "rcmSelfTestEntry", + "oid": "1.3.6.1.4.1.13742.6.4.5.2.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "pduId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "inletId", + "implied": 0 + } + ], + "status": "current" + }, + "rcmState": { + "name": "rcmState", + "oid": "1.3.6.1.4.1.13742.6.4.5.2.1.2", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "SensorStateEnumeration", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "overCurrentProtectorRcmSelfTestTable": { + "name": "overCurrentProtectorRcmSelfTestTable", + "oid": "1.3.6.1.4.1.13742.6.4.5.3", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "current" + }, + "overCurrentProtectorRcmSelfTestEntry": { + "name": "overCurrentProtectorRcmSelfTestEntry", + "oid": "1.3.6.1.4.1.13742.6.4.5.3.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "pduId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "overCurrentProtectorIndex", + "implied": 0 + } + ], + "status": "current" + }, + "overCurrentProtectorRcmState": { + "name": "overCurrentProtectorRcmState", + "oid": "1.3.6.1.4.1.13742.6.4.5.3.1.2", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "SensorStateEnumeration", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "inletSensorControlTable": { + "name": "inletSensorControlTable", + "oid": "1.3.6.1.4.1.13742.6.4.6.1", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "current" + }, + "inletSensorControlEntry": { + "name": "inletSensorControlEntry", + "oid": "1.3.6.1.4.1.13742.6.4.6.1.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "pduId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "inletId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "sensorType", + "implied": 0 + } + ], + "status": "current" + }, + "inletSensorResetValue": { + "name": "inletSensorResetValue", + "oid": "1.3.6.1.4.1.13742.6.4.6.1.1.1", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "inletSensorResetMinMax": { + "name": "inletSensorResetMinMax", + "oid": "1.3.6.1.4.1.13742.6.4.6.1.1.2", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "inletPoleSensorControlTable": { + "name": "inletPoleSensorControlTable", + "oid": "1.3.6.1.4.1.13742.6.4.6.2", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "current" + }, + "inletPoleSensorControlEntry": { + "name": "inletPoleSensorControlEntry", + "oid": "1.3.6.1.4.1.13742.6.4.6.2.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "pduId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "inletId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "inletPoleIndex", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "sensorType", + "implied": 0 + } + ], + "status": "current" + }, + "inletPoleSensorResetMinMax": { + "name": "inletPoleSensorResetMinMax", + "oid": "1.3.6.1.4.1.13742.6.4.6.2.1.2", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "inletLinePairSensorControlTable": { + "name": "inletLinePairSensorControlTable", + "oid": "1.3.6.1.4.1.13742.6.4.6.3", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "current" + }, + "inletLinePairSensorControlEntry": { + "name": "inletLinePairSensorControlEntry", + "oid": "1.3.6.1.4.1.13742.6.4.6.3.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "pduId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "inletId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "inletLinePairIndex", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "sensorType", + "implied": 0 + } + ], + "status": "current" + }, + "inletLinePairSensorResetMinMax": { + "name": "inletLinePairSensorResetMinMax", + "oid": "1.3.6.1.4.1.13742.6.4.6.3.1.2", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "outletSensorControlTable": { + "name": "outletSensorControlTable", + "oid": "1.3.6.1.4.1.13742.6.4.7.1", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "current" + }, + "outletSensorControlEntry": { + "name": "outletSensorControlEntry", + "oid": "1.3.6.1.4.1.13742.6.4.7.1.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "pduId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "outletId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "sensorType", + "implied": 0 + } + ], + "status": "current" + }, + "outletSensorResetValue": { + "name": "outletSensorResetValue", + "oid": "1.3.6.1.4.1.13742.6.4.7.1.1.1", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "outletSensorResetMinMax": { + "name": "outletSensorResetMinMax", + "oid": "1.3.6.1.4.1.13742.6.4.7.1.1.2", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "outletPoleSensorControlTable": { + "name": "outletPoleSensorControlTable", + "oid": "1.3.6.1.4.1.13742.6.4.7.2", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "current" + }, + "outletPoleSensorControlEntry": { + "name": "outletPoleSensorControlEntry", + "oid": "1.3.6.1.4.1.13742.6.4.7.2.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "pduId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "outletId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "outletPoleIndex", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "sensorType", + "implied": 0 + } + ], + "status": "current" + }, + "outletPoleSensorResetMinMax": { + "name": "outletPoleSensorResetMinMax", + "oid": "1.3.6.1.4.1.13742.6.4.7.2.1.2", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "unitSensorControlTable": { + "name": "unitSensorControlTable", + "oid": "1.3.6.1.4.1.13742.6.4.8.1", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "current" + }, + "unitSensorControlEntry": { + "name": "unitSensorControlEntry", + "oid": "1.3.6.1.4.1.13742.6.4.8.1.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "pduId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "sensorType", + "implied": 0 + } + ], + "status": "current" + }, + "unitSensorResetValue": { + "name": "unitSensorResetValue", + "oid": "1.3.6.1.4.1.13742.6.4.8.1.1.1", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "unitSensorResetMinMax": { + "name": "unitSensorResetMinMax", + "oid": "1.3.6.1.4.1.13742.6.4.8.1.1.2", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "overCurrentProtectorSensorControlTable": { + "name": "overCurrentProtectorSensorControlTable", + "oid": "1.3.6.1.4.1.13742.6.4.13.1", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "current" + }, + "overCurrentProtectorSensorControlEntry": { + "name": "overCurrentProtectorSensorControlEntry", + "oid": "1.3.6.1.4.1.13742.6.4.13.1.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "pduId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "overCurrentProtectorIndex", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "sensorType", + "implied": 0 + } + ], + "status": "current" + }, + "overCurrentProtectorSensorResetMinMax": { + "name": "overCurrentProtectorSensorResetMinMax", + "oid": "1.3.6.1.4.1.13742.6.4.13.1.1.2", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "externalSensorControlTable": { + "name": "externalSensorControlTable", + "oid": "1.3.6.1.4.1.13742.6.4.2.1", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "current" + }, + "externalSensorControlEntry": { + "name": "externalSensorControlEntry", + "oid": "1.3.6.1.4.1.13742.6.4.2.1.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "pduId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "sensorID", + "implied": 0 + } + ], + "status": "current" + }, + "externalSensorResetMinMax": { + "name": "externalSensorResetMinMax", + "oid": "1.3.6.1.4.1.13742.6.4.2.1.1.2", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "transferSwitchSensorControlTable": { + "name": "transferSwitchSensorControlTable", + "oid": "1.3.6.1.4.1.13742.6.4.14.1", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "current" + }, + "transferSwitchSensorControlEntry": { + "name": "transferSwitchSensorControlEntry", + "oid": "1.3.6.1.4.1.13742.6.4.14.1.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "pduId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "transferSwitchId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "sensorType", + "implied": 0 + } + ], + "status": "current" + }, + "transferSwitchSensorResetMinMax": { + "name": "transferSwitchSensorResetMinMax", + "oid": "1.3.6.1.4.1.13742.6.4.14.1.1.2", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "circuitSensorControlTable": { + "name": "circuitSensorControlTable", + "oid": "1.3.6.1.4.1.13742.6.4.9.1", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "current" + }, + "circuitSensorControlEntry": { + "name": "circuitSensorControlEntry", + "oid": "1.3.6.1.4.1.13742.6.4.9.1.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "pduId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "circuitId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "sensorType", + "implied": 0 + } + ], + "status": "current" + }, + "circuitSensorResetValue": { + "name": "circuitSensorResetValue", + "oid": "1.3.6.1.4.1.13742.6.4.9.1.1.1", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "circuitSensorResetMinMax": { + "name": "circuitSensorResetMinMax", + "oid": "1.3.6.1.4.1.13742.6.4.9.1.1.2", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "circuitPoleSensorControlTable": { + "name": "circuitPoleSensorControlTable", + "oid": "1.3.6.1.4.1.13742.6.4.9.2", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "current" + }, + "circuitPoleSensorControlEntry": { + "name": "circuitPoleSensorControlEntry", + "oid": "1.3.6.1.4.1.13742.6.4.9.2.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "pduId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "circuitId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "circuitPoleId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "sensorType", + "implied": 0 + } + ], + "status": "current" + }, + "circuitPoleSensorResetMinMax": { + "name": "circuitPoleSensorResetMinMax", + "oid": "1.3.6.1.4.1.13742.6.4.9.2.1.2", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "outletGroupSwitchControlTable": { + "name": "outletGroupSwitchControlTable", + "oid": "1.3.6.1.4.1.13742.6.4.10.2", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "current" + }, + "outletGroupSwitchControlEntry": { + "name": "outletGroupSwitchControlEntry", + "oid": "1.3.6.1.4.1.13742.6.4.10.2.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "outletGroupId", + "implied": 0 + } + ], + "status": "current" + }, + "outletGroupSwitchingOperation": { + "name": "outletGroupSwitchingOperation", + "oid": "1.3.6.1.4.1.13742.6.4.10.2.1.2", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "OutletSwitchingOperationsEnumeration", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "outletGroupSensorControlTable": { + "name": "outletGroupSensorControlTable", + "oid": "1.3.6.1.4.1.13742.6.4.11.1", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "current" + }, + "outletGroupSensorControlEntry": { + "name": "outletGroupSensorControlEntry", + "oid": "1.3.6.1.4.1.13742.6.4.11.1.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "outletGroupId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "sensorType", + "implied": 0 + } + ], + "status": "current" + }, + "outletGroupSensorResetValue": { + "name": "outletGroupSensorResetValue", + "oid": "1.3.6.1.4.1.13742.6.4.11.1.1.1", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "outletGroupSensorResetMinMax": { + "name": "outletGroupSensorResetMinMax", + "oid": "1.3.6.1.4.1.13742.6.4.11.1.1.2", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "serverPowerControlTable": { + "name": "serverPowerControlTable", + "oid": "1.3.6.1.4.1.13742.6.4.12.1", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "current" + }, + "serverPowerControlEntry": { + "name": "serverPowerControlEntry", + "oid": "1.3.6.1.4.1.13742.6.4.12.1.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "pduId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "serverID", + "implied": 0 + } + ], + "status": "current" + }, + "serverPowerControlOperation": { + "name": "serverPowerControlOperation", + "oid": "1.3.6.1.4.1.13742.6.4.12.1.1.1", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "ServerPowerStateEnumeration", + "class": "type" + }, + "maxaccess": "read-write", + "status": "current" + }, + "reliabilityDataTableSequenceNumber": { + "name": "reliabilityDataTableSequenceNumber", + "oid": "1.3.6.1.4.1.13742.6.10.1.1", + "nodetype": "scalar", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type", + "constraints": { + "range": [ + { + "min": 1, + "max": 2147483647 + } + ] + } + }, + "maxaccess": "read-only", + "status": "current" + }, + "reliabilityDataTable": { + "name": "reliabilityDataTable", + "oid": "1.3.6.1.4.1.13742.6.10.1.2", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "current" + }, + "reliabilityDataEntry": { + "name": "reliabilityDataEntry", + "oid": "1.3.6.1.4.1.13742.6.10.1.2.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "reliabilityIndex", + "implied": 0 + } + ], + "status": "current" + }, + "reliabilityIndex": { + "name": "reliabilityIndex", + "oid": "1.3.6.1.4.1.13742.6.10.1.2.1.1", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type", + "constraints": { + "range": [ + { + "min": 1, + "max": 4096 + } + ] + } + }, + "maxaccess": "not-accessible", + "status": "current" + }, + "reliabilityId": { + "name": "reliabilityId", + "oid": "1.3.6.1.4.1.13742.6.10.1.2.1.2", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "reliabilityDataValue": { + "name": "reliabilityDataValue", + "oid": "1.3.6.1.4.1.13742.6.10.1.2.1.3", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "reliabilityDataMaxPossible": { + "name": "reliabilityDataMaxPossible", + "oid": "1.3.6.1.4.1.13742.6.10.1.2.1.4", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "reliabilityDataWorstValue": { + "name": "reliabilityDataWorstValue", + "oid": "1.3.6.1.4.1.13742.6.10.1.2.1.5", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "reliabilityDataThreshold": { + "name": "reliabilityDataThreshold", + "oid": "1.3.6.1.4.1.13742.6.10.1.2.1.6", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "reliabilityDataRawUpperBytes": { + "name": "reliabilityDataRawUpperBytes", + "oid": "1.3.6.1.4.1.13742.6.10.1.2.1.7", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "reliabilityDataRawLowerBytes": { + "name": "reliabilityDataRawLowerBytes", + "oid": "1.3.6.1.4.1.13742.6.10.1.2.1.8", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "reliabilityDataFlags": { + "name": "reliabilityDataFlags", + "oid": "1.3.6.1.4.1.13742.6.10.1.2.1.9", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Bits", + "class": "type", + "bits": { + "invalidFlag": 0, + "oldValue": 1, + "criticalEntry": 2 + } + }, + "maxaccess": "read-only", + "status": "current" + }, + "reliabilityErrorLogTable": { + "name": "reliabilityErrorLogTable", + "oid": "1.3.6.1.4.1.13742.6.10.2.2", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "current" + }, + "reliabilityErrorLogEntry": { + "name": "reliabilityErrorLogEntry", + "oid": "1.3.6.1.4.1.13742.6.10.2.2.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "reliabilityErrorLogIndex", + "implied": 0 + } + ], + "status": "current" + }, + "reliabilityErrorLogIndex": { + "name": "reliabilityErrorLogIndex", + "oid": "1.3.6.1.4.1.13742.6.10.2.2.1.1", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type", + "constraints": { + "range": [ + { + "min": 1, + "max": 2147483647 + } + ] + } + }, + "maxaccess": "not-accessible", + "status": "current" + }, + "reliabilityErrorLogId": { + "name": "reliabilityErrorLogId", + "oid": "1.3.6.1.4.1.13742.6.10.2.2.1.2", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "reliabilityErrorLogValue": { + "name": "reliabilityErrorLogValue", + "oid": "1.3.6.1.4.1.13742.6.10.2.2.1.3", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "reliabilityErrorLogThreshold": { + "name": "reliabilityErrorLogThreshold", + "oid": "1.3.6.1.4.1.13742.6.10.2.2.1.6", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "reliabilityErrorLogRawUpperBytes": { + "name": "reliabilityErrorLogRawUpperBytes", + "oid": "1.3.6.1.4.1.13742.6.10.2.2.1.7", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "reliabilityErrorLogRawLowerBytes": { + "name": "reliabilityErrorLogRawLowerBytes", + "oid": "1.3.6.1.4.1.13742.6.10.2.2.1.8", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "reliabilityErrorLogPOH": { + "name": "reliabilityErrorLogPOH", + "oid": "1.3.6.1.4.1.13742.6.10.2.2.1.9", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "reliabilityErrorLogTime": { + "name": "reliabilityErrorLogTime", + "oid": "1.3.6.1.4.1.13742.6.10.2.2.1.10", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "hwFailureTable": { + "name": "hwFailureTable", + "oid": "1.3.6.1.4.1.13742.6.10.3.1", + "nodetype": "table", + "class": "objecttype", + "maxaccess": "not-accessible", + "status": "current" + }, + "hwFailureEntry": { + "name": "hwFailureEntry", + "oid": "1.3.6.1.4.1.13742.6.10.3.1.1", + "nodetype": "row", + "class": "objecttype", + "maxaccess": "not-accessible", + "indices": [ + { + "module": "PDU2-MIB", + "object": "pduId", + "implied": 0 + }, + { + "module": "PDU2-MIB", + "object": "hwFailureIndex", + "implied": 0 + } + ], + "status": "current" + }, + "hwFailureIndex": { + "name": "hwFailureIndex", + "oid": "1.3.6.1.4.1.13742.6.10.3.1.1.1", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Integer32", + "class": "type", + "constraints": { + "range": [ + { + "min": 1, + "max": 65535 + } + ] + } + }, + "maxaccess": "not-accessible", + "status": "current" + }, + "hwFailureComponentId": { + "name": "hwFailureComponentId", + "oid": "1.3.6.1.4.1.13742.6.10.3.1.1.2", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "DisplayString", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "hwFailureType": { + "name": "hwFailureType", + "oid": "1.3.6.1.4.1.13742.6.10.3.1.1.3", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "HwFailureTypeEnumeration", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "hwFailureAsserted": { + "name": "hwFailureAsserted", + "oid": "1.3.6.1.4.1.13742.6.10.3.1.1.4", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "TruthValue", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "hwFailureLastAssertTimeStamp": { + "name": "hwFailureLastAssertTimeStamp", + "oid": "1.3.6.1.4.1.13742.6.10.3.1.1.5", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "hwFailureLastDeassertTimeStamp": { + "name": "hwFailureLastDeassertTimeStamp", + "oid": "1.3.6.1.4.1.13742.6.10.3.1.1.6", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "hwFailureAssertCount": { + "name": "hwFailureAssertCount", + "oid": "1.3.6.1.4.1.13742.6.10.3.1.1.7", + "nodetype": "column", + "class": "objecttype", + "syntax": { + "type": "Unsigned32", + "class": "type" + }, + "maxaccess": "read-only", + "status": "current" + }, + "systemStarted": { + "name": "systemStarted", + "oid": "1.3.6.1.4.1.13742.6.0.1", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + }, + { + "module": "PDU2-MIB", + "object": "pduNumber" + } + ], + "status": "current" + }, + "systemReset": { + "name": "systemReset", + "oid": "1.3.6.1.4.1.13742.6.0.2", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "userName" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + }, + { + "module": "PDU2-MIB", + "object": "pduNumber" + } + ], + "status": "current" + }, + "userLogin": { + "name": "userLogin", + "oid": "1.3.6.1.4.1.13742.6.0.3", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "userName" + }, + { + "module": "PDU2-MIB", + "object": "pxIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + } + ], + "status": "current" + }, + "userLogout": { + "name": "userLogout", + "oid": "1.3.6.1.4.1.13742.6.0.4", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "userName" + }, + { + "module": "PDU2-MIB", + "object": "pxIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + } + ], + "status": "current" + }, + "userAuthenticationFailure": { + "name": "userAuthenticationFailure", + "oid": "1.3.6.1.4.1.13742.6.0.5", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "userName" + }, + { + "module": "PDU2-MIB", + "object": "pxIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + } + ], + "status": "current" + }, + "userSessionTimeout": { + "name": "userSessionTimeout", + "oid": "1.3.6.1.4.1.13742.6.0.8", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "userName" + }, + { + "module": "PDU2-MIB", + "object": "pxIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + } + ], + "status": "current" + }, + "userAdded": { + "name": "userAdded", + "oid": "1.3.6.1.4.1.13742.6.0.11", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "userName" + }, + { + "module": "PDU2-MIB", + "object": "targetUser" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + } + ], + "status": "current" + }, + "userModified": { + "name": "userModified", + "oid": "1.3.6.1.4.1.13742.6.0.12", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "userName" + }, + { + "module": "PDU2-MIB", + "object": "targetUser" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + } + ], + "status": "current" + }, + "userDeleted": { + "name": "userDeleted", + "oid": "1.3.6.1.4.1.13742.6.0.13", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "userName" + }, + { + "module": "PDU2-MIB", + "object": "targetUser" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + } + ], + "status": "current" + }, + "roleAdded": { + "name": "roleAdded", + "oid": "1.3.6.1.4.1.13742.6.0.14", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "userName" + }, + { + "module": "PDU2-MIB", + "object": "roleName" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + } + ], + "status": "current" + }, + "roleModified": { + "name": "roleModified", + "oid": "1.3.6.1.4.1.13742.6.0.15", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "userName" + }, + { + "module": "PDU2-MIB", + "object": "roleName" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + } + ], + "status": "current" + }, + "roleDeleted": { + "name": "roleDeleted", + "oid": "1.3.6.1.4.1.13742.6.0.16", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "userName" + }, + { + "module": "PDU2-MIB", + "object": "roleName" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + } + ], + "status": "current" + }, + "deviceUpdateStarted": { + "name": "deviceUpdateStarted", + "oid": "1.3.6.1.4.1.13742.6.0.20", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "userName" + }, + { + "module": "PDU2-MIB", + "object": "pxIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "PDU2-MIB", + "object": "imageVersion" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + }, + { + "module": "PDU2-MIB", + "object": "pduNumber" + } + ], + "status": "current" + }, + "deviceUpdateCompleted": { + "name": "deviceUpdateCompleted", + "oid": "1.3.6.1.4.1.13742.6.0.21", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "userName" + }, + { + "module": "PDU2-MIB", + "object": "pxIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "PDU2-MIB", + "object": "imageVersion" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + }, + { + "module": "PDU2-MIB", + "object": "pduNumber" + } + ], + "status": "current" + }, + "userBlocked": { + "name": "userBlocked", + "oid": "1.3.6.1.4.1.13742.6.0.22", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "userName" + }, + { + "module": "PDU2-MIB", + "object": "pxIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + } + ], + "status": "current" + }, + "powerControl": { + "name": "powerControl", + "oid": "1.3.6.1.4.1.13742.6.0.23", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "userName" + }, + { + "module": "PDU2-MIB", + "object": "pxIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "PDU2-MIB", + "object": "outletLabel" + }, + { + "module": "PDU2-MIB", + "object": "measurementsOutletSensorState" + }, + { + "module": "PDU2-MIB", + "object": "switchingOperation" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + }, + { + "module": "PDU2-MIB", + "object": "pduNumber" + } + ], + "status": "current" + }, + "userPasswordChanged": { + "name": "userPasswordChanged", + "oid": "1.3.6.1.4.1.13742.6.0.24", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "userName" + }, + { + "module": "PDU2-MIB", + "object": "targetUser" + }, + { + "module": "PDU2-MIB", + "object": "pxIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + } + ], + "status": "current" + }, + "passwordSettingsChanged": { + "name": "passwordSettingsChanged", + "oid": "1.3.6.1.4.1.13742.6.0.28", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "userName" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + } + ], + "status": "current" + }, + "firmwareValidationFailed": { + "name": "firmwareValidationFailed", + "oid": "1.3.6.1.4.1.13742.6.0.38", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "userName" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + }, + { + "module": "PDU2-MIB", + "object": "pduNumber" + } + ], + "status": "current" + }, + "logFileCleared": { + "name": "logFileCleared", + "oid": "1.3.6.1.4.1.13742.6.0.41", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "userName" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + } + ], + "status": "current" + }, + "bulkConfigurationSaved": { + "name": "bulkConfigurationSaved", + "oid": "1.3.6.1.4.1.13742.6.0.53", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "userName" + }, + { + "module": "PDU2-MIB", + "object": "pxIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + }, + { + "module": "PDU2-MIB", + "object": "pduNumber" + } + ], + "status": "current" + }, + "bulkConfigurationCopied": { + "name": "bulkConfigurationCopied", + "oid": "1.3.6.1.4.1.13742.6.0.54", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "userName" + }, + { + "module": "PDU2-MIB", + "object": "pxIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + }, + { + "module": "PDU2-MIB", + "object": "pduNumber" + } + ], + "status": "current" + }, + "pduSensorStateChange": { + "name": "pduSensorStateChange", + "oid": "1.3.6.1.4.1.13742.6.0.60", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "pduNumber" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "PDU2-MIB", + "object": "typeOfSensor" + }, + { + "module": "PDU2-MIB", + "object": "measurementsUnitSensorTimeStamp" + }, + { + "module": "PDU2-MIB", + "object": "measurementsUnitSensorValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsUnitSensorState" + }, + { + "module": "PDU2-MIB", + "object": "measurementsUnitSensorSignedValue" + }, + { + "module": "PDU2-MIB", + "object": "oldSensorState" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + } + ], + "status": "deprecated" + }, + "inletSensorStateChange": { + "name": "inletSensorStateChange", + "oid": "1.3.6.1.4.1.13742.6.0.61", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "pduNumber" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "PDU2-MIB", + "object": "inletLabel" + }, + { + "module": "PDU2-MIB", + "object": "typeOfSensor" + }, + { + "module": "PDU2-MIB", + "object": "measurementsInletSensorTimeStamp" + }, + { + "module": "PDU2-MIB", + "object": "measurementsInletSensorValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsInletSensorState" + }, + { + "module": "PDU2-MIB", + "object": "measurementsInletSensorSignedValue" + }, + { + "module": "PDU2-MIB", + "object": "oldSensorState" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + } + ], + "status": "current" + }, + "inletPoleSensorStateChange": { + "name": "inletPoleSensorStateChange", + "oid": "1.3.6.1.4.1.13742.6.0.62", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "pduNumber" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "PDU2-MIB", + "object": "inletLabel" + }, + { + "module": "PDU2-MIB", + "object": "inletPoleNumber" + }, + { + "module": "PDU2-MIB", + "object": "typeOfSensor" + }, + { + "module": "PDU2-MIB", + "object": "measurementsInletPoleSensorTimeStamp" + }, + { + "module": "PDU2-MIB", + "object": "measurementsInletPoleSensorValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsInletPoleSensorState" + }, + { + "module": "PDU2-MIB", + "object": "measurementsInletPoleSensorSignedValue" + }, + { + "module": "PDU2-MIB", + "object": "oldSensorState" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + } + ], + "status": "current" + }, + "outletSensorStateChange": { + "name": "outletSensorStateChange", + "oid": "1.3.6.1.4.1.13742.6.0.63", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "pduNumber" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "PDU2-MIB", + "object": "outletLabel" + }, + { + "module": "PDU2-MIB", + "object": "typeOfSensor" + }, + { + "module": "PDU2-MIB", + "object": "measurementsOutletSensorTimeStamp" + }, + { + "module": "PDU2-MIB", + "object": "measurementsOutletSensorValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsOutletSensorState" + }, + { + "module": "PDU2-MIB", + "object": "measurementsOutletSensorSignedValue" + }, + { + "module": "PDU2-MIB", + "object": "oldSensorState" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + } + ], + "status": "current" + }, + "outletPoleSensorStateChange": { + "name": "outletPoleSensorStateChange", + "oid": "1.3.6.1.4.1.13742.6.0.64", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "pduNumber" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "PDU2-MIB", + "object": "outletLabel" + }, + { + "module": "PDU2-MIB", + "object": "outletPoleNumber" + }, + { + "module": "PDU2-MIB", + "object": "typeOfSensor" + }, + { + "module": "PDU2-MIB", + "object": "measurementsOutletPoleSensorTimeStamp" + }, + { + "module": "PDU2-MIB", + "object": "measurementsOutletPoleSensorValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsOutletPoleSensorState" + }, + { + "module": "PDU2-MIB", + "object": "measurementsOutletPoleSensorSignedValue" + }, + { + "module": "PDU2-MIB", + "object": "oldSensorState" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + } + ], + "status": "current" + }, + "overCurrentProtectorSensorStateChange": { + "name": "overCurrentProtectorSensorStateChange", + "oid": "1.3.6.1.4.1.13742.6.0.65", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "pduNumber" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "PDU2-MIB", + "object": "overCurrentProtectorLabel" + }, + { + "module": "PDU2-MIB", + "object": "typeOfSensor" + }, + { + "module": "PDU2-MIB", + "object": "measurementsOverCurrentProtectorSensorTimeStamp" + }, + { + "module": "PDU2-MIB", + "object": "measurementsOverCurrentProtectorSensorValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsOverCurrentProtectorSensorState" + }, + { + "module": "PDU2-MIB", + "object": "measurementsOverCurrentProtectorSensorSignedValue" + }, + { + "module": "PDU2-MIB", + "object": "oldSensorState" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + }, + { + "module": "PDU2-MIB", + "object": "suspectedTripCauseLabel" + } + ], + "status": "current" + }, + "externalSensorStateChange": { + "name": "externalSensorStateChange", + "oid": "1.3.6.1.4.1.13742.6.0.66", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "pduNumber" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "PDU2-MIB", + "object": "externalSensorNumber" + }, + { + "module": "PDU2-MIB", + "object": "typeOfSensor" + }, + { + "module": "PDU2-MIB", + "object": "measurementsExternalSensorTimeStamp" + }, + { + "module": "PDU2-MIB", + "object": "measurementsExternalSensorValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsExternalSensorState" + }, + { + "module": "PDU2-MIB", + "object": "oldSensorState" + }, + { + "module": "PDU2-MIB", + "object": "externalSensorSerialNumber" + }, + { + "module": "PDU2-MIB", + "object": "externalOnOffSensorSubtype" + }, + { + "module": "PDU2-MIB", + "object": "externalSensorChannelNumber" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + }, + { + "module": "PDU2-MIB", + "object": "externalSensorName" + } + ], + "status": "current" + }, + "smtpMessageTransmissionFailure": { + "name": "smtpMessageTransmissionFailure", + "oid": "1.3.6.1.4.1.13742.6.0.67", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "PDU2-MIB", + "object": "smtpMessageRecipients" + }, + { + "module": "PDU2-MIB", + "object": "smtpServer" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + } + ], + "status": "current" + }, + "ldapError": { + "name": "ldapError", + "oid": "1.3.6.1.4.1.13742.6.0.68", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "PDU2-MIB", + "object": "errorDescription" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + } + ], + "status": "current" + }, + "deviceUpdateFailed": { + "name": "deviceUpdateFailed", + "oid": "1.3.6.1.4.1.13742.6.0.70", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "userName" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "PDU2-MIB", + "object": "imageVersion" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + }, + { + "module": "PDU2-MIB", + "object": "pduNumber" + } + ], + "status": "current" + }, + "loadSheddingModeEntered": { + "name": "loadSheddingModeEntered", + "oid": "1.3.6.1.4.1.13742.6.0.71", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "userName" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + }, + { + "module": "PDU2-MIB", + "object": "pduNumber" + } + ], + "status": "current" + }, + "loadSheddingModeExited": { + "name": "loadSheddingModeExited", + "oid": "1.3.6.1.4.1.13742.6.0.72", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "userName" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + }, + { + "module": "PDU2-MIB", + "object": "pduNumber" + } + ], + "status": "current" + }, + "pingServerEnabled": { + "name": "pingServerEnabled", + "oid": "1.3.6.1.4.1.13742.6.0.73", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "userName" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "PDU2-MIB", + "object": "serverIPAddress" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + } + ], + "status": "current" + }, + "pingServerDisabled": { + "name": "pingServerDisabled", + "oid": "1.3.6.1.4.1.13742.6.0.74", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "userName" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "PDU2-MIB", + "object": "serverIPAddress" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + } + ], + "status": "current" + }, + "serverNotReachable": { + "name": "serverNotReachable", + "oid": "1.3.6.1.4.1.13742.6.0.75", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "PDU2-MIB", + "object": "serverIPAddress" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + } + ], + "status": "current" + }, + "serverReachable": { + "name": "serverReachable", + "oid": "1.3.6.1.4.1.13742.6.0.76", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "PDU2-MIB", + "object": "serverIPAddress" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + } + ], + "status": "current" + }, + "rfCodeTagConnected": { + "name": "rfCodeTagConnected", + "oid": "1.3.6.1.4.1.13742.6.0.77", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + } + ], + "status": "deprecated" + }, + "rfCodeTagDisconnected": { + "name": "rfCodeTagDisconnected", + "oid": "1.3.6.1.4.1.13742.6.0.78", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + } + ], + "status": "deprecated" + }, + "deviceIdentificationChanged": { + "name": "deviceIdentificationChanged", + "oid": "1.3.6.1.4.1.13742.6.0.79", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "PDU2-MIB", + "object": "userName" + }, + { + "module": "PDU2-MIB", + "object": "deviceChangedParameter" + }, + { + "module": "PDU2-MIB", + "object": "changedParameterNewValue" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + }, + { + "module": "PDU2-MIB", + "object": "pduNumber" + } + ], + "status": "current" + }, + "usbExpansionUnitConnected": { + "name": "usbExpansionUnitConnected", + "oid": "1.3.6.1.4.1.13742.6.0.80", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + } + ], + "status": "current" + }, + "usbExpansionUnitDisconnected": { + "name": "usbExpansionUnitDisconnected", + "oid": "1.3.6.1.4.1.13742.6.0.81", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + } + ], + "status": "current" + }, + "lhxSupportChanged": { + "name": "lhxSupportChanged", + "oid": "1.3.6.1.4.1.13742.6.0.82", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "userName" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "lhxSupportEnabled" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + } + ], + "status": "deprecated" + }, + "userAcceptedRestrictedServiceAgreement": { + "name": "userAcceptedRestrictedServiceAgreement", + "oid": "1.3.6.1.4.1.13742.6.0.83", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "userName" + }, + { + "module": "PDU2-MIB", + "object": "pxIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + } + ], + "status": "current" + }, + "userDeclinedRestrictedServiceAgreement": { + "name": "userDeclinedRestrictedServiceAgreement", + "oid": "1.3.6.1.4.1.13742.6.0.84", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "userName" + }, + { + "module": "PDU2-MIB", + "object": "pxIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + } + ], + "status": "current" + }, + "wireSensorStateChange": { + "name": "wireSensorStateChange", + "oid": "1.3.6.1.4.1.13742.6.0.85", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "pduNumber" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "PDU2-MIB", + "object": "wireLabel" + }, + { + "module": "PDU2-MIB", + "object": "typeOfSensor" + }, + { + "module": "PDU2-MIB", + "object": "measurementsWireSensorTimeStamp" + }, + { + "module": "PDU2-MIB", + "object": "measurementsWireSensorValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsWireSensorState" + }, + { + "module": "PDU2-MIB", + "object": "oldSensorState" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + } + ], + "status": "obsolete" + }, + "transferSwitchSensorStateChange": { + "name": "transferSwitchSensorStateChange", + "oid": "1.3.6.1.4.1.13742.6.0.86", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "pduNumber" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "PDU2-MIB", + "object": "transferSwitchLabel" + }, + { + "module": "PDU2-MIB", + "object": "typeOfSensor" + }, + { + "module": "PDU2-MIB", + "object": "measurementsTransferSwitchSensorTimeStamp" + }, + { + "module": "PDU2-MIB", + "object": "measurementsTransferSwitchSensorValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsTransferSwitchSensorState" + }, + { + "module": "PDU2-MIB", + "object": "measurementsTransferSwitchSensorSignedValue" + }, + { + "module": "PDU2-MIB", + "object": "oldSensorState" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "transferSwitchLastTransferReason" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + } + ], + "status": "current" + }, + "deviceSettingsSaved": { + "name": "deviceSettingsSaved", + "oid": "1.3.6.1.4.1.13742.6.0.88", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "userName" + }, + { + "module": "PDU2-MIB", + "object": "pxIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + }, + { + "module": "PDU2-MIB", + "object": "pduNumber" + } + ], + "status": "current" + }, + "deviceSettingsRestored": { + "name": "deviceSettingsRestored", + "oid": "1.3.6.1.4.1.13742.6.0.89", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "userName" + }, + { + "module": "PDU2-MIB", + "object": "pxIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + }, + { + "module": "PDU2-MIB", + "object": "pduNumber" + } + ], + "status": "current" + }, + "webcamInserted": { + "name": "webcamInserted", + "oid": "1.3.6.1.4.1.13742.6.0.90", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "PDU2-MIB", + "object": "webcamModel" + }, + { + "module": "PDU2-MIB", + "object": "webcamConnectionPort" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + }, + { + "module": "PDU2-MIB", + "object": "pduNumber" + } + ], + "status": "current" + }, + "webcamRemoved": { + "name": "webcamRemoved", + "oid": "1.3.6.1.4.1.13742.6.0.91", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "PDU2-MIB", + "object": "webcamModel" + }, + { + "module": "PDU2-MIB", + "object": "webcamConnectionPort" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + }, + { + "module": "PDU2-MIB", + "object": "pduNumber" + } + ], + "status": "current" + }, + "inletEnabled": { + "name": "inletEnabled", + "oid": "1.3.6.1.4.1.13742.6.0.92", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "userName" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "PDU2-MIB", + "object": "inletLabel" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + }, + { + "module": "PDU2-MIB", + "object": "pduNumber" + } + ], + "status": "current" + }, + "inletDisabled": { + "name": "inletDisabled", + "oid": "1.3.6.1.4.1.13742.6.0.93", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "userName" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "PDU2-MIB", + "object": "inletLabel" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + }, + { + "module": "PDU2-MIB", + "object": "pduNumber" + } + ], + "status": "current" + }, + "serverConnectivityUnrecoverable": { + "name": "serverConnectivityUnrecoverable", + "oid": "1.3.6.1.4.1.13742.6.0.94", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "PDU2-MIB", + "object": "serverIPAddress" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + } + ], + "status": "current" + }, + "radiusError": { + "name": "radiusError", + "oid": "1.3.6.1.4.1.13742.6.0.95", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "PDU2-MIB", + "object": "errorDescription" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + } + ], + "status": "current" + }, + "serverReachabilityError": { + "name": "serverReachabilityError", + "oid": "1.3.6.1.4.1.13742.6.0.96", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "PDU2-MIB", + "object": "serverIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "errorDescription" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + } + ], + "status": "current" + }, + "inletSensorReset": { + "name": "inletSensorReset", + "oid": "1.3.6.1.4.1.13742.6.0.97", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "userName" + }, + { + "module": "PDU2-MIB", + "object": "pduNumber" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "PDU2-MIB", + "object": "inletLabel" + }, + { + "module": "PDU2-MIB", + "object": "typeOfSensor" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + } + ], + "status": "current" + }, + "outletSensorReset": { + "name": "outletSensorReset", + "oid": "1.3.6.1.4.1.13742.6.0.98", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "userName" + }, + { + "module": "PDU2-MIB", + "object": "pduNumber" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "PDU2-MIB", + "object": "outletLabel" + }, + { + "module": "PDU2-MIB", + "object": "typeOfSensor" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + } + ], + "status": "current" + }, + "unknownPeripheralDeviceAttached": { + "name": "unknownPeripheralDeviceAttached", + "oid": "1.3.6.1.4.1.13742.6.0.99", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "PDU2-MIB", + "object": "peripheralDeviceRomcode" + }, + { + "module": "PDU2-MIB", + "object": "peripheralDevicePackagePosition" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + }, + { + "module": "PDU2-MIB", + "object": "pduNumber" + } + ], + "status": "current" + }, + "peripheralDeviceFirmwareUpdate": { + "name": "peripheralDeviceFirmwareUpdate", + "oid": "1.3.6.1.4.1.13742.6.0.100", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "PDU2-MIB", + "object": "peripheralDevicePackageSerialNumber" + }, + { + "module": "PDU2-MIB", + "object": "peripheralDeviceFirmwareUpdateState" + }, + { + "module": "PDU2-MIB", + "object": "peripheralDevicePackageFirmwareVersion" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + }, + { + "module": "PDU2-MIB", + "object": "pduNumber" + } + ], + "status": "current" + }, + "unitSensorReset": { + "name": "unitSensorReset", + "oid": "1.3.6.1.4.1.13742.6.0.101", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "userName" + }, + { + "module": "PDU2-MIB", + "object": "pduNumber" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "PDU2-MIB", + "object": "typeOfSensor" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + } + ], + "status": "current" + }, + "unitSensorStateChange": { + "name": "unitSensorStateChange", + "oid": "1.3.6.1.4.1.13742.6.0.102", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "pduNumber" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "PDU2-MIB", + "object": "typeOfSensor" + }, + { + "module": "PDU2-MIB", + "object": "measurementsUnitSensorTimeStamp" + }, + { + "module": "PDU2-MIB", + "object": "measurementsUnitSensorValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsUnitSensorState" + }, + { + "module": "PDU2-MIB", + "object": "measurementsUnitSensorSignedValue" + }, + { + "module": "PDU2-MIB", + "object": "oldSensorState" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + } + ], + "status": "current" + }, + "circuitSensorStateChange": { + "name": "circuitSensorStateChange", + "oid": "1.3.6.1.4.1.13742.6.0.103", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "pduNumber" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "PDU2-MIB", + "object": "circuitNumber" + }, + { + "module": "PDU2-MIB", + "object": "typeOfSensor" + }, + { + "module": "PDU2-MIB", + "object": "measurementsCircuitSensorTimeStamp" + }, + { + "module": "PDU2-MIB", + "object": "measurementsCircuitSensorValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsCircuitSensorState" + }, + { + "module": "PDU2-MIB", + "object": "measurementsCircuitSensorSignedValue" + }, + { + "module": "PDU2-MIB", + "object": "oldSensorState" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + } + ], + "status": "current" + }, + "circuitPoleSensorStateChange": { + "name": "circuitPoleSensorStateChange", + "oid": "1.3.6.1.4.1.13742.6.0.104", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "pduNumber" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "PDU2-MIB", + "object": "circuitNumber" + }, + { + "module": "PDU2-MIB", + "object": "circuitPoleNumber" + }, + { + "module": "PDU2-MIB", + "object": "typeOfSensor" + }, + { + "module": "PDU2-MIB", + "object": "measurementsCircuitPoleSensorTimeStamp" + }, + { + "module": "PDU2-MIB", + "object": "measurementsCircuitPoleSensorValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsCircuitPoleSensorState" + }, + { + "module": "PDU2-MIB", + "object": "measurementsCircuitPoleSensorSignedValue" + }, + { + "module": "PDU2-MIB", + "object": "oldSensorState" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + } + ], + "status": "current" + }, + "circuitAdded": { + "name": "circuitAdded", + "oid": "1.3.6.1.4.1.13742.6.0.105", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "pduNumber" + }, + { + "module": "PDU2-MIB", + "object": "userName" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "PDU2-MIB", + "object": "circuitNumber" + }, + { + "module": "PDU2-MIB", + "object": "circuitName" + }, + { + "module": "PDU2-MIB", + "object": "circuitType" + }, + { + "module": "PDU2-MIB", + "object": "circuitRatedCurrent" + }, + { + "module": "PDU2-MIB", + "object": "circuitCTRating" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + } + ], + "status": "current" + }, + "circuitDeleted": { + "name": "circuitDeleted", + "oid": "1.3.6.1.4.1.13742.6.0.106", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "pduNumber" + }, + { + "module": "PDU2-MIB", + "object": "userName" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "PDU2-MIB", + "object": "circuitNumber" + }, + { + "module": "PDU2-MIB", + "object": "circuitName" + }, + { + "module": "PDU2-MIB", + "object": "circuitType" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + } + ], + "status": "current" + }, + "circuitModified": { + "name": "circuitModified", + "oid": "1.3.6.1.4.1.13742.6.0.107", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "pduNumber" + }, + { + "module": "PDU2-MIB", + "object": "userName" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "PDU2-MIB", + "object": "circuitNumber" + }, + { + "module": "PDU2-MIB", + "object": "circuitName" + }, + { + "module": "PDU2-MIB", + "object": "circuitType" + }, + { + "module": "PDU2-MIB", + "object": "circuitRatedCurrent" + }, + { + "module": "PDU2-MIB", + "object": "circuitCTRating" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + } + ], + "status": "current" + }, + "circuitSensorReset": { + "name": "circuitSensorReset", + "oid": "1.3.6.1.4.1.13742.6.0.108", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "userName" + }, + { + "module": "PDU2-MIB", + "object": "pduNumber" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "PDU2-MIB", + "object": "circuitNumber" + }, + { + "module": "PDU2-MIB", + "object": "typeOfSensor" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + } + ], + "status": "current" + }, + "powerMeterAdded": { + "name": "powerMeterAdded", + "oid": "1.3.6.1.4.1.13742.6.0.109", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "pduNumber" + }, + { + "module": "PDU2-MIB", + "object": "userName" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "PDU2-MIB", + "object": "powerMeterPhaseCTRating" + }, + { + "module": "PDU2-MIB", + "object": "powerMeterNeutralCTRating" + }, + { + "module": "PDU2-MIB", + "object": "powerMeterEarthCTRating" + }, + { + "module": "PDU2-MIB", + "object": "powerMeterPanelPositions" + }, + { + "module": "PDU2-MIB", + "object": "powerMeterPanelLayout" + }, + { + "module": "PDU2-MIB", + "object": "powerMeterPanelNumbering" + }, + { + "module": "PDU2-MIB", + "object": "powerMeterType" + }, + { + "module": "PDU2-MIB", + "object": "inletRatedCurrent" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + } + ], + "status": "current" + }, + "powerMeterDeleted": { + "name": "powerMeterDeleted", + "oid": "1.3.6.1.4.1.13742.6.0.110", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "pduNumber" + }, + { + "module": "PDU2-MIB", + "object": "userName" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "PDU2-MIB", + "object": "powerMeterType" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + } + ], + "status": "current" + }, + "powerMeterModified": { + "name": "powerMeterModified", + "oid": "1.3.6.1.4.1.13742.6.0.111", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "pduNumber" + }, + { + "module": "PDU2-MIB", + "object": "userName" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "PDU2-MIB", + "object": "powerMeterPhaseCTRating" + }, + { + "module": "PDU2-MIB", + "object": "powerMeterNeutralCTRating" + }, + { + "module": "PDU2-MIB", + "object": "powerMeterEarthCTRating" + }, + { + "module": "PDU2-MIB", + "object": "powerMeterType" + }, + { + "module": "PDU2-MIB", + "object": "inletRatedCurrent" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + } + ], + "status": "current" + }, + "smsMessageTransmissionFailure": { + "name": "smsMessageTransmissionFailure", + "oid": "1.3.6.1.4.1.13742.6.0.112", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "PDU2-MIB", + "object": "phoneNumber" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + } + ], + "status": "current" + }, + "smartCardInserted": { + "name": "smartCardInserted", + "oid": "1.3.6.1.4.1.13742.6.0.113", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "PDU2-MIB", + "object": "smartCardReaderId" + }, + { + "module": "PDU2-MIB", + "object": "smartCardTimestamp" + }, + { + "module": "PDU2-MIB", + "object": "smartCardType" + }, + { + "module": "PDU2-MIB", + "object": "smartCardId" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + }, + { + "module": "PDU2-MIB", + "object": "smartCardReaderManufacturer" + }, + { + "module": "PDU2-MIB", + "object": "smartCardReaderProduct" + }, + { + "module": "PDU2-MIB", + "object": "smartCardReaderSerialNumber" + }, + { + "module": "PDU2-MIB", + "object": "smartCardReaderChannel" + }, + { + "module": "PDU2-MIB", + "object": "smartCardReaderPosition" + }, + { + "module": "PDU2-MIB", + "object": "pduNumber" + }, + { + "module": "PDU2-MIB", + "object": "smartCardReaderName" + }, + { + "module": "PDU2-MIB", + "object": "smartCardReaderDescription" + } + ], + "status": "current" + }, + "smartCardRemoved": { + "name": "smartCardRemoved", + "oid": "1.3.6.1.4.1.13742.6.0.114", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "PDU2-MIB", + "object": "smartCardReaderId" + }, + { + "module": "PDU2-MIB", + "object": "smartCardTimestamp" + }, + { + "module": "PDU2-MIB", + "object": "smartCardType" + }, + { + "module": "PDU2-MIB", + "object": "smartCardId" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + }, + { + "module": "PDU2-MIB", + "object": "smartCardReaderManufacturer" + }, + { + "module": "PDU2-MIB", + "object": "smartCardReaderProduct" + }, + { + "module": "PDU2-MIB", + "object": "smartCardReaderSerialNumber" + }, + { + "module": "PDU2-MIB", + "object": "smartCardReaderChannel" + }, + { + "module": "PDU2-MIB", + "object": "smartCardReaderPosition" + }, + { + "module": "PDU2-MIB", + "object": "pduNumber" + }, + { + "module": "PDU2-MIB", + "object": "smartCardReaderName" + }, + { + "module": "PDU2-MIB", + "object": "smartCardReaderDescription" + } + ], + "status": "current" + }, + "rawConfigurationDownloaded": { + "name": "rawConfigurationDownloaded", + "oid": "1.3.6.1.4.1.13742.6.0.115", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "userName" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + }, + { + "module": "PDU2-MIB", + "object": "pduNumber" + } + ], + "status": "current" + }, + "rawConfigurationUpdated": { + "name": "rawConfigurationUpdated", + "oid": "1.3.6.1.4.1.13742.6.0.116", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "userName" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + }, + { + "module": "PDU2-MIB", + "object": "pduNumber" + } + ], + "status": "current" + }, + "hwFailureStatusChanged": { + "name": "hwFailureStatusChanged", + "oid": "1.3.6.1.4.1.13742.6.0.117", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + }, + { + "module": "PDU2-MIB", + "object": "hwFailureComponentId" + }, + { + "module": "PDU2-MIB", + "object": "hwFailureType" + }, + { + "module": "PDU2-MIB", + "object": "hwFailureAsserted" + }, + { + "module": "PDU2-MIB", + "object": "pduNumber" + } + ], + "status": "current" + }, + "outletGroupAdded": { + "name": "outletGroupAdded", + "oid": "1.3.6.1.4.1.13742.6.0.118", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "userName" + }, + { + "module": "PDU2-MIB", + "object": "outletGroupNumber" + }, + { + "module": "PDU2-MIB", + "object": "outletGroupName" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + } + ], + "status": "current" + }, + "outletGroupModified": { + "name": "outletGroupModified", + "oid": "1.3.6.1.4.1.13742.6.0.119", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "userName" + }, + { + "module": "PDU2-MIB", + "object": "outletGroupNumber" + }, + { + "module": "PDU2-MIB", + "object": "outletGroupName" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + } + ], + "status": "current" + }, + "outletGroupDeleted": { + "name": "outletGroupDeleted", + "oid": "1.3.6.1.4.1.13742.6.0.120", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "userName" + }, + { + "module": "PDU2-MIB", + "object": "outletGroupNumber" + }, + { + "module": "PDU2-MIB", + "object": "outletGroupName" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + } + ], + "status": "current" + }, + "outletGroupSensorStateChange": { + "name": "outletGroupSensorStateChange", + "oid": "1.3.6.1.4.1.13742.6.0.121", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "outletGroupNumber" + }, + { + "module": "PDU2-MIB", + "object": "outletGroupName" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "PDU2-MIB", + "object": "typeOfSensor" + }, + { + "module": "PDU2-MIB", + "object": "measurementsOutletGroupSensorTimeStamp" + }, + { + "module": "PDU2-MIB", + "object": "measurementsOutletGroupSensorValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsOutletGroupSensorState" + }, + { + "module": "PDU2-MIB", + "object": "measurementsOutletGroupSensorSignedValue" + }, + { + "module": "PDU2-MIB", + "object": "oldSensorState" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + } + ], + "status": "current" + }, + "outletGroupSensorReset": { + "name": "outletGroupSensorReset", + "oid": "1.3.6.1.4.1.13742.6.0.122", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "userName" + }, + { + "module": "PDU2-MIB", + "object": "outletGroupNumber" + }, + { + "module": "PDU2-MIB", + "object": "outletGroupName" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "PDU2-MIB", + "object": "typeOfSensor" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + } + ], + "status": "current" + }, + "outletGroupPowerControl": { + "name": "outletGroupPowerControl", + "oid": "1.3.6.1.4.1.13742.6.0.123", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "userName" + }, + { + "module": "PDU2-MIB", + "object": "outletGroupNumber" + }, + { + "module": "PDU2-MIB", + "object": "outletGroupName" + }, + { + "module": "PDU2-MIB", + "object": "outletGroupSwitchingOperation" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + } + ], + "status": "current" + }, + "serverPowerControlInitiated": { + "name": "serverPowerControlInitiated", + "oid": "1.3.6.1.4.1.13742.6.0.124", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "PDU2-MIB", + "object": "userName" + }, + { + "module": "PDU2-MIB", + "object": "serverIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "serverPowerOperation" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + } + ], + "status": "current" + }, + "serverPowerControlCompleted": { + "name": "serverPowerControlCompleted", + "oid": "1.3.6.1.4.1.13742.6.0.125", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "PDU2-MIB", + "object": "serverIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "serverPowerResult" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + } + ], + "status": "current" + }, + "webcamStorageUploadStarted": { + "name": "webcamStorageUploadStarted", + "oid": "1.3.6.1.4.1.13742.6.0.126", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "PDU2-MIB", + "object": "userName" + }, + { + "module": "PDU2-MIB", + "object": "webcamName" + }, + { + "module": "PDU2-MIB", + "object": "webcamFolderUrl" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + }, + { + "module": "PDU2-MIB", + "object": "pduNumber" + } + ], + "status": "current" + }, + "testEventTriggered": { + "name": "testEventTriggered", + "oid": "1.3.6.1.4.1.13742.6.0.127", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "PDU2-MIB", + "object": "userName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + } + ], + "status": "current" + }, + "actuatorSwitched": { + "name": "actuatorSwitched", + "oid": "1.3.6.1.4.1.13742.6.0.128", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "pduNumber" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "PDU2-MIB", + "object": "userName" + }, + { + "module": "PDU2-MIB", + "object": "externalSensorNumber" + }, + { + "module": "PDU2-MIB", + "object": "externalSensorName" + }, + { + "module": "PDU2-MIB", + "object": "externalSensorSerialNumber" + }, + { + "module": "PDU2-MIB", + "object": "externalOnOffSensorSubtype" + }, + { + "module": "PDU2-MIB", + "object": "externalSensorChannelNumber" + }, + { + "module": "PDU2-MIB", + "object": "typeOfSensor" + }, + { + "module": "PDU2-MIB", + "object": "actuatorState" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + } + ], + "status": "current" + }, + "keypadPinEntered": { + "name": "keypadPinEntered", + "oid": "1.3.6.1.4.1.13742.6.0.129", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "pduNumber" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "PDU2-MIB", + "object": "keypadId" + }, + { + "module": "PDU2-MIB", + "object": "keypadPinTimestamp" + }, + { + "module": "PDU2-MIB", + "object": "keypadPin" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + }, + { + "module": "PDU2-MIB", + "object": "keypadManufacturer" + }, + { + "module": "PDU2-MIB", + "object": "keypadProduct" + }, + { + "module": "PDU2-MIB", + "object": "keypadSerialNumber" + }, + { + "module": "PDU2-MIB", + "object": "keypadChannel" + }, + { + "module": "PDU2-MIB", + "object": "keypadPosition" + }, + { + "module": "PDU2-MIB", + "object": "keypadName" + }, + { + "module": "PDU2-MIB", + "object": "keypadDescription" + } + ], + "status": "current" + }, + "doorAccessGranted": { + "name": "doorAccessGranted", + "oid": "1.3.6.1.4.1.13742.6.0.130", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "PDU2-MIB", + "object": "doorAccessRuleId" + }, + { + "module": "PDU2-MIB", + "object": "doorAccessRuleName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + } + ], + "status": "current" + }, + "doorAccessDenied": { + "name": "doorAccessDenied", + "oid": "1.3.6.1.4.1.13742.6.0.131", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "PDU2-MIB", + "object": "doorAccessRuleId" + }, + { + "module": "PDU2-MIB", + "object": "doorAccessRuleName" + }, + { + "module": "PDU2-MIB", + "object": "doorAccessDenialReason" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + } + ], + "status": "current" + }, + "doorAccessRuleAdded": { + "name": "doorAccessRuleAdded", + "oid": "1.3.6.1.4.1.13742.6.0.132", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "userName" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "PDU2-MIB", + "object": "doorAccessRuleId" + }, + { + "module": "PDU2-MIB", + "object": "doorAccessRuleName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + } + ], + "status": "current" + }, + "doorAccessRuleChanged": { + "name": "doorAccessRuleChanged", + "oid": "1.3.6.1.4.1.13742.6.0.133", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "userName" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "PDU2-MIB", + "object": "doorAccessRuleId" + }, + { + "module": "PDU2-MIB", + "object": "doorAccessRuleName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + } + ], + "status": "current" + }, + "doorAccessRuleDeleted": { + "name": "doorAccessRuleDeleted", + "oid": "1.3.6.1.4.1.13742.6.0.134", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "userName" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "PDU2-MIB", + "object": "doorAccessRuleId" + }, + { + "module": "PDU2-MIB", + "object": "doorAccessRuleName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + } + ], + "status": "current" + }, + "inletLinePairSensorStateChange": { + "name": "inletLinePairSensorStateChange", + "oid": "1.3.6.1.4.1.13742.6.0.135", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "pduNumber" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "PDU2-MIB", + "object": "inletLabel" + }, + { + "module": "PDU2-MIB", + "object": "inletLinePairNumber" + }, + { + "module": "PDU2-MIB", + "object": "typeOfSensor" + }, + { + "module": "PDU2-MIB", + "object": "measurementsInletLinePairSensorTimeStamp" + }, + { + "module": "PDU2-MIB", + "object": "measurementsInletLinePairSensorValue" + }, + { + "module": "PDU2-MIB", + "object": "measurementsInletLinePairSensorState" + }, + { + "module": "PDU2-MIB", + "object": "measurementsInletLinePairSensorSignedValue" + }, + { + "module": "PDU2-MIB", + "object": "oldSensorState" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + } + ], + "status": "current" + }, + "tacPlusError": { + "name": "tacPlusError", + "oid": "1.3.6.1.4.1.13742.6.0.136", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "PDU2-MIB", + "object": "errorDescription" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + } + ], + "status": "current" + }, + "outletSuspended": { + "name": "outletSuspended", + "oid": "1.3.6.1.4.1.13742.6.0.137", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "userName" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "PDU2-MIB", + "object": "outletLabel" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + }, + { + "module": "PDU2-MIB", + "object": "pduNumber" + } + ], + "status": "current" + }, + "userRenamed": { + "name": "userRenamed", + "oid": "1.3.6.1.4.1.13742.6.0.138", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "userName" + }, + { + "module": "PDU2-MIB", + "object": "targetUser" + }, + { + "module": "PDU2-MIB", + "object": "newTargetUser" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + } + ], + "status": "current" + }, + "inletDipEvent": { + "name": "inletDipEvent", + "oid": "1.3.6.1.4.1.13742.6.0.151", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "pduNumber" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "PDU2-MIB", + "object": "inletLabel" + }, + { + "module": "PDU2-MIB", + "object": "dipSwellEventVoltage" + }, + { + "module": "PDU2-MIB", + "object": "dipSwellEventTimeStamp" + }, + { + "module": "PDU2-MIB", + "object": "dipSwellEventDuration" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + } + ], + "status": "current" + }, + "inletSwellEvent": { + "name": "inletSwellEvent", + "oid": "1.3.6.1.4.1.13742.6.0.152", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "pduNumber" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "PDU2-MIB", + "object": "inletLabel" + }, + { + "module": "PDU2-MIB", + "object": "dipSwellEventVoltage" + }, + { + "module": "PDU2-MIB", + "object": "dipSwellEventTimeStamp" + }, + { + "module": "PDU2-MIB", + "object": "dipSwellEventDuration" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + } + ], + "status": "current" + }, + "inletPoleDipEvent": { + "name": "inletPoleDipEvent", + "oid": "1.3.6.1.4.1.13742.6.0.153", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "pduNumber" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "PDU2-MIB", + "object": "inletLabel" + }, + { + "module": "PDU2-MIB", + "object": "inletPoleNumber" + }, + { + "module": "PDU2-MIB", + "object": "dipSwellEventVoltage" + }, + { + "module": "PDU2-MIB", + "object": "dipSwellEventTimeStamp" + }, + { + "module": "PDU2-MIB", + "object": "dipSwellEventDuration" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + } + ], + "status": "current" + }, + "inletPoleSwellEvent": { + "name": "inletPoleSwellEvent", + "oid": "1.3.6.1.4.1.13742.6.0.154", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "pduNumber" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "PDU2-MIB", + "object": "inletLabel" + }, + { + "module": "PDU2-MIB", + "object": "inletPoleNumber" + }, + { + "module": "PDU2-MIB", + "object": "dipSwellEventVoltage" + }, + { + "module": "PDU2-MIB", + "object": "dipSwellEventTimeStamp" + }, + { + "module": "PDU2-MIB", + "object": "dipSwellEventDuration" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + } + ], + "status": "current" + }, + "portFuseStateChange": { + "name": "portFuseStateChange", + "oid": "1.3.6.1.4.1.13742.6.0.155", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "PDU2-MIB", + "object": "portFuseState" + }, + { + "module": "PDU2-MIB", + "object": "externalPortFuseId" + }, + { + "module": "PDU2-MIB", + "object": "externalPortName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + } + ], + "status": "current" + }, + "linkUnitAdded": { + "name": "linkUnitAdded", + "oid": "1.3.6.1.4.1.13742.6.0.156", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "userName" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "PDU2-MIB", + "object": "linkUnitId" + }, + { + "module": "PDU2-MIB", + "object": "linkUnitAddress" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + } + ], + "status": "current" + }, + "linkUnitReleased": { + "name": "linkUnitReleased", + "oid": "1.3.6.1.4.1.13742.6.0.157", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "userName" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "PDU2-MIB", + "object": "linkUnitId" + }, + { + "module": "PDU2-MIB", + "object": "linkUnitAddress" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + } + ], + "status": "current" + }, + "linkUnitCommunicationOk": { + "name": "linkUnitCommunicationOk", + "oid": "1.3.6.1.4.1.13742.6.0.158", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "PDU2-MIB", + "object": "linkUnitId" + }, + { + "module": "PDU2-MIB", + "object": "linkUnitAddress" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + } + ], + "status": "current" + }, + "linkUnitCommunicationFailed": { + "name": "linkUnitCommunicationFailed", + "oid": "1.3.6.1.4.1.13742.6.0.159", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "PDU2-MIB", + "object": "linkUnitId" + }, + { + "module": "PDU2-MIB", + "object": "linkUnitAddress" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + } + ], + "status": "current" + }, + "doorMechanicallyUnlocked": { + "name": "doorMechanicallyUnlocked", + "oid": "1.3.6.1.4.1.13742.6.0.160", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "pduNumber" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "PDU2-MIB", + "object": "doorHandleName" + }, + { + "module": "PDU2-MIB", + "object": "doorLockName" + }, + { + "module": "PDU2-MIB", + "object": "doorStateName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + } + ], + "status": "current" + }, + "doorForcedOpen": { + "name": "doorForcedOpen", + "oid": "1.3.6.1.4.1.13742.6.0.161", + "class": "notificationtype", + "objects": [ + { + "module": "PDU2-MIB", + "object": "pduName" + }, + { + "module": "PDU2-MIB", + "object": "pduNumber" + }, + { + "module": "PDU2-MIB", + "object": "pxInetAddressType" + }, + { + "module": "PDU2-MIB", + "object": "pxInetIPAddress" + }, + { + "module": "PDU2-MIB", + "object": "agentInetPortNumber" + }, + { + "module": "PDU2-MIB", + "object": "doorHandleName" + }, + { + "module": "PDU2-MIB", + "object": "doorLockName" + }, + { + "module": "PDU2-MIB", + "object": "doorStateName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysContact" + }, + { + "module": "SNMPv2-MIB", + "object": "sysName" + }, + { + "module": "SNMPv2-MIB", + "object": "sysLocation" + }, + { + "module": "PDU2-MIB", + "object": "pduSerialNumber" + } + ], + "status": "current" + }, + "meta": { + "comments": [ + "ASN.1 source file://d:\\Data\\MIBS\\text_mibs\\PDU2-MIB.txt", + "Produced by pysmi-0.3.4 at Fri Jan 12 09:18:24 2024", + "On host ? platform ? version ? by user ?", + "Using Python version 3.7.9 (tags/v3.7.9:13c94747c7, Aug 17 2020, 18:01:55) [MSC v.1900 32 bit (Intel)]" + ], + "module": "PDU2-MIB" + } +} \ No newline at end of file diff --git a/cloudshell/raritan/cli/__init__.py b/cloudshell/raritan/cli/__init__.py new file mode 100644 index 0000000..b36383a --- /dev/null +++ b/cloudshell/raritan/cli/__init__.py @@ -0,0 +1,3 @@ +from pkgutil import extend_path + +__path__ = extend_path(__path__, __name__) diff --git a/cloudshell/raritan/cli/raritan_cli_configurator.py b/cloudshell/raritan/cli/raritan_cli_configurator.py new file mode 100644 index 0000000..440536a --- /dev/null +++ b/cloudshell/raritan/cli/raritan_cli_configurator.py @@ -0,0 +1,70 @@ +from __future__ import annotations + +import logging +from collections.abc import Collection +from typing import TYPE_CHECKING, ClassVar + +from attrs import define, field +from typing_extensions import Self + +from cloudshell.cli.configurator import AbstractModeConfigurator +from cloudshell.cli.factory.session_factory import ( + CloudInfoAccessKeySessionFactory, + ConsoleSessionFactory, + GenericSessionFactory, + SessionFactory, +) +from cloudshell.cli.service.command_mode_helper import CommandModeHelper +from cloudshell.cli.session.console_ssh import ConsoleSSHSession +from cloudshell.cli.session.console_telnet import ConsoleTelnetSession +from cloudshell.cli.session.ssh_session import SSHSession +from cloudshell.cli.session.telnet_session import TelnetSession + +from cloudshell.raritan.cli.raritan_command_modes import ( + ConfigCommandMode, + EnableCommandMode, +) + +if TYPE_CHECKING: + from cloudshell.cli.service.cli import CLI + from cloudshell.cli.types import T_COMMAND_MODE_RELATIONS, CliConfigProtocol + + +@define +class RaritanCliConfigurator(AbstractModeConfigurator): + REGISTERED_SESSIONS: ClassVar[tuple[SessionFactory]] = ( + CloudInfoAccessKeySessionFactory(SSHSession), + GenericSessionFactory(TelnetSession), + ConsoleSessionFactory(ConsoleSSHSession), + ConsoleSessionFactory( + ConsoleTelnetSession, session_kwargs={"start_with_new_line": False} + ), + ConsoleSessionFactory( + ConsoleTelnetSession, session_kwargs={"start_with_new_line": True} + ), + ) + modes: T_COMMAND_MODE_RELATIONS = field(init=False) + + def __attrs_post_init__(self): + super().__attrs_post_init__() + self.modes = CommandModeHelper.create_command_mode(self._auth) + + @classmethod + def from_config( + cls, + conf: CliConfigProtocol, + logger: logging.Logger | None = None, + cli: CLI | None = None, + registered_sessions: Collection[SessionFactory] | None = None, + ) -> Self: + if not logger: + logger = logging.getLogger(__name__) + return super().from_config(conf, logger, cli, registered_sessions) + + @property + def enable_mode(self): + return self.modes[EnableCommandMode] + + @property + def config_mode(self): + return self.modes[ConfigCommandMode] diff --git a/cloudshell/raritan/cli/raritan_command_modes.py b/cloudshell/raritan/cli/raritan_command_modes.py new file mode 100644 index 0000000..17dcb59 --- /dev/null +++ b/cloudshell/raritan/cli/raritan_command_modes.py @@ -0,0 +1,44 @@ +from __future__ import annotations + +from typing import TYPE_CHECKING + +from cloudshell.cli.service.command_mode import CommandMode + +if TYPE_CHECKING: + from cloudshell.cli.service.auth_model import Auth + + +class EnableCommandMode(CommandMode): + PROMPT: str = r"(?:(?!\)).)#\s*$" + ENTER_COMMAND: str = "" + EXIT_COMMAND: str = "" + + def __init__(self, auth: Auth): + """Initialize Default command mode.""" + self._auth = auth + CommandMode.__init__( + self, + EnableCommandMode.PROMPT, + EnableCommandMode.ENTER_COMMAND, + EnableCommandMode.EXIT_COMMAND, + ) + + +class ConfigCommandMode(CommandMode): + PROMPT: str = r"config:#\s*$" + ENTER_COMMAND: str = "config" + EXIT_COMMAND: str = "apply" # Save changed settings and leave config mode + + def __init__(self, auth: Auth): + """Initialize Configuration command mode.""" + self._auth = auth + + CommandMode.__init__( + self, + ConfigCommandMode.PROMPT, + ConfigCommandMode.ENTER_COMMAND, + ConfigCommandMode.EXIT_COMMAND, + ) + + +CommandMode.RELATIONS_DICT = {EnableCommandMode: {ConfigCommandMode: {}}} diff --git a/cloudshell/raritan/command_actions/__init__.py b/cloudshell/raritan/command_actions/__init__.py new file mode 100644 index 0000000..b36383a --- /dev/null +++ b/cloudshell/raritan/command_actions/__init__.py @@ -0,0 +1,3 @@ +from pkgutil import extend_path + +__path__ = extend_path(__path__, __name__) diff --git a/cloudshell/raritan/command_actions/enable_disable_snmp_actions.py b/cloudshell/raritan/command_actions/enable_disable_snmp_actions.py new file mode 100644 index 0000000..76fe15f --- /dev/null +++ b/cloudshell/raritan/command_actions/enable_disable_snmp_actions.py @@ -0,0 +1,64 @@ +from __future__ import annotations + +from typing import TYPE_CHECKING, ClassVar + +from attrs import define + +from cloudshell.cli.command_template.command_template_executor import ( + CommandTemplateExecutor, +) +from cloudshell.snmp.snmp_parameters import SNMPV3Parameters # noqa F401 + +from cloudshell.raritan.command_templates import snmp_configuration_templates + +if TYPE_CHECKING: + from cloudshell.cli.service.cli_service import CliService + + +@define +class BaseSnmpActions: + _cli_service: CliService + SNMP_VERSION: ClassVar[str] = "snmp_version" + + def enable_snmp(self) -> str: + """Enable snmp.""" + return CommandTemplateExecutor( + cli_service=self._cli_service, + command_template=snmp_configuration_templates.ENABLE_SNMP, + ).execute_command(snmp_version=self.SNMP_VERSION) + + def disable_snmp(self) -> str: + """Disable snmp.""" + return CommandTemplateExecutor( + cli_service=self._cli_service, + command_template=snmp_configuration_templates.DISABLE_SNMP, + ).execute_command(snmp_version=self.SNMP_VERSION) + + def commit(self) -> str: + """Save changed settings and leave config mode.""" + return CommandTemplateExecutor( + cli_service=self._cli_service, + command_template=snmp_configuration_templates.COMMIT, + ).execute_command() + + +class EnableDisableSnmpV2Actions(BaseSnmpActions): + SNMP_VERSION: ClassVar[str] = "v1/v2c" + + def set_snmp_ro_community(self, snmp_community): + """Set read community.""" + return CommandTemplateExecutor( + cli_service=self._cli_service, + command_template=snmp_configuration_templates.SET_RO_SNMP_COMMUNITY, + ).execute_command(name=snmp_community) + + def set_snmp_rw_community(self, snmp_community): + """Set write community.""" + return CommandTemplateExecutor( + cli_service=self._cli_service, + command_template=snmp_configuration_templates.SET_RW_SNMP_COMMUNITY, + ).execute_command(name=snmp_community) + + +class EnableDisableSnmpV3Actions(BaseSnmpActions): + SNMP_VERSION: ClassVar[str] = "v3" diff --git a/cloudshell/raritan/command_actions/system_actions.py b/cloudshell/raritan/command_actions/system_actions.py new file mode 100644 index 0000000..a20b2f0 --- /dev/null +++ b/cloudshell/raritan/command_actions/system_actions.py @@ -0,0 +1,71 @@ +from __future__ import annotations + +import re +from typing import TYPE_CHECKING + +from attrs import define + +from cloudshell.cli.command_template.command_template_executor import ( + CommandTemplateExecutor, +) + +from cloudshell.raritan.command_templates import system_templates + +if TYPE_CHECKING: + from cloudshell.cli.service.cli_service import CliService + + +@define +class SystemActions: + _cli_service: CliService + + def get_pdu_info(self) -> dict[str, str]: + """Get information about outlets.""" + pdu_info = {} + output = CommandTemplateExecutor( + cli_service=self._cli_service, + command_template=system_templates.GET_PDU_INFO, + ).execute_command() + + match = re.search( + r"Model:\s+(?P.+)\s+" + r"Firmware Version:\s+(?P.+)\s+" + r"Serial Number: \s+(?P\w+)", + output, + re.I, + ) + if match: + pdu_info.update( + { + "model": match.groupdict()["model"], + "fw": match.groupdict()["fw"], + "serial": match.groupdict()["serial"], + } + ) + return pdu_info + + def get_outlets(self) -> dict[str, str]: + """Get information about outlets.""" + outlets_info = {} + output = CommandTemplateExecutor( + cli_service=self._cli_service, + command_template=system_templates.GET_OUTLETS_INFO, + ).execute_command() + + for outlet_id, outlet_state in re.findall( + r"Outlet\s+(?P\d+):\sPower state:\s+(?P\w+)", + output, + ): + outlets_info.update({outlet_id: outlet_state}) + + return outlets_info + + def set_outlets_state(self, outlets: str, outlet_state: str) -> str: + """Set outlets state. + + Possible outlets states could be on/off/cycle. + """ + return CommandTemplateExecutor( + cli_service=self._cli_service, + command_template=system_templates.CHANGE_OUTLET_STATE, + ).execute_command(outlet_ids=outlets, outlet_state=outlet_state) diff --git a/cloudshell/raritan/command_templates/__init__.py b/cloudshell/raritan/command_templates/__init__.py new file mode 100644 index 0000000..b36383a --- /dev/null +++ b/cloudshell/raritan/command_templates/__init__.py @@ -0,0 +1,3 @@ +from pkgutil import extend_path + +__path__ = extend_path(__path__, __name__) diff --git a/cloudshell/raritan/command_templates/snmp_configuration_templates.py b/cloudshell/raritan/command_templates/snmp_configuration_templates.py new file mode 100644 index 0000000..ad0f298 --- /dev/null +++ b/cloudshell/raritan/command_templates/snmp_configuration_templates.py @@ -0,0 +1,24 @@ +from __future__ import annotations + +from cloudshell.cli.command_template.command_template import CommandTemplate + +ENABLE_SNMP = CommandTemplate( + command="network services snmp {snmp_version} enable", + action_map={ + r"Are you sure you want to enable it\? \[y/n\]": lambda session, logger: session.send_line( # noqa: E501 + "y", logger + ) + }, +) + +DISABLE_SNMP = CommandTemplate("network services snmp {snmp_version} disable") + +SET_RO_SNMP_COMMUNITY = CommandTemplate( + command="network services snmp readCommunity {read_community}" +) + +SET_RW_SNMP_COMMUNITY = CommandTemplate( + command="network services snmp writeCommunity {write_community}" +) + +COMMIT = CommandTemplate(command="apply") diff --git a/cloudshell/raritan/command_templates/system_templates.py b/cloudshell/raritan/command_templates/system_templates.py new file mode 100644 index 0000000..5de5679 --- /dev/null +++ b/cloudshell/raritan/command_templates/system_templates.py @@ -0,0 +1,16 @@ +from __future__ import annotations + +from cloudshell.cli.command_template.command_template import CommandTemplate + +GET_PDU_INFO = CommandTemplate(command="show pdu details") +GET_OUTLETS_INFO = CommandTemplate(command="show outlets") + +CHANGE_OUTLET_STATE = CommandTemplate( + command="power outlets {outlet_ids} {outlet_state} /y", + action_map={r"\[y/n\]": lambda session, logger: session.send_line("y", logger)}, + error_map={ + "[Ii]nvalid outlet specified": "Invalid outlet specified.", + "[Oo]peration on/off/cycle": "Wrong outlet state provided. " + "Possible values: on/off/cycle", + }, +) diff --git a/cloudshell/raritan/flows/__init__.py b/cloudshell/raritan/flows/__init__.py new file mode 100644 index 0000000..b36383a --- /dev/null +++ b/cloudshell/raritan/flows/__init__.py @@ -0,0 +1,3 @@ +from pkgutil import extend_path + +__path__ = extend_path(__path__, __name__) diff --git a/cloudshell/raritan/flows/raritan_autoload_flow.py b/cloudshell/raritan/flows/raritan_autoload_flow.py new file mode 100644 index 0000000..3a9553d --- /dev/null +++ b/cloudshell/raritan/flows/raritan_autoload_flow.py @@ -0,0 +1,48 @@ +from __future__ import annotations + +import logging +from typing import TYPE_CHECKING + +from cloudshell.shell.flows.autoload.basic_flow import AbstractAutoloadFlow + +from cloudshell.raritan.command_actions.system_actions import SystemActions + +logger = logging.getLogger(__name__) + +if TYPE_CHECKING: + from cloudshell.shell.core.driver_context import AutoLoadDetails + from cloudshell.shell.standards.pdu.autoload_model import PDUResourceModel + + from ..cli.raritan_cli_configurator import RaritanCliConfigurator + + +class RaritanAutoloadFlow(AbstractAutoloadFlow): + """Autoload flow.""" + + def __init__(self, cli_configurator: RaritanCliConfigurator): + super().__init__() + self.cli_configurator = cli_configurator + + def _autoload_flow( + self, supported_os: list[str], resource_model: PDUResourceModel + ) -> AutoLoadDetails: + """Autoload Flow.""" + logger.info("*" * 70) + logger.info("Start discovery process .....") + with self.cli_configurator.enable_mode_service() as enable_cli_service: + system_actions = SystemActions(enable_cli_service) + outlets_info = system_actions.get_outlets() + pdu_info = system_actions.get_pdu_info() + + resource_model.vendor = "Raritan" + resource_model.model = pdu_info.get("model", "") + + for outlet_id, outlet_state in outlets_info.items(): + outlet_object = resource_model.entities.PowerSocket(index=outlet_id) + resource_model.connect_power_socket(outlet_object) + + logger.info("Discovery process finished successfully") + + autoload_details = resource_model.build() + + return autoload_details diff --git a/cloudshell/raritan/flows/raritan_enable_disable_snmp_flow.py b/cloudshell/raritan/flows/raritan_enable_disable_snmp_flow.py new file mode 100644 index 0000000..9c980a6 --- /dev/null +++ b/cloudshell/raritan/flows/raritan_enable_disable_snmp_flow.py @@ -0,0 +1,98 @@ +from __future__ import annotations + +from typing import TYPE_CHECKING + +from attrs import define + +from cloudshell.snmp.snmp_configurator import EnableDisableSnmpFlowInterface + +from cloudshell.raritan.command_actions.enable_disable_snmp_actions import ( # noqa: E501 + EnableDisableSnmpV2Actions, + EnableDisableSnmpV3Actions, +) +from cloudshell.raritan.helpers.errors import SnmpRaritanError + +if TYPE_CHECKING: + from typing import Union + + from cloudshell.cli.service.cli_service import CliService + from cloudshell.snmp.snmp_parameters import ( + SNMPReadParameters, + SNMPV3Parameters, + SNMPWriteParameters, + ) + + from ..cli.raritan_cli_configurator import RaritanCliConfigurator + + SnmpParams = Union[SNMPReadParameters, SNMPWriteParameters, SNMPV3Parameters] + + +@define +class RaritanEnableDisableSnmpFlow(EnableDisableSnmpFlowInterface): + _cli_configurator: RaritanCliConfigurator + + def enable_snmp(self, snmp_parameters: SnmpParams) -> None: + with self._cli_configurator.enable_mode_service() as cli_service: + if snmp_parameters.version == snmp_parameters.SnmpVersion.V3: + self._enable_snmp_v3(cli_service, snmp_parameters) + else: + self._enable_snmp_v2(cli_service, snmp_parameters) + + def disable_snmp(self, snmp_parameters: SnmpParams) -> None: + with self._cli_configurator.enable_mode_service() as cli_service: + if snmp_parameters.version == snmp_parameters.SnmpVersion.V3: + self._disable_snmp_v3(cli_service, snmp_parameters) + else: + self._disable_snmp_v2(cli_service, snmp_parameters) + + @staticmethod + def _enable_snmp_v2(cli_service: CliService, snmp_parameters: SnmpParams) -> str: + """Enable SNMPv2.""" + snmp_community = snmp_parameters.snmp_community + + if not snmp_community: + raise SnmpRaritanError("SNMP community can not be empty") + + snmp_v2_actions = EnableDisableSnmpV2Actions(cli_service=cli_service) + output = snmp_v2_actions.enable_snmp() + + if snmp_parameters.is_read_only: + output += snmp_v2_actions.set_snmp_ro_community( + snmp_community=snmp_community + ) + else: + output += snmp_v2_actions.set_snmp_rw_community( + snmp_community=snmp_community + ) + return output + + @staticmethod + def _enable_snmp_v3(cli_service: CliService, snmp_parameters: SnmpParams) -> str: + """Enable SNMPv3.""" + snmp_v3_actions = EnableDisableSnmpV3Actions(cli_service=cli_service) + output = snmp_v3_actions.enable_snmp() + + return output + + @staticmethod + def _disable_snmp_v2(cli_service: CliService, snmp_parameters: SnmpParams) -> str: + """Disable SNMPv2.""" + snmp_community = snmp_parameters.snmp_community + + if not snmp_community: + raise SnmpRaritanError("SNMP community can not be empty") + + snmp_v2_actions = EnableDisableSnmpV2Actions(cli_service=cli_service) + + output = snmp_v2_actions.disable_snmp() + + return output + + @staticmethod + def _disable_snmp_v3(cli_service: CliService, snmp_parameters: SnmpParams) -> str: + """Disable SNMPv3.""" + snmp_v3_actions = EnableDisableSnmpV3Actions(cli_service) + + output = snmp_v3_actions.disable_snmp() + + return output diff --git a/cloudshell/raritan/flows/raritan_outlets_state_flow.py b/cloudshell/raritan/flows/raritan_outlets_state_flow.py new file mode 100644 index 0000000..be756a9 --- /dev/null +++ b/cloudshell/raritan/flows/raritan_outlets_state_flow.py @@ -0,0 +1,37 @@ +from __future__ import annotations + +from typing import TYPE_CHECKING + +from cloudshell.raritan.command_actions.system_actions import SystemActions +from cloudshell.raritan.helpers.errors import NotSupportedRaritanError + +if TYPE_CHECKING: + from ..cli.raritan_cli_configurator import RaritanCliConfigurator + + +class RaritanOutletsStateFlow: + AVAILABLE_STATES = ["on", "off", "cycle"] + + def __init__(self, cli_configurator: RaritanCliConfigurator): + self.cli_configurator = cli_configurator + + @staticmethod + def _ports_to_outlet_ids(ports: list[str]) -> str: + """Convert ports to the suitable format.""" + return ",".join(port.split("/")[-1].replace("PS", "") for port in ports) + + def set_outlets_state(self, ports: list[str], state: str) -> None: + """Set Outlet/Outlets state. + + Change outlet or list of outlets state to the provided state. + :param ports: ['192.168.30.128/PS4', '192.168.30.128/PS6'] + :param state: outlet state to be set. Possible values: on, off, cycle + """ + if state not in self.AVAILABLE_STATES: + raise NotSupportedRaritanError(f"State '{state}' is not supported.") + + outlets = RaritanOutletsStateFlow._ports_to_outlet_ids(ports=ports) + with self.cli_configurator.enable_mode_service() as enable_cli_service: + system_actions = SystemActions(enable_cli_service) + + system_actions.set_outlets_state(outlets=outlets, outlet_state=state) diff --git a/cloudshell/raritan/helpers/__init__.py b/cloudshell/raritan/helpers/__init__.py new file mode 100644 index 0000000..b36383a --- /dev/null +++ b/cloudshell/raritan/helpers/__init__.py @@ -0,0 +1,3 @@ +from pkgutil import extend_path + +__path__ = extend_path(__path__, __name__) diff --git a/cloudshell/raritan/helpers/errors.py b/cloudshell/raritan/helpers/errors.py new file mode 100644 index 0000000..4aa9652 --- /dev/null +++ b/cloudshell/raritan/helpers/errors.py @@ -0,0 +1,13 @@ +from __future__ import annotations + + +class BaseRaritanError(Exception): + """Base Raritan Error.""" + + +class NotSupportedRaritanError(BaseRaritanError): + """Not supported by Raritan.""" + + +class SnmpRaritanError(BaseRaritanError): + """Base SNMP Raritan Error.""" diff --git a/cloudshell/template/a.py b/cloudshell/template/a.py deleted file mode 100644 index e98c378..0000000 --- a/cloudshell/template/a.py +++ /dev/null @@ -1 +0,0 @@ -b = "b" diff --git a/cloudshell/template/package.py b/cloudshell/template/package.py deleted file mode 100644 index fb2e3b8..0000000 --- a/cloudshell/template/package.py +++ /dev/null @@ -1,7 +0,0 @@ -from cloudshell.shell.core.driver_context import AutoLoadCommandContext - -from cloudshell.template.a import b - -assert b -assert AutoLoadCommandContext -info = "info" diff --git a/requirements.txt b/requirements.txt index 4982005..8932187 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1,8 @@ -cloudshell-shell-core~=5.1 +cloudshell-shell-core~=6.0 +cloudshell-shell-standards~=2.0 +cloudshell-shell-flows~=3.0 +cloudshell-cli~=5.0 +cloudshell-snmp~=5.0 +cloudshell-snmp-autoload~=2.0 +attrs>=22,<24 +typing-extensions>=4.4 diff --git a/setup.py b/setup.py index 54a946f..d4be321 100644 --- a/setup.py +++ b/setup.py @@ -7,17 +7,17 @@ def read_file(file_name: str) -> str: setup( - name="cloudshell-template", - url="http://www.qualisystems.com/", - author="QualiSystems", - author_email="info@qualisystems.com", + name="cloudshell-raritan", + url="http://www.quali.com/", + author="Quali", + author_email="info@quali.com", packages=find_packages(), install_requires=read_file("requirements.txt"), tests_require=read_file("test_requirements.txt"), - python_requires="~=3.7", + python_requires="~=3.9", version=read_file("version.txt"), package_data={"": ["*.txt"]}, - description="", - long_description="", + description="Quali Raritan PDU specific package", + long_description="Raritan PDU Shell operations", include_package_data=True, ) diff --git a/tests/cloudshell/raritan/__init__.py b/tests/cloudshell/raritan/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/tests/cloudshell/raritan/command_actions/__init__.py b/tests/cloudshell/raritan/command_actions/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/tests/cloudshell/raritan/command_actions/test_system_actions.py b/tests/cloudshell/raritan/command_actions/test_system_actions.py new file mode 100644 index 0000000..3c247c1 --- /dev/null +++ b/tests/cloudshell/raritan/command_actions/test_system_actions.py @@ -0,0 +1,107 @@ +from __future__ import annotations + +from unittest import TestCase +from unittest.mock import Mock, patch + +from cloudshell.raritan.command_actions.system_actions import SystemActions + + +class TestSystemActions(TestCase): + def setUp(self): + self._cli_service = Mock() + self.system_actions = SystemActions(self._cli_service) + + def test_init(self): + self.assertIs(self.system_actions._cli_service, self._cli_service) + + @patch("cloudshell.raritan.command_actions.system_actions.CommandTemplateExecutor") + def test_get_pdu_info(self, command_template_executor): + output = """ +PDU 'Raritan_PX3_demo_2' +Model: PX3-5145R +Firmware Version: 4.1.1.5-49961 +Serial Number: RE25550015 +Board Revision: 0x03 + +Relay behavior on power loss: Non-latching +Trip cause outlet handling: Keep unchanged +Default outlet state on power-up: Last known state +Power cycle delay: 10 seconds + +Outlet power sequence: default +Outlet sequence delays: 1-8: 0 s +Inrush guard delay: 200 ms +Outlet initialization delay: 3 s + +Voltage rating: 100-120V +Current rating: 12A +Frequency rating: 50/60Hz +Power rating: 1.2-1.4kVA + +Internal beeper: Off + +Sensor data retrieval: Enabled +Sensor data backup: Disabled +Measurements per log entry: 60 +Log capacity: 120 records + """ + execute_command = Mock() + command_template_executor.return_value = execute_command + execute_command.execute_command.return_value = output + + # act + res = self.system_actions.get_pdu_info() + + # assert + self.assertEqual( + res, {"model": "PX3-5145R", "fw": "4.1.1.5-49961", "serial": "RE25550015"} + ) + + @patch("cloudshell.raritan.command_actions.system_actions.CommandTemplateExecutor") + def test_get_outlets(self, command_template_executor): + output = """ +Outlet 1: +Power state: On + +Outlet 2: +Power state: Off + +Outlet 3: +Power state: On + +Outlet 4: +Power state: Off + +Outlet 5: +Power state: On + +Outlet 6: +Power state: Off + +Outlet 7: +Power state: On + +Outlet 8: +Power state: Off + """ + execute_command = Mock() + command_template_executor.return_value = execute_command + execute_command.execute_command.return_value = output + + # act + res = self.system_actions.get_outlets() + + # assert + self.assertEqual( + res, + { + "1": "On", + "2": "Off", + "3": "On", + "4": "Off", + "5": "On", + "6": "Off", + "7": "On", + "8": "Off", + }, + ) diff --git a/tests/cloudshell/test_package.py b/tests/cloudshell/test_package.py deleted file mode 100644 index 95c918d..0000000 --- a/tests/cloudshell/test_package.py +++ /dev/null @@ -1,5 +0,0 @@ -from cloudshell.template.package import info - - -def test_info(): - assert info == "info" diff --git a/tox.ini b/tox.ini index 0e498f2..263dc75 100644 --- a/tox.ini +++ b/tox.ini @@ -2,10 +2,9 @@ # in multiple virtualenvs. This configuration file will run the # test suite on all supported python versions. To use it, "pip install tox" # and then run "tox" from this directory. - [tox] envlist = - py{37,39}-{master,dev} + py{39}-{master,dev} pre-commit build distshare = dist @@ -17,7 +16,7 @@ deps = master: -r test_requirements.txt dev: -r dev_requirements.txt commands = - pytest --cov=cloudshell.template tests --cov-report=xml + pytest --cov=cloudshell.raritan tests --cov-report=xml [testenv:pre-commit] skip_install = true @@ -31,7 +30,7 @@ commands = python -m build [isort] profile=black -forced_separate = cloudshell.template,tests +forced_separate = cloudshell.raritan,tests skip = mibs [flake8] @@ -40,3 +39,4 @@ max-line-length = 88 ;and W503 is not PEP 8 compliant ignore = D100,D101,D102,D103,D104,D105,D106,D107,D401,W503,E203 exclude = mibs +known-modules = cloudshell-raritan:[cloudshell.raritan],cloudshell-snmp:[cloudshell.snmp],cloudshell-cli:[cloudshell.cli],cloudshell-shell-flows:[cloudshell.shell.flows],cloudshell-shell-standards:[cloudshell.shell.standards],cloudshell-shell-core:[cloudshell.shell.core] diff --git a/version.txt b/version.txt index 1c99cf0..3eefcb9 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.4.4 +1.0.0