summaryrefslogtreecommitdiff
path: root/MIBS/ibm/SNIA-SML-MIB
blob: 3f07aaede5cbd3360a26a7a0e46fec185101ef73 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
-- SML MIB Rev 1.21  
--      Added subChassisGroup to support multiple Chassis.
-- SML MIB Rev 1.20  
--      Added trapGroup and *Alert traps.
--      Deprecated mediaAccessDevice-Status in favor of
--          mediaAccessDevice-operationalStatus to be consistent
--          with other Groups.
--      Fixed some typos in scsiProtocolControllerGroup,
--          limitedAccessPortGroup, storageMediaLocationGroup,
--          and fcPortGroup Description fields.
--      Add EOLs throughout to hard-wrap to 80 char display.
-- SML MIB Rev 1.19  
--      Added fCPortGroup
--      Fixed OperationalStatus enumeration to match CIM 2.9.1 and
--          include a value for stopped and VendorReserved
--      Fixed SecurityBreach to match the MOF
-- SML MIB Rev 1.18
--      Changed physicalMedia to be flat under storageMediaLocation to allow
--          operation with MIB compilers
--      Broke compatibility with 1.16
-- SML MIB Rev 1.16
--      Updated to comply with CIM 2.8 and SMI-S 1.1
--      Added storageMediaLocation, changerDevice, limitedAccessPort,
--          scsiProtocolController, computerSystem
--
-- Art Colvig
-- IBM
-- SML MIB Rev 1.12
-- ASN.1 code created using dot2asn
-- by Jeff Bain
-- Hewlett Packard, Storage Systems Division
-- Greeley, CO
-- jeff_bain@hp.com
-- Michael Kearney
-- Qualstar
-- mkearney@qualstar-boulder.com

SNIA-SML-MIB
        DEFINITIONS ::= BEGIN

        IMPORTS
                OBJECT-TYPE
                        FROM RFC-1212
                enterprises
                        FROM RFC1155-SMI
                DisplayString
                        FROM RFC1213-MIB
                ;

-- Textual Conventions

UShortReal ::= INTEGER (0..'ffff'h)
-- This textual convention can be used to represent short
-- unsigned 'real' numbers.  Using this variable type,
-- a 3 digit number with 2 decimal places (xxx.xx)
-- can be represented.  For example, 321.45 would be
-- represented as "32145"

CimDateTime ::= OCTET STRING (SIZE (24))
-- This textual convention can be used to represent a date
-- and time using the CIM DateTime convention.  The bytes are
-- as follows:

--      octets  contents                range
--      ======  ========                =====
--      1-4     year                    0000-9999
--      5-6     month                   01-12
--      7-8     day                     01-31
--      9-10    hour                    00-23
--      11-12   minute                  00-59
--      13-14   second                  00-59
--      15-20   microseconds            000000-999999
--      21      sign                    '+' or '-'
--      22-24   UTC offset in minutes   000-839

-- For example, Monday, May 25, 1998, at 1:30:15 PM EST would be
-- represented as  19980525133015000000-300

-- Note that values must be zero-padded so that the entire
-- string is always the same 25-character length.  Fields that
-- are not significant can be replaced with asterisk characters

UINT64 ::= OCTET STRING (SIZE (8))
-- This textual convention can be used to represent 64-bit
-- numbers using the OCTET STRING type.  SNMPv2 supports a
-- Counter64 type, but there is no C-language mapping for a
-- 64-bit variable that's much better than an array of 8 bytes

UINT32 ::= INTEGER (0..'7fffffff'h)
UINT16 ::= INTEGER (0..'ffff'h)
-- MIB Fields
snia OBJECT IDENTIFIER ::= { enterprises 14851 }

experimental OBJECT IDENTIFIER ::= { snia 1 }

common OBJECT IDENTIFIER ::= { snia 2 }

libraries OBJECT IDENTIFIER ::= { snia 3 }


smlRoot OBJECT IDENTIFIER ::= { libraries 1 }


smlMibVersion   OBJECT-TYPE 
    SYNTAX          DisplayString  ( SIZE ( 0 .. 4  ) ) 
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION
        "This string contains version information for the MIB file"
    ::=  {  smlRoot  1  }

smlCimVersion   OBJECT-TYPE 
    SYNTAX          DisplayString  ( SIZE ( 0 .. 4  ) ) 
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "This string contains information about the 
        CIM version that corresponds to the MIB. 
        The decriptions in this MIB file are based on CIM version 2.8"
    ::=  {  smlRoot  2  }


    
    
productGroup    OBJECT IDENTIFIER
    ::=  {  smlRoot  3  }

product-Name    OBJECT-TYPE 
    SYNTAX          DisplayString  ( SIZE ( 0 .. 255  ) ) 
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "Commonly used Product name."
    ::=  {  productGroup  1  }

product-IdentifyingNumber   OBJECT-TYPE 
    SYNTAX          DisplayString  ( SIZE ( 0 .. 255  ) ) 
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "Product identification such as a serial number on
        software, a die number on a hardware chip, or (for
        non-commercial Products) a project number."
    ::=  {  productGroup  2  }

product-Vendor  OBJECT-TYPE 
    SYNTAX          DisplayString  ( SIZE ( 0 .. 255  ) ) 
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "The name of the Product's supplier, or entity 
        selling the Product (the manufacturer, reseller, OEM, etc.).
        Corresponds to the Vendor property in the Product object 
        in the DMTF Solution Exchange Standard."
    ::=  {  productGroup  3  }

product-Version OBJECT-TYPE 
    SYNTAX          DisplayString  ( SIZE ( 0 .. 255  ) ) 
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "Product version information. Corresponds to the
        Version property in the Product object in the DMTF Solution
        Exchange Standard."
    ::=  {  productGroup  4  }

product-ElementName OBJECT-TYPE 
    SYNTAX          DisplayString  ( SIZE ( 0 .. 255  ) ) 
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
       "A user-friendly name for the object. This property
       allows each instance to define a user-friendly name IN
       ADDITION TO its key properties/identity data, and
       description information.
       Note that ManagedSystemElement's Name property is also
       defined as a user-friendly name. But, it is often
       subclassed to be a Key. It is not reasonable that the same
       property can convey both identity and a user friendly name,
       without inconsistencies. Where Name exists and is not a Key
       (such as for instances of LogicalDevice), the same
       information MAY be present in both the Name and ElementName
       properties."
    ::=  {  productGroup  5  }


    
chassisGroup    OBJECT IDENTIFIER
    ::=  {  smlRoot  4  }

chassis-Manufacturer    OBJECT-TYPE 
    SYNTAX          DisplayString  ( SIZE ( 0 .. 255  ) ) 
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "The name of the organization responsible for
        producing the PhysicalElement. This may be the entity from
        whom the Element is purchased, but this is not
        necessarily true. The latter information is contained in 
        the Vendor property
        of CIM_Product."
    ::=  {  chassisGroup  1  }

chassis-Model   OBJECT-TYPE 
    SYNTAX          DisplayString  ( SIZE ( 0 .. 64  ) ) 
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "The name by which the PhysicalElement is generally known."
    ::=  {  chassisGroup  2  }

chassis-SerialNumber    OBJECT-TYPE 
    SYNTAX          DisplayString  ( SIZE ( 0 .. 64  ) ) 
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "A manufacturer-allocated number used to identify the Physical Element."
    ::=  {  chassisGroup  3  }

chassis-LockPresent OBJECT-TYPE 
    SYNTAX          INTEGER {
                            unknown (0),
                            true (1),
                            false (2) }
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "Boolean indicating whether the Frame is protected with a lock."
    ::=  {  chassisGroup  4  }

chassis-SecurityBreach  OBJECT-TYPE 
    SYNTAX          INTEGER {
                            unknown (1),
                            other (2),
                            noBreach (3),
                            breachAttempted (4),
                            breachSuccessful (5) }

    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "SecurityBreach is an enumerated, integer-valued
        property indicating whether a physical breach of the Frame
        was attempted but unsuccessful (value=4) or attempted and
        successful (5). Also, the values, 'Unknown', 'Other' or 'No
        Breach', can be specified."
    ::=  {  chassisGroup  5  }

chassis-IsLocked    OBJECT-TYPE 
    SYNTAX          INTEGER {
                            unknown (0),
                            true (1),
                            false (2) }
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "Boolean indicating that the Frame is currently locked."
    ::=  {  chassisGroup  6  }

chassis-Tag OBJECT-TYPE 
    SYNTAX          DisplayString  ( SIZE ( 0 .. 255  ) ) 
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
         "An arbitrary string that uniquely identifies the
         Physical Element and serves as the Element's key. The Tag
         property can contain information such as asset tag or serial
         number data. The key for PhysicalElement is placed very high in
         the object hierarchy in order to independently identify the
         hardware/entity, regardless of physical placement in or on
         Cabinets, Adapters, etc. For example, a hotswappable or
         removeable component may be taken from its containing
         (scoping) Package and be temporarily unused. The object
         still continues to exist - and may even be inserted into a
         different scoping container. Therefore, the key for
         Physical Element is an arbitrary string and is defined
         independently of any placement or location-oriented
         hierarchy."
    ::=  {  chassisGroup  7  }

chassis-ElementName OBJECT-TYPE 
    SYNTAX          DisplayString  ( SIZE ( 0 .. 255  ) ) 
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "A user-friendly name for the object. This property
        allows each instance to define a user-friendly name IN
        ADDITION TO its key properties/identity data, and description
        information.
        Note that ManagedSystemElement's Name property is also
        defined as a user-friendly name. But, it is often
        subclassed to be a Key. It is not reasonable that the same
        property can convey both identity and a user friendly name,
        without inconsistencies. Where Name exists and is not a Key
        (such as for instances of LogicalDevice), the same
        information MAY be present in both the Name and ElementName
        properties."
    ::=  {  chassisGroup  8  }


numberOfsubChassis OBJECT-TYPE 
    SYNTAX          Integer32
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "This value specifies the number of sub Chassis that are
        present."
    ::=  {  chassisGroup  9  }

subChassisTable OBJECT-TYPE
    SYNTAX      SEQUENCE  OF  SubChassis-Table-Info
    MAX-ACCESS  not-accessible
    STATUS          mandatory
    DESCRIPTION
        "The SubChassis class represents the physical frames in the library"
    ::=  { chassisGroup    10 }

subChassisEntry OBJECT-TYPE
    SYNTAX      SubChassis-Table-Info 
    MAX-ACCESS  not-accessible
    STATUS          mandatory
    DESCRIPTION 
        "Each entry in the table contains information about a
        frame that is present in the library."
    INDEX       {  subChassisIndex  }
    ::=  { subChassisTable 1 }

SubChassis-Table-Info  ::=  SEQUENCE {
    subChassisIndex                 UINT32,
    subChassis-Manufacturer         DisplayString,
    subChassis-Model                DisplayString,
    subChassis-SerialNumber         DisplayString,
    subChassis-LockPresent          INTEGER,
    subChassis-SecurityBreach       INTEGER,
    subChassis-IsLocked             INTEGER,
    subChassis-Tag                  DisplayString, 
    subChassis-ElementName          DisplayString,
    subChassis-OperationalStatus    INTEGER,
    subChassis-PackageType          INTEGER
    }

subChassisIndex OBJECT-TYPE 
    SYNTAX          UINT32
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "The current index value for the subChassis."
    ::=  {  subChassisEntry  1  }

subChassis-Manufacturer    OBJECT-TYPE 
    SYNTAX          DisplayString  ( SIZE ( 0 .. 255  ) ) 
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "The name of the organization responsible for
        producing the PhysicalElement. This may be the entity from
        whom the Element is purchased, but this is not
        necessarily true. The latter information is contained in 
        the Vendor property
        of CIM_Product."
    ::=  {  subChassisEntry  2  }

subChassis-Model   OBJECT-TYPE 
    SYNTAX          DisplayString  ( SIZE ( 0 .. 64  ) ) 
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "The name by which the PhysicalElement is generally known."
    ::=  {  subChassisEntry  3  }

subChassis-SerialNumber    OBJECT-TYPE 
    SYNTAX          DisplayString  ( SIZE ( 0 .. 64  ) ) 
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "A manufacturer-allocated number used to identify the Physical Element."
    ::=  {  subChassisEntry  4  }

subChassis-LockPresent OBJECT-TYPE 
    SYNTAX          INTEGER {
                            unknown (0),
                            true (1),
                            false (2) }
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "Boolean indicating whether the Frame is protected with a lock."
    ::=  {  subChassisEntry  5  }

subChassis-SecurityBreach  OBJECT-TYPE 
    SYNTAX          INTEGER {
                            unknown (1),
                            other (2),
                            noBreach (3),
                            breachAttempted (4),
                            breachSuccessful (5) }

    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "SecurityBreach is an enumerated, integer-valued
        property indicating whether a physical breach of the Frame
        was attempted but unsuccessful (value=4) or attempted and
        successful (5). Also, the values, 'Unknown', 'Other' or 'No
        Breach', can be specified."
    ::=  {  subChassisEntry  6  }

subChassis-IsLocked    OBJECT-TYPE 
    SYNTAX          INTEGER {
                            unknown (0),
                            true (1),
                            false (2) }
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "Boolean indicating that the Frame is currently locked."
    ::=  {  subChassisEntry  7  }

subChassis-Tag OBJECT-TYPE 
    SYNTAX          DisplayString  ( SIZE ( 0 .. 255  ) ) 
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
         "An arbitrary string that uniquely identifies the
         Physical Element and serves as the Element's key. The Tag
         property can contain information such as asset tag or serial
         number data. The key for PhysicalElement is placed very high in
         the object hierarchy in order to independently identify the
         hardware/entity, regardless of physical placement in or on
         Cabinets, Adapters, etc. For example, a hotswappable or
         removeable component may be taken from its containing
         (scoping) Package and be temporarily unused. The object
         still continues to exist - and may even be inserted into a
         different scoping container. Therefore, the key for
         Physical Element is an arbitrary string and is defined
         independently of any placement or location-oriented
         hierarchy."
    ::=  {  subChassisEntry  8  }

subChassis-ElementName OBJECT-TYPE 
    SYNTAX          DisplayString  ( SIZE ( 0 .. 255  ) ) 
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "A user-friendly name for the object. This property
        allows each instance to define a user-friendly name IN
        ADDITION TO its key properties/identity data, and description
        information.
        Note that ManagedSystemElement's Name property is also
        defined as a user-friendly name. But, it is often
        subclassed to be a Key. It is not reasonable that the same
        property can convey both identity and a user friendly name,
        without inconsistencies. Where Name exists and is not a Key
        (such as for instances of LogicalDevice), the same
        information MAY be present in both the Name and ElementName
        properties."
    ::=  {  subChassisEntry  9  }

subChassis-OperationalStatus OBJECT-TYPE 
    SYNTAX          INTEGER { unknown (0),
                              other (1),
                              ok (2),
                              degraded (3),
                              stressed (4),
                              predictiveFailure (5),
                              error (6),
                              non-RecoverableError (7),
                              starting (8),
                              stopping (9),
                              stopped  (10),
                              inService (11),
                              noContact (12),
                              lostCommunication (13),
                              aborted (14),
                              dormant (15),
                              supportingEntityInError (16),
                              completed (17),
                              powerMode (18),
                              dMTFReserved (19),
                              vendorReserved (32768) }
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "Indicates the current status(es) of the element.
         Various health and operational statuses are defined. Many of
         the enumeration's values are self- explanatory. However, a few
         are not and are described in more detail. \n
         'Stressed' indicates that the element is functioning, but
         needs attention. Examples of 'Stressed' states are
         overload, overheated, etc. \n
         'Predictive Failure' indicates that an element is
         functioning nominally but predicting a failure in the near
         future. \n
         'In Service' describes an element being configured,
         maintained, cleaned, or otherwise administered. \n
         'No Contact' indicates that the monitoring system has
         knowledge of this element, but has never been able to
         establish communications with it. \n
         'Lost Communication' indicates that the ManagedSystem
         Element is known to exist and has been contacted
         successfully in the past, but is currently unreachable. \n
         'Stopped' and 'Aborted' are similar, although the
         former implies a clean and orderly stop, while the latter
         implies an abrupt stop where the element's state and
         configuration may need to be updated. \n
         'Dormant' indicates that the element is inactive or
         quiesced. \n
         'Supporting Entity in Error' describes that this element
         may be 'OK' but that another element, on which it is
         dependent, is in error. An example is a network service or
         endpoint that cannot function due to lower layer networking
         problems. \n
         'Completed' indicates the element has completed its
         operation. This value should be combined with either OK,
         Error, or Degraded so that a client can till if the
         complete operation passed (Completed with OK), and failure
         (Completed with Error). Completed with Degraded would imply
         the operation finished, but did not complete OK or report
         an error. \n
         'Power Mode' indicates the element has additional power
         model information contained in the Associated
         PowerManagementService association. \n
         OperationalStatus replaces the Status property on
         ManagedSystemElement to provide a consistent approach to
         enumerations, to address implementation needs for an array
         property, and to provide a migration path from today's
         environment to the future. This change was not made earlier
         since it required the DEPRECATED qualifier. Due to the
         widespread use of the existing Status property in
         management applications, it is strongly RECOMMENDED that
         providers/instrumentation provide BOTH the Status and
         OperationalStatus properties. Further, the first value of
         OperationalStatus SHOULD contain the primary status for the
         element. When instrumented, Status (since it is
         single-valued) SHOULD also provide the primary status of
         the element."
    ::=  {  subChassisEntry  10  }


subChassis-PackageType OBJECT-TYPE 
    SYNTAX          INTEGER {
                            unknown (0),
                            mainSystemChassis(17),
                            expansionChassis(18),
                            subChassis(19),
                            serviceBay(32769) }
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "Package type of the subChassis. The enumeration values for this variable
         should be the same as the DMTF CIM_Chassis.ChassisPackageType 
         property. Use the Vendor reserved values for vendor-specific types."
    ::=  {  subChassisEntry  11  }
    
    
storageLibraryGroup OBJECT IDENTIFIER
    ::=  {  smlRoot  5  }

storageLibrary-Name OBJECT-TYPE 
    SYNTAX          DisplayString  ( SIZE ( 0 .. 255  ) ) 
    MAX-ACCESS      read-only
    STATUS          deprecated
    DESCRIPTION     
        "The inherited Name serves as key of a System 
        instance in an enterprise environment."
    ::=  {  storageLibraryGroup  1  }

storageLibrary-Description  OBJECT-TYPE 
    SYNTAX          DisplayString  ( SIZE ( 0 .. 255  ) ) 
    MAX-ACCESS      read-only
    STATUS          deprecated
    DESCRIPTION     
        "The Description property provides a textual
        description of the object."
    ::=  {  storageLibraryGroup  2  }

storageLibrary-Caption  OBJECT-TYPE 
    SYNTAX          DisplayString  ( SIZE ( 0 .. 64  ) ) 
    MAX-ACCESS      read-only
    STATUS          deprecated
    DESCRIPTION     
        "The Caption property is a short textual description
        (one- line string) of the object."
    ::=  {  storageLibraryGroup  3  }

storageLibrary-Status   OBJECT-TYPE 
    SYNTAX          DisplayString  ( SIZE ( 0 .. 10  ) ) 
    MAX-ACCESS      read-only
    STATUS          deprecated
    DESCRIPTION     
        "A string indicating the current status of the object.
        Various operational and non-operational statuses are defined.
        This property is deprecated in lieu of OperationalStatus, which
        includes the same semantics in its enumeration. This change is
        made for three reasons:
        1) Status is more correctly defined as an array property. This
        overcomes the limitation of describing status via a single
        value, when it is really a multi-valued property (for example,
        an element may be OK AND Stopped.
        2) A MaxLen of 10 is too restrictive and leads to unclear
        enumerated values. And,
        3) The change to a uint16 data type was discussed when CIM V2.0
        was defined.
        However, existing V1.0 implementations used the string property
        and did not want to modify their code. Therefore, Status was
        grandfathered into the Schema. Use of the Deprecated qualifier
        allows the maintenance of the existing property, but
        also permits an improved definition using OperationalStatus."
    ::=  {  storageLibraryGroup  4  }

storageLibrary-InstallDate  OBJECT-TYPE 
    SYNTAX          CimDateTime
    MAX-ACCESS      read-only
    STATUS          deprecated
    DESCRIPTION     
        "A datetime value indicating when the object was
        installed. A lack of a value does not indicate that the object
        is not installed."
    ::=  {  storageLibraryGroup  5  }


    
--       "A MediaAccessDevice represents the ability to access one or "
--       "more media and use this media to store and retrieve data."
--       class CIM_MediaAccessDevice : CIM_LogicalDevice {
mediaAccessDeviceGroup
    OBJECT IDENTIFIER
    ::= { smlRoot 6 }

numberOfMediaAccessDevices  OBJECT-TYPE 
    SYNTAX          Integer32
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "This value specifies the number of MediaAccessDevices
        that are present."
    ::=  {  mediaAccessDeviceGroup  1  }

mediaAccessDeviceTable  OBJECT-TYPE
    SYNTAX      SEQUENCE  OF  Media-Access-Device-Table
    MAX-ACCESS  not-accessible
    STATUS      mandatory
    DESCRIPTION 
        "A MediaAccessDevice represents the ability to access one
        or more media and use this media to store and retrieve data."
    ::=  { mediaAccessDeviceGroup  2 }

mediaAccessDeviceEntry  OBJECT-TYPE
    SYNTAX      Media-Access-Device-Table
    MAX-ACCESS  not-accessible
    STATUS      mandatory
    DESCRIPTION 
        "Each entry in the table contains information about a
        MediaAccessDevice that is present in the library."
    INDEX       {  mediaAccessDeviceIndex  }
    ::=  { mediaAccessDeviceTable 1 }

Media-Access-Device-Table  ::=  SEQUENCE {
    mediaAccessDeviceIndex  UINT32,
    mediaAccessDeviceObjectType  INTEGER,
    mediaAccessDevice-Name  DisplayString,
    mediaAccessDevice-Status  DisplayString,
    mediaAccessDevice-Availability  INTEGER,
    mediaAccessDevice-NeedsCleaning  INTEGER,
    mediaAccessDevice-MountCount  UINT64,
    mediaAccessDevice-DeviceID  DisplayString,
    mediaAccessDevice-PowerOnHours  UINT64,
    mediaAccessDevice-TotalPowerOnHours  UINT64,
    mediaAccessDevice-OperationalStatus  INTEGER,
    mediaAccessDevice-Realizes-StorageLocationIndex  UINT32,
    mediaAccessDevice-Realizes-softwareElementIndex  UINT32
    }


mediaAccessDeviceIndex  OBJECT-TYPE 
    SYNTAX          UINT32
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "The current index value for the MediaAccessDevice."
    ::=  {  mediaAccessDeviceEntry  1  }


mediaAccessDeviceObjectType OBJECT-TYPE 
    SYNTAX          INTEGER {
                            unknown (0),
                            wormDrive (1),
                            magnetoOpticalDrive (2),
                            tapeDrive (3),
                            dvdDrive (4),
                            cdromDrive (5) }
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "In the 2.7 CIM Schema a Type property is no longer
        associated with MediaAccessDevice. However, it can be used
        here to specify the type of drive that is present."
    ::=  {  mediaAccessDeviceEntry  2  }


mediaAccessDevice-Name  OBJECT-TYPE 
    SYNTAX          DisplayString  ( SIZE ( 0 .. 255  ) ) 
    MAX-ACCESS      read-only
    STATUS          deprecated
    DESCRIPTION     
        "Deprecated"
    ::=  {  mediaAccessDeviceEntry  3  }


mediaAccessDevice-Status    OBJECT-TYPE 
    SYNTAX          DisplayString  ( SIZE ( 0 .. 10  ) ) 
    MAX-ACCESS      read-only
    STATUS          deprecated
    DESCRIPTION     
        "A string indicating the current status of the object.
        Various operational and non-operational statuses are defined.
        This property is deprecated in lieu of OperationalStatus, which
        includes the same semantics in its enumeration. This change
        is made for three reasons:
        1) Status is more correctly defined
        as an array property. This overcomes the limitation of
        describing status via a single value, when it is really a
        multi-valued property (for example, an element may be OK AND
        Stopped.
        2) A MaxLen of 10 is too restrictive and leads to unclear
        enumerated values. And,
        3) The change to a uint16 data type was discussed when CIM V2.0
        was defined. However, existing V1.0 implementations used the
        string property and did not want to modify their code.
        Therefore, Status was grandfathered into the Schema. 
        Use of the Deprecated qualifier allows the maintenance
        of the existing property, but also permits an improved
        definition using OperationalStatus."
            
    ::=  {  mediaAccessDeviceEntry  4  }


mediaAccessDevice-Availability  OBJECT-TYPE 
    SYNTAX          INTEGER { other (1),
                            unknown (2),
                            runningFullPower (3),
                            warning (4),
                            inTest (5),
                            notApplicable (6),
                            powerOff (7),
                            offLine (8),
                            offDuty (9),
                            degraded (10),
                            notInstalled (11),
                            installError (12),
                            powerSaveUnknown (13),
                            powerSaveLowPowerMode (14),
                            powerSaveStandby (15),
                            powerCycle (16),
                            powerSaveWarning (17),
                            paused (18),
                            notReady (19),
                            notConfigured (20),
                            quiesced (21) }
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "Inherited from CIM_LogicalDevice

        The primary availability and status of the Device.
        (Additional status information can be specified using the
        Additional Availability array property.) For example, the
        Availability property indicates that the Device is running
        and has full power (value=3), or is in a warning (4), test
        (5), degraded (10) or power save state (values 13-15 and
        17). Regarding the Power Save states, these are defined as
        follows: Value 13 (Power Save - Unknown) indicates that
        the Device is known to be in a power save mode, but its
        exact status in this mode is unknown; 14 (Power Save -
        Low Power Mode) indicates that the Device is in a power
        save state but still functioning, and may exhibit degraded
        performance; 15 (Power Save - Standby) describes that
        the Device is not functioning but could be brought to full
        power 'quickly'; and value 17 (Power Save - Warning)
        indicates that the Device is in a warning state, though
        also in a power save mode."
    ::=  {  mediaAccessDeviceEntry  5  }


mediaAccessDevice-NeedsCleaning OBJECT-TYPE 
    SYNTAX          INTEGER {
                            unknown (0),
                            true (1),
                            false (2) }
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "Boolean indicating that the MediaAccessDevice needs
        cleaning. Whether manual or automatic cleaning is possible 
        is indicated in the Capabilities array property. "
    ::=  {  mediaAccessDeviceEntry  6  }


mediaAccessDevice-MountCount    OBJECT-TYPE 
    SYNTAX          UINT64
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "For a MediaAccessDevice that supports removable
         Media, the number of times that Media have been mounted for
         data transfer or to clean the Device. For Devices accessing
         nonremovable Media, such as hard disks, this property is
         not applicable and should be set to 0."
    ::=  {  mediaAccessDeviceEntry  7  }


mediaAccessDevice-DeviceID  OBJECT-TYPE 
    SYNTAX          DisplayString  ( SIZE ( 0 .. 64  ) ) 
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "An address or other identifying information to
         uniquely name the LogicalDevice."
    ::=  {  mediaAccessDeviceEntry  8  }


mediaAccessDevice-PowerOnHours  OBJECT-TYPE 
    SYNTAX          UINT64
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "The number of consecutive hours that this Device has
        been powered, since its last power cycle."
    ::=  {  mediaAccessDeviceEntry  9  }


mediaAccessDevice-TotalPowerOnHours OBJECT-TYPE 
    SYNTAX          UINT64
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "The total number of hours that this Device has been powered."
    ::=  {  mediaAccessDeviceEntry  10  }


mediaAccessDevice-OperationalStatus OBJECT-TYPE 
    SYNTAX          INTEGER { unknown (0),
                              other (1),
                              ok (2),
                              degraded (3),
                              stressed (4),
                              predictiveFailure (5),
                              error (6),
                              non-RecoverableError (7),
                              starting (8),
                              stopping (9),
                              stopped  (10),
                              inService (11),
                              noContact (12),
                              lostCommunication (13),
                              aborted (14),
                              dormant (15),
                              supportingEntityInError (16),
                              completed (17),
                              powerMode (18),
                              dMTFReserved (19),
                              vendorReserved (32768) }
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "Indicates the current status(es) of the element.
         Various health and operational statuses are defined. Many of
         the enumeration's values are self- explanatory. However, a few
         are not and are described in more detail. \n
         'Stressed' indicates that the element is functioning, but
         needs attention. Examples of 'Stressed' states are
         overload, overheated, etc. \n
         'Predictive Failure' indicates that an element is
         functioning nominally but predicting a failure in the near
         future. \n
         'In Service' describes an element being configured,
         maintained, cleaned, or otherwise administered. \n
         'No Contact' indicates that the monitoring system has
         knowledge of this element, but has never been able to
         establish communications with it. \n
         'Lost Communication' indicates that the ManagedSystem
         Element is known to exist and has been contacted
         successfully in the past, but is currently unreachable. \n
         'Stopped' and 'Aborted' are similar, although the
         former implies a clean and orderly stop, while the latter
         implies an abrupt stop where the element's state and
         configuration may need to be updated. \n
         'Dormant' indicates that the element is inactive or
         quiesced. \n
         'Supporting Entity in Error' describes that this element
         may be 'OK' but that another element, on which it is
         dependent, is in error. An example is a network service or
         endpoint that cannot function due to lower layer networking
         problems. \n
         'Completed' indicates the element has completed its
         operation. This value should be combined with either OK,
         Error, or Degraded so that a client can till if the
         complete operation passed (Completed with OK), and failure
         (Completed with Error). Completed with Degraded would imply
         the operation finished, but did not complete OK or report
         an error. \n
         'Power Mode' indicates the element has additional power
         model information contained in the Associated
         PowerManagementService association. \n
         OperationalStatus replaces the Status property on
         ManagedSystemElement to provide a consistent approach to
         enumerations, to address implementation needs for an array
         property, and to provide a migration path from today's
         environment to the future. This change was not made earlier
         since it required the DEPRECATED qualifier. Due to the
         widespread use of the existing Status property in
         management applications, it is strongly RECOMMENDED that
         providers/instrumentation provide BOTH the Status and
         OperationalStatus properties. Further, the first value of
         OperationalStatus SHOULD contain the primary status for the
         element. When instrumented, Status (since it is
         single-valued) SHOULD also provide the primary status of
         the element."
    ::=  {  mediaAccessDeviceEntry  11  }


mediaAccessDevice-Realizes-StorageLocationIndex OBJECT-TYPE 
    SYNTAX          UINT32
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "The current index value for the
        storageMediaLocationIndex that this MediaAccessDevice is 
        associated with.
        If no association exists an index of 0 may be returned."
    ::=  {  mediaAccessDeviceEntry  12  }


mediaAccessDevice-Realizes-softwareElementIndex OBJECT-TYPE 
    SYNTAX          UINT32
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "The current index value for the softwareElementIndex
        that this MediaAccessDevice is associated with.
        If no association exists an index of 0 may be returned."
    ::=  {  mediaAccessDeviceEntry  13  }


    
physicalPackageGroup    OBJECT IDENTIFIER
    ::=  {  smlRoot  8  }

numberOfPhysicalPackages    OBJECT-TYPE 
    SYNTAX          Integer32
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "This value specifies the number of PhysicalPackages
        that are present."
    ::=  {  physicalPackageGroup  1  }

physicalPackageTable    OBJECT-TYPE
    SYNTAX      SEQUENCE  OF  PhysicalPackage-Table
    MAX-ACCESS  not-accessible
    STATUS          mandatory
    DESCRIPTION 
        "The PhysicalPackage class represents PhysicalElements
        that contain or host other components. Examples are a Rack
        enclosure or an adapter Card. (also a tape magazine inside 
        an auto-loader)"
    ::=  { physicalPackageGroup  2 }

physicalPackageEntry    OBJECT-TYPE
    SYNTAX      PhysicalPackage-Table
    MAX-ACCESS  not-accessible
    STATUS          mandatory
    DESCRIPTION 
        "Each entry in the table contains information about a
        PhysicalPackage that is present in the library."
    INDEX       {  physicalPackageIndex  }
    ::=  { physicalPackageTable 1 }

PhysicalPackage-Table  ::=  SEQUENCE {
    physicalPackageIndex  UINT32,
    physicalPackage-Manufacturer  DisplayString,
    physicalPackage-Model  DisplayString,
    physicalPackage-SerialNumber  DisplayString,
    physicalPackage-Realizes-MediaAccessDeviceIndex  Integer32,
    physicalPackage-Tag  DisplayString
    }


physicalPackageIndex    OBJECT-TYPE 
    SYNTAX          UINT32
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "The current index value for the PhysicalPackage."
    ::=  {  physicalPackageEntry  1  }


physicalPackage-Manufacturer    OBJECT-TYPE 
    SYNTAX          DisplayString  ( SIZE ( 0 .. 255  ) ) 
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "The name of the organization responsible for
        producing the PhysicalElement.
        This may be the entity from whom the Element is purchased, 
        but this is not necessarily true. The latter information is
        contained in the Vendor property of CIM_Product."
    ::=  {  physicalPackageEntry  2  }


physicalPackage-Model   OBJECT-TYPE 
    SYNTAX          DisplayString  ( SIZE ( 0 .. 64  ) ) 
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "The name by which the PhysicalElement is generally known."
    ::=  {  physicalPackageEntry  3  }


physicalPackage-SerialNumber    OBJECT-TYPE 
    SYNTAX          DisplayString  ( SIZE ( 0 .. 64  ) ) 
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "A manufacturer-allocated number used to identify the
        Physical Element."
    ::=  {  physicalPackageEntry  4  }


physicalPackage-Realizes-MediaAccessDeviceIndex OBJECT-TYPE 
    SYNTAX          Integer32
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
            "The index value of the the MediaAccess device that
            is associated with this physical package.'"
    ::=  {  physicalPackageEntry  5  }


physicalPackage-Tag OBJECT-TYPE 
    SYNTAX          DisplayString  ( SIZE ( 0 .. 255  ) ) 
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "An arbitrary string that uniquely identifies the
         Physical Element and serves as the Element's key. The Tag
         property can contain information such as asset tag or serial
         number data. The key for PhysicalElement is placed very high in
         the object hierarchy in order to independently identify the
         hardware/entity, regardless of physical placement in or on
         Cabinets, Adapters, etc. For example, a hotswappable or
         removeable component may be taken from its containing
         (scoping) Package and be temporarily unused. The object
         still continues to exist - and may even be inserted into a
         different scoping container. Therefore, the key for
         Physical Element is an arbitrary string and is defined
         independently of any placement or location-oriented
         hierarchy."
    ::=  {  physicalPackageEntry  6  }



    
    
softwareElementGroup    OBJECT IDENTIFIER
    ::=  {  smlRoot  9  }

numberOfSoftwareElements    OBJECT-TYPE 
    SYNTAX          Integer32
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "This value specifies the number of SoftwareElements
        that are present."
    ::=  {  softwareElementGroup  1  }

softwareElementTable    OBJECT-TYPE
    SYNTAX      SEQUENCE  OF  SoftwareElement-Table-Info
    MAX-ACCESS  not-accessible
    STATUS          mandatory
    DESCRIPTION 
        "The CIM_SoftwareElement class is used to decompose a
        CIM_SoftwareFeature object into a set of individually manageable
        or deployable parts for a particular platform. A software
        element's platform is uniquely identified
        by its underlying hardware architecture and operating system
        (for example Sun Solaris on Sun Sparc or Windows NT on Intel).
        As such, to understand the details of how the functionality of 
        a particular software feature is provided on a particular
        platform, the CIM_SoftwareElement objects referenced
        by CIM_SoftwareFeatureSoftwareElement associations are
        organized in disjoint sets based on the TargetOperatingSystem
        property. A CIM_SoftwareElement object captures the management
        details of a part or component in one of four
        states characterized by the SoftwareElementState property. "
    ::=  { softwareElementGroup  2 }

softwareElementEntry    OBJECT-TYPE
    SYNTAX      SoftwareElement-Table-Info
    MAX-ACCESS  not-accessible
    STATUS          mandatory
    DESCRIPTION 
        "Each entry in the table contains information about a
        SoftwareElement that is present in the library."
    INDEX       {  softwareElementIndex  }
    ::=  { softwareElementTable 1 }

SoftwareElement-Table-Info  ::=  SEQUENCE {
    softwareElementIndex  UINT32,
    softwareElement-Name  DisplayString,
    softwareElement-Version  DisplayString,
    softwareElement-SoftwareElementID  DisplayString,
    softwareElement-Manufacturer  DisplayString,
    softwareElement-BuildNumber  DisplayString,
    softwareElement-SerialNumber  DisplayString,
    softwareElement-CodeSet  DisplayString,
    softwareElement-IdentificationCode  DisplayString,
    softwareElement-LanguageEdition  DisplayString,
    softwareElement-InstanceID  DisplayString
    }


softwareElementIndex    OBJECT-TYPE 
    SYNTAX          UINT32
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "The current index value for the SoftwareElement."
    ::=  {  softwareElementEntry  1  }


softwareElement-Name    OBJECT-TYPE 
    SYNTAX          DisplayString  ( SIZE ( 0 .. 255  ) ) 
    MAX-ACCESS      read-only
    STATUS          deprecated
    DESCRIPTION     
        "deprecated"
    ::=  {  softwareElementEntry  2  }


softwareElement-Version OBJECT-TYPE 
    SYNTAX          DisplayString  ( SIZE ( 0 .. 255  ) ) 
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "Version should be in the form .. or . "
    ::=  {  softwareElementEntry  3  }


softwareElement-SoftwareElementID   OBJECT-TYPE 
    SYNTAX          DisplayString  ( SIZE ( 0 .. 255  ) ) 
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "SoftwareIdentity represents software, viewed as an
        asset and/or individually identifiable entity (similar to 
        Physical Element). It does NOT indicate whether the software
        is installed, executing, etc. (The latter is the role of the
        SoftwareFeature/ SoftwareElement classes and the Application
        Model.) Since software may be acquired, SoftwareIdentity can
        be associated with a Product using the
        ProductSoftwareComponent relationship.
        Note that the Application Model manages the deployment and
        installation of software via the classes, SoftwareFeatures and
        SoftwareElements. The deployment/installation concepts are
        related to the asset/identity one. In fact, a SoftwareIdentity
        may correspond to a Product, or to one or more
        SoftwareFeatures or SoftwareElements - depending on the
        granularity of these classes and the deployment model. The
        correspondence of Software Identity to Product,
        SoftwareFeature or SoftwareElement is indicated using the
        ConcreteIdentity association. Note that there may not be
        sufficient detail or instrumentation to instantiate
        ConcreteIdentity. And, if the association is instantiated,
        some duplication of information may result. For example, the
        Vendor described in the instances of Product and
        SoftwareIdentity MAY be the same. However, this is not
        necessarily true, and it is why vendor and similar information
        are duplicated in this class.
        Note that ConcreteIdentity can also be used to describe the
        relationship of the software to any LogicalFiles that result
        from installing it. As above, there may not be sufficient
        detail or instrumentation to instantiate this association."
    ::=  {  softwareElementEntry  4  }


softwareElement-Manufacturer    OBJECT-TYPE 
    SYNTAX          DisplayString  ( SIZE ( 0 .. 64  ) ) 
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "Manufacturer of this software element"
    ::=  {  softwareElementEntry  5  }


softwareElement-BuildNumber OBJECT-TYPE 
    SYNTAX          DisplayString  ( SIZE ( 0 .. 64  ) ) 
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "The internal identifier for this compilation of this
        software element."
    ::=  {  softwareElementEntry  6  }


softwareElement-SerialNumber    OBJECT-TYPE 
    SYNTAX          DisplayString  ( SIZE ( 0 .. 64  ) ) 
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "The assigned serial number of this software element."
    ::=  {  softwareElementEntry  7  }


softwareElement-CodeSet OBJECT-TYPE 
    SYNTAX          DisplayString  ( SIZE ( 0 .. 64  ) ) 
    MAX-ACCESS      read-only
    STATUS          deprecated
    DESCRIPTION     
        "The code set used by this software element. "
    ::=  {  softwareElementEntry  8  }


softwareElement-IdentificationCode  OBJECT-TYPE 
    SYNTAX          DisplayString  ( SIZE ( 0 .. 64  ) ) 
    MAX-ACCESS      read-only
    STATUS          deprecated
    DESCRIPTION     
        "The value of this property is the manufacturer's
        identifier for this software element. Often this will be a 
        stock keeping unit (SKU) or a part number."
    ::=  {  softwareElementEntry  9  }


softwareElement-LanguageEdition OBJECT-TYPE 
    SYNTAX          DisplayString  ( SIZE ( 0 .. 32  ) ) 
    MAX-ACCESS      read-only
    STATUS          deprecated
    DESCRIPTION     
        "The value of this property identifies the language
        edition of this software element. The language codes defined in
        ISO 639 should be used. Where the software element represents
        multi-lingual or international version of a
        product, the string multilingual should be used."
    ::=  {  softwareElementEntry  10  }


softwareElement-InstanceID  OBJECT-TYPE 
    SYNTAX          DisplayString  ( SIZE ( 0 .. 255  ) ) 
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "Within the scope of the instantiating Namespace, 
        InstanceID opaquely and uniquely identifies an instance of this
        class. In order to ensure uniqueness within the NameSpace, the
        value of InstanceID SHOULD be constructed using the
        following 'preferred' algorithm:
        <OrgID>:<LocalID>
        Where <OrgID> and <LocalID> are separated by a colon ':',
        and where <OrgID> MUST include a copyrighted, trademarked
        or otherwise unique name that is owned by the business
        entity creating/defining the InstanceID, or is a registered
        ID that is assigned to the business entity by a recognized
        global authority (This is similar to the <Schema
        Name>_<Class Name> structure of Schema class names.) In
        addition, to ensure uniqueness <OrgID> MUST NOT contain a
        colon (':'). When using this algorithm, the first colon to
        appear in InstanceID MUST appear between <OrgID> and
        <LocalID>.
        <LocalID> is chosen by the business entity and SHOULD not
        be re-used to identify different underlying (real-world)
        elements. If the above 'preferred' algorithm is not used,
        the defining entity MUST assure that the resultant
        InstanceID is not re-used across any InstanceIDs produced
        by this or other providers for this instance's NameSpace.
        For DMTF defined instances, the 'preferred' algorithm MUST
        be used with the <OrgID> set to 'CIM'."
    ::=  {  softwareElementEntry  11  }


    
computerSystemGroup OBJECT IDENTIFIER
    ::=  {  smlRoot  10  }

computerSystem-ElementName  OBJECT-TYPE 
    SYNTAX          DisplayString  ( SIZE ( 0 .. 255  ) ) 
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "A user-friendly name for the object. This property 
        allows each instance to define a user-friendly name IN ADDITION
        TO its key properties/identity data, and description
        information. \n
        Note that ManagedSystemElement's Name property is also
        defined as a user-friendly name. But, it is often
        subclassed to be a Key. It is not reasonable that the same
        property can convey both identity and a user friendly name,
        without inconsistencies. Where Name exists and is not a Key
        (such as for instances of LogicalDevice), the same
        information MAY be present in both the Name and ElementName
        properties."
    ::=  {  computerSystemGroup  1  }

computerSystem-OperationalStatus    OBJECT-TYPE 
    SYNTAX          INTEGER { unknown (0),
                              other (1),
                              ok (2),
                              degraded (3),
                              stressed (4),
                              predictiveFailure (5),
                              error (6),
                              non-RecoverableError (7),
                              starting (8),
                              stopping (9),
                              stopped  (10),
                              inService (11),
                              noContact (12),
                              lostCommunication (13),
                              aborted (14),
                              dormant (15),
                              supportingEntityInError (16),
                              completed (17),
                              powerMode (18),
                              dMTFReserved (19),
                              vendorReserved (32768) }
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "Indicates the current status(es) of the element.
         Various health and operational statuses are defined. Many of
         the enumeration's values are self- explanatory. However, a few
         are not and are described in more detail. \n
         'Stressed' indicates that the element is functioning, but
         needs attention. Examples of 'Stressed' states are
         overload, overheated, etc. \n
         'Predictive Failure' indicates that an element is
         functioning nominally but predicting a failure in the near
         future. \n
         'In Service' describes an element being configured,
         maintained, cleaned, or otherwise administered. \n
         'No Contact' indicates that the monitoring system has
         knowledge of this element, but has never been able to
         establish communications with it. \n
         'Lost Communication' indicates that the ManagedSystem
         Element is known to exist and has been contacted
         successfully in the past, but is currently unreachable. \n
         'Stopped' and 'Aborted' are similar, although the
         former implies a clean and orderly stop, while the latter
         implies an abrupt stop where the element's state and
         configuration may need to be updated. \n
         'Dormant' indicates that the element is inactive or
         quiesced. \n
         'Supporting Entity in Error' describes that this element
         may be 'OK' but that another element, on which it is
         dependent, is in error. An example is a network service or
         endpoint that cannot function due to lower layer networking
         problems. \n
         'Completed' indicates the element has completed its
         operation. This value should be combined with either OK,
         Error, or Degraded so that a client can till if the
         complete operation passed (Completed with OK), and failure
         (Completed with Error). Completed with Degraded would imply
         the operation finished, but did not complete OK or report
         an error. \n
         'Power Mode' indicates the element has additional power
         model information contained in the Associated
         PowerManagementService association. \n
         OperationalStatus replaces the Status property on
         ManagedSystemElement to provide a consistent approach to
         enumerations, to address implementation needs for an array
         property, and to provide a migration path from today's
         environment to the future. This change was not made earlier
         since it required the DEPRECATED qualifier. Due to the
         widespread use of the existing Status property in
         management applications, it is strongly RECOMMENDED that
         providers/instrumentation provide BOTH the Status and
         OperationalStatus properties. Further, the first value of
         OperationalStatus SHOULD contain the primary status for the
         element. When instrumented, Status (since it is
         single-valued) SHOULD also provide the primary status of
         the element."
    ::=  {  computerSystemGroup  2  }

computerSystem-Name OBJECT-TYPE 
    SYNTAX          DisplayString  ( SIZE ( 0 .. 255  ) ) 
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     "The Name property defines the label by which the
           object is known. When subclassed, the Name property can be
           overridden to be a Key property."
    ::=  {  computerSystemGroup  3  }

computerSystem-NameFormat   OBJECT-TYPE 
    SYNTAX          DisplayString  ( SIZE ( 0 .. 255  ) ) 
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "The ComputerSystem object and its derivatives are
        Top Level Objects of CIM. They provide the scope for numerous
        components. Having unique System keys is required. The
        NameFormat property identifies how the ComputerSystem Name
        is generated. The NameFormat ValueMap qualifier defines the
        various mechanisms for assigning the name. Note that
        another name can be assigned and used for the
        ComputerSystem that better suit a business, using the
        inherited ElementName property. Possible values include
        'Other', 'IP', 'Dial', 'HID', 'NWA', 'HWA', 'X25',
        'ISDN', 'IPX', 'DCC', 'ICD', 'E.164', 'SNA', 'OID/OSI',
        'WWN', 'NAA'"
    ::=  {  computerSystemGroup  4  }

computerSystem-Dedicated    OBJECT-TYPE 
    SYNTAX          INTEGER {  notDedicated (0),
                               unknown (1),
                               other (2),
                               storage (3),
                               router (4),
                               switch (5),
                               layer3switch (6),
                               centralOfficeSwitch (7),
                               hub (8),
                               accessServer (9),
                               firewall (10),
                               print (11),
                               io (12),
                               webCaching (13),
                               management (14),
                               blockServer (15),
                               fileServer (16),
                               mobileUserDevice (17),
                               repeater (18),
                               bridgeExtender (19),
                               gateway (20) }
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION    
        "Enumeration indicating whether the ComputerSystem is
        a special-purpose System (ie, dedicated to a particular use),
        versus being 'general purpose'. For example, one could
        specify that the System is dedicated to 'Print'
        (value=11) or acts as a 'Hub' (value=8). \n
        A clarification is needed with respect to the value 17
        ('Mobile User Device'). An example of a dedicated user
        device is a mobile phone or a barcode scanner in a store
        that communicates via radio frequency. These systems are
        quite limited in functionality and programmability, and are
        not considered 'general purpose' computing platforms.
        Alternately, an example of a mobile system that is 'general
        purpose' (i.e., is NOT dedicated) is a hand-held computer.
        Although limited in its programmability, new software can
        be downloaded and its functionality expanded by the user."
    ::=  {  computerSystemGroup  5  }

computerSystem-PrimaryOwnerContact  OBJECT-TYPE 
    SYNTAX          DisplayString  ( SIZE ( 0 .. 255  ) ) 
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "A string that provides information on how the primary
        system owner can be reached (e.g. phone number, email
        address, ...)"
    ::=  {  computerSystemGroup  6  }

computerSystem-PrimaryOwnerName OBJECT-TYPE 
    SYNTAX          DisplayString  ( SIZE ( 0 .. 255  ) ) 
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "The name of the primary system owner. The system 
        owner is the primary user of the system."
    ::=  {  computerSystemGroup  7  }

computerSystem-Description  OBJECT-TYPE 
    SYNTAX          DisplayString  ( SIZE ( 0 .. 255  ) ) 
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "The Description property provides a textual
        description of the object."
    ::=  {  computerSystemGroup  8  }

computerSystem-Caption  OBJECT-TYPE 
    SYNTAX          DisplayString  ( SIZE ( 0 .. 64  ) ) 
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "The Caption property is a short textual description
        (one- line string) of the object."
    ::=  {  computerSystemGroup  9  }

computerSystem-Realizes-softwareElementIndex    OBJECT-TYPE 
    SYNTAX          UINT32
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "The current index value for the softwareElementIndex
        that this computerSystem is associated with.
        If no association exists an index of 0 may be returned."
    ::=  {  computerSystemGroup  10  }


    
    
changerDeviceGroup  OBJECT IDENTIFIER
    ::=  {  smlRoot  11  }

numberOfChangerDevices  OBJECT-TYPE 
    SYNTAX          Integer32
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "This value specifies the number of ChangerDevices
        that are present."
    ::=  {  changerDeviceGroup  1  }

changerDeviceTable  OBJECT-TYPE
    SYNTAX      SEQUENCE  OF  ChangerDevice-Table-Info
    MAX-ACCESS  not-accessible
    STATUS          mandatory
    DESCRIPTION 
        "The changerDevice class represents changerDevices in the library"
    ::=  { changerDeviceGroup  2 }

changerDeviceEntry  OBJECT-TYPE
    SYNTAX      ChangerDevice-Table-Info
    MAX-ACCESS  not-accessible
    STATUS          mandatory
    DESCRIPTION 
        "Each entry in the table contains information about a
        changerDevice that is present in the library."
    INDEX       {  changerDeviceIndex  }
    ::=  { changerDeviceTable 1 }

ChangerDevice-Table-Info  ::=  SEQUENCE {
    changerDeviceIndex  UINT32,
    changerDevice-DeviceID  DisplayString,
    changerDevice-MediaFlipSupported  INTEGER,
    changerDevice-ElementName  DisplayString,
    changerDevice-Caption  DisplayString,
    changerDevice-Description  DisplayString,
    changerDevice-Availability  INTEGER,
    changerDevice-OperationalStatus  INTEGER,
    changerDevice-Realizes-StorageLocationIndex  UINT32
    }


changerDeviceIndex  OBJECT-TYPE 
    SYNTAX          UINT32
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "The current index value for the changerDevice."
    ::=  {  changerDeviceEntry  1  }


changerDevice-DeviceID  OBJECT-TYPE 
    SYNTAX          DisplayString  ( SIZE ( 0 .. 64  ) ) 
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "An address or other identifying information to
         uniquely name the LogicalDevice."
    ::=  {  changerDeviceEntry  2  }


changerDevice-MediaFlipSupported    OBJECT-TYPE 
    SYNTAX          INTEGER {
                            true (1),
                            false (2) }
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "Boolean set to TRUE if the Changer supports media
         flipping. Media needs to be flipped when multi-sided
         PhysicalMedia are placed into a MediaAccessDevice that does
         NOT support dual sided access."
    ::=  {  changerDeviceEntry  3  }


changerDevice-ElementName   OBJECT-TYPE 
    SYNTAX          DisplayString  ( SIZE ( 0 .. 255  ) ) 
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "A user-friendly name for the object. This property
        allows each instance to define a user-friendly name IN ADDITION
        TO its key properties/identity data, and description
        information.
        Note that ManagedSystemElement's Name property is also
        defined as a user-friendly name. But, it is often
        subclassed to be a Key. It is not reasonable that the same
        property can convey both identity and a user friendly name,
        without inconsistencies. Where Name exists and is not a Key
        (such as for instances of LogicalDevice), the same
        information MAY be present in both the Name and ElementName
        properties."
    ::=  {  changerDeviceEntry  4  }


changerDevice-Caption   OBJECT-TYPE 
    SYNTAX          DisplayString  ( SIZE ( 0 .. 64  ) ) 
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "The Caption property is a short textual description
        (one- line string) of the object."
    ::=  {  changerDeviceEntry  5  }


changerDevice-Description   OBJECT-TYPE 
    SYNTAX          DisplayString  ( SIZE ( 0 .. 255  ) ) 
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "The Description property provides a textual
        description of the object."
    ::=  {  changerDeviceEntry  6  }


changerDevice-Availability  OBJECT-TYPE 
    SYNTAX          INTEGER { other (1),
                            unknown (2),
                            runningFullPower (3),
                            warning (4),
                            inTest (5),
                            notApplicable (6),
                            powerOff (7),
                            offLine (8),
                            offDuty (9),
                            degraded (10),
                            notInstalled (11),
                            installError (12),
                            powerSaveUnknown (13),
                            powerSaveLowPowerMode (14),
                            powerSaveStandby (15),
                            powerCycle (16),
                            powerSaveWarning (17),
                            paused (18),
                            notReady (19),
                            notConfigured (20),
                            quiesced (21) }
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "The primary availability and status of the Device.
         (Additional status information can be specified using the
         Additional Availability array property.) For example, the
         Availability property indicates that the Device is running
         and has full power (value=3), or is in a warning (4), test
         (5), degraded (10) or power save state (values 13-15 and
         17). Regarding the Power Save states, these are defined as
         follows Value 13 (\'Power Save - Unknown\') indicates that
         the Device is known to be in a power save mode, but its
         exact status in this mode is unknown; 14 (\'Power Save -
         Low Power Mode\') indicates that the Device is in a power
         save state but still functioning, and may exhibit degraded
         performance 15 (\'Power Save - Standby\') describes that
         the Device is not functioning but could be brought to full
         power 'quickly'; and value 17 (\'Power Save - Warning\')
         indicates that the Device is in a warning state, though
         also in a power save mode."
    ::=  {  changerDeviceEntry  8  }


changerDevice-OperationalStatus OBJECT-TYPE 
    SYNTAX          INTEGER { unknown (0),
                              other (1),
                              ok (2),
                              degraded (3),
                              stressed (4),
                              predictiveFailure (5),
                              error (6),
                              non-RecoverableError (7),
                              starting (8),
                              stopping (9),
                              stopped  (10),
                              inService (11),
                              noContact (12),
                              lostCommunication (13),
                              aborted (14),
                              dormant (15),
                              supportingEntityInError (16),
                              completed (17),
                              powerMode (18),
                              dMTFReserved (19),
                              vendorReserved (32768) }
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
         "Indicates the current status(es) of the element.
         Various health and operational statuses are defined. Many of
         the enumeration's values are self- explanatory. However, a few
         are not and are described in more detail. \n
         'Stressed' indicates that the element is functioning, but
         needs attention. Examples of 'Stressed' states are
         overload, overheated, etc. \n
         'Predictive Failure' indicates that an element is
         functioning nominally but predicting a failure in the near
         future. \n
         'In Service' describes an element being configured,
         maintained, cleaned, or otherwise administered. \n
         'No Contact' indicates that the monitoring system has
         knowledge of this element, but has never been able to
         establish communications with it. \n
         'Lost Communication' indicates that the ManagedSystem
         Element is known to exist and has been contacted
         successfully in the past, but is currently unreachable. \n
         'Stopped' and 'Aborted' are similar, although the
         former implies a clean and orderly stop, while the latter
         implies an abrupt stop where the element's state and
         configuration may need to be updated. \n
         'Dormant' indicates that the element is inactive or
         quiesced. \n
         'Supporting Entity in Error' describes that this element
         may be 'OK' but that another element, on which it is
         dependent, is in error. An example is a network service or
         endpoint that cannot function due to lower layer networking
         problems. \n
         'Completed' indicates the element has completed its
         operation. This value should be combined with either OK,
         Error, or Degraded so that a client can till if the
         complete operation passed (Completed with OK), and failure
         (Completed with Error). Completed with Degraded would imply
         the operation finished, but did not complete OK or report
         an error. \n
         'Power Mode' indicates the element has additional power
         model information contained in the Associated
         PowerManagementService association. \n
         OperationalStatus replaces the Status property on
         ManagedSystemElement to provide a consistent approach to
         enumerations, to address implementation needs for an array
         property, and to provide a migration path from today's
         environment to the future. This change was not made earlier
         since it required the DEPRECATED qualifier. Due to the
         widespread use of the existing Status property in
         management applications, it is strongly RECOMMENDED that
         providers/instrumentation provide BOTH the Status and
         OperationalStatus properties. Further, the first value of
         OperationalStatus SHOULD contain the primary status for the
         element. When instrumented, Status (since it is
         single-valued) SHOULD also provide the primary status of
         the element."
    ::=  {  changerDeviceEntry  9  }


changerDevice-Realizes-StorageLocationIndex OBJECT-TYPE 
    SYNTAX          UINT32
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "The current index value for the storageMediaLocationIndex
         that this changerDevice is associated with.
         If no association exists an index of 0 may be returned."
    ::=  {  changerDeviceEntry  10  }


    
    
scsiProtocolControllerGroup OBJECT IDENTIFIER
    ::=  {  smlRoot  12  }

numberOfSCSIProtocolControllers OBJECT-TYPE 
    SYNTAX          Integer32
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "This value specifies the number of
        SCSIProtocolControllers that are present."
    ::=  {  scsiProtocolControllerGroup  1  }

scsiProtocolControllerTable OBJECT-TYPE
    SYNTAX      SEQUENCE  OF  ScsiProtocolController-Table-Info
    MAX-ACCESS  not-accessible
    STATUS          mandatory
    DESCRIPTION 
        "The scsiProtocolController class represents
        SCSIProtocolControllers in the library"
    ::=  { scsiProtocolControllerGroup  2 }

scsiProtocolControllerEntry OBJECT-TYPE
    SYNTAX      ScsiProtocolController-Table-Info
    MAX-ACCESS  not-accessible
    STATUS          mandatory
    DESCRIPTION 
        "Each entry in the table contains information about a
        SCSIProtocolController that is present in the library."
    INDEX       {  scsiProtocolControllerIndex  }
    ::=  { scsiProtocolControllerTable 1 }

ScsiProtocolController-Table-Info  ::=  SEQUENCE {
    scsiProtocolControllerIndex  UINT32,
    scsiProtocolController-DeviceID  DisplayString,
    scsiProtocolController-ElementName  DisplayString,
    scsiProtocolController-OperationalStatus  INTEGER,
    scsiProtocolController-Description  DisplayString,
    scsiProtocolController-Availability  INTEGER,
    scsiProtocolController-Realizes-ChangerDeviceIndex  UINT32,
    scsiProtocolController-Realizes-MediaAccessDeviceIndex  UINT32
    }


scsiProtocolControllerIndex OBJECT-TYPE 
    SYNTAX          UINT32
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "The current index value for the scsiProtocolController."
    ::=  {  scsiProtocolControllerEntry  1  }


scsiProtocolController-DeviceID OBJECT-TYPE 
    SYNTAX          DisplayString  ( SIZE ( 0 .. 64  ) ) 
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "An address or other identifying information to
         uniquely name the LogicalDevice."
    ::=  {  scsiProtocolControllerEntry  2  }


scsiProtocolController-ElementName  OBJECT-TYPE 
    SYNTAX          DisplayString  ( SIZE ( 0 .. 255  ) ) 
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "A user-friendly name for the object. This property
        allows each instance to define a user-friendly name IN ADDITION
        TO its key properties/identity data, and description
        information.
        Note that ManagedSystemElement's Name property is also
        defined as a user-friendly name. But, it is often
        subclassed to be a Key. It is not reasonable that the same
        property can convey both identity and a user friendly name,
        without inconsistencies. Where Name exists and is not a Key
        (such as for instances of LogicalDevice), the same
        information MAY be present in both the Name and ElementName
        properties."
    ::=  {  scsiProtocolControllerEntry  3  }


scsiProtocolController-OperationalStatus    OBJECT-TYPE 
    SYNTAX          INTEGER { unknown (0),
                              other (1),
                              ok (2),
                              degraded (3),
                              stressed (4),
                              predictiveFailure (5),
                              error (6),
                              non-RecoverableError (7),
                              starting (8),
                              stopping (9),
                              stopped  (10),
                              inService (11),
                              noContact (12),
                              lostCommunication (13),
                              aborted (14),
                              dormant (15),
                              supportingEntityInError (16),
                              completed (17),
                              powerMode (18),
                              dMTFReserved (19),
                              vendorReserved (32768) }
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
         "Indicates the current status(es) of the element.
         Various health and operational statuses are defined. Many of
         the enumeration's values are self- explanatory. However, a few
         are not and are described in more detail. \n
         'Stressed' indicates that the element is functioning, but
         needs attention. Examples of 'Stressed' states are
         overload, overheated, etc. \n
         'Predictive Failure' indicates that an element is
         functioning nominally but predicting a failure in the near
         future. \n
         'In Service' describes an element being configured,
         maintained, cleaned, or otherwise administered. \n
         'No Contact' indicates that the monitoring system has
         knowledge of this element, but has never been able to
         establish communications with it. \n
         'Lost Communication' indicates that the ManagedSystem
         Element is known to exist and has been contacted
         successfully in the past, but is currently unreachable. \n
         'Stopped' and 'Aborted' are similar, although the
         former implies a clean and orderly stop, while the latter
         implies an abrupt stop where the element's state and
         configuration may need to be updated. \n
         'Dormant' indicates that the element is inactive or
         quiesced. \n
         'Supporting Entity in Error' describes that this element
         may be 'OK' but that another element, on which it is
         dependent, is in error. An example is a network service or
         endpoint that cannot function due to lower layer networking
         problems. \n
         'Completed' indicates the element has completed its
         operation. This value should be combined with either OK,
         Error, or Degraded so that a client can till if the
         complete operation passed (Completed with OK), and failure
         (Completed with Error). Completed with Degraded would imply
         the operation finished, but did not complete OK or report
         an error. \n
         'Power Mode' indicates the element has additional power
         model information contained in the Associated
         PowerManagementService association. \n
         OperationalStatus replaces the Status property on
         ManagedSystemElement to provide a consistent approach to
         enumerations, to address implementation needs for an array
         property, and to provide a migration path from today's
         environment to the future. This change was not made earlier
         since it required the DEPRECATED qualifier. Due to the
         widespread use of the existing Status property in
         management applications, it is strongly RECOMMENDED that
         providers/instrumentation provide BOTH the Status and
         OperationalStatus properties. Further, the first value of
         OperationalStatus SHOULD contain the primary status for the
         element. When instrumented, Status (since it is
         single-valued) SHOULD also provide the primary status of
         the element."
    ::=  {  scsiProtocolControllerEntry  4  }


scsiProtocolController-Description  OBJECT-TYPE 
    SYNTAX          DisplayString  ( SIZE ( 0 .. 255  ) ) 
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "The Description property provides a textual
        description of the object."
    ::=  {  scsiProtocolControllerEntry  5  }


scsiProtocolController-Availability OBJECT-TYPE 
    SYNTAX          INTEGER { other (1),
                            unknown (2),
                            runningFullPower (3),
                            warning (4),
                            inTest (5),
                            notApplicable (6),
                            powerOff (7),
                            offLine (8),
                            offDuty (9),
                            degraded (10),
                            notInstalled (11),
                            installError (12),
                            powerSaveUnknown (13),
                            powerSaveLowPowerMode (14),
                            powerSaveStandby (15),
                            powerCycle (16),
                            powerSaveWarning (17),
                            paused (18),
                            notReady (19),
                            notConfigured (20),
                            quiesced (21) }
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
         "The primary availability and status of the Device.
         (Additional status information can be specified using the
         Additional Availability array property.) For example, the
         Availability property indicates that the Device is running
         and has full power (value=3), or is in a warning (4), test
         (5), degraded (10) or power save state (values 13-15 and
         17). Regarding the Power Save states, these are defined as
         follows: Value 13 (\'Power Save - Unknown\') indicates that
         the Device is known to be in a power save mode, but its
         exact status in this mode is unknown; 14 (\'Power Save -
         Low Power Mode\') indicates that the Device is in a power
         save state but still functioning, and may exhibit degraded
         performance; 15 (\'Power Save - Standby\') describes that
         the Device is not functioning but could be brought to full
         power 'quickly'; and value 17 (\'Power Save - Warning\')
         indicates that the Device is in a warning state, though
         also in a power save mode."
    ::=  {  scsiProtocolControllerEntry  6  }


scsiProtocolController-Realizes-ChangerDeviceIndex  OBJECT-TYPE 
    SYNTAX          UINT32
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "The current index value for the ChangerDeviceIndex
        that this scsiProtocolController is associated with.
        If no association exists an index of 0 may be returned."
    ::=  {  scsiProtocolControllerEntry  7  }


scsiProtocolController-Realizes-MediaAccessDeviceIndex  OBJECT-TYPE 
    SYNTAX          UINT32
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "The current index value for the
        MediaAccessDeviceIndex that this scsiProtocolController is
        associated with.
        If no association exists an index of 0 may be returned."
    ::=  {  scsiProtocolControllerEntry  8  }


    
    
storageMediaLocationGroup   OBJECT IDENTIFIER
    ::=  {  smlRoot  13  }

numberOfStorageMediaLocations   OBJECT-TYPE 
    SYNTAX          Integer32
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "This value specifies the number of StorageMediaLocations 
        that are present."
    ::=  {  storageMediaLocationGroup  1  }

numberOfPhysicalMedias  OBJECT-TYPE 
    SYNTAX          Integer32
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "This value specifies the number of PhysicalMedia 
        that are present."
    ::=  {  storageMediaLocationGroup  2  }

storageMediaLocationTable   OBJECT-TYPE
    SYNTAX      SEQUENCE  OF  StorageMediaLocation-Table-Info
    MAX-ACCESS  not-accessible
    STATUS          mandatory
    DESCRIPTION 
        "StorageMediaLocation represents a possible location for an
        instance of PhysicalMedia. PhysicalMedia represents any type of
        documentation or storage medium, such as tapes, CDROMs, etc.
        This class is typically used to locate and manage Removable
        Media (versus Media sealed with the MediaAccessDevice,
        as a single Package, as is the case with hard disks). However,
        'sealed' Media can also be modeled using this class, where the
        Media would then be associated with the PhysicalPackage 
        using the PackagedComponent relationship. "
    ::=  { storageMediaLocationGroup  3 }

storageMediaLocationEntry   OBJECT-TYPE
    SYNTAX      StorageMediaLocation-Table-Info
    MAX-ACCESS  not-accessible
    STATUS          mandatory
    DESCRIPTION 
        "Each entry in the table contains information about a
        StorageMediaLocation that is present in the library."
    INDEX       {  storageMediaLocationIndex  }
    ::=  { storageMediaLocationTable 1 }

StorageMediaLocation-Table-Info  ::=  SEQUENCE {
    storageMediaLocationIndex  UINT32,
    storageMediaLocation-Tag  DisplayString,
    storageMediaLocation-LocationType  INTEGER,
    storageMediaLocation-LocationCoordinates  DisplayString,
    storageMediaLocation-MediaTypesSupported  INTEGER,
    storageMediaLocation-MediaCapacity  UINT32,
    storageMediaLocation-Association-ChangerDeviceIndex  UINT32,
    storageMediaLocation-PhysicalMediaPresent  INTEGER,
    storageMediaLocation-PhysicalMedia-Removable  INTEGER,
    storageMediaLocation-PhysicalMedia-Replaceable  INTEGER,
    storageMediaLocation-PhysicalMedia-HotSwappable  INTEGER,
    storageMediaLocation-PhysicalMedia-Capacity  UINT64,
    storageMediaLocation-PhysicalMedia-MediaType  INTEGER,
    storageMediaLocation-PhysicalMedia-MediaDescription  DisplayString,
    storageMediaLocation-PhysicalMedia-CleanerMedia  INTEGER,
    storageMediaLocation-PhysicalMedia-DualSided  INTEGER,
    storageMediaLocation-PhysicalMedia-PhysicalLabel  DisplayString,
    storageMediaLocation-PhysicalMedia-Tag  DisplayString
    }


storageMediaLocationIndex   OBJECT-TYPE 
    SYNTAX          UINT32
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "The current index value for the StorageMediaLocation."
    ::=  {  storageMediaLocationEntry  1  }


storageMediaLocation-Tag    OBJECT-TYPE 
    SYNTAX          DisplayString  ( SIZE ( 0 .. 255  ) ) 
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "An arbitrary string that uniquely identifies the
         Physical Element and serves as the Element's key. The Tag
         property can contain information such as asset tag or serial
         number data. The key for PhysicalElement is placed very high in
         the object hierarchy in order to independently identify the
         hardware/entity, regardless of physical placement in or on
         Cabinets, Adapters, etc. For example, a hotswappable or
         removeable component may be taken from its containing
         (scoping) Package and be temporarily unused. The object
         still continues to exist - and may even be inserted into a
         different scoping container. Therefore, the key for
         Physical Element is an arbitrary string and is defined
         independently of any placement or location-oriented
         hierarchy."
    ::=  {  storageMediaLocationEntry  2  }


storageMediaLocation-LocationType   OBJECT-TYPE 
    SYNTAX          INTEGER { unknown (0),
                            other (1),
                            slot (2),
                            magazine (3),
                            mediaAccessDevice (4),
                            interLibraryPort (5),
                            limitedAccessPort (6),
                            door (7),
                            shelf (8),
                            vault (9) }
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "The type of Location. For example, whether this is an
        individual Media \'Slot\' (value=2), a MediaAccessDevice
        (value=4) or a \'Magazine\' (value=3) is indicated in this
        property."
    ::=  {  storageMediaLocationEntry  3  }


storageMediaLocation-LocationCoordinates    OBJECT-TYPE 
    SYNTAX          DisplayString  ( SIZE ( 0 .. 255  ) ) 
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "LocationCoordinates represent the physical location
        of the the FrameSlot instance. The property is defined as a
        free-form string to allow the location information to be
        described in vendor-unique terminology."
    ::=  {  storageMediaLocationEntry  4  }


storageMediaLocation-MediaTypesSupported    OBJECT-TYPE 
    SYNTAX          INTEGER {
                            unknown (0),
                            other (1),
                            tape (2),
                            qic (3),
                            ait (4),
                            dtf (5),
                            dat (6),
                            eightmmTape (7),
                            nineteenmmTape (8),
                            dlt (9),
                            halfInchMO (10),
                            catridgeDisk (11),
                            jazDisk (12),
                            zipDisk (13),
                            syQuestDisk (14),
                            winchesterDisk (15),
                            cdRom (16),
                            cdRomXA (17),
                            cdI (18),
                            cdRecordable (19),
                            wORM (20),
                            magneto-Optical (21),
                            dvd (22),
                            dvdRWPlus (23),
                            dvdRAM (24),
                            dvdROM (25),
                            dvdVideo (26),
                            divx (27),
                            floppyDiskette (28),
                            hardDisk (29),
                            memoryCard (30),
                            hardCopy (31),
                            clikDisk (32),
                            cdRW (33),
                            cdDA (34),
                            cdPlus (35),
                            dvdRecordable (36),
                            dvdRW (37),
                            dvdAudio (38),
                            dvd5 (39),
                            dvd9 (40),
                            dvd10 (41),
                            dvd18 (42),
                            moRewriteable (43),
                            moWriteOnce (44),
                            moLIMDOW (45),
                            phaseChangeWO (46),
                            phaseChangeRewriteable (47),
                            phaseChangeDualRewriteable (48),
                            ablativeWriteOnce (49),
                            nearField (50),
                            miniQic (51),
                            travan (52),
                            eightmmMetal (53),
                            eightmmAdvanced (54),
                            nctp (55),
                            ltoUltrium (56),
                            ltoAccelis (57),
                            tape9Track (58),
                            tape18Track (59),
                            tape36Track (60),
                            magstar3590 (61),
                            magstarMP (62),
                            d2Tape (63),
                            dstSmall (64),
                            dstMedium (65),
                            dstLarge (66) }
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "Certain StorageMediaLocations may only be able to
        accept a limited set of PhysicalMedia MediaTypes. This property
        defines an array containing the types of Media that are
        acceptable for placement in the Location. Additional
        information and description of the contained MediaTypes can
        be provided using the TypesDescription array. Also, size
        data (for example, DVD disc diameter) can be specified
        using the MediaSizesSupported array. \n
        \n
        Values defined here correspond to those in the CIM_Physical
        Media.MediaType property. This allows quick comparisons
        using value equivalence calculations. It is understood that
        there is no external physical difference between (for
        example) DVD- Video and DVD-RAM. But, equivalent values in
        both the Physical Media and StorageMediaLocation
        enumerations allows for one for one comparisons with no
        additional processing logic (i.e., the following is not
        required ... if \'DVD-Video\' then value=\'DVD\')."
    ::=  {  storageMediaLocationEntry  5  }


storageMediaLocation-MediaCapacity  OBJECT-TYPE 
    SYNTAX          UINT32
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "A StorageMediaLocation may hold more than one
        PhysicalMedia - for example, a Magazine. This property
        indicates the Physical Media capacity of the Location."
    ::=  {  storageMediaLocationEntry  6  }


storageMediaLocation-Association-ChangerDeviceIndex OBJECT-TYPE 
    SYNTAX          UINT32
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "Experimental: The current index value for the
        ChangerDeviceIndex that this storageMediaLocation is
        associated with.
        If no association exists an index of 0 may be returned.  
        This association allows a representation of the experimental
        "
    ::=  {  storageMediaLocationEntry  7  }


storageMediaLocation-PhysicalMediaPresent   OBJECT-TYPE 
    SYNTAX          INTEGER {
                            true (1),
                            false (2) }
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "'true' when Physical Media is present in this 
        storage location.
        When this is 'false' -physicalMedia- entries are undefined"
    ::=  {  storageMediaLocationEntry  10  }


storageMediaLocation-PhysicalMedia-Removable    OBJECT-TYPE 
    SYNTAX          INTEGER {
                            unknown (0),
                            true (1),
                            false (2) }
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "A PhysicalComponent is Removable if it is designed
        to be taken in and out of the physical container in which it is
        normally found, without impairing the function of the overall
        packaging. A Component can still be Removable if power must be 
        'off' in order to perform the removal. If power can be
        'on' and the Component removed, then the Element is both Removable
        and HotSwappable. For example, an upgradeable Processor chip is
        Removable."
    ::=  {  storageMediaLocationEntry  11  }


storageMediaLocation-PhysicalMedia-Replaceable  OBJECT-TYPE 
    SYNTAX          INTEGER {
                            unknown (0),
                            true (1),
                            false (2) }
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "A PhysicalComponent is Replaceable if it is possible
        to replace (FRU or upgrade) the Element with a physically
        different one. For example, some ComputerSystems allow the main
        Processor chip to be upgraded to one of a higher clock rating.
        In this case, the Processor is said to be Replaceable.
        All Removable Components are inherently Replaceable."
    ::=  {  storageMediaLocationEntry  12  }


storageMediaLocation-PhysicalMedia-HotSwappable OBJECT-TYPE 
    SYNTAX          INTEGER {
                            unknown (0),
                            true (1),
                            false (2) }
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "A PhysicalComponent is HotSwappable if it is
        possible to replace the Element with a physically different but
        equivalent one while the containing Package
        has power applied to it (ie, is 'on'). For example, a fan
        Component may be designed to be HotSwappable. All HotSwappable
        Components are inherently Removable and Replaceable."
    ::=  {  storageMediaLocationEntry  13  }


storageMediaLocation-PhysicalMedia-Capacity OBJECT-TYPE 
    SYNTAX          UINT64
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "The number of bytes that can be read from or written
        to a Media. This property is not applicable to 'Hard Copy'
        (documentation) or cleaner Media.
        Data compression should not be assumed, as it would increase 
        the value in this property. For tapes, it should be assumed 
        that no filemarks or blank space areas are recorded on the
        Media."
    ::=  {  storageMediaLocationEntry  14  }


storageMediaLocation-PhysicalMedia-MediaType    OBJECT-TYPE 
    SYNTAX          INTEGER {
                            unknown (0),
                            other (1),
                            tape (2),
                            qic (3),
                            ait (4),
                            dtf (5),
                            dat (6),
                            eightmmTape (7),
                            nineteenmmTape (8),
                            dlt (9),
                            halfInchMO (10),
                            catridgeDisk (11),
                            jazDisk (12),
                            zipDisk (13),
                            syQuestDisk (14),
                            winchesterDisk (15),
                            cdRom (16),
                            cdRomXA (17),
                            cdI (18),
                            cdRecordable (19),
                            wORM (20),
                            magneto-Optical (21),
                            dvd (22),
                            dvdRWPlus (23),
                            dvdRAM (24),
                            dvdROM (25),
                            dvdVideo (26),
                            divx (27),
                            floppyDiskette (28),
                            hardDisk (29),
                            memoryCard (30),
                            hardCopy (31),
                            clikDisk (32),
                            cdRW (33),
                            cdDA (34),
                            cdPlus (35),
                            dvdRecordable (36),
                            dvdRW (37),
                            dvdAudio (38),
                            dvd5 (39),
                            dvd9 (40),
                            dvd10 (41),
                            dvd18 (42),
                            moRewriteable (43),
                            moWriteOnce (44),
                            moLIMDOW (45),
                            phaseChangeWO (46),
                            phaseChangeRewriteable (47),
                            phaseChangeDualRewriteable (48),
                            ablativeWriteOnce (49),
                            nearField (50),
                            miniQic (51),
                            travan (52),
                            eightmmMetal (53),
                            eightmmAdvanced (54),
                            nctp (55),
                            ltoUltrium (56),
                            ltoAccelis (57),
                            tape9Track (58),
                            tape18Track (59),
                            tape36Track (60),
                            magstar3590 (61),
                            magstarMP (62),
                            d2Tape (63),
                            dstSmall (64),
                            dstMedium (65),
                            dstLarge (66) }
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "Specifies the type of the PhysicalMedia, as an
        enumerated integer. The MediaDescription property is used to
        provide more explicit definition of the Media type, whether it
        is pre-formatted, compatability features, etc."
    ::=  {  storageMediaLocationEntry  15  }


storageMediaLocation-PhysicalMedia-MediaDescription OBJECT-TYPE 
    SYNTAX          DisplayString  ( SIZE ( 0 .. 255  ) ) 
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "Additional detail related to the MediaType
        enumeration. For example, if value 3 ('QIC Cartridge') is
        specified, this property could indicate whether
        the tape is wide or 1/4 inch, whether it is pre-formatted,
        whether it is Travan compatible, etc."
    ::=  {  storageMediaLocationEntry  16  }


storageMediaLocation-PhysicalMedia-CleanerMedia OBJECT-TYPE 
    SYNTAX          INTEGER {
                            unknown (0),
                            true (1),
                            false (2) }
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "Boolean indicating that the PhysicalMedia is used 
        for cleaning purposes and not data storage."
    ::=  {  storageMediaLocationEntry  17  }


storageMediaLocation-PhysicalMedia-DualSided    OBJECT-TYPE 
    SYNTAX          INTEGER {
                            unknown (0),
                            true (1),
                            false (2) }
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "Boolean indicating that the Media has two recording
        sides (TRUE) or only a single side (FALSE). Examples of dual
        sided Media include DVD-ROM and some optical disks. Examples of
        single sided Media are tapes and CD-ROM."
    ::=  {  storageMediaLocationEntry  18  }


storageMediaLocation-PhysicalMedia-PhysicalLabel    OBJECT-TYPE 
    SYNTAX          DisplayString  ( SIZE ( 0 .. 255  ) ) 
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "One or more strings on 'labels' on the PhysicalMedia. 
        The format of the labels and their state (readable, unreadable,
        upside-down) are indicated in the LabelFormats and LabelStates
        array properties."
    ::=  {  storageMediaLocationEntry  19  }


storageMediaLocation-PhysicalMedia-Tag  OBJECT-TYPE 
    SYNTAX          DisplayString  ( SIZE ( 0 .. 255  ) ) 
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
         "An arbitrary string that uniquely identifies the
         Physical Element and serves as the Element's key. The Tag
         property can contain information such as asset tag or serial
         data. The key for PhysicalElement is placed very high in
         number the object hierarchy in order to independently identify
         the hardware/entity, regardless of physical placement in or on
         Cabinets, Adapters, etc. For example, a hotswappable or
         removeable component may be taken from its containing
         (scoping) Package and be temporarily unused. The object
         still continues to exist - and may even be inserted into a
         different scoping container. Therefore, the key for
         Physical Element is an arbitrary string and is defined
         independently of any placement or location-oriented
         hierarchy."
    ::=  {  storageMediaLocationEntry  20  }


    
    
limitedAccessPortGroup  OBJECT IDENTIFIER
    ::=  {  smlRoot  14  }

numberOflimitedAccessPorts  OBJECT-TYPE 
    SYNTAX          Integer32
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "This value specifies the number of limitedAccessPorts that are
        present."
    ::=  {  limitedAccessPortGroup  1  }

limitedAccessPortTable  OBJECT-TYPE
    SYNTAX      SEQUENCE  OF  LimitedAccessPort-Table-Info
    MAX-ACCESS  not-accessible
    STATUS          mandatory
    DESCRIPTION 
        "The limitedAccessPort class represents limitedAccessPorts in the
        library"
    ::=  { limitedAccessPortGroup  2 }

limitedAccessPortEntry  OBJECT-TYPE
    SYNTAX      LimitedAccessPort-Table-Info
    MAX-ACCESS  not-accessible
    STATUS          mandatory
    DESCRIPTION 
        "Each entry in the table contains information about a
        limitedAccessPort that is present in the library."
    INDEX       {  limitedAccessPortIndex  }
    ::=  { limitedAccessPortTable 1 }

LimitedAccessPort-Table-Info  ::=  SEQUENCE {
    limitedAccessPortIndex  UINT32,
    limitedAccessPort-DeviceID  DisplayString,
    limitedAccessPort-Extended  INTEGER,
    limitedAccessPort-ElementName  DisplayString,
    limitedAccessPort-Caption  DisplayString,
    limitedAccessPort-Description  DisplayString,
    limitedAccessPort-Realizes-StorageLocationIndex  UINT32
    }


limitedAccessPortIndex  OBJECT-TYPE 
    SYNTAX          UINT32
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "The current index value for the limitedAccessPort."
    ::=  {  limitedAccessPortEntry  1  }


limitedAccessPort-DeviceID  OBJECT-TYPE 
    SYNTAX          DisplayString  ( SIZE ( 0 .. 64  ) ) 
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "An address or other identifying information to
         uniquely name the LogicalDevice."
    ::=  {  limitedAccessPortEntry  2  }


limitedAccessPort-Extended  OBJECT-TYPE 
    SYNTAX          INTEGER {
                            true (1),
                            false (2) }
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "When a Port is 'Extended' or 'open' (value=TRUE), its
        Storage MediaLocations are accessible to a human operator.
        If not extended (value=FALSE), the Locations are accessible
        to a PickerElement."
    ::=  {  limitedAccessPortEntry  3  }


limitedAccessPort-ElementName   OBJECT-TYPE 
    SYNTAX          DisplayString  ( SIZE ( 0 .. 255  ) ) 
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "A user-friendly name for the object. This property
        allows each instance to define a user-friendly name IN ADDITION
        TO its key properties/identity data, and description
        information.
        Note that ManagedSystemElement's Name property is also
        defined as a user-friendly name. But, it is often
        subclassed to be a Key. It is not reasonable that the same
        property can convey both identity and a user friendly name,
        without inconsistencies. Where Name exists and is not a Key
        (such as for instances of LogicalDevice), the same
        information MAY be present in both the Name and ElementName
        properties."
    ::=  {  limitedAccessPortEntry  4  }


limitedAccessPort-Caption   OBJECT-TYPE 
    SYNTAX          DisplayString  ( SIZE ( 0 .. 64  ) ) 
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "The Caption property is a short textual description
        (one- line string) of the object."
    ::=  {  limitedAccessPortEntry  5  }


limitedAccessPort-Description   OBJECT-TYPE 
    SYNTAX          DisplayString  ( SIZE ( 0 .. 255  ) ) 
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "The Description property provides a textual
        description of the object."
    ::=  {  limitedAccessPortEntry  6  }


limitedAccessPort-Realizes-StorageLocationIndex OBJECT-TYPE 
    SYNTAX          UINT32
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "The current index value for the
        storageMediaLocationIndex that this limitedAccessPort is 
        associated with.
        If no association exists an index of 0 may be returned."
    ::=  {  limitedAccessPortEntry  7  }


    
    
fCPortGroup OBJECT IDENTIFIER
    ::=  {  smlRoot  15  }

numberOffCPorts OBJECT-TYPE 
    SYNTAX          Integer32
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "This value specifies the number of fcPorts that are
        present."
    ::=  {  fCPortGroup  1  }

fCPortTable OBJECT-TYPE
    SYNTAX      SEQUENCE  OF  FCPortPort-Table-Info
    MAX-ACCESS  not-accessible
    STATUS          mandatory
    DESCRIPTION 
        "The fcPort class represents Fibre Channel Ports in the library"
    ::=  { fCPortGroup  2 }

fCPortEntry OBJECT-TYPE
    SYNTAX      FCPortPort-Table-Info
    MAX-ACCESS  not-accessible
    STATUS          mandatory
    DESCRIPTION 
        "Each entry in the table contains information about an
        fcPort that is present in the library."
    INDEX       {  fCPortIndex  }
    ::=  { fCPortTable 1 }

FCPortPort-Table-Info  ::=  SEQUENCE {
    fCPortIndex  UINT32,
    fCPort-DeviceID  DisplayString,
    fCPort-ElementName  DisplayString,
    fCPort-Caption  DisplayString,
    fCPort-Description  DisplayString,
    fCPortController-OperationalStatus  INTEGER,
    fCPort-PermanentAddress  DisplayString,
    fCPort-Realizes-scsiProtocolControllerIndex  UINT32
    }


fCPortIndex OBJECT-TYPE 
    SYNTAX          UINT32
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "The current index value for the fCPort."
    ::=  {  fCPortEntry  1  }


fCPort-DeviceID OBJECT-TYPE 
    SYNTAX          DisplayString  ( SIZE ( 0 .. 64  ) ) 
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "An address or other identifying information to
        uniquely name the LogicalDevice."
    ::=  {  fCPortEntry  2  }


fCPort-ElementName  OBJECT-TYPE 
    SYNTAX          DisplayString  ( SIZE ( 0 .. 255  ) ) 
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "A user-friendly name for the object. This property
        allows each instance to define a user-friendly name IN ADDITION
        TO its key properties/identity data, and description
        information.
        Note that ManagedSystemElement's Name property is also
        defined as a user-friendly name. But, it is often
        subclassed to be a Key. It is not reasonable that the same
        property can convey both identity and a user friendly name,
        without inconsistencies. Where Name exists and is not a Key
        (such as for instances of LogicalDevice), the same
        information MAY be present in both the Name and ElementName
        properties."
    ::=  {  fCPortEntry  3  }


fCPort-Caption  OBJECT-TYPE 
    SYNTAX          DisplayString  ( SIZE ( 0 .. 64  ) ) 
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "The Caption property is a short textual description
        (one- line string) of the object."
    ::=  {  fCPortEntry  4  }


fCPort-Description  OBJECT-TYPE 
    SYNTAX          DisplayString  ( SIZE ( 0 .. 255  ) ) 
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "The Description property provides a textual
        description of the object."
    ::=  {  fCPortEntry  5  }


fCPortController-OperationalStatus  OBJECT-TYPE 
    SYNTAX          INTEGER { unknown (0),
                              other (1),
                              ok (2),
                              degraded (3),
                              stressed (4),
                              predictiveFailure (5),
                              error (6),
                              non-RecoverableError (7),
                              starting (8),
                              stopping (9),
                              stopped  (10),
                              inService (11),
                              noContact (12),
                              lostCommunication (13),
                              aborted (14),
                              dormant (15),
                              supportingEntityInError (16),
                              completed (17),
                              powerMode (18),
                              dMTFReserved (19),
                              vendorReserved (32768) }
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
         "Indicates the current status(es) of the element.
         Various health and operational statuses are defined. Many of
         the enumeration's values are self- explanatory. However, a few
         are not and are described in more detail. \n
         'Stressed' indicates that the element is functioning, but
         needs attention. Examples of 'Stressed' states are
         overload, overheated, etc. \n
         'Predictive Failure' indicates that an element is
         functioning nominally but predicting a failure in the near
         future. \n
         'In Service' describes an element being configured,
         maintained, cleaned, or otherwise administered. \n
         'No Contact' indicates that the monitoring system has
         knowledge of this element, but has never been able to
         establish communications with it. \n
         'Lost Communication' indicates that the ManagedSystem
         Element is known to exist and has been contacted
         successfully in the past, but is currently unreachable. \n
         'Stopped' and 'Aborted' are similar, although the
         former implies a clean and orderly stop, while the latter
         implies an abrupt stop where the element's state and
         configuration may need to be updated. \n
         'Dormant' indicates that the element is inactive or
         quiesced. \n
         'Supporting Entity in Error' describes that this element
         may be 'OK' but that another element, on which it is
         dependent, is in error. An example is a network service or
         endpoint that cannot function due to lower layer networking
         problems. \n
         'Completed' indicates the element has completed its
         operation. This value should be combined with either OK,
         Error, or Degraded so that a client can till if the
         complete operation passed (Completed with OK), and failure
         (Completed with Error). Completed with Degraded would imply
         the operation finished, but did not complete OK or report
         an error. \n
         'Power Mode' indicates the element has additional power
         model information contained in the Associated
         PowerManagementService association. \n
         OperationalStatus replaces the Status property on
         ManagedSystemElement to provide a consistent approach to
         enumerations, to address implementation needs for an array
         property, and to provide a migration path from today's
         environment to the future. This change was not made earlier
         since it required the DEPRECATED qualifier. Due to the
         widespread use of the existing Status property in
         management applications, it is strongly RECOMMENDED that
         providers/instrumentation provide BOTH the Status and
         OperationalStatus properties. Further, the first value of
         OperationalStatus SHOULD contain the primary status for the
         element. When instrumented, Status (since it is
         single-valued) SHOULD also provide the primary status of
         the element.
         
         SMI-S 1.1 Section 8.1.2.2.3 additional description for FC Ports
         OK        -  Port is online
         Error     -  Port has a failure
         Stopped   -  Port is disabled
         InService -  Port is in Self Test
         Unknown"
    ::=  {  fCPortEntry  6  }


fCPort-PermanentAddress OBJECT-TYPE 
    SYNTAX          DisplayString  ( SIZE ( 0 .. 64  ) ) 
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "PermanentAddress defines the network address
        hardcoded into  a port. This 'hardcoded' address may be changed
        via firmware upgrade or software configuration. If so, this 
        field should be updated when the change is made. 
        PermanentAddress should be left blank if no 'hardcoded' 
        address exists for the NetworkAdapter.
        
        In SMI-S 1.1 table 1304 FCPorts are defined to use the port WWN
        as described in table 7.2.4.5.2 
        
        World Wide Name (i.e. FC Name_Identifier) FCPort 
        Permanent Address property; no corresponding 
        format property 16 un-separated upper case hex 
        digits (e.g. '21000020372D3C73')"
    ::=  {  fCPortEntry  7  }


fCPort-Realizes-scsiProtocolControllerIndex OBJECT-TYPE 
    SYNTAX          UINT32
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "The current index value for the
        scsiProtocolControllerIndex that this fCPort is associated with.
        If no association exists an index of 0 may be returned."
    ::=  {  fCPortEntry  8  }


    
-- Traps are based on the T10 Tape Alert Specification v3 (w/SSC-3 Enhancements)
-- and SMI-S 1.1 section 8.1.8.25 LibraryAlert Events/Indications

trapGroup   OBJECT IDENTIFIER
    ::=  {  smlRoot  16  }

trapsEnabled    OBJECT-TYPE 
    SYNTAX          INTEGER  { enabled ( 1 ) , disabled ( 2 ) } 
    MAX-ACCESS      read-write
    STATUS          mandatory
    DESCRIPTION     
        "Set to enable sending traps"
    ::=  {  trapGroup  1  }

trapDriveAlertSummary   OBJECT-TYPE 
    SYNTAX          INTEGER  { 
                        readWarning ( 1 ) , 
                        writeWarning ( 2 ) ,
                        hardError ( 3 ) , media ( 4 ) , readFailure ( 5 ) , 
                        writeFailure ( 6 ) , 
                        mediaLife ( 7 ) , 
                        notDataGrade ( 8 ) ,
                        writeProtect ( 9 ) , 
                        noRemoval ( 10 ) , 
                        cleaningMedia ( 11 ) ,
                        unsupportedFormat ( 12 ) , 
                        recoverableSnappedTape ( 13 ) ,
                        unrecoverableSnappedTape ( 14 ) , 
                        memoryChipInCartridgeFailure ( 15 ) , 
                        forcedEject ( 16 ) ,
                        readOnlyFormat ( 17 ) , 
                        directoryCorruptedOnLoad ( 18 ) ,
                        nearingMediaLife ( 19 ) , 
                        cleanNow ( 20 ) , 
                        cleanPeriodic ( 21 ) ,
                        expiredCleaningMedia ( 22 ) , 
                        invalidCleaningMedia ( 23 ) ,
                        retentionRequested ( 24 ) , 
                        dualPortInterfaceError ( 25 ) ,
                        coolingFanError ( 26 ) , 
                        powerSupplyFailure ( 27 ) ,
                        powerConsumption ( 28 ) , 
                        driveMaintenance ( 29 ) , 
                        hardwareA ( 30 ) , 
                        hardwareB ( 31 ) , 
                        interface ( 32 ) , 
                        ejectMedia ( 33 ) , 
                        downloadFailure ( 34 ) , 
                        driveHumidity ( 35 ) ,
                        driveTemperature ( 36 ) , 
                        driveVoltage ( 37 ) , 
                        predictiveFailure ( 38 ) , 
                        diagnosticsRequired ( 39 ) ,
                        lostStatistics ( 50 ) , 
                        mediaDirectoryInvalidAtUnload ( 51 ) ,
                        mediaSystemAreaWriteFailure ( 52 ) , 
                        mediaSystemAreaReadFailure ( 53 ) , 
                        noStartOfData ( 54 ) ,
                        loadingFailure ( 55 ) , 
                        unrecoverableUnloadFailure ( 56 ) ,
                        automationInterfaceFailure ( 57 ) , 
                        firmwareFailure ( 58 ) ,
                        wormMediumIntegrityCheckFailed ( 59 ) , 
                        wormMediumOverwriteAttempted ( 60 ) } 
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "Short summary of a media (tape, optical, etc.) driveAlert trap.
        Corresponds to the Number/Flag property of
        drive/autoloader alerts in the T10 TapeAlert Specification v3
        (w/SSC-3 Enhancements)  as modified by the EventSummary property in
        the SMI-S 1.1 section 8.1.8.25 LibraryAlert Events/Indications for
        Library Devices. In particular, all occurances of 'tape' have been
        replaced with 'media'. (This summary property has a 1 to 1
        relationship to the CIM_AlertIndication.OtherAlertType property, 
        and might be stored in the CIM_AlertIndication.Message property.)"
    ::=  {  trapGroup  2  }

trap-Association-MediaAccessDeviceIndex OBJECT-TYPE 
    SYNTAX          UINT32
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "The current index value for the MediaAccessDeviceIndex
        that this changerAlert trap is  associated with.
        If no association exists an index of 0 may be returned. "
    ::=  {  trapGroup  3  }


trapChangerAlertSummary OBJECT-TYPE 
    SYNTAX          INTEGER  { 
                        libraryHardwareA ( 1 ) , 
                        libraryHardwareB ( 2 ) , 
                        libraryHardwareC ( 3 ) , 
                        libraryHardwareD ( 4 ) , 
                        libraryDiagnosticsRequired ( 5 ) ,
                        libraryInterface ( 6 ) , 
                        failurePrediction ( 7 ) ,
                        libraryMaintenance ( 8 ) , 
                        libraryHumidityLimits ( 9 ) ,
                        libraryTemperatureLimits ( 10 ) , 
                        libraryVoltageLimits ( 11 ) ,
                        libraryStrayMedia ( 12 ) , 
                        libraryPickRetry ( 13 ) ,
                        libraryPlaceRetry ( 14 ) , 
                        libraryLoadRetry ( 15 ) , 
                        libraryDoor ( 16 ) , 
                        libraryMailslot ( 17 ) , 
                        libraryMagazine ( 18 ) , 
                        librarySecurity ( 19 ) ,
                        librarySecurityMode ( 20 ) , 
                        libraryOffline ( 21 ) ,
                        libraryDriveOffline ( 22 ) , 
                        libraryScanRetry ( 23 ) ,
                        libraryInventory ( 24 ) , 
                        libraryIllegalOperation ( 25 ) ,
                        dualPortInterfaceError ( 26 ) , 
                        coolingFanFailure ( 27 ) ,
                        powerSupply ( 28 ) , 
                        powerConsumption ( 29 ) ,
                        passThroughMechanismFailure ( 30 ) , 
                        cartridgeInPassThroughMechanism ( 31 ) , 
                        unreadableBarCodeLabels ( 32 ) } 
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "Short summary of a changer (eg. robot) changerAlert trap.
        Corresponds to the Number/Flag property of stand-alone 
        changer alerts in the T10 TapeAlert Specification v3 (w/SSC-3
        Enhancements)  as modified by the EventSummary property in the 
        SMI-S 1.1 section 8.1.8.25 LibraryAlert Events/Indications for
        Library Devices. In particular, all occurances of 'tape' have been
        replaced with 'media'. (This summary property has a 1 to 1
        relationship to the CIM_AlertIndication.OtherAlertType property, 
        and might be stored in the CIM_AlertIndication.Message property.)"
    ::=  {  trapGroup  4  }

trap-Association-ChangerDeviceIndex OBJECT-TYPE 
    SYNTAX          UINT32
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "The current index value for the ChangerDeviceIndex
        that this changerAlert trap is associated with.
        If no association exists an index of 0 may be returned. "
    ::=  {  trapGroup  5  }


trapPerceivedSeverity   OBJECT-TYPE 
    SYNTAX          INTEGER  { 
                        unknown ( 0 ) , 
                        other ( 1 ) , 
                        information ( 2 ) , 
                        degradedWarning ( 3 ) , 
                        minor ( 4 ) , 
                        major ( 5 ) , 
                        critical ( 6 ) , 
                        fatalNonRecoverable ( 7 ) } 
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "An enumerated value that describes the severity of
        the Alert Indication from the notifier's point of view: 1 - Other,
        by CIM convention, is used to indicate that the Severity's value 
        can be found in the OtherSeverity property. 3 - Degraded/Warning
        should be used when its appropriate to let the user decide if 
        action is needed. 4 - Minor should be used to indicate action is
        needed, but the situation is not serious at this time. 5 - Major
        should be used to indicate action is needed NOW. 6 - Critical 
        should be used to indicate action is needed NOW and the scope is
        broad (perhaps an imminent outage to a critical resource will
        result). 7 - Fatal/NonRecoverable should be used to indicate an
        error occurred, but it's too late to take remedial action. 
        2 and 0 - Information and Unknown (respectively) follow common
        usage. Literally, the AlertIndication is purely informational 
        or its severity is simply unknown. This would have values 
        described in SMI-S 1.1 section 8.1.8.25 LibraryAlert
        Events/Indications for Library Devices, the PerceivedSeverity
        column. These values are a superset of the Info/Warning/Critical
        values in the T10 TapeAlert Specification v3 (w/SSC-3 Enhancements)
        , and an SNMP agent may choose to only specify those if that's all
        that's available. (This corresponds to the
        CIM_AlertIndication.PerceivedSeverity property.)"
    ::=  {  trapGroup  6  }

trapDestinationTable    OBJECT-TYPE
    SYNTAX      SEQUENCE  OF  TrapDestinationEntry
    MAX-ACCESS  not-accessible
    STATUS          mandatory
    DESCRIPTION 
        "Table of client/manager desitinations which will receive
        traps"
    ::=  { trapGroup  7 }

trapDestinationEntry    OBJECT-TYPE
    SYNTAX      TrapDestinationEntry
    MAX-ACCESS  not-accessible
    STATUS          mandatory
    DESCRIPTION 
        "Entry containing information needed to send traps to an
        SNMP client/manager"
    INDEX       {  numberOfTrapDestinations  }
    ::=  { trapDestinationTable 1 }

TrapDestinationEntry  ::=  SEQUENCE {
    numberOfTrapDestinations  Integer32,
    trapDestinationHostType  INTEGER,
    trapDestinationHostAddr  DisplayString,
    trapDestinationPort  Integer32
    }


numberOfTrapDestinations    OBJECT-TYPE 
    SYNTAX          Integer32
    MAX-ACCESS      read-write
    STATUS          mandatory
    DESCRIPTION     
        "This value specifies the number of trap destination
        SNMP clients/managers."
    ::=  {  trapDestinationEntry  1  }


trapDestinationHostType OBJECT-TYPE 
    SYNTAX          INTEGER  { iPv4 ( 1 ) , iPv6 ( 2 ) } 
    MAX-ACCESS      read-write
    STATUS          mandatory
    DESCRIPTION     
        "The type of addressing model to represent the 
        network address (IPv4/IPv6)"
    ::=  {  trapDestinationEntry  2  }


trapDestinationHostAddr OBJECT-TYPE 
    SYNTAX          DisplayString
    MAX-ACCESS      read-write
    STATUS          mandatory
    DESCRIPTION     
        "The network address of this client/manager, to 
        which the trap should be sent"
    ::=  {  trapDestinationEntry  3  }


trapDestinationPort OBJECT-TYPE 
    SYNTAX          Integer32  ( 0 .. 65535  ) 
    MAX-ACCESS      read-write
    STATUS          mandatory
    DESCRIPTION     
        "The port number where this client/manager is
        listening for traps."
    ::=  {  trapDestinationEntry  4  }


driveAlert TRAP-TYPE
    ENTERPRISE smlRoot
    VARIABLES {
        trapDriveAlertSummary, 
        trap-Association-MediaAccessDeviceIndex,
        trapPerceivedSeverity }
    DESCRIPTION
        "A Drive/Autoloader Alert trap, based on the T10 TapeAlert
        Specification v3 (w/SSC-3 Enhancements) and SMI-S 1.1 section 
        8.1.8.25 LibraryAlert Events/Indications."
    ::= 0

changerAlert TRAP-TYPE
    ENTERPRISE smlRoot
    VARIABLES {
        trapChangerAlertSummary, 
        trap-Association-ChangerDeviceIndex, 
        trapPerceivedSeverity }
    DESCRIPTION
        "A Changer Device (eg. robot) Alert trap, based on the T10 TapeAlert
        Specification v3 (w/SSC-3 Enhancements)  and SMI-S 1.1 section
         8.1.8.25 LibraryAlert Events/Indications."
    ::= 1

trapObjects OBJECT IDENTIFIER   ::= { trapGroup 8 }

currentOperationalStatus    OBJECT-TYPE 
    SYNTAX          INTEGER { unknown (0),
                              other (1),
                              ok (2),
                              degraded (3),
                              stressed (4),
                              predictiveFailure (5),
                              error (6),
                              non-RecoverableError (7),
                              starting (8),
                              stopping (9),
                              stopped  (10),
                              inService (11),
                              noContact (12),
                              lostCommunication (13),
                              aborted (14),
                              dormant (15),
                              supportingEntityInError (16),
                              completed (17),
                              powerMode (18),
                              dMTFReserved (19),
                              vendorReserved (32768) }
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "Indicates the previous status(es) of the element.
         Various health and operational statuses are defined. Many of
         the enumeration's values are self- explanatory. However, a few
         are not and are described in more detail. \n
         'Stressed' indicates that the element is functioning, but
         needs attention. Examples of 'Stressed' states are
         overload, overheated, etc. \n
         'Predictive Failure' indicates that an element is
         functioning nominally but predicting a failure in the near
         future. \n
         'In Service' describes an element being configured,
         maintained, cleaned, or otherwise administered. \n
         'No Contact' indicates that the monitoring system has
         knowledge of this element, but has never been able to
         establish communications with it. \n
         'Lost Communication' indicates that the ManagedSystem
         Element is known to exist and has been contacted
         successfully in the past, but is currently unreachable. \n
         'Stopped' and 'Aborted' are similar, although the
         former implies a clean and orderly stop, while the latter
         implies an abrupt stop where the element's state and
         configuration may need to be updated. \n
         'Dormant' indicates that the element is inactive or
         quiesced. \n
         'Supporting Entity in Error' describes that this element
         may be 'OK' but that another element, on which it is
         dependent, is in error. An example is a network service or
         endpoint that cannot function due to lower layer networking
         problems. \n
         'Completed' indicates the element has completed its
         operation. This value should be combined with either OK,
         Error, or Degraded so that a client can till if the
         complete operation passed (Completed with OK), and failure
         (Completed with Error). Completed with Degraded would imply
         the operation finished, but did not complete OK or report
         an error. \n
         'Power Mode' indicates the element has additional power
         model information contained in the Associated
         PowerManagementService association. \n
         OperationalStatus replaces the Status property on
         ManagedSystemElement to provide a consistent approach to
         enumerations, to address implementation needs for an array
         property, and to provide a migration path from today's
         environment to the future. This change was not made earlier
         since it required the DEPRECATED qualifier. Due to the
         widespread use of the existing Status property in
         management applications, it is strongly RECOMMENDED that
         providers/instrumentation provide BOTH the Status and
         OperationalStatus properties. Further, the first value of
         OperationalStatus SHOULD contain the primary status for the
         element. When instrumented, Status (since it is
         single-valued) SHOULD also provide the primary status of
         the element."
    ::=  {  trapObjects   1  }

oldOperationalStatus    OBJECT-TYPE 
    SYNTAX          INTEGER { unknown (0),
                              other (1),
                              ok (2),
                              degraded (3),
                              stressed (4),
                              predictiveFailure (5),
                              error (6),
                              non-RecoverableError (7),
                              starting (8),
                              stopping (9),
                              stopped  (10),
                              inService (11),
                              noContact (12),
                              lostCommunication (13),
                              aborted (14),
                              dormant (15),
                              supportingEntityInError (16),
                              completed (17),
                              powerMode (18),
                              dMTFReserved (19),
                              vendorReserved (32768) }
    MAX-ACCESS      read-only
    STATUS          mandatory
    DESCRIPTION     
        "Indicates the previous status(es) of the element.
         Various health and operational statuses are defined. Many of
         the enumeration's values are self- explanatory. However, a few
         are not and are described in more detail. \n
         'Stressed' indicates that the element is functioning, but
         needs attention. Examples of 'Stressed' states are
         overload, overheated, etc. \n
         'Predictive Failure' indicates that an element is
         functioning nominally but predicting a failure in the near
         future. \n
         'In Service' describes an element being configured,
         maintained, cleaned, or otherwise administered. \n
         'No Contact' indicates that the monitoring system has
         knowledge of this element, but has never been able to
         establish communications with it. \n
         'Lost Communication' indicates that the ManagedSystem
         Element is known to exist and has been contacted
         successfully in the past, but is currently unreachable. \n
         'Stopped' and 'Aborted' are similar, although the
         former implies a clean and orderly stop, while the latter
         implies an abrupt stop where the element's state and
         configuration may need to be updated. \n
         'Dormant' indicates that the element is inactive or
         quiesced. \n
         'Supporting Entity in Error' describes that this element
         may be 'OK' but that another element, on which it is
         dependent, is in error. An example is a network service or
         endpoint that cannot function due to lower layer networking
         problems. \n
         'Completed' indicates the element has completed its
         operation. This value should be combined with either OK,
         Error, or Degraded so that a client can till if the
         complete operation passed (Completed with OK), and failure
         (Completed with Error). Completed with Degraded would imply
         the operation finished, but did not complete OK or report
         an error. \n
         'Power Mode' indicates the element has additional power
         model information contained in the Associated
         PowerManagementService association. \n
         OperationalStatus replaces the Status property on
         ManagedSystemElement to provide a consistent approach to
         enumerations, to address implementation needs for an array
         property, and to provide a migration path from today's
         environment to the future. This change was not made earlier
         since it required the DEPRECATED qualifier. Due to the
         widespread use of the existing Status property in
         management applications, it is strongly RECOMMENDED that
         providers/instrumentation provide BOTH the Status and
         OperationalStatus properties. Further, the first value of
         OperationalStatus SHOULD contain the primary status for the
         element. When instrumented, Status (since it is
         single-valued) SHOULD also provide the primary status of
         the element."
    ::=  {  trapObjects   2  }

libraryAddedTrap TRAP-TYPE
    ENTERPRISE trapGroup
    VARIABLES {
        storageLibrary-Name
        }
    DESCRIPTION
        "A library is added to the SMI-S agent.
         This trap is to support the SMI-S 1.1 section 8.1.8.23 InstCreation
         indication."
    ::= 3
    
libraryDeletedTrap TRAP-TYPE
    ENTERPRISE trapGroup
    VARIABLES {
        storageLibrary-Name
        }
    DESCRIPTION
        "A library is deleted in the SMI-S agent.
         This trap is to support the SMI-S 1.1 section 8.1.8.23 InstDeletion
         indication."
    ::= 4
    
libraryOpStatusChangedTrap TRAP-TYPE
    ENTERPRISE trapGroup
    VARIABLES {
        storageLibrary-Name,
        currentOperationalStatus, 
        oldOperationalStatus 
        }
    DESCRIPTION
        "A library OperationalStatus has changed in the SMI-S agent.
         This trap is to support the SMI-S 1.1 section 8.1.8.23 InstModification
         indication."
    ::= 5
    
driveAddedTrap TRAP-TYPE
    ENTERPRISE trapGroup
    VARIABLES {
        storageLibrary-Name,
        mediaAccessDevice-DeviceID
        }
    DESCRIPTION
        "A media access device (trap drive) is added to the library. 
         This trap is to support the SMI-S 1.1 section 8.1.8.25 InstCreation
         indication."
    ::= 6
    
driveDeletedTrap TRAP-TYPE
    ENTERPRISE trapGroup
    VARIABLES {
        storageLibrary-Name,
        mediaAccessDevice-DeviceID
        }
    DESCRIPTION
        "A media access device (trap drive) is deleted from the library. 
         This trap is to support the SMI-S 1.1 section 8.1.8.25 InstDeletion
         indication."
    ::= 7
    
driveOpStatusChangedTrap TRAP-TYPE
    ENTERPRISE trapGroup
    VARIABLES {
        storageLibrary-Name,
        mediaAccessDevice-DeviceID,
        currentOperationalStatus,
        oldOperationalStatus
        }
    DESCRIPTION
        "A drive OperationalStatus has changed in the SMI-S agent.
         This trap is to support the SMI-S 1.1 section 8.1.8.23 InstModification
         indication."
    ::= 8
    
changerAddedTrap TRAP-TYPE
    ENTERPRISE trapGroup
    VARIABLES {
        storageLibrary-Name,
        changerDevice-DeviceID
        }
    DESCRIPTION
        "A changer device is added to the library. 
         This trap is to support the SMI-S 1.1 section 8.1.8.25 InstCreation
         indication."
    ::= 9
    
changerDeletedTrap TRAP-TYPE
    ENTERPRISE trapGroup
    VARIABLES {
        storageLibrary-Name,
        changerDevice-DeviceID
        }
    DESCRIPTION
        "A changer device is deleted from the library. 
         This trap is to support the SMI-S 1.1 section 8.1.8.25 InstDeletion
         indication."
    ::= 10
    
changerOpStatusChangedTrap TRAP-TYPE
    ENTERPRISE trapGroup
    VARIABLES {
        storageLibrary-Name,
        changerDevice-DeviceID,
        currentOperationalStatus,
        oldOperationalStatus
        }
    DESCRIPTION
        "A changer OperationalStatus has changed in the SMI-S agent.
         This trap is to support the SMI-S 1.1 section 8.1.8.23 InstModification
         indication."
    ::= 11
    
physicalMediaAddedTrap TRAP-TYPE
    ENTERPRISE trapGroup
    VARIABLES {
        storageMediaLocation-PhysicalMedia-Tag
        }
    DESCRIPTION
        "A physical media is added to the library. 
         This trap is to support the SMI-S 1.1 section 8.1.8.25 InstCreation
         indication."
    ::= 12
    
physicalMediaDeletedTrap TRAP-TYPE
    ENTERPRISE trapGroup
    VARIABLES {
        storageMediaLocation-PhysicalMedia-Tag
        }
    DESCRIPTION
        "A physical media is deleted from the library. 
         This trap is to support the SMI-S 1.1 section 8.1.8.25 InstDeletion
         indication."
    ::= 13
    
endOfSmlMib OBJECT-TYPE 
    SYNTAX          OBJECT IDENTIFIER
    MAX-ACCESS      not-accessible
    STATUS          mandatory
    DESCRIPTION     
        "Description here"
    ::=  {  smlRoot  17  }
    
END