logstash-integration-snmp 4.0.0-java

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (324) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGELOG.md +23 -0
  3. data/CONTRIBUTORS +20 -0
  4. data/Gemfile +11 -0
  5. data/LICENSE +202 -0
  6. data/README.md +89 -0
  7. data/VERSION +1 -0
  8. data/docs/index.asciidoc +202 -0
  9. data/docs/input-snmp.asciidoc +524 -0
  10. data/docs/input-snmptrap.asciidoc +392 -0
  11. data/lib/logstash/inputs/snmp.rb +369 -0
  12. data/lib/logstash/inputs/snmptrap.rb +190 -0
  13. data/lib/logstash/plugin_mixins/snmp/common.rb +197 -0
  14. data/lib/logstash-integration-snmp_jars.rb +6 -0
  15. data/lib/mibs/ietf/ACCOUNTING-CONTROL-MIB.dic +1316 -0
  16. data/lib/mibs/ietf/ADSL-LINE-EXT-MIB.dic +1724 -0
  17. data/lib/mibs/ietf/ADSL-LINE-MIB.dic +7297 -0
  18. data/lib/mibs/ietf/ADSL-TC-MIB.dic +160 -0
  19. data/lib/mibs/ietf/ADSL2-LINE-MIB.dic +8663 -0
  20. data/lib/mibs/ietf/ADSL2-LINE-TC-MIB.dic +1462 -0
  21. data/lib/mibs/ietf/AGENTX-MIB.dic +817 -0
  22. data/lib/mibs/ietf/AGGREGATE-MIB.dic +708 -0
  23. data/lib/mibs/ietf/ALARM-MIB.dic +1734 -0
  24. data/lib/mibs/ietf/APM-MIB.dic +2870 -0
  25. data/lib/mibs/ietf/APPC-MIB.dic +8687 -0
  26. data/lib/mibs/ietf/APPLETALK-MIB.dic +4399 -0
  27. data/lib/mibs/ietf/APPLICATION-MIB.dic +3750 -0
  28. data/lib/mibs/ietf/APPN-DLUR-MIB.dic +972 -0
  29. data/lib/mibs/ietf/APPN-MIB.dic +9364 -0
  30. data/lib/mibs/ietf/APPN-TRAP-MIB.dic +664 -0
  31. data/lib/mibs/ietf/APS-MIB.dic +2430 -0
  32. data/lib/mibs/ietf/ARC-MIB.dic +552 -0
  33. data/lib/mibs/ietf/ATM-ACCOUNTING-INFORMATION-MIB.dic +816 -0
  34. data/lib/mibs/ietf/ATM-MIB.dic +4104 -0
  35. data/lib/mibs/ietf/ATM-TC-MIB.dic +914 -0
  36. data/lib/mibs/ietf/ATM2-MIB.dic +4715 -0
  37. data/lib/mibs/ietf/BFD-STD-MIB.dic +2367 -0
  38. data/lib/mibs/ietf/BFD-TC-STD-MIB.dic +202 -0
  39. data/lib/mibs/ietf/BGP4-MIB.dic +1931 -0
  40. data/lib/mibs/ietf/BLDG-HVAC-MIB.dic +812 -0
  41. data/lib/mibs/ietf/BRIDGE-MIB.dic +2257 -0
  42. data/lib/mibs/ietf/CAPWAP-BASE-MIB.dic +4128 -0
  43. data/lib/mibs/ietf/CAPWAP-DOT11-MIB.dic +482 -0
  44. data/lib/mibs/ietf/CHARACTER-MIB.dic +1140 -0
  45. data/lib/mibs/ietf/CIRCUIT-IF-MIB.dic +493 -0
  46. data/lib/mibs/ietf/CLNS-MIB.dic +1702 -0
  47. data/lib/mibs/ietf/COFFEE-POT-MIB.dic +282 -0
  48. data/lib/mibs/ietf/COPS-CLIENT-MIB.dic +1270 -0
  49. data/lib/mibs/ietf/DECNET-PHIV-MIB.dic +5837 -0
  50. data/lib/mibs/ietf/DIAL-CONTROL-MIB.dic +2139 -0
  51. data/lib/mibs/ietf/DIFFSERV-CONFIG-MIB.dic +378 -0
  52. data/lib/mibs/ietf/DIFFSERV-MIB.dic +5073 -0
  53. data/lib/mibs/ietf/DIRECTORY-SERVER-MIB.dic +1041 -0
  54. data/lib/mibs/ietf/DISMAN-EVENT-MIB.dic +3151 -0
  55. data/lib/mibs/ietf/DISMAN-EXPRESSION-MIB.dic +1716 -0
  56. data/lib/mibs/ietf/DISMAN-NSLOOKUP-MIB.dic +698 -0
  57. data/lib/mibs/ietf/DISMAN-PING-MIB.dic +2635 -0
  58. data/lib/mibs/ietf/DISMAN-SCHEDULE-MIB.dic +1744 -0
  59. data/lib/mibs/ietf/DISMAN-SCRIPT-MIB.dic +2820 -0
  60. data/lib/mibs/ietf/DISMAN-TRACEROUTE-MIB.dic +3239 -0
  61. data/lib/mibs/ietf/DLSW-MIB.dic +5635 -0
  62. data/lib/mibs/ietf/DNS-RESOLVER-MIB.dic +1765 -0
  63. data/lib/mibs/ietf/DNS-SERVER-MIB.dic +1593 -0
  64. data/lib/mibs/ietf/DOCS-BPI-MIB.dic +2634 -0
  65. data/lib/mibs/ietf/DOCS-CABLE-DEVICE-MIB.dic +5042 -0
  66. data/lib/mibs/ietf/DOCS-IETF-BPI2-MIB.dic +5478 -0
  67. data/lib/mibs/ietf/DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB.dic +2447 -0
  68. data/lib/mibs/ietf/DOCS-IETF-QOS-MIB.dic +4886 -0
  69. data/lib/mibs/ietf/DOCS-IETF-SUBMGT-MIB.dic +1331 -0
  70. data/lib/mibs/ietf/DOCS-IF-MIB.dic +7980 -0
  71. data/lib/mibs/ietf/DOT12-IF-MIB.dic +1066 -0
  72. data/lib/mibs/ietf/DOT12-RPTR-MIB.dic +2669 -0
  73. data/lib/mibs/ietf/DOT3-EPON-MIB.dic +3297 -0
  74. data/lib/mibs/ietf/DOT3-OAM-MIB.dic +2830 -0
  75. data/lib/mibs/ietf/DS0-MIB.dic +466 -0
  76. data/lib/mibs/ietf/DS0BUNDLE-MIB.dic +468 -0
  77. data/lib/mibs/ietf/DS1-MIB.dic +4890 -0
  78. data/lib/mibs/ietf/DS3-MIB.dic +2719 -0
  79. data/lib/mibs/ietf/DSA-MIB.dic +888 -0
  80. data/lib/mibs/ietf/DSMON-MIB.dic +6177 -0
  81. data/lib/mibs/ietf/DVB-RCS-MIB.dic +5764 -0
  82. data/lib/mibs/ietf/EBN-MIB.dic +1026 -0
  83. data/lib/mibs/ietf/EFM-CU-MIB.dic +4335 -0
  84. data/lib/mibs/ietf/ENTITY-MIB.dic +2235 -0
  85. data/lib/mibs/ietf/ENTITY-SENSOR-MIB.dic +653 -0
  86. data/lib/mibs/ietf/ENTITY-STATE-MIB.dic +457 -0
  87. data/lib/mibs/ietf/ENTITY-STATE-TC-MIB.dic +260 -0
  88. data/lib/mibs/ietf/ETHER-CHIPSET-MIB.dic +787 -0
  89. data/lib/mibs/ietf/EtherLike-MIB.dic +2548 -0
  90. data/lib/mibs/ietf/FC-MGMT-MIB.dic +3465 -0
  91. data/lib/mibs/ietf/FCIP-MGMT-MIB.dic +1596 -0
  92. data/lib/mibs/ietf/FDDI-SMT73-MIB.dic +3378 -0
  93. data/lib/mibs/ietf/FIBRE-CHANNEL-FE-MIB.dic +2504 -0
  94. data/lib/mibs/ietf/FLOAT-TC-MIB.dic +128 -0
  95. data/lib/mibs/ietf/FLOW-METER-MIB.dic +3201 -0
  96. data/lib/mibs/ietf/FORCES-MIB.dic +598 -0
  97. data/lib/mibs/ietf/FR-ATM-PVC-SERVICE-IWF-MIB.dic +1601 -0
  98. data/lib/mibs/ietf/FR-MFR-MIB.dic +1351 -0
  99. data/lib/mibs/ietf/FRAME-RELAY-DTE-MIB.dic +1688 -0
  100. data/lib/mibs/ietf/FRNETSERV-MIB.dic +3940 -0
  101. data/lib/mibs/ietf/FRSLD-MIB.dic +2580 -0
  102. data/lib/mibs/ietf/Finisher-MIB.dic +1416 -0
  103. data/lib/mibs/ietf/GMPLS-LABEL-STD-MIB.dic +965 -0
  104. data/lib/mibs/ietf/GMPLS-LSR-STD-MIB.dic +693 -0
  105. data/lib/mibs/ietf/GMPLS-TC-STD-MIB.dic +180 -0
  106. data/lib/mibs/ietf/GMPLS-TE-STD-MIB.dic +2542 -0
  107. data/lib/mibs/ietf/GSMP-MIB.dic +2468 -0
  108. data/lib/mibs/ietf/HC-ALARM-MIB.dic +1050 -0
  109. data/lib/mibs/ietf/HC-PerfHist-TC-MIB.dic +310 -0
  110. data/lib/mibs/ietf/HC-RMON-MIB.dic +4456 -0
  111. data/lib/mibs/ietf/HDSL2-SHDSL-LINE-MIB.dic +3955 -0
  112. data/lib/mibs/ietf/HOST-RESOURCES-MIB.dic +2453 -0
  113. data/lib/mibs/ietf/HPR-IP-MIB.dic +640 -0
  114. data/lib/mibs/ietf/HPR-MIB.dic +1959 -0
  115. data/lib/mibs/ietf/IANA-ITU-ALARM-TC-MIB.dic +936 -0
  116. data/lib/mibs/ietf/IF-CAP-STACK-MIB.dic +356 -0
  117. data/lib/mibs/ietf/IF-INVERTED-STACK-MIB.dic +220 -0
  118. data/lib/mibs/ietf/IF-MIB.dic +2753 -0
  119. data/lib/mibs/ietf/IFCP-MGMT-MIB.dic +1717 -0
  120. data/lib/mibs/ietf/IGMP-STD-MIB.dic +809 -0
  121. data/lib/mibs/ietf/INET-ADDRESS-MIB.dic +570 -0
  122. data/lib/mibs/ietf/INTEGRATED-SERVICES-GUARANTEED-MIB.dic +319 -0
  123. data/lib/mibs/ietf/INTEGRATED-SERVICES-MIB.dic +1196 -0
  124. data/lib/mibs/ietf/INTERFACETOPN-MIB.dic +1705 -0
  125. data/lib/mibs/ietf/IP-FORWARD-MIB.dic +1853 -0
  126. data/lib/mibs/ietf/IP-MIB.dic +7064 -0
  127. data/lib/mibs/ietf/IPATM-IPMC-MIB.dic +4830 -0
  128. data/lib/mibs/ietf/IPFIX-MIB.dic +2334 -0
  129. data/lib/mibs/ietf/IPFIX-SELECTOR-MIB.dic +215 -0
  130. data/lib/mibs/ietf/IPMCAST-MIB.dic +3390 -0
  131. data/lib/mibs/ietf/IPMROUTE-STD-MIB.dic +1246 -0
  132. data/lib/mibs/ietf/IPOA-MIB.dic +2372 -0
  133. data/lib/mibs/ietf/IPS-AUTH-MIB.dic +1609 -0
  134. data/lib/mibs/ietf/IPSEC-SPD-MIB.dic +3989 -0
  135. data/lib/mibs/ietf/IPV6-FLOW-LABEL-MIB.dic +110 -0
  136. data/lib/mibs/ietf/IPV6-ICMP-MIB.dic +748 -0
  137. data/lib/mibs/ietf/IPV6-MIB.dic +2028 -0
  138. data/lib/mibs/ietf/IPV6-MLD-MIB.dic +659 -0
  139. data/lib/mibs/ietf/IPV6-TCP-MIB.dic +332 -0
  140. data/lib/mibs/ietf/IPV6-UDP-MIB.dic +209 -0
  141. data/lib/mibs/ietf/ISCSI-MIB.dic +4613 -0
  142. data/lib/mibs/ietf/ISDN-MIB.dic +1796 -0
  143. data/lib/mibs/ietf/ISIS-MIB.dic +6215 -0
  144. data/lib/mibs/ietf/ISNS-MIB.dic +6578 -0
  145. data/lib/mibs/ietf/ITU-ALARM-MIB.dic +665 -0
  146. data/lib/mibs/ietf/ITU-ALARM-TC-MIB.dic +137 -0
  147. data/lib/mibs/ietf/Job-Monitoring-MIB.dic +2519 -0
  148. data/lib/mibs/ietf/L2TP-MIB.dic +4050 -0
  149. data/lib/mibs/ietf/LANGTAG-TC-MIB.dic +104 -0
  150. data/lib/mibs/ietf/LISP-MIB.dic +4067 -0
  151. data/lib/mibs/ietf/LMP-MIB.dic +5166 -0
  152. data/lib/mibs/ietf/MALLOC-MIB.dic +2156 -0
  153. data/lib/mibs/ietf/MAU-MIB.dic +2619 -0
  154. data/lib/mibs/ietf/MIDCOM-MIB.dic +2856 -0
  155. data/lib/mibs/ietf/MIOX25-MIB.dic +828 -0
  156. data/lib/mibs/ietf/MIP-MIB.dic +3473 -0
  157. data/lib/mibs/ietf/MOBILEIPV6-MIB.dic +5228 -0
  158. data/lib/mibs/ietf/MPLS-FTN-STD-MIB.dic +1594 -0
  159. data/lib/mibs/ietf/MPLS-L3VPN-STD-MIB.dic +2548 -0
  160. data/lib/mibs/ietf/MPLS-LC-ATM-STD-MIB.dic +491 -0
  161. data/lib/mibs/ietf/MPLS-LC-FR-STD-MIB.dic +395 -0
  162. data/lib/mibs/ietf/MPLS-LDP-ATM-STD-MIB.dic +1019 -0
  163. data/lib/mibs/ietf/MPLS-LDP-FRAME-RELAY-STD-MIB.dic +862 -0
  164. data/lib/mibs/ietf/MPLS-LDP-GENERIC-STD-MIB.dic +445 -0
  165. data/lib/mibs/ietf/MPLS-LDP-STD-MIB.dic +3657 -0
  166. data/lib/mibs/ietf/MPLS-LSR-STD-MIB.dic +3103 -0
  167. data/lib/mibs/ietf/MPLS-TC-STD-MIB.dic +911 -0
  168. data/lib/mibs/ietf/MPLS-TE-STD-MIB.dic +3673 -0
  169. data/lib/mibs/ietf/MSDP-MIB.dic +1893 -0
  170. data/lib/mibs/ietf/MTA-MIB.dic +1898 -0
  171. data/lib/mibs/ietf/Modem-MIB.dic +2054 -0
  172. data/lib/mibs/ietf/NAT-MIB.dic +3866 -0
  173. data/lib/mibs/ietf/NETWORK-SERVICES-MIB.dic +1034 -0
  174. data/lib/mibs/ietf/NHDP-MIB.dic +3005 -0
  175. data/lib/mibs/ietf/NHRP-MIB.dic +3660 -0
  176. data/lib/mibs/ietf/NOTIFICATION-LOG-MIB.dic +1156 -0
  177. data/lib/mibs/ietf/NTPv4-MIB.dic +1535 -0
  178. data/lib/mibs/ietf/OPT-IF-MIB.dic +8972 -0
  179. data/lib/mibs/ietf/OSPF-MIB.dic +5963 -0
  180. data/lib/mibs/ietf/OSPF-TRAP-MIB.dic +1190 -0
  181. data/lib/mibs/ietf/OSPFV3-MIB.dic +5708 -0
  182. data/lib/mibs/ietf/P-BRIDGE-MIB.dic +1499 -0
  183. data/lib/mibs/ietf/PARALLEL-MIB.dic +476 -0
  184. data/lib/mibs/ietf/PIM-MIB.dic +1393 -0
  185. data/lib/mibs/ietf/PIM-STD-MIB.dic +6819 -0
  186. data/lib/mibs/ietf/PINT-MIB.dic +830 -0
  187. data/lib/mibs/ietf/PKTC-IETF-MTA-MIB.dic +3191 -0
  188. data/lib/mibs/ietf/PKTC-IETF-SIG-MIB.dic +4713 -0
  189. data/lib/mibs/ietf/PMIPV6-MIB.dic +3010 -0
  190. data/lib/mibs/ietf/PMIPV6-TC-MIB.dic +293 -0
  191. data/lib/mibs/ietf/POLICY-BASED-MANAGEMENT-MIB.dic +3316 -0
  192. data/lib/mibs/ietf/POWER-ETHERNET-MIB.dic +959 -0
  193. data/lib/mibs/ietf/PPP-BRIDGE-NCP-MIB.dic +587 -0
  194. data/lib/mibs/ietf/PPP-IP-NCP-MIB.dic +269 -0
  195. data/lib/mibs/ietf/PPP-LCP-MIB.dic +994 -0
  196. data/lib/mibs/ietf/PPP-SEC-MIB.dic +411 -0
  197. data/lib/mibs/ietf/PSAMP-MIB.dic +998 -0
  198. data/lib/mibs/ietf/PTOPO-MIB.dic +1135 -0
  199. data/lib/mibs/ietf/PW-ATM-MIB.dic +1642 -0
  200. data/lib/mibs/ietf/PW-CEP-STD-MIB.dic +3661 -0
  201. data/lib/mibs/ietf/PW-STD-MIB.dic +3592 -0
  202. data/lib/mibs/ietf/PW-TC-STD-MIB.dic +437 -0
  203. data/lib/mibs/ietf/PW-TDM-MIB.dic +1896 -0
  204. data/lib/mibs/ietf/PerfHist-TC-MIB.dic +152 -0
  205. data/lib/mibs/ietf/Printer-MIB.dic +6665 -0
  206. data/lib/mibs/ietf/Q-BRIDGE-MIB.dic +3115 -0
  207. data/lib/mibs/ietf/RADIUS-ACC-CLIENT-MIB.dic +991 -0
  208. data/lib/mibs/ietf/RADIUS-ACC-SERVER-MIB.dic +1183 -0
  209. data/lib/mibs/ietf/RADIUS-AUTH-CLIENT-MIB.dic +1073 -0
  210. data/lib/mibs/ietf/RADIUS-AUTH-SERVER-MIB.dic +1251 -0
  211. data/lib/mibs/ietf/RADIUS-DYNAUTH-CLIENT-MIB.dic +1116 -0
  212. data/lib/mibs/ietf/RADIUS-DYNAUTH-SERVER-MIB.dic +1003 -0
  213. data/lib/mibs/ietf/RAQMON-MIB.dic +2695 -0
  214. data/lib/mibs/ietf/RBRIDGE-MIB.dic +2981 -0
  215. data/lib/mibs/ietf/RDBMS-MIB.dic +1935 -0
  216. data/lib/mibs/ietf/RFC1065-SMI.dic +108 -0
  217. data/lib/mibs/ietf/RFC1155-SMI.dic +118 -0
  218. data/lib/mibs/ietf/RFC1158-MIB.dic +2440 -0
  219. data/lib/mibs/ietf/RFC1213-MIB.dic +3434 -0
  220. data/lib/mibs/ietf/RFC1269-MIB.dic +557 -0
  221. data/lib/mibs/ietf/RFC1271-MIB.dic +4135 -0
  222. data/lib/mibs/ietf/RFC1285-MIB.dic +2842 -0
  223. data/lib/mibs/ietf/RFC1316-MIB.dic +800 -0
  224. data/lib/mibs/ietf/RFC1381-MIB.dic +1347 -0
  225. data/lib/mibs/ietf/RFC1382-MIB.dic +3820 -0
  226. data/lib/mibs/ietf/RFC1414-MIB.dic +214 -0
  227. data/lib/mibs/ietf/RIPv2-MIB.dic +773 -0
  228. data/lib/mibs/ietf/RMON-MIB.dic +5551 -0
  229. data/lib/mibs/ietf/RMON2-MIB.dic +8224 -0
  230. data/lib/mibs/ietf/ROHC-MIB.dic +1613 -0
  231. data/lib/mibs/ietf/ROHC-RTP-MIB.dic +859 -0
  232. data/lib/mibs/ietf/ROHC-UNCOMPRESSED-MIB.dic +267 -0
  233. data/lib/mibs/ietf/RPKI-ROUTER-MIB.dic +1363 -0
  234. data/lib/mibs/ietf/RS-232-MIB.dic +1335 -0
  235. data/lib/mibs/ietf/RSERPOOL-MIB.dic +2501 -0
  236. data/lib/mibs/ietf/RSTP-MIB.dic +427 -0
  237. data/lib/mibs/ietf/RSVP-MIB.dic +4135 -0
  238. data/lib/mibs/ietf/RTP-MIB.dic +1376 -0
  239. data/lib/mibs/ietf/SCSI-MIB.dic +3804 -0
  240. data/lib/mibs/ietf/SCTP-MIB.dic +1924 -0
  241. data/lib/mibs/ietf/SFLOW-MIB.dic +568 -0
  242. data/lib/mibs/ietf/SIP-COMMON-MIB.dic +2769 -0
  243. data/lib/mibs/ietf/SIP-MIB.dic +1438 -0
  244. data/lib/mibs/ietf/SIP-SERVER-MIB.dic +1150 -0
  245. data/lib/mibs/ietf/SIP-TC-MIB.dic +257 -0
  246. data/lib/mibs/ietf/SIP-UA-MIB.dic +268 -0
  247. data/lib/mibs/ietf/SLAPM-MIB.dic +4527 -0
  248. data/lib/mibs/ietf/SMON-MIB.dic +1758 -0
  249. data/lib/mibs/ietf/SNA-NAU-MIB.dic +4042 -0
  250. data/lib/mibs/ietf/SNA-SDLC-MIB.dic +3858 -0
  251. data/lib/mibs/ietf/SNMP-COMMUNITY-MIB.dic +715 -0
  252. data/lib/mibs/ietf/SNMP-FRAMEWORK-MIB.dic +709 -0
  253. data/lib/mibs/ietf/SNMP-MPD-MIB.dic +230 -0
  254. data/lib/mibs/ietf/SNMP-NOTIFICATION-MIB.dic +859 -0
  255. data/lib/mibs/ietf/SNMP-PROXY-MIB.dic +414 -0
  256. data/lib/mibs/ietf/SNMP-REPEATER-MIB.dic +4335 -0
  257. data/lib/mibs/ietf/SNMP-SSH-TM-MIB.dic +447 -0
  258. data/lib/mibs/ietf/SNMP-TARGET-MIB.dic +924 -0
  259. data/lib/mibs/ietf/SNMP-TLS-TM-MIB.dic +1449 -0
  260. data/lib/mibs/ietf/SNMP-TSM-MIB.dic +315 -0
  261. data/lib/mibs/ietf/SNMP-USER-BASED-SM-MIB.dic +1164 -0
  262. data/lib/mibs/ietf/SNMP-USM-AES-MIB.dic +95 -0
  263. data/lib/mibs/ietf/SNMP-USM-DH-OBJECTS-MIB.dic +653 -0
  264. data/lib/mibs/ietf/SNMP-VIEW-BASED-ACM-MIB.dic +1202 -0
  265. data/lib/mibs/ietf/SNMPv2-MIB.dic +1382 -0
  266. data/lib/mibs/ietf/SNMPv2-SMI.dic +223 -0
  267. data/lib/mibs/ietf/SNMPv2-USEC-MIB.dic +405 -0
  268. data/lib/mibs/ietf/SONET-MIB.dic +3308 -0
  269. data/lib/mibs/ietf/SOURCE-ROUTING-MIB.dic +542 -0
  270. data/lib/mibs/ietf/SSPM-MIB.dic +1530 -0
  271. data/lib/mibs/ietf/SYSAPPL-MIB.dic +2092 -0
  272. data/lib/mibs/ietf/T11-FC-FABRIC-ADDR-MGR-MIB.dic +1779 -0
  273. data/lib/mibs/ietf/T11-FC-FABRIC-CONFIG-SERVER-MIB.dic +2822 -0
  274. data/lib/mibs/ietf/T11-FC-FABRIC-LOCK-MIB.dic +700 -0
  275. data/lib/mibs/ietf/T11-FC-FSPF-MIB.dic +1889 -0
  276. data/lib/mibs/ietf/T11-FC-NAME-SERVER-MIB.dic +1775 -0
  277. data/lib/mibs/ietf/T11-FC-ROUTE-MIB.dic +655 -0
  278. data/lib/mibs/ietf/T11-FC-RSCN-MIB.dic +1110 -0
  279. data/lib/mibs/ietf/T11-FC-VIRTUAL-FABRIC-MIB.dic +770 -0
  280. data/lib/mibs/ietf/T11-FC-ZONE-SERVER-MIB.dic +3886 -0
  281. data/lib/mibs/ietf/T11-TC-MIB.dic +110 -0
  282. data/lib/mibs/ietf/TCP-ESTATS-MIB.dic +3926 -0
  283. data/lib/mibs/ietf/TCP-MIB.dic +1319 -0
  284. data/lib/mibs/ietf/TCPIPX-MIB.dic +457 -0
  285. data/lib/mibs/ietf/TE-LINK-STD-MIB.dic +2876 -0
  286. data/lib/mibs/ietf/TE-MIB.dic +2924 -0
  287. data/lib/mibs/ietf/TED-MIB.dic +1749 -0
  288. data/lib/mibs/ietf/TIME-AGGREGATE-MIB.dic +550 -0
  289. data/lib/mibs/ietf/TN3270E-MIB.dic +2785 -0
  290. data/lib/mibs/ietf/TN3270E-RT-MIB.dic +1317 -0
  291. data/lib/mibs/ietf/TOKEN-RING-RMON-MIB.dic +2820 -0
  292. data/lib/mibs/ietf/TOKENRING-MIB.dic +1184 -0
  293. data/lib/mibs/ietf/TOKENRING-STATION-SR-MIB.dic +292 -0
  294. data/lib/mibs/ietf/TRANSPORT-ADDRESS-MIB.dic +610 -0
  295. data/lib/mibs/ietf/TRIP-MIB.dic +3159 -0
  296. data/lib/mibs/ietf/TRIP-TC-MIB.dic +241 -0
  297. data/lib/mibs/ietf/TUNNEL-MIB.dic +1095 -0
  298. data/lib/mibs/ietf/UDP-MIB.dic +751 -0
  299. data/lib/mibs/ietf/UDPLITE-MIB.dic +704 -0
  300. data/lib/mibs/ietf/UPS-MIB.dic +3088 -0
  301. data/lib/mibs/ietf/URI-TC-MIB.dic +193 -0
  302. data/lib/mibs/ietf/UUID-TC-MIB.dic +135 -0
  303. data/lib/mibs/ietf/VDSL-LINE-EXT-MCM-MIB.dic +989 -0
  304. data/lib/mibs/ietf/VDSL-LINE-EXT-SCM-MIB.dic +605 -0
  305. data/lib/mibs/ietf/VDSL-LINE-MIB.dic +4518 -0
  306. data/lib/mibs/ietf/VDSL2-LINE-MIB.dic +11029 -0
  307. data/lib/mibs/ietf/VDSL2-LINE-TC-MIB.dic +3152 -0
  308. data/lib/mibs/ietf/VPN-TC-STD-MIB.dic +121 -0
  309. data/lib/mibs/ietf/VRRP-MIB.dic +1163 -0
  310. data/lib/mibs/ietf/VRRPV3-MIB.dic +1403 -0
  311. data/lib/mibs/ietf/WWW-MIB.dic +1810 -0
  312. data/lib/mibs/logstash/iso.dic +18 -0
  313. data/logstash-integration-snmp.gemspec +40 -0
  314. data/spec/fixtures/RFC1213-MIB.dic +3445 -0
  315. data/spec/fixtures/collision.dic +25 -0
  316. data/spec/integration/inputs/snmp_spec.rb +443 -0
  317. data/spec/integration/inputs/snmptrap_spec.rb +383 -0
  318. data/spec/unit/inputs/common_spec.rb +264 -0
  319. data/spec/unit/inputs/snmp_spec.rb +510 -0
  320. data/spec/unit/inputs/snmptrap_spec.rb +141 -0
  321. data/vendor/jar-dependencies/org/logstash/integrations/plugin/4.0.0/plugin-4.0.0.jar +0 -0
  322. data/vendor/jar-dependencies/org/snakeyaml/snakeyaml-engine/2.7/snakeyaml-engine-2.7.jar +0 -0
  323. data/vendor/jar-dependencies/org/snmp4j/snmp4j/3.8.0/snmp4j-3.8.0.jar +0 -0
  324. metadata +523 -0
@@ -0,0 +1,1716 @@
1
+ # python version 1.0 DO NOT EDIT
2
+ #
3
+ # This python file has been generated by smidump version 0.5.0:
4
+ #
5
+ # smidump -f python DISMAN-EXPRESSION-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/DISMAN-EXPRESSION-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "DISMAN-EXPRESSION-MIB",
11
+
12
+ "DISMAN-EXPRESSION-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """IETF Distributed Management Working Group""",
17
+ "contact" :
18
+ """Ramanathan Kavasseri
19
+ Cisco Systems, Inc.
20
+ 170 West Tasman Drive,
21
+ San Jose CA 95134-1706.
22
+ Phone: +1 408 527 2446
23
+ Email: ramk@cisco.com""",
24
+ "description" :
25
+ """The MIB module for defining expressions of MIB objects for
26
+ management purposes.""",
27
+ "revisions" : (
28
+ {
29
+ "date" : "2000-10-16 00:00",
30
+ "description" :
31
+ """This is the initial version of this MIB.
32
+ Published as RFC 2982""",
33
+ },
34
+ ),
35
+ "identity node" : "dismanExpressionMIB",
36
+ },
37
+
38
+ "imports" : (
39
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
40
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
41
+ {"module" : "SNMPv2-SMI", "name" : "Integer32"},
42
+ {"module" : "SNMPv2-SMI", "name" : "Gauge32"},
43
+ {"module" : "SNMPv2-SMI", "name" : "Unsigned32"},
44
+ {"module" : "SNMPv2-SMI", "name" : "Counter32"},
45
+ {"module" : "SNMPv2-SMI", "name" : "Counter64"},
46
+ {"module" : "SNMPv2-SMI", "name" : "IpAddress"},
47
+ {"module" : "SNMPv2-SMI", "name" : "TimeTicks"},
48
+ {"module" : "SNMPv2-SMI", "name" : "mib-2"},
49
+ {"module" : "SNMPv2-SMI", "name" : "zeroDotZero"},
50
+ {"module" : "SNMPv2-TC", "name" : "RowStatus"},
51
+ {"module" : "SNMPv2-TC", "name" : "TruthValue"},
52
+ {"module" : "SNMPv2-TC", "name" : "TimeStamp"},
53
+ {"module" : "SNMPv2-MIB", "name" : "sysUpTime"},
54
+ {"module" : "SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
55
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
56
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
57
+ ),
58
+
59
+ "nodes" : {
60
+ "sysUpTimeInstance" : {
61
+ "nodetype" : "node",
62
+ "moduleName" : "DISMAN-EXPRESSION-MIB",
63
+ "oid" : "1.3.6.1.2.1.1.3.0",
64
+ }, # node
65
+ "dismanExpressionMIB" : {
66
+ "nodetype" : "node",
67
+ "moduleName" : "DISMAN-EXPRESSION-MIB",
68
+ "oid" : "1.3.6.1.2.1.90",
69
+ "status" : "current",
70
+ }, # node
71
+ "dismanExpressionMIBObjects" : {
72
+ "nodetype" : "node",
73
+ "moduleName" : "DISMAN-EXPRESSION-MIB",
74
+ "oid" : "1.3.6.1.2.1.90.1",
75
+ }, # node
76
+ "expResource" : {
77
+ "nodetype" : "node",
78
+ "moduleName" : "DISMAN-EXPRESSION-MIB",
79
+ "oid" : "1.3.6.1.2.1.90.1.1",
80
+ }, # node
81
+ "expResourceDeltaMinimum" : {
82
+ "nodetype" : "scalar",
83
+ "moduleName" : "DISMAN-EXPRESSION-MIB",
84
+ "oid" : "1.3.6.1.2.1.90.1.1.1",
85
+ "status" : "current",
86
+ "syntax" : {
87
+ "type" : {
88
+ "basetype" : "Integer32",
89
+ "ranges" : [
90
+ {
91
+ "min" : "-1",
92
+ "max" : "-1"
93
+ },
94
+ {
95
+ "min" : "1",
96
+ "max" : "600"
97
+ },
98
+ ],
99
+ "range" : {
100
+ "min" : "-1",
101
+ "max" : "600"
102
+ },
103
+ },
104
+ },
105
+ "access" : "readwrite",
106
+ "units" : "seconds",
107
+ "description" :
108
+ """The minimum expExpressionDeltaInterval this system will
109
+ accept. A system may use the larger values of this minimum to
110
+ lessen the impact of constantly computing deltas. For larger
111
+ delta sampling intervals the system samples less often and
112
+ suffers less overhead. This object provides a way to enforce
113
+ such lower overhead for all expressions created after it is
114
+ set.
115
+
116
+ The value -1 indicates that expResourceDeltaMinimum is
117
+ irrelevant as the system will not accept 'deltaValue' as a
118
+ value for expObjectSampleType.
119
+
120
+ Unless explicitly resource limited, a system's value for
121
+ this object should be 1, allowing as small as a 1 second
122
+ interval for ongoing delta sampling.
123
+
124
+ Changing this value will not invalidate an existing setting
125
+ of expObjectSampleType.""",
126
+ }, # scalar
127
+ "expResourceDeltaWildcardInstanceMaximum" : {
128
+ "nodetype" : "scalar",
129
+ "moduleName" : "DISMAN-EXPRESSION-MIB",
130
+ "oid" : "1.3.6.1.2.1.90.1.1.2",
131
+ "status" : "current",
132
+ "syntax" : {
133
+ "type" : { "module" :"", "name" : "Unsigned32"},
134
+ },
135
+ "access" : "readwrite",
136
+ "units" : "instances",
137
+ "description" :
138
+ """For every instance of a deltaValue object, one dynamic instance
139
+ entry is needed for holding the instance value from the previous
140
+ sample, i.e. to maintain state.
141
+
142
+ This object limits maximum number of dynamic instance entries
143
+ this system will support for wildcarded delta objects in
144
+ expressions. For a given delta expression, the number of
145
+ dynamic instances is the number of values that meet all criteria
146
+ to exist times the number of delta values in the expression.
147
+
148
+ A value of 0 indicates no preset limit, that is, the limit
149
+ is dynamic based on system operation and resources.
150
+
151
+ Unless explicitly resource limited, a system's value for
152
+ this object should be 0.
153
+
154
+
155
+
156
+ Changing this value will not eliminate or inhibit existing delta
157
+ wildcard instance objects but will prevent the creation of more
158
+ such objects.
159
+
160
+ An attempt to allocate beyond the limit results in expErrorCode
161
+ being tooManyWildcardValues for that evaluation attempt.""",
162
+ }, # scalar
163
+ "expResourceDeltaWildcardInstances" : {
164
+ "nodetype" : "scalar",
165
+ "moduleName" : "DISMAN-EXPRESSION-MIB",
166
+ "oid" : "1.3.6.1.2.1.90.1.1.3",
167
+ "status" : "current",
168
+ "syntax" : {
169
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
170
+ },
171
+ "access" : "readonly",
172
+ "units" : "instances",
173
+ "description" :
174
+ """The number of currently active instance entries as
175
+ defined for expResourceDeltaWildcardInstanceMaximum.""",
176
+ }, # scalar
177
+ "expResourceDeltaWildcardInstancesHigh" : {
178
+ "nodetype" : "scalar",
179
+ "moduleName" : "DISMAN-EXPRESSION-MIB",
180
+ "oid" : "1.3.6.1.2.1.90.1.1.4",
181
+ "status" : "current",
182
+ "syntax" : {
183
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
184
+ },
185
+ "access" : "readonly",
186
+ "units" : "instances",
187
+ "description" :
188
+ """The highest value of expResourceDeltaWildcardInstances
189
+ that has occurred since initialization of the managed
190
+ system.""",
191
+ }, # scalar
192
+ "expResourceDeltaWildcardInstanceResourceLacks" : {
193
+ "nodetype" : "scalar",
194
+ "moduleName" : "DISMAN-EXPRESSION-MIB",
195
+ "oid" : "1.3.6.1.2.1.90.1.1.5",
196
+ "status" : "current",
197
+ "syntax" : {
198
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
199
+ },
200
+ "access" : "readonly",
201
+ "units" : "instances",
202
+ "description" :
203
+ """The number of times this system could not evaluate an
204
+ expression because that would have created a value instance in
205
+ excess of expResourceDeltaWildcardInstanceMaximum.""",
206
+ }, # scalar
207
+ "expDefine" : {
208
+ "nodetype" : "node",
209
+ "moduleName" : "DISMAN-EXPRESSION-MIB",
210
+ "oid" : "1.3.6.1.2.1.90.1.2",
211
+ }, # node
212
+ "expExpressionTable" : {
213
+ "nodetype" : "table",
214
+ "moduleName" : "DISMAN-EXPRESSION-MIB",
215
+ "oid" : "1.3.6.1.2.1.90.1.2.1",
216
+ "status" : "current",
217
+ "description" :
218
+ """A table of expression definitions.""",
219
+ }, # table
220
+ "expExpressionEntry" : {
221
+ "nodetype" : "row",
222
+ "moduleName" : "DISMAN-EXPRESSION-MIB",
223
+ "oid" : "1.3.6.1.2.1.90.1.2.1.1",
224
+ "create" : "true",
225
+ "status" : "current",
226
+ "linkage" : [
227
+ "expExpressionOwner",
228
+ "expExpressionName",
229
+ ],
230
+ "description" :
231
+ """Information about a single expression. New expressions
232
+ can be created using expExpressionRowStatus.
233
+
234
+ To create an expression first create the named entry in this
235
+ table. Then use expExpressionName to populate expObjectTable.
236
+ For expression evaluation to succeed all related entries in
237
+ expExpressionTable and expObjectTable must be 'active'. If
238
+ these conditions are not met the corresponding values in
239
+ expValue simply are not instantiated.
240
+
241
+ Deleting an entry deletes all related entries in expObjectTable
242
+ and expErrorTable.
243
+
244
+ Because of the relationships among the multiple tables for an
245
+ expression (expExpressionTable, expObjectTable, and
246
+ expValueTable) and the SNMP rules for independence in setting
247
+ object values, it is necessary to do final error checking when
248
+ an expression is evaluated, that is, when one of its instances
249
+ in expValueTable is read or a delta interval expires. Earlier
250
+ checking need not be done and an implementation may not impose
251
+ any ordering on the creation of objects related to an
252
+ expression.
253
+
254
+ To maintain security of MIB information, when creating a new row in
255
+ this table, the managed system must record the security credentials
256
+ of the requester. These security credentials are the parameters
257
+ necessary as inputs to isAccessAllowed from the Architecture for
258
+
259
+ Describing SNMP Management Frameworks. When obtaining the objects
260
+ that make up the expression, the system must (conceptually) use
261
+ isAccessAllowed to ensure that it does not violate security.
262
+
263
+ The evaluation of the expression takes place under the
264
+ security credentials of the creator of its expExpressionEntry.
265
+
266
+ Values of read-write objects in this table may be changed
267
+
268
+
269
+ at any time.""",
270
+ }, # row
271
+ "expExpressionOwner" : {
272
+ "nodetype" : "column",
273
+ "moduleName" : "DISMAN-EXPRESSION-MIB",
274
+ "oid" : "1.3.6.1.2.1.90.1.2.1.1.1",
275
+ "status" : "current",
276
+ "syntax" : {
277
+ "type" : {
278
+ "basetype" : "OctetString",
279
+ "parent module" : {
280
+ "name" : "SNMP-FRAMEWORK-MIB",
281
+ "type" : "SnmpAdminString",
282
+ },
283
+ "ranges" : [
284
+ {
285
+ "min" : "0",
286
+ "max" : "32"
287
+ },
288
+ ],
289
+ "range" : {
290
+ "min" : "0",
291
+ "max" : "32"
292
+ },
293
+ },
294
+ },
295
+ "access" : "noaccess",
296
+ "description" :
297
+ """The owner of this entry. The exact semantics of this
298
+ string are subject to the security policy defined by the
299
+ security administrator.""",
300
+ }, # column
301
+ "expExpressionName" : {
302
+ "nodetype" : "column",
303
+ "moduleName" : "DISMAN-EXPRESSION-MIB",
304
+ "oid" : "1.3.6.1.2.1.90.1.2.1.1.2",
305
+ "status" : "current",
306
+ "syntax" : {
307
+ "type" : {
308
+ "basetype" : "OctetString",
309
+ "parent module" : {
310
+ "name" : "SNMP-FRAMEWORK-MIB",
311
+ "type" : "SnmpAdminString",
312
+ },
313
+ "ranges" : [
314
+ {
315
+ "min" : "1",
316
+ "max" : "32"
317
+ },
318
+ ],
319
+ "range" : {
320
+ "min" : "1",
321
+ "max" : "32"
322
+ },
323
+ },
324
+ },
325
+ "access" : "noaccess",
326
+ "description" :
327
+ """The name of the expression. This is locally unique, within
328
+ the scope of an expExpressionOwner.""",
329
+ }, # column
330
+ "expExpression" : {
331
+ "nodetype" : "column",
332
+ "moduleName" : "DISMAN-EXPRESSION-MIB",
333
+ "oid" : "1.3.6.1.2.1.90.1.2.1.1.3",
334
+ "status" : "current",
335
+ "syntax" : {
336
+ "type" : {
337
+ "basetype" : "OctetString",
338
+ "ranges" : [
339
+ {
340
+ "min" : "1",
341
+ "max" : "1024"
342
+ },
343
+ ],
344
+ "range" : {
345
+ "min" : "1",
346
+ "max" : "1024"
347
+ },
348
+ },
349
+ },
350
+ "access" : "readwrite",
351
+ "description" :
352
+ """The expression to be evaluated. This object is the same
353
+ as a DisplayString (RFC 1903) except for its maximum length.
354
+
355
+ Except for the variable names the expression is in ANSI C
356
+ syntax. Only the subset of ANSI C operators and functions
357
+ listed here is allowed.
358
+
359
+ Variables are expressed as a dollar sign ('$') and an
360
+
361
+
362
+ integer that corresponds to an expObjectIndex. An
363
+ example of a valid expression is:
364
+
365
+ ($1-$5)*100
366
+
367
+ Expressions must not be recursive, that is although an expression
368
+ may use the results of another expression, it must not contain
369
+ any variable that is directly or indirectly a result of its own
370
+ evaluation. The managed system must check for recursive
371
+ expressions.
372
+
373
+ The only allowed operators are:
374
+
375
+ ( )
376
+ - (unary)
377
+ + - * / %
378
+ & | ^ << >> ~
379
+ ! && || == != > >= < <=
380
+
381
+ Note the parentheses are included for parenthesizing the
382
+ expression, not for casting data types.
383
+
384
+ The only constant types defined are:
385
+
386
+ int (32-bit signed)
387
+ long (64-bit signed)
388
+ unsigned int
389
+ unsigned long
390
+ hexadecimal
391
+ character
392
+ string
393
+ oid
394
+
395
+ The default type for a positive integer is int unless it is too
396
+ large in which case it is long.
397
+
398
+ All but oid are as defined for ANSI C. Note that a
399
+ hexadecimal constant may end up as a scalar or an array of
400
+ 8-bit integers. A string constant is enclosed in double
401
+ quotes and may contain back-slashed individual characters
402
+ as in ANSI C.
403
+
404
+ An oid constant comprises 32-bit, unsigned integers and at
405
+ least one period, for example:
406
+
407
+ 0.
408
+ .0
409
+ 1.3.6.1
410
+
411
+
412
+ No additional leading or trailing subidentifiers are automatically
413
+ added to an OID constant. The constant is taken as expressed.
414
+
415
+ Integer-typed objects are treated as 32- or 64-bit, signed
416
+ or unsigned integers, as appropriate. The results of
417
+ mixing them are as for ANSI C, including the type of the
418
+ result. Note that a 32-bit value is thus promoted to 64 bits
419
+ only in an operation with a 64-bit value. There is no
420
+ provision for larger values to handle overflow.
421
+
422
+ Relative to SNMP data types, a resulting value becomes
423
+ unsigned when calculating it uses any unsigned value,
424
+ including a counter. To force the final value to be of
425
+ data type counter the expression must explicitly use the
426
+ counter32() or counter64() function (defined below).
427
+
428
+ OCTET STRINGS and OBJECT IDENTIFIERs are treated as
429
+ one-dimensioned arrays of unsigned 8-bit integers and
430
+ unsigned 32-bit integers, respectively.
431
+
432
+ IpAddresses are treated as 32-bit, unsigned integers in
433
+ network byte order, that is, the hex version of 255.0.0.0 is
434
+ 0xff000000.
435
+
436
+ Conditional expressions result in a 32-bit, unsigned integer
437
+ of value 0 for false or 1 for true. When an arbitrary value
438
+ is used as a boolean 0 is false and non-zero is true.
439
+
440
+ Rules for the resulting data type from an operation, based on
441
+ the operator:
442
+
443
+ For << and >> the result is the same as the left hand operand.
444
+
445
+ For &&, ||, ==, !=, <, <=, >, and >= the result is always
446
+ Unsigned32.
447
+
448
+ For unary - the result is always Integer32.
449
+
450
+ For +, -, *, /, %, &, |, and ^ the result is promoted according
451
+ to the following rules, in order from most to least preferred:
452
+
453
+ If left hand and right hand operands are the same type,
454
+ use that.
455
+
456
+ If either side is Counter64, use that.
457
+
458
+ If either side is IpAddress, use that.
459
+
460
+
461
+
462
+ If either side is TimeTicks, use that.
463
+
464
+ If either side is Counter32, use that.
465
+
466
+ Otherwise use Unsigned32.
467
+
468
+ The following rules say what operators apply with what data
469
+ types. Any combination not explicitly defined does not work.
470
+
471
+ For all operators any of the following can be the left hand or
472
+ right hand operand: Integer32, Counter32, Unsigned32, Counter64.
473
+
474
+ The operators +, -, *, /, %, <, <=, >, and >= work with
475
+ TimeTicks.
476
+
477
+ The operators &, |, and ^ work with IpAddress.
478
+
479
+ The operators << and >> work with IpAddress but only as the
480
+ left hand operand.
481
+
482
+ The + operator performs a concatenation of two OCTET STRINGs or
483
+ two OBJECT IDENTIFIERs.
484
+
485
+ The operators &, | perform bitwise operations on OCTET STRINGs.
486
+ If the OCTET STRING happens to be a DisplayString the results
487
+ may be meaningless, but the agent system does not check this as
488
+ some such systems do not have this information.
489
+
490
+ The operators << and >> perform bitwise operations on OCTET
491
+ STRINGs appearing as the left hand operand.
492
+
493
+ The only functions defined are:
494
+
495
+ counter32
496
+ counter64
497
+ arraySection
498
+ stringBegins
499
+ stringEnds
500
+ stringContains
501
+ oidBegins
502
+ oidEnds
503
+ oidContains
504
+ average
505
+ maximum
506
+ minimum
507
+ sum
508
+ exists
509
+
510
+
511
+
512
+ The following function definitions indicate their parameters by
513
+ naming the data type of the parameter in the parameter's position
514
+ in the parameter list. The parameter must be of the type indicated
515
+ and generally may be a constant, a MIB object, a function, or an
516
+ expression.
517
+
518
+ counter32(integer) - wrapped around an integer value counter32
519
+ forces Counter32 as a data type.
520
+
521
+ counter64(integer) - similar to counter32 except that the
522
+ resulting data type is 'counter64'.
523
+
524
+ arraySection(array, integer, integer) - selects a piece of an
525
+ array (i.e. part of an OCTET STRING or OBJECT IDENTIFIER). The
526
+ integer arguments are in the range 0 to 4,294,967,295. The
527
+ first is an initial array index (one-dimensioned) and the second
528
+ is an ending array index. A value of 0 indicates first or last
529
+ element, respectively. If the first element is larger than the
530
+ array length the result is 0 length. If the second integer is
531
+ less than or equal to the first, the result is 0 length. If the
532
+ second is larger than the array length it indicates last
533
+ element.
534
+
535
+ stringBegins/Ends/Contains(octetString, octetString) - looks for
536
+ the second string (which can be a string constant) in the first
537
+ and returns the one-dimensioned arrayindex where the match began.
538
+ A return value of 0 indicates no match (i.e. boolean false).
539
+
540
+ oidBegins/Ends/Contains(oid, oid) - looks for the second OID
541
+ (which can be an OID constant) in the first and returns the
542
+ the one-dimensioned index where the match began. A return value
543
+ of 0 indicates no match (i.e. boolean false).
544
+
545
+ average/maximum/minimum(integer) - calculates the average,
546
+ minimum, or maximum value of the integer valued object over
547
+ multiple sample times. If the object disappears for any
548
+ sample period, the accumulation and the resulting value object
549
+ cease to exist until the object reappears at which point the
550
+ calculation starts over.
551
+
552
+ sum(integerObject*) - sums all available values of the
553
+ wildcarded integer object, resulting in an integer scalar. Must
554
+ be used with caution as it wraps on overflow with no
555
+ notification.
556
+
557
+ exists(anyTypeObject) - verifies the object instance exists. A
558
+ return value of 0 indicates NoSuchInstance (i.e. boolean
559
+ false).""",
560
+ }, # column
561
+ "expExpressionValueType" : {
562
+ "nodetype" : "column",
563
+ "moduleName" : "DISMAN-EXPRESSION-MIB",
564
+ "oid" : "1.3.6.1.2.1.90.1.2.1.1.4",
565
+ "status" : "current",
566
+ "syntax" : {
567
+ "type" : {
568
+ "basetype" : "Enumeration",
569
+ "counter32" : {
570
+ "nodetype" : "namednumber",
571
+ "number" : "1"
572
+ },
573
+ "unsigned32" : {
574
+ "nodetype" : "namednumber",
575
+ "number" : "2"
576
+ },
577
+ "timeTicks" : {
578
+ "nodetype" : "namednumber",
579
+ "number" : "3"
580
+ },
581
+ "integer32" : {
582
+ "nodetype" : "namednumber",
583
+ "number" : "4"
584
+ },
585
+ "ipAddress" : {
586
+ "nodetype" : "namednumber",
587
+ "number" : "5"
588
+ },
589
+ "octetString" : {
590
+ "nodetype" : "namednumber",
591
+ "number" : "6"
592
+ },
593
+ "objectId" : {
594
+ "nodetype" : "namednumber",
595
+ "number" : "7"
596
+ },
597
+ "counter64" : {
598
+ "nodetype" : "namednumber",
599
+ "number" : "8"
600
+ },
601
+ },
602
+ },
603
+ "access" : "readwrite",
604
+ "default" : "counter32",
605
+ "description" :
606
+ """The type of the expression value. One and only one of the
607
+ value objects in expValueTable will be instantiated to match
608
+ this type.
609
+
610
+ If the result of the expression can not be made into this type,
611
+ an invalidOperandType error will occur.""",
612
+ }, # column
613
+ "expExpressionComment" : {
614
+ "nodetype" : "column",
615
+ "moduleName" : "DISMAN-EXPRESSION-MIB",
616
+ "oid" : "1.3.6.1.2.1.90.1.2.1.1.5",
617
+ "status" : "current",
618
+ "syntax" : {
619
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
620
+ },
621
+ "access" : "readwrite",
622
+ "default" : "",
623
+ "description" :
624
+ """A comment to explain the use or meaning of the expression.""",
625
+ }, # column
626
+ "expExpressionDeltaInterval" : {
627
+ "nodetype" : "column",
628
+ "moduleName" : "DISMAN-EXPRESSION-MIB",
629
+ "oid" : "1.3.6.1.2.1.90.1.2.1.1.6",
630
+ "status" : "current",
631
+ "syntax" : {
632
+ "type" : {
633
+ "basetype" : "Integer32",
634
+ "ranges" : [
635
+ {
636
+ "min" : "0",
637
+ "max" : "86400"
638
+ },
639
+ ],
640
+ "range" : {
641
+ "min" : "0",
642
+ "max" : "86400"
643
+ },
644
+ },
645
+ },
646
+ "access" : "readwrite",
647
+ "default" : "0",
648
+ "units" : "seconds",
649
+ "description" :
650
+ """Sampling interval for objects in this expression with
651
+ expObjectSampleType 'deltaValue'.
652
+
653
+ This object has no effect if the the expression has no
654
+ deltaValue objects.
655
+
656
+ A value of 0 indicates no automated sampling. In this case
657
+ the delta is the difference from the last time the expression
658
+ was evaluated. Note that this is subject to unpredictable
659
+ delta times in the face of retries or multiple managers.
660
+
661
+ A value greater than zero is the number of seconds between
662
+ automated samples.
663
+
664
+ Until the delta interval has expired once the delta for the
665
+
666
+
667
+ object is effectively not instantiated and evaluating
668
+ the expression has results as if the object itself were not
669
+ instantiated.
670
+
671
+ Note that delta values potentially consume large amounts of
672
+ system CPU and memory. Delta state and processing must
673
+ continue constantly even if the expression is not being used.
674
+ That is, the expression is being evaluated every delta interval,
675
+ even if no application is reading those values. For wildcarded
676
+ objects this can be substantial overhead.
677
+
678
+ Note that delta intervals, external expression value sampling
679
+ intervals and delta intervals for expressions within other
680
+ expressions can have unusual interactions as they are impossible
681
+ to synchronize accurately. In general one interval embedded
682
+ below another must be enough shorter that the higher sample
683
+ sees relatively smooth, predictable behavior. So, for example,
684
+ to avoid the higher level getting the same sample twice, the
685
+ lower level should sample at least twice as fast as the higher
686
+ level does.""",
687
+ }, # column
688
+ "expExpressionPrefix" : {
689
+ "nodetype" : "column",
690
+ "moduleName" : "DISMAN-EXPRESSION-MIB",
691
+ "oid" : "1.3.6.1.2.1.90.1.2.1.1.7",
692
+ "status" : "current",
693
+ "syntax" : {
694
+ "type" : { "module" :"", "name" : "ObjectIdentifier"},
695
+ },
696
+ "access" : "readonly",
697
+ "description" :
698
+ """An object prefix to assist an application in determining
699
+ the instance indexing to use in expValueTable, relieving the
700
+ application of the need to scan the expObjectTable to
701
+ determine such a prefix.
702
+
703
+ See expObjectTable for information on wildcarded objects.
704
+
705
+ If the expValueInstance portion of the value OID may
706
+ be treated as a scalar (that is, normally, 0) the value of
707
+ expExpressionPrefix is zero length, that is, no OID at all.
708
+ Note that zero length implies a null OID, not the OID 0.0.
709
+
710
+ Otherwise, the value of expExpressionPrefix is the expObjectID
711
+ value of any one of the wildcarded objects for the expression.
712
+ This is sufficient, as the remainder, that is, the instance
713
+ fragment relevant to instancing the values, must be the same for
714
+ all wildcarded objects in the expression.""",
715
+ }, # column
716
+ "expExpressionErrors" : {
717
+ "nodetype" : "column",
718
+ "moduleName" : "DISMAN-EXPRESSION-MIB",
719
+ "oid" : "1.3.6.1.2.1.90.1.2.1.1.8",
720
+ "status" : "current",
721
+ "syntax" : {
722
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
723
+ },
724
+ "access" : "readonly",
725
+ "description" :
726
+ """The number of errors encountered while evaluating this
727
+ expression.
728
+
729
+ Note that an object in the expression not being accessible,
730
+ is not considered an error. An example of an inaccessible
731
+ object is when the object is excluded from the view of the
732
+ user whose security credentials are used in the expression
733
+ evaluation. In such cases, it is a legitimate condition
734
+ that causes the corresponding expression value not to be
735
+ instantiated.""",
736
+ }, # column
737
+ "expExpressionEntryStatus" : {
738
+ "nodetype" : "column",
739
+ "moduleName" : "DISMAN-EXPRESSION-MIB",
740
+ "oid" : "1.3.6.1.2.1.90.1.2.1.1.9",
741
+ "status" : "current",
742
+ "syntax" : {
743
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
744
+ },
745
+ "access" : "readwrite",
746
+ "description" :
747
+ """The control that allows creation and deletion of entries.""",
748
+ }, # column
749
+ "expErrorTable" : {
750
+ "nodetype" : "table",
751
+ "moduleName" : "DISMAN-EXPRESSION-MIB",
752
+ "oid" : "1.3.6.1.2.1.90.1.2.2",
753
+ "status" : "current",
754
+ "description" :
755
+ """A table of expression errors.""",
756
+ }, # table
757
+ "expErrorEntry" : {
758
+ "nodetype" : "row",
759
+ "moduleName" : "DISMAN-EXPRESSION-MIB",
760
+ "oid" : "1.3.6.1.2.1.90.1.2.2.1",
761
+ "status" : "current",
762
+ "linkage" : [
763
+ "expExpressionOwner",
764
+ "expExpressionName",
765
+ ],
766
+ "description" :
767
+ """Information about errors in processing an expression.
768
+
769
+ Entries appear in this table only when there is a matching
770
+ expExpressionEntry and then only when there has been an
771
+ error for that expression as reflected by the error codes
772
+ defined for expErrorCode.""",
773
+ }, # row
774
+ "expErrorTime" : {
775
+ "nodetype" : "column",
776
+ "moduleName" : "DISMAN-EXPRESSION-MIB",
777
+ "oid" : "1.3.6.1.2.1.90.1.2.2.1.1",
778
+ "status" : "current",
779
+ "syntax" : {
780
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
781
+ },
782
+ "access" : "readonly",
783
+ "description" :
784
+ """The value of sysUpTime the last time an error caused a
785
+ failure to evaluate this expression.""",
786
+ }, # column
787
+ "expErrorIndex" : {
788
+ "nodetype" : "column",
789
+ "moduleName" : "DISMAN-EXPRESSION-MIB",
790
+ "oid" : "1.3.6.1.2.1.90.1.2.2.1.2",
791
+ "status" : "current",
792
+ "syntax" : {
793
+ "type" : { "module" :"", "name" : "Integer32"},
794
+ },
795
+ "access" : "readonly",
796
+ "description" :
797
+ """The one-dimensioned character array index into
798
+ expExpression for where the error occurred. The value
799
+ zero indicates irrelevance.""",
800
+ }, # column
801
+ "expErrorCode" : {
802
+ "nodetype" : "column",
803
+ "moduleName" : "DISMAN-EXPRESSION-MIB",
804
+ "oid" : "1.3.6.1.2.1.90.1.2.2.1.3",
805
+ "status" : "current",
806
+ "syntax" : {
807
+ "type" : {
808
+ "basetype" : "Enumeration",
809
+ "invalidSyntax" : {
810
+ "nodetype" : "namednumber",
811
+ "number" : "1"
812
+ },
813
+ "undefinedObjectIndex" : {
814
+ "nodetype" : "namednumber",
815
+ "number" : "2"
816
+ },
817
+ "unrecognizedOperator" : {
818
+ "nodetype" : "namednumber",
819
+ "number" : "3"
820
+ },
821
+ "unrecognizedFunction" : {
822
+ "nodetype" : "namednumber",
823
+ "number" : "4"
824
+ },
825
+ "invalidOperandType" : {
826
+ "nodetype" : "namednumber",
827
+ "number" : "5"
828
+ },
829
+ "unmatchedParenthesis" : {
830
+ "nodetype" : "namednumber",
831
+ "number" : "6"
832
+ },
833
+ "tooManyWildcardValues" : {
834
+ "nodetype" : "namednumber",
835
+ "number" : "7"
836
+ },
837
+ "recursion" : {
838
+ "nodetype" : "namednumber",
839
+ "number" : "8"
840
+ },
841
+ "deltaTooShort" : {
842
+ "nodetype" : "namednumber",
843
+ "number" : "9"
844
+ },
845
+ "resourceUnavailable" : {
846
+ "nodetype" : "namednumber",
847
+ "number" : "10"
848
+ },
849
+ "divideByZero" : {
850
+ "nodetype" : "namednumber",
851
+ "number" : "11"
852
+ },
853
+ },
854
+ },
855
+ "access" : "readonly",
856
+ "description" :
857
+ """The error that occurred. In the following explanations the
858
+ expected timing of the error is in parentheses. 'S' means
859
+ the error occurs on a Set request. 'E' means the error
860
+
861
+
862
+ occurs on the attempt to evaluate the expression either due to
863
+ Get from expValueTable or in ongoing delta processing.
864
+
865
+ invalidSyntax the value sent for expExpression is not
866
+ valid Expression MIB expression syntax
867
+ (S)
868
+ undefinedObjectIndex an object reference ($n) in
869
+ expExpression does not have a matching
870
+ instance in expObjectTable (E)
871
+ unrecognizedOperator the value sent for expExpression held an
872
+ unrecognized operator (S)
873
+ unrecognizedFunction the value sent for expExpression held an
874
+ unrecognized function name (S)
875
+ invalidOperandType an operand in expExpression is not the
876
+ right type for the associated operator
877
+ or result (SE)
878
+ unmatchedParenthesis the value sent for expExpression is not
879
+ correctly parenthesized (S)
880
+ tooManyWildcardValues evaluating the expression exceeded the
881
+ limit set by
882
+ expResourceDeltaWildcardInstanceMaximum
883
+ (E)
884
+ recursion through some chain of embedded
885
+ expressions the expression invokes itself
886
+ (E)
887
+ deltaTooShort the delta for the next evaluation passed
888
+ before the system could evaluate the
889
+ present sample (E)
890
+ resourceUnavailable some resource, typically dynamic memory,
891
+ was unavailable (SE)
892
+ divideByZero an attempt to divide by zero occurred
893
+ (E)
894
+
895
+ For the errors that occur when the attempt is made to set
896
+ expExpression Set request fails with the SNMP error code
897
+ 'wrongValue'. Such failures refer to the most recent failure to
898
+ Set expExpression, not to the present value of expExpression
899
+ which must be either unset or syntactically correct.
900
+
901
+ Errors that occur during evaluation for a Get* operation return
902
+ the SNMP error code 'genErr' except for 'tooManyWildcardValues'
903
+ and 'resourceUnavailable' which return the SNMP error code
904
+ 'resourceUnavailable'.""",
905
+ }, # column
906
+ "expErrorInstance" : {
907
+ "nodetype" : "column",
908
+ "moduleName" : "DISMAN-EXPRESSION-MIB",
909
+ "oid" : "1.3.6.1.2.1.90.1.2.2.1.4",
910
+ "status" : "current",
911
+ "syntax" : {
912
+ "type" : { "module" :"", "name" : "ObjectIdentifier"},
913
+ },
914
+ "access" : "readonly",
915
+ "description" :
916
+ """The expValueInstance being evaluated when the error
917
+ occurred. A zero-length indicates irrelevance.""",
918
+ }, # column
919
+ "expObjectTable" : {
920
+ "nodetype" : "table",
921
+ "moduleName" : "DISMAN-EXPRESSION-MIB",
922
+ "oid" : "1.3.6.1.2.1.90.1.2.3",
923
+ "status" : "current",
924
+ "description" :
925
+ """A table of object definitions for each expExpression.
926
+
927
+ Wildcarding instance IDs:
928
+
929
+ It is legal to omit all or part of the instance portion for
930
+ some or all of the objects in an expression. (See the
931
+ DESCRIPTION of expObjectID for details. However, note that
932
+ if more than one object in the same expression is wildcarded
933
+ in this way, they all must be objects where that portion of
934
+ the instance is the same. In other words, all objects may be
935
+ in the same SEQUENCE or in different SEQUENCEs but with the
936
+ same semantic index value (e.g., a value of ifIndex)
937
+ for the wildcarded portion.""",
938
+ }, # table
939
+ "expObjectEntry" : {
940
+ "nodetype" : "row",
941
+ "moduleName" : "DISMAN-EXPRESSION-MIB",
942
+ "oid" : "1.3.6.1.2.1.90.1.2.3.1",
943
+ "create" : "true",
944
+ "status" : "current",
945
+ "linkage" : [
946
+ "expExpressionOwner",
947
+ "expExpressionName",
948
+ "expObjectIndex",
949
+ ],
950
+ "description" :
951
+ """Information about an object. An application uses
952
+ expObjectEntryStatus to create entries in this table while
953
+ in the process of defining an expression.
954
+
955
+ Values of read-create objects in this table may be
956
+ changed at any time.""",
957
+ }, # row
958
+ "expObjectIndex" : {
959
+ "nodetype" : "column",
960
+ "moduleName" : "DISMAN-EXPRESSION-MIB",
961
+ "oid" : "1.3.6.1.2.1.90.1.2.3.1.1",
962
+ "status" : "current",
963
+ "syntax" : {
964
+ "type" : {
965
+ "basetype" : "Unsigned32",
966
+ "ranges" : [
967
+ {
968
+ "min" : "1",
969
+ "max" : "4294967295"
970
+ },
971
+ ],
972
+ "range" : {
973
+ "min" : "1",
974
+ "max" : "4294967295"
975
+ },
976
+ },
977
+ },
978
+ "access" : "noaccess",
979
+ "description" :
980
+ """Within an expression, a unique, numeric identification for an
981
+ object. Prefixed with a dollar sign ('$') this is used to
982
+ reference the object in the corresponding expExpression.""",
983
+ }, # column
984
+ "expObjectID" : {
985
+ "nodetype" : "column",
986
+ "moduleName" : "DISMAN-EXPRESSION-MIB",
987
+ "oid" : "1.3.6.1.2.1.90.1.2.3.1.2",
988
+ "status" : "current",
989
+ "syntax" : {
990
+ "type" : { "module" :"", "name" : "ObjectIdentifier"},
991
+ },
992
+ "access" : "readwrite",
993
+ "description" :
994
+ """The OBJECT IDENTIFIER (OID) of this object. The OID may be
995
+ fully qualified, meaning it includes a complete instance
996
+ identifier part (e.g., ifInOctets.1 or sysUpTime.0), or it
997
+ may not be fully qualified, meaning it may lack all or part
998
+ of the instance identifier. If the expObjectID is not fully
999
+ qualified, then expObjectWildcard must be set to true(1).
1000
+ The value of the expression will be multiple
1001
+ values, as if done for a GetNext sweep of the object.
1002
+
1003
+ An object here may itself be the result of an expression but
1004
+ recursion is not allowed.
1005
+
1006
+ NOTE: The simplest implementations of this MIB may not allow
1007
+ wildcards.""",
1008
+ }, # column
1009
+ "expObjectIDWildcard" : {
1010
+ "nodetype" : "column",
1011
+ "moduleName" : "DISMAN-EXPRESSION-MIB",
1012
+ "oid" : "1.3.6.1.2.1.90.1.2.3.1.3",
1013
+ "status" : "current",
1014
+ "syntax" : {
1015
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1016
+ },
1017
+ "access" : "readwrite",
1018
+ "default" : "false",
1019
+ "description" :
1020
+ """A true value indicates the expObjecID of this row is a wildcard
1021
+ object. False indicates that expObjectID is fully instanced.
1022
+ If all expObjectWildcard values for a given expression are FALSE,
1023
+
1024
+
1025
+ expExpressionPrefix will reflect a scalar object (i.e. will
1026
+ be 0.0).
1027
+
1028
+ NOTE: The simplest implementations of this MIB may not allow
1029
+ wildcards.""",
1030
+ }, # column
1031
+ "expObjectSampleType" : {
1032
+ "nodetype" : "column",
1033
+ "moduleName" : "DISMAN-EXPRESSION-MIB",
1034
+ "oid" : "1.3.6.1.2.1.90.1.2.3.1.4",
1035
+ "status" : "current",
1036
+ "syntax" : {
1037
+ "type" : {
1038
+ "basetype" : "Enumeration",
1039
+ "absoluteValue" : {
1040
+ "nodetype" : "namednumber",
1041
+ "number" : "1"
1042
+ },
1043
+ "deltaValue" : {
1044
+ "nodetype" : "namednumber",
1045
+ "number" : "2"
1046
+ },
1047
+ "changedValue" : {
1048
+ "nodetype" : "namednumber",
1049
+ "number" : "3"
1050
+ },
1051
+ },
1052
+ },
1053
+ "access" : "readwrite",
1054
+ "default" : "absoluteValue",
1055
+ "description" :
1056
+ """The method of sampling the selected variable.
1057
+
1058
+ An 'absoluteValue' is simply the present value of the object.
1059
+
1060
+ A 'deltaValue' is the present value minus the previous value,
1061
+ which was sampled expExpressionDeltaInterval seconds ago.
1062
+ This is intended primarily for use with SNMP counters, which are
1063
+ meaningless as an 'absoluteValue', but may be used with any
1064
+ integer-based value.
1065
+
1066
+ A 'changedValue' is a boolean for whether the present value is
1067
+ different from the previous value. It is applicable to any data
1068
+ type and results in an Unsigned32 with value 1 if the object's
1069
+ value is changed and 0 if not. In all other respects it is as a
1070
+ 'deltaValue' and all statements and operation regarding delta
1071
+ values apply to changed values.
1072
+
1073
+ When an expression contains both delta and absolute values
1074
+ the absolute values are obtained at the end of the delta
1075
+ period.""",
1076
+ }, # column
1077
+ "expObjectDeltaDiscontinuityID" : {
1078
+ "nodetype" : "column",
1079
+ "moduleName" : "DISMAN-EXPRESSION-MIB",
1080
+ "oid" : "1.3.6.1.2.1.90.1.2.3.1.5",
1081
+ "status" : "current",
1082
+ "syntax" : {
1083
+ "type" : { "module" :"", "name" : "ObjectIdentifier"},
1084
+ },
1085
+ "access" : "readwrite",
1086
+ "default" : "1.3.6.1.2.1.1.3.0",
1087
+ "description" :
1088
+ """The OBJECT IDENTIFIER (OID) of a TimeTicks, TimeStamp, or
1089
+ DateAndTime object that indicates a discontinuity in the value
1090
+ at expObjectID.
1091
+
1092
+
1093
+
1094
+ This object is instantiated only if expObjectSampleType is
1095
+ 'deltaValue' or 'changedValue'.
1096
+
1097
+ The OID may be for a leaf object (e.g. sysUpTime.0) or may
1098
+ be wildcarded to match expObjectID.
1099
+
1100
+ This object supports normal checking for a discontinuity in a
1101
+ counter. Note that if this object does not point to sysUpTime
1102
+ discontinuity checking must still check sysUpTime for an overall
1103
+ discontinuity.
1104
+
1105
+ If the object identified is not accessible no discontinuity
1106
+ check will be made.""",
1107
+ }, # column
1108
+ "expObjectDiscontinuityIDWildcard" : {
1109
+ "nodetype" : "column",
1110
+ "moduleName" : "DISMAN-EXPRESSION-MIB",
1111
+ "oid" : "1.3.6.1.2.1.90.1.2.3.1.6",
1112
+ "status" : "current",
1113
+ "syntax" : {
1114
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1115
+ },
1116
+ "access" : "readwrite",
1117
+ "default" : "false",
1118
+ "description" :
1119
+ """A true value indicates the expObjectDeltaDiscontinuityID of
1120
+ this row is a wildcard object. False indicates that
1121
+ expObjectDeltaDiscontinuityID is fully instanced.
1122
+
1123
+ This object is instantiated only if expObjectSampleType is
1124
+ 'deltaValue' or 'changedValue'.
1125
+
1126
+ NOTE: The simplest implementations of this MIB may not allow
1127
+ wildcards.""",
1128
+ }, # column
1129
+ "expObjectDiscontinuityIDType" : {
1130
+ "nodetype" : "column",
1131
+ "moduleName" : "DISMAN-EXPRESSION-MIB",
1132
+ "oid" : "1.3.6.1.2.1.90.1.2.3.1.7",
1133
+ "status" : "current",
1134
+ "syntax" : {
1135
+ "type" : {
1136
+ "basetype" : "Enumeration",
1137
+ "timeTicks" : {
1138
+ "nodetype" : "namednumber",
1139
+ "number" : "1"
1140
+ },
1141
+ "timeStamp" : {
1142
+ "nodetype" : "namednumber",
1143
+ "number" : "2"
1144
+ },
1145
+ "dateAndTime" : {
1146
+ "nodetype" : "namednumber",
1147
+ "number" : "3"
1148
+ },
1149
+ },
1150
+ },
1151
+ "access" : "readwrite",
1152
+ "default" : "timeTicks",
1153
+ "description" :
1154
+ """The value 'timeTicks' indicates the expObjectDeltaDiscontinuityID
1155
+ of this row is of syntax TimeTicks. The value 'timeStamp' indicates
1156
+ syntax TimeStamp. The value 'dateAndTime indicates syntax
1157
+ DateAndTime.
1158
+
1159
+ This object is instantiated only if expObjectSampleType is
1160
+ 'deltaValue' or 'changedValue'.""",
1161
+ }, # column
1162
+ "expObjectConditional" : {
1163
+ "nodetype" : "column",
1164
+ "moduleName" : "DISMAN-EXPRESSION-MIB",
1165
+ "oid" : "1.3.6.1.2.1.90.1.2.3.1.8",
1166
+ "status" : "current",
1167
+ "syntax" : {
1168
+ "type" : { "module" :"", "name" : "ObjectIdentifier"},
1169
+ },
1170
+ "access" : "readwrite",
1171
+ "default" : "0.0",
1172
+ "description" :
1173
+ """The OBJECT IDENTIFIER (OID) of an object that overrides
1174
+ whether the instance of expObjectID is to be considered
1175
+ usable. If the value of the object at expObjectConditional
1176
+ is 0 or not instantiated, the object at expObjectID is
1177
+ treated as if it is not instantiated. In other words,
1178
+ expObjectConditional is a filter that controls whether or
1179
+ not to use the value at expObjectID.
1180
+
1181
+ The OID may be for a leaf object (e.g. sysObjectID.0) or may be
1182
+ wildcarded to match expObjectID. If expObject is wildcarded and
1183
+ expObjectID in the same row is not, the wild portion of
1184
+ expObjectConditional must match the wildcarding of the rest of
1185
+ the expression. If no object in the expression is wildcarded
1186
+ but expObjectConditional is, use the lexically first instance
1187
+ (if any) of expObjectConditional.
1188
+
1189
+ If the value of expObjectConditional is 0.0 operation is
1190
+ as if the value pointed to by expObjectConditional is a
1191
+ non-zero (true) value.
1192
+
1193
+ Note that expObjectConditional can not trivially use an object
1194
+ of syntax TruthValue, since the underlying value is not 0 or 1.""",
1195
+ }, # column
1196
+ "expObjectConditionalWildcard" : {
1197
+ "nodetype" : "column",
1198
+ "moduleName" : "DISMAN-EXPRESSION-MIB",
1199
+ "oid" : "1.3.6.1.2.1.90.1.2.3.1.9",
1200
+ "status" : "current",
1201
+ "syntax" : {
1202
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1203
+ },
1204
+ "access" : "readwrite",
1205
+ "default" : "false",
1206
+ "description" :
1207
+ """A true value indicates the expObjectConditional of this row is
1208
+ a wildcard object. False indicates that expObjectConditional is
1209
+ fully instanced.
1210
+
1211
+ NOTE: The simplest implementations of this MIB may not allow
1212
+ wildcards.""",
1213
+ }, # column
1214
+ "expObjectEntryStatus" : {
1215
+ "nodetype" : "column",
1216
+ "moduleName" : "DISMAN-EXPRESSION-MIB",
1217
+ "oid" : "1.3.6.1.2.1.90.1.2.3.1.10",
1218
+ "status" : "current",
1219
+ "syntax" : {
1220
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
1221
+ },
1222
+ "access" : "readwrite",
1223
+ "description" :
1224
+ """The control that allows creation/deletion of entries.
1225
+
1226
+ Objects in this table may be changed while
1227
+ expObjectEntryStatus is in any state.""",
1228
+ }, # column
1229
+ "expValue" : {
1230
+ "nodetype" : "node",
1231
+ "moduleName" : "DISMAN-EXPRESSION-MIB",
1232
+ "oid" : "1.3.6.1.2.1.90.1.3",
1233
+ }, # node
1234
+ "expValueTable" : {
1235
+ "nodetype" : "table",
1236
+ "moduleName" : "DISMAN-EXPRESSION-MIB",
1237
+ "oid" : "1.3.6.1.2.1.90.1.3.1",
1238
+ "status" : "current",
1239
+ "description" :
1240
+ """A table of values from evaluated expressions.""",
1241
+ }, # table
1242
+ "expValueEntry" : {
1243
+ "nodetype" : "row",
1244
+ "moduleName" : "DISMAN-EXPRESSION-MIB",
1245
+ "oid" : "1.3.6.1.2.1.90.1.3.1.1",
1246
+ "status" : "current",
1247
+ "implied" : "true",
1248
+ "linkage" : [
1249
+ "expExpressionOwner",
1250
+ "expExpressionName",
1251
+ "expValueInstance",
1252
+ ],
1253
+ "description" :
1254
+ """A single value from an evaluated expression. For a given
1255
+ instance, only one 'Val' object in the conceptual row will be
1256
+ instantiated, that is, the one with the appropriate type for
1257
+ the value. For values that contain no objects of
1258
+ expObjectSampleType 'deltaValue' or 'changedValue', reading a
1259
+ value from the table causes the evaluation of the expression
1260
+ for that value. For those that contain a 'deltaValue' or
1261
+ 'changedValue' the value read is as of the last sampling
1262
+ interval.
1263
+
1264
+ If in the attempt to evaluate the expression one or more
1265
+ of the necessary objects is not available, the corresponding
1266
+ entry in this table is effectively not instantiated.
1267
+
1268
+ To maintain security of MIB information, when creating a new
1269
+ row in this table, the managed system must record the security
1270
+ credentials of the requester. These security credentials are
1271
+ the parameters necessary as inputs to isAccessAllowed from
1272
+ [RFC2571]. When obtaining the objects that make up the
1273
+ expression, the system must (conceptually) use isAccessAllowed to
1274
+ ensure that it does not violate security.
1275
+
1276
+ The evaluation of that expression takes place under the
1277
+
1278
+
1279
+ security credentials of the creator of its expExpressionEntry.
1280
+
1281
+ To maintain security of MIB information, expression evaluation must
1282
+ take place using security credentials for the implied Gets of the
1283
+ objects in the expression as inputs (conceptually) to
1284
+ isAccessAllowed from the Architecture for Describing SNMP
1285
+ Management Frameworks. These are the security credentials of the
1286
+ creator of the corresponding expExpressionEntry.""",
1287
+ }, # row
1288
+ "expValueInstance" : {
1289
+ "nodetype" : "column",
1290
+ "moduleName" : "DISMAN-EXPRESSION-MIB",
1291
+ "oid" : "1.3.6.1.2.1.90.1.3.1.1.1",
1292
+ "status" : "current",
1293
+ "syntax" : {
1294
+ "type" : { "module" :"", "name" : "ObjectIdentifier"},
1295
+ },
1296
+ "access" : "noaccess",
1297
+ "description" :
1298
+ """The final instance portion of a value's OID according to
1299
+ the wildcarding in instances of expObjectID for the
1300
+ expression. The prefix of this OID fragment is 0.0,
1301
+ leading to the following behavior.
1302
+
1303
+ If there is no wildcarding, the value is 0.0.0. In other
1304
+ words, there is one value which standing alone would have
1305
+ been a scalar with a 0 at the end of its OID.
1306
+
1307
+ If there is wildcarding, the value is 0.0 followed by
1308
+ a value that the wildcard can take, thus defining one value
1309
+ instance for each real, possible value of the wildcard.
1310
+ So, for example, if the wildcard worked out to be an ifIndex,
1311
+ there is an expValueInstance for each applicable ifIndex.""",
1312
+ }, # column
1313
+ "expValueCounter32Val" : {
1314
+ "nodetype" : "column",
1315
+ "moduleName" : "DISMAN-EXPRESSION-MIB",
1316
+ "oid" : "1.3.6.1.2.1.90.1.3.1.1.2",
1317
+ "status" : "current",
1318
+ "syntax" : {
1319
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1320
+ },
1321
+ "access" : "readonly",
1322
+ "description" :
1323
+ """The value when expExpressionValueType is 'counter32'.""",
1324
+ }, # column
1325
+ "expValueUnsigned32Val" : {
1326
+ "nodetype" : "column",
1327
+ "moduleName" : "DISMAN-EXPRESSION-MIB",
1328
+ "oid" : "1.3.6.1.2.1.90.1.3.1.1.3",
1329
+ "status" : "current",
1330
+ "syntax" : {
1331
+ "type" : { "module" :"", "name" : "Unsigned32"},
1332
+ },
1333
+ "access" : "readonly",
1334
+ "description" :
1335
+ """The value when expExpressionValueType is 'unsigned32'.""",
1336
+ }, # column
1337
+ "expValueTimeTicksVal" : {
1338
+ "nodetype" : "column",
1339
+ "moduleName" : "DISMAN-EXPRESSION-MIB",
1340
+ "oid" : "1.3.6.1.2.1.90.1.3.1.1.4",
1341
+ "status" : "current",
1342
+ "syntax" : {
1343
+ "type" : { "module" :"SNMPv2-SMI", "name" : "TimeTicks"},
1344
+ },
1345
+ "access" : "readonly",
1346
+ "description" :
1347
+ """The value when expExpressionValueType is 'timeTicks'.""",
1348
+ }, # column
1349
+ "expValueInteger32Val" : {
1350
+ "nodetype" : "column",
1351
+ "moduleName" : "DISMAN-EXPRESSION-MIB",
1352
+ "oid" : "1.3.6.1.2.1.90.1.3.1.1.5",
1353
+ "status" : "current",
1354
+ "syntax" : {
1355
+ "type" : { "module" :"", "name" : "Integer32"},
1356
+ },
1357
+ "access" : "readonly",
1358
+ "description" :
1359
+ """The value when expExpressionValueType is 'integer32'.""",
1360
+ }, # column
1361
+ "expValueIpAddressVal" : {
1362
+ "nodetype" : "column",
1363
+ "moduleName" : "DISMAN-EXPRESSION-MIB",
1364
+ "oid" : "1.3.6.1.2.1.90.1.3.1.1.6",
1365
+ "status" : "current",
1366
+ "syntax" : {
1367
+ "type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
1368
+ },
1369
+ "access" : "readonly",
1370
+ "description" :
1371
+ """The value when expExpressionValueType is 'ipAddress'.""",
1372
+ }, # column
1373
+ "expValueOctetStringVal" : {
1374
+ "nodetype" : "column",
1375
+ "moduleName" : "DISMAN-EXPRESSION-MIB",
1376
+ "oid" : "1.3.6.1.2.1.90.1.3.1.1.7",
1377
+ "status" : "current",
1378
+ "syntax" : {
1379
+ "type" : { "module" :"", "name" : "OctetString"},
1380
+ },
1381
+ "access" : "readonly",
1382
+ "description" :
1383
+ """The value when expExpressionValueType is 'octetString'.""",
1384
+ }, # column
1385
+ "expValueOidVal" : {
1386
+ "nodetype" : "column",
1387
+ "moduleName" : "DISMAN-EXPRESSION-MIB",
1388
+ "oid" : "1.3.6.1.2.1.90.1.3.1.1.8",
1389
+ "status" : "current",
1390
+ "syntax" : {
1391
+ "type" : { "module" :"", "name" : "ObjectIdentifier"},
1392
+ },
1393
+ "access" : "readonly",
1394
+ "description" :
1395
+ """The value when expExpressionValueType is 'objectId'.""",
1396
+ }, # column
1397
+ "expValueCounter64Val" : {
1398
+ "nodetype" : "column",
1399
+ "moduleName" : "DISMAN-EXPRESSION-MIB",
1400
+ "oid" : "1.3.6.1.2.1.90.1.3.1.1.9",
1401
+ "status" : "current",
1402
+ "syntax" : {
1403
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1404
+ },
1405
+ "access" : "readonly",
1406
+ "description" :
1407
+ """The value when expExpressionValueType is 'counter64'.""",
1408
+ }, # column
1409
+ "dismanExpressionMIBConformance" : {
1410
+ "nodetype" : "node",
1411
+ "moduleName" : "DISMAN-EXPRESSION-MIB",
1412
+ "oid" : "1.3.6.1.2.1.90.3",
1413
+ }, # node
1414
+ "dismanExpressionMIBCompliances" : {
1415
+ "nodetype" : "node",
1416
+ "moduleName" : "DISMAN-EXPRESSION-MIB",
1417
+ "oid" : "1.3.6.1.2.1.90.3.1",
1418
+ }, # node
1419
+ "dismanExpressionMIBGroups" : {
1420
+ "nodetype" : "node",
1421
+ "moduleName" : "DISMAN-EXPRESSION-MIB",
1422
+ "oid" : "1.3.6.1.2.1.90.3.2",
1423
+ }, # node
1424
+ }, # nodes
1425
+
1426
+ "groups" : {
1427
+ "dismanExpressionResourceGroup" : {
1428
+ "nodetype" : "group",
1429
+ "moduleName" : "DISMAN-EXPRESSION-MIB",
1430
+ "oid" : "1.3.6.1.2.1.90.3.2.1",
1431
+ "status" : "current",
1432
+ "members" : {
1433
+ "expResourceDeltaMinimum" : {
1434
+ "nodetype" : "member",
1435
+ "module" : "DISMAN-EXPRESSION-MIB"
1436
+ },
1437
+ "expResourceDeltaWildcardInstanceMaximum" : {
1438
+ "nodetype" : "member",
1439
+ "module" : "DISMAN-EXPRESSION-MIB"
1440
+ },
1441
+ "expResourceDeltaWildcardInstances" : {
1442
+ "nodetype" : "member",
1443
+ "module" : "DISMAN-EXPRESSION-MIB"
1444
+ },
1445
+ "expResourceDeltaWildcardInstancesHigh" : {
1446
+ "nodetype" : "member",
1447
+ "module" : "DISMAN-EXPRESSION-MIB"
1448
+ },
1449
+ "expResourceDeltaWildcardInstanceResourceLacks" : {
1450
+ "nodetype" : "member",
1451
+ "module" : "DISMAN-EXPRESSION-MIB"
1452
+ },
1453
+ }, # members
1454
+ "description" :
1455
+ """Expression definition resource management.""",
1456
+ }, # group
1457
+ "dismanExpressionDefinitionGroup" : {
1458
+ "nodetype" : "group",
1459
+ "moduleName" : "DISMAN-EXPRESSION-MIB",
1460
+ "oid" : "1.3.6.1.2.1.90.3.2.2",
1461
+ "status" : "current",
1462
+ "members" : {
1463
+ "expExpression" : {
1464
+ "nodetype" : "member",
1465
+ "module" : "DISMAN-EXPRESSION-MIB"
1466
+ },
1467
+ "expExpressionValueType" : {
1468
+ "nodetype" : "member",
1469
+ "module" : "DISMAN-EXPRESSION-MIB"
1470
+ },
1471
+ "expExpressionComment" : {
1472
+ "nodetype" : "member",
1473
+ "module" : "DISMAN-EXPRESSION-MIB"
1474
+ },
1475
+ "expExpressionDeltaInterval" : {
1476
+ "nodetype" : "member",
1477
+ "module" : "DISMAN-EXPRESSION-MIB"
1478
+ },
1479
+ "expExpressionPrefix" : {
1480
+ "nodetype" : "member",
1481
+ "module" : "DISMAN-EXPRESSION-MIB"
1482
+ },
1483
+ "expExpressionErrors" : {
1484
+ "nodetype" : "member",
1485
+ "module" : "DISMAN-EXPRESSION-MIB"
1486
+ },
1487
+ "expExpressionEntryStatus" : {
1488
+ "nodetype" : "member",
1489
+ "module" : "DISMAN-EXPRESSION-MIB"
1490
+ },
1491
+ "expErrorTime" : {
1492
+ "nodetype" : "member",
1493
+ "module" : "DISMAN-EXPRESSION-MIB"
1494
+ },
1495
+ "expErrorIndex" : {
1496
+ "nodetype" : "member",
1497
+ "module" : "DISMAN-EXPRESSION-MIB"
1498
+ },
1499
+ "expErrorCode" : {
1500
+ "nodetype" : "member",
1501
+ "module" : "DISMAN-EXPRESSION-MIB"
1502
+ },
1503
+ "expErrorInstance" : {
1504
+ "nodetype" : "member",
1505
+ "module" : "DISMAN-EXPRESSION-MIB"
1506
+ },
1507
+ "expObjectID" : {
1508
+ "nodetype" : "member",
1509
+ "module" : "DISMAN-EXPRESSION-MIB"
1510
+ },
1511
+ "expObjectIDWildcard" : {
1512
+ "nodetype" : "member",
1513
+ "module" : "DISMAN-EXPRESSION-MIB"
1514
+ },
1515
+ "expObjectSampleType" : {
1516
+ "nodetype" : "member",
1517
+ "module" : "DISMAN-EXPRESSION-MIB"
1518
+ },
1519
+ "expObjectDeltaDiscontinuityID" : {
1520
+ "nodetype" : "member",
1521
+ "module" : "DISMAN-EXPRESSION-MIB"
1522
+ },
1523
+ "expObjectDiscontinuityIDWildcard" : {
1524
+ "nodetype" : "member",
1525
+ "module" : "DISMAN-EXPRESSION-MIB"
1526
+ },
1527
+ "expObjectDiscontinuityIDType" : {
1528
+ "nodetype" : "member",
1529
+ "module" : "DISMAN-EXPRESSION-MIB"
1530
+ },
1531
+ "expObjectConditional" : {
1532
+ "nodetype" : "member",
1533
+ "module" : "DISMAN-EXPRESSION-MIB"
1534
+ },
1535
+ "expObjectConditionalWildcard" : {
1536
+ "nodetype" : "member",
1537
+ "module" : "DISMAN-EXPRESSION-MIB"
1538
+ },
1539
+ "expObjectEntryStatus" : {
1540
+ "nodetype" : "member",
1541
+ "module" : "DISMAN-EXPRESSION-MIB"
1542
+ },
1543
+ }, # members
1544
+ "description" :
1545
+ """Expression definition.""",
1546
+ }, # group
1547
+ "dismanExpressionValueGroup" : {
1548
+ "nodetype" : "group",
1549
+ "moduleName" : "DISMAN-EXPRESSION-MIB",
1550
+ "oid" : "1.3.6.1.2.1.90.3.2.3",
1551
+ "status" : "current",
1552
+ "members" : {
1553
+ "expValueCounter32Val" : {
1554
+ "nodetype" : "member",
1555
+ "module" : "DISMAN-EXPRESSION-MIB"
1556
+ },
1557
+ "expValueUnsigned32Val" : {
1558
+ "nodetype" : "member",
1559
+ "module" : "DISMAN-EXPRESSION-MIB"
1560
+ },
1561
+ "expValueTimeTicksVal" : {
1562
+ "nodetype" : "member",
1563
+ "module" : "DISMAN-EXPRESSION-MIB"
1564
+ },
1565
+ "expValueInteger32Val" : {
1566
+ "nodetype" : "member",
1567
+ "module" : "DISMAN-EXPRESSION-MIB"
1568
+ },
1569
+ "expValueIpAddressVal" : {
1570
+ "nodetype" : "member",
1571
+ "module" : "DISMAN-EXPRESSION-MIB"
1572
+ },
1573
+ "expValueOctetStringVal" : {
1574
+ "nodetype" : "member",
1575
+ "module" : "DISMAN-EXPRESSION-MIB"
1576
+ },
1577
+ "expValueOidVal" : {
1578
+ "nodetype" : "member",
1579
+ "module" : "DISMAN-EXPRESSION-MIB"
1580
+ },
1581
+ "expValueCounter64Val" : {
1582
+ "nodetype" : "member",
1583
+ "module" : "DISMAN-EXPRESSION-MIB"
1584
+ },
1585
+ }, # members
1586
+ "description" :
1587
+ """Expression value.""",
1588
+ }, # group
1589
+ }, # groups
1590
+
1591
+ "compliances" : {
1592
+ "dismanExpressionMIBCompliance" : {
1593
+ "nodetype" : "compliance",
1594
+ "moduleName" : "DISMAN-EXPRESSION-MIB",
1595
+ "oid" : "1.3.6.1.2.1.90.3.1.1",
1596
+ "status" : "current",
1597
+ "description" :
1598
+ """The compliance statement for entities which implement
1599
+ the Expression MIB.""",
1600
+ "requires" : {
1601
+ "dismanExpressionResourceGroup" : {
1602
+ "nodetype" : "mandatory",
1603
+ "module" : "DISMAN-EXPRESSION-MIB"
1604
+ },
1605
+ "dismanExpressionDefinitionGroup" : {
1606
+ "nodetype" : "mandatory",
1607
+ "module" : "DISMAN-EXPRESSION-MIB"
1608
+ },
1609
+ "dismanExpressionValueGroup" : {
1610
+ "nodetype" : "mandatory",
1611
+ "module" : "DISMAN-EXPRESSION-MIB"
1612
+ },
1613
+ }, # requires
1614
+ "refinements" : {
1615
+ "expResourceDeltaMinimum" : {
1616
+ "module" : "DISMAN-EXPRESSION-MIB",
1617
+ "syntax" : {
1618
+ "type" : {
1619
+ "basetype" : "Integer32",
1620
+ "ranges" : [
1621
+ {
1622
+ "min" : "-1",
1623
+ "max" : "-1"
1624
+ },
1625
+ {
1626
+ "min" : "60",
1627
+ "max" : "600"
1628
+ },
1629
+ ],
1630
+ "range" : {
1631
+ "min" : "-1",
1632
+ "max" : "600"
1633
+ },
1634
+ },
1635
+ }, # syntax
1636
+ "description" :
1637
+ """Implementation need not allow deltas or it may
1638
+ implement them and restrict them to higher values.""",
1639
+ },
1640
+ "expObjectSampleType" : {
1641
+ "module" : "DISMAN-EXPRESSION-MIB",
1642
+ "writesyntax" : {
1643
+ "type" : {
1644
+ "basetype" : "Enumeration",
1645
+ "absoluteValue" : {
1646
+ "nodetype" : "namednumber",
1647
+ "number" : "1"
1648
+ },
1649
+ },
1650
+ }, # writesyntax
1651
+ "description" :
1652
+ """Implementation may disallow deltas calculation or
1653
+
1654
+
1655
+ change detection.""",
1656
+ },
1657
+ "expObjectIDWildcard" : {
1658
+ "module" : "DISMAN-EXPRESSION-MIB",
1659
+ "writesyntax" : {
1660
+ "type" : {
1661
+ "basetype" : "Enumeration",
1662
+ "parent module" : {
1663
+ "name" : "SNMPv2-TC",
1664
+ "type" : "TruthValue",
1665
+ },
1666
+ "false" : {
1667
+ "nodetype" : "namednumber",
1668
+ "number" : "2"
1669
+ },
1670
+ },
1671
+ }, # writesyntax
1672
+ "description" :
1673
+ """Implementation may allow wildcards.""",
1674
+ },
1675
+ "expObjectDiscontinuityIDWildcard" : {
1676
+ "module" : "DISMAN-EXPRESSION-MIB",
1677
+ "writesyntax" : {
1678
+ "type" : {
1679
+ "basetype" : "Enumeration",
1680
+ "parent module" : {
1681
+ "name" : "SNMPv2-TC",
1682
+ "type" : "TruthValue",
1683
+ },
1684
+ "false" : {
1685
+ "nodetype" : "namednumber",
1686
+ "number" : "2"
1687
+ },
1688
+ },
1689
+ }, # writesyntax
1690
+ "description" :
1691
+ """Implementation need not allow wildcards.""",
1692
+ },
1693
+ "expObjectConditionalWildcard" : {
1694
+ "module" : "DISMAN-EXPRESSION-MIB",
1695
+ "writesyntax" : {
1696
+ "type" : {
1697
+ "basetype" : "Enumeration",
1698
+ "parent module" : {
1699
+ "name" : "SNMPv2-TC",
1700
+ "type" : "TruthValue",
1701
+ },
1702
+ "false" : {
1703
+ "nodetype" : "namednumber",
1704
+ "number" : "2"
1705
+ },
1706
+ },
1707
+ }, # writesyntax
1708
+ "description" :
1709
+ """Implementation need not allow deltas wildcards.""",
1710
+ },
1711
+ }, # refinements
1712
+
1713
+ }, # compliance
1714
+ }, # compliances
1715
+
1716
+ }