This file is indexed.

/usr/share/pyshared/pysnmp_mibs/OPT-IF-MIB.py is in python-pysnmp4-mibs 0.1.3-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

   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
# PySNMP SMI module. Autogenerated from smidump -f python OPT-IF-MIB
# by libsmi2pysnmp-0.1.3 at Mon Apr  2 20:39:24 2012,
# Python version sys.version_info(major=2, minor=7, micro=2, releaselevel='final', serial=0)

# Imports

( Integer, ObjectIdentifier, OctetString, ) = mibBuilder.importSymbols("ASN1", "Integer", "ObjectIdentifier", "OctetString")
( NamedValues, ) = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
( ConstraintsIntersection, ConstraintsUnion, SingleValueConstraint, ValueRangeConstraint, ValueSizeConstraint, ) = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsIntersection", "ConstraintsUnion", "SingleValueConstraint", "ValueRangeConstraint", "ValueSizeConstraint")
( ifIndex, ) = mibBuilder.importSymbols("IF-MIB", "ifIndex")
( SnmpAdminString, ) = mibBuilder.importSymbols("SNMP-FRAMEWORK-MIB", "SnmpAdminString")
( ModuleCompliance, ObjectGroup, ) = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "ObjectGroup")
( Bits, Gauge32, Integer32, Integer32, ModuleIdentity, MibIdentifier, MibScalar, MibTable, MibTableRow, MibTableColumn, TimeTicks, Unsigned32, transmission, ) = mibBuilder.importSymbols("SNMPv2-SMI", "Bits", "Gauge32", "Integer32", "Integer32", "ModuleIdentity", "MibIdentifier", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "TimeTicks", "Unsigned32", "transmission")
( RowPointer, RowStatus, TextualConvention, TruthValue, ) = mibBuilder.importSymbols("SNMPv2-TC", "RowPointer", "RowStatus", "TextualConvention", "TruthValue")

# Types

class OptIfAcTI(OctetString):
    subtypeSpec = OctetString.subtypeSpec+ValueSizeConstraint(64,64)
    fixedLength = 64
    
class OptIfBitRateK(Integer32):
    pass

class OptIfDEGM(Unsigned32):
    subtypeSpec = Unsigned32.subtypeSpec+ValueRangeConstraint(2,10)
    
class OptIfDEGThr(Unsigned32):
    subtypeSpec = Unsigned32.subtypeSpec+ValueRangeConstraint(1,100)
    
class OptIfDirectionality(Integer):
    subtypeSpec = Integer.subtypeSpec+SingleValueConstraint(2,1,3,)
    namedValues = NamedValues(("sink", 1), ("source", 2), ("bidirectional", 3), )
    
class OptIfExDAPI(OctetString):
    subtypeSpec = OctetString.subtypeSpec+ValueSizeConstraint(16,16)
    fixedLength = 16
    
class OptIfExSAPI(OctetString):
    subtypeSpec = OctetString.subtypeSpec+ValueSizeConstraint(16,16)
    fixedLength = 16
    
class OptIfIntervalNumber(Unsigned32):
    subtypeSpec = Unsigned32.subtypeSpec+ValueRangeConstraint(1,96)
    
class OptIfSinkOrSource(Integer):
    subtypeSpec = Integer.subtypeSpec+SingleValueConstraint(2,1,)
    namedValues = NamedValues(("sink", 1), ("source", 2), )
    
class OptIfTIMDetMode(Integer):
    subtypeSpec = Integer.subtypeSpec+SingleValueConstraint(4,1,3,2,)
    namedValues = NamedValues(("off", 1), ("dapi", 2), ("sapi", 3), ("both", 4), )
    
class OptIfTxTI(OctetString):
    subtypeSpec = OctetString.subtypeSpec+ValueSizeConstraint(64,64)
    fixedLength = 64
    

# Objects

optIfMibModule = ModuleIdentity((1, 3, 6, 1, 2, 1, 10, 133)).setRevisions(("2003-08-13 00:00",))
if mibBuilder.loadTexts: optIfMibModule.setOrganization("IETF AToM MIB Working Group")
if mibBuilder.loadTexts: optIfMibModule.setContactInfo("WG charter:\nhttp://www.ietf.org/html.charters/atommib-charter.html\n\nMailing Lists:\n General Discussion: atommib@research.telcordia.com\n To Subscribe: atommib-request@research.telcordia.com\n\n\n\n\n\nEditor: Hing-Kam Lam\nPostal: Lucent Technologies, Room 4C-616\n      101 Crawfords Corner Road\n      Holmdel, NJ 07733\n Tel: +1 732 949 8338\nEmail: hklam@lucent.com")
if mibBuilder.loadTexts: optIfMibModule.setDescription("The MIB module to describe pre-OTN and OTN interfaces.\n\nCopyright (C) The Internet Society (2003).  This version\nof this MIB module is part of RFC 3591;  see the RFC\nitself for full legal notices.")
optIfObjects = MibIdentifier((1, 3, 6, 1, 2, 1, 10, 133, 1))
optIfOTMn = MibIdentifier((1, 3, 6, 1, 2, 1, 10, 133, 1, 1))
optIfOTMnTable = MibTable((1, 3, 6, 1, 2, 1, 10, 133, 1, 1, 1))
if mibBuilder.loadTexts: optIfOTMnTable.setDescription("A table of OTMn structure information.")
optIfOTMnEntry = MibTableRow((1, 3, 6, 1, 2, 1, 10, 133, 1, 1, 1, 1)).setIndexNames((0, "IF-MIB", "ifIndex"))
if mibBuilder.loadTexts: optIfOTMnEntry.setDescription("A conceptual row that contains the OTMn structure\ninformation of an optical interface.")
optIfOTMnOrder = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 1, 1, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 900))).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOTMnOrder.setDescription("This object indicates the order of the OTM, which\nrepresents the maximum number of wavelengths that can be\nsupported at the bit rate(s) supported on the interface.")
optIfOTMnReduced = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 1, 1, 1, 2), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOTMnReduced.setDescription("This object indicates whether a reduced or full\nfunctionality is supported at the interface.  A value of\ntrue means reduced.  A value of false means full.")
optIfOTMnBitRates = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 1, 1, 1, 3), Bits().subtype(namedValues=NamedValues(("bitRateK1", 0), ("bitRateK2", 1), ("bitRateK3", 2), ))).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOTMnBitRates.setDescription("This attribute is a bit map representing the bit\nrate or set of bit rates supported on the interface.\nThe meaning of each bit position is as follows:\n  bitRateK1(0) is set if the 2.5 Gbit/s rate is supported\n  bitRateK2(1) is set if the 10 Gbit/s rate is supported\n  bitRateK3(2) is set if the 40 Gbit/s rate is supported\nNote that each bit position corresponds to one possible\nvalue of the type OptIfBitRateK.\nThe default value of this attribute is system specific.")
optIfOTMnInterfaceType = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 1, 1, 1, 4), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOTMnInterfaceType.setDescription("This object identifies the type of interface.  The value of\nthis attribute will affect the behavior of the OTM with\nrespect to presence/absence of OTM Overhead Signal (OOS)\nprocessing and TCM activation.  For an IrDI interface,\nthere is no OOS processing and TCM activation is limited\nto n levels as specified by a TCM level threshold.\n\nThis object contains two fields that are separated by\nwhitespace.  The possible values are:\n     field 1: one of the 4-character ASCII strings\n               'IrDI' or 'IaDI'\n     field 2: free-form text consisting of printable\n              UTF-8 encoded characters\n\nNote that field 2 is optional.  If it is not present then there\nis no requirement for trailing whitespace after field 1.\n\nThe default values are as follows:\n     field 1:  'IaDI'\n     field 2: an empty string.")
optIfOTMnTcmMax = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 1, 1, 1, 5), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 6))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: optIfOTMnTcmMax.setDescription("This object identifies the maximum number of TCM\nlevels allowed for any Optical Channel contained\nin this OTM.  A new TCM activation will be rejected\nif the requested level is greater than the threshold.\nIf InterfaceType object specifies a type of 'IaDI'\nfor this OTM, then this attribute is irrelevant.\n\nPossible values:  unsigned integers in the range\n                  from 0 to 6 inclusive.\nDefault value:    3.")
optIfOTMnOpticalReach = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 1, 1, 1, 6), Integer().subtype(subtypeSpec=SingleValueConstraint(4,2,3,1,5,)).subtype(namedValues=NamedValues(("intraOffice", 1), ("shortHaul", 2), ("longHaul", 3), ("veryLongHaul", 4), ("ultraLongHaul", 5), ))).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOTMnOpticalReach.setDescription("This object indicates the length the optical signal\nmay travel before requiring termination or regeneration.\nThe meaning of the enumeration are:\n  intraOffice(1)  - intra-office (as defined in ITU-T G.957)\n  shortHaul(2)    - short haul (as defined in ITU-T G.957)\n  longHaul(3)     - long haul (as defined in ITU-T G.957)\n  veryLongHaul(4) - very long haul (as defined in ITU-T G.691)\n  ultraLongHaul(5)- ultra long haul (as defined in ITU-T G.691)")
optIfPerfMon = MibIdentifier((1, 3, 6, 1, 2, 1, 10, 133, 1, 2))
optIfPerfMonIntervalTable = MibTable((1, 3, 6, 1, 2, 1, 10, 133, 1, 2, 1))
if mibBuilder.loadTexts: optIfPerfMonIntervalTable.setDescription("A table of 15-minute performance monitoring interval\ninformation.")
optIfPerfMonIntervalEntry = MibTableRow((1, 3, 6, 1, 2, 1, 10, 133, 1, 2, 1, 1)).setIndexNames((0, "IF-MIB", "ifIndex"))
if mibBuilder.loadTexts: optIfPerfMonIntervalEntry.setDescription("A conceptual row that contains 15-minute performance\nmonitoring interval information of an interface.")
optIfPerfMonCurrentTimeElapsed = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 2, 1, 1, 1), Gauge32().subtype(subtypeSpec=ValueRangeConstraint(0, 900))).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfPerfMonCurrentTimeElapsed.setDescription("Number of seconds elapsed in the current 15-minute\nperformance monitoring interval.\nIf, for some reason, such as an adjustment in the NE's\ntime-of-day clock, the number of seconds elapsed exceeds\nthe maximum value, then the maximum value will be returned.")
optIfPerfMonCurDayTimeElapsed = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 2, 1, 1, 2), Gauge32().subtype(subtypeSpec=ValueRangeConstraint(0, 86400))).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfPerfMonCurDayTimeElapsed.setDescription("Number of seconds elapsed in the current 24-hour interval\nperformance monitoring period.\nIf, for some reason, such as an adjustment in the NE's\ntime-of-day clock, the number of seconds elapsed exceeds\nthe maximum value, then the maximum value will be returned.")
optIfPerfMonIntervalNumIntervals = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 2, 1, 1, 3), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 96))).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfPerfMonIntervalNumIntervals.setDescription("The number of 15-minute intervals for which performance\nmonitoring data is available.  The number is the same for all\nthe associated sub layers of the interface.\n\n\n\nAn optical interface must be capable of supporting at least\nn intervals, where n is defined as follows:\n    The minimum value of n is 4.\n    The default of n is 32.\n    The maximum value of n is 96.\n\nThe value of this object will be n unless performance\nmonitoring was (re-)started for the interface within the last\n(n*15) minutes, in which case the value will be the number of\ncomplete 15-minute intervals since measurement was\n(re-)started.")
optIfPerfMonIntervalNumInvalidIntervals = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 2, 1, 1, 4), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 96))).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfPerfMonIntervalNumInvalidIntervals.setDescription("The number of intervals in the range from 0 to\noptIfPerfMonIntervalNumIntervals for which no performance\nmonitoring data is available and/or the data is invalid.")
optIfOTSn = MibIdentifier((1, 3, 6, 1, 2, 1, 10, 133, 1, 3))
optIfOTSnConfigTable = MibTable((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 1))
if mibBuilder.loadTexts: optIfOTSnConfigTable.setDescription("A table of OTSn configuration information.")
optIfOTSnConfigEntry = MibTableRow((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 1, 1)).setIndexNames((0, "IF-MIB", "ifIndex"))
if mibBuilder.loadTexts: optIfOTSnConfigEntry.setDescription("A conceptual row that contains OTSn configuration\ninformation of an interface.")
optIfOTSnDirectionality = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 1, 1, 1), OptIfDirectionality()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOTSnDirectionality.setDescription("Indicates the directionality of the entity.")
optIfOTSnAprStatus = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 1, 1, 2), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOTSnAprStatus.setDescription("This attribute indicates the status of the Automatic\nPower Reduction (APR) function of the entity.  Valid\nvalues are 'on' and 'off'.")
optIfOTSnAprControl = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 1, 1, 3), SnmpAdminString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: optIfOTSnAprControl.setDescription("This object is a UTF-8 encoded string that specifies Automatic\nPower Reduction (APR) control actions requested of this entity\n(when written) and that returns the current APR control state\nof this entity (when read).  The values are implementation-defined.\nAny implementation that instantiates this object must document the\nset of values that it allows to be written, the set of values\nthat it will return, and what each of those values means.")
optIfOTSnTraceIdentifierTransmitted = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 1, 1, 4), OptIfTxTI()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: optIfOTSnTraceIdentifierTransmitted.setDescription("The trace identifier transmitted.\nThis object is applicable when optIfOTSnDirectionality has the\nvalue source(2) or bidirectional(3).\nThis object does not apply to reduced-capability systems (i.e.,\nthose for which optIfOTMnReduced has the value true(1)) or\nat IrDI interfaces (i.e., when optIfOTMnInterfaceType field 1\nhas the value 'IrDI').\nIf no value is ever set by a management entity for the object\noptIfOTSnTraceIdentifierTransmitted, system-specific default\nvalue will be used.  Any implementation that instantiates this\nobject must document the system-specific default value or how it\nis derived.")
optIfOTSnDAPIExpected = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 1, 1, 5), OptIfExDAPI()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: optIfOTSnDAPIExpected.setDescription("The DAPI expected by the receiver.\nThis object is applicable when optIfOTSnDirectionality has the\nvalue sink(1) or bidirectional(3).  It has no effect if\noptIfOTSnTIMDetMode has the value off(1) or sapi(3).\nThis object does not apply to reduced-capability systems (i.e.,\nthose for which optIfOTMnReduced has the value true(1)) or\nat IrDI interfaces (i.e., when optIfOTMnInterfaceType field 1\nhas the value 'IrDI').")
optIfOTSnSAPIExpected = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 1, 1, 6), OptIfExSAPI()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: optIfOTSnSAPIExpected.setDescription("The SAPI expected by the receiver.\nThis object is applicable when optIfOTSnDirectionality has the\nvalue sink(1) or bidirectional(3).  It has no effect if\noptIfOTSnTIMDetMode has the value off(1) or dapi(2).\nThis object does not apply to reduced-capability systems (i.e.,\nthose for which optIfOTMnReduced has the value true(1)) or\nat IrDI interfaces (i.e., when optIfOTMnInterfaceType field 1\nhas the value 'IrDI').")
optIfOTSnTraceIdentifierAccepted = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 1, 1, 7), OptIfAcTI()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOTSnTraceIdentifierAccepted.setDescription("The actual trace identifier received.\nThis object is applicable when optIfOTSnDirectionality has the\nvalue sink(1) or bidirectional(3).  Its value is unspecified\nif optIfOTSnCurrentStatus has either or both of the\nlosO(5) and los(6) bits set.\nThis object does not apply to reduced-capability systems (i.e.,\nthose for which optIfOTMnReduced has the value true(1)) or\nat IrDI interfaces (i.e., when optIfOTMnInterfaceType field 1\nhas the value 'IrDI').")
optIfOTSnTIMDetMode = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 1, 1, 8), OptIfTIMDetMode()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: optIfOTSnTIMDetMode.setDescription("Indicates the mode of the Trace Identifier Mismatch (TIM)\nDetection function.  This object is applicable\nwhen optIfOTSnDirectionality has the value sink(1)\nor bidirectional(3).  The default value is off(1).\nThis object does not apply to reduced-capability systems (i.e.,\nthose for which optIfOTMnReduced has the value true(1)) or\nat IrDI interfaces (i.e., when optIfOTMnInterfaceType field 1\nhas the value 'IrDI').\nThe default value of this object is off(1).")
optIfOTSnTIMActEnabled = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 1, 1, 9), TruthValue()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: optIfOTSnTIMActEnabled.setDescription("Indicates whether the Trace Identifier Mismatch (TIM)\nConsequent Action function is enabled.  This object\nis applicable when optIfOTSnDirectionality has the\nvalue sink(1) or bidirectional(3).  It has no effect\nwhen the value of optIfOTSnTIMDetMode is off(1).\nThis object does not apply to reduced-capability systems (i.e.,\nthose for which optIfOTMnReduced has the value true(1)) or\nat IrDI interfaces (i.e., when optIfOTMnInterfaceType field 1\nhas the value 'IrDI').\nThe default value of this object is false(2).")
optIfOTSnCurrentStatus = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 1, 1, 10), Bits().subtype(namedValues=NamedValues(("bdiP", 0), ("bdiO", 1), ("bdi", 2), ("tim", 3), ("losP", 4), ("losO", 5), ("los", 6), ))).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOTSnCurrentStatus.setDescription("Indicates the defect condition of the entity, if any.\nThis object is applicable when optIfOTSnDirectionality\nhas the value sink(1) or bidirectional(3).  In\nreduced-capability systems or at IrDI interfaces\nthe only bit position that may be set is los(6).")
optIfOTSnSinkCurrentTable = MibTable((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 2))
if mibBuilder.loadTexts: optIfOTSnSinkCurrentTable.setDescription("A table of OTSn sink performance monitoring information for\nthe current 15-minute interval.")
optIfOTSnSinkCurrentEntry = MibTableRow((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 2, 1)).setIndexNames((0, "IF-MIB", "ifIndex"))
if mibBuilder.loadTexts: optIfOTSnSinkCurrentEntry.setDescription("A conceptual row that contains OTSn sink performance\nmonitoring information of an interface for the current\n15-minute interval.")
optIfOTSnSinkCurrentSuspectedFlag = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 2, 1, 1), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOTSnSinkCurrentSuspectedFlag.setDescription("If true, the data in this entry may be unreliable.")
optIfOTSnSinkCurrentInputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 2, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOTSnSinkCurrentInputPower.setDescription("The optical power monitored at the input.")
optIfOTSnSinkCurrentLowInputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 2, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOTSnSinkCurrentLowInputPower.setDescription("The lowest optical power monitored at the input during the\ncurrent 15-minute interval.")
optIfOTSnSinkCurrentHighInputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 2, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOTSnSinkCurrentHighInputPower.setDescription("The highest optical power monitored at the input during the\ncurrent 15-minute interval.")
optIfOTSnSinkCurrentLowerInputPowerThreshold = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 2, 1, 5), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: optIfOTSnSinkCurrentLowerInputPowerThreshold.setDescription("The lower limit threshold on input power.  If\noptIfOTSnSinkCurrentInputPower drops to this value or below,\na Threshold Crossing Alert (TCA) should be sent.")
optIfOTSnSinkCurrentUpperInputPowerThreshold = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 2, 1, 6), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: optIfOTSnSinkCurrentUpperInputPowerThreshold.setDescription("The upper limit threshold on input power.  If\noptIfOTSnSinkCurrentInputPower reaches or exceeds this value,\na Threshold Crossing Alert (TCA) should be sent.")
optIfOTSnSinkCurrentOutputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 2, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOTSnSinkCurrentOutputPower.setDescription("The optical power monitored at the output.")
optIfOTSnSinkCurrentLowOutputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 2, 1, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOTSnSinkCurrentLowOutputPower.setDescription("The lowest optical power monitored at the output during the\ncurrent 15-minute interval.")
optIfOTSnSinkCurrentHighOutputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 2, 1, 9), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOTSnSinkCurrentHighOutputPower.setDescription("The highest optical power monitored at the output during the\ncurrent 15-minute interval.")
optIfOTSnSinkCurrentLowerOutputPowerThreshold = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 2, 1, 10), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: optIfOTSnSinkCurrentLowerOutputPowerThreshold.setDescription("The lower limit threshold on output power.  If\noptIfOTSnSinkCurrentOutputPower drops to this value or below,\na Threshold Crossing Alert (TCA) should be sent.")
optIfOTSnSinkCurrentUpperOutputPowerThreshold = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 2, 1, 11), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: optIfOTSnSinkCurrentUpperOutputPowerThreshold.setDescription("The upper limit threshold on output power.  If\noptIfOTSnSinkCurrentOutputPower reaches or exceeds this value,\na Threshold Crossing Alert (TCA) should be sent.")
optIfOTSnSinkIntervalTable = MibTable((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 3))
if mibBuilder.loadTexts: optIfOTSnSinkIntervalTable.setDescription("A table of historical OTSn sink performance monitoring\ninformation.")
optIfOTSnSinkIntervalEntry = MibTableRow((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 3, 1)).setIndexNames((0, "IF-MIB", "ifIndex"), (0, "OPT-IF-MIB", "optIfOTSnSinkIntervalNumber"))
if mibBuilder.loadTexts: optIfOTSnSinkIntervalEntry.setDescription("A conceptual row that contains OTSn sink performance\nmonitoring information of an interface during a particular\nhistorical interval.")
optIfOTSnSinkIntervalNumber = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 3, 1, 1), OptIfIntervalNumber()).setMaxAccess("noaccess")
if mibBuilder.loadTexts: optIfOTSnSinkIntervalNumber.setDescription("Uniquely identifies the interval.")
optIfOTSnSinkIntervalSuspectedFlag = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 3, 1, 2), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOTSnSinkIntervalSuspectedFlag.setDescription("If true, the data in this entry may be unreliable.")
optIfOTSnSinkIntervalLastInputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 3, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOTSnSinkIntervalLastInputPower.setDescription("The last optical power monitored at the input during the\ninterval.")
optIfOTSnSinkIntervalLowInputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 3, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOTSnSinkIntervalLowInputPower.setDescription("The lowest optical power monitored at the input during the\ninterval.")
optIfOTSnSinkIntervalHighInputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 3, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOTSnSinkIntervalHighInputPower.setDescription("The highest optical power monitored at the input during the\ninterval.")
optIfOTSnSinkIntervalLastOutputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 3, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOTSnSinkIntervalLastOutputPower.setDescription("The last optical power monitored at the output during the\ninterval.")
optIfOTSnSinkIntervalLowOutputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 3, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOTSnSinkIntervalLowOutputPower.setDescription("The lowest optical power monitored at the output during the\ninterval.")
optIfOTSnSinkIntervalHighOutputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 3, 1, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOTSnSinkIntervalHighOutputPower.setDescription("The highest optical power monitored at the output during the\ninterval.")
optIfOTSnSinkCurDayTable = MibTable((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 4))
if mibBuilder.loadTexts: optIfOTSnSinkCurDayTable.setDescription("A table of OTSn sink performance monitoring information for\nthe current 24-hour interval.")
optIfOTSnSinkCurDayEntry = MibTableRow((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 4, 1)).setIndexNames((0, "IF-MIB", "ifIndex"))
if mibBuilder.loadTexts: optIfOTSnSinkCurDayEntry.setDescription("A conceptual row that contains OTSn sink performance\nmonitoring information of an interface for the current\n24-hour interval.")
optIfOTSnSinkCurDaySuspectedFlag = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 4, 1, 1), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOTSnSinkCurDaySuspectedFlag.setDescription("If true, the data in this entry may be unreliable.")
optIfOTSnSinkCurDayLowInputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 4, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOTSnSinkCurDayLowInputPower.setDescription("The lowest optical power monitored at the input during the\ncurrent 24-hour interval.")
optIfOTSnSinkCurDayHighInputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 4, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOTSnSinkCurDayHighInputPower.setDescription("The highest optical power monitored at the input during the\ncurrent 24-hour interval.")
optIfOTSnSinkCurDayLowOutputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 4, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOTSnSinkCurDayLowOutputPower.setDescription("The lowest optical power monitored at the output during the\ncurrent 24-hour interval.")
optIfOTSnSinkCurDayHighOutputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 4, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOTSnSinkCurDayHighOutputPower.setDescription("The highest optical power monitored at the output during the\ncurrent 24-hour interval.")
optIfOTSnSinkPrevDayTable = MibTable((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 5))
if mibBuilder.loadTexts: optIfOTSnSinkPrevDayTable.setDescription("A table of OTSn sink performance monitoring information for\nthe previous 24-hour interval.")
optIfOTSnSinkPrevDayEntry = MibTableRow((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 5, 1)).setIndexNames((0, "IF-MIB", "ifIndex"))
if mibBuilder.loadTexts: optIfOTSnSinkPrevDayEntry.setDescription("A conceptual row that contains OTSn sink performance\nmonitoring information of an interface for the previous\n24-hour interval.")
optIfOTSnSinkPrevDaySuspectedFlag = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 5, 1, 1), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOTSnSinkPrevDaySuspectedFlag.setDescription("If true, the data in this entry may be unreliable.")
optIfOTSnSinkPrevDayLastInputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 5, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOTSnSinkPrevDayLastInputPower.setDescription("The last optical power monitored at the input during the\nprevious 24-hour interval.")
optIfOTSnSinkPrevDayLowInputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 5, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOTSnSinkPrevDayLowInputPower.setDescription("The lowest optical power monitored at the input during the\nprevious 24-hour interval.")
optIfOTSnSinkPrevDayHighInputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 5, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOTSnSinkPrevDayHighInputPower.setDescription("The highest optical power monitored at the input during the\nprevious 24-hour interval.")
optIfOTSnSinkPrevDayLastOutputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 5, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOTSnSinkPrevDayLastOutputPower.setDescription("The last optical power monitored at the output during the\nprevious 24-hour interval.")
optIfOTSnSinkPrevDayLowOutputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 5, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOTSnSinkPrevDayLowOutputPower.setDescription("The lowest optical power monitored at the output during the\nprevious 24-hour interval.")
optIfOTSnSinkPrevDayHighOutputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 5, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOTSnSinkPrevDayHighOutputPower.setDescription("The highest optical power monitored at the output during the\nprevious 24-hour interval.")
optIfOTSnSrcCurrentTable = MibTable((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 6))
if mibBuilder.loadTexts: optIfOTSnSrcCurrentTable.setDescription("A table of OTSn source performance monitoring information for\nthe current 15-minute interval.")
optIfOTSnSrcCurrentEntry = MibTableRow((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 6, 1)).setIndexNames((0, "IF-MIB", "ifIndex"))
if mibBuilder.loadTexts: optIfOTSnSrcCurrentEntry.setDescription("A conceptual row that contains OTSn source performance\nmonitoring information of an interface for the current\n15-minute interval.")
optIfOTSnSrcCurrentSuspectedFlag = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 6, 1, 1), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOTSnSrcCurrentSuspectedFlag.setDescription("If true, the data in this entry may be unreliable.")
optIfOTSnSrcCurrentOutputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 6, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOTSnSrcCurrentOutputPower.setDescription("The optical power monitored at the output.")
optIfOTSnSrcCurrentLowOutputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 6, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOTSnSrcCurrentLowOutputPower.setDescription("The lowest optical power monitored at the output during the\ncurrent 15-minute interval.")
optIfOTSnSrcCurrentHighOutputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 6, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOTSnSrcCurrentHighOutputPower.setDescription("The highest optical power monitored at the output during the\ncurrent 15-minute interval.")
optIfOTSnSrcCurrentLowerOutputPowerThreshold = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 6, 1, 5), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: optIfOTSnSrcCurrentLowerOutputPowerThreshold.setDescription("The lower limit threshold on output power.  If\noptIfOTSnSrcCurrentOutputPower drops to this value or below,\na Threshold Crossing Alert (TCA) should be sent.")
optIfOTSnSrcCurrentUpperOutputPowerThreshold = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 6, 1, 6), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: optIfOTSnSrcCurrentUpperOutputPowerThreshold.setDescription("The upper limit threshold on output power.  If\noptIfOTSnSrcCurrentOutputPower reaches or exceeds this value,\na Threshold Crossing Alert (TCA) should be sent.")
optIfOTSnSrcCurrentInputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 6, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOTSnSrcCurrentInputPower.setDescription("The optical power monitored at the input.")
optIfOTSnSrcCurrentLowInputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 6, 1, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOTSnSrcCurrentLowInputPower.setDescription("The lowest optical power monitored at the input during the\ncurrent 15-minute interval.")
optIfOTSnSrcCurrentHighInputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 6, 1, 9), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOTSnSrcCurrentHighInputPower.setDescription("The highest optical power monitored at the input during the\ncurrent 15-minute interval.")
optIfOTSnSrcCurrentLowerInputPowerThreshold = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 6, 1, 10), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: optIfOTSnSrcCurrentLowerInputPowerThreshold.setDescription("The lower limit threshold on input power.  If\noptIfOTSnSrcCurrentInputPower drops to this value or below,\na Threshold Crossing Alert (TCA) should be sent.")
optIfOTSnSrcCurrentUpperInputPowerThreshold = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 6, 1, 11), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: optIfOTSnSrcCurrentUpperInputPowerThreshold.setDescription("The upper limit threshold on input power.  If\noptIfOTSnSrcCurrentInputPower reaches or exceeds this value,\na Threshold Crossing Alert (TCA) should be sent.")
optIfOTSnSrcIntervalTable = MibTable((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 7))
if mibBuilder.loadTexts: optIfOTSnSrcIntervalTable.setDescription("A table of historical OTSn source performance monitoring\ninformation.")
optIfOTSnSrcIntervalEntry = MibTableRow((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 7, 1)).setIndexNames((0, "IF-MIB", "ifIndex"), (0, "OPT-IF-MIB", "optIfOTSnSrcIntervalNumber"))
if mibBuilder.loadTexts: optIfOTSnSrcIntervalEntry.setDescription("A conceptual row that contains OTSn source performance\nmonitoring information of an interface during a particular\nhistorical interval.")
optIfOTSnSrcIntervalNumber = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 7, 1, 1), OptIfIntervalNumber()).setMaxAccess("noaccess")
if mibBuilder.loadTexts: optIfOTSnSrcIntervalNumber.setDescription("Uniquely identifies the interval.")
optIfOTSnSrcIntervalSuspectedFlag = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 7, 1, 2), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOTSnSrcIntervalSuspectedFlag.setDescription("If true, the data in this entry may be unreliable.")
optIfOTSnSrcIntervalLastOutputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 7, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOTSnSrcIntervalLastOutputPower.setDescription("The last optical power monitored at the output during the\ninterval.")
optIfOTSnSrcIntervalLowOutputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 7, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOTSnSrcIntervalLowOutputPower.setDescription("The lowest optical power monitored at the output during the\ninterval.")
optIfOTSnSrcIntervalHighOutputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 7, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOTSnSrcIntervalHighOutputPower.setDescription("The highest optical power monitored at the output during the\ninterval.")
optIfOTSnSrcIntervalLastInputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 7, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOTSnSrcIntervalLastInputPower.setDescription("The last optical power monitored at the input during the\ninterval.")
optIfOTSnSrcIntervalLowInputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 7, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOTSnSrcIntervalLowInputPower.setDescription("The lowest optical power monitored at the input during the\ninterval.")
optIfOTSnSrcIntervalHighInputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 7, 1, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOTSnSrcIntervalHighInputPower.setDescription("The highest optical power monitored at the input during the\ninterval.")
optIfOTSnSrcCurDayTable = MibTable((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 8))
if mibBuilder.loadTexts: optIfOTSnSrcCurDayTable.setDescription("A table of OTSn source performance monitoring information for\nthe current 24-hour interval.")
optIfOTSnSrcCurDayEntry = MibTableRow((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 8, 1)).setIndexNames((0, "IF-MIB", "ifIndex"))
if mibBuilder.loadTexts: optIfOTSnSrcCurDayEntry.setDescription("A conceptual row that contains OTSn source performance\nmonitoring information of an interface for the current\n24-hour interval.")
optIfOTSnSrcCurDaySuspectedFlag = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 8, 1, 1), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOTSnSrcCurDaySuspectedFlag.setDescription("If true, the data in this entry may be unreliable.")
optIfOTSnSrcCurDayLowOutputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 8, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOTSnSrcCurDayLowOutputPower.setDescription("The lowest optical power monitored at the output during the\ncurrent 24-hour interval.")
optIfOTSnSrcCurDayHighOutputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 8, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOTSnSrcCurDayHighOutputPower.setDescription("The highest optical power monitored at the output during the\ncurrent 24-hour interval.")
optIfOTSnSrcCurDayLowInputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 8, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOTSnSrcCurDayLowInputPower.setDescription("The lowest optical power monitored at the input during the\ncurrent 24-hour interval.")
optIfOTSnSrcCurDayHighInputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 8, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOTSnSrcCurDayHighInputPower.setDescription("The highest optical power monitored at the input during the\ncurrent 24-hour interval.")
optIfOTSnSrcPrevDayTable = MibTable((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 9))
if mibBuilder.loadTexts: optIfOTSnSrcPrevDayTable.setDescription("A table of OTSn source performance monitoring information for\nthe previous 24-hour interval.")
optIfOTSnSrcPrevDayEntry = MibTableRow((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 9, 1)).setIndexNames((0, "IF-MIB", "ifIndex"))
if mibBuilder.loadTexts: optIfOTSnSrcPrevDayEntry.setDescription("A conceptual row that contains OTSn source performance\nmonitoring information of an interface for the previous\n24-hour interval.")
optIfOTSnSrcPrevDaySuspectedFlag = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 9, 1, 1), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOTSnSrcPrevDaySuspectedFlag.setDescription("If true, the data in this entry may be unreliable.")
optIfOTSnSrcPrevDayLastOutputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 9, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOTSnSrcPrevDayLastOutputPower.setDescription("The last optical power monitored at the output during the\nprevious 24-hour interval.")
optIfOTSnSrcPrevDayLowOutputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 9, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOTSnSrcPrevDayLowOutputPower.setDescription("The lowest optical power monitored at the output during the\nprevious 24-hour interval.")
optIfOTSnSrcPrevDayHighOutputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 9, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOTSnSrcPrevDayHighOutputPower.setDescription("The highest optical power monitored at the output during the\nprevious 24-hour interval.")
optIfOTSnSrcPrevDayLastInputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 9, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOTSnSrcPrevDayLastInputPower.setDescription("The last optical power monitored at the input during the\nprevious 24-hour interval.")
optIfOTSnSrcPrevDayLowInputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 9, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOTSnSrcPrevDayLowInputPower.setDescription("The lowest optical power monitored at the input during the\nprevious 24-hour interval.")
optIfOTSnSrcPrevDayHighInputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 3, 9, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOTSnSrcPrevDayHighInputPower.setDescription("The highest optical power monitored at the input during the\nprevious 24-hour interval.")
optIfOMSn = MibIdentifier((1, 3, 6, 1, 2, 1, 10, 133, 1, 4))
optIfOMSnConfigTable = MibTable((1, 3, 6, 1, 2, 1, 10, 133, 1, 4, 1))
if mibBuilder.loadTexts: optIfOMSnConfigTable.setDescription("A table of OMSn configuration information.")
optIfOMSnConfigEntry = MibTableRow((1, 3, 6, 1, 2, 1, 10, 133, 1, 4, 1, 1)).setIndexNames((0, "IF-MIB", "ifIndex"))
if mibBuilder.loadTexts: optIfOMSnConfigEntry.setDescription("A conceptual row that contains OMSn configuration\ninformation of an interface.")
optIfOMSnDirectionality = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 4, 1, 1, 1), OptIfDirectionality()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOMSnDirectionality.setDescription("Indicates the directionality of the entity.")
optIfOMSnCurrentStatus = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 4, 1, 1, 2), Bits().subtype(namedValues=NamedValues(("ssfP", 0), ("ssfO", 1), ("ssf", 2), ("bdiP", 3), ("bdiO", 4), ("bdi", 5), ("losP", 6), ))).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOMSnCurrentStatus.setDescription("Indicates the defect condition of the entity, if any.\nThis object is applicable only to full capability\nsystems whose interface type is IaDI and for which\n\n\n\noptIfOMSnDirectionality has the value sink(1) or\nbidirectional(3).")
optIfOMSnSinkCurrentTable = MibTable((1, 3, 6, 1, 2, 1, 10, 133, 1, 4, 2))
if mibBuilder.loadTexts: optIfOMSnSinkCurrentTable.setDescription("A table of OMSn sink performance monitoring information for\nthe current 15-minute interval.")
optIfOMSnSinkCurrentEntry = MibTableRow((1, 3, 6, 1, 2, 1, 10, 133, 1, 4, 2, 1)).setIndexNames((0, "IF-MIB", "ifIndex"))
if mibBuilder.loadTexts: optIfOMSnSinkCurrentEntry.setDescription("A conceptual row that contains OMSn sink performance\nmonitoring information of an interface for the current\n15-minute interval.")
optIfOMSnSinkCurrentSuspectedFlag = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 4, 2, 1, 1), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOMSnSinkCurrentSuspectedFlag.setDescription("If true, the data in this entry may be unreliable.")
optIfOMSnSinkCurrentAggregatedInputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 4, 2, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOMSnSinkCurrentAggregatedInputPower.setDescription("The aggregated optical power of all the DWDM input\nchannels.")
optIfOMSnSinkCurrentLowAggregatedInputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 4, 2, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOMSnSinkCurrentLowAggregatedInputPower.setDescription("The lowest aggregated optical power of all the DWDM input\nchannels during the current 15-minute interval.")
optIfOMSnSinkCurrentHighAggregatedInputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 4, 2, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOMSnSinkCurrentHighAggregatedInputPower.setDescription("The highest aggregated optical power of all the DWDM input\nchannels during the current 15-minute interval.")
optIfOMSnSinkCurrentLowerInputPowerThreshold = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 4, 2, 1, 5), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: optIfOMSnSinkCurrentLowerInputPowerThreshold.setDescription("The lower limit threshold on aggregated input power.  If\noptIfOMSnSinkCurrentAggregatedInputPower drops to this value\nor below, a Threshold Crossing Alert (TCA) should be sent.")
optIfOMSnSinkCurrentUpperInputPowerThreshold = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 4, 2, 1, 6), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: optIfOMSnSinkCurrentUpperInputPowerThreshold.setDescription("The upper limit threshold on aggregated input power.  If\noptIfOMSnSinkCurrentAggregatedInputPower reaches or exceeds\nthis value, a Threshold Crossing Alert (TCA) should be sent.")
optIfOMSnSinkCurrentOutputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 4, 2, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOMSnSinkCurrentOutputPower.setDescription("The optical power monitored at the output.")
optIfOMSnSinkCurrentLowOutputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 4, 2, 1, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOMSnSinkCurrentLowOutputPower.setDescription("The lowest optical power monitored at the output\nduring the current 15-minute interval.")
optIfOMSnSinkCurrentHighOutputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 4, 2, 1, 9), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOMSnSinkCurrentHighOutputPower.setDescription("The highest optical power monitored at the output\nduring the current 15-minute interval.")
optIfOMSnSinkCurrentLowerOutputPowerThreshold = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 4, 2, 1, 10), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: optIfOMSnSinkCurrentLowerOutputPowerThreshold.setDescription("The lower limit threshold on output power.  If\noptIfOMSnSinkCurrentOutputPower drops to this value\nor below, a Threshold Crossing Alert (TCA) should be sent.")
optIfOMSnSinkCurrentUpperOutputPowerThreshold = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 4, 2, 1, 11), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: optIfOMSnSinkCurrentUpperOutputPowerThreshold.setDescription("The upper limit threshold on output power.  If\noptIfOMSnSinkCurrentOutputPower reaches or exceeds\nthis value, a Threshold Crossing Alert (TCA) should be sent.")
optIfOMSnSinkIntervalTable = MibTable((1, 3, 6, 1, 2, 1, 10, 133, 1, 4, 3))
if mibBuilder.loadTexts: optIfOMSnSinkIntervalTable.setDescription("A table of historical OMSn sink performance monitoring\ninformation.")
optIfOMSnSinkIntervalEntry = MibTableRow((1, 3, 6, 1, 2, 1, 10, 133, 1, 4, 3, 1)).setIndexNames((0, "IF-MIB", "ifIndex"), (0, "OPT-IF-MIB", "optIfOMSnSinkIntervalNumber"))
if mibBuilder.loadTexts: optIfOMSnSinkIntervalEntry.setDescription("A conceptual row that contains OMSn sink performance\nmonitoring information of an interface during a particular\nhistorical interval.")
optIfOMSnSinkIntervalNumber = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 4, 3, 1, 1), OptIfIntervalNumber()).setMaxAccess("noaccess")
if mibBuilder.loadTexts: optIfOMSnSinkIntervalNumber.setDescription("Uniquely identifies the interval.")
optIfOMSnSinkIntervalSuspectedFlag = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 4, 3, 1, 2), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOMSnSinkIntervalSuspectedFlag.setDescription("If true, the data in this entry may be unreliable.")
optIfOMSnSinkIntervalLastAggregatedInputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 4, 3, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOMSnSinkIntervalLastAggregatedInputPower.setDescription("The last aggregated optical power of all the DWDM input\nchannels during the interval.")
optIfOMSnSinkIntervalLowAggregatedInputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 4, 3, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOMSnSinkIntervalLowAggregatedInputPower.setDescription("The lowest aggregated optical power of all the DWDM input\nchannels during the interval.")
optIfOMSnSinkIntervalHighAggregatedInputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 4, 3, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOMSnSinkIntervalHighAggregatedInputPower.setDescription("The highest aggregated optical power of all the DWDM input\nchannels during the interval.")
optIfOMSnSinkIntervalLastOutputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 4, 3, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOMSnSinkIntervalLastOutputPower.setDescription("The last optical power at the output\nduring the interval.")
optIfOMSnSinkIntervalLowOutputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 4, 3, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOMSnSinkIntervalLowOutputPower.setDescription("The lowest optical power at the output\nduring the interval.")
optIfOMSnSinkIntervalHighOutputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 4, 3, 1, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOMSnSinkIntervalHighOutputPower.setDescription("The highest optical power at the output\nduring the interval.")
optIfOMSnSinkCurDayTable = MibTable((1, 3, 6, 1, 2, 1, 10, 133, 1, 4, 4))
if mibBuilder.loadTexts: optIfOMSnSinkCurDayTable.setDescription("A table of OMSn sink performance monitoring information for\nthe current 24-hour interval.")
optIfOMSnSinkCurDayEntry = MibTableRow((1, 3, 6, 1, 2, 1, 10, 133, 1, 4, 4, 1)).setIndexNames((0, "IF-MIB", "ifIndex"))
if mibBuilder.loadTexts: optIfOMSnSinkCurDayEntry.setDescription("A conceptual row that contains OMSn sink performance\nmonitoring information of an interface for the current\n24-hour interval.")
optIfOMSnSinkCurDaySuspectedFlag = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 4, 4, 1, 1), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOMSnSinkCurDaySuspectedFlag.setDescription("If true, the data in this entry may be unreliable.")
optIfOMSnSinkCurDayLowAggregatedInputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 4, 4, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOMSnSinkCurDayLowAggregatedInputPower.setDescription("The lowest aggregated optical power of all the DWDM input\nchannels during the current 24-hour interval.")
optIfOMSnSinkCurDayHighAggregatedInputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 4, 4, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOMSnSinkCurDayHighAggregatedInputPower.setDescription("The highest aggregated optical power of all the DWDM input\nchannels during the current 24-hour interval.")
optIfOMSnSinkCurDayLowOutputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 4, 4, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOMSnSinkCurDayLowOutputPower.setDescription("The lowest optical power at the output\nduring the current 24-hour interval.")
optIfOMSnSinkCurDayHighOutputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 4, 4, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOMSnSinkCurDayHighOutputPower.setDescription("The highest  optical power at the output\nduring the current 24-hour interval.")
optIfOMSnSinkPrevDayTable = MibTable((1, 3, 6, 1, 2, 1, 10, 133, 1, 4, 5))
if mibBuilder.loadTexts: optIfOMSnSinkPrevDayTable.setDescription("A table of OMSn sink performance monitoring information for\nthe previous 24-hour interval.")
optIfOMSnSinkPrevDayEntry = MibTableRow((1, 3, 6, 1, 2, 1, 10, 133, 1, 4, 5, 1)).setIndexNames((0, "IF-MIB", "ifIndex"))
if mibBuilder.loadTexts: optIfOMSnSinkPrevDayEntry.setDescription("A conceptual row that contains OMSn sink performance\nmonitoring information of an interface for the previous\n24-hour interval.")
optIfOMSnSinkPrevDaySuspectedFlag = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 4, 5, 1, 1), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOMSnSinkPrevDaySuspectedFlag.setDescription("If true, the data in this entry may be unreliable.")
optIfOMSnSinkPrevDayLastAggregatedInputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 4, 5, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOMSnSinkPrevDayLastAggregatedInputPower.setDescription("The last aggregated optical power of all the DWDM input\nchannels during the previous 24-hour interval.")
optIfOMSnSinkPrevDayLowAggregatedInputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 4, 5, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOMSnSinkPrevDayLowAggregatedInputPower.setDescription("The lowest aggregated optical power of all the DWDM input\nchannels during the previous 24-hour interval.")
optIfOMSnSinkPrevDayHighAggregatedInputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 4, 5, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOMSnSinkPrevDayHighAggregatedInputPower.setDescription("The highest aggregated optical power of all the DWDM input\nchannels during the previous 24-hour interval.")
optIfOMSnSinkPrevDayLastOutputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 4, 5, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOMSnSinkPrevDayLastOutputPower.setDescription("The last  optical power at the output\nduring the previous 24-hour interval.")
optIfOMSnSinkPrevDayLowOutputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 4, 5, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOMSnSinkPrevDayLowOutputPower.setDescription("The lowest optical power at the output\nduring the previous 24-hour interval.")
optIfOMSnSinkPrevDayHighOutputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 4, 5, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOMSnSinkPrevDayHighOutputPower.setDescription("The highest optical power at the output\nduring the previous 24-hour interval.")
optIfOMSnSrcCurrentTable = MibTable((1, 3, 6, 1, 2, 1, 10, 133, 1, 4, 6))
if mibBuilder.loadTexts: optIfOMSnSrcCurrentTable.setDescription("A table of OMSn source performance monitoring information for\nthe current 15-minute interval.")
optIfOMSnSrcCurrentEntry = MibTableRow((1, 3, 6, 1, 2, 1, 10, 133, 1, 4, 6, 1)).setIndexNames((0, "IF-MIB", "ifIndex"))
if mibBuilder.loadTexts: optIfOMSnSrcCurrentEntry.setDescription("A conceptual row that contains OMSn source performance\nmonitoring information of an interface for the current\n15-minute interval.")
optIfOMSnSrcCurrentSuspectedFlag = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 4, 6, 1, 1), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOMSnSrcCurrentSuspectedFlag.setDescription("If true, the data in this entry may be unreliable.")
optIfOMSnSrcCurrentOutputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 4, 6, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOMSnSrcCurrentOutputPower.setDescription("The optical power monitored at the output.")
optIfOMSnSrcCurrentLowOutputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 4, 6, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOMSnSrcCurrentLowOutputPower.setDescription("The lowest optical power monitored at the output during the\ncurrent 15-minute interval.")
optIfOMSnSrcCurrentHighOutputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 4, 6, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOMSnSrcCurrentHighOutputPower.setDescription("The highest optical power monitored at the output during the\ncurrent 15-minute interval.")
optIfOMSnSrcCurrentLowerOutputPowerThreshold = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 4, 6, 1, 5), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: optIfOMSnSrcCurrentLowerOutputPowerThreshold.setDescription("The lower limit threshold on output power.  If\noptIfOMSnSrcCurrentOutputPower drops to this value or below,\na Threshold Crossing Alert (TCA) should be sent.")
optIfOMSnSrcCurrentUpperOutputPowerThreshold = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 4, 6, 1, 6), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: optIfOMSnSrcCurrentUpperOutputPowerThreshold.setDescription("The upper limit threshold on output power.  If\noptIfOMSnSrcCurrentOutputPower reaches or exceeds this value,\na Threshold Crossing Alert (TCA) should be sent.")
optIfOMSnSrcCurrentAggregatedInputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 4, 6, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOMSnSrcCurrentAggregatedInputPower.setDescription("The aggregated optical power at the input.")
optIfOMSnSrcCurrentLowAggregatedInputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 4, 6, 1, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOMSnSrcCurrentLowAggregatedInputPower.setDescription("The lowest aggregated optical power at the input\nduring the current 15-minute interval.")
optIfOMSnSrcCurrentHighAggregatedInputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 4, 6, 1, 9), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOMSnSrcCurrentHighAggregatedInputPower.setDescription("The highest aggregated optical power at the input\nduring the current 15-minute interval.")
optIfOMSnSrcCurrentLowerInputPowerThreshold = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 4, 6, 1, 10), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: optIfOMSnSrcCurrentLowerInputPowerThreshold.setDescription("The lower limit threshold on aggregated input power.  If\noptIfOMSnSrcCurrentAggregatedInputPower drops to this value\nor below, a Threshold Crossing Alert (TCA) should be sent.")
optIfOMSnSrcCurrentUpperInputPowerThreshold = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 4, 6, 1, 11), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: optIfOMSnSrcCurrentUpperInputPowerThreshold.setDescription("The upper limit threshold on aggregated input power.  If\noptIfOMSnSrcCurrentAggregatedInputPower reaches or exceeds\nthis value, a Threshold Crossing Alert (TCA) should be sent.")
optIfOMSnSrcIntervalTable = MibTable((1, 3, 6, 1, 2, 1, 10, 133, 1, 4, 7))
if mibBuilder.loadTexts: optIfOMSnSrcIntervalTable.setDescription("A table of historical OMSn source performance monitoring\ninformation.")
optIfOMSnSrcIntervalEntry = MibTableRow((1, 3, 6, 1, 2, 1, 10, 133, 1, 4, 7, 1)).setIndexNames((0, "IF-MIB", "ifIndex"), (0, "OPT-IF-MIB", "optIfOMSnSrcIntervalNumber"))
if mibBuilder.loadTexts: optIfOMSnSrcIntervalEntry.setDescription("A conceptual row that contains OMSn source performance\nmonitoring information of an interface during a particular\nhistorical interval.")
optIfOMSnSrcIntervalNumber = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 4, 7, 1, 1), OptIfIntervalNumber()).setMaxAccess("noaccess")
if mibBuilder.loadTexts: optIfOMSnSrcIntervalNumber.setDescription("Uniquely identifies the interval.")
optIfOMSnSrcIntervalSuspectedFlag = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 4, 7, 1, 2), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOMSnSrcIntervalSuspectedFlag.setDescription("If true, the data in this entry may be unreliable.")
optIfOMSnSrcIntervalLastOutputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 4, 7, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOMSnSrcIntervalLastOutputPower.setDescription("The last optical power monitored at the output during the\ninterval.")
optIfOMSnSrcIntervalLowOutputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 4, 7, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOMSnSrcIntervalLowOutputPower.setDescription("The lowest optical power monitored at the output during the\ninterval.")
optIfOMSnSrcIntervalHighOutputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 4, 7, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOMSnSrcIntervalHighOutputPower.setDescription("The highest optical power monitored at the output during the\ninterval.")
optIfOMSnSrcIntervalLastAggregatedInputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 4, 7, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOMSnSrcIntervalLastAggregatedInputPower.setDescription("The last aggregated optical power at the input\nduring the interval.")
optIfOMSnSrcIntervalLowAggregatedInputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 4, 7, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOMSnSrcIntervalLowAggregatedInputPower.setDescription("The lowest aggregated optical power at the input\nduring the interval.")
optIfOMSnSrcIntervalHighAggregatedInputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 4, 7, 1, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOMSnSrcIntervalHighAggregatedInputPower.setDescription("The highest aggregated optical power at the input\nduring the interval.")
optIfOMSnSrcCurDayTable = MibTable((1, 3, 6, 1, 2, 1, 10, 133, 1, 4, 8))
if mibBuilder.loadTexts: optIfOMSnSrcCurDayTable.setDescription("A table of OMSn source performance monitoring information for\nthe current 24-hour interval.")
optIfOMSnSrcCurDayEntry = MibTableRow((1, 3, 6, 1, 2, 1, 10, 133, 1, 4, 8, 1)).setIndexNames((0, "IF-MIB", "ifIndex"))
if mibBuilder.loadTexts: optIfOMSnSrcCurDayEntry.setDescription("A conceptual row that contains OMSn source performance\nmonitoring information of an interface for the current\n24-hour interval.")
optIfOMSnSrcCurDaySuspectedFlag = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 4, 8, 1, 1), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOMSnSrcCurDaySuspectedFlag.setDescription("If true, the data in this entry may be unreliable.")
optIfOMSnSrcCurDayLowOutputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 4, 8, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOMSnSrcCurDayLowOutputPower.setDescription("The lowest optical power monitored at the output during the\ncurrent 24-hour interval.")
optIfOMSnSrcCurDayHighOutputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 4, 8, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOMSnSrcCurDayHighOutputPower.setDescription("The highest optical power monitored at the output during the\ncurrent 24-hour interval.")
optIfOMSnSrcCurDayLowAggregatedInputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 4, 8, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOMSnSrcCurDayLowAggregatedInputPower.setDescription("The lowest aggregated optical power at the input\nduring the current 24-hour interval.")
optIfOMSnSrcCurDayHighAggregatedInputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 4, 8, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOMSnSrcCurDayHighAggregatedInputPower.setDescription("The highest aggregated optical power at the input\nduring the current 24-hour interval.")
optIfOMSnSrcPrevDayTable = MibTable((1, 3, 6, 1, 2, 1, 10, 133, 1, 4, 9))
if mibBuilder.loadTexts: optIfOMSnSrcPrevDayTable.setDescription("A table of OMSn source performance monitoring information for\nthe previous 24-hour interval.")
optIfOMSnSrcPrevDayEntry = MibTableRow((1, 3, 6, 1, 2, 1, 10, 133, 1, 4, 9, 1)).setIndexNames((0, "IF-MIB", "ifIndex"))
if mibBuilder.loadTexts: optIfOMSnSrcPrevDayEntry.setDescription("A conceptual row that contains OMSn source performance\nmonitoring information of an interface for the previous\n24-hour interval.")
optIfOMSnSrcPrevDaySuspectedFlag = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 4, 9, 1, 1), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOMSnSrcPrevDaySuspectedFlag.setDescription("If true, the data in this entry may be unreliable.")
optIfOMSnSrcPrevDayLastOutputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 4, 9, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOMSnSrcPrevDayLastOutputPower.setDescription("The last optical power monitored at the output during the\nprevious 24-hour interval.")
optIfOMSnSrcPrevDayLowOutputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 4, 9, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOMSnSrcPrevDayLowOutputPower.setDescription("The lowest optical power monitored at the output during the\nprevious 24-hour interval.")
optIfOMSnSrcPrevDayHighOutputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 4, 9, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOMSnSrcPrevDayHighOutputPower.setDescription("The highest optical power monitored at the output during the\nprevious 24-hour interval.")
optIfOMSnSrcPrevDayLastAggregatedInputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 4, 9, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOMSnSrcPrevDayLastAggregatedInputPower.setDescription("The last aggregated optical power at the input during the\nprevious 24-hour interval.")
optIfOMSnSrcPrevDayLowAggregatedInputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 4, 9, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOMSnSrcPrevDayLowAggregatedInputPower.setDescription("The lowest aggregated optical power at the input during the\nprevious 24-hour interval.")
optIfOMSnSrcPrevDayHighAggregatedInputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 4, 9, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOMSnSrcPrevDayHighAggregatedInputPower.setDescription("The highest aggregated optical power at the input during the\nprevious 24-hour interval.")
optIfOChGroup = MibIdentifier((1, 3, 6, 1, 2, 1, 10, 133, 1, 5))
optIfOChGroupConfigTable = MibTable((1, 3, 6, 1, 2, 1, 10, 133, 1, 5, 1))
if mibBuilder.loadTexts: optIfOChGroupConfigTable.setDescription("A table of OChGroup configuration information.")
optIfOChGroupConfigEntry = MibTableRow((1, 3, 6, 1, 2, 1, 10, 133, 1, 5, 1, 1)).setIndexNames((0, "IF-MIB", "ifIndex"))
if mibBuilder.loadTexts: optIfOChGroupConfigEntry.setDescription("A conceptual row that contains OChGroup configuration\ninformation of an interface.")
optIfOChGroupDirectionality = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 5, 1, 1, 1), OptIfDirectionality()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChGroupDirectionality.setDescription("Indicates the directionality of the entity.")
optIfOChGroupSinkCurrentTable = MibTable((1, 3, 6, 1, 2, 1, 10, 133, 1, 5, 2))
if mibBuilder.loadTexts: optIfOChGroupSinkCurrentTable.setDescription("A table of OChGroup sink performance monitoring information for\nthe current 15-minute interval.")
optIfOChGroupSinkCurrentEntry = MibTableRow((1, 3, 6, 1, 2, 1, 10, 133, 1, 5, 2, 1)).setIndexNames((0, "IF-MIB", "ifIndex"))
if mibBuilder.loadTexts: optIfOChGroupSinkCurrentEntry.setDescription("A conceptual row that contains OChGroup sink performance\nmonitoring information of an interface for the current\n15-minute interval.")
optIfOChGroupSinkCurrentSuspectedFlag = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 5, 2, 1, 1), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChGroupSinkCurrentSuspectedFlag.setDescription("If true, the data in this entry may be unreliable.")
optIfOChGroupSinkCurrentAggregatedInputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 5, 2, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChGroupSinkCurrentAggregatedInputPower.setDescription("The aggregated optical power of all the DWDM input\nchannels in the OChGroup.")
optIfOChGroupSinkCurrentLowAggregatedInputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 5, 2, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChGroupSinkCurrentLowAggregatedInputPower.setDescription("The lowest aggregated optical power of all the DWDM input\nchannels in the OChGroup during the current 15-minute interval.")
optIfOChGroupSinkCurrentHighAggregatedInputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 5, 2, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChGroupSinkCurrentHighAggregatedInputPower.setDescription("The highest aggregated optical power of all the DWDM input\nchannels in the OChGroup during the current 15-minute interval.")
optIfOChGroupSinkCurrentLowerInputPowerThreshold = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 5, 2, 1, 5), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: optIfOChGroupSinkCurrentLowerInputPowerThreshold.setDescription("The lower limit threshold on aggregated input power.  If\noptIfOChGroupSinkCurrentAggregatedInputPower drops to this value\nor below, a Threshold Crossing Alert (TCA) should be sent.")
optIfOChGroupSinkCurrentUpperInputPowerThreshold = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 5, 2, 1, 6), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: optIfOChGroupSinkCurrentUpperInputPowerThreshold.setDescription("The upper limit threshold on aggregated input power.  If\noptIfOChGroupSinkCurrentAggregatedInputPower reaches or exceeds\nthis value, a Threshold Crossing Alert (TCA) should be sent.")
optIfOChGroupSinkCurrentOutputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 5, 2, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChGroupSinkCurrentOutputPower.setDescription("The optical power monitored at the output\nin the OChGroup.")
optIfOChGroupSinkCurrentLowOutputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 5, 2, 1, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChGroupSinkCurrentLowOutputPower.setDescription("The lowest optical power monitored at the output\nin the OChGroup during the current 15-minute interval.")
optIfOChGroupSinkCurrentHighOutputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 5, 2, 1, 9), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChGroupSinkCurrentHighOutputPower.setDescription("The highest optical power monitored at the output\nin the OChGroup during the current 15-minute interval.")
optIfOChGroupSinkCurrentLowerOutputPowerThreshold = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 5, 2, 1, 10), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: optIfOChGroupSinkCurrentLowerOutputPowerThreshold.setDescription("The lower limit threshold on the output power.  If\noptIfOChGroupSinkCurrentOutputPower drops to this value\nor below, a Threshold Crossing Alert (TCA) should be sent.")
optIfOChGroupSinkCurrentUpperOutputPowerThreshold = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 5, 2, 1, 11), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: optIfOChGroupSinkCurrentUpperOutputPowerThreshold.setDescription("The upper limit threshold on the output power.  If\noptIfOChGroupSinkCurrentOutputPower reaches or exceeds\nthis value, a Threshold Crossing Alert (TCA) should be sent.")
optIfOChGroupSinkIntervalTable = MibTable((1, 3, 6, 1, 2, 1, 10, 133, 1, 5, 3))
if mibBuilder.loadTexts: optIfOChGroupSinkIntervalTable.setDescription("A table of historical OChGroup sink performance monitoring\ninformation.")
optIfOChGroupSinkIntervalEntry = MibTableRow((1, 3, 6, 1, 2, 1, 10, 133, 1, 5, 3, 1)).setIndexNames((0, "IF-MIB", "ifIndex"), (0, "OPT-IF-MIB", "optIfOChGroupSinkIntervalNumber"))
if mibBuilder.loadTexts: optIfOChGroupSinkIntervalEntry.setDescription("A conceptual row that contains OChGroup sink performance\nmonitoring information of an interface during a particular\nhistorical interval.")
optIfOChGroupSinkIntervalNumber = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 5, 3, 1, 1), OptIfIntervalNumber()).setMaxAccess("noaccess")
if mibBuilder.loadTexts: optIfOChGroupSinkIntervalNumber.setDescription("Uniquely identifies the interval.")
optIfOChGroupSinkIntervalSuspectedFlag = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 5, 3, 1, 2), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChGroupSinkIntervalSuspectedFlag.setDescription("If true, the data in this entry may be unreliable.")
optIfOChGroupSinkIntervalLastAggregatedInputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 5, 3, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChGroupSinkIntervalLastAggregatedInputPower.setDescription("The last aggregated optical power of all the DWDM input\nchannels in the OChGroup during the interval.")
optIfOChGroupSinkIntervalLowAggregatedInputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 5, 3, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChGroupSinkIntervalLowAggregatedInputPower.setDescription("The lowest aggregated optical power of all the DWDM input\nchannels in the OChGroup during the interval.")
optIfOChGroupSinkIntervalHighAggregatedInputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 5, 3, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChGroupSinkIntervalHighAggregatedInputPower.setDescription("The highest aggregated optical power of all the DWDM input\nchannels in the OChGroup during the interval.")
optIfOChGroupSinkIntervalLastOutputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 5, 3, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChGroupSinkIntervalLastOutputPower.setDescription("The last optical power monitored at the output\nin the OChGroup during the interval.")
optIfOChGroupSinkIntervalLowOutputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 5, 3, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChGroupSinkIntervalLowOutputPower.setDescription("The lowest optical power monitored at the output\nin the OChGroup during the interval.")
optIfOChGroupSinkIntervalHighOutputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 5, 3, 1, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChGroupSinkIntervalHighOutputPower.setDescription("The highest optical power monitored at the output\nin the OChGroup during the interval.")
optIfOChGroupSinkCurDayTable = MibTable((1, 3, 6, 1, 2, 1, 10, 133, 1, 5, 4))
if mibBuilder.loadTexts: optIfOChGroupSinkCurDayTable.setDescription("A table of OChGroup sink performance monitoring information for\nthe current 24-hour interval.")
optIfOChGroupSinkCurDayEntry = MibTableRow((1, 3, 6, 1, 2, 1, 10, 133, 1, 5, 4, 1)).setIndexNames((0, "IF-MIB", "ifIndex"))
if mibBuilder.loadTexts: optIfOChGroupSinkCurDayEntry.setDescription("A conceptual row that contains OChGroup sink performance\nmonitoring information of an interface for the current\n24-hour interval.")
optIfOChGroupSinkCurDaySuspectedFlag = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 5, 4, 1, 1), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChGroupSinkCurDaySuspectedFlag.setDescription("If true, the data in this entry may be unreliable.")
optIfOChGroupSinkCurDayLowAggregatedInputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 5, 4, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChGroupSinkCurDayLowAggregatedInputPower.setDescription("The lowest aggregated optical power of all the DWDM input\nchannels in the OChGroup during the current 24-hour interval.")
optIfOChGroupSinkCurDayHighAggregatedInputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 5, 4, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChGroupSinkCurDayHighAggregatedInputPower.setDescription("The highest aggregated optical power of all the DWDM input\nchannels in the OChGroup during the current 24-hour interval.")
optIfOChGroupSinkCurDayLowOutputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 5, 4, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChGroupSinkCurDayLowOutputPower.setDescription("The lowest optical power monitored at the output\nin the OChGroup during the current 24-hour interval.")
optIfOChGroupSinkCurDayHighOutputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 5, 4, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChGroupSinkCurDayHighOutputPower.setDescription("The highest optical power monitored at the output\nin the OChGroup during the current 24-hour interval.")
optIfOChGroupSinkPrevDayTable = MibTable((1, 3, 6, 1, 2, 1, 10, 133, 1, 5, 5))
if mibBuilder.loadTexts: optIfOChGroupSinkPrevDayTable.setDescription("A table of OChGroup sink performance monitoring information for\nthe previous 24-hour interval.")
optIfOChGroupSinkPrevDayEntry = MibTableRow((1, 3, 6, 1, 2, 1, 10, 133, 1, 5, 5, 1)).setIndexNames((0, "IF-MIB", "ifIndex"))
if mibBuilder.loadTexts: optIfOChGroupSinkPrevDayEntry.setDescription("A conceptual row that contains OChGroup sink performance\nmonitoring information of an interface for the previous\n24-hour interval.")
optIfOChGroupSinkPrevDaySuspectedFlag = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 5, 5, 1, 1), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChGroupSinkPrevDaySuspectedFlag.setDescription("If true, the data in this entry may be unreliable.")
optIfOChGroupSinkPrevDayLastAggregatedInputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 5, 5, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChGroupSinkPrevDayLastAggregatedInputPower.setDescription("The last aggregated optical power of all the DWDM input\nchannels in the OChGroup during the previous 24-hour interval.")
optIfOChGroupSinkPrevDayLowAggregatedInputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 5, 5, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChGroupSinkPrevDayLowAggregatedInputPower.setDescription("The lowest aggregated optical power of all the DWDM input\nchannels in the OChGroup during the previous 24-hour interval.")
optIfOChGroupSinkPrevDayHighAggregatedInputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 5, 5, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChGroupSinkPrevDayHighAggregatedInputPower.setDescription("The highest aggregated optical power of all the DWDM input\nchannels in the OChGroup during the previous 24-hour interval.")
optIfOChGroupSinkPrevDayLastOutputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 5, 5, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChGroupSinkPrevDayLastOutputPower.setDescription("The last optical power monitored at the output\nin the OChGroup during the previous 24-hour interval.")
optIfOChGroupSinkPrevDayLowOutputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 5, 5, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChGroupSinkPrevDayLowOutputPower.setDescription("The lowest optical power monitored at the output\nin the OChGroup during the previous 24-hour interval.")
optIfOChGroupSinkPrevDayHighOutputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 5, 5, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChGroupSinkPrevDayHighOutputPower.setDescription("The highest optical power monitored at the output\nin the OChGroup during the previous 24-hour interval.")
optIfOChGroupSrcCurrentTable = MibTable((1, 3, 6, 1, 2, 1, 10, 133, 1, 5, 6))
if mibBuilder.loadTexts: optIfOChGroupSrcCurrentTable.setDescription("A table of OChGroup source performance monitoring information for\nthe current 15-minute interval.")
optIfOChGroupSrcCurrentEntry = MibTableRow((1, 3, 6, 1, 2, 1, 10, 133, 1, 5, 6, 1)).setIndexNames((0, "IF-MIB", "ifIndex"))
if mibBuilder.loadTexts: optIfOChGroupSrcCurrentEntry.setDescription("A conceptual row that contains OChGroup source performance\nmonitoring information of an interface for the current\n15-minute interval.")
optIfOChGroupSrcCurrentSuspectedFlag = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 5, 6, 1, 1), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChGroupSrcCurrentSuspectedFlag.setDescription("If true, the data in this entry may be unreliable.")
optIfOChGroupSrcCurrentOutputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 5, 6, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChGroupSrcCurrentOutputPower.setDescription("The optical power monitored at the output.")
optIfOChGroupSrcCurrentLowOutputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 5, 6, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChGroupSrcCurrentLowOutputPower.setDescription("The lowest optical power monitored at the output during the\ncurrent 15-minute interval.")
optIfOChGroupSrcCurrentHighOutputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 5, 6, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChGroupSrcCurrentHighOutputPower.setDescription("The highest optical power monitored at the output during the\ncurrent 15-minute interval.")
optIfOChGroupSrcCurrentLowerOutputPowerThreshold = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 5, 6, 1, 5), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: optIfOChGroupSrcCurrentLowerOutputPowerThreshold.setDescription("The lower limit threshold on output power.  If\noptIfOChGroupSrcCurrentOutputPower drops to this value or below,\na Threshold Crossing Alert (TCA) should be sent.")
optIfOChGroupSrcCurrentUpperOutputPowerThreshold = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 5, 6, 1, 6), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: optIfOChGroupSrcCurrentUpperOutputPowerThreshold.setDescription("The upper limit threshold on output power.  If\noptIfOChGroupSrcCurrentOutputPower reaches or exceeds this value,\na Threshold Crossing Alert (TCA) should be sent.")
optIfOChGroupSrcCurrentAggregatedInputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 5, 6, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChGroupSrcCurrentAggregatedInputPower.setDescription("The aggregated optical power monitored at the input.")
optIfOChGroupSrcCurrentLowAggregatedInputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 5, 6, 1, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChGroupSrcCurrentLowAggregatedInputPower.setDescription("The lowest aggregated optical power monitored at the input\nduring the current 15-minute interval.")
optIfOChGroupSrcCurrentHighAggregatedInputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 5, 6, 1, 9), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChGroupSrcCurrentHighAggregatedInputPower.setDescription("The highest aggregated optical power monitored at the input\nduring the current 15-minute interval.")
optIfOChGroupSrcCurrentLowerInputPowerThreshold = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 5, 6, 1, 10), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: optIfOChGroupSrcCurrentLowerInputPowerThreshold.setDescription("The lower limit threshold on input power.  If\noptIfOChGroupSrcCurrentAggregatedInputPower drops to this value\nor below, a Threshold Crossing Alert (TCA) should be sent.")
optIfOChGroupSrcCurrentUpperInputPowerThreshold = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 5, 6, 1, 11), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: optIfOChGroupSrcCurrentUpperInputPowerThreshold.setDescription("The upper limit threshold on input power.  If\noptIfOChGroupSrcCurrentAggregatedInputPower reaches or exceeds\nthis value, a Threshold Crossing Alert (TCA) should be sent.")
optIfOChGroupSrcIntervalTable = MibTable((1, 3, 6, 1, 2, 1, 10, 133, 1, 5, 7))
if mibBuilder.loadTexts: optIfOChGroupSrcIntervalTable.setDescription("A table of historical OChGroup source performance monitoring\ninformation.")
optIfOChGroupSrcIntervalEntry = MibTableRow((1, 3, 6, 1, 2, 1, 10, 133, 1, 5, 7, 1)).setIndexNames((0, "IF-MIB", "ifIndex"), (0, "OPT-IF-MIB", "optIfOChGroupSrcIntervalNumber"))
if mibBuilder.loadTexts: optIfOChGroupSrcIntervalEntry.setDescription("A conceptual row that contains OChGroup source performance\nmonitoring information of an interface during a particular\nhistorical interval.")
optIfOChGroupSrcIntervalNumber = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 5, 7, 1, 1), OptIfIntervalNumber()).setMaxAccess("noaccess")
if mibBuilder.loadTexts: optIfOChGroupSrcIntervalNumber.setDescription("Uniquely identifies the interval.")
optIfOChGroupSrcIntervalSuspectedFlag = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 5, 7, 1, 2), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChGroupSrcIntervalSuspectedFlag.setDescription("If true, the data in this entry may be unreliable.")
optIfOChGroupSrcIntervalLastOutputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 5, 7, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChGroupSrcIntervalLastOutputPower.setDescription("The last optical power monitored at the output during the\ninterval.")
optIfOChGroupSrcIntervalLowOutputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 5, 7, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChGroupSrcIntervalLowOutputPower.setDescription("The lowest optical power monitored at the output during the\ninterval.")
optIfOChGroupSrcIntervalHighOutputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 5, 7, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChGroupSrcIntervalHighOutputPower.setDescription("The highest optical power monitored at the output during the\ninterval.")
optIfOChGroupSrcIntervalLastAggregatedInputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 5, 7, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChGroupSrcIntervalLastAggregatedInputPower.setDescription("The last aggregated optical power monitored at the input\nduring the interval.")
optIfOChGroupSrcIntervalLowAggregatedInputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 5, 7, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChGroupSrcIntervalLowAggregatedInputPower.setDescription("The lowest aggregated optical power monitored at the input\nduring the interval.")
optIfOChGroupSrcIntervalHighAggregatedInputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 5, 7, 1, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChGroupSrcIntervalHighAggregatedInputPower.setDescription("The highest aggregated optical power monitored at the input\nduring the interval.")
optIfOChGroupSrcCurDayTable = MibTable((1, 3, 6, 1, 2, 1, 10, 133, 1, 5, 8))
if mibBuilder.loadTexts: optIfOChGroupSrcCurDayTable.setDescription("A table of OChGroup source performance monitoring information for\nthe current 24-hour interval.")
optIfOChGroupSrcCurDayEntry = MibTableRow((1, 3, 6, 1, 2, 1, 10, 133, 1, 5, 8, 1)).setIndexNames((0, "IF-MIB", "ifIndex"))
if mibBuilder.loadTexts: optIfOChGroupSrcCurDayEntry.setDescription("A conceptual row that contains OChGroup source performance\nmonitoring information of an interface for the current\n24-hour interval.")
optIfOChGroupSrcCurDaySuspectedFlag = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 5, 8, 1, 1), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChGroupSrcCurDaySuspectedFlag.setDescription("If true, the data in this entry may be unreliable.")
optIfOChGroupSrcCurDayLowOutputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 5, 8, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChGroupSrcCurDayLowOutputPower.setDescription("The lowest optical power monitored at the output during the\ncurrent 24-hour interval.")
optIfOChGroupSrcCurDayHighOutputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 5, 8, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChGroupSrcCurDayHighOutputPower.setDescription("The highest optical power monitored at the output during the\ncurrent 24-hour interval.")
optIfOChGroupSrcCurDayLowAggregatedInputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 5, 8, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChGroupSrcCurDayLowAggregatedInputPower.setDescription("The lowest aggregated optical power monitored at the input\nduring the current 24-hour interval.")
optIfOChGroupSrcCurDayHighAggregatedInputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 5, 8, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChGroupSrcCurDayHighAggregatedInputPower.setDescription("The highest aggregated optical power monitored at the input\nduring the current 24-hour interval.")
optIfOChGroupSrcPrevDayTable = MibTable((1, 3, 6, 1, 2, 1, 10, 133, 1, 5, 9))
if mibBuilder.loadTexts: optIfOChGroupSrcPrevDayTable.setDescription("A table of OChGroup source performance monitoring information for\nthe previous 24-hour interval.")
optIfOChGroupSrcPrevDayEntry = MibTableRow((1, 3, 6, 1, 2, 1, 10, 133, 1, 5, 9, 1)).setIndexNames((0, "IF-MIB", "ifIndex"))
if mibBuilder.loadTexts: optIfOChGroupSrcPrevDayEntry.setDescription("A conceptual row that contains OChGroup source performance\nmonitoring information of an interface for the previous\n24-hour interval.")
optIfOChGroupSrcPrevDaySuspectedFlag = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 5, 9, 1, 1), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChGroupSrcPrevDaySuspectedFlag.setDescription("If true, the data in this entry may be unreliable.")
optIfOChGroupSrcPrevDayLastOutputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 5, 9, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChGroupSrcPrevDayLastOutputPower.setDescription("The last optical power monitored at the output during the\nprevious 24-hour interval.")
optIfOChGroupSrcPrevDayLowOutputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 5, 9, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChGroupSrcPrevDayLowOutputPower.setDescription("The lowest optical power monitored at the output during the\nprevious 24-hour interval.")
optIfOChGroupSrcPrevDayHighOutputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 5, 9, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChGroupSrcPrevDayHighOutputPower.setDescription("The highest optical power monitored at the output during the\nprevious 24-hour interval.")
optIfOChGroupSrcPrevDayLastAggregatedInputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 5, 9, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChGroupSrcPrevDayLastAggregatedInputPower.setDescription("The last aggregated optical power monitored at the input\nduring the previous 24-hour interval.")
optIfOChGroupSrcPrevDayLowAggregatedInputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 5, 9, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChGroupSrcPrevDayLowAggregatedInputPower.setDescription("The lowest aggregated optical power monitored at the input\nduring the previous 24-hour interval.")
optIfOChGroupSrcPrevDayHighAggregatedInputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 5, 9, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChGroupSrcPrevDayHighAggregatedInputPower.setDescription("The highest aggregated optical power monitored at the input\nduring the previous 24-hour interval.")
optIfOCh = MibIdentifier((1, 3, 6, 1, 2, 1, 10, 133, 1, 6))
optIfOChConfigTable = MibTable((1, 3, 6, 1, 2, 1, 10, 133, 1, 6, 1))
if mibBuilder.loadTexts: optIfOChConfigTable.setDescription("A table of OCh configuration information.")
optIfOChConfigEntry = MibTableRow((1, 3, 6, 1, 2, 1, 10, 133, 1, 6, 1, 1)).setIndexNames((0, "IF-MIB", "ifIndex"))
if mibBuilder.loadTexts: optIfOChConfigEntry.setDescription("A conceptual row that contains OCh configuration\ninformation of an interface.")
optIfOChDirectionality = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 6, 1, 1, 1), OptIfDirectionality()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChDirectionality.setDescription("Indicates the directionality of the entity.")
optIfOChCurrentStatus = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 6, 1, 1, 2), Bits().subtype(namedValues=NamedValues(("losP", 0), ("los", 1), ("oci", 2), ("ssfP", 3), ("ssfO", 4), ("ssf", 5), ))).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChCurrentStatus.setDescription("Indicates the defect condition of the entity, if any.\nThis object is applicable when optIfOChDirectionality\nhas the value sink(1) or bidirectional(3).\nIn full-capability systems the bit position los(1) is not used.\nIn reduced-capability systems or at IrDI interfaces only\nthe bit positions los(1) and ssfP(3) are used.")
optIfOChSinkCurrentTable = MibTable((1, 3, 6, 1, 2, 1, 10, 133, 1, 6, 2))
if mibBuilder.loadTexts: optIfOChSinkCurrentTable.setDescription("A table of OCh sink performance monitoring information for\nthe current 15-minute interval.")
optIfOChSinkCurrentEntry = MibTableRow((1, 3, 6, 1, 2, 1, 10, 133, 1, 6, 2, 1)).setIndexNames((0, "IF-MIB", "ifIndex"))
if mibBuilder.loadTexts: optIfOChSinkCurrentEntry.setDescription("A conceptual row that contains OCh sink performance\nmonitoring information for an interface for the current\n15-minute interval.")
optIfOChSinkCurrentSuspectedFlag = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 6, 2, 1, 1), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChSinkCurrentSuspectedFlag.setDescription("If true, the data in this entry may be unreliable.")
optIfOChSinkCurrentInputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 6, 2, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChSinkCurrentInputPower.setDescription("The optical power monitored at the input.")
optIfOChSinkCurrentLowInputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 6, 2, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChSinkCurrentLowInputPower.setDescription("The lowest optical power monitored at the input during the\ncurrent 15-minute interval.")
optIfOChSinkCurrentHighInputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 6, 2, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChSinkCurrentHighInputPower.setDescription("The highest optical power monitored at the input during the\ncurrent 15-minute interval.")
optIfOChSinkCurrentLowerInputPowerThreshold = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 6, 2, 1, 5), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: optIfOChSinkCurrentLowerInputPowerThreshold.setDescription("The lower limit threshold on input power.  If\noptIfOChSinkCurrentInputPower drops to this value or below,\na Threshold Crossing Alert (TCA) should be sent.")
optIfOChSinkCurrentUpperInputPowerThreshold = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 6, 2, 1, 6), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: optIfOChSinkCurrentUpperInputPowerThreshold.setDescription("The upper limit threshold on input power.  If\noptIfOChSinkCurrentInputPower reaches or exceeds this value,\na Threshold Crossing Alert (TCA) should be sent.")
optIfOChSinkIntervalTable = MibTable((1, 3, 6, 1, 2, 1, 10, 133, 1, 6, 3))
if mibBuilder.loadTexts: optIfOChSinkIntervalTable.setDescription("A table of historical OCh sink performance monitoring\ninformation.")
optIfOChSinkIntervalEntry = MibTableRow((1, 3, 6, 1, 2, 1, 10, 133, 1, 6, 3, 1)).setIndexNames((0, "IF-MIB", "ifIndex"), (0, "OPT-IF-MIB", "optIfOChSinkIntervalNumber"))
if mibBuilder.loadTexts: optIfOChSinkIntervalEntry.setDescription("A conceptual row that contains OCh sink performance\nmonitoring information of an interface during a particular\nhistorical interval.")
optIfOChSinkIntervalNumber = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 6, 3, 1, 1), OptIfIntervalNumber()).setMaxAccess("noaccess")
if mibBuilder.loadTexts: optIfOChSinkIntervalNumber.setDescription("Uniquely identifies the interval.")
optIfOChSinkIntervalSuspectedFlag = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 6, 3, 1, 2), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChSinkIntervalSuspectedFlag.setDescription("If true, the data in this entry may be unreliable.")
optIfOChSinkIntervalLastInputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 6, 3, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChSinkIntervalLastInputPower.setDescription("The last optical power monitored at the input during the\ninterval.")
optIfOChSinkIntervalLowInputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 6, 3, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChSinkIntervalLowInputPower.setDescription("The lowest optical power monitored at the input during the\ninterval.")
optIfOChSinkIntervalHighInputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 6, 3, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChSinkIntervalHighInputPower.setDescription("The highest optical power monitored at the input during the\ninterval.")
optIfOChSinkCurDayTable = MibTable((1, 3, 6, 1, 2, 1, 10, 133, 1, 6, 4))
if mibBuilder.loadTexts: optIfOChSinkCurDayTable.setDescription("A table of OCh sink performance monitoring information for\nthe current 24-hour interval.")
optIfOChSinkCurDayEntry = MibTableRow((1, 3, 6, 1, 2, 1, 10, 133, 1, 6, 4, 1)).setIndexNames((0, "IF-MIB", "ifIndex"))
if mibBuilder.loadTexts: optIfOChSinkCurDayEntry.setDescription("A conceptual row that contains OCh sink performance\nmonitoring information of an interface for the current\n24-hour interval.")
optIfOChSinkCurDaySuspectedFlag = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 6, 4, 1, 1), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChSinkCurDaySuspectedFlag.setDescription("If true, the data in this entry may be unreliable.")
optIfOChSinkCurDayLowInputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 6, 4, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChSinkCurDayLowInputPower.setDescription("The lowest optical power monitored at the input during the\ncurrent 24-hour interval.")
optIfOChSinkCurDayHighInputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 6, 4, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChSinkCurDayHighInputPower.setDescription("The highest optical power monitored at the input during the\ncurrent 24-hour interval.")
optIfOChSinkPrevDayTable = MibTable((1, 3, 6, 1, 2, 1, 10, 133, 1, 6, 5))
if mibBuilder.loadTexts: optIfOChSinkPrevDayTable.setDescription("A table of OCh sink performance monitoring information for\nthe previous 24-hour interval.")
optIfOChSinkPrevDayEntry = MibTableRow((1, 3, 6, 1, 2, 1, 10, 133, 1, 6, 5, 1)).setIndexNames((0, "IF-MIB", "ifIndex"))
if mibBuilder.loadTexts: optIfOChSinkPrevDayEntry.setDescription("A conceptual row that contains OCh sink performance\nmonitoring information of an interface for the previous\n24-hour interval.")
optIfOChSinkPrevDaySuspectedFlag = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 6, 5, 1, 1), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChSinkPrevDaySuspectedFlag.setDescription("If true, the data in this entry may be unreliable.")
optIfOChSinkPrevDayLastInputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 6, 5, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChSinkPrevDayLastInputPower.setDescription("The last optical power monitored at the input during the\nprevious 24-hour interval.")
optIfOChSinkPrevDayLowInputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 6, 5, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChSinkPrevDayLowInputPower.setDescription("The lowest optical power monitored at the input during the\nprevious 24-hour interval.")
optIfOChSinkPrevDayHighInputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 6, 5, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChSinkPrevDayHighInputPower.setDescription("The highest optical power monitored at the input during the\nprevious 24-hour interval.")
optIfOChSrcCurrentTable = MibTable((1, 3, 6, 1, 2, 1, 10, 133, 1, 6, 6))
if mibBuilder.loadTexts: optIfOChSrcCurrentTable.setDescription("A table of OCh source performance monitoring information for\nthe current 15-minute interval.")
optIfOChSrcCurrentEntry = MibTableRow((1, 3, 6, 1, 2, 1, 10, 133, 1, 6, 6, 1)).setIndexNames((0, "IF-MIB", "ifIndex"))
if mibBuilder.loadTexts: optIfOChSrcCurrentEntry.setDescription("A conceptual row that contains OCh source performance\nmonitoring information of an interface for the current\n15-minute interval.")
optIfOChSrcCurrentSuspectedFlag = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 6, 6, 1, 1), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChSrcCurrentSuspectedFlag.setDescription("If true, the data in this entry may be unreliable.")
optIfOChSrcCurrentOutputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 6, 6, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChSrcCurrentOutputPower.setDescription("The optical power monitored at the output.")
optIfOChSrcCurrentLowOutputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 6, 6, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChSrcCurrentLowOutputPower.setDescription("The lowest optical power monitored at the output during the\ncurrent 15-minute interval.")
optIfOChSrcCurrentHighOutputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 6, 6, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChSrcCurrentHighOutputPower.setDescription("The highest optical power monitored at the output during the\ncurrent 15-minute interval.")
optIfOChSrcCurrentLowerOutputPowerThreshold = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 6, 6, 1, 5), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: optIfOChSrcCurrentLowerOutputPowerThreshold.setDescription("The lower limit threshold on output power.  If\noptIfOChSrcCurrentOutputPower drops to this value or below,\na Threshold Crossing Alert (TCA) should be sent.")
optIfOChSrcCurrentUpperOutputPowerThreshold = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 6, 6, 1, 6), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: optIfOChSrcCurrentUpperOutputPowerThreshold.setDescription("The upper limit threshold on output power.  If\noptIfOChSrcCurrentOutputPower reaches or exceeds this value,\na Threshold Crossing Alert (TCA) should be sent.")
optIfOChSrcIntervalTable = MibTable((1, 3, 6, 1, 2, 1, 10, 133, 1, 6, 7))
if mibBuilder.loadTexts: optIfOChSrcIntervalTable.setDescription("A table of historical OCh source performance monitoring\ninformation.")
optIfOChSrcIntervalEntry = MibTableRow((1, 3, 6, 1, 2, 1, 10, 133, 1, 6, 7, 1)).setIndexNames((0, "IF-MIB", "ifIndex"), (0, "OPT-IF-MIB", "optIfOChSrcIntervalNumber"))
if mibBuilder.loadTexts: optIfOChSrcIntervalEntry.setDescription("A conceptual row that contains OCh source performance\nmonitoring information of an interface during a particular\nhistorical interval.")
optIfOChSrcIntervalNumber = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 6, 7, 1, 1), OptIfIntervalNumber()).setMaxAccess("noaccess")
if mibBuilder.loadTexts: optIfOChSrcIntervalNumber.setDescription("Uniquely identifies the interval.")
optIfOChSrcIntervalSuspectedFlag = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 6, 7, 1, 2), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChSrcIntervalSuspectedFlag.setDescription("If true, the data in this entry may be unreliable.")
optIfOChSrcIntervalLastOutputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 6, 7, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChSrcIntervalLastOutputPower.setDescription("The last optical power monitored at the output during the\ninterval.")
optIfOChSrcIntervalLowOutputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 6, 7, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChSrcIntervalLowOutputPower.setDescription("The lowest optical power monitored at the output during the\ninterval.")
optIfOChSrcIntervalHighOutputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 6, 7, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChSrcIntervalHighOutputPower.setDescription("The highest optical power monitored at the output during the\ninterval.")
optIfOChSrcCurDayTable = MibTable((1, 3, 6, 1, 2, 1, 10, 133, 1, 6, 8))
if mibBuilder.loadTexts: optIfOChSrcCurDayTable.setDescription("A table of OCh source performance monitoring information for\nthe current 24-hour interval.")
optIfOChSrcCurDayEntry = MibTableRow((1, 3, 6, 1, 2, 1, 10, 133, 1, 6, 8, 1)).setIndexNames((0, "IF-MIB", "ifIndex"))
if mibBuilder.loadTexts: optIfOChSrcCurDayEntry.setDescription("A conceptual row that contains OCh source performance\nmonitoring information of an interface for the current\n24-hour interval.")
optIfOChSrcCurDaySuspectedFlag = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 6, 8, 1, 1), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChSrcCurDaySuspectedFlag.setDescription("If true, the data in this entry may be unreliable.")
optIfOChSrcCurDayLowOutputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 6, 8, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChSrcCurDayLowOutputPower.setDescription("The lowest optical power monitored at the output during the\n\n\n\ncurrent 24-hour interval.")
optIfOChSrcCurDayHighOutputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 6, 8, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChSrcCurDayHighOutputPower.setDescription("The highest optical power monitored at the output during the\ncurrent 24-hour interval.")
optIfOChSrcPrevDayTable = MibTable((1, 3, 6, 1, 2, 1, 10, 133, 1, 6, 9))
if mibBuilder.loadTexts: optIfOChSrcPrevDayTable.setDescription("A table of OCh source performance monitoring information for\nthe previous 24-hour interval.")
optIfOChSrcPrevDayEntry = MibTableRow((1, 3, 6, 1, 2, 1, 10, 133, 1, 6, 9, 1)).setIndexNames((0, "IF-MIB", "ifIndex"))
if mibBuilder.loadTexts: optIfOChSrcPrevDayEntry.setDescription("A conceptual row that contains OCh source performance\nmonitoring information of an interface for the previous\n24-hour interval.")
optIfOChSrcPrevDaySuspectedFlag = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 6, 9, 1, 1), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChSrcPrevDaySuspectedFlag.setDescription("If true, the data in this entry may be unreliable.")
optIfOChSrcPrevDayLastOutputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 6, 9, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChSrcPrevDayLastOutputPower.setDescription("The last optical power monitored at the output during the\nprevious 24-hour interval.")
optIfOChSrcPrevDayLowOutputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 6, 9, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChSrcPrevDayLowOutputPower.setDescription("The lowest optical power monitored at the output during the\nprevious 24-hour interval.")
optIfOChSrcPrevDayHighOutputPower = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 6, 9, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOChSrcPrevDayHighOutputPower.setDescription("The highest optical power monitored at the output during the\nprevious 24-hour interval.")
optIfOTUk = MibIdentifier((1, 3, 6, 1, 2, 1, 10, 133, 1, 7))
optIfOTUkConfigTable = MibTable((1, 3, 6, 1, 2, 1, 10, 133, 1, 7, 1))
if mibBuilder.loadTexts: optIfOTUkConfigTable.setDescription("A table of OTUk configuration information.")
optIfOTUkConfigEntry = MibTableRow((1, 3, 6, 1, 2, 1, 10, 133, 1, 7, 1, 1)).setIndexNames((0, "IF-MIB", "ifIndex"))
if mibBuilder.loadTexts: optIfOTUkConfigEntry.setDescription("A conceptual row that contains OTUk configuration\ninformation of an interface.")
optIfOTUkDirectionality = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 7, 1, 1, 1), OptIfDirectionality()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOTUkDirectionality.setDescription("Indicates the directionality of the entity.")
optIfOTUkBitRateK = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 7, 1, 1, 2), OptIfBitRateK()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOTUkBitRateK.setDescription("Indicates the bit rate of the entity.")
optIfOTUkTraceIdentifierTransmitted = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 7, 1, 1, 3), OptIfTxTI()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: optIfOTUkTraceIdentifierTransmitted.setDescription("The trace identifier transmitted.\nThis object is applicable when optIfOTUkDirectionality\nhas the value source(2) or bidirectional(3).  It must not\nbe instantiated in rows where optIfOTUkDirectionality\nhas the value sink(1).\nIf no value is ever set by a management entity for this\nobject, system-specific default value will be used.\nAny implementation that instantiates this object must\ndocument the system-specific default value or how it\nis derived.")
optIfOTUkDAPIExpected = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 7, 1, 1, 4), OptIfExDAPI()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: optIfOTUkDAPIExpected.setDescription("The DAPI expected by the receiver.\nThis object is only applicable to the sink function, i.e.,\nonly when optIfOTUkDirectionality has the value sink(1)\nor bidirectional(3).  It must not be instantiated in rows\nwhere optIfOTUkDirectionality has the value source(2).\nThis object has no effect when optIfOTUkTIMDetMode has\nthe value off(1).")
optIfOTUkSAPIExpected = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 7, 1, 1, 5), OptIfExSAPI()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: optIfOTUkSAPIExpected.setDescription("The SAPI expected by the receiver.\nThis object is only applicable to the sink function, i.e.,\nonly when optIfOTUkDirectionality has the value sink(1)\nor bidirectional(3).  It must not be instantiated in rows\nwhere optIfOTUkDirectionality has the value source(2).\nThis object has no effect when optIfOTUkTIMDetMode has\nthe value off(1).")
optIfOTUkTraceIdentifierAccepted = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 7, 1, 1, 6), OptIfAcTI()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOTUkTraceIdentifierAccepted.setDescription("The actual trace identifier accepted.\nThis object is only applicable to the sink function, i.e.,\n\n\n\nonly when optIfOTUkDirectionality has the value sink(1)\nor bidirectional(3).  It must not be instantiated in rows\nwhere optIfOTUkDirectionality has the value source(2).\nThe value of this object is unspecified when\noptIfOTUkCurrentStatus indicates a near-end defect\n(i.e., ssf(3), lof(4), ais(5), lom(6)) that prevents\nextraction of the trace message.")
optIfOTUkTIMDetMode = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 7, 1, 1, 7), OptIfTIMDetMode()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: optIfOTUkTIMDetMode.setDescription("Indicates the mode of the Trace Identifier Mismatch (TIM)\nDetection function.\nThis object is only applicable to the sink function, i.e.,\nonly when optIfOTUkDirectionality has the value sink(1)\nor bidirectional(3).  It must not be instantiated in rows\nwhere optIfOTUkDirectionality has the value source(2).\nThe default value of this object is off(1).")
optIfOTUkTIMActEnabled = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 7, 1, 1, 8), TruthValue()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: optIfOTUkTIMActEnabled.setDescription("Indicates whether the Trace Identifier Mismatch (TIM)\nConsequent Action function is enabled.\nThis object is only applicable to the sink function, i.e.,\nonly when optIfOTUkDirectionality has the value sink(1)\nor bidirectional(3).  It must not be instantiated in rows\nwhere optIfOTUkDirectionality has the value source(2).\nThis object has no effect when optIfOTUkTIMDetMode has\nthe value off(1).\nThe default value of this object is false(2).")
optIfOTUkDEGThr = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 7, 1, 1, 9), OptIfDEGThr()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: optIfOTUkDEGThr.setDescription("Indicates the threshold level for declaring a performance\nmonitoring (PM) Second to be bad.  A PM Second is declared bad if\nthe percentage of detected errored blocks in that second is\n\n\n\ngreater than or equal to optIfOTUkDEGThr.\nThis object is only applicable to the sink function, i.e.,\nonly when optIfOTUkDirectionality has the value sink(1)\nor bidirectional(3).  It must not be instantiated in rows\nwhere optIfOTUkDirectionality has the value source(2).\nThe default value of this object is Severely Errored Second\n(SES) Estimator (See ITU-T G.7710).")
optIfOTUkDEGM = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 7, 1, 1, 10), OptIfDEGM()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: optIfOTUkDEGM.setDescription("Indicates the threshold level for declaring a Degraded Signal\ndefect (dDEG).  A dDEG shall be declared if optIfOTUkDEGM\nconsecutive bad PM Seconds are detected.\nThis object is only applicable to the sink function, i.e.,\nonly when optIfOTUkDirectionality has the value sink(1)\nor bidirectional(3).  It must not be instantiated in rows\nwhere optIfOTUkDirectionality has the value source(2).\nThe default value of this object is 7 (See ITU-T G.7710).")
optIfOTUkSinkAdaptActive = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 7, 1, 1, 11), TruthValue()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: optIfOTUkSinkAdaptActive.setDescription("Indicates whether the sink adaptation function is activated or\nnot.\nThis object is only applicable to the sink function, i.e.,\nonly when optIfOTUkDirectionality has the value sink(1)\nor bidirectional(3).  It must not be instantiated in rows\nwhere optIfOTUkDirectionality has the value source(2).\nThe default value of this object is false(2).")
optIfOTUkSourceAdaptActive = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 7, 1, 1, 12), TruthValue()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: optIfOTUkSourceAdaptActive.setDescription("Indicates whether the source adaptation function is activated or\nnot.\nThis object is only applicable to the source function, i.e.,\nonly when optIfOTUkDirectionality has the value source(2)\nor bidirectional(3).  It must not be instantiated in rows\n\n\n\nwhere optIfOTUkDirectionality has the value sink(1).\nThe default value of this object is false(2).")
optIfOTUkSinkFECEnabled = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 7, 1, 1, 13), TruthValue()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: optIfOTUkSinkFECEnabled.setDescription("If Forward Error Correction (FEC) is supported, this object\nindicates whether FEC at the OTUk sink adaptation function is\nenabled or not.\nThis object is only applicable to the sink function, i.e.,\nonly when optIfOTUkDirectionality has the value sink(1)\nor bidirectional(3).  It must not be instantiated in rows\nwhere optIfOTUkDirectionality has the value source(2).\nThe default value of this object is true(1).")
optIfOTUkCurrentStatus = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 7, 1, 1, 14), Bits().subtype(namedValues=NamedValues(("tim", 0), ("deg", 1), ("bdi", 2), ("ssf", 3), ("lof", 4), ("ais", 5), ("lom", 6), ))).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfOTUkCurrentStatus.setDescription("Indicates the defect condition of the entity, if any.\nThis object is only applicable to the sink function, i.e.,\nonly when optIfOTUkDirectionality has the value sink(1)\nor bidirectional(3).  It must not be instantiated in rows\nwhere optIfOTUkDirectionality has the value source(2).")
optIfGCC0ConfigTable = MibTable((1, 3, 6, 1, 2, 1, 10, 133, 1, 7, 2))
if mibBuilder.loadTexts: optIfGCC0ConfigTable.setDescription("A table of GCC0 configuration information.")
optIfGCC0ConfigEntry = MibTableRow((1, 3, 6, 1, 2, 1, 10, 133, 1, 7, 2, 1)).setIndexNames((0, "IF-MIB", "ifIndex"), (0, "OPT-IF-MIB", "optIfGCC0Directionality"))
if mibBuilder.loadTexts: optIfGCC0ConfigEntry.setDescription("A conceptual row that contains GCC0 configuration\ninformation of an interface.  Each instance must\ncorrespond to an instance of optIfOTUkConfigEntry.\nSeparate source and/or sink instances may exist\nfor a given ifIndex value, or a single bidirectional\ninstance may exist, but a bidirectional instance may\nnot coexist with a source or sink instance.\nInstances of this conceptual row persist across\nagent restarts.")
optIfGCC0Directionality = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 7, 2, 1, 1), OptIfDirectionality()).setMaxAccess("noaccess")
if mibBuilder.loadTexts: optIfGCC0Directionality.setDescription("Indicates the directionality of the entity.\nThe values source(2) and bidirectional(3) are\nnot allowed if the corresponding instance of\noptIfOTUkDirectionality has the value sink(1).\nThe values sink(1) and bidirectional(3) are\nnot allowed if the corresponding instance of\noptIfOTUkDirectionality has the value source(2).")
optIfGCC0Application = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 7, 2, 1, 2), SnmpAdminString()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: optIfGCC0Application.setDescription("Indicates the application transported by the GCC0 entity.\nExample applications are ECC, User data channel.\n\nThe value of this object may not be changed when\noptIfGCC0RowStatus has the value active(1).")
optIfGCC0RowStatus = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 7, 2, 1, 3), RowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: optIfGCC0RowStatus.setDescription("This columnar object is used for creating and deleting a\nconceptual row of the optIfGCC0 config table.\nIt is used to model the addGCC0Access and removeGCC0Access\noperations of an OTUk_TTP for GCC0 access control as defined\nin G.874.1.  Setting RowStatus to createAndGo or createAndWait\nimplies addGCC0Access.  Setting RowStatus to destroy implies\nremoveGCC0Access.")
optIfODUk = MibIdentifier((1, 3, 6, 1, 2, 1, 10, 133, 1, 8))
optIfODUkConfigTable = MibTable((1, 3, 6, 1, 2, 1, 10, 133, 1, 8, 1))
if mibBuilder.loadTexts: optIfODUkConfigTable.setDescription("A table of ODUk configuration information.")
optIfODUkConfigEntry = MibTableRow((1, 3, 6, 1, 2, 1, 10, 133, 1, 8, 1, 1)).setIndexNames((0, "IF-MIB", "ifIndex"))
if mibBuilder.loadTexts: optIfODUkConfigEntry.setDescription("A conceptual row that contains ODUk configuration\ninformation of an interface.")
optIfODUkDirectionality = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 8, 1, 1, 1), OptIfDirectionality()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfODUkDirectionality.setDescription("Indicates the directionality of the entity.")
optIfODUkBitRateK = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 8, 1, 1, 2), OptIfBitRateK()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfODUkBitRateK.setDescription("Indicates the bit rate of the entity.")
optIfODUkTcmFieldsInUse = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 8, 1, 1, 3), Bits().subtype(namedValues=NamedValues(("tcmField1", 0), ("tcmField2", 1), ("tcmField3", 2), ("tcmField4", 3), ("tcmField5", 4), ("tcmField6", 5), ))).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfODUkTcmFieldsInUse.setDescription("Indicates the TCM field(s) that are currently in use.\nThe positions of the bits correspond to the TCM fields.\nA bit that is set to 1 means that the corresponding TCM\nfield is used.  This object will be updated when rows are\ncreated in or deleted from the optIfODUkTConfigTable, or\nthe optIfODUkTNimConfigTable.")
optIfODUkPositionSeqCurrentSize = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 8, 1, 1, 4), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfODUkPositionSeqCurrentSize.setDescription("This variable indicates the current size of the position\nsequence (i.e., number of TCM function and/or GCC12\naccess that have been created in the ODUk interface).\nWhen the value of this variable is greater than zero,\nit means that one or more TCM function and/or GCC12\naccess have been created in the ODUk interface.  In this\ncase, there will be as many rows in the\n\n\n\noptIfODUkPositionSeqTable as the value of\noptIfODUkPositionSeqCurrentSize  corresponding to this\nODUk interface, one row for each TCM function or GCC12\naccess.  The position of the TCM function and/or\nGCC12 access within the sequence is indicated by the\noptIfODUkPositionSeqPosition variable in\noptIfODUkPositionSeqTable.\nThe optIfODUkPositionSeqTable also provides pointers\nto the corresponding TCM function (optIfODUkT) and\nGCC12 access (optIfGCC12) entities.")
optIfODUkTtpPresent = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 8, 1, 1, 5), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfODUkTtpPresent.setDescription("This object has the value true(1) if the ifEntry under which\nit is instantiated contains an ODUk Trail Termination Point,\ni.e., is the endpoint of an ODUk path.  In that case there\nwill be a corresponding row in the ODUk TTP config table and\nit will not be possible to create corresponding rows in the\nODUk NIM config table.  This object has the value false(2)\nif the ifEntry under which it is instantiated contains an\nintermediate ODUk Connection Termination Point.  In that case\nthere is no corresponding row in the ODUk TTP config table,\nbut it will be possible to create corresponding rows in the\nODUk NIM config table.  This object also affects the allowable\noptions in rows created in the GCC12 config table and in the\nODUkT config table, as specified in the DESCRIPTION clauses\nof the columns in those tables.")
optIfODUkTtpConfigTable = MibTable((1, 3, 6, 1, 2, 1, 10, 133, 1, 8, 2))
if mibBuilder.loadTexts: optIfODUkTtpConfigTable.setDescription("A table of ODUk TTP configuration information.")
optIfODUkTtpConfigEntry = MibTableRow((1, 3, 6, 1, 2, 1, 10, 133, 1, 8, 2, 1)).setIndexNames((0, "IF-MIB", "ifIndex"))
if mibBuilder.loadTexts: optIfODUkTtpConfigEntry.setDescription("A conceptual row that contains ODUk TTP configuration\ninformation of an interface.")
optIfODUkTtpTraceIdentifierTransmitted = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 8, 2, 1, 1), OptIfTxTI()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: optIfODUkTtpTraceIdentifierTransmitted.setDescription("The trace identifier transmitted.\nThis object is applicable when optIfODUkDirectionality\nhas the value source(2) or bidirectional(3).  It must not\nbe instantiated in rows where optIfODUkDirectionality\nhas the value sink(1).\nIf no value is ever set by a management entity for this\nobject, system-specific default value will be used.\nAny implementation that instantiates this object must\ndocument the system-specific default value or how it\nis derived.")
optIfODUkTtpDAPIExpected = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 8, 2, 1, 2), OptIfExDAPI()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: optIfODUkTtpDAPIExpected.setDescription("The DAPI expected by the receiver.\nThis object is only applicable to the sink function, i.e.,\nonly when optIfODUkDirectionality has the value sink(1)\nor bidirectional(3).  It must not be instantiated in rows\nwhere optIfODUkDirectionality has the value source(2).\nThis object has no effect when optIfODUkTtpTIMDetMode has\nthe value off(1).")
optIfODUkTtpSAPIExpected = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 8, 2, 1, 3), OptIfExSAPI()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: optIfODUkTtpSAPIExpected.setDescription("The SAPI expected by the receiver.\nThis object is only applicable to the sink function, i.e.,\nonly when optIfODUkDirectionality has the value sink(1)\nor bidirectional(3).  It must not be instantiated in rows\nwhere optIfODUkDirectionality has the value source(2).\nThis object has no effect when optIfODUkTtpTIMDetMode has\nthe value off(1).")
optIfODUkTtpTraceIdentifierAccepted = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 8, 2, 1, 4), OptIfAcTI()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfODUkTtpTraceIdentifierAccepted.setDescription("The actual trace identifier accepted.\nThis object is only applicable to the sink function, i.e.,\nonly when optIfODUkDirectionality has the value sink(1)\nor bidirectional(3).  It must not be instantiated in rows\nwhere optIfODUkDirectionality has the value source(2).\nThe value of this object is unspecified when\noptIfODUkTtpCurrentStatus indicates a near-end defect\n(i.e., oci(0), lck(1), ssf(5)) that prevents extraction\nof the trace message.")
optIfODUkTtpTIMDetMode = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 8, 2, 1, 5), OptIfTIMDetMode()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: optIfODUkTtpTIMDetMode.setDescription("Indicates the mode of the Trace Identifier Mismatch (TIM)\nDetection function.\nThis object is only applicable to the sink function, i.e.,\nonly when optIfODUkDirectionality has the value sink(1)\nor bidirectional(3).  It must not be instantiated in rows\nwhere optIfODUkDirectionality has the value source(2).\nThe default value of this object is off(1).")
optIfODUkTtpTIMActEnabled = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 8, 2, 1, 6), TruthValue()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: optIfODUkTtpTIMActEnabled.setDescription("Indicates whether the Trace Identifier Mismatch (TIM)\nConsequent Action function is enabled.\nThis object is only applicable to the sink function, i.e.,\nonly when optIfODUkDirectionality has the value sink(1)\nor bidirectional(3).  It must not be instantiated in rows\nwhere optIfODUkDirectionality has the value source(2).\nThis object has no effect when optIfODUkTtpTIMDetMode has\nthe value off(1).\nThe default value of this object is false(2).")
optIfODUkTtpDEGThr = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 8, 2, 1, 7), OptIfDEGThr()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: optIfODUkTtpDEGThr.setDescription("Indicates the threshold level for declaring a performance\nmonitoring (PM) Second to be bad.  A PM Second is declared bad if\nthe percentage of detected errored blocks in that second is\ngreater than or equal to optIfODUkDEGThr.\nThis object is only applicable to the sink function, i.e.,\nonly when optIfODUkDirectionality has the value sink(1)\nor bidirectional(3).  It must not be instantiated in rows\nwhere optIfODUkDirectionality has the value source(2).\nThe default value of this object is Severely Errored Second\n(SES) Estimator (See ITU-T G.7710).")
optIfODUkTtpDEGM = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 8, 2, 1, 8), OptIfDEGM()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: optIfODUkTtpDEGM.setDescription("Indicates the threshold level for declaring a Degraded Signal\ndefect (dDEG).  A dDEG shall be declared if optIfODUkDEGM\nconsecutive bad PM Seconds are detected.\nThis object is only applicable to the sink function, i.e.,\nonly when optIfODUkDirectionality has the value sink(1)\nor bidirectional(3).  It must not be instantiated in rows\nwhere optIfODUkDirectionality has the value source(2).\nThe default value of this object is 7 (See ITU-T G.7710).")
optIfODUkTtpCurrentStatus = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 8, 2, 1, 9), Bits().subtype(namedValues=NamedValues(("oci", 0), ("lck", 1), ("tim", 2), ("deg", 3), ("bdi", 4), ("ssf", 5), ))).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfODUkTtpCurrentStatus.setDescription("Indicates the defect condition of the entity, if any.\nThis object is only applicable to the sink function, i.e.,\nonly when optIfODUkDirectionality has the value sink(1)\nor bidirectional(3).  It must not be instantiated in rows\nwhere optIfODUkDirectionality has the value source(2).")
optIfODUkPositionSeqTable = MibTable((1, 3, 6, 1, 2, 1, 10, 133, 1, 8, 3))
if mibBuilder.loadTexts: optIfODUkPositionSeqTable.setDescription("A table of ODUk Position Sequence information.")
optIfODUkPositionSeqEntry = MibTableRow((1, 3, 6, 1, 2, 1, 10, 133, 1, 8, 3, 1)).setIndexNames((0, "IF-MIB", "ifIndex"), (0, "OPT-IF-MIB", "optIfODUkPositionSeqIndex"))
if mibBuilder.loadTexts: optIfODUkPositionSeqEntry.setDescription("A conceptual row that contains ODUk position sequence\ninformation of an ODUk interface.  The ODUk interface\nis identified by the ifIndex.  Associated with each\nODUk interface there may be one of more conceptual\nrows in the optIfODUkPositionSeqTable.  Each row\nrepresents a TCM or GCC12 access function within the\nassociated ODUk interface.  Rows of the\noptIfODUkPositionSeqTable table are created/deleted\nas the result of the creation/deletion of the optIfODUkT\nor optIfGCC12 entities.")
optIfODUkPositionSeqIndex = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 8, 3, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 4294967295))).setMaxAccess("noaccess")
if mibBuilder.loadTexts: optIfODUkPositionSeqIndex.setDescription("This variable identifies a row in the\noptIfODUkPositionSeqTable Table.\nEach row of the optIfODUkPositionSeqTable Table\nrepresents a TCM or GCC12 access function within the\nassociated ODUk interface.")
optIfODUkPositionSeqPosition = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 8, 3, 1, 2), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfODUkPositionSeqPosition.setDescription("This variable indicates the position of the TCM or\nGCC12 access function within the sequence of TCMs &\nGCC12 access functions of the associated ODUk\ninterface.  The TCM or GCC12 presented by this row is\nreferenced by the optIfODUkPositionSeqPointer variable.")
optIfODUkPositionSeqPointer = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 8, 3, 1, 3), RowPointer()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfODUkPositionSeqPointer.setDescription("This variable identifies the TCM or GCC12 access function\nby pointing to the corresponding optIfODUkT or optIfGCC12\nentity.")
optIfODUkNimConfigTable = MibTable((1, 3, 6, 1, 2, 1, 10, 133, 1, 8, 4))
if mibBuilder.loadTexts: optIfODUkNimConfigTable.setDescription("A table of ODUkNim configuration information.")
optIfODUkNimConfigEntry = MibTableRow((1, 3, 6, 1, 2, 1, 10, 133, 1, 8, 4, 1)).setIndexNames((0, "IF-MIB", "ifIndex"), (0, "OPT-IF-MIB", "optIfODUkNimDirectionality"))
if mibBuilder.loadTexts: optIfODUkNimConfigEntry.setDescription("A conceptual row that contains ODUkNim configuration\ninformation of an interface.  Each instance must\ncorrespond to an instance of optIfODUkConfigEntry\nfor which optIfODUkTtpPresent has the value false(2).\n\nInstances of this conceptual row persist across\nagent restarts, and read-create columns other\nthan the status column may be modified while the\nrow is active.")
optIfODUkNimDirectionality = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 8, 4, 1, 1), OptIfSinkOrSource()).setMaxAccess("noaccess")
if mibBuilder.loadTexts: optIfODUkNimDirectionality.setDescription("Specifies the monitor point for the ODUk Path non-intrusive\nmonitoring function.  The value source(2) is not allowed\nif the corresponding instance of optIfODUkDirectionality\nhas the value sink(1), and the value sink(1) is not allowed\nif the corresponding instance of optIfODUkDirectionality\nhas the value source(2).  Either the value sink(1) or\nsource(2) is allowed if the corresponding instance of\noptIfODUkDirectionality has the value bidirectional(3).\n\nThe value sink(1) means monitoring at the sink direction\npath signal of the ODUk CTP.\n\nThe value source(2) means monitoring at the source direction\n\n\n\npath signal of the ODUk CTP.  Monitoring the source direction\nof an ODUk CTP is necessary in those cases where the ODUk CTP\nis at an SNCP (Subnetwork Connection Protection) end (e.g., see\nFigure I.1.2/G.874.1).  If one would like to get the performance\nof the protected connection, one cannot use the NIM function\nat both ODUk CTP sinks (before the matrix), instead one should\nmonitor the signal at the source ODUk CTP after the matrix.")
optIfODUkNimDAPIExpected = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 8, 4, 1, 2), OptIfExDAPI()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: optIfODUkNimDAPIExpected.setDescription("The DAPI expected by the receiver.\nThis object has no effect if optIfODUkNimTIMDetMode has\nthe value off(1) or sapi(3).")
optIfODUkNimSAPIExpected = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 8, 4, 1, 3), OptIfExSAPI()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: optIfODUkNimSAPIExpected.setDescription("The SAPI expected by the receiver.\nThis object has no effect if optIfODUkNimTIMDetMode has\nthe value off(1) or dapi(2).")
optIfODUkNimTraceIdentifierAccepted = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 8, 4, 1, 4), OptIfAcTI()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfODUkNimTraceIdentifierAccepted.setDescription("The actual trace identifier accepted.  The value of\nthis object is unspecified if optIfODUkNimCurrentStatus\nhas any of the bit positions oci(0), lck(1), or ssf(5)\nset or if optIfODUkNimRowStatus has any value other\nthan active(1).")
optIfODUkNimTIMDetMode = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 8, 4, 1, 5), OptIfTIMDetMode()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: optIfODUkNimTIMDetMode.setDescription("Indicates the mode of the Trace Identifier Mismatch (TIM)\nDetection function.")
optIfODUkNimTIMActEnabled = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 8, 4, 1, 6), TruthValue()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: optIfODUkNimTIMActEnabled.setDescription("Indicates whether the Trace Identifier Mismatch (TIM)\nConsequent Action function is enabled.")
optIfODUkNimDEGThr = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 8, 4, 1, 7), OptIfDEGThr()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: optIfODUkNimDEGThr.setDescription("Indicates the threshold level for declaring a performance\nmonitoring (PM) Second to be bad.  A PM Second is declared bad\nif the percentage of detected errored blocks in that second is\ngreater than or equal to optIfODUkNimDEGThr.")
optIfODUkNimDEGM = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 8, 4, 1, 8), OptIfDEGM()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: optIfODUkNimDEGM.setDescription("Indicates the threshold level for declaring a Degraded Signal\ndefect (dDEG).  A dDEG shall be declared if optIfODUkNimDEGM\nconsecutive bad PM Seconds are detected.")
optIfODUkNimCurrentStatus = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 8, 4, 1, 9), Bits().subtype(namedValues=NamedValues(("oci", 0), ("lck", 1), ("tim", 2), ("deg", 3), ("bdi", 4), ("ssf", 5), ))).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfODUkNimCurrentStatus.setDescription("Indicates the defect condition of the entity, if\nany.  The value of this object is unspecified if\noptIfODUkNimRowStatus has any value other than\n\n\n\nactive(1).")
optIfODUkNimRowStatus = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 8, 4, 1, 10), RowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: optIfODUkNimRowStatus.setDescription("This columnar object is used for creating and deleting\na conceptual row of the optIfODUkNim config table.\nIt is used to model the activateNim and deactivateNim\noperations of an OTUk_CTP for non-intrusive monitoring\ncontrol as defined in G.874.1.  Setting RowStatus to\ncreateAndGo or createAndWait implies activateNim.\nSetting RowStatus to destroy implies deactivateNim.")
optIfGCC12ConfigTable = MibTable((1, 3, 6, 1, 2, 1, 10, 133, 1, 8, 5))
if mibBuilder.loadTexts: optIfGCC12ConfigTable.setDescription("A table of GCC12 configuration information.\nThe GCC function processes the GCC overhead bytes passing\nthrough them but leave the remainder of the ODUk overhead\nand payload data alone.")
optIfGCC12ConfigEntry = MibTableRow((1, 3, 6, 1, 2, 1, 10, 133, 1, 8, 5, 1)).setIndexNames((0, "IF-MIB", "ifIndex"), (0, "OPT-IF-MIB", "optIfGCC12Codirectional"), (0, "OPT-IF-MIB", "optIfGCC12GCCAccess"))
if mibBuilder.loadTexts: optIfGCC12ConfigEntry.setDescription("A conceptual row that contains GCC12 configuration\ninformation of an interface.  Each instance must\ncorrespond to an instance of optIfODUkConfigEntry.\nSeparate instances providing GCC1-only access and\nGCC2-only access may exist for a given ifIndex value,\nor a single instance providing GCC1 + GCC2 may exist,\nbut a GCC1 + GCC2 instance may not coexist with a\nGCC1-only or GCC2-only instance.\n\nInstances of this conceptual row persist across agent\nrestarts.")
optIfGCC12Codirectional = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 8, 5, 1, 1), TruthValue()).setMaxAccess("noaccess")
if mibBuilder.loadTexts: optIfGCC12Codirectional.setDescription("Indicates the directionality of the GCC12 termination with\nrespect to the associated ODUk CTP.  The value true(1) means\nthat the sink part of the GCC12 extracts COMMS data from the\nsignal at the input to the ODUk CTP sink and the source part\nof the GCC12 inserts COMMS data into the signal at the output\nof the ODUk CTP source.  The value false(2) means that the\nsink part of the GCC12 extracts COMMS data from the signal at\nthe output of the ODUk CTP source and the source part of the\nGCC12 inserts COMMS data into the signal at the input of the\nODUk CTP sink.  This attribute may assume either value when\nthe corresponding instance of optIfODUkTtpPresent has the\nvalue false(2).  When the value of the corresponding instance\nof optIfODUkTtpPresent is true(1) then the only value allowed\nfor this attribute is true(1).")
optIfGCC12GCCAccess = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 8, 5, 1, 2), Integer().subtype(subtypeSpec=SingleValueConstraint(3,2,1,)).subtype(namedValues=NamedValues(("gcc1", 1), ("gcc2", 2), ("gcc1and2", 3), ))).setMaxAccess("noaccess")
if mibBuilder.loadTexts: optIfGCC12GCCAccess.setDescription("Indicates the GCC access represented by the entity.")
optIfGCC12GCCPassThrough = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 8, 5, 1, 3), TruthValue()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: optIfGCC12GCCPassThrough.setDescription("Controls whether the selected GCC overhead bytes are passed\n\n\n\nthrough or modified.  The value true(1) means that the selected\nGCC overhead bytes are passed through unmodified from the ODUk\nCTP input to the ODUk CTP output.  The value false(2) means that\nthe selected GCC overhead bytes are set to zero at the ODUk CTP\noutput after the extraction of the COMMS data.  This object has\nno effect if the corresponding instance of optIfODUkTtpPresent\nhas the value true(1).\n\nThe value of this object may not be changed when\noptIfGCC12RowStatus has the value active(1).")
optIfGCC12Application = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 8, 5, 1, 4), SnmpAdminString()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: optIfGCC12Application.setDescription("Indicates the application transported by the GCC12 entity.\nExample applications are ECC, User data channel.\n\nThe value of this object may not be changed when\noptIfGCC12RowStatus has the value active(1).")
optIfGCC12RowStatus = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 8, 5, 1, 5), RowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: optIfGCC12RowStatus.setDescription("This columnar object is used for creating and deleting\na conceptual row of the optIfGCC12 config table.  It is\nused to model the addGCC12Access and removeGCC12Access\noperations of an ODUk_CTP or ODUk_TTP for GCC12 access\ncontrol as defined in G.874.1.  Setting RowStatus to\ncreateAndGo or createAndWait implies addGCC12Access.\nSetting RowStatus to destroy implies removeGCC12Access.\nSuccessful addition/removal of the GCC12 access function\nwill result in updating the\noptIfODUkPositionSeqCurrentSize variable and the\noptIfODUkPositionSeqTable table of the associated\nODUk entry in the optIfODUkConfigTable.")
optIfODUkT = MibIdentifier((1, 3, 6, 1, 2, 1, 10, 133, 1, 9))
optIfODUkTConfigTable = MibTable((1, 3, 6, 1, 2, 1, 10, 133, 1, 9, 1))
if mibBuilder.loadTexts: optIfODUkTConfigTable.setDescription("A table of ODUkT configuration information.")
optIfODUkTConfigEntry = MibTableRow((1, 3, 6, 1, 2, 1, 10, 133, 1, 9, 1, 1)).setIndexNames((0, "IF-MIB", "ifIndex"), (0, "OPT-IF-MIB", "optIfODUkTTcmField"), (0, "OPT-IF-MIB", "optIfODUkTCodirectional"))
if mibBuilder.loadTexts: optIfODUkTConfigEntry.setDescription("A conceptual row that contains ODUkT configuration\ninformation of an interface.  Each instance must\ncorrespond to an instance of optIfODUkConfigEntry.\nRows in this table are mutually exclusive with rows\nin the ODUkT NIM config table -- in other words, this\nrow object may not be instantiated for a given pair\nof ifIndex and TCM field values if a corresponding\ninstance of optIfODUkTNimConfigEntry already exists.\n\nInstances of this conceptual row persist across agent\nrestarts.  Except where noted otherwise, read-create\ncolumns other than the status column may be modified\nwhile the row is active.")
optIfODUkTTcmField = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 9, 1, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 6))).setMaxAccess("noaccess")
if mibBuilder.loadTexts: optIfODUkTTcmField.setDescription("Indicates the tandem connection monitoring\nfield of the ODUk OH.  Valid values are\nintegers from 1 to 6.")
optIfODUkTCodirectional = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 9, 1, 1, 2), TruthValue()).setMaxAccess("noaccess")
if mibBuilder.loadTexts: optIfODUkTCodirectional.setDescription("Indicates the directionality of the ODUkT termination point with\nrespect to the associated ODUk CTP.  The value true(1) means\nthat the sink part of the ODUkT TP extracts TCM data from the\nsignal at the input to the ODUk CTP sink and the source part\nof the ODUkT TP inserts TCM data into the signal at the output\nof the ODUk CTP source.  The value false(2) means that the\nsink part of the ODUkT TP extracts TCM data from the signal at\nthe output of the ODUk CTP source and the source part of the\nODUkT TP inserts TCM data into the signal at the input of the\nODUk CTP sink.  This attribute may assume either value when\nthe corresponding instance of optIfODUkTtpPresent has the\nvalue false(2).  When the value of the corresponding instance\nof optIfODUkTtpPresent is true(1) then the only value allowed\nfor this attribute is true(1).")
optIfODUkTTraceIdentifierTransmitted = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 9, 1, 1, 3), OptIfTxTI()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: optIfODUkTTraceIdentifierTransmitted.setDescription("The trace identifier transmitted.\nThis object is applicable only to the following three cases.\n  (i) optIfODUkDirectionality has the value bidirectional(3), or\n  (ii) optIfODUkDirectionality has the value sink(1) and\n       optIfODUkTCodirectional has the value false(2), or\n  (iii) optIfODUkDirectionality has the value source(3) and\n        optIfODUkTCodirectional has the value true(1).\nIt must not be instantiated in rows for all other cases.")
optIfODUkTDAPIExpected = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 9, 1, 1, 4), OptIfExDAPI()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: optIfODUkTDAPIExpected.setDescription("The DAPI expected by the receiver.\nThis object is applicable only to the following three cases.\n  (i) optIfODUkDirectionality has the value bidirectional(3), or\n  (ii) optIfODUkDirectionality has the value sink(1) and\n       optIfODUkTCodirectional has the value true(1), or\n  (iii) optIfODUkDirectionality has the value source(3) and\n        optIfODUkTCodirectional has the value false(2).\nIt must not be instantiated in rows for all other cases.\nThis object has no effect when optIfODUkTTIMDetMode has\nthe value off(1).")
optIfODUkTSAPIExpected = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 9, 1, 1, 5), OptIfExSAPI()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: optIfODUkTSAPIExpected.setDescription("The SAPI expected by the receiver.\nThis object is applicable only to the following three cases.\n  (i) optIfODUkDirectionality has the value bidirectional(3), or\n  (ii) optIfODUkDirectionality has the value sink(1) and\n       optIfODUkTCodirectional has the value true(1), or\n  (iii) optIfODUkDirectionality has the value source(3) and\n        optIfODUkTCodirectional has the value false(2).\nIt must not be instantiated in rows for all other cases.\nThis object has no effect when optIfODUkTTIMDetMode has\nthe value off(1).")
optIfODUkTTraceIdentifierAccepted = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 9, 1, 1, 6), OptIfAcTI()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfODUkTTraceIdentifierAccepted.setDescription("The actual trace identifier accepted.\nThis object is applicable only to the following three cases.\n  (i) optIfODUkDirectionality has the value bidirectional(3), or\n  (ii) optIfODUkDirectionality has the value sink(1) and\n       optIfODUkTCodirectional has the value true(1), or\n  (iii) optIfODUkDirectionality has the value source(3) and\n        optIfODUkTCodirectional has the value false(2).\nIt must not be instantiated in rows for all other cases.\nThe value of this object is unspecified when\noptIfODUkTCurrentStatus indicates a near-end defect\n(i.e., oci(0), lck(1), ssf(5)) that prevents extraction\n\n\n\nof the trace message.")
optIfODUkTTIMDetMode = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 9, 1, 1, 7), OptIfTIMDetMode()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: optIfODUkTTIMDetMode.setDescription("Indicates the mode of the Trace Identifier Mismatch (TIM)\nDetection function.\nThis object is applicable only to the following three cases.\n  (i) optIfODUkDirectionality has the value bidirectional(3), or\n  (ii) optIfODUkDirectionality has the value sink(1) and\n       optIfODUkTCodirectional has the value true(1), or\n  (iii) optIfODUkDirectionality has the value source(3) and\n        optIfODUkTCodirectional has the value false(2).\nIt must not be instantiated in rows for all other cases.\nThe default value of this object is off(1).")
optIfODUkTTIMActEnabled = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 9, 1, 1, 8), TruthValue()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: optIfODUkTTIMActEnabled.setDescription("Indicates whether the Trace Identifier Mismatch (TIM)\nConsequent Action function is enabled.\nThis object is applicable only to the following three cases.\n  (i) optIfODUkDirectionality has the value bidirectional(3), or\n  (ii) optIfODUkDirectionality has the value sink(1) and\n       optIfODUkTCodirectional has the value true(1), or\n  (iii) optIfODUkDirectionality has the value source(3) and\n        optIfODUkTCodirectional has the value false(2).\nIt must not be instantiated in rows for all other cases.\nThis object has no effect when optIfODUkTTIMDetMode has\nthe value off(1).\nThe default value of this object is false(2).")
optIfODUkTDEGThr = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 9, 1, 1, 9), OptIfDEGThr()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: optIfODUkTDEGThr.setDescription("Indicates the threshold level for declaring a performance\nmonitoring (PM) Second to be bad.  A PM Second is declared bad if\nthe percentage of detected errored blocks in that second is\n\n\n\ngreater than or equal to optIfODUkTDEGThr.\nThis object is applicable only to the following three cases.\n  (i) optIfODUkDirectionality has the value bidirectional(3), or\n  (ii) optIfODUkDirectionality has the value sink(1) and\n       optIfODUkTCodirectional has the value true(1), or\n  (iii) optIfODUkDirectionality has the value source(3) and\n        optIfODUkTCodirectional has the value false(2).\nIt must not be instantiated in rows for all other cases.\nThe default value of this object is Severely Errored Second\n(SES) Estimator (See ITU-T G.7710).")
optIfODUkTDEGM = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 9, 1, 1, 10), OptIfDEGM()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: optIfODUkTDEGM.setDescription("Indicates the threshold level for declaring a Degraded Signal\ndefect (dDEG).  A dDEG shall be declared if optIfODUkTDEGM\nconsecutive bad PM Seconds are detected.\nThis object is applicable only to the following three cases.\n  (i) optIfODUkDirectionality has the value bidirectional(3), or\n  (ii) optIfODUkDirectionality has the value sink(1) and\n       optIfODUkTCodirectional has the value true(1), or\n  (iii) optIfODUkDirectionality has the value source(3) and\n        optIfODUkTCodirectional has the value false(2).\nIt must not be instantiated in rows for all other cases.\nThe default value of this object is 7 (See ITU-T G.7710).")
optIfODUkTSinkMode = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 9, 1, 1, 11), Integer().subtype(subtypeSpec=SingleValueConstraint(1,2,)).subtype(namedValues=NamedValues(("operational", 1), ("monitor", 2), ))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: optIfODUkTSinkMode.setDescription("This variable specifies the TCM mode at the entity.\nThe value operational(1) means that TCM Overhead (TCMOH)\nprocesses (see ITU-T G.798) shall be\nperformed and consequent actions for AIS, Trail\nSignal Fail (TSF), Trail Signal Degraded (TSD) shall be\ninitiated in case of defects.\nThe value monitor(2) means that TCMOH processes shall be\nperformed but consequent actions for AIS, Trail\nServer Failure (TSF), Trail Server Degraded (TSD) shall _not_ be\ninitiated in case of defects.\n\n\n\nThis object is applicable only when the value of\noptIfODUkTtpPresent is false(2) and also either one of the\nfollowing three cases holds:\n  (i) optIfODUkDirectionality has the value bidirectional(3), or\n  (ii) optIfODUkDirectionality has the value sink(1) and\n       optIfODUkTCodirectional has the value true(1), or\n  (iii) optIfODUkDirectionality has the value source(3) and\n        optIfODUkTCodirectional has the value false(2).\nIt must not be instantiated in rows for all other cases.")
optIfODUkTSinkLockSignalAdminState = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 9, 1, 1, 12), Integer().subtype(subtypeSpec=SingleValueConstraint(2,1,)).subtype(namedValues=NamedValues(("locked", 1), ("normal", 2), ))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: optIfODUkTSinkLockSignalAdminState.setDescription("Provides the capability to provision the LOCK signal, which\nis one of the ODUk maintenance signals, at the ODUKT sink.  When\na Tandem Connection endpoint is set to admin state locked,\nit inserts the ODUk-LCK signal in the sink direction.\n\nThis object is applicable only when the value of\noptIfODUkTtpPresent is false(2) and also either one of the\nfollowing three cases holds:\n  (i) optIfODUkDirectionality has the value bidirectional(3), or\n  (ii) optIfODUkDirectionality has the value sink(1) and\n       optIfODUkTCodirectional has the value true(1), or\n  (iii) optIfODUkDirectionality has the value source(3) and\n        optIfODUkTCodirectional has the value false(2).\nIt must not be instantiated in rows for all other cases.")
optIfODUkTSourceLockSignalAdminState = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 9, 1, 1, 13), Integer().subtype(subtypeSpec=SingleValueConstraint(2,1,)).subtype(namedValues=NamedValues(("locked", 1), ("normal", 2), ))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: optIfODUkTSourceLockSignalAdminState.setDescription("Provides the capability to provision the LOCK signal, which\nis one of the ODUk maintenance signals, at the source.\nWhen a Tandem Connection endpoint is set to admin state\nlocked, it inserts the ODUk-LCK signal in the source\ndirection.\n\n\n\nThis object is applicable only when either one of the\nfollowing three cases holds:\n  (i) optIfODUkDirectionality has the value bidirectional(3), or\n  (ii) optIfODUkDirectionality has the value sink(1) and\n       optIfODUkTCodirectional has the value false(2), or\n  (iii) optIfODUkDirectionality has the value source(3) and\n        optIfODUkTCodirectional has the value true(1).\nIt must not be instantiated in rows for all other cases.")
optIfODUkTCurrentStatus = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 9, 1, 1, 14), Bits().subtype(namedValues=NamedValues(("oci", 0), ("lck", 1), ("tim", 2), ("deg", 3), ("bdi", 4), ("ssf", 5), ))).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfODUkTCurrentStatus.setDescription("Indicates the defect condition of the entity, if any.\nThis object is applicable only when either one of the\nfollowing three cases holds:\n  (i) optIfODUkDirectionality has the value bidirectional(3), or\n  (ii) optIfODUkDirectionality has the value sink(1) and\n       optIfODUkTCodirectional has the value true(1), or\n  (iii) optIfODUkDirectionality has the value source(3) and\n        optIfODUkTCodirectional has the value false(2).\nIt must not be instantiated in rows for all other cases.")
optIfODUkTRowStatus = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 9, 1, 1, 15), RowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: optIfODUkTRowStatus.setDescription("This columnar object is used for creating and deleting a\nconceptual row of the optIfODUkT config table.\nIt is used to model the addTCM and removeTCM operations of an\nODUk_CTP or ODUk_TTP for Tandem connection monitoring as defined\nin ITU-T G.874.1.\nSetting RowStatus to createAndGo or createAndWait implies addTCM.\nSetting RowStatus to destroy implies removeTCM.\nSuccessful addition/removal of TCM will result in updating the\noptIfODUkTcmFieldsInUse and optIfODUkPositionSeqCurrentSize\nvariables and the optIfODUkPositionSeqTable table of the\n\n\n\nassociated ODUk entry in the optIfODUkConfigTable.")
optIfODUkTNimConfigTable = MibTable((1, 3, 6, 1, 2, 1, 10, 133, 1, 9, 2))
if mibBuilder.loadTexts: optIfODUkTNimConfigTable.setDescription("A table of ODUkTNim configuration information.")
optIfODUkTNimConfigEntry = MibTableRow((1, 3, 6, 1, 2, 1, 10, 133, 1, 9, 2, 1)).setIndexNames((0, "IF-MIB", "ifIndex"), (0, "OPT-IF-MIB", "optIfODUkTNimTcmField"), (0, "OPT-IF-MIB", "optIfODUkTNimDirectionality"))
if mibBuilder.loadTexts: optIfODUkTNimConfigEntry.setDescription("A conceptual row that contains ODUkTNim configuration\ninformation of an interface.  Each instance must\ncorrespond to an instance of optIfODUkConfigEntry.\nRows in this table are mutually exclusive with rows\nin the ODUkT config table -- in other words, this\nrow object may not be instantiated for a given pair\nof ifIndex and TCM field values if a corresponding\ninstance of optIfODUkTConfigEntry already exists.\n\nInstances of this conceptual row persist across\nagent restarts, and read-create columns other\nthan the status column may be modified while the\nrow is active.")
optIfODUkTNimTcmField = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 9, 2, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 6))).setMaxAccess("noaccess")
if mibBuilder.loadTexts: optIfODUkTNimTcmField.setDescription("Indicates the tandem connection monitoring\nfield of the ODUk OH on which non-intrusive monitoring\nis performed.  Valid values are\nintegers from 1 to 6.")
optIfODUkTNimDirectionality = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 9, 2, 1, 2), OptIfSinkOrSource()).setMaxAccess("noaccess")
if mibBuilder.loadTexts: optIfODUkTNimDirectionality.setDescription("Specifies the monitor point for the ODUk TCM non-intrusive\nmonitoring function.  The value source(2) is not allowed\nif the corresponding instance of optIfODUkDirectionality\nhas the value sink(1), and the value sink(1) is not allowed\nif the corresponding instance of optIfODUkDirectionality\nhas the value source(2).  Either the value sink(1) or\nsource(2) is allowed if the corresponding instance of\noptIfODUkDirectionality has the value bidirectional(3).\nThe value sink(1) means monitoring at the sink direction\nTCM signal of the ODUk CTP.\nThe value source(2) means monitoring at the source direction\npath signal of the ODUk CTP.")
optIfODUkTNimDAPIExpected = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 9, 2, 1, 3), OptIfExDAPI()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: optIfODUkTNimDAPIExpected.setDescription("The DAPI expected by the receiver.\nThis object has no effect if optIfODUkTNimTIMDetMode has\nthe value off(1) or sapi(3).")
optIfODUkTNimSAPIExpected = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 9, 2, 1, 4), OptIfExSAPI()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: optIfODUkTNimSAPIExpected.setDescription("The SAPI expected by the receiver.\nThis object has no effect if optIfODUkTNimTIMDetMode has\nthe value off(1) or dapi(2).")
optIfODUkTNimTraceIdentifierAccepted = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 9, 2, 1, 5), OptIfAcTI()).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfODUkTNimTraceIdentifierAccepted.setDescription("The actual trace identifier accepted.  The value of\nthis object is unspecified if optIfODUkTNimCurrentStatus\nhas any of the bit positions oci(0), lck(1), or ssf(5)\nset or if optIfODUkTNimRowStatus has any value other\nthan active(1).")
optIfODUkTNimTIMDetMode = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 9, 2, 1, 6), OptIfTIMDetMode()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: optIfODUkTNimTIMDetMode.setDescription("Indicates the mode of the Trace Identifier Mismatch (TIM)\nDetection function.")
optIfODUkTNimTIMActEnabled = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 9, 2, 1, 7), TruthValue()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: optIfODUkTNimTIMActEnabled.setDescription("Indicates whether the Trace Identifier Mismatch (TIM)\nConsequent Action function is enabled.")
optIfODUkTNimDEGThr = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 9, 2, 1, 8), OptIfDEGThr()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: optIfODUkTNimDEGThr.setDescription("Indicates the threshold level for declaring a performance\nmonitoring (PM) Second to be bad.  A PM Second is declared bad if\nthe percentage of detected errored blocks in that second is\ngreater than or equal to optIfODUkTNimDEGThr.")
optIfODUkTNimDEGM = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 9, 2, 1, 9), OptIfDEGM()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: optIfODUkTNimDEGM.setDescription("Indicates the threshold level for declaring a Degraded Signal\ndefect (dDEG).  A dDEG shall be declared if optIfODUkTNimDEGM\nconsecutive bad PM Seconds are detected.")
optIfODUkTNimCurrentStatus = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 9, 2, 1, 10), Bits().subtype(namedValues=NamedValues(("oci", 0), ("lck", 1), ("tim", 2), ("deg", 3), ("bdi", 4), ("ssf", 5), ))).setMaxAccess("readonly")
if mibBuilder.loadTexts: optIfODUkTNimCurrentStatus.setDescription("Indicates the defect condition of the entity, if any.\nThe value of this object is unspecified if\noptIfODUkTNimRowStatus has any value other than\nactive(1).")
optIfODUkTNimRowStatus = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 133, 1, 9, 2, 1, 11), RowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: optIfODUkTNimRowStatus.setDescription("This columnar object is used for creating and deleting a\nconceptual row of the optIfODUkTNim config table.\nIt is used to model the addTCM and removeTCM operations of an\nODUk_CTP or ODUk_TTP for non-intrusive Tandem connection\nmonitoring as defined in ITU-T G.874.1.\nSetting RowStatus to createAndGo or createAndWait implies addTCM.\nSetting RowStatus to destroy implies removeTCM.\nSuccessful addition/removal of Nim TCM will result in updating\nthe optIfODUkPositionSeqCurrentSize variable and the\noptIfODUkPositionSeqTable table of the associated ODUk entry\nin the optIfODUkConfigTable.")
optIfConfs = MibIdentifier((1, 3, 6, 1, 2, 1, 10, 133, 2))
optIfGroups = MibIdentifier((1, 3, 6, 1, 2, 1, 10, 133, 2, 1))
optIfCompl = MibIdentifier((1, 3, 6, 1, 2, 1, 10, 133, 2, 2))

# Augmentions

# Groups

optIfOTMnGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 10, 133, 2, 1, 1)).setObjects(*(("OPT-IF-MIB", "optIfOTMnBitRates"), ("OPT-IF-MIB", "optIfOTMnTcmMax"), ("OPT-IF-MIB", "optIfOTMnInterfaceType"), ("OPT-IF-MIB", "optIfOTMnOpticalReach"), ("OPT-IF-MIB", "optIfOTMnOrder"), ("OPT-IF-MIB", "optIfOTMnReduced"), ) )
if mibBuilder.loadTexts: optIfOTMnGroup.setDescription("A collection of OTMn structure information objects.")
optIfPerfMonGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 10, 133, 2, 1, 2)).setObjects(*(("OPT-IF-MIB", "optIfPerfMonCurrentTimeElapsed"), ("OPT-IF-MIB", "optIfPerfMonIntervalNumInvalidIntervals"), ("OPT-IF-MIB", "optIfPerfMonCurDayTimeElapsed"), ("OPT-IF-MIB", "optIfPerfMonIntervalNumIntervals"), ) )
if mibBuilder.loadTexts: optIfPerfMonGroup.setDescription("A collection of performance monitoring interval objects.")
optIfOTSnCommonGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 10, 133, 2, 1, 3)).setObjects(*(("OPT-IF-MIB", "optIfOTSnDirectionality"), ) )
if mibBuilder.loadTexts: optIfOTSnCommonGroup.setDescription("A collection of configuration objects\napplicable to all OTSn interfaces.")
optIfOTSnSourceGroupFull = ObjectGroup((1, 3, 6, 1, 2, 1, 10, 133, 2, 1, 4)).setObjects(*(("OPT-IF-MIB", "optIfOTSnTraceIdentifierTransmitted"), ) )
if mibBuilder.loadTexts: optIfOTSnSourceGroupFull.setDescription("A collection of configuration objects\napplicable to full-functionality/IaDI OTSn\ninterfaces that support source functions.")
optIfOTSnAPRStatusGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 10, 133, 2, 1, 5)).setObjects(*(("OPT-IF-MIB", "optIfOTSnAprStatus"), ) )
if mibBuilder.loadTexts: optIfOTSnAPRStatusGroup.setDescription("A collection of objects applicable to\nOTSn interfaces that support Automatic\nPower Reduction functions.")
optIfOTSnAPRControlGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 10, 133, 2, 1, 6)).setObjects(*(("OPT-IF-MIB", "optIfOTSnAprControl"), ) )
if mibBuilder.loadTexts: optIfOTSnAPRControlGroup.setDescription("A collection of objects applicable to\nOTSn interfaces that provide Automatic\nPower Reduction control functions.")
optIfOTSnSinkGroupBasic = ObjectGroup((1, 3, 6, 1, 2, 1, 10, 133, 2, 1, 7)).setObjects(*(("OPT-IF-MIB", "optIfOTSnCurrentStatus"), ) )
if mibBuilder.loadTexts: optIfOTSnSinkGroupBasic.setDescription("A collection of configuration objects\napplicable to all OTSn interfaces that\nsupport sink functions.")
optIfOTSnSinkGroupFull = ObjectGroup((1, 3, 6, 1, 2, 1, 10, 133, 2, 1, 8)).setObjects(*(("OPT-IF-MIB", "optIfOTSnDAPIExpected"), ("OPT-IF-MIB", "optIfOTSnTIMDetMode"), ("OPT-IF-MIB", "optIfOTSnSAPIExpected"), ("OPT-IF-MIB", "optIfOTSnTIMActEnabled"), ("OPT-IF-MIB", "optIfOTSnTraceIdentifierAccepted"), ) )
if mibBuilder.loadTexts: optIfOTSnSinkGroupFull.setDescription("A collection of configuration objects\napplicable to full-functionality/IaDI OTSn\ninterfaces that support sink functions.")
optIfOTSnSinkPreOtnPMGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 10, 133, 2, 1, 9)).setObjects(*(("OPT-IF-MIB", "optIfOTSnSinkCurrentLowInputPower"), ("OPT-IF-MIB", "optIfOTSnSinkIntervalHighOutputPower"), ("OPT-IF-MIB", "optIfOTSnSinkPrevDayLowOutputPower"), ("OPT-IF-MIB", "optIfOTSnSinkIntervalLowInputPower"), ("OPT-IF-MIB", "optIfOTSnSinkCurrentOutputPower"), ("OPT-IF-MIB", "optIfOTSnSinkCurDayLowOutputPower"), ("OPT-IF-MIB", "optIfOTSnSinkCurrentInputPower"), ("OPT-IF-MIB", "optIfOTSnSinkPrevDayLowInputPower"), ("OPT-IF-MIB", "optIfOTSnSinkCurDayHighOutputPower"), ("OPT-IF-MIB", "optIfOTSnSinkPrevDayHighOutputPower"), ("OPT-IF-MIB", "optIfOTSnSinkCurrentHighOutputPower"), ("OPT-IF-MIB", "optIfOTSnSinkCurrentLowOutputPower"), ("OPT-IF-MIB", "optIfOTSnSinkCurDaySuspectedFlag"), ("OPT-IF-MIB", "optIfOTSnSinkIntervalHighInputPower"), ("OPT-IF-MIB", "optIfOTSnSinkPrevDayLastInputPower"), ("OPT-IF-MIB", "optIfOTSnSinkIntervalLowOutputPower"), ("OPT-IF-MIB", "optIfOTSnSinkCurDayHighInputPower"), ("OPT-IF-MIB", "optIfOTSnSinkIntervalLastOutputPower"), ("OPT-IF-MIB", "optIfOTSnSinkIntervalSuspectedFlag"), ("OPT-IF-MIB", "optIfOTSnSinkPrevDayHighInputPower"), ("OPT-IF-MIB", "optIfOTSnSinkPrevDaySuspectedFlag"), ("OPT-IF-MIB", "optIfOTSnSinkCurDayLowInputPower"), ("OPT-IF-MIB", "optIfOTSnSinkCurrentHighInputPower"), ("OPT-IF-MIB", "optIfOTSnSinkCurrentSuspectedFlag"), ("OPT-IF-MIB", "optIfOTSnSinkIntervalLastInputPower"), ("OPT-IF-MIB", "optIfOTSnSinkPrevDayLastOutputPower"), ) )
if mibBuilder.loadTexts: optIfOTSnSinkPreOtnPMGroup.setDescription("A collection of pre-OTN performance monitoring\nobjects applicable to OTSn interfaces that\nsupport sink functions.")
optIfOTSnSinkPreOtnPMThresholdGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 10, 133, 2, 1, 10)).setObjects(*(("OPT-IF-MIB", "optIfOTSnSinkCurrentLowerOutputPowerThreshold"), ("OPT-IF-MIB", "optIfOTSnSinkCurrentUpperInputPowerThreshold"), ("OPT-IF-MIB", "optIfOTSnSinkCurrentLowerInputPowerThreshold"), ("OPT-IF-MIB", "optIfOTSnSinkCurrentUpperOutputPowerThreshold"), ) )
if mibBuilder.loadTexts: optIfOTSnSinkPreOtnPMThresholdGroup.setDescription("A collection of pre-OTN performance monitoring\nthreshold objects applicable to OTSn interfaces\nthat support sink functions.")
optIfOTSnSourcePreOtnPMGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 10, 133, 2, 1, 11)).setObjects(*(("OPT-IF-MIB", "optIfOTSnSrcIntervalHighOutputPower"), ("OPT-IF-MIB", "optIfOTSnSrcIntervalLastInputPower"), ("OPT-IF-MIB", "optIfOTSnSrcPrevDayLowInputPower"), ("OPT-IF-MIB", "optIfOTSnSrcPrevDayLowOutputPower"), ("OPT-IF-MIB", "optIfOTSnSrcCurDayHighOutputPower"), ("OPT-IF-MIB", "optIfOTSnSrcCurDaySuspectedFlag"), ("OPT-IF-MIB", "optIfOTSnSrcCurDayLowInputPower"), ("OPT-IF-MIB", "optIfOTSnSrcCurrentHighOutputPower"), ("OPT-IF-MIB", "optIfOTSnSrcIntervalLastOutputPower"), ("OPT-IF-MIB", "optIfOTSnSrcCurrentSuspectedFlag"), ("OPT-IF-MIB", "optIfOTSnSrcPrevDayHighOutputPower"), ("OPT-IF-MIB", "optIfOTSnSrcIntervalLowInputPower"), ("OPT-IF-MIB", "optIfOTSnSrcPrevDayLastOutputPower"), ("OPT-IF-MIB", "optIfOTSnSrcCurDayLowOutputPower"), ("OPT-IF-MIB", "optIfOTSnSrcPrevDayHighInputPower"), ("OPT-IF-MIB", "optIfOTSnSrcCurrentHighInputPower"), ("OPT-IF-MIB", "optIfOTSnSrcCurrentLowInputPower"), ("OPT-IF-MIB", "optIfOTSnSrcCurrentOutputPower"), ("OPT-IF-MIB", "optIfOTSnSrcCurrentLowOutputPower"), ("OPT-IF-MIB", "optIfOTSnSrcCurDayHighInputPower"), ("OPT-IF-MIB", "optIfOTSnSrcPrevDayLastInputPower"), ("OPT-IF-MIB", "optIfOTSnSrcCurrentInputPower"), ("OPT-IF-MIB", "optIfOTSnSrcIntervalSuspectedFlag"), ("OPT-IF-MIB", "optIfOTSnSrcPrevDaySuspectedFlag"), ("OPT-IF-MIB", "optIfOTSnSrcIntervalLowOutputPower"), ("OPT-IF-MIB", "optIfOTSnSrcIntervalHighInputPower"), ) )
if mibBuilder.loadTexts: optIfOTSnSourcePreOtnPMGroup.setDescription("A collection of pre-OTN performance monitoring\nobjects applicable to OTSn interfaces that\nsupport source functions.")
optIfOTSnSourcePreOtnPMThresholdGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 10, 133, 2, 1, 12)).setObjects(*(("OPT-IF-MIB", "optIfOTSnSrcCurrentUpperOutputPowerThreshold"), ("OPT-IF-MIB", "optIfOTSnSrcCurrentUpperInputPowerThreshold"), ("OPT-IF-MIB", "optIfOTSnSrcCurrentLowerOutputPowerThreshold"), ("OPT-IF-MIB", "optIfOTSnSrcCurrentLowerInputPowerThreshold"), ) )
if mibBuilder.loadTexts: optIfOTSnSourcePreOtnPMThresholdGroup.setDescription("A collection of pre-OTN performance monitoring\nthreshold objects applicable to OTSn interfaces\nthat support source functions.")
optIfOMSnCommonGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 10, 133, 2, 1, 13)).setObjects(*(("OPT-IF-MIB", "optIfOMSnDirectionality"), ) )
if mibBuilder.loadTexts: optIfOMSnCommonGroup.setDescription("A collection of configuration objects\napplicable to all OMSn interfaces.")
optIfOMSnSinkGroupBasic = ObjectGroup((1, 3, 6, 1, 2, 1, 10, 133, 2, 1, 14)).setObjects(*(("OPT-IF-MIB", "optIfOMSnCurrentStatus"), ) )
if mibBuilder.loadTexts: optIfOMSnSinkGroupBasic.setDescription("A collection of configuration objects\napplicable to all OMSn interfaces that\nsupport sink functions.")
optIfOMSnSinkPreOtnPMGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 10, 133, 2, 1, 15)).setObjects(*(("OPT-IF-MIB", "optIfOMSnSinkCurDayLowAggregatedInputPower"), ("OPT-IF-MIB", "optIfOMSnSinkCurDayHighOutputPower"), ("OPT-IF-MIB", "optIfOMSnSinkCurrentOutputPower"), ("OPT-IF-MIB", "optIfOMSnSinkCurrentLowAggregatedInputPower"), ("OPT-IF-MIB", "optIfOMSnSinkIntervalSuspectedFlag"), ("OPT-IF-MIB", "optIfOMSnSinkIntervalLowAggregatedInputPower"), ("OPT-IF-MIB", "optIfOMSnSinkPrevDayLowAggregatedInputPower"), ("OPT-IF-MIB", "optIfOMSnSinkIntervalHighOutputPower"), ("OPT-IF-MIB", "optIfOMSnSinkCurDayHighAggregatedInputPower"), ("OPT-IF-MIB", "optIfOMSnSinkPrevDayLowOutputPower"), ("OPT-IF-MIB", "optIfOMSnSinkPrevDaySuspectedFlag"), ("OPT-IF-MIB", "optIfOMSnSinkCurrentLowOutputPower"), ("OPT-IF-MIB", "optIfOMSnSinkCurrentHighAggregatedInputPower"), ("OPT-IF-MIB", "optIfOMSnSinkPrevDayHighAggregatedInputPower"), ("OPT-IF-MIB", "optIfOMSnSinkPrevDayLastOutputPower"), ("OPT-IF-MIB", "optIfOMSnSinkPrevDayLastAggregatedInputPower"), ("OPT-IF-MIB", "optIfOMSnSinkCurDayLowOutputPower"), ("OPT-IF-MIB", "optIfOMSnSinkCurrentSuspectedFlag"), ("OPT-IF-MIB", "optIfOMSnSinkCurrentHighOutputPower"), ("OPT-IF-MIB", "optIfOMSnSinkPrevDayHighOutputPower"), ("OPT-IF-MIB", "optIfOMSnSinkIntervalLastOutputPower"), ("OPT-IF-MIB", "optIfOMSnSinkIntervalHighAggregatedInputPower"), ("OPT-IF-MIB", "optIfOMSnSinkCurrentAggregatedInputPower"), ("OPT-IF-MIB", "optIfOMSnSinkIntervalLastAggregatedInputPower"), ("OPT-IF-MIB", "optIfOMSnSinkIntervalLowOutputPower"), ("OPT-IF-MIB", "optIfOMSnSinkCurDaySuspectedFlag"), ) )
if mibBuilder.loadTexts: optIfOMSnSinkPreOtnPMGroup.setDescription("A collection of pre-OTN performance monitoring\nobjects applicable to OMSn interfaces that\nsupport sink functions.")
optIfOMSnSinkPreOtnPMThresholdGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 10, 133, 2, 1, 16)).setObjects(*(("OPT-IF-MIB", "optIfOMSnSinkCurrentUpperInputPowerThreshold"), ("OPT-IF-MIB", "optIfOMSnSinkCurrentLowerOutputPowerThreshold"), ("OPT-IF-MIB", "optIfOMSnSinkCurrentUpperOutputPowerThreshold"), ("OPT-IF-MIB", "optIfOMSnSinkCurrentLowerInputPowerThreshold"), ) )
if mibBuilder.loadTexts: optIfOMSnSinkPreOtnPMThresholdGroup.setDescription("A collection of pre-OTN performance monitoring\nthreshold objects applicable to OMSn interfaces\nthat support sink functions.")
optIfOMSnSourcePreOtnPMGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 10, 133, 2, 1, 17)).setObjects(*(("OPT-IF-MIB", "optIfOMSnSrcPrevDayLastOutputPower"), ("OPT-IF-MIB", "optIfOMSnSrcCurrentHighOutputPower"), ("OPT-IF-MIB", "optIfOMSnSrcPrevDayLowOutputPower"), ("OPT-IF-MIB", "optIfOMSnSrcPrevDayLastAggregatedInputPower"), ("OPT-IF-MIB", "optIfOMSnSrcCurDayHighOutputPower"), ("OPT-IF-MIB", "optIfOMSnSrcPrevDayLowAggregatedInputPower"), ("OPT-IF-MIB", "optIfOMSnSrcIntervalHighAggregatedInputPower"), ("OPT-IF-MIB", "optIfOMSnSrcCurrentHighAggregatedInputPower"), ("OPT-IF-MIB", "optIfOMSnSrcCurrentLowOutputPower"), ("OPT-IF-MIB", "optIfOMSnSrcPrevDaySuspectedFlag"), ("OPT-IF-MIB", "optIfOMSnSrcIntervalLastAggregatedInputPower"), ("OPT-IF-MIB", "optIfOMSnSrcCurDayLowAggregatedInputPower"), ("OPT-IF-MIB", "optIfOMSnSrcIntervalHighOutputPower"), ("OPT-IF-MIB", "optIfOMSnSrcIntervalSuspectedFlag"), ("OPT-IF-MIB", "optIfOMSnSrcPrevDayHighAggregatedInputPower"), ("OPT-IF-MIB", "optIfOMSnSrcCurDaySuspectedFlag"), ("OPT-IF-MIB", "optIfOMSnSrcIntervalLastOutputPower"), ("OPT-IF-MIB", "optIfOMSnSrcCurrentLowAggregatedInputPower"), ("OPT-IF-MIB", "optIfOMSnSrcCurDayLowOutputPower"), ("OPT-IF-MIB", "optIfOMSnSrcCurrentAggregatedInputPower"), ("OPT-IF-MIB", "optIfOMSnSrcCurrentOutputPower"), ("OPT-IF-MIB", "optIfOMSnSrcPrevDayHighOutputPower"), ("OPT-IF-MIB", "optIfOMSnSrcCurrentSuspectedFlag"), ("OPT-IF-MIB", "optIfOMSnSrcIntervalLowOutputPower"), ("OPT-IF-MIB", "optIfOMSnSrcCurDayHighAggregatedInputPower"), ("OPT-IF-MIB", "optIfOMSnSrcIntervalLowAggregatedInputPower"), ) )
if mibBuilder.loadTexts: optIfOMSnSourcePreOtnPMGroup.setDescription("A collection of pre-OTN performance monitoring\nobjects applicable to OMSn interfaces that\nsupport source functions.")
optIfOMSnSourcePreOtnPMThresholdGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 10, 133, 2, 1, 18)).setObjects(*(("OPT-IF-MIB", "optIfOMSnSrcCurrentUpperOutputPowerThreshold"), ("OPT-IF-MIB", "optIfOMSnSrcCurrentLowerOutputPowerThreshold"), ("OPT-IF-MIB", "optIfOMSnSrcCurrentLowerInputPowerThreshold"), ("OPT-IF-MIB", "optIfOMSnSrcCurrentUpperInputPowerThreshold"), ) )
if mibBuilder.loadTexts: optIfOMSnSourcePreOtnPMThresholdGroup.setDescription("A collection of pre-OTN performance monitoring\nthreshold objects applicable to OMSn interfaces that\nthat support source functions.")
optIfOChGroupCommonGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 10, 133, 2, 1, 19)).setObjects(*(("OPT-IF-MIB", "optIfOChGroupDirectionality"), ) )
if mibBuilder.loadTexts: optIfOChGroupCommonGroup.setDescription("A collection of configuration objects\napplicable to all OChGroup interfaces.")
optIfOChGroupSinkPreOtnPMGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 10, 133, 2, 1, 20)).setObjects(*(("OPT-IF-MIB", "optIfOChGroupSinkCurDayHighOutputPower"), ("OPT-IF-MIB", "optIfOChGroupSinkPrevDayLastOutputPower"), ("OPT-IF-MIB", "optIfOChGroupSinkCurrentAggregatedInputPower"), ("OPT-IF-MIB", "optIfOChGroupSinkCurrentLowAggregatedInputPower"), ("OPT-IF-MIB", "optIfOChGroupSinkIntervalSuspectedFlag"), ("OPT-IF-MIB", "optIfOChGroupSinkCurrentLowOutputPower"), ("OPT-IF-MIB", "optIfOChGroupSinkCurrentSuspectedFlag"), ("OPT-IF-MIB", "optIfOChGroupSinkIntervalLowAggregatedInputPower"), ("OPT-IF-MIB", "optIfOChGroupSinkPrevDayLowOutputPower"), ("OPT-IF-MIB", "optIfOChGroupSinkIntervalLastAggregatedInputPower"), ("OPT-IF-MIB", "optIfOChGroupSinkCurDaySuspectedFlag"), ("OPT-IF-MIB", "optIfOChGroupSinkCurDayLowAggregatedInputPower"), ("OPT-IF-MIB", "optIfOChGroupSinkCurDayLowOutputPower"), ("OPT-IF-MIB", "optIfOChGroupSinkIntervalHighOutputPower"), ("OPT-IF-MIB", "optIfOChGroupSinkIntervalHighAggregatedInputPower"), ("OPT-IF-MIB", "optIfOChGroupSinkPrevDayHighOutputPower"), ("OPT-IF-MIB", "optIfOChGroupSinkCurrentHighAggregatedInputPower"), ("OPT-IF-MIB", "optIfOChGroupSinkIntervalLowOutputPower"), ("OPT-IF-MIB", "optIfOChGroupSinkCurrentOutputPower"), ("OPT-IF-MIB", "optIfOChGroupSinkPrevDayLastAggregatedInputPower"), ("OPT-IF-MIB", "optIfOChGroupSinkPrevDayHighAggregatedInputPower"), ("OPT-IF-MIB", "optIfOChGroupSinkCurDayHighAggregatedInputPower"), ("OPT-IF-MIB", "optIfOChGroupSinkIntervalLastOutputPower"), ("OPT-IF-MIB", "optIfOChGroupSinkCurrentHighOutputPower"), ("OPT-IF-MIB", "optIfOChGroupSinkPrevDayLowAggregatedInputPower"), ("OPT-IF-MIB", "optIfOChGroupSinkPrevDaySuspectedFlag"), ) )
if mibBuilder.loadTexts: optIfOChGroupSinkPreOtnPMGroup.setDescription("A collection of pre-OTN performance monitoring\nobjects applicable to OChGroup interfaces that\nsupport sink functions.")
optIfOChGroupSinkPreOtnPMThresholdGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 10, 133, 2, 1, 21)).setObjects(*(("OPT-IF-MIB", "optIfOChGroupSinkCurrentUpperInputPowerThreshold"), ("OPT-IF-MIB", "optIfOChGroupSinkCurrentLowerOutputPowerThreshold"), ("OPT-IF-MIB", "optIfOChGroupSinkCurrentUpperOutputPowerThreshold"), ("OPT-IF-MIB", "optIfOChGroupSinkCurrentLowerInputPowerThreshold"), ) )
if mibBuilder.loadTexts: optIfOChGroupSinkPreOtnPMThresholdGroup.setDescription("A collection of pre-OTN performance monitoring\nthreshold objects applicable to OChGroup interfaces\nthat support sink functions.")
optIfOChGroupSourcePreOtnPMGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 10, 133, 2, 1, 22)).setObjects(*(("OPT-IF-MIB", "optIfOChGroupSrcCurDayLowOutputPower"), ("OPT-IF-MIB", "optIfOChGroupSrcIntervalLowAggregatedInputPower"), ("OPT-IF-MIB", "optIfOChGroupSrcCurrentOutputPower"), ("OPT-IF-MIB", "optIfOChGroupSrcPrevDayLowAggregatedInputPower"), ("OPT-IF-MIB", "optIfOChGroupSrcCurDayHighAggregatedInputPower"), ("OPT-IF-MIB", "optIfOChGroupSrcCurDayHighOutputPower"), ("OPT-IF-MIB", "optIfOChGroupSrcIntervalLastAggregatedInputPower"), ("OPT-IF-MIB", "optIfOChGroupSrcCurrentLowAggregatedInputPower"), ("OPT-IF-MIB", "optIfOChGroupSrcIntervalHighAggregatedInputPower"), ("OPT-IF-MIB", "optIfOChGroupSrcIntervalSuspectedFlag"), ("OPT-IF-MIB", "optIfOChGroupSrcIntervalHighOutputPower"), ("OPT-IF-MIB", "optIfOChGroupSrcPrevDayHighOutputPower"), ("OPT-IF-MIB", "optIfOChGroupSrcCurrentHighAggregatedInputPower"), ("OPT-IF-MIB", "optIfOChGroupSrcPrevDayLastAggregatedInputPower"), ("OPT-IF-MIB", "optIfOChGroupSrcCurrentSuspectedFlag"), ("OPT-IF-MIB", "optIfOChGroupSrcCurrentAggregatedInputPower"), ("OPT-IF-MIB", "optIfOChGroupSrcPrevDayLastOutputPower"), ("OPT-IF-MIB", "optIfOChGroupSrcCurrentHighOutputPower"), ("OPT-IF-MIB", "optIfOChGroupSrcCurrentLowOutputPower"), ("OPT-IF-MIB", "optIfOChGroupSrcCurDaySuspectedFlag"), ("OPT-IF-MIB", "optIfOChGroupSrcCurDayLowAggregatedInputPower"), ("OPT-IF-MIB", "optIfOChGroupSrcPrevDayHighAggregatedInputPower"), ("OPT-IF-MIB", "optIfOChGroupSrcIntervalLowOutputPower"), ("OPT-IF-MIB", "optIfOChGroupSrcPrevDayLowOutputPower"), ("OPT-IF-MIB", "optIfOChGroupSrcIntervalLastOutputPower"), ("OPT-IF-MIB", "optIfOChGroupSrcPrevDaySuspectedFlag"), ) )
if mibBuilder.loadTexts: optIfOChGroupSourcePreOtnPMGroup.setDescription("A collection of pre-OTN performance monitoring\nobjects applicable to OChGroup interfaces that\nsupport source functions.")
optIfOChGroupSourcePreOtnPMThresholdGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 10, 133, 2, 1, 23)).setObjects(*(("OPT-IF-MIB", "optIfOChGroupSrcCurrentUpperOutputPowerThreshold"), ("OPT-IF-MIB", "optIfOChGroupSrcCurrentLowerOutputPowerThreshold"), ("OPT-IF-MIB", "optIfOChGroupSrcCurrentLowerInputPowerThreshold"), ("OPT-IF-MIB", "optIfOChGroupSrcCurrentUpperInputPowerThreshold"), ) )
if mibBuilder.loadTexts: optIfOChGroupSourcePreOtnPMThresholdGroup.setDescription("A collection of pre-OTN performance monitoring\nthreshold objects applicable to OChGroup interfaces that\nthat support source functions.")
optIfOChCommonGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 10, 133, 2, 1, 24)).setObjects(*(("OPT-IF-MIB", "optIfOChDirectionality"), ) )
if mibBuilder.loadTexts: optIfOChCommonGroup.setDescription("A collection of configuration objects\napplicable to all OCh interfaces.")
optIfOChSinkGroupBasic = ObjectGroup((1, 3, 6, 1, 2, 1, 10, 133, 2, 1, 25)).setObjects(*(("OPT-IF-MIB", "optIfOChCurrentStatus"), ) )
if mibBuilder.loadTexts: optIfOChSinkGroupBasic.setDescription("A collection of configuration objects\napplicable to all OCh interfaces that\nsupport sink functions.")
optIfOChSinkPreOtnPMGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 10, 133, 2, 1, 26)).setObjects(*(("OPT-IF-MIB", "optIfOChSinkCurrentInputPower"), ("OPT-IF-MIB", "optIfOChSinkPrevDayLastInputPower"), ("OPT-IF-MIB", "optIfOChSinkIntervalLowInputPower"), ("OPT-IF-MIB", "optIfOChSinkCurrentSuspectedFlag"), ("OPT-IF-MIB", "optIfOChSinkIntervalLastInputPower"), ("OPT-IF-MIB", "optIfOChSinkCurrentHighInputPower"), ("OPT-IF-MIB", "optIfOChSinkIntervalHighInputPower"), ("OPT-IF-MIB", "optIfOChSinkCurDayLowInputPower"), ("OPT-IF-MIB", "optIfOChSinkCurDayHighInputPower"), ("OPT-IF-MIB", "optIfOChSinkPrevDayHighInputPower"), ("OPT-IF-MIB", "optIfOChSinkPrevDaySuspectedFlag"), ("OPT-IF-MIB", "optIfOChSinkCurrentLowInputPower"), ("OPT-IF-MIB", "optIfOChSinkIntervalSuspectedFlag"), ("OPT-IF-MIB", "optIfOChSinkPrevDayLowInputPower"), ("OPT-IF-MIB", "optIfOChSinkCurDaySuspectedFlag"), ) )
if mibBuilder.loadTexts: optIfOChSinkPreOtnPMGroup.setDescription("A collection of pre-OTN performance monitoring\nobjects applicable to OCh interfaces that\nsupport sink functions.")
optIfOChSinkPreOtnPMThresholdGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 10, 133, 2, 1, 27)).setObjects(*(("OPT-IF-MIB", "optIfOChSinkCurrentLowerInputPowerThreshold"), ("OPT-IF-MIB", "optIfOChSinkCurrentUpperInputPowerThreshold"), ) )
if mibBuilder.loadTexts: optIfOChSinkPreOtnPMThresholdGroup.setDescription("A collection of pre-OTN performance monitoring\nthreshold objects applicable to OCh interfaces\nthat support sink functions.")
optIfOChSourcePreOtnPMGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 10, 133, 2, 1, 28)).setObjects(*(("OPT-IF-MIB", "optIfOChSrcIntervalLowOutputPower"), ("OPT-IF-MIB", "optIfOChSrcIntervalHighOutputPower"), ("OPT-IF-MIB", "optIfOChSrcIntervalSuspectedFlag"), ("OPT-IF-MIB", "optIfOChSrcCurrentLowOutputPower"), ("OPT-IF-MIB", "optIfOChSrcCurrentOutputPower"), ("OPT-IF-MIB", "optIfOChSrcCurDayHighOutputPower"), ("OPT-IF-MIB", "optIfOChSrcPrevDayLowOutputPower"), ("OPT-IF-MIB", "optIfOChSrcCurrentHighOutputPower"), ("OPT-IF-MIB", "optIfOChSrcCurrentSuspectedFlag"), ("OPT-IF-MIB", "optIfOChSrcCurDayLowOutputPower"), ("OPT-IF-MIB", "optIfOChSrcPrevDayHighOutputPower"), ("OPT-IF-MIB", "optIfOChSrcIntervalLastOutputPower"), ("OPT-IF-MIB", "optIfOChSrcCurDaySuspectedFlag"), ("OPT-IF-MIB", "optIfOChSrcPrevDayLastOutputPower"), ("OPT-IF-MIB", "optIfOChSrcPrevDaySuspectedFlag"), ) )
if mibBuilder.loadTexts: optIfOChSourcePreOtnPMGroup.setDescription("A collection of pre-OTN performance monitoring\nobjects applicable to OCh interfaces that\nsupport source functions.")
optIfOChSourcePreOtnPMThresholdGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 10, 133, 2, 1, 29)).setObjects(*(("OPT-IF-MIB", "optIfOChSrcCurrentLowerOutputPowerThreshold"), ("OPT-IF-MIB", "optIfOChSrcCurrentUpperOutputPowerThreshold"), ) )
if mibBuilder.loadTexts: optIfOChSourcePreOtnPMThresholdGroup.setDescription("A collection of pre-OTN performance monitoring\nthreshold objects applicable to OCh interfaces\nthat support source functions.")
optIfOTUkCommonGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 10, 133, 2, 1, 30)).setObjects(*(("OPT-IF-MIB", "optIfOTUkBitRateK"), ("OPT-IF-MIB", "optIfOTUkDirectionality"), ) )
if mibBuilder.loadTexts: optIfOTUkCommonGroup.setDescription("A collection of configuration objects\napplicable to all OTUk interfaces.")
optIfOTUkSourceGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 10, 133, 2, 1, 31)).setObjects(*(("OPT-IF-MIB", "optIfOTUkTraceIdentifierTransmitted"), ("OPT-IF-MIB", "optIfOTUkSourceAdaptActive"), ) )
if mibBuilder.loadTexts: optIfOTUkSourceGroup.setDescription("A collection of configuration objects\napplicable to OTUk interfaces that\nsupport source functions.")
optIfOTUkSinkGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 10, 133, 2, 1, 32)).setObjects(*(("OPT-IF-MIB", "optIfOTUkTraceIdentifierAccepted"), ("OPT-IF-MIB", "optIfOTUkSinkAdaptActive"), ("OPT-IF-MIB", "optIfOTUkDAPIExpected"), ("OPT-IF-MIB", "optIfOTUkTIMDetMode"), ("OPT-IF-MIB", "optIfOTUkCurrentStatus"), ("OPT-IF-MIB", "optIfOTUkDEGM"), ("OPT-IF-MIB", "optIfOTUkSAPIExpected"), ("OPT-IF-MIB", "optIfOTUkSinkFECEnabled"), ("OPT-IF-MIB", "optIfOTUkTIMActEnabled"), ("OPT-IF-MIB", "optIfOTUkDEGThr"), ) )
if mibBuilder.loadTexts: optIfOTUkSinkGroup.setDescription("A collection of configuration objects\napplicable to OTUk interfaces that\nsupport sink functions.")
optIfGCC0Group = ObjectGroup((1, 3, 6, 1, 2, 1, 10, 133, 2, 1, 33)).setObjects(*(("OPT-IF-MIB", "optIfGCC0Application"), ("OPT-IF-MIB", "optIfGCC0RowStatus"), ) )
if mibBuilder.loadTexts: optIfGCC0Group.setDescription("A collection of GCC0 configuration objects.")
optIfODUkGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 10, 133, 2, 1, 34)).setObjects(*(("OPT-IF-MIB", "optIfODUkPositionSeqCurrentSize"), ("OPT-IF-MIB", "optIfODUkPositionSeqPosition"), ("OPT-IF-MIB", "optIfODUkPositionSeqPointer"), ("OPT-IF-MIB", "optIfODUkDirectionality"), ("OPT-IF-MIB", "optIfODUkBitRateK"), ("OPT-IF-MIB", "optIfODUkTcmFieldsInUse"), ("OPT-IF-MIB", "optIfODUkTtpPresent"), ) )
if mibBuilder.loadTexts: optIfODUkGroup.setDescription("A collection of configuration objects\napplicable to all ODUk interfaces.")
optIfODUkTtpSourceGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 10, 133, 2, 1, 35)).setObjects(*(("OPT-IF-MIB", "optIfODUkTtpTraceIdentifierTransmitted"), ) )
if mibBuilder.loadTexts: optIfODUkTtpSourceGroup.setDescription("A collection of configuration objects\napplicable to all interfaces that support\nODUk trail termination source functions.")
optIfODUkTtpSinkGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 10, 133, 2, 1, 36)).setObjects(*(("OPT-IF-MIB", "optIfODUkTtpDAPIExpected"), ("OPT-IF-MIB", "optIfODUkTtpTIMActEnabled"), ("OPT-IF-MIB", "optIfODUkTtpDEGM"), ("OPT-IF-MIB", "optIfODUkTtpTIMDetMode"), ("OPT-IF-MIB", "optIfODUkTtpCurrentStatus"), ("OPT-IF-MIB", "optIfODUkTtpSAPIExpected"), ("OPT-IF-MIB", "optIfODUkTtpTraceIdentifierAccepted"), ("OPT-IF-MIB", "optIfODUkTtpDEGThr"), ) )
if mibBuilder.loadTexts: optIfODUkTtpSinkGroup.setDescription("A collection of ODUk configuration objects\napplicable to all interfaces that support\nODUk trail termination sink functions.")
optIfODUkNimGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 10, 133, 2, 1, 37)).setObjects(*(("OPT-IF-MIB", "optIfODUkNimRowStatus"), ("OPT-IF-MIB", "optIfODUkNimDAPIExpected"), ("OPT-IF-MIB", "optIfODUkNimTIMActEnabled"), ("OPT-IF-MIB", "optIfODUkNimDEGM"), ("OPT-IF-MIB", "optIfODUkNimTIMDetMode"), ("OPT-IF-MIB", "optIfODUkNimCurrentStatus"), ("OPT-IF-MIB", "optIfODUkNimSAPIExpected"), ("OPT-IF-MIB", "optIfODUkNimTraceIdentifierAccepted"), ("OPT-IF-MIB", "optIfODUkNimDEGThr"), ) )
if mibBuilder.loadTexts: optIfODUkNimGroup.setDescription("A collection of ODUk Nim configuration objects.")
optIfGCC12Group = ObjectGroup((1, 3, 6, 1, 2, 1, 10, 133, 2, 1, 38)).setObjects(*(("OPT-IF-MIB", "optIfGCC12RowStatus"), ("OPT-IF-MIB", "optIfGCC12GCCPassThrough"), ("OPT-IF-MIB", "optIfGCC12Application"), ) )
if mibBuilder.loadTexts: optIfGCC12Group.setDescription("A collection of GCC12 configuration objects.")
optIfODUkTCommonGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 10, 133, 2, 1, 39)).setObjects(*(("OPT-IF-MIB", "optIfODUkTRowStatus"), ) )
if mibBuilder.loadTexts: optIfODUkTCommonGroup.setDescription("A collection of configuration objects\napplicable to all ODUkT instances.")
optIfODUkTSourceGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 10, 133, 2, 1, 40)).setObjects(*(("OPT-IF-MIB", "optIfODUkTTraceIdentifierTransmitted"), ("OPT-IF-MIB", "optIfODUkTSourceLockSignalAdminState"), ) )
if mibBuilder.loadTexts: optIfODUkTSourceGroup.setDescription("A collection of configuration objects\napplicable to all ODUkT instances\nthat provide source functions.")
optIfODUkTSinkGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 10, 133, 2, 1, 41)).setObjects(*(("OPT-IF-MIB", "optIfODUkTTIMDetMode"), ("OPT-IF-MIB", "optIfODUkTDAPIExpected"), ("OPT-IF-MIB", "optIfODUkTDEGM"), ("OPT-IF-MIB", "optIfODUkTTIMActEnabled"), ("OPT-IF-MIB", "optIfODUkTTraceIdentifierAccepted"), ("OPT-IF-MIB", "optIfODUkTCurrentStatus"), ("OPT-IF-MIB", "optIfODUkTSAPIExpected"), ("OPT-IF-MIB", "optIfODUkTDEGThr"), ) )
if mibBuilder.loadTexts: optIfODUkTSinkGroup.setDescription("A collection of configuration objects\napplicable to all ODUkT instances\nthat provide sink functions.")
optIfODUkTSinkGroupCtp = ObjectGroup((1, 3, 6, 1, 2, 1, 10, 133, 2, 1, 42)).setObjects(*(("OPT-IF-MIB", "optIfODUkTSinkLockSignalAdminState"), ("OPT-IF-MIB", "optIfODUkTSinkMode"), ) )
if mibBuilder.loadTexts: optIfODUkTSinkGroupCtp.setDescription("A collection of configuration objects\napplicable to ODUkT instances not\ncolocated with an ODUk TTP that\nprovide sink functions.")
optIfODUkTNimGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 10, 133, 2, 1, 43)).setObjects(*(("OPT-IF-MIB", "optIfODUkTNimTIMDetMode"), ("OPT-IF-MIB", "optIfODUkTNimRowStatus"), ("OPT-IF-MIB", "optIfODUkTNimDEGThr"), ("OPT-IF-MIB", "optIfODUkTNimTraceIdentifierAccepted"), ("OPT-IF-MIB", "optIfODUkTNimTIMActEnabled"), ("OPT-IF-MIB", "optIfODUkTNimSAPIExpected"), ("OPT-IF-MIB", "optIfODUkTNimCurrentStatus"), ("OPT-IF-MIB", "optIfODUkTNimDEGM"), ("OPT-IF-MIB", "optIfODUkTNimDAPIExpected"), ) )
if mibBuilder.loadTexts: optIfODUkTNimGroup.setDescription("A collection of ODUkT Nim configuration objects.")

# Compliances

optIfOtnConfigCompl = ModuleCompliance((1, 3, 6, 1, 2, 1, 10, 133, 2, 2, 1)).setObjects(*(("OPT-IF-MIB", "optIfOMSnSinkGroupBasic"), ("OPT-IF-MIB", "optIfODUkTtpSinkGroup"), ("OPT-IF-MIB", "optIfOTSnCommonGroup"), ("OPT-IF-MIB", "optIfODUkTNimGroup"), ("OPT-IF-MIB", "optIfOTSnSinkGroupFull"), ("OPT-IF-MIB", "optIfOMSnCommonGroup"), ("OPT-IF-MIB", "optIfGCC0Group"), ("OPT-IF-MIB", "optIfODUkTSinkGroupCtp"), ("OPT-IF-MIB", "optIfOTSnSourceGroupFull"), ("OPT-IF-MIB", "optIfOTSnAPRStatusGroup"), ("OPT-IF-MIB", "optIfGCC12Group"), ("OPT-IF-MIB", "optIfOChSinkGroupBasic"), ("OPT-IF-MIB", "optIfODUkTCommonGroup"), ("OPT-IF-MIB", "optIfOTUkSinkGroup"), ("OPT-IF-MIB", "optIfODUkGroup"), ("OPT-IF-MIB", "optIfOChCommonGroup"), ("OPT-IF-MIB", "optIfOTUkCommonGroup"), ("OPT-IF-MIB", "optIfOTUkSourceGroup"), ("OPT-IF-MIB", "optIfODUkTtpSourceGroup"), ("OPT-IF-MIB", "optIfODUkNimGroup"), ("OPT-IF-MIB", "optIfOTSnAPRControlGroup"), ("OPT-IF-MIB", "optIfOTSnSinkGroupBasic"), ("OPT-IF-MIB", "optIfODUkTSinkGroup"), ("OPT-IF-MIB", "optIfOChGroupCommonGroup"), ("OPT-IF-MIB", "optIfOTMnGroup"), ("OPT-IF-MIB", "optIfODUkTSourceGroup"), ) )
if mibBuilder.loadTexts: optIfOtnConfigCompl.setDescription("Implementation requirements for the OTN configuration\nfunctions defined in this MIB module.")
optIfPreOtnPMCompl = ModuleCompliance((1, 3, 6, 1, 2, 1, 10, 133, 2, 2, 2)).setObjects(*(("OPT-IF-MIB", "optIfOChSourcePreOtnPMGroup"), ("OPT-IF-MIB", "optIfOChGroupSourcePreOtnPMGroup"), ("OPT-IF-MIB", "optIfOTSnSinkPreOtnPMGroup"), ("OPT-IF-MIB", "optIfOMSnSourcePreOtnPMGroup"), ("OPT-IF-MIB", "optIfPerfMonGroup"), ("OPT-IF-MIB", "optIfOChGroupSourcePreOtnPMThresholdGroup"), ("OPT-IF-MIB", "optIfOTSnSourcePreOtnPMGroup"), ("OPT-IF-MIB", "optIfOMSnSinkPreOtnPMThresholdGroup"), ("OPT-IF-MIB", "optIfOChGroupSinkPreOtnPMGroup"), ("OPT-IF-MIB", "optIfOChSinkPreOtnPMGroup"), ("OPT-IF-MIB", "optIfOChSourcePreOtnPMThresholdGroup"), ("OPT-IF-MIB", "optIfOTSnSourcePreOtnPMThresholdGroup"), ("OPT-IF-MIB", "optIfOMSnSinkPreOtnPMGroup"), ("OPT-IF-MIB", "optIfOTSnSinkPreOtnPMThresholdGroup"), ("OPT-IF-MIB", "optIfOChGroupSinkPreOtnPMThresholdGroup"), ("OPT-IF-MIB", "optIfOMSnSourcePreOtnPMThresholdGroup"), ("OPT-IF-MIB", "optIfOChSinkPreOtnPMThresholdGroup"), ) )
if mibBuilder.loadTexts: optIfPreOtnPMCompl.setDescription("Implementation requirements for Pre-OTN performance\nmonitoring functions defined in this MIB module.")

# Exports

# Module identity
mibBuilder.exportSymbols("OPT-IF-MIB", PYSNMP_MODULE_ID=optIfMibModule)

# Types
mibBuilder.exportSymbols("OPT-IF-MIB", OptIfAcTI=OptIfAcTI, OptIfBitRateK=OptIfBitRateK, OptIfDEGM=OptIfDEGM, OptIfDEGThr=OptIfDEGThr, OptIfDirectionality=OptIfDirectionality, OptIfExDAPI=OptIfExDAPI, OptIfExSAPI=OptIfExSAPI, OptIfIntervalNumber=OptIfIntervalNumber, OptIfSinkOrSource=OptIfSinkOrSource, OptIfTIMDetMode=OptIfTIMDetMode, OptIfTxTI=OptIfTxTI)

# Objects
mibBuilder.exportSymbols("OPT-IF-MIB", optIfMibModule=optIfMibModule, optIfObjects=optIfObjects, optIfOTMn=optIfOTMn, optIfOTMnTable=optIfOTMnTable, optIfOTMnEntry=optIfOTMnEntry, optIfOTMnOrder=optIfOTMnOrder, optIfOTMnReduced=optIfOTMnReduced, optIfOTMnBitRates=optIfOTMnBitRates, optIfOTMnInterfaceType=optIfOTMnInterfaceType, optIfOTMnTcmMax=optIfOTMnTcmMax, optIfOTMnOpticalReach=optIfOTMnOpticalReach, optIfPerfMon=optIfPerfMon, optIfPerfMonIntervalTable=optIfPerfMonIntervalTable, optIfPerfMonIntervalEntry=optIfPerfMonIntervalEntry, optIfPerfMonCurrentTimeElapsed=optIfPerfMonCurrentTimeElapsed, optIfPerfMonCurDayTimeElapsed=optIfPerfMonCurDayTimeElapsed, optIfPerfMonIntervalNumIntervals=optIfPerfMonIntervalNumIntervals, optIfPerfMonIntervalNumInvalidIntervals=optIfPerfMonIntervalNumInvalidIntervals, optIfOTSn=optIfOTSn, optIfOTSnConfigTable=optIfOTSnConfigTable, optIfOTSnConfigEntry=optIfOTSnConfigEntry, optIfOTSnDirectionality=optIfOTSnDirectionality, optIfOTSnAprStatus=optIfOTSnAprStatus, optIfOTSnAprControl=optIfOTSnAprControl, optIfOTSnTraceIdentifierTransmitted=optIfOTSnTraceIdentifierTransmitted, optIfOTSnDAPIExpected=optIfOTSnDAPIExpected, optIfOTSnSAPIExpected=optIfOTSnSAPIExpected, optIfOTSnTraceIdentifierAccepted=optIfOTSnTraceIdentifierAccepted, optIfOTSnTIMDetMode=optIfOTSnTIMDetMode, optIfOTSnTIMActEnabled=optIfOTSnTIMActEnabled, optIfOTSnCurrentStatus=optIfOTSnCurrentStatus, optIfOTSnSinkCurrentTable=optIfOTSnSinkCurrentTable, optIfOTSnSinkCurrentEntry=optIfOTSnSinkCurrentEntry, optIfOTSnSinkCurrentSuspectedFlag=optIfOTSnSinkCurrentSuspectedFlag, optIfOTSnSinkCurrentInputPower=optIfOTSnSinkCurrentInputPower, optIfOTSnSinkCurrentLowInputPower=optIfOTSnSinkCurrentLowInputPower, optIfOTSnSinkCurrentHighInputPower=optIfOTSnSinkCurrentHighInputPower, optIfOTSnSinkCurrentLowerInputPowerThreshold=optIfOTSnSinkCurrentLowerInputPowerThreshold, optIfOTSnSinkCurrentUpperInputPowerThreshold=optIfOTSnSinkCurrentUpperInputPowerThreshold, optIfOTSnSinkCurrentOutputPower=optIfOTSnSinkCurrentOutputPower, optIfOTSnSinkCurrentLowOutputPower=optIfOTSnSinkCurrentLowOutputPower, optIfOTSnSinkCurrentHighOutputPower=optIfOTSnSinkCurrentHighOutputPower, optIfOTSnSinkCurrentLowerOutputPowerThreshold=optIfOTSnSinkCurrentLowerOutputPowerThreshold, optIfOTSnSinkCurrentUpperOutputPowerThreshold=optIfOTSnSinkCurrentUpperOutputPowerThreshold, optIfOTSnSinkIntervalTable=optIfOTSnSinkIntervalTable, optIfOTSnSinkIntervalEntry=optIfOTSnSinkIntervalEntry, optIfOTSnSinkIntervalNumber=optIfOTSnSinkIntervalNumber, optIfOTSnSinkIntervalSuspectedFlag=optIfOTSnSinkIntervalSuspectedFlag, optIfOTSnSinkIntervalLastInputPower=optIfOTSnSinkIntervalLastInputPower, optIfOTSnSinkIntervalLowInputPower=optIfOTSnSinkIntervalLowInputPower, optIfOTSnSinkIntervalHighInputPower=optIfOTSnSinkIntervalHighInputPower, optIfOTSnSinkIntervalLastOutputPower=optIfOTSnSinkIntervalLastOutputPower, optIfOTSnSinkIntervalLowOutputPower=optIfOTSnSinkIntervalLowOutputPower, optIfOTSnSinkIntervalHighOutputPower=optIfOTSnSinkIntervalHighOutputPower, optIfOTSnSinkCurDayTable=optIfOTSnSinkCurDayTable, optIfOTSnSinkCurDayEntry=optIfOTSnSinkCurDayEntry, optIfOTSnSinkCurDaySuspectedFlag=optIfOTSnSinkCurDaySuspectedFlag, optIfOTSnSinkCurDayLowInputPower=optIfOTSnSinkCurDayLowInputPower, optIfOTSnSinkCurDayHighInputPower=optIfOTSnSinkCurDayHighInputPower, optIfOTSnSinkCurDayLowOutputPower=optIfOTSnSinkCurDayLowOutputPower, optIfOTSnSinkCurDayHighOutputPower=optIfOTSnSinkCurDayHighOutputPower, optIfOTSnSinkPrevDayTable=optIfOTSnSinkPrevDayTable, optIfOTSnSinkPrevDayEntry=optIfOTSnSinkPrevDayEntry, optIfOTSnSinkPrevDaySuspectedFlag=optIfOTSnSinkPrevDaySuspectedFlag, optIfOTSnSinkPrevDayLastInputPower=optIfOTSnSinkPrevDayLastInputPower, optIfOTSnSinkPrevDayLowInputPower=optIfOTSnSinkPrevDayLowInputPower, optIfOTSnSinkPrevDayHighInputPower=optIfOTSnSinkPrevDayHighInputPower, optIfOTSnSinkPrevDayLastOutputPower=optIfOTSnSinkPrevDayLastOutputPower, optIfOTSnSinkPrevDayLowOutputPower=optIfOTSnSinkPrevDayLowOutputPower, optIfOTSnSinkPrevDayHighOutputPower=optIfOTSnSinkPrevDayHighOutputPower, optIfOTSnSrcCurrentTable=optIfOTSnSrcCurrentTable, optIfOTSnSrcCurrentEntry=optIfOTSnSrcCurrentEntry, optIfOTSnSrcCurrentSuspectedFlag=optIfOTSnSrcCurrentSuspectedFlag, optIfOTSnSrcCurrentOutputPower=optIfOTSnSrcCurrentOutputPower, optIfOTSnSrcCurrentLowOutputPower=optIfOTSnSrcCurrentLowOutputPower, optIfOTSnSrcCurrentHighOutputPower=optIfOTSnSrcCurrentHighOutputPower, optIfOTSnSrcCurrentLowerOutputPowerThreshold=optIfOTSnSrcCurrentLowerOutputPowerThreshold, optIfOTSnSrcCurrentUpperOutputPowerThreshold=optIfOTSnSrcCurrentUpperOutputPowerThreshold, optIfOTSnSrcCurrentInputPower=optIfOTSnSrcCurrentInputPower, optIfOTSnSrcCurrentLowInputPower=optIfOTSnSrcCurrentLowInputPower, optIfOTSnSrcCurrentHighInputPower=optIfOTSnSrcCurrentHighInputPower, optIfOTSnSrcCurrentLowerInputPowerThreshold=optIfOTSnSrcCurrentLowerInputPowerThreshold, optIfOTSnSrcCurrentUpperInputPowerThreshold=optIfOTSnSrcCurrentUpperInputPowerThreshold, optIfOTSnSrcIntervalTable=optIfOTSnSrcIntervalTable, optIfOTSnSrcIntervalEntry=optIfOTSnSrcIntervalEntry, optIfOTSnSrcIntervalNumber=optIfOTSnSrcIntervalNumber, optIfOTSnSrcIntervalSuspectedFlag=optIfOTSnSrcIntervalSuspectedFlag, optIfOTSnSrcIntervalLastOutputPower=optIfOTSnSrcIntervalLastOutputPower, optIfOTSnSrcIntervalLowOutputPower=optIfOTSnSrcIntervalLowOutputPower, optIfOTSnSrcIntervalHighOutputPower=optIfOTSnSrcIntervalHighOutputPower, optIfOTSnSrcIntervalLastInputPower=optIfOTSnSrcIntervalLastInputPower, optIfOTSnSrcIntervalLowInputPower=optIfOTSnSrcIntervalLowInputPower, optIfOTSnSrcIntervalHighInputPower=optIfOTSnSrcIntervalHighInputPower, optIfOTSnSrcCurDayTable=optIfOTSnSrcCurDayTable, optIfOTSnSrcCurDayEntry=optIfOTSnSrcCurDayEntry, optIfOTSnSrcCurDaySuspectedFlag=optIfOTSnSrcCurDaySuspectedFlag, optIfOTSnSrcCurDayLowOutputPower=optIfOTSnSrcCurDayLowOutputPower, optIfOTSnSrcCurDayHighOutputPower=optIfOTSnSrcCurDayHighOutputPower, optIfOTSnSrcCurDayLowInputPower=optIfOTSnSrcCurDayLowInputPower, optIfOTSnSrcCurDayHighInputPower=optIfOTSnSrcCurDayHighInputPower, optIfOTSnSrcPrevDayTable=optIfOTSnSrcPrevDayTable, optIfOTSnSrcPrevDayEntry=optIfOTSnSrcPrevDayEntry, optIfOTSnSrcPrevDaySuspectedFlag=optIfOTSnSrcPrevDaySuspectedFlag, optIfOTSnSrcPrevDayLastOutputPower=optIfOTSnSrcPrevDayLastOutputPower, optIfOTSnSrcPrevDayLowOutputPower=optIfOTSnSrcPrevDayLowOutputPower, optIfOTSnSrcPrevDayHighOutputPower=optIfOTSnSrcPrevDayHighOutputPower, optIfOTSnSrcPrevDayLastInputPower=optIfOTSnSrcPrevDayLastInputPower, optIfOTSnSrcPrevDayLowInputPower=optIfOTSnSrcPrevDayLowInputPower, optIfOTSnSrcPrevDayHighInputPower=optIfOTSnSrcPrevDayHighInputPower, optIfOMSn=optIfOMSn, optIfOMSnConfigTable=optIfOMSnConfigTable, optIfOMSnConfigEntry=optIfOMSnConfigEntry, optIfOMSnDirectionality=optIfOMSnDirectionality, optIfOMSnCurrentStatus=optIfOMSnCurrentStatus, optIfOMSnSinkCurrentTable=optIfOMSnSinkCurrentTable, optIfOMSnSinkCurrentEntry=optIfOMSnSinkCurrentEntry, optIfOMSnSinkCurrentSuspectedFlag=optIfOMSnSinkCurrentSuspectedFlag, optIfOMSnSinkCurrentAggregatedInputPower=optIfOMSnSinkCurrentAggregatedInputPower, optIfOMSnSinkCurrentLowAggregatedInputPower=optIfOMSnSinkCurrentLowAggregatedInputPower, optIfOMSnSinkCurrentHighAggregatedInputPower=optIfOMSnSinkCurrentHighAggregatedInputPower, optIfOMSnSinkCurrentLowerInputPowerThreshold=optIfOMSnSinkCurrentLowerInputPowerThreshold, optIfOMSnSinkCurrentUpperInputPowerThreshold=optIfOMSnSinkCurrentUpperInputPowerThreshold, optIfOMSnSinkCurrentOutputPower=optIfOMSnSinkCurrentOutputPower, optIfOMSnSinkCurrentLowOutputPower=optIfOMSnSinkCurrentLowOutputPower, optIfOMSnSinkCurrentHighOutputPower=optIfOMSnSinkCurrentHighOutputPower, optIfOMSnSinkCurrentLowerOutputPowerThreshold=optIfOMSnSinkCurrentLowerOutputPowerThreshold)
mibBuilder.exportSymbols("OPT-IF-MIB", optIfOMSnSinkCurrentUpperOutputPowerThreshold=optIfOMSnSinkCurrentUpperOutputPowerThreshold, optIfOMSnSinkIntervalTable=optIfOMSnSinkIntervalTable, optIfOMSnSinkIntervalEntry=optIfOMSnSinkIntervalEntry, optIfOMSnSinkIntervalNumber=optIfOMSnSinkIntervalNumber, optIfOMSnSinkIntervalSuspectedFlag=optIfOMSnSinkIntervalSuspectedFlag, optIfOMSnSinkIntervalLastAggregatedInputPower=optIfOMSnSinkIntervalLastAggregatedInputPower, optIfOMSnSinkIntervalLowAggregatedInputPower=optIfOMSnSinkIntervalLowAggregatedInputPower, optIfOMSnSinkIntervalHighAggregatedInputPower=optIfOMSnSinkIntervalHighAggregatedInputPower, optIfOMSnSinkIntervalLastOutputPower=optIfOMSnSinkIntervalLastOutputPower, optIfOMSnSinkIntervalLowOutputPower=optIfOMSnSinkIntervalLowOutputPower, optIfOMSnSinkIntervalHighOutputPower=optIfOMSnSinkIntervalHighOutputPower, optIfOMSnSinkCurDayTable=optIfOMSnSinkCurDayTable, optIfOMSnSinkCurDayEntry=optIfOMSnSinkCurDayEntry, optIfOMSnSinkCurDaySuspectedFlag=optIfOMSnSinkCurDaySuspectedFlag, optIfOMSnSinkCurDayLowAggregatedInputPower=optIfOMSnSinkCurDayLowAggregatedInputPower, optIfOMSnSinkCurDayHighAggregatedInputPower=optIfOMSnSinkCurDayHighAggregatedInputPower, optIfOMSnSinkCurDayLowOutputPower=optIfOMSnSinkCurDayLowOutputPower, optIfOMSnSinkCurDayHighOutputPower=optIfOMSnSinkCurDayHighOutputPower, optIfOMSnSinkPrevDayTable=optIfOMSnSinkPrevDayTable, optIfOMSnSinkPrevDayEntry=optIfOMSnSinkPrevDayEntry, optIfOMSnSinkPrevDaySuspectedFlag=optIfOMSnSinkPrevDaySuspectedFlag, optIfOMSnSinkPrevDayLastAggregatedInputPower=optIfOMSnSinkPrevDayLastAggregatedInputPower, optIfOMSnSinkPrevDayLowAggregatedInputPower=optIfOMSnSinkPrevDayLowAggregatedInputPower, optIfOMSnSinkPrevDayHighAggregatedInputPower=optIfOMSnSinkPrevDayHighAggregatedInputPower, optIfOMSnSinkPrevDayLastOutputPower=optIfOMSnSinkPrevDayLastOutputPower, optIfOMSnSinkPrevDayLowOutputPower=optIfOMSnSinkPrevDayLowOutputPower, optIfOMSnSinkPrevDayHighOutputPower=optIfOMSnSinkPrevDayHighOutputPower, optIfOMSnSrcCurrentTable=optIfOMSnSrcCurrentTable, optIfOMSnSrcCurrentEntry=optIfOMSnSrcCurrentEntry, optIfOMSnSrcCurrentSuspectedFlag=optIfOMSnSrcCurrentSuspectedFlag, optIfOMSnSrcCurrentOutputPower=optIfOMSnSrcCurrentOutputPower, optIfOMSnSrcCurrentLowOutputPower=optIfOMSnSrcCurrentLowOutputPower, optIfOMSnSrcCurrentHighOutputPower=optIfOMSnSrcCurrentHighOutputPower, optIfOMSnSrcCurrentLowerOutputPowerThreshold=optIfOMSnSrcCurrentLowerOutputPowerThreshold, optIfOMSnSrcCurrentUpperOutputPowerThreshold=optIfOMSnSrcCurrentUpperOutputPowerThreshold, optIfOMSnSrcCurrentAggregatedInputPower=optIfOMSnSrcCurrentAggregatedInputPower, optIfOMSnSrcCurrentLowAggregatedInputPower=optIfOMSnSrcCurrentLowAggregatedInputPower, optIfOMSnSrcCurrentHighAggregatedInputPower=optIfOMSnSrcCurrentHighAggregatedInputPower, optIfOMSnSrcCurrentLowerInputPowerThreshold=optIfOMSnSrcCurrentLowerInputPowerThreshold, optIfOMSnSrcCurrentUpperInputPowerThreshold=optIfOMSnSrcCurrentUpperInputPowerThreshold, optIfOMSnSrcIntervalTable=optIfOMSnSrcIntervalTable, optIfOMSnSrcIntervalEntry=optIfOMSnSrcIntervalEntry, optIfOMSnSrcIntervalNumber=optIfOMSnSrcIntervalNumber, optIfOMSnSrcIntervalSuspectedFlag=optIfOMSnSrcIntervalSuspectedFlag, optIfOMSnSrcIntervalLastOutputPower=optIfOMSnSrcIntervalLastOutputPower, optIfOMSnSrcIntervalLowOutputPower=optIfOMSnSrcIntervalLowOutputPower, optIfOMSnSrcIntervalHighOutputPower=optIfOMSnSrcIntervalHighOutputPower, optIfOMSnSrcIntervalLastAggregatedInputPower=optIfOMSnSrcIntervalLastAggregatedInputPower, optIfOMSnSrcIntervalLowAggregatedInputPower=optIfOMSnSrcIntervalLowAggregatedInputPower, optIfOMSnSrcIntervalHighAggregatedInputPower=optIfOMSnSrcIntervalHighAggregatedInputPower, optIfOMSnSrcCurDayTable=optIfOMSnSrcCurDayTable, optIfOMSnSrcCurDayEntry=optIfOMSnSrcCurDayEntry, optIfOMSnSrcCurDaySuspectedFlag=optIfOMSnSrcCurDaySuspectedFlag, optIfOMSnSrcCurDayLowOutputPower=optIfOMSnSrcCurDayLowOutputPower, optIfOMSnSrcCurDayHighOutputPower=optIfOMSnSrcCurDayHighOutputPower, optIfOMSnSrcCurDayLowAggregatedInputPower=optIfOMSnSrcCurDayLowAggregatedInputPower, optIfOMSnSrcCurDayHighAggregatedInputPower=optIfOMSnSrcCurDayHighAggregatedInputPower, optIfOMSnSrcPrevDayTable=optIfOMSnSrcPrevDayTable, optIfOMSnSrcPrevDayEntry=optIfOMSnSrcPrevDayEntry, optIfOMSnSrcPrevDaySuspectedFlag=optIfOMSnSrcPrevDaySuspectedFlag, optIfOMSnSrcPrevDayLastOutputPower=optIfOMSnSrcPrevDayLastOutputPower, optIfOMSnSrcPrevDayLowOutputPower=optIfOMSnSrcPrevDayLowOutputPower, optIfOMSnSrcPrevDayHighOutputPower=optIfOMSnSrcPrevDayHighOutputPower, optIfOMSnSrcPrevDayLastAggregatedInputPower=optIfOMSnSrcPrevDayLastAggregatedInputPower, optIfOMSnSrcPrevDayLowAggregatedInputPower=optIfOMSnSrcPrevDayLowAggregatedInputPower, optIfOMSnSrcPrevDayHighAggregatedInputPower=optIfOMSnSrcPrevDayHighAggregatedInputPower, optIfOChGroup=optIfOChGroup, optIfOChGroupConfigTable=optIfOChGroupConfigTable, optIfOChGroupConfigEntry=optIfOChGroupConfigEntry, optIfOChGroupDirectionality=optIfOChGroupDirectionality, optIfOChGroupSinkCurrentTable=optIfOChGroupSinkCurrentTable, optIfOChGroupSinkCurrentEntry=optIfOChGroupSinkCurrentEntry, optIfOChGroupSinkCurrentSuspectedFlag=optIfOChGroupSinkCurrentSuspectedFlag, optIfOChGroupSinkCurrentAggregatedInputPower=optIfOChGroupSinkCurrentAggregatedInputPower, optIfOChGroupSinkCurrentLowAggregatedInputPower=optIfOChGroupSinkCurrentLowAggregatedInputPower, optIfOChGroupSinkCurrentHighAggregatedInputPower=optIfOChGroupSinkCurrentHighAggregatedInputPower, optIfOChGroupSinkCurrentLowerInputPowerThreshold=optIfOChGroupSinkCurrentLowerInputPowerThreshold, optIfOChGroupSinkCurrentUpperInputPowerThreshold=optIfOChGroupSinkCurrentUpperInputPowerThreshold, optIfOChGroupSinkCurrentOutputPower=optIfOChGroupSinkCurrentOutputPower, optIfOChGroupSinkCurrentLowOutputPower=optIfOChGroupSinkCurrentLowOutputPower, optIfOChGroupSinkCurrentHighOutputPower=optIfOChGroupSinkCurrentHighOutputPower, optIfOChGroupSinkCurrentLowerOutputPowerThreshold=optIfOChGroupSinkCurrentLowerOutputPowerThreshold, optIfOChGroupSinkCurrentUpperOutputPowerThreshold=optIfOChGroupSinkCurrentUpperOutputPowerThreshold, optIfOChGroupSinkIntervalTable=optIfOChGroupSinkIntervalTable, optIfOChGroupSinkIntervalEntry=optIfOChGroupSinkIntervalEntry, optIfOChGroupSinkIntervalNumber=optIfOChGroupSinkIntervalNumber, optIfOChGroupSinkIntervalSuspectedFlag=optIfOChGroupSinkIntervalSuspectedFlag, optIfOChGroupSinkIntervalLastAggregatedInputPower=optIfOChGroupSinkIntervalLastAggregatedInputPower, optIfOChGroupSinkIntervalLowAggregatedInputPower=optIfOChGroupSinkIntervalLowAggregatedInputPower, optIfOChGroupSinkIntervalHighAggregatedInputPower=optIfOChGroupSinkIntervalHighAggregatedInputPower, optIfOChGroupSinkIntervalLastOutputPower=optIfOChGroupSinkIntervalLastOutputPower, optIfOChGroupSinkIntervalLowOutputPower=optIfOChGroupSinkIntervalLowOutputPower, optIfOChGroupSinkIntervalHighOutputPower=optIfOChGroupSinkIntervalHighOutputPower, optIfOChGroupSinkCurDayTable=optIfOChGroupSinkCurDayTable, optIfOChGroupSinkCurDayEntry=optIfOChGroupSinkCurDayEntry, optIfOChGroupSinkCurDaySuspectedFlag=optIfOChGroupSinkCurDaySuspectedFlag, optIfOChGroupSinkCurDayLowAggregatedInputPower=optIfOChGroupSinkCurDayLowAggregatedInputPower, optIfOChGroupSinkCurDayHighAggregatedInputPower=optIfOChGroupSinkCurDayHighAggregatedInputPower, optIfOChGroupSinkCurDayLowOutputPower=optIfOChGroupSinkCurDayLowOutputPower, optIfOChGroupSinkCurDayHighOutputPower=optIfOChGroupSinkCurDayHighOutputPower, optIfOChGroupSinkPrevDayTable=optIfOChGroupSinkPrevDayTable, optIfOChGroupSinkPrevDayEntry=optIfOChGroupSinkPrevDayEntry, optIfOChGroupSinkPrevDaySuspectedFlag=optIfOChGroupSinkPrevDaySuspectedFlag, optIfOChGroupSinkPrevDayLastAggregatedInputPower=optIfOChGroupSinkPrevDayLastAggregatedInputPower, optIfOChGroupSinkPrevDayLowAggregatedInputPower=optIfOChGroupSinkPrevDayLowAggregatedInputPower, optIfOChGroupSinkPrevDayHighAggregatedInputPower=optIfOChGroupSinkPrevDayHighAggregatedInputPower, optIfOChGroupSinkPrevDayLastOutputPower=optIfOChGroupSinkPrevDayLastOutputPower, optIfOChGroupSinkPrevDayLowOutputPower=optIfOChGroupSinkPrevDayLowOutputPower, optIfOChGroupSinkPrevDayHighOutputPower=optIfOChGroupSinkPrevDayHighOutputPower, optIfOChGroupSrcCurrentTable=optIfOChGroupSrcCurrentTable, optIfOChGroupSrcCurrentEntry=optIfOChGroupSrcCurrentEntry, optIfOChGroupSrcCurrentSuspectedFlag=optIfOChGroupSrcCurrentSuspectedFlag, optIfOChGroupSrcCurrentOutputPower=optIfOChGroupSrcCurrentOutputPower, optIfOChGroupSrcCurrentLowOutputPower=optIfOChGroupSrcCurrentLowOutputPower, optIfOChGroupSrcCurrentHighOutputPower=optIfOChGroupSrcCurrentHighOutputPower, optIfOChGroupSrcCurrentLowerOutputPowerThreshold=optIfOChGroupSrcCurrentLowerOutputPowerThreshold, optIfOChGroupSrcCurrentUpperOutputPowerThreshold=optIfOChGroupSrcCurrentUpperOutputPowerThreshold, optIfOChGroupSrcCurrentAggregatedInputPower=optIfOChGroupSrcCurrentAggregatedInputPower, optIfOChGroupSrcCurrentLowAggregatedInputPower=optIfOChGroupSrcCurrentLowAggregatedInputPower, optIfOChGroupSrcCurrentHighAggregatedInputPower=optIfOChGroupSrcCurrentHighAggregatedInputPower, optIfOChGroupSrcCurrentLowerInputPowerThreshold=optIfOChGroupSrcCurrentLowerInputPowerThreshold, optIfOChGroupSrcCurrentUpperInputPowerThreshold=optIfOChGroupSrcCurrentUpperInputPowerThreshold, optIfOChGroupSrcIntervalTable=optIfOChGroupSrcIntervalTable, optIfOChGroupSrcIntervalEntry=optIfOChGroupSrcIntervalEntry, optIfOChGroupSrcIntervalNumber=optIfOChGroupSrcIntervalNumber, optIfOChGroupSrcIntervalSuspectedFlag=optIfOChGroupSrcIntervalSuspectedFlag, optIfOChGroupSrcIntervalLastOutputPower=optIfOChGroupSrcIntervalLastOutputPower)
mibBuilder.exportSymbols("OPT-IF-MIB", optIfOChGroupSrcIntervalLowOutputPower=optIfOChGroupSrcIntervalLowOutputPower, optIfOChGroupSrcIntervalHighOutputPower=optIfOChGroupSrcIntervalHighOutputPower, optIfOChGroupSrcIntervalLastAggregatedInputPower=optIfOChGroupSrcIntervalLastAggregatedInputPower, optIfOChGroupSrcIntervalLowAggregatedInputPower=optIfOChGroupSrcIntervalLowAggregatedInputPower, optIfOChGroupSrcIntervalHighAggregatedInputPower=optIfOChGroupSrcIntervalHighAggregatedInputPower, optIfOChGroupSrcCurDayTable=optIfOChGroupSrcCurDayTable, optIfOChGroupSrcCurDayEntry=optIfOChGroupSrcCurDayEntry, optIfOChGroupSrcCurDaySuspectedFlag=optIfOChGroupSrcCurDaySuspectedFlag, optIfOChGroupSrcCurDayLowOutputPower=optIfOChGroupSrcCurDayLowOutputPower, optIfOChGroupSrcCurDayHighOutputPower=optIfOChGroupSrcCurDayHighOutputPower, optIfOChGroupSrcCurDayLowAggregatedInputPower=optIfOChGroupSrcCurDayLowAggregatedInputPower, optIfOChGroupSrcCurDayHighAggregatedInputPower=optIfOChGroupSrcCurDayHighAggregatedInputPower, optIfOChGroupSrcPrevDayTable=optIfOChGroupSrcPrevDayTable, optIfOChGroupSrcPrevDayEntry=optIfOChGroupSrcPrevDayEntry, optIfOChGroupSrcPrevDaySuspectedFlag=optIfOChGroupSrcPrevDaySuspectedFlag, optIfOChGroupSrcPrevDayLastOutputPower=optIfOChGroupSrcPrevDayLastOutputPower, optIfOChGroupSrcPrevDayLowOutputPower=optIfOChGroupSrcPrevDayLowOutputPower, optIfOChGroupSrcPrevDayHighOutputPower=optIfOChGroupSrcPrevDayHighOutputPower, optIfOChGroupSrcPrevDayLastAggregatedInputPower=optIfOChGroupSrcPrevDayLastAggregatedInputPower, optIfOChGroupSrcPrevDayLowAggregatedInputPower=optIfOChGroupSrcPrevDayLowAggregatedInputPower, optIfOChGroupSrcPrevDayHighAggregatedInputPower=optIfOChGroupSrcPrevDayHighAggregatedInputPower, optIfOCh=optIfOCh, optIfOChConfigTable=optIfOChConfigTable, optIfOChConfigEntry=optIfOChConfigEntry, optIfOChDirectionality=optIfOChDirectionality, optIfOChCurrentStatus=optIfOChCurrentStatus, optIfOChSinkCurrentTable=optIfOChSinkCurrentTable, optIfOChSinkCurrentEntry=optIfOChSinkCurrentEntry, optIfOChSinkCurrentSuspectedFlag=optIfOChSinkCurrentSuspectedFlag, optIfOChSinkCurrentInputPower=optIfOChSinkCurrentInputPower, optIfOChSinkCurrentLowInputPower=optIfOChSinkCurrentLowInputPower, optIfOChSinkCurrentHighInputPower=optIfOChSinkCurrentHighInputPower, optIfOChSinkCurrentLowerInputPowerThreshold=optIfOChSinkCurrentLowerInputPowerThreshold, optIfOChSinkCurrentUpperInputPowerThreshold=optIfOChSinkCurrentUpperInputPowerThreshold, optIfOChSinkIntervalTable=optIfOChSinkIntervalTable, optIfOChSinkIntervalEntry=optIfOChSinkIntervalEntry, optIfOChSinkIntervalNumber=optIfOChSinkIntervalNumber, optIfOChSinkIntervalSuspectedFlag=optIfOChSinkIntervalSuspectedFlag, optIfOChSinkIntervalLastInputPower=optIfOChSinkIntervalLastInputPower, optIfOChSinkIntervalLowInputPower=optIfOChSinkIntervalLowInputPower, optIfOChSinkIntervalHighInputPower=optIfOChSinkIntervalHighInputPower, optIfOChSinkCurDayTable=optIfOChSinkCurDayTable, optIfOChSinkCurDayEntry=optIfOChSinkCurDayEntry, optIfOChSinkCurDaySuspectedFlag=optIfOChSinkCurDaySuspectedFlag, optIfOChSinkCurDayLowInputPower=optIfOChSinkCurDayLowInputPower, optIfOChSinkCurDayHighInputPower=optIfOChSinkCurDayHighInputPower, optIfOChSinkPrevDayTable=optIfOChSinkPrevDayTable, optIfOChSinkPrevDayEntry=optIfOChSinkPrevDayEntry, optIfOChSinkPrevDaySuspectedFlag=optIfOChSinkPrevDaySuspectedFlag, optIfOChSinkPrevDayLastInputPower=optIfOChSinkPrevDayLastInputPower, optIfOChSinkPrevDayLowInputPower=optIfOChSinkPrevDayLowInputPower, optIfOChSinkPrevDayHighInputPower=optIfOChSinkPrevDayHighInputPower, optIfOChSrcCurrentTable=optIfOChSrcCurrentTable, optIfOChSrcCurrentEntry=optIfOChSrcCurrentEntry, optIfOChSrcCurrentSuspectedFlag=optIfOChSrcCurrentSuspectedFlag, optIfOChSrcCurrentOutputPower=optIfOChSrcCurrentOutputPower, optIfOChSrcCurrentLowOutputPower=optIfOChSrcCurrentLowOutputPower, optIfOChSrcCurrentHighOutputPower=optIfOChSrcCurrentHighOutputPower, optIfOChSrcCurrentLowerOutputPowerThreshold=optIfOChSrcCurrentLowerOutputPowerThreshold, optIfOChSrcCurrentUpperOutputPowerThreshold=optIfOChSrcCurrentUpperOutputPowerThreshold, optIfOChSrcIntervalTable=optIfOChSrcIntervalTable, optIfOChSrcIntervalEntry=optIfOChSrcIntervalEntry, optIfOChSrcIntervalNumber=optIfOChSrcIntervalNumber, optIfOChSrcIntervalSuspectedFlag=optIfOChSrcIntervalSuspectedFlag, optIfOChSrcIntervalLastOutputPower=optIfOChSrcIntervalLastOutputPower, optIfOChSrcIntervalLowOutputPower=optIfOChSrcIntervalLowOutputPower, optIfOChSrcIntervalHighOutputPower=optIfOChSrcIntervalHighOutputPower, optIfOChSrcCurDayTable=optIfOChSrcCurDayTable, optIfOChSrcCurDayEntry=optIfOChSrcCurDayEntry, optIfOChSrcCurDaySuspectedFlag=optIfOChSrcCurDaySuspectedFlag, optIfOChSrcCurDayLowOutputPower=optIfOChSrcCurDayLowOutputPower, optIfOChSrcCurDayHighOutputPower=optIfOChSrcCurDayHighOutputPower, optIfOChSrcPrevDayTable=optIfOChSrcPrevDayTable, optIfOChSrcPrevDayEntry=optIfOChSrcPrevDayEntry, optIfOChSrcPrevDaySuspectedFlag=optIfOChSrcPrevDaySuspectedFlag, optIfOChSrcPrevDayLastOutputPower=optIfOChSrcPrevDayLastOutputPower, optIfOChSrcPrevDayLowOutputPower=optIfOChSrcPrevDayLowOutputPower, optIfOChSrcPrevDayHighOutputPower=optIfOChSrcPrevDayHighOutputPower, optIfOTUk=optIfOTUk, optIfOTUkConfigTable=optIfOTUkConfigTable, optIfOTUkConfigEntry=optIfOTUkConfigEntry, optIfOTUkDirectionality=optIfOTUkDirectionality, optIfOTUkBitRateK=optIfOTUkBitRateK, optIfOTUkTraceIdentifierTransmitted=optIfOTUkTraceIdentifierTransmitted, optIfOTUkDAPIExpected=optIfOTUkDAPIExpected, optIfOTUkSAPIExpected=optIfOTUkSAPIExpected, optIfOTUkTraceIdentifierAccepted=optIfOTUkTraceIdentifierAccepted, optIfOTUkTIMDetMode=optIfOTUkTIMDetMode, optIfOTUkTIMActEnabled=optIfOTUkTIMActEnabled, optIfOTUkDEGThr=optIfOTUkDEGThr, optIfOTUkDEGM=optIfOTUkDEGM, optIfOTUkSinkAdaptActive=optIfOTUkSinkAdaptActive, optIfOTUkSourceAdaptActive=optIfOTUkSourceAdaptActive, optIfOTUkSinkFECEnabled=optIfOTUkSinkFECEnabled, optIfOTUkCurrentStatus=optIfOTUkCurrentStatus, optIfGCC0ConfigTable=optIfGCC0ConfigTable, optIfGCC0ConfigEntry=optIfGCC0ConfigEntry, optIfGCC0Directionality=optIfGCC0Directionality, optIfGCC0Application=optIfGCC0Application, optIfGCC0RowStatus=optIfGCC0RowStatus, optIfODUk=optIfODUk, optIfODUkConfigTable=optIfODUkConfigTable, optIfODUkConfigEntry=optIfODUkConfigEntry, optIfODUkDirectionality=optIfODUkDirectionality, optIfODUkBitRateK=optIfODUkBitRateK, optIfODUkTcmFieldsInUse=optIfODUkTcmFieldsInUse, optIfODUkPositionSeqCurrentSize=optIfODUkPositionSeqCurrentSize, optIfODUkTtpPresent=optIfODUkTtpPresent, optIfODUkTtpConfigTable=optIfODUkTtpConfigTable, optIfODUkTtpConfigEntry=optIfODUkTtpConfigEntry, optIfODUkTtpTraceIdentifierTransmitted=optIfODUkTtpTraceIdentifierTransmitted, optIfODUkTtpDAPIExpected=optIfODUkTtpDAPIExpected, optIfODUkTtpSAPIExpected=optIfODUkTtpSAPIExpected, optIfODUkTtpTraceIdentifierAccepted=optIfODUkTtpTraceIdentifierAccepted, optIfODUkTtpTIMDetMode=optIfODUkTtpTIMDetMode, optIfODUkTtpTIMActEnabled=optIfODUkTtpTIMActEnabled, optIfODUkTtpDEGThr=optIfODUkTtpDEGThr, optIfODUkTtpDEGM=optIfODUkTtpDEGM, optIfODUkTtpCurrentStatus=optIfODUkTtpCurrentStatus, optIfODUkPositionSeqTable=optIfODUkPositionSeqTable, optIfODUkPositionSeqEntry=optIfODUkPositionSeqEntry, optIfODUkPositionSeqIndex=optIfODUkPositionSeqIndex, optIfODUkPositionSeqPosition=optIfODUkPositionSeqPosition, optIfODUkPositionSeqPointer=optIfODUkPositionSeqPointer, optIfODUkNimConfigTable=optIfODUkNimConfigTable, optIfODUkNimConfigEntry=optIfODUkNimConfigEntry, optIfODUkNimDirectionality=optIfODUkNimDirectionality)
mibBuilder.exportSymbols("OPT-IF-MIB", optIfODUkNimDAPIExpected=optIfODUkNimDAPIExpected, optIfODUkNimSAPIExpected=optIfODUkNimSAPIExpected, optIfODUkNimTraceIdentifierAccepted=optIfODUkNimTraceIdentifierAccepted, optIfODUkNimTIMDetMode=optIfODUkNimTIMDetMode, optIfODUkNimTIMActEnabled=optIfODUkNimTIMActEnabled, optIfODUkNimDEGThr=optIfODUkNimDEGThr, optIfODUkNimDEGM=optIfODUkNimDEGM, optIfODUkNimCurrentStatus=optIfODUkNimCurrentStatus, optIfODUkNimRowStatus=optIfODUkNimRowStatus, optIfGCC12ConfigTable=optIfGCC12ConfigTable, optIfGCC12ConfigEntry=optIfGCC12ConfigEntry, optIfGCC12Codirectional=optIfGCC12Codirectional, optIfGCC12GCCAccess=optIfGCC12GCCAccess, optIfGCC12GCCPassThrough=optIfGCC12GCCPassThrough, optIfGCC12Application=optIfGCC12Application, optIfGCC12RowStatus=optIfGCC12RowStatus, optIfODUkT=optIfODUkT, optIfODUkTConfigTable=optIfODUkTConfigTable, optIfODUkTConfigEntry=optIfODUkTConfigEntry, optIfODUkTTcmField=optIfODUkTTcmField, optIfODUkTCodirectional=optIfODUkTCodirectional, optIfODUkTTraceIdentifierTransmitted=optIfODUkTTraceIdentifierTransmitted, optIfODUkTDAPIExpected=optIfODUkTDAPIExpected, optIfODUkTSAPIExpected=optIfODUkTSAPIExpected, optIfODUkTTraceIdentifierAccepted=optIfODUkTTraceIdentifierAccepted, optIfODUkTTIMDetMode=optIfODUkTTIMDetMode, optIfODUkTTIMActEnabled=optIfODUkTTIMActEnabled, optIfODUkTDEGThr=optIfODUkTDEGThr, optIfODUkTDEGM=optIfODUkTDEGM, optIfODUkTSinkMode=optIfODUkTSinkMode, optIfODUkTSinkLockSignalAdminState=optIfODUkTSinkLockSignalAdminState, optIfODUkTSourceLockSignalAdminState=optIfODUkTSourceLockSignalAdminState, optIfODUkTCurrentStatus=optIfODUkTCurrentStatus, optIfODUkTRowStatus=optIfODUkTRowStatus, optIfODUkTNimConfigTable=optIfODUkTNimConfigTable, optIfODUkTNimConfigEntry=optIfODUkTNimConfigEntry, optIfODUkTNimTcmField=optIfODUkTNimTcmField, optIfODUkTNimDirectionality=optIfODUkTNimDirectionality, optIfODUkTNimDAPIExpected=optIfODUkTNimDAPIExpected, optIfODUkTNimSAPIExpected=optIfODUkTNimSAPIExpected, optIfODUkTNimTraceIdentifierAccepted=optIfODUkTNimTraceIdentifierAccepted, optIfODUkTNimTIMDetMode=optIfODUkTNimTIMDetMode, optIfODUkTNimTIMActEnabled=optIfODUkTNimTIMActEnabled, optIfODUkTNimDEGThr=optIfODUkTNimDEGThr, optIfODUkTNimDEGM=optIfODUkTNimDEGM, optIfODUkTNimCurrentStatus=optIfODUkTNimCurrentStatus, optIfODUkTNimRowStatus=optIfODUkTNimRowStatus, optIfConfs=optIfConfs, optIfGroups=optIfGroups, optIfCompl=optIfCompl)

# Groups
mibBuilder.exportSymbols("OPT-IF-MIB", optIfOTMnGroup=optIfOTMnGroup, optIfPerfMonGroup=optIfPerfMonGroup, optIfOTSnCommonGroup=optIfOTSnCommonGroup, optIfOTSnSourceGroupFull=optIfOTSnSourceGroupFull, optIfOTSnAPRStatusGroup=optIfOTSnAPRStatusGroup, optIfOTSnAPRControlGroup=optIfOTSnAPRControlGroup, optIfOTSnSinkGroupBasic=optIfOTSnSinkGroupBasic, optIfOTSnSinkGroupFull=optIfOTSnSinkGroupFull, optIfOTSnSinkPreOtnPMGroup=optIfOTSnSinkPreOtnPMGroup, optIfOTSnSinkPreOtnPMThresholdGroup=optIfOTSnSinkPreOtnPMThresholdGroup, optIfOTSnSourcePreOtnPMGroup=optIfOTSnSourcePreOtnPMGroup, optIfOTSnSourcePreOtnPMThresholdGroup=optIfOTSnSourcePreOtnPMThresholdGroup, optIfOMSnCommonGroup=optIfOMSnCommonGroup, optIfOMSnSinkGroupBasic=optIfOMSnSinkGroupBasic, optIfOMSnSinkPreOtnPMGroup=optIfOMSnSinkPreOtnPMGroup, optIfOMSnSinkPreOtnPMThresholdGroup=optIfOMSnSinkPreOtnPMThresholdGroup, optIfOMSnSourcePreOtnPMGroup=optIfOMSnSourcePreOtnPMGroup, optIfOMSnSourcePreOtnPMThresholdGroup=optIfOMSnSourcePreOtnPMThresholdGroup, optIfOChGroupCommonGroup=optIfOChGroupCommonGroup, optIfOChGroupSinkPreOtnPMGroup=optIfOChGroupSinkPreOtnPMGroup, optIfOChGroupSinkPreOtnPMThresholdGroup=optIfOChGroupSinkPreOtnPMThresholdGroup, optIfOChGroupSourcePreOtnPMGroup=optIfOChGroupSourcePreOtnPMGroup, optIfOChGroupSourcePreOtnPMThresholdGroup=optIfOChGroupSourcePreOtnPMThresholdGroup, optIfOChCommonGroup=optIfOChCommonGroup, optIfOChSinkGroupBasic=optIfOChSinkGroupBasic, optIfOChSinkPreOtnPMGroup=optIfOChSinkPreOtnPMGroup, optIfOChSinkPreOtnPMThresholdGroup=optIfOChSinkPreOtnPMThresholdGroup, optIfOChSourcePreOtnPMGroup=optIfOChSourcePreOtnPMGroup, optIfOChSourcePreOtnPMThresholdGroup=optIfOChSourcePreOtnPMThresholdGroup, optIfOTUkCommonGroup=optIfOTUkCommonGroup, optIfOTUkSourceGroup=optIfOTUkSourceGroup, optIfOTUkSinkGroup=optIfOTUkSinkGroup, optIfGCC0Group=optIfGCC0Group, optIfODUkGroup=optIfODUkGroup, optIfODUkTtpSourceGroup=optIfODUkTtpSourceGroup, optIfODUkTtpSinkGroup=optIfODUkTtpSinkGroup, optIfODUkNimGroup=optIfODUkNimGroup, optIfGCC12Group=optIfGCC12Group, optIfODUkTCommonGroup=optIfODUkTCommonGroup, optIfODUkTSourceGroup=optIfODUkTSourceGroup, optIfODUkTSinkGroup=optIfODUkTSinkGroup, optIfODUkTSinkGroupCtp=optIfODUkTSinkGroupCtp, optIfODUkTNimGroup=optIfODUkTNimGroup)

# Compliances
mibBuilder.exportSymbols("OPT-IF-MIB", optIfOtnConfigCompl=optIfOtnConfigCompl, optIfPreOtnPMCompl=optIfPreOtnPMCompl)