content
stringlengths
7
1.05M
fixed_cases
stringlengths
1
1.28M
TOKEN = "1807234388:AAHbvU9Crr6BURnLMwT8m4hrneGgxGvbm8A" pochta_api_login = "YadBdduZvCLDvZ" pochta_api_password = "oAD8k3MpRHq5"
token = '1807234388:AAHbvU9Crr6BURnLMwT8m4hrneGgxGvbm8A' pochta_api_login = 'YadBdduZvCLDvZ' pochta_api_password = 'oAD8k3MpRHq5'
def escape(text): return text.replace('\\', '\\\\').replace('"', '\\"') opposites = { 'north': 'south', 'east': 'west', 'south': 'north', 'west': 'east' } class Rel: def __init__(self, offset=0): self.offset = offset def __add__(self, other): return Rel(self.offset + other) def __sub__(self, other): return Rel(self.offset - other) def __str__(self): if self.offset == 0: return '~' return '~%d' % self.offset class CommandPlacer: def __init__(self, origin): self.x, self.y, self.z = origin self.commands = [] self.block_positions = [] def place(self, line): orig_x, orig_z = self.x, self.z branch_len = 0 for main, branch in line: setblock = self.create_setblock(main) self.commands.append(setblock) this_branch_len = 0 for additional in branch: self.x += 1 setblock = self.create_setblock(additional, True) self.commands.append(setblock) this_branch_len += 1 self.x = orig_x branch_len = max(branch_len, this_branch_len) self.z += 1 if branch_len > 0: branch_len += 1 # add space after branch self.x = orig_x + 1 + branch_len self.z = orig_z def output(self): return self.commands def cleanup(self): destroyblocks = [] for pos in self.block_positions: destroyblocks.append('setblock %s %s %s air' % pos) return destroyblocks def create_setblock(self, block, rotate=False): block, command = block self.block_positions.append((self.x, self.y, self.z)) if block.mode == 'CHAIN': block_type = 'chain_command_block' elif block.mode == 'REPEAT': block_type = 'repeating_command_block' else: block_type = 'command_block' state = {} if block.cond: state['conditional'] = 'true' direction = 'south' if rotate: direction = 'east' if block.opposite: direction = opposites[direction] state['facing'] = direction state_str = '[' + ','.join([k+'='+v for k,v in state.items()]) + ']' data = ('{TrackOutput:0b,auto:%db,Command:"%s",' \ + 'UpdateLastExecution:%db}') % ( 1 if block.auto else 0, escape(command), 1 if block.single_use else 0) block = block_type + state_str + data return 'setblock %s %s %s %s replace' % ( self.x, self.y, self.z, block)
def escape(text): return text.replace('\\', '\\\\').replace('"', '\\"') opposites = {'north': 'south', 'east': 'west', 'south': 'north', 'west': 'east'} class Rel: def __init__(self, offset=0): self.offset = offset def __add__(self, other): return rel(self.offset + other) def __sub__(self, other): return rel(self.offset - other) def __str__(self): if self.offset == 0: return '~' return '~%d' % self.offset class Commandplacer: def __init__(self, origin): (self.x, self.y, self.z) = origin self.commands = [] self.block_positions = [] def place(self, line): (orig_x, orig_z) = (self.x, self.z) branch_len = 0 for (main, branch) in line: setblock = self.create_setblock(main) self.commands.append(setblock) this_branch_len = 0 for additional in branch: self.x += 1 setblock = self.create_setblock(additional, True) self.commands.append(setblock) this_branch_len += 1 self.x = orig_x branch_len = max(branch_len, this_branch_len) self.z += 1 if branch_len > 0: branch_len += 1 self.x = orig_x + 1 + branch_len self.z = orig_z def output(self): return self.commands def cleanup(self): destroyblocks = [] for pos in self.block_positions: destroyblocks.append('setblock %s %s %s air' % pos) return destroyblocks def create_setblock(self, block, rotate=False): (block, command) = block self.block_positions.append((self.x, self.y, self.z)) if block.mode == 'CHAIN': block_type = 'chain_command_block' elif block.mode == 'REPEAT': block_type = 'repeating_command_block' else: block_type = 'command_block' state = {} if block.cond: state['conditional'] = 'true' direction = 'south' if rotate: direction = 'east' if block.opposite: direction = opposites[direction] state['facing'] = direction state_str = '[' + ','.join([k + '=' + v for (k, v) in state.items()]) + ']' data = ('{TrackOutput:0b,auto:%db,Command:"%s",' + 'UpdateLastExecution:%db}') % (1 if block.auto else 0, escape(command), 1 if block.single_use else 0) block = block_type + state_str + data return 'setblock %s %s %s %s replace' % (self.x, self.y, self.z, block)
# /General # api: Allows return the results in json. # db_name_f: Name of data base file. api_return = True db_name_f = 'data.db' # /APIs # Enables or disables the API. situacaoIntelx = False situacaoHaveIPwned = False situacaoScylla = True # /Notification E-mail account # id_f3: E-mail. # id_f4: Password. id_f3 = 'EMAIL' id_f4 = 'PASS'
api_return = True db_name_f = 'data.db' situacao_intelx = False situacao_have_i_pwned = False situacao_scylla = True id_f3 = 'EMAIL' id_f4 = 'PASS'
#Write a Python program to print without newline or space. print("The Lord is good.", end="") print("All the time")
print('The Lord is good.', end='') print('All the time')
class Solution(object): def twoSum(self, nums, target): """ :type nums: List[int] :type target: int :rtype: List[int] """ length = len(nums) hashmap = {} for i in range(length): if target - nums[i] in hashmap: return [hashmap[target-nums[i]], i] else: hashmap[nums[i]] = i return []
class Solution(object): def two_sum(self, nums, target): """ :type nums: List[int] :type target: int :rtype: List[int] """ length = len(nums) hashmap = {} for i in range(length): if target - nums[i] in hashmap: return [hashmap[target - nums[i]], i] else: hashmap[nums[i]] = i return []
#!/usr/bin/env python """Tools to updates list of data.""" def update_month_index(entries, updated_entry): """Update the Monthly index of blog posts. Take a dictionaries and adjust its values by inserting at the right place. """ new_uri = list(updated_entry)[0] try: entries[new_uri]['updated'] = updated_entry['updated'] except Exception: entries.update(updated_entry) finally: return entries
"""Tools to updates list of data.""" def update_month_index(entries, updated_entry): """Update the Monthly index of blog posts. Take a dictionaries and adjust its values by inserting at the right place. """ new_uri = list(updated_entry)[0] try: entries[new_uri]['updated'] = updated_entry['updated'] except Exception: entries.update(updated_entry) finally: return entries
#!/usr/bin/env python3 # https://www.hackerrank.com/challenges/py-if-else if __name__ == '__main__': n = int(input()) r = n % 2 if r == 0: if n > 20 or (n >= 2 and n <= 5): print ("Not Weird") elif n >= 6 and n <= 20: print ("Weird") else: print ("Weird")
if __name__ == '__main__': n = int(input()) r = n % 2 if r == 0: if n > 20 or (n >= 2 and n <= 5): print('Not Weird') elif n >= 6 and n <= 20: print('Weird') else: print('Weird')
### Written by Jason-Silla ### ### https://github.com/Jason-Silla/JohnAI ### class Fraction: numerator = 1 denominatior = 1 def __init__(self, *info): if len(info) == 2: self.numerator = numerator self.denominator = denominator elif len(info) == 0: pass else: raise ValueError def simplify(self): num = 2 while True: if self.numerator % num == 0 and self.denominator % num == 0: self.numerator = self.numerator/num self.denominator = self.denominator/num elif(not(num > self.numerator or num > self.denominator)): num += 1 else: break del(num) def __add__(self, f): rf, nf1, nf2 = Fraction() a = Fraction(self.denominator, self.denominator) b = Fraction(f.denominator, f.denominator) nf1.numerator = self.numerator * b.numerator nf1.denominator = self.denominator * b.denominator nf2.numerator = f.numerator * a.numerator nf2.denominator = f.denominator * a.denominator rf.numerator = nf1.numerator + nf2.numerator rf.denominator = nf1.denominator rf.simplify() del(nf1, nf2, a, b) return rf def __sub__(self, f): rf, nf1, nf2 = Fraction() a = Fraction(self.denominator, self.denominator) b = Fraction(f.denominator, f.denominator) nf1.numerator = self.numerator * b.numerator nf1.denominator = self.denominator * b.denominator nf2.numerator = f.numerator * a.numerator nf2.denominator = f.denominator * a.denominator rf.numerator = nf1.numerator - nf2.numerator rf.denominator = nf1.denominator del(nf1, nf2, a, b) rf.simplify() return rf def __mul__(self, f): newf = Fraction() newf.numerator = self.numerator * f.numerator newf.denominator = self.denominator * f.denominator; newf.simplify(); return newf def __truediv__(self, f): newf = Fraction() newf.numerator = self.numerator * f.denominator newf.denominator = self.denominator * f.numerator newf.simplify() return newf def __str__(self): if self.denominator == 1: return self.numerator elif self.denominator == 0: return 0 else: return f"{self.numerator}/{self.denominator}" def toDouble(self): return self.numerator/self.denominator def __mod__(self, f): newf = Fraction() newf.numerator = self.numerator * f.denominator newf.denominator = self.denominator * f.numerator whole = newf.numerator/newf.denominator remainderN = whole * newf.denominator remainder = Fraction(remainderN, newf.denominator) remainder = newf - remainder remainder.simplify() del(newf, whole, remainderN) return remainder class SlopeIntForm: def init(self, y, m, x, b): self.y = y self.m = m self.x = x self.b = b def init(self, m, b): self.m = m self.b = b def slopeIntFromPoints(a, b): slope = Fraction() slope.numerator((b.x - a.x).toDouble()) slope.denominatior((b.y - a.y).toDouble()) be = Fraction() equation = SlopeIntForm(slope, be) return equation
class Fraction: numerator = 1 denominatior = 1 def __init__(self, *info): if len(info) == 2: self.numerator = numerator self.denominator = denominator elif len(info) == 0: pass else: raise ValueError def simplify(self): num = 2 while True: if self.numerator % num == 0 and self.denominator % num == 0: self.numerator = self.numerator / num self.denominator = self.denominator / num elif not (num > self.numerator or num > self.denominator): num += 1 else: break del num def __add__(self, f): (rf, nf1, nf2) = fraction() a = fraction(self.denominator, self.denominator) b = fraction(f.denominator, f.denominator) nf1.numerator = self.numerator * b.numerator nf1.denominator = self.denominator * b.denominator nf2.numerator = f.numerator * a.numerator nf2.denominator = f.denominator * a.denominator rf.numerator = nf1.numerator + nf2.numerator rf.denominator = nf1.denominator rf.simplify() del (nf1, nf2, a, b) return rf def __sub__(self, f): (rf, nf1, nf2) = fraction() a = fraction(self.denominator, self.denominator) b = fraction(f.denominator, f.denominator) nf1.numerator = self.numerator * b.numerator nf1.denominator = self.denominator * b.denominator nf2.numerator = f.numerator * a.numerator nf2.denominator = f.denominator * a.denominator rf.numerator = nf1.numerator - nf2.numerator rf.denominator = nf1.denominator del (nf1, nf2, a, b) rf.simplify() return rf def __mul__(self, f): newf = fraction() newf.numerator = self.numerator * f.numerator newf.denominator = self.denominator * f.denominator newf.simplify() return newf def __truediv__(self, f): newf = fraction() newf.numerator = self.numerator * f.denominator newf.denominator = self.denominator * f.numerator newf.simplify() return newf def __str__(self): if self.denominator == 1: return self.numerator elif self.denominator == 0: return 0 else: return f'{self.numerator}/{self.denominator}' def to_double(self): return self.numerator / self.denominator def __mod__(self, f): newf = fraction() newf.numerator = self.numerator * f.denominator newf.denominator = self.denominator * f.numerator whole = newf.numerator / newf.denominator remainder_n = whole * newf.denominator remainder = fraction(remainderN, newf.denominator) remainder = newf - remainder remainder.simplify() del (newf, whole, remainderN) return remainder class Slopeintform: def init(self, y, m, x, b): self.y = y self.m = m self.x = x self.b = b def init(self, m, b): self.m = m self.b = b def slope_int_from_points(a, b): slope = fraction() slope.numerator((b.x - a.x).toDouble()) slope.denominatior((b.y - a.y).toDouble()) be = fraction() equation = slope_int_form(slope, be) return equation
def resolve(): n, m, l = map(int, input().split()) a = [list(map(int, input().split())) for i in range(n)] b = [list(map(int, input().split())) for i in range(m)] c = [] for i in range(n): tmp = [] for j in range(l): x = 0 for k in range(m): x += a[i][k] * b[k][j] tmp.append(x) c.append(tmp) for line in c: print(*line)
def resolve(): (n, m, l) = map(int, input().split()) a = [list(map(int, input().split())) for i in range(n)] b = [list(map(int, input().split())) for i in range(m)] c = [] for i in range(n): tmp = [] for j in range(l): x = 0 for k in range(m): x += a[i][k] * b[k][j] tmp.append(x) c.append(tmp) for line in c: print(*line)
# -*- coding: utf-8 -*- ''' Sort and save unique values to a new file. Ignore rows that do not have a value. Sample values in a file might look like this 02/02/2018 23:15:12, 1234567889 02/02/2018 23:15:13, 1234568889 02/02/2018 23:15:18, 1234568889 02/02/2018 23:15:19, 02/02/2018 23:15:25, 1234545889 02/02/2018 23:17:12, 1234512889 02/02/2018 23:18:10, 02/02/2018 23:19:12, 123456889 ''' FILE_TO_READ = "./sample_files/unique_and_sorted.csv" #replace with your file name FILE_TO_WRITE = "./sample_files/file_to_write.csv" def unique_and_sorted(FILE_TO_READ, FILE_TO_WRITE): count_list =[] with open(FILE_TO_READ,'r') as fread, open(FILE_TO_WRITE,'w') as fwrite: for line in fread: #split the row and add the values into the list str = line.split(',') if (str[1] != "\n"): count_list.append(int(str[1])) count_list = list(set(count_list)) #save the value into a new list and sort it count_list.sort() for item in count_list: fwrite.write('%s\n' %item) fread.close() fwrite.close() def main(): unique_and_sorted(FILE_TO_READ, FILE_TO_WRITE) if __name__ == "__main__": main()
""" Sort and save unique values to a new file. Ignore rows that do not have a value. Sample values in a file might look like this 02/02/2018 23:15:12, 1234567889 02/02/2018 23:15:13, 1234568889 02/02/2018 23:15:18, 1234568889 02/02/2018 23:15:19, 02/02/2018 23:15:25, 1234545889 02/02/2018 23:17:12, 1234512889 02/02/2018 23:18:10, 02/02/2018 23:19:12, 123456889 """ file_to_read = './sample_files/unique_and_sorted.csv' file_to_write = './sample_files/file_to_write.csv' def unique_and_sorted(FILE_TO_READ, FILE_TO_WRITE): count_list = [] with open(FILE_TO_READ, 'r') as fread, open(FILE_TO_WRITE, 'w') as fwrite: for line in fread: str = line.split(',') if str[1] != '\n': count_list.append(int(str[1])) count_list = list(set(count_list)) count_list.sort() for item in count_list: fwrite.write('%s\n' % item) fread.close() fwrite.close() def main(): unique_and_sorted(FILE_TO_READ, FILE_TO_WRITE) if __name__ == '__main__': main()
__author__ = 'Tony Beltramelli - www.tonybeltramelli.com' CONTEXT_LENGTH = 64 IMAGE_SIZE = 256 BATCH_SIZE = 64 EPOCHS = 10 STEPS_PER_EPOCH = 72000 IMG_DATA_TYPE = ".jpg"
__author__ = 'Tony Beltramelli - www.tonybeltramelli.com' context_length = 64 image_size = 256 batch_size = 64 epochs = 10 steps_per_epoch = 72000 img_data_type = '.jpg'
class Solution: def fizzBuzz(self, n: int) -> List[str]: l = list() for x in range(1, n + 1): if x % 3 == 0 and x % 5 == 0: l.append('FizzBuzz') elif x % 3 == 0: l.append('Fizz') elif x % 5 == 0: l.append('Buzz') else: l.append(str(x)) return l
class Solution: def fizz_buzz(self, n: int) -> List[str]: l = list() for x in range(1, n + 1): if x % 3 == 0 and x % 5 == 0: l.append('FizzBuzz') elif x % 3 == 0: l.append('Fizz') elif x % 5 == 0: l.append('Buzz') else: l.append(str(x)) return l
class Label: def __init__(self, name): self.name = name class LabelAccess: def __init__(self, name, lower_byte): self.name = name self.lower_byte = lower_byte def high(name): return LabelAccess(name, False) def low(name): return LabelAccess(name, True)
class Label: def __init__(self, name): self.name = name class Labelaccess: def __init__(self, name, lower_byte): self.name = name self.lower_byte = lower_byte def high(name): return label_access(name, False) def low(name): return label_access(name, True)
widths = {'Alpha': 722, 'Beta': 667, 'Chi': 722, 'Delta': 612, 'Epsilon': 611, 'Eta': 722, 'Euro': 750, 'Gamma': 603, 'Ifraktur': 686, 'Iota': 333, 'Kappa': 722, 'Lambda': 686, 'Mu': 889, 'Nu': 722, 'Omega': 768, 'Omicron': 722, 'Phi': 763, 'Pi': 768, 'Psi': 795, 'Rfraktur': 795, 'Rho': 556, 'Sigma': 592, 'Tau': 611, 'Theta': 741, 'Upsilon': 690, 'Upsilon1': 620, 'Xi': 645, 'Zeta': 611, 'aleph': 823, 'alpha': 631, 'ampersand': 778, 'angle': 768, 'angleleft': 329, 'angleright': 329, 'apple': 790, 'approxequal': 549, 'arrowboth': 1042, 'arrowdblboth': 1042, 'arrowdbldown': 603, 'arrowdblleft': 987, 'arrowdblright': 987, 'arrowdblup': 603, 'arrowdown': 603, 'arrowhorizex': 1000, 'arrowleft': 987, 'arrowright': 987, 'arrowup': 603, 'arrowvertex': 603, 'asteriskmath': 500, 'bar': 200, 'beta': 549, 'braceex': 494, 'braceleft': 480, 'braceleftbt': 494, 'braceleftmid': 494, 'bracelefttp': 494, 'braceright': 480, 'bracerightbt': 494, 'bracerightmid': 494, 'bracerighttp': 494, 'bracketleft': 333, 'bracketleftbt': 384, 'bracketleftex': 384, 'bracketlefttp': 384, 'bracketright': 333, 'bracketrightbt': 384, 'bracketrightex': 384, 'bracketrighttp': 384, 'bullet': 460, 'carriagereturn': 658, 'chi': 549, 'circlemultiply': 768, 'circleplus': 768, 'club': 753, 'colon': 278, 'comma': 250, 'congruent': 549, 'copyrightsans': 790, 'copyrightserif': 790, 'degree': 400, 'delta': 494, 'diamond': 753, 'divide': 549, 'dotmath': 250, 'eight': 500, 'element': 713, 'ellipsis': 1000, 'emptyset': 823, 'epsilon': 439, 'equal': 549, 'equivalence': 549, 'eta': 603, 'exclam': 333, 'existential': 549, 'five': 500, 'florin': 500, 'four': 500, 'fraction': 167, 'gamma': 411, 'gradient': 713, 'greater': 549, 'greaterequal': 549, 'heart': 753, 'infinity': 713, 'integral': 274, 'integralbt': 686, 'integralex': 686, 'integraltp': 686, 'intersection': 768, 'iota': 329, 'kappa': 549, 'lambda': 549, 'less': 549, 'lessequal': 549, 'logicaland': 603, 'logicalnot': 713, 'logicalor': 603, 'lozenge': 494, 'minus': 549, 'minute': 247, 'mu': 576, 'multiply': 549, 'nine': 500, 'notelement': 713, 'notequal': 549, 'notsubset': 713, 'nu': 521, 'numbersign': 500, 'omega': 686, 'omega1': 713, 'omicron': 549, 'one': 500, 'parenleft': 333, 'parenleftbt': 384, 'parenleftex': 384, 'parenlefttp': 384, 'parenright': 333, 'parenrightbt': 384, 'parenrightex': 384, 'parenrighttp': 384, 'partialdiff': 494, 'percent': 833, 'period': 250, 'perpendicular': 658, 'phi': 521, 'phi1': 603, 'pi': 549, 'plus': 549, 'plusminus': 549, 'product': 823, 'propersubset': 713, 'propersuperset': 713, 'proportional': 713, 'psi': 686, 'question': 444, 'radical': 549, 'radicalex': 500, 'reflexsubset': 713, 'reflexsuperset': 713, 'registersans': 790, 'registerserif': 790, 'rho': 549, 'second': 411, 'semicolon': 278, 'seven': 500, 'sigma': 603, 'sigma1': 439, 'similar': 549, 'six': 500, 'slash': 278, 'space': 250, 'spade': 753, 'suchthat': 439, 'summation': 713, 'tau': 439, 'therefore': 863, 'theta': 521, 'theta1': 631, 'three': 500, 'trademarksans': 786, 'trademarkserif': 890, 'two': 500, 'underscore': 500, 'union': 768, 'universal': 713, 'upsilon': 576, 'weierstrass': 987, 'xi': 493, 'zero': 500, 'zeta': 494}
widths = {'Alpha': 722, 'Beta': 667, 'Chi': 722, 'Delta': 612, 'Epsilon': 611, 'Eta': 722, 'Euro': 750, 'Gamma': 603, 'Ifraktur': 686, 'Iota': 333, 'Kappa': 722, 'Lambda': 686, 'Mu': 889, 'Nu': 722, 'Omega': 768, 'Omicron': 722, 'Phi': 763, 'Pi': 768, 'Psi': 795, 'Rfraktur': 795, 'Rho': 556, 'Sigma': 592, 'Tau': 611, 'Theta': 741, 'Upsilon': 690, 'Upsilon1': 620, 'Xi': 645, 'Zeta': 611, 'aleph': 823, 'alpha': 631, 'ampersand': 778, 'angle': 768, 'angleleft': 329, 'angleright': 329, 'apple': 790, 'approxequal': 549, 'arrowboth': 1042, 'arrowdblboth': 1042, 'arrowdbldown': 603, 'arrowdblleft': 987, 'arrowdblright': 987, 'arrowdblup': 603, 'arrowdown': 603, 'arrowhorizex': 1000, 'arrowleft': 987, 'arrowright': 987, 'arrowup': 603, 'arrowvertex': 603, 'asteriskmath': 500, 'bar': 200, 'beta': 549, 'braceex': 494, 'braceleft': 480, 'braceleftbt': 494, 'braceleftmid': 494, 'bracelefttp': 494, 'braceright': 480, 'bracerightbt': 494, 'bracerightmid': 494, 'bracerighttp': 494, 'bracketleft': 333, 'bracketleftbt': 384, 'bracketleftex': 384, 'bracketlefttp': 384, 'bracketright': 333, 'bracketrightbt': 384, 'bracketrightex': 384, 'bracketrighttp': 384, 'bullet': 460, 'carriagereturn': 658, 'chi': 549, 'circlemultiply': 768, 'circleplus': 768, 'club': 753, 'colon': 278, 'comma': 250, 'congruent': 549, 'copyrightsans': 790, 'copyrightserif': 790, 'degree': 400, 'delta': 494, 'diamond': 753, 'divide': 549, 'dotmath': 250, 'eight': 500, 'element': 713, 'ellipsis': 1000, 'emptyset': 823, 'epsilon': 439, 'equal': 549, 'equivalence': 549, 'eta': 603, 'exclam': 333, 'existential': 549, 'five': 500, 'florin': 500, 'four': 500, 'fraction': 167, 'gamma': 411, 'gradient': 713, 'greater': 549, 'greaterequal': 549, 'heart': 753, 'infinity': 713, 'integral': 274, 'integralbt': 686, 'integralex': 686, 'integraltp': 686, 'intersection': 768, 'iota': 329, 'kappa': 549, 'lambda': 549, 'less': 549, 'lessequal': 549, 'logicaland': 603, 'logicalnot': 713, 'logicalor': 603, 'lozenge': 494, 'minus': 549, 'minute': 247, 'mu': 576, 'multiply': 549, 'nine': 500, 'notelement': 713, 'notequal': 549, 'notsubset': 713, 'nu': 521, 'numbersign': 500, 'omega': 686, 'omega1': 713, 'omicron': 549, 'one': 500, 'parenleft': 333, 'parenleftbt': 384, 'parenleftex': 384, 'parenlefttp': 384, 'parenright': 333, 'parenrightbt': 384, 'parenrightex': 384, 'parenrighttp': 384, 'partialdiff': 494, 'percent': 833, 'period': 250, 'perpendicular': 658, 'phi': 521, 'phi1': 603, 'pi': 549, 'plus': 549, 'plusminus': 549, 'product': 823, 'propersubset': 713, 'propersuperset': 713, 'proportional': 713, 'psi': 686, 'question': 444, 'radical': 549, 'radicalex': 500, 'reflexsubset': 713, 'reflexsuperset': 713, 'registersans': 790, 'registerserif': 790, 'rho': 549, 'second': 411, 'semicolon': 278, 'seven': 500, 'sigma': 603, 'sigma1': 439, 'similar': 549, 'six': 500, 'slash': 278, 'space': 250, 'spade': 753, 'suchthat': 439, 'summation': 713, 'tau': 439, 'therefore': 863, 'theta': 521, 'theta1': 631, 'three': 500, 'trademarksans': 786, 'trademarkserif': 890, 'two': 500, 'underscore': 500, 'union': 768, 'universal': 713, 'upsilon': 576, 'weierstrass': 987, 'xi': 493, 'zero': 500, 'zeta': 494}
def dfNoHdr(df): # INPUT: df with a header # OUTPUT: dfNH without a header dict={} for column in df.columns: dict[column] = df.columns.get_loc(column) df.rename(columns = dict, inplace = True) return df
def df_no_hdr(df): dict = {} for column in df.columns: dict[column] = df.columns.get_loc(column) df.rename(columns=dict, inplace=True) return df
# Write a python function which accepts a linked list of whole numbers, # moves the last element of the linked list to front and returns the linked list. # Sample Input Expected Output # 9->3->56->6->2->7->4 4->9->3->56->6->2->7 #DSA-Prac-1 class Node: def __init__(self, data): self.__data = data self.__next = None def get_data(self): return self.__data def set_data(self, data): self.__data = data def get_next(self): return self.__next def set_next(self, next_node): self.__next = next_node class LinkedList: def __init__(self): self.__head = None self.__tail = None def get_head(self): return self.__head def get_tail(self): return self.__tail def add(self, data): new_node = Node(data) if(self.__head is None): self.__head = self.__tail = new_node else: self.__tail.set_next(new_node) self.__tail = new_node def insert(self, data, data_before): new_node = Node(data) if(data_before == None): new_node.set_next(self.__head) self.__head = new_node if(new_node.get_next() == None): self.__tail = new_node else: node_before = self.find_node(data_before) if(node_before is not None): new_node.set_next(node_before.get_next()) node_before.set_next(new_node) if(new_node.get_next() is None): self.__tail = new_node else: print(data_before, "is not present in the Linked list") def display(self): temp = self.__head while(temp is not None): print(temp.get_data()) temp = temp.get_next() def find_node(self, data): temp = self.__head while(temp is not None): if(temp.get_data() == data): return temp temp = temp.get_next() return None def delete(self, data): node = self.find_node(data) if(node is not None): if(node == self.__head): if(self.__head == self.__tail): self.__tail = None self.__head = node.get_next() else: temp = self.__head while(temp is not None): if(temp.get_next() == node): temp.set_next(node.get_next()) if(node == self.__tail): self.__tail = temp node.set_next(None) break temp = temp.get_next() else: print(data, "is not present in Linked list") #You can use the below __str__() to print the elements of the DS object while debugging def __str__(self): temp = self.__head msg = [] while(temp is not None): msg.append(str(temp.get_data())) temp = temp.get_next() msg = " ".join(msg) msg = "Linkedlist data(Head to Tail): " + msg return msg def change_order(input_list): #start writing your code here last = input_list.get_tail().get_data() input_list.delete(last) input_list.insert(last,None) return input_list input_list = LinkedList() input_list.add(9) input_list.add(3) input_list.add(56) input_list.add(6) input_list.add(2) input_list.add(7) input_list.add(4) result = change_order(input_list) result.display()
class Node: def __init__(self, data): self.__data = data self.__next = None def get_data(self): return self.__data def set_data(self, data): self.__data = data def get_next(self): return self.__next def set_next(self, next_node): self.__next = next_node class Linkedlist: def __init__(self): self.__head = None self.__tail = None def get_head(self): return self.__head def get_tail(self): return self.__tail def add(self, data): new_node = node(data) if self.__head is None: self.__head = self.__tail = new_node else: self.__tail.set_next(new_node) self.__tail = new_node def insert(self, data, data_before): new_node = node(data) if data_before == None: new_node.set_next(self.__head) self.__head = new_node if new_node.get_next() == None: self.__tail = new_node else: node_before = self.find_node(data_before) if node_before is not None: new_node.set_next(node_before.get_next()) node_before.set_next(new_node) if new_node.get_next() is None: self.__tail = new_node else: print(data_before, 'is not present in the Linked list') def display(self): temp = self.__head while temp is not None: print(temp.get_data()) temp = temp.get_next() def find_node(self, data): temp = self.__head while temp is not None: if temp.get_data() == data: return temp temp = temp.get_next() return None def delete(self, data): node = self.find_node(data) if node is not None: if node == self.__head: if self.__head == self.__tail: self.__tail = None self.__head = node.get_next() else: temp = self.__head while temp is not None: if temp.get_next() == node: temp.set_next(node.get_next()) if node == self.__tail: self.__tail = temp node.set_next(None) break temp = temp.get_next() else: print(data, 'is not present in Linked list') def __str__(self): temp = self.__head msg = [] while temp is not None: msg.append(str(temp.get_data())) temp = temp.get_next() msg = ' '.join(msg) msg = 'Linkedlist data(Head to Tail): ' + msg return msg def change_order(input_list): last = input_list.get_tail().get_data() input_list.delete(last) input_list.insert(last, None) return input_list input_list = linked_list() input_list.add(9) input_list.add(3) input_list.add(56) input_list.add(6) input_list.add(2) input_list.add(7) input_list.add(4) result = change_order(input_list) result.display()
NEW_AIRTABLE_REQUEST_JSON = { "Skillsets": "C / C++,Web (Frontend Development),Mobile (iOS),Java,DevOps", "Slack User": "ic4rusX", "Details": " Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin blandit porttitor nulla eu consectetur." " Maecenas consectetur erat at odio iaculis, ac auctor nunc imperdiet. Sed neque quam, cursus eget nunc" " et, viverra gravida justo. Vivamus pharetra magna vel leo rutrum imperdiet. Vestibulum tempus non leo" " vestibulum iaculis. Ut nec lacinia elit, viverra vulputate tortor. Phasellus eu luctus odio." " Vestibulum accumsan est sed metus dignissim, quis sollicitudin diam posuere. Duis ullamcorper" " ante vel vulputate semper. Aliquam viverra, lorem sit amet tristique consequat, velit tortor" " lacinia sem, sed placerat nisi sapien rutrum lacus. Mauris vehicula purus mi. Integer feugiat " "consectetur elit, ac interdum turpis condimentum ut. Pellentesque sollicitudin est nunc, non accumsan" " metus laoreet nec.\n\nPellentesque rhoncus iaculis felis. Donec efficitur bibendum arcu, sed varius " "orci bibendum nec. Morbi laoreet nunc nec urna pharetra viverra. Nulla vel magna ex. Fusce semper nisl" " commodo nulla tempus, nec aliquam libero bibendum. Proin eleifend odio nec augue facilisis, nec" " faucibus tortor venenatis. Pellentesque pulvinar erat nec justo bibendum blandit.\n\nDonec ut libero" " a ex posuere euismod. Cras vitae turpis sit amet magna egestas vehicula. Maecenas interdum commodo" " quam, vitae ornare mauris viverra vel. In vestibulum enim pulvinar, pharetra augue a, tempor felis." " Proin vel cursus tellus. Quisque eget mauris neque. Cras eu pharetra leo. Nam nulla tortor, imperdiet" " sit amet dictum eu, mollis id ante. ", "Service": "recry8s14qGJhHeOC", "Email": "ic4rusX@gmail.com", "Record": "someRecId'" } USER_ID_FROM_EMAIL_RESPONSE = {'ok': True, 'user': {'id': 'AGF2354'}} SLACK_USER_ID = "<@AGF2354>" TEXT_DICT_MATCHES = f"Mentors matching all or some of the requested skillsets: {SLACK_USER_ID}" TEXT_DICT_MESSAGE = f"User {SLACK_USER_ID} has requested a mentor for General Guidance - Slack Chat Given Skillset(s): C / " \ "C++,Web (Frontend Development),Mobile (iOS),Java,DevOps View requests: " \ "<https://airtable.com/tbl9uQEE8VeMdNCey/viwYzYa4J9aytVB4B|Airtable> Please reply to the channel " \ "if you'd like to be assigned to this request." TEXT_DICT_DETAILS = 'Additional details: Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin blandit ' \ 'porttitor nulla eu consectetur. Maecenas consectetur erat at odio iaculis, ac auctor nunc ' \ 'imperdiet. Sed neque quam, cursus eget nunc et, viverra gravida justo. Vivamus pharetra magna ' \ 'vel leo rutrum imperdiet. Vestibulum tempus non leo vestibulum iaculis. Ut nec lacinia elit, ' \ 'viverra vulputate tortor. Phasellus eu luctus odio. Vestibulum accumsan est sed metus dignissim, ' \ 'quis sollicitudin diam posuere. Duis ullamcorper ante vel vulputate semper. Aliquam viverra, ' \ 'lorem sit amet tristique consequat, velit tortor lacinia sem, sed placerat nisi sapien rutrum ' \ 'lacus. Mauris vehicula purus mi. Integer feugiat consectetur elit, ac interdum turpis ' \ 'condimentum ut. Pellentesque sollicitudin est nunc, non accumsan metus laoreet nec. Pellentesque ' \ 'rhoncus iaculis felis. Donec efficitur bibendum arcu, sed varius orci bibendum nec. Morbi ' \ 'laoreet nunc nec urna pharetra viverra. Nulla vel magna ex. Fusce semper nisl commodo nulla ' \ 'tempus, nec aliquam libero bibendum. Proin eleifend odio nec augue facilisis, nec faucibus ' \ 'tortor venenatis. Pellentesque pulvinar erat nec justo bibendum blandit. Donec ut libero a ex ' \ 'posuere euismod. Cras vitae turpis sit amet magna egestas vehicula. Maecenas interdum commodo ' \ 'quam, vitae ornare mauris viverra vel. In vestibulum enim pulvinar, pharetra augue a, ' \ 'tempor felis. Proin vel cursus tellus. Quisque eget mauris neque. Cras eu pharetra leo. Nam ' \ 'nulla tortor, imperdiet sit amet dictum eu, mollis id ante.' MENTOR_REQUEST_ATTACHMENT = [ { 'text': '', 'fallback': '', 'color': '#3AA3E3', 'callback_id': 'claim_mentee', 'attachment_type': 'default', 'actions': [ { 'name': 'fakerec', 'text': 'Claim Mentee', 'type': 'button', 'style': 'primary', 'value': f'mentee_claimed', } ] } ] CLAIM_MENTEE_EVENT = {'type': 'interactive_message', 'actions': [{'name': 'rec7pRh2FwyO4nP2W', 'type': 'button', 'value': 'mentee_claimed'}], 'callback_id': 'claim_mentee', 'team': {'id': 'T8M8SQEN7', 'domain': 'test'}, 'channel': {'id': 'G8NDRJJF9', 'name': 'privategroup'}, 'user': {'id': 'U11111', 'name': 'tester'}, 'action_ts': '1521402127.915363', 'message_ts': '1521402116.000129', 'attachment_id': '1', 'token': 'faketoken', 'is_app_unfurl': False, 'original_message': { 'text': 'User <@U8N6XBL7Q> has requested a mentor for General Guidance - Slack Chat\n\nGiven Skillset(s): None given\n\nView requests: <https://airtable.com/tbl9uQEE8VeMdNCey/viwYzYa4J9aytVB4B|Airtable>', 'username': 'test2-bot', 'bot_id': 'B8N6Z8M8E', 'attachments': [ {'callback_id': 'claim_mentee', 'id': 1, 'color': '3AA3E3', 'actions': [ {'id': '1', 'name': 'rec7pRh2FwyO4nP2W', 'text': 'Claim Mentee', 'type': 'button', 'value': 'mentee_claimed', 'style': 'primary'}]}], 'type': 'message', 'subtype': 'bot_message', 'thread_ts': '1521402116.000129', 'reply_count': 1, 'replies': [{'user': 'B00', 'ts': '1521402117.000015'}], 'subscribed': False, 'unread_count': 1, 'ts': '1521402116.000129'}, 'response_url': 'https://hooks.slack.com/actions/T8M8SQEN7/332727073942/JPnXPwSk8A5jffzf0DHuSnhS', 'trigger_id': '331226307360.293298830755.c73cad81aa525200275c2868dd168ab0'} RESET_MENTEE_CLAIM_EVENT = {'type': 'interactive_message', 'actions': [{'name': 'rec7pRh2FwyO4nP2W', 'type': 'button', 'value': 'reset_claim_mentee'}], 'callback_id': 'claim_mentee', 'team': {'id': 'T8M8SQEN7', 'domain': 'test'}, 'channel': {'id': 'G8NDRJJF9', 'name': 'privategroup'}, 'user': {'id': 'U11111', 'name': 'tester'}, 'action_ts': '1521403472.901817', 'message_ts': '1521402116.000129', 'attachment_id': '1', 'token': 'faketoken', 'is_app_unfurl': False, 'original_message': { 'text': 'User <@U8N6XBL7Q> has requested a mentor for General Guidance - Slack Chat\n\nGiven Skillset(s): None given\n\nView requests: &lt;https://airtable.com/tbl9uQEE8VeMdNCey/viwYzYa4J9aytVB4B|Airtable&gt;', 'username': 'test2-bot', 'bot_id': 'B8N6Z8M8E', 'attachments': [{'callback_id': 'claim_mentee', 'text': ':100: Request claimed by <@U8N6XBL7Q>:100:\n<!date^1521402131^Greeted at {date_num} {time_secs}|Failed to parse time>', 'id': 1, 'color': '3AA3E3', 'actions': [ {'id': '1', 'name': 'rec7pRh2FwyO4nP2W', 'text': 'Reset claim', 'type': 'button', 'value': 'reset_claim_mentee', 'style': 'danger'}]}], 'type': 'message', 'subtype': 'bot_message', 'thread_ts': '1521402116.000129', 'reply_count': 1, 'replies': [{'user': 'B00', 'ts': '1521402117.000015'}], 'subscribed': False, 'unread_count': 1, 'ts': '1521402116.000129'}, 'response_url': 'https://hooks.slack.com/actions/T8M8SQEN7/331230500336/J5MfM0OC6I37iV9xQSPqQ2UD', 'trigger_id': '332007136373.293298830755.614be10d27ebd4e3d22af708906f27e0'} INVALID_MENTOR_ID_TEXT = f":warning: <@U11111>'s Slack Email not found in Mentor table. :warning:" RESET_MENTEE_ATTACHMENT = [{'text': 'Reset by <@U11111> at <!date^11111^ {date_num} {time_secs}|Failed to parse time>', 'fallback': '', 'color': '#3AA3E3', 'callback_id': 'claim_mentee', 'attachment_type': 'default', 'actions': [ {'name': 'rec7pRh2FwyO4nP2W', 'text': 'Claim Mentee', 'type': 'button', 'style': 'primary', 'value': 'mentee_claimed'}]}] SLACK_USER_INFO = {'user': {'profile': {'email': 'fake@email.com'}}}
new_airtable_request_json = {'Skillsets': 'C / C++,Web (Frontend Development),Mobile (iOS),Java,DevOps', 'Slack User': 'ic4rusX', 'Details': ' Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin blandit porttitor nulla eu consectetur. Maecenas consectetur erat at odio iaculis, ac auctor nunc imperdiet. Sed neque quam, cursus eget nunc et, viverra gravida justo. Vivamus pharetra magna vel leo rutrum imperdiet. Vestibulum tempus non leo vestibulum iaculis. Ut nec lacinia elit, viverra vulputate tortor. Phasellus eu luctus odio. Vestibulum accumsan est sed metus dignissim, quis sollicitudin diam posuere. Duis ullamcorper ante vel vulputate semper. Aliquam viverra, lorem sit amet tristique consequat, velit tortor lacinia sem, sed placerat nisi sapien rutrum lacus. Mauris vehicula purus mi. Integer feugiat consectetur elit, ac interdum turpis condimentum ut. Pellentesque sollicitudin est nunc, non accumsan metus laoreet nec.\n\nPellentesque rhoncus iaculis felis. Donec efficitur bibendum arcu, sed varius orci bibendum nec. Morbi laoreet nunc nec urna pharetra viverra. Nulla vel magna ex. Fusce semper nisl commodo nulla tempus, nec aliquam libero bibendum. Proin eleifend odio nec augue facilisis, nec faucibus tortor venenatis. Pellentesque pulvinar erat nec justo bibendum blandit.\n\nDonec ut libero a ex posuere euismod. Cras vitae turpis sit amet magna egestas vehicula. Maecenas interdum commodo quam, vitae ornare mauris viverra vel. In vestibulum enim pulvinar, pharetra augue a, tempor felis. Proin vel cursus tellus. Quisque eget mauris neque. Cras eu pharetra leo. Nam nulla tortor, imperdiet sit amet dictum eu, mollis id ante. ', 'Service': 'recry8s14qGJhHeOC', 'Email': 'ic4rusX@gmail.com', 'Record': "someRecId'"} user_id_from_email_response = {'ok': True, 'user': {'id': 'AGF2354'}} slack_user_id = '<@AGF2354>' text_dict_matches = f'Mentors matching all or some of the requested skillsets: {SLACK_USER_ID}' text_dict_message = f"User {SLACK_USER_ID} has requested a mentor for General Guidance - Slack Chat Given Skillset(s): C / C++,Web (Frontend Development),Mobile (iOS),Java,DevOps View requests: <https://airtable.com/tbl9uQEE8VeMdNCey/viwYzYa4J9aytVB4B|Airtable> Please reply to the channel if you'd like to be assigned to this request." text_dict_details = 'Additional details: Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin blandit porttitor nulla eu consectetur. Maecenas consectetur erat at odio iaculis, ac auctor nunc imperdiet. Sed neque quam, cursus eget nunc et, viverra gravida justo. Vivamus pharetra magna vel leo rutrum imperdiet. Vestibulum tempus non leo vestibulum iaculis. Ut nec lacinia elit, viverra vulputate tortor. Phasellus eu luctus odio. Vestibulum accumsan est sed metus dignissim, quis sollicitudin diam posuere. Duis ullamcorper ante vel vulputate semper. Aliquam viverra, lorem sit amet tristique consequat, velit tortor lacinia sem, sed placerat nisi sapien rutrum lacus. Mauris vehicula purus mi. Integer feugiat consectetur elit, ac interdum turpis condimentum ut. Pellentesque sollicitudin est nunc, non accumsan metus laoreet nec. Pellentesque rhoncus iaculis felis. Donec efficitur bibendum arcu, sed varius orci bibendum nec. Morbi laoreet nunc nec urna pharetra viverra. Nulla vel magna ex. Fusce semper nisl commodo nulla tempus, nec aliquam libero bibendum. Proin eleifend odio nec augue facilisis, nec faucibus tortor venenatis. Pellentesque pulvinar erat nec justo bibendum blandit. Donec ut libero a ex posuere euismod. Cras vitae turpis sit amet magna egestas vehicula. Maecenas interdum commodo quam, vitae ornare mauris viverra vel. In vestibulum enim pulvinar, pharetra augue a, tempor felis. Proin vel cursus tellus. Quisque eget mauris neque. Cras eu pharetra leo. Nam nulla tortor, imperdiet sit amet dictum eu, mollis id ante.' mentor_request_attachment = [{'text': '', 'fallback': '', 'color': '#3AA3E3', 'callback_id': 'claim_mentee', 'attachment_type': 'default', 'actions': [{'name': 'fakerec', 'text': 'Claim Mentee', 'type': 'button', 'style': 'primary', 'value': f'mentee_claimed'}]}] claim_mentee_event = {'type': 'interactive_message', 'actions': [{'name': 'rec7pRh2FwyO4nP2W', 'type': 'button', 'value': 'mentee_claimed'}], 'callback_id': 'claim_mentee', 'team': {'id': 'T8M8SQEN7', 'domain': 'test'}, 'channel': {'id': 'G8NDRJJF9', 'name': 'privategroup'}, 'user': {'id': 'U11111', 'name': 'tester'}, 'action_ts': '1521402127.915363', 'message_ts': '1521402116.000129', 'attachment_id': '1', 'token': 'faketoken', 'is_app_unfurl': False, 'original_message': {'text': 'User <@U8N6XBL7Q> has requested a mentor for General Guidance - Slack Chat\n\nGiven Skillset(s): None given\n\nView requests: <https://airtable.com/tbl9uQEE8VeMdNCey/viwYzYa4J9aytVB4B|Airtable>', 'username': 'test2-bot', 'bot_id': 'B8N6Z8M8E', 'attachments': [{'callback_id': 'claim_mentee', 'id': 1, 'color': '3AA3E3', 'actions': [{'id': '1', 'name': 'rec7pRh2FwyO4nP2W', 'text': 'Claim Mentee', 'type': 'button', 'value': 'mentee_claimed', 'style': 'primary'}]}], 'type': 'message', 'subtype': 'bot_message', 'thread_ts': '1521402116.000129', 'reply_count': 1, 'replies': [{'user': 'B00', 'ts': '1521402117.000015'}], 'subscribed': False, 'unread_count': 1, 'ts': '1521402116.000129'}, 'response_url': 'https://hooks.slack.com/actions/T8M8SQEN7/332727073942/JPnXPwSk8A5jffzf0DHuSnhS', 'trigger_id': '331226307360.293298830755.c73cad81aa525200275c2868dd168ab0'} reset_mentee_claim_event = {'type': 'interactive_message', 'actions': [{'name': 'rec7pRh2FwyO4nP2W', 'type': 'button', 'value': 'reset_claim_mentee'}], 'callback_id': 'claim_mentee', 'team': {'id': 'T8M8SQEN7', 'domain': 'test'}, 'channel': {'id': 'G8NDRJJF9', 'name': 'privategroup'}, 'user': {'id': 'U11111', 'name': 'tester'}, 'action_ts': '1521403472.901817', 'message_ts': '1521402116.000129', 'attachment_id': '1', 'token': 'faketoken', 'is_app_unfurl': False, 'original_message': {'text': 'User <@U8N6XBL7Q> has requested a mentor for General Guidance - Slack Chat\n\nGiven Skillset(s): None given\n\nView requests: &lt;https://airtable.com/tbl9uQEE8VeMdNCey/viwYzYa4J9aytVB4B|Airtable&gt;', 'username': 'test2-bot', 'bot_id': 'B8N6Z8M8E', 'attachments': [{'callback_id': 'claim_mentee', 'text': ':100: Request claimed by <@U8N6XBL7Q>:100:\n<!date^1521402131^Greeted at {date_num} {time_secs}|Failed to parse time>', 'id': 1, 'color': '3AA3E3', 'actions': [{'id': '1', 'name': 'rec7pRh2FwyO4nP2W', 'text': 'Reset claim', 'type': 'button', 'value': 'reset_claim_mentee', 'style': 'danger'}]}], 'type': 'message', 'subtype': 'bot_message', 'thread_ts': '1521402116.000129', 'reply_count': 1, 'replies': [{'user': 'B00', 'ts': '1521402117.000015'}], 'subscribed': False, 'unread_count': 1, 'ts': '1521402116.000129'}, 'response_url': 'https://hooks.slack.com/actions/T8M8SQEN7/331230500336/J5MfM0OC6I37iV9xQSPqQ2UD', 'trigger_id': '332007136373.293298830755.614be10d27ebd4e3d22af708906f27e0'} invalid_mentor_id_text = f":warning: <@U11111>'s Slack Email not found in Mentor table. :warning:" reset_mentee_attachment = [{'text': 'Reset by <@U11111> at <!date^11111^ {date_num} {time_secs}|Failed to parse time>', 'fallback': '', 'color': '#3AA3E3', 'callback_id': 'claim_mentee', 'attachment_type': 'default', 'actions': [{'name': 'rec7pRh2FwyO4nP2W', 'text': 'Claim Mentee', 'type': 'button', 'style': 'primary', 'value': 'mentee_claimed'}]}] slack_user_info = {'user': {'profile': {'email': 'fake@email.com'}}}
# -*- coding: utf-8 -*- # # Copyright 2014-2021 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain # a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. """Options for BigMLer cluster """ def get_cluster_options(defaults=None): """Adding arguments for the cluster subcommand """ if defaults is None: defaults = {} options = { # Input fields to include in the cluster. '--cluster-fields': { "action": 'store', "dest": 'cluster_fields', "default": defaults.get('cluster_fields', None), "help": ("Comma-separated list of input fields" " (predictors) to create the cluster.")}, # If a BigML cluster is provided, the script will use it to generate # centroid predictions. '--cluster': { 'action': 'store', 'dest': 'cluster', 'default': defaults.get('cluster', None), 'help': "BigML cluster Id."}, # The path to a file containing cluster ids. '--clusters': { 'action': 'store', 'dest': 'clusters', 'default': defaults.get('clusters', None), 'help': ("Path to a file containing cluster/ids. One cluster" " per line (e.g., cluster/50a206a8035d0706dc000376" ").")}, # If a BigML json file containing a cluster structure is provided, # the script will use it. '--cluster-file': { 'action': 'store', 'dest': 'cluster_file', 'default': defaults.get('cluster_file', None), 'help': "BigML cluster JSON structure file."}, # Number of centroids to be generated in the cluster '--k': { 'action': 'store', 'type': int, 'dest': 'cluster_k', 'default': defaults.get('cluster_k', None), 'help': "Number of centroids to be generated in the cluster."}, # Does not create a cluster just a dataset. '--no-cluster': { 'action': 'store_true', 'dest': 'no_cluster', 'default': defaults.get('no_cluster', False), 'help': "Do not create a cluster."}, # The path to a file containing cluster attributes. '--cluster-attributes': { 'action': 'store', 'dest': 'cluster_attributes', 'default': defaults.get('cluster_attributes', None), 'help': ("Path to a json file describing cluster" " attributes.")}, # Create a cluster, not just a dataset. '--no-no-cluster': { 'action': 'store_false', 'dest': 'no_cluster', 'default': defaults.get('no_cluster', False), 'help': "Create a cluster."}, # Comma separated list of datasets to be generated from the cluster. '--cluster-datasets': { 'action': 'store', 'dest': 'cluster_datasets', 'nargs': '?', 'const': '', 'default': defaults.get('cluster_datasets', None), 'help': ("Comma-separated list of centroid names. The" " related datasets will be generated. All datasets " "will be generated if empty.")}, # The seed to be used in cluster building. '--cluster-seed': { 'action': 'store', 'dest': 'cluster_seed', 'default': defaults.get('cluster_seed', None), 'help': "The seed to be used in cluster building."}, # The path to a file containing batch prediction attributes. '--batch-centroid-attributes': { 'action': 'store', 'dest': 'batch_centroid_attributes', 'default': defaults.get('batch_centroid_attributes', None), 'help': ("Path to a json file describing batch centroid" " attributes.")}, # The path to a file containing centroid attributes. '--centroid-attributes': { 'action': 'store', 'dest': 'centroid_attributes', 'default': defaults.get('centroid_attributes', None), 'help': ("Path to a json file describing centroid" " attributes.")}, # Comma separated list of models to be generated from the cluster. '--cluster-models': { 'action': 'store', 'dest': 'cluster_models', 'nargs': '?', 'const': '', 'default': defaults.get('cluster_models', None), 'help': ("Comma-separated list of centroid names. The" " related models will be generated. All models " "will be generated if empty.")}, # Comma separated list of summary fields '--summary-fields': { 'action': 'store', 'dest': 'summary_fields', 'default': defaults.get('summary_fields', None), 'help': ("Comma-separated list of summary fields, that will be" " included in the generated datasets but not used in" " clustering.")}} return options
"""Options for BigMLer cluster """ def get_cluster_options(defaults=None): """Adding arguments for the cluster subcommand """ if defaults is None: defaults = {} options = {'--cluster-fields': {'action': 'store', 'dest': 'cluster_fields', 'default': defaults.get('cluster_fields', None), 'help': 'Comma-separated list of input fields (predictors) to create the cluster.'}, '--cluster': {'action': 'store', 'dest': 'cluster', 'default': defaults.get('cluster', None), 'help': 'BigML cluster Id.'}, '--clusters': {'action': 'store', 'dest': 'clusters', 'default': defaults.get('clusters', None), 'help': 'Path to a file containing cluster/ids. One cluster per line (e.g., cluster/50a206a8035d0706dc000376).'}, '--cluster-file': {'action': 'store', 'dest': 'cluster_file', 'default': defaults.get('cluster_file', None), 'help': 'BigML cluster JSON structure file.'}, '--k': {'action': 'store', 'type': int, 'dest': 'cluster_k', 'default': defaults.get('cluster_k', None), 'help': 'Number of centroids to be generated in the cluster.'}, '--no-cluster': {'action': 'store_true', 'dest': 'no_cluster', 'default': defaults.get('no_cluster', False), 'help': 'Do not create a cluster.'}, '--cluster-attributes': {'action': 'store', 'dest': 'cluster_attributes', 'default': defaults.get('cluster_attributes', None), 'help': 'Path to a json file describing cluster attributes.'}, '--no-no-cluster': {'action': 'store_false', 'dest': 'no_cluster', 'default': defaults.get('no_cluster', False), 'help': 'Create a cluster.'}, '--cluster-datasets': {'action': 'store', 'dest': 'cluster_datasets', 'nargs': '?', 'const': '', 'default': defaults.get('cluster_datasets', None), 'help': 'Comma-separated list of centroid names. The related datasets will be generated. All datasets will be generated if empty.'}, '--cluster-seed': {'action': 'store', 'dest': 'cluster_seed', 'default': defaults.get('cluster_seed', None), 'help': 'The seed to be used in cluster building.'}, '--batch-centroid-attributes': {'action': 'store', 'dest': 'batch_centroid_attributes', 'default': defaults.get('batch_centroid_attributes', None), 'help': 'Path to a json file describing batch centroid attributes.'}, '--centroid-attributes': {'action': 'store', 'dest': 'centroid_attributes', 'default': defaults.get('centroid_attributes', None), 'help': 'Path to a json file describing centroid attributes.'}, '--cluster-models': {'action': 'store', 'dest': 'cluster_models', 'nargs': '?', 'const': '', 'default': defaults.get('cluster_models', None), 'help': 'Comma-separated list of centroid names. The related models will be generated. All models will be generated if empty.'}, '--summary-fields': {'action': 'store', 'dest': 'summary_fields', 'default': defaults.get('summary_fields', None), 'help': 'Comma-separated list of summary fields, that will be included in the generated datasets but not used in clustering.'}} return options
# 1 # 12 # 123 # 1234 # 12345 n = int (input("Enter the number ")) for i in range(1,n+1): for j in range(1,i+1): print(j,end="") print()
n = int(input('Enter the number ')) for i in range(1, n + 1): for j in range(1, i + 1): print(j, end='') print()
INCREASE: int = 1 # global namespace DECREASE: int = -1 space = ' ' sign = '* ' def print_rhombus(n: int): # global namespace # fn-in-fn: closure def print_line(i: int, direction: int): # local namespace visible in print_rhombus if i == 0: # i is part of the local namespace of print_line return line = (n - i) * space + i * sign print(line.rstrip()) if i == n: direction = DECREASE # change is happening in the local namespace of print_line print_line(i + direction, direction) # recusrion print_line(1, INCREASE) n = int(input()) print_rhombus(n)
increase: int = 1 decrease: int = -1 space = ' ' sign = '* ' def print_rhombus(n: int): def print_line(i: int, direction: int): if i == 0: return line = (n - i) * space + i * sign print(line.rstrip()) if i == n: direction = DECREASE print_line(i + direction, direction) print_line(1, INCREASE) n = int(input()) print_rhombus(n)
# _________________________________________________________________________ # # PyUtilib: A Python utility library. # Copyright (c) 2008 Sandia Corporation. # This software is distributed under the BSD License. # Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation, # the U.S. Government retains certain rights in this software. # _________________________________________________________________________ class ExcelSpreadsheet_base(object): def can_read(self): return False def can_write(self): return False def can_calculate(self): return False
class Excelspreadsheet_Base(object): def can_read(self): return False def can_write(self): return False def can_calculate(self): return False
# Copyright 2019 Google Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ============================================================================== """Command line options for meta optimization.""" def setup_args(parser): parser.add_argument('--metaoptimizer', type=str, default='es') parser.add_argument('-n', '--num_samples', type=int, default=10000) parser.add_argument('--worker_mode', type=str, default='cmd') parser.add_argument('--num_procs', type=int, default=4) parser.add_argument('--distribute', type=int, default=1) parser.add_argument('--cleanup_experiment', type=int, default=0) # Maximize a reward or minimize a loss? parser.add_argument('--maximize', type=int, default=1) parser.add_argument('--worst_score', type=float, default=0) # Parameter options parser.add_argument('-p', '--param', type=str, default='partition') parser.add_argument('-s', '--search', type=str, default='partition') parser.add_argument('--cmd_config', type=str, default='') # Meta optimization debugging options parser.add_argument('--meta_eval_noise', type=float, default=0.)
"""Command line options for meta optimization.""" def setup_args(parser): parser.add_argument('--metaoptimizer', type=str, default='es') parser.add_argument('-n', '--num_samples', type=int, default=10000) parser.add_argument('--worker_mode', type=str, default='cmd') parser.add_argument('--num_procs', type=int, default=4) parser.add_argument('--distribute', type=int, default=1) parser.add_argument('--cleanup_experiment', type=int, default=0) parser.add_argument('--maximize', type=int, default=1) parser.add_argument('--worst_score', type=float, default=0) parser.add_argument('-p', '--param', type=str, default='partition') parser.add_argument('-s', '--search', type=str, default='partition') parser.add_argument('--cmd_config', type=str, default='') parser.add_argument('--meta_eval_noise', type=float, default=0.0)
def method1(n: int) -> int: if n <= 2: return [] else: sieve = [True] * (n + 1) for x in range(3, int(n ** 0.5) + 1, 2): for y in range(3, (n // x) + 1, 2): sieve[(x * y)] = False return [2] + [i for i in range(3, n, 2) if sieve[i]] if __name__ == "__main__": """ from timeit import timeit print(timeit(lambda: method1(20), number=10000)) # 0.015664431000914192 """
def method1(n: int) -> int: if n <= 2: return [] else: sieve = [True] * (n + 1) for x in range(3, int(n ** 0.5) + 1, 2): for y in range(3, n // x + 1, 2): sieve[x * y] = False return [2] + [i for i in range(3, n, 2) if sieve[i]] if __name__ == '__main__': '\n from timeit import timeit\n print(timeit(lambda: method1(20), number=10000)) # 0.015664431000914192\n '
"""This file contains all defined containers and heat sources as variables. All variables are strings, so there are no docstrings available. In case you are wondering, this is the text in the module docstring of /tools/equipments.py . """ # containers pewter_cauldron = 'pewter_cauldron' copper_cauldron = 'copper_cauldron' martini_glass = 'martini_glass' old_kettle = 'old_kettle' # heat sources fire = 'fire' eternal_flame = 'eternal_flame' breathe_on_cauldron = 'breathe_on_cauldron'
"""This file contains all defined containers and heat sources as variables. All variables are strings, so there are no docstrings available. In case you are wondering, this is the text in the module docstring of /tools/equipments.py . """ pewter_cauldron = 'pewter_cauldron' copper_cauldron = 'copper_cauldron' martini_glass = 'martini_glass' old_kettle = 'old_kettle' fire = 'fire' eternal_flame = 'eternal_flame' breathe_on_cauldron = 'breathe_on_cauldron'
#!/usr/bin/env python3 _ = input() _v, *v = sorted(map(int, input().split())) for i in v: _v = (_v + i) / 2 print(_v)
_ = input() (_v, *v) = sorted(map(int, input().split())) for i in v: _v = (_v + i) / 2 print(_v)
# # PySNMP MIB module TRIPPLITE-PRODUCTS (http://pysnmp.sf.net) # ASN.1 source file://./TRIPPLITE-PRODUCTS.MIB # Produced by pysmi-0.2.2 at Wed Apr 11 14:12:10 2018 # On host Tim platform Linux version 4.15.15-1-ARCH by user syp # Using Python version 2.7.13 (default, Oct 26 2017, 17:04:19) # Integer, ObjectIdentifier, OctetString = mibBuilder.importSymbols("ASN1", "Integer", "ObjectIdentifier", "OctetString") NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues") ConstraintsUnion, SingleValueConstraint, ConstraintsIntersection, ValueSizeConstraint, ValueRangeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsUnion", "SingleValueConstraint", "ConstraintsIntersection", "ValueSizeConstraint", "ValueRangeConstraint") NotificationGroup, ModuleCompliance, ObjectGroup = mibBuilder.importSymbols("SNMPv2-CONF", "NotificationGroup", "ModuleCompliance", "ObjectGroup") Integer32, MibScalar, MibTable, MibTableRow, MibTableColumn, NotificationType, MibIdentifier, Bits, TimeTicks, Counter64, Unsigned32, enterprises, ModuleIdentity, Gauge32, iso, ObjectIdentity, IpAddress, Counter32 = mibBuilder.importSymbols("SNMPv2-SMI", "Integer32", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "NotificationType", "MibIdentifier", "Bits", "TimeTicks", "Counter64", "Unsigned32", "enterprises", "ModuleIdentity", "Gauge32", "iso", "ObjectIdentity", "IpAddress", "Counter32") DisplayString, TruthValue, RowStatus, TextualConvention, TimeStamp = mibBuilder.importSymbols("SNMPv2-TC", "DisplayString", "TruthValue", "RowStatus", "TextualConvention", "TimeStamp") tripplite, = mibBuilder.importSymbols("TRIPPLITE", "tripplite") tlpProducts = ModuleIdentity((1, 3, 6, 1, 4, 1, 850, 1)) tlpProducts.setRevisions(('2016-06-22 11:15', '2016-02-02 11:15', '2016-01-25 12:30', '2016-01-20 12:00', '2016-01-08 11:40', '2015-11-25 13:00', '2015-11-10 13:00', '2015-10-16 12:30', '2015-08-19 12:00', '2014-12-04 10:00', '2014-04-14 09:00',)) if mibBuilder.loadTexts: tlpProducts.setLastUpdated('201606221115Z') if mibBuilder.loadTexts: tlpProducts.setOrganization('Tripp Lite') tlpHardware = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1)) tlpSoftware = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 2)) tlpAlarms = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3)) tlpNotify = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 4)) tlpDevice = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 1)) tlpDeviceDetail = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 2)) tlpDeviceTypes = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3)) tlpUps = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1)) tlpPdu = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2)) tlpEnvirosense = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3)) tlpAts = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4)) tlpCooling = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 5)) tlpKvm = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 6)) tlpRackTrack = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 7)) tlpSwitch = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 8)) tlpUpsIdent = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1)) tlpUpsDevice = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 2)) tlpUpsDetail = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3)) tlpUpsControl = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 4)) tlpUpsConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5)) tlpUpsBattery = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1)) tlpUpsInput = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2)) tlpUpsOutput = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 3)) tlpUpsBypass = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 4)) tlpUpsOutlet = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5)) tlpUpsWatchdog = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 6)) tlpPduIdent = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1)) tlpPduDevice = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 2)) tlpPduDetail = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3)) tlpPduControl = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 4)) tlpPduConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 5)) tlpPduInput = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1)) tlpPduOutput = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 2)) tlpPduOutlet = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3)) tlpPduCircuit = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 4)) tlpPduBreaker = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 5)) tlpPduHeatsink = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 6)) tlpEnvIdent = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 1)) tlpEnvDetail = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3)) tlpEnvConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 5)) tlpAtsIdent = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1)) tlpAtsDevice = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 2)) tlpAtsDetail = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3)) tlpAtsControl = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 4)) tlpAtsConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5)) tlpAtsInput = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1)) tlpAtsOutput = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 2)) tlpAtsOutlet = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3)) tlpAtsCircuit = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 4)) tlpAtsBreaker = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 5)) tlpAtsHeatsink = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 6)) tlpCoolingIdent = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 5, 1)) tlpCoolingDevice = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 5, 2)) tlpCoolingDetail = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 5, 3)) tlpCoolingControl = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 5, 4)) tlpCoolingConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 5, 5)) tlpCoolingInput = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 5, 3, 1)) tlpCoolingOutput = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 5, 3, 2)) tlpKvmIdent = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 6, 1)) tlpKvmDevice = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 6, 2)) tlpKvmDetail = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 6, 3)) tlpKvmControl = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 6, 4)) tlpKvmConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 6, 5)) tlpRackTrackIdent = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 7, 1)) tlpRackTrackDevice = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 7, 2)) tlpRackTrackDetail = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 7, 3)) tlpRackTrackControl = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 7, 4)) tlpRackTrackConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 7, 5)) tlpSwitchIdent = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 8, 1)) tlpSwitchDevice = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 8, 2)) tlpSwitchDetail = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 8, 3)) tlpSwitchControl = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 8, 4)) tlpSwitchConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 8, 5)) tlpAgentDetails = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 2, 1)) tlpAgentSettings = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 2, 2)) tlpAgentContacts = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 2, 3)) tlpAgentIdent = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 1)) tlpAgentAttributes = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2)) tlpAgentConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 2, 2, 1)) tlpAgentEmailContacts = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 1)) tlpAgentSnmpContacts = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 2)) tlpAlarmsWellKnown = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3)) tlpAlarmControl = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 4)) tlpAgentAlarms = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 1)) tlpDeviceAlarms = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 2)) tlpUpsAlarms = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3)) tlpPduAlarms = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4)) tlpEnvAlarms = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 5)) tlpAtsAlarms = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6)) tlpCoolingAlarms = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7)) tlpKvmAlarms = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 8)) tlpRackTrackAlarms = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 9)) tlpSwitchAlarms = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 10)) tlpNotifications = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 4, 1)) tlpDeviceNumDevices = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 1, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpDeviceNumDevices.setStatus('current') tlpDeviceTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 1, 2), ) if mibBuilder.loadTexts: tlpDeviceTable.setStatus('current') tlpDeviceEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 1, 2, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex")) if mibBuilder.loadTexts: tlpDeviceEntry.setStatus('current') tlpDeviceIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 1, 2, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpDeviceIndex.setStatus('current') tlpDeviceRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 1, 2, 1, 2), RowStatus()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpDeviceRowStatus.setStatus('current') tlpDeviceType = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 1, 2, 1, 3), ObjectIdentifier()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpDeviceType.setStatus('current') tlpDeviceManufacturer = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 1, 2, 1, 4), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpDeviceManufacturer.setStatus('current') tlpDeviceModel = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 1, 2, 1, 5), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpDeviceModel.setStatus('current') tlpDeviceName = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 1, 2, 1, 6), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpDeviceName.setStatus('current') tlpDeviceID = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 1, 2, 1, 7), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpDeviceID.setStatus('current') tlpDeviceLocation = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 1, 2, 1, 8), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpDeviceLocation.setStatus('current') tlpDeviceRegion = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 1, 2, 1, 9), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpDeviceRegion.setStatus('current') tlpDeviceStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 1, 2, 1, 10), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7)).clone(namedValues=NamedValues(("none", 0), ("critical", 1), ("warning", 2), ("info", 3), ("status", 4), ("offline", 5), ("custom", 6), ("configuration", 7)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpDeviceStatus.setStatus('current') tlpDeviceIdentTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 2, 1), ) if mibBuilder.loadTexts: tlpDeviceIdentTable.setStatus('current') tlpDeviceIdentEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 2, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex")) if mibBuilder.loadTexts: tlpDeviceIdentEntry.setStatus('current') tlpDeviceIdentProtocol = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 2, 1, 1, 1), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpDeviceIdentProtocol.setStatus('current') tlpDeviceIdentCommPortType = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 2, 1, 1, 2), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1, 2, 3, 4, 5)).clone(namedValues=NamedValues(("unknown", 0), ("serial", 1), ("usb", 2), ("hid", 3), ("simulated", 4), ("unittest", 5)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpDeviceIdentCommPortType.setStatus('current') tlpDeviceIdentCommPortName = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 2, 1, 1, 3), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpDeviceIdentCommPortName.setStatus('current') tlpDeviceIdentFirmwareVersion = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 2, 1, 1, 4), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpDeviceIdentFirmwareVersion.setStatus('current') tlpDeviceIdentSerialNum = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 2, 1, 1, 5), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpDeviceIdentSerialNum.setStatus('current') tlpDeviceIdentDateInstalled = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 2, 1, 1, 6), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpDeviceIdentDateInstalled.setStatus('current') tlpDeviceIdentHardwareVersion = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 2, 1, 1, 7), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpDeviceIdentHardwareVersion.setStatus('current') tlpDeviceIdentCurrentUptime = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 2, 1, 1, 8), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpDeviceIdentCurrentUptime.setStatus('current') tlpDeviceIdentTotalUptime = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 2, 1, 1, 9), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpDeviceIdentTotalUptime.setStatus('current') tlpUpsIdentNumUps = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsIdentNumUps.setStatus('current') tlpUpsIdentTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 2), ) if mibBuilder.loadTexts: tlpUpsIdentTable.setStatus('current') tlpUpsIdentEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 2, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex")) if mibBuilder.loadTexts: tlpUpsIdentEntry.setStatus('current') tlpUpsIdentNumInputs = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 2, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsIdentNumInputs.setStatus('current') tlpUpsIdentNumOutputs = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 2, 1, 2), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsIdentNumOutputs.setStatus('current') tlpUpsIdentNumBypass = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 2, 1, 3), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsIdentNumBypass.setStatus('current') tlpUpsIdentNumPhases = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 2, 1, 4), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsIdentNumPhases.setStatus('current') tlpUpsIdentNumOutlets = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 2, 1, 5), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsIdentNumOutlets.setStatus('current') tlpUpsIdentNumOutletGroups = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 2, 1, 6), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsIdentNumOutletGroups.setStatus('current') tlpUpsIdentNumBatteryPacks = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 2, 1, 7), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsIdentNumBatteryPacks.setStatus('current') tlpUpsSupportsTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 3), ) if mibBuilder.loadTexts: tlpUpsSupportsTable.setStatus('current') tlpUpsSupportsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 3, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex")) if mibBuilder.loadTexts: tlpUpsSupportsEntry.setStatus('current') tlpUpsSupportsEnergywise = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 3, 1, 1), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsSupportsEnergywise.setStatus('current') tlpUpsSupportsRampShed = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 3, 1, 2), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsSupportsRampShed.setStatus('current') tlpUpsSupportsOutletGroup = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 3, 1, 3), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsSupportsOutletGroup.setStatus('current') tlpUpsSupportsOutletCurrentPower = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 3, 1, 4), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsSupportsOutletCurrentPower.setStatus('current') tlpUpsSupportsOutletVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 3, 1, 5), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsSupportsOutletVoltage.setStatus('current') tlpUpsDeviceTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 2, 1), ) if mibBuilder.loadTexts: tlpUpsDeviceTable.setStatus('current') tlpUpsDeviceEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 2, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex")) if mibBuilder.loadTexts: tlpUpsDeviceEntry.setStatus('current') tlpUpsDeviceMainLoadState = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 2, 1, 1, 1), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1, 2)).clone(namedValues=NamedValues(("unknown", 0), ("off", 1), ("on", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsDeviceMainLoadState.setStatus('current') tlpUpsDeviceMainLoadControllable = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 2, 1, 1, 2), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsDeviceMainLoadControllable.setStatus('current') tlpUpsDeviceMainLoadCommand = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 2, 1, 1, 3), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1, 2, 3)).clone(namedValues=NamedValues(("idle", 0), ("turnOff", 1), ("turnOn", 2), ("cycle", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsDeviceMainLoadCommand.setStatus('current') tlpUpsDevicePowerOnDelay = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 2, 1, 1, 4), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsDevicePowerOnDelay.setStatus('current') tlpUpsDeviceTestDate = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 2, 1, 1, 5), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsDeviceTestDate.setStatus('current') tlpUpsDeviceTestResultsStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 2, 1, 1, 6), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9)).clone(namedValues=NamedValues(("noTest", 0), ("doneAndPassed", 1), ("doneAndWarning", 2), ("doneAndError", 3), ("aborted", 4), ("inProgress", 5), ("noTestInitiated", 6), ("badBattery", 7), ("overCurrent", 8), ("batteryFailed", 9)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsDeviceTestResultsStatus.setStatus('current') tlpUpsDeviceTemperatureC = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 2, 1, 1, 7), Integer32()).setUnits('degrees Centigrade').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsDeviceTemperatureC.setStatus('current') tlpUpsDeviceTemperatureF = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 2, 1, 1, 8), Integer32()).setUnits('degrees Farenheit').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsDeviceTemperatureF.setStatus('current') tlpUpsBatterySummaryTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 1), ) if mibBuilder.loadTexts: tlpUpsBatterySummaryTable.setStatus('current') tlpUpsBatterySummaryEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex")) if mibBuilder.loadTexts: tlpUpsBatterySummaryEntry.setStatus('current') tlpUpsBatteryStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 1, 1, 1), Integer32().subtype(subtypeSpec=SingleValueConstraint(1, 2, 3, 4)).clone(namedValues=NamedValues(("unknown", 1), ("batteryNormal", 2), ("batteryLow", 3), ("batteryDepleted", 4)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsBatteryStatus.setStatus('current') tlpUpsSecondsOnBattery = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 1, 1, 2), Unsigned32()).setUnits('seconds').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsSecondsOnBattery.setStatus('current') tlpUpsEstimatedMinutesRemaining = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 1, 1, 3), Unsigned32()).setUnits('minutes').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsEstimatedMinutesRemaining.setStatus('current') tlpUpsEstimatedChargeRemaining = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 1, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setUnits('percent').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsEstimatedChargeRemaining.setStatus('current') tlpUpsBatteryRunTimeRemaining = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 1, 1, 5), TimeTicks()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsBatteryRunTimeRemaining.setStatus('current') tlpUpsBatteryDetailTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 2), ) if mibBuilder.loadTexts: tlpUpsBatteryDetailTable.setStatus('current') tlpUpsBatteryDetailEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 2, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex")) if mibBuilder.loadTexts: tlpUpsBatteryDetailEntry.setStatus('current') tlpUpsBatteryDetailVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 2, 1, 1), Unsigned32()).setUnits('0.1 Volt DC').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsBatteryDetailVoltage.setStatus('current') tlpUpsBatteryDetailCurrent = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 2, 1, 2), Unsigned32()).setUnits('0.1 Amp DC').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsBatteryDetailCurrent.setStatus('current') tlpUpsBatteryDetailCapacity = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 2, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setUnits('percent').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsBatteryDetailCapacity.setStatus('current') tlpUpsBatteryDetailCharge = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 2, 1, 4), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1, 2, 3, 4, 5)).clone(namedValues=NamedValues(("floating", 0), ("charging", 1), ("resting", 2), ("discharging", 3), ("normal", 4), ("standby", 5)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsBatteryDetailCharge.setStatus('current') tlpUpsBatteryDetailChargerStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 2, 1, 5), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("ok", 0), ("inFaultCondition", 1)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsBatteryDetailChargerStatus.setStatus('current') tlpUpsBatteryPackIdentTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 3), ) if mibBuilder.loadTexts: tlpUpsBatteryPackIdentTable.setStatus('current') tlpUpsBatteryPackIdentEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 3, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"), (0, "TRIPPLITE-PRODUCTS", "tlpUpsBatteryPackIdentIndex")) if mibBuilder.loadTexts: tlpUpsBatteryPackIdentEntry.setStatus('current') tlpUpsBatteryPackIdentIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 3, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsBatteryPackIdentIndex.setStatus('current') tlpUpsBatteryPackIdentManufacturer = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 3, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsBatteryPackIdentManufacturer.setStatus('current') tlpUpsBatteryPackIdentModel = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 3, 1, 3), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsBatteryPackIdentModel.setStatus('current') tlpUpsBatteryPackIdentSerialNum = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 3, 1, 4), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsBatteryPackIdentSerialNum.setStatus('current') tlpUpsBatteryPackIdentFirmware = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 3, 1, 5), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsBatteryPackIdentFirmware.setStatus('current') tlpUpsBatteryPackIdentSKU = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 3, 1, 6), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsBatteryPackIdentSKU.setStatus('current') tlpUpsBatteryPackConfigTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 4), ) if mibBuilder.loadTexts: tlpUpsBatteryPackConfigTable.setStatus('current') tlpUpsBatteryPackConfigEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 4, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"), (0, "TRIPPLITE-PRODUCTS", "tlpUpsBatteryPackIdentIndex")) if mibBuilder.loadTexts: tlpUpsBatteryPackConfigEntry.setStatus('current') tlpUpsBatteryPackConfigChemistry = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 4, 1, 1), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1, 2, 3)).clone(namedValues=NamedValues(("unknown", 0), ("leadAcid", 1), ("nickelCadmium", 2), ("lithiumIon", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsBatteryPackConfigChemistry.setStatus('current') tlpUpsBatteryPackConfigStyle = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 4, 1, 2), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1, 2, 3)).clone(namedValues=NamedValues(("unknown", 0), ("nonsmart", 1), ("smart", 2), ("bms", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsBatteryPackConfigStyle.setStatus('current') tlpUpsBatteryPackConfigLocation = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 4, 1, 3), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1, 2)).clone(namedValues=NamedValues(("unknown", 0), ("internal", 1), ("external", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsBatteryPackConfigLocation.setStatus('current') tlpUpsBatteryPackConfigStrings = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 4, 1, 4), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsBatteryPackConfigStrings.setStatus('current') tlpUpsBatteryPackConfigBatteriesPerString = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 4, 1, 5), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsBatteryPackConfigBatteriesPerString.setStatus('current') tlpUpsBatteryPackConfigCellsPerBattery = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 4, 1, 6), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1, 2, 4, 6)).clone(namedValues=NamedValues(("unknown", 0), ("one", 1), ("two", 2), ("four", 4), ("six", 6)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsBatteryPackConfigCellsPerBattery.setStatus('current') tlpUpsBatteryPackConfigNumBatteries = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 4, 1, 7), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsBatteryPackConfigNumBatteries.setStatus('current') tlpUpsBatteryPackConfigCapacityUnits = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 4, 1, 8), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("mAHr", 0), ("mWHr", 1)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsBatteryPackConfigCapacityUnits.setStatus('current') tlpUpsBatteryPackConfigDesignCapacity = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 4, 1, 9), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsBatteryPackConfigDesignCapacity.setStatus('current') tlpUpsBatteryPackConfigCellCapacity = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 4, 1, 10), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsBatteryPackConfigCellCapacity.setStatus('current') tlpUpsBatteryPackConfigMinCellVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 4, 1, 11), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsBatteryPackConfigMinCellVoltage.setStatus('current') tlpUpsBatteryPackConfigMaxCellVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 4, 1, 12), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsBatteryPackConfigMaxCellVoltage.setStatus('current') tlpUpsBatteryPackDetailTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 5), ) if mibBuilder.loadTexts: tlpUpsBatteryPackDetailTable.setStatus('current') tlpUpsBatteryPackDetailEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 5, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"), (0, "TRIPPLITE-PRODUCTS", "tlpUpsBatteryPackIdentIndex")) if mibBuilder.loadTexts: tlpUpsBatteryPackDetailEntry.setStatus('current') tlpUpsBatteryPackDetailCondition = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 5, 1, 1), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1, 2, 3)).clone(namedValues=NamedValues(("unknown", 0), ("good", 1), ("weak", 2), ("bad", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsBatteryPackDetailCondition.setStatus('current') tlpUpsBatteryPackDetailTemperatureC = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 5, 1, 2), Unsigned32()).setUnits('degrees Centigrade').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsBatteryPackDetailTemperatureC.setStatus('current') tlpUpsBatteryPackDetailTemperatureF = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 5, 1, 3), Unsigned32()).setUnits('0.1 degrees Farenheit').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsBatteryPackDetailTemperatureF.setStatus('current') tlpUpsBatteryPackDetailAge = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 5, 1, 4), Unsigned32()).setUnits('0.1 Years').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsBatteryPackDetailAge.setStatus('current') tlpUpsBatteryPackDetailLastReplaceDate = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 5, 1, 5), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsBatteryPackDetailLastReplaceDate.setStatus('current') tlpUpsBatteryPackDetailNextReplaceDate = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 5, 1, 6), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsBatteryPackDetailNextReplaceDate.setStatus('current') tlpUpsBatteryPackDetailCycleCount = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 5, 1, 7), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsBatteryPackDetailCycleCount.setStatus('current') tlpUpsInputTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 1), ) if mibBuilder.loadTexts: tlpUpsInputTable.setStatus('current') tlpUpsInputEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex")) if mibBuilder.loadTexts: tlpUpsInputEntry.setStatus('current') tlpUpsInputLineBads = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 1, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsInputLineBads.setStatus('current') tlpUpsInputNominalVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 1, 1, 2), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsInputNominalVoltage.setStatus('current') tlpUpsInputNominalFrequency = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 1, 1, 3), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsInputNominalFrequency.setStatus('current') tlpUpsInputLowTransferVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 1, 1, 4), Unsigned32()).setUnits('0.1 Volts').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsInputLowTransferVoltage.setStatus('current') tlpUpsInputLowTransferVoltageLowerBound = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 1, 1, 5), Unsigned32()).setUnits('0.1 Volts').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsInputLowTransferVoltageLowerBound.setStatus('current') tlpUpsInputLowTransferVoltageUpperBound = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 1, 1, 6), Unsigned32()).setUnits('0.1 Volts').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsInputLowTransferVoltageUpperBound.setStatus('current') tlpUpsInputHighTransferVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 1, 1, 7), Unsigned32()).setUnits('0.1 Volts').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsInputHighTransferVoltage.setStatus('current') tlpUpsInputHighTransferVoltageLowerBound = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 1, 1, 8), Unsigned32()).setUnits('0.1 Volts').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsInputHighTransferVoltageLowerBound.setStatus('current') tlpUpsInputHighTransferVoltageUpperBound = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 1, 1, 9), Unsigned32()).setUnits('0.1 Volts').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsInputHighTransferVoltageUpperBound.setStatus('current') tlpUpsInputPhaseTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 2), ) if mibBuilder.loadTexts: tlpUpsInputPhaseTable.setStatus('current') tlpUpsInputPhaseEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 2, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"), (0, "TRIPPLITE-PRODUCTS", "tlpUpsInputPhaseIndex")) if mibBuilder.loadTexts: tlpUpsInputPhaseEntry.setStatus('current') tlpUpsInputPhaseIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 2, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsInputPhaseIndex.setStatus('current') tlpUpsInputPhaseFrequency = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 2, 1, 2), Unsigned32()).setUnits('0.1 Hertz').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsInputPhaseFrequency.setStatus('current') tlpUpsInputPhaseVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 2, 1, 3), Unsigned32()).setUnits('0.1 Volt DC').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsInputPhaseVoltage.setStatus('current') tlpUpsInputPhaseVoltageMin = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 2, 1, 4), Unsigned32()).setUnits('0.1 Volt DC').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsInputPhaseVoltageMin.setStatus('current') tlpUpsInputPhaseVoltageMax = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 2, 1, 5), Unsigned32()).setUnits('0.1 Volt DC').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsInputPhaseVoltageMax.setStatus('current') tlpUpsInputPhaseCurrent = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 2, 1, 6), Unsigned32()).setUnits('0.01 Amp DC').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsInputPhaseCurrent.setStatus('current') tlpUpsInputPhasePower = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 2, 1, 7), Unsigned32()).setUnits('Watts').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsInputPhasePower.setStatus('current') tlpUpsOutputTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 3, 1), ) if mibBuilder.loadTexts: tlpUpsOutputTable.setStatus('current') tlpUpsOutputEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 3, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex")) if mibBuilder.loadTexts: tlpUpsOutputEntry.setStatus('current') tlpUpsOutputSource = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 3, 1, 1, 1), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9)).clone(namedValues=NamedValues(("unknown", 0), ("other", 1), ("none", 2), ("normal", 3), ("bypass", 4), ("battery", 5), ("boosting", 6), ("reducing", 7), ("second", 8), ("economy", 9)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsOutputSource.setStatus('current') tlpUpsOutputNominalVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 3, 1, 1, 2), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsOutputNominalVoltage.setStatus('current') tlpUpsOutputFrequency = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 3, 1, 1, 3), Unsigned32()).setUnits('0.1 Hertz').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsOutputFrequency.setStatus('current') tlpUpsOutputLineTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 3, 2), ) if mibBuilder.loadTexts: tlpUpsOutputLineTable.setStatus('current') tlpUpsOutputLineEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 3, 2, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"), (0, "TRIPPLITE-PRODUCTS", "tlpUpsOutputLineIndex")) if mibBuilder.loadTexts: tlpUpsOutputLineEntry.setStatus('current') tlpUpsOutputLineIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 3, 2, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsOutputLineIndex.setStatus('current') tlpUpsOutputLineVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 3, 2, 1, 2), Unsigned32()).setUnits('0.1 Volt DC').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsOutputLineVoltage.setStatus('current') tlpUpsOutputLineCurrent = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 3, 2, 1, 3), Unsigned32()).setUnits('0.1 Amp').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsOutputLineCurrent.setStatus('current') tlpUpsOutputLinePower = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 3, 2, 1, 4), Unsigned32()).setUnits('Watts').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsOutputLinePower.setStatus('current') tlpUpsOutputLinePercentLoad = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 3, 2, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 200))).setUnits('percent').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsOutputLinePercentLoad.setStatus('current') tlpUpsOutputLineFrequency = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 3, 2, 1, 6), Unsigned32()).setUnits('0.1 Hertz').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsOutputLineFrequency.setStatus('current') tlpUpsBypassTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 4, 1), ) if mibBuilder.loadTexts: tlpUpsBypassTable.setStatus('current') tlpUpsBypassEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 4, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex")) if mibBuilder.loadTexts: tlpUpsBypassEntry.setStatus('current') tlpUpsBypassFrequency = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 4, 1, 1, 1), Unsigned32()).setUnits('0.1 Hertz').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsBypassFrequency.setStatus('current') tlpUpsBypassLineTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 4, 2), ) if mibBuilder.loadTexts: tlpUpsBypassLineTable.setStatus('current') tlpUpsBypassLineEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 4, 2, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"), (0, "TRIPPLITE-PRODUCTS", "tlpUpsBypassLineIndex")) if mibBuilder.loadTexts: tlpUpsBypassLineEntry.setStatus('current') tlpUpsBypassLineIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 4, 2, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsBypassLineIndex.setStatus('current') tlpUpsBypassLineVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 4, 2, 1, 2), Unsigned32()).setUnits('0.1 Volt DC').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsBypassLineVoltage.setStatus('current') tlpUpsBypassLineCurrent = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 4, 2, 1, 3), Unsigned32()).setUnits('0.1 Amp').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsBypassLineCurrent.setStatus('current') tlpUpsBypassLinePower = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 4, 2, 1, 4), Unsigned32()).setUnits('Watts').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsBypassLinePower.setStatus('current') tlpUpsOutletTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 1), ) if mibBuilder.loadTexts: tlpUpsOutletTable.setStatus('current') tlpUpsOutletEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"), (0, "TRIPPLITE-PRODUCTS", "tlpUpsOutletIndex")) if mibBuilder.loadTexts: tlpUpsOutletEntry.setStatus('current') tlpUpsOutletIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 1, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsOutletIndex.setStatus('current') tlpUpsOutletName = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 1, 1, 2), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsOutletName.setStatus('current') tlpUpsOutletDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 1, 1, 3), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsOutletDescription.setStatus('current') tlpUpsOutletState = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 1, 1, 4), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1, 2)).clone(namedValues=NamedValues(("unknown", 0), ("off", 1), ("on", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsOutletState.setStatus('current') tlpUpsOutletControllable = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 1, 1, 5), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsOutletControllable.setStatus('current') tlpUpsOutletCommand = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 1, 1, 6), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1, 2, 3)).clone(namedValues=NamedValues(("idle", 0), ("turnOff", 1), ("turnOn", 2), ("cycle", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsOutletCommand.setStatus('current') tlpUpsOutletVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 1, 1, 7), Unsigned32()).setUnits('0.1 Volt DC').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsOutletVoltage.setStatus('current') tlpUpsOutletCurrent = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 1, 1, 8), Unsigned32()).setUnits('0.01 RMS Amp').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsOutletCurrent.setStatus('current') tlpUpsOutletPower = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 1, 1, 9), Unsigned32()).setUnits('Watts').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsOutletPower.setStatus('current') tlpUpsOutletRampAction = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 1, 1, 10), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("remainOff", 0), ("turnOnAfterDelay", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsOutletRampAction.setStatus('current') tlpUpsOutletRampDelay = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 1, 1, 11), Integer32()).setUnits('seconds').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsOutletRampDelay.setStatus('current') tlpUpsOutletShedAction = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 1, 1, 12), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("remainOn", 0), ("turnOffAfterDelay", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsOutletShedAction.setStatus('current') tlpUpsOutletShedDelay = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 1, 1, 13), Integer32()).setUnits('seconds').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsOutletShedDelay.setStatus('current') tlpUpsOutletGroup = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 1, 1, 14), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsOutletGroup.setStatus('current') tlpUpsOutletGroupTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 2), ) if mibBuilder.loadTexts: tlpUpsOutletGroupTable.setStatus('current') tlpUpsOutletGroupEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 2, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"), (0, "TRIPPLITE-PRODUCTS", "tlpUpsOutletGroupIndex")) if mibBuilder.loadTexts: tlpUpsOutletGroupEntry.setStatus('current') tlpUpsOutletGroupIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 2, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsOutletGroupIndex.setStatus('current') tlpUpsOutletGroupRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 2, 1, 2), RowStatus()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsOutletGroupRowStatus.setStatus('current') tlpUpsOutletGroupName = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 2, 1, 3), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsOutletGroupName.setStatus('current') tlpUpsOutletGroupDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 2, 1, 4), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsOutletGroupDescription.setStatus('current') tlpUpsOutletGroupState = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 2, 1, 5), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1, 2, 3)).clone(namedValues=NamedValues(("unknown", 0), ("off", 1), ("on", 2), ("mixed", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsOutletGroupState.setStatus('current') tlpUpsOutletGroupCommand = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 2, 1, 6), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1, 2, 3)).clone(namedValues=NamedValues(("idle", 0), ("turnOff", 1), ("turnOn", 2), ("cycle", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsOutletGroupCommand.setStatus('current') tlpUpsWatchdogTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 6, 1), ) if mibBuilder.loadTexts: tlpUpsWatchdogTable.setStatus('current') tlpUpsWatchdogEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 6, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex")) if mibBuilder.loadTexts: tlpUpsWatchdogEntry.setStatus('current') tlpUpsWatchdogSupported = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 6, 1, 1, 1), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsWatchdogSupported.setStatus('current') tlpUpsWatchdogSecsBeforeReboot = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 6, 1, 1, 2), Unsigned32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsWatchdogSecsBeforeReboot.setStatus('current') tlpUpsControlTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 4, 1), ) if mibBuilder.loadTexts: tlpUpsControlTable.setStatus('current') tlpUpsControlEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 4, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex")) if mibBuilder.loadTexts: tlpUpsControlEntry.setStatus('current') tlpUpsControlSelfTest = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 4, 1, 1, 1), TruthValue()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsControlSelfTest.setStatus('current') tlpUpsControlRamp = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 4, 1, 1, 2), TruthValue()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsControlRamp.setStatus('current') tlpUpsControlShed = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 4, 1, 1, 3), TruthValue()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsControlShed.setStatus('current') tlpUpsControlUpsOn = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 4, 1, 1, 4), TruthValue()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsControlUpsOn.setStatus('current') tlpUpsControlUpsOff = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 4, 1, 1, 5), TruthValue()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsControlUpsOff.setStatus('current') tlpUpsControlUpsReboot = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 4, 1, 1, 6), TruthValue()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsControlUpsReboot.setStatus('current') tlpUpsControlBypass = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 4, 1, 1, 7), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("disable", 0), ("enable", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsControlBypass.setStatus('current') tlpUpsConfigTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1), ) if mibBuilder.loadTexts: tlpUpsConfigTable.setStatus('current') tlpUpsConfigEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex")) if mibBuilder.loadTexts: tlpUpsConfigEntry.setStatus('current') tlpUpsConfigInputVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 1), Unsigned32()).setUnits('Volts').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsConfigInputVoltage.setStatus('current') tlpUpsConfigInputFrequency = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 2), Unsigned32()).setUnits('0.1 Hertz').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsConfigInputFrequency.setStatus('current') tlpUpsConfigOutputVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 3), Unsigned32()).setUnits('Volts').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsConfigOutputVoltage.setStatus('current') tlpUpsConfigOutputFrequency = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 4), Unsigned32()).setUnits('0.1 Hertz').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsConfigOutputFrequency.setStatus('current') tlpUpsConfigAudibleStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 5), Integer32().subtype(subtypeSpec=SingleValueConstraint(1, 2, 3)).clone(namedValues=NamedValues(("disabled", 1), ("enabled", 2), ("muted", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsConfigAudibleStatus.setStatus('current') tlpUpsConfigAutoBatteryTest = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 6), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1, 2, 3, 4)).clone(namedValues=NamedValues(("disabled", 0), ("biweekly", 1), ("monthly", 2), ("quarterly", 3), ("semiannually", 4)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsConfigAutoBatteryTest.setStatus('current') tlpUpsConfigAutoRestartAfterShutdown = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 7), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsConfigAutoRestartAfterShutdown.setStatus('current') tlpUpsConfigAutoRampOnTransition = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 8), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsConfigAutoRampOnTransition.setStatus('current') tlpUpsConfigAutoShedOnTransition = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 9), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsConfigAutoShedOnTransition.setStatus('current') tlpUpsConfigBypassLowerLimitPercent = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-20, -5))).setUnits('percent').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsConfigBypassLowerLimitPercent.setStatus('current') tlpUpsConfigBypassUpperLimitPercent = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 11), Integer32().subtype(subtypeSpec=ValueRangeConstraint(5, 20))).setUnits('percent').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsConfigBypassUpperLimitPercent.setStatus('current') tlpUpsConfigBypassLowerLimitVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 12), Unsigned32()).setUnits('Volts').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsConfigBypassLowerLimitVoltage.setStatus('current') tlpUpsConfigBypassUpperLimitVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 13), Unsigned32()).setUnits('Volts').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsConfigBypassUpperLimitVoltage.setStatus('current') tlpUpsConfigColdStart = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 14), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsConfigColdStart.setStatus('current') tlpUpsConfigEconomicMode = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 15), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1, 2, 3, 4, 5)).clone(namedValues=NamedValues(("online", 0), ("economy", 1), ("constant50Hz", 2), ("constant60Hz", 3), ("constantAuto", 4), ("autoAdaptive", 5)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsConfigEconomicMode.setStatus('current') tlpUpsConfigFaultAction = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 16), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("bypass", 0), ("standby", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsConfigFaultAction.setStatus('current') tlpUpsConfigOffMode = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 17), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("standby", 0), ("bypass", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsConfigOffMode.setStatus('current') tlpUpsConfigLineSensitivity = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 18), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1, 2)).clone(namedValues=NamedValues(("normal", 0), ("reduced", 1), ("fullyReduced", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsConfigLineSensitivity.setStatus('current') tlpUpsConfigAutoRestartTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 2), ) if mibBuilder.loadTexts: tlpUpsConfigAutoRestartTable.setStatus('current') tlpUpsConfigAutoRestartEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 2, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex")) if mibBuilder.loadTexts: tlpUpsConfigAutoRestartEntry.setStatus('current') tlpUpsConfigAutoRestartInverterShutdown = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 2, 1, 1), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsConfigAutoRestartInverterShutdown.setStatus('current') tlpUpsConfigAutoRestartDelayedWakeup = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 2, 1, 2), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsConfigAutoRestartDelayedWakeup.setStatus('current') tlpUpsConfigAutoRestartLowVoltageCutoff = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 2, 1, 3), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsConfigAutoRestartLowVoltageCutoff.setStatus('current') tlpUpsConfigAutoRestartOverLoad = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 2, 1, 4), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsConfigAutoRestartOverLoad.setStatus('current') tlpUpsConfigAutoRestartOverTemperature = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 2, 1, 5), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsConfigAutoRestartOverTemperature.setStatus('current') tlpUpsConfigThresholdTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 3), ) if mibBuilder.loadTexts: tlpUpsConfigThresholdTable.setStatus('current') tlpUpsConfigThresholdEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 3, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex")) if mibBuilder.loadTexts: tlpUpsConfigThresholdEntry.setStatus('current') tlpUpsConfigBatteryAgeThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 3, 1, 1), Unsigned32()).setUnits('months').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsConfigBatteryAgeThreshold.setStatus('current') tlpUpsConfigLowBatteryThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 3, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(5, 95))).setUnits('percent').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsConfigLowBatteryThreshold.setStatus('current') tlpUpsConfigLowBatteryTime = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 3, 1, 3), Unsigned32()).setUnits('seconds').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsConfigLowBatteryTime.setStatus('current') tlpUpsConfigOverLoadThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 3, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(5, 105))).setUnits('percent').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsConfigOverLoadThreshold.setStatus('current') tlpPduIdentNumPdu = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduIdentNumPdu.setStatus('current') tlpPduIdentTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 2), ) if mibBuilder.loadTexts: tlpPduIdentTable.setStatus('current') tlpPduIdentEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 2, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex")) if mibBuilder.loadTexts: tlpPduIdentEntry.setStatus('current') tlpPduIdentNumInputs = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 2, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduIdentNumInputs.setStatus('current') tlpPduIdentNumOutputs = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 2, 1, 2), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduIdentNumOutputs.setStatus('current') tlpPduIdentNumPhases = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 2, 1, 3), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduIdentNumPhases.setStatus('current') tlpPduIdentNumOutlets = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 2, 1, 4), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduIdentNumOutlets.setStatus('current') tlpPduIdentNumOutletGroups = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 2, 1, 5), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduIdentNumOutletGroups.setStatus('current') tlpPduIdentNumCircuits = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 2, 1, 6), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduIdentNumCircuits.setStatus('current') tlpPduIdentNumBreakers = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 2, 1, 7), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduIdentNumBreakers.setStatus('current') tlpPduIdentNumHeatsinks = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 2, 1, 8), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduIdentNumHeatsinks.setStatus('current') tlpPduSupportsTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 3), ) if mibBuilder.loadTexts: tlpPduSupportsTable.setStatus('current') tlpPduSupportsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 3, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex")) if mibBuilder.loadTexts: tlpPduSupportsEntry.setStatus('current') tlpPduSupportsEnergywise = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 3, 1, 1), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduSupportsEnergywise.setStatus('current') tlpPduSupportsRampShed = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 3, 1, 2), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduSupportsRampShed.setStatus('current') tlpPduSupportsOutletGroup = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 3, 1, 3), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduSupportsOutletGroup.setStatus('current') tlpPduSupportsOutletCurrentPower = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 3, 1, 4), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduSupportsOutletCurrentPower.setStatus('current') tlpPduSupportsOutletVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 3, 1, 5), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduSupportsOutletVoltage.setStatus('current') tlpPduDisplayTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 4), ) if mibBuilder.loadTexts: tlpPduDisplayTable.setStatus('current') tlpPduDisplayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 4, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex")) if mibBuilder.loadTexts: tlpPduDisplayEntry.setStatus('current') tlpPduDisplayScheme = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 4, 1, 1), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("schemeReverse", 0), ("schemeNormal", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpPduDisplayScheme.setStatus('current') tlpPduDisplayOrientation = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 4, 1, 2), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("displayNormal", 0), ("displayReverse", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpPduDisplayOrientation.setStatus('current') tlpPduDisplayAutoScroll = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 4, 1, 3), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("scrollDisabled", 0), ("scrollEnabled", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpPduDisplayAutoScroll.setStatus('current') tlpPduDisplayIntensity = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 4, 1, 4), Integer32().subtype(subtypeSpec=SingleValueConstraint(1, 2, 3, 4)).clone(namedValues=NamedValues(("intensity25", 1), ("intensity50", 2), ("intensity75", 3), ("intensity100", 4)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpPduDisplayIntensity.setStatus('current') tlpPduDisplayUnits = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 4, 1, 5), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("normal", 0), ("metric", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpPduDisplayUnits.setStatus('current') tlpPduDeviceTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 2, 1), ) if mibBuilder.loadTexts: tlpPduDeviceTable.setStatus('current') tlpPduDeviceEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 2, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex")) if mibBuilder.loadTexts: tlpPduDeviceEntry.setStatus('current') tlpPduDeviceMainLoadState = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 2, 1, 1, 1), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1, 2)).clone(namedValues=NamedValues(("unknown", 0), ("off", 1), ("on", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduDeviceMainLoadState.setStatus('current') tlpPduDeviceMainLoadControllable = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 2, 1, 1, 2), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduDeviceMainLoadControllable.setStatus('current') tlpPduDeviceMainLoadCommand = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 2, 1, 1, 3), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1, 2, 3)).clone(namedValues=NamedValues(("idle", 0), ("turnOff", 1), ("turnOn", 2), ("cycle", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpPduDeviceMainLoadCommand.setStatus('current') tlpPduDevicePowerOnDelay = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 2, 1, 1, 4), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpPduDevicePowerOnDelay.setStatus('current') tlpPduDeviceTotalInputPowerRating = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 2, 1, 1, 5), Integer32()).setUnits('Watts').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduDeviceTotalInputPowerRating.setStatus('current') tlpPduDeviceTemperatureC = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 2, 1, 1, 6), Integer32()).setUnits('degrees Centigrade').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduDeviceTemperatureC.setStatus('current') tlpPduDeviceTemperatureF = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 2, 1, 1, 7), Integer32()).setUnits('degrees Farenheit').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduDeviceTemperatureF.setStatus('current') tlpPduDevicePhaseImbalance = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 2, 1, 1, 8), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 200))).setUnits('percent').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduDevicePhaseImbalance.setStatus('current') tlpPduDeviceOutputPowerTotal = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 2, 1, 1, 9), Unsigned32()).setUnits('Watts').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduDeviceOutputPowerTotal.setStatus('current') tlpPduDeviceAggregatePowerFactor = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 2, 1, 1, 10), Unsigned32()).setUnits('0.1 Watts').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduDeviceAggregatePowerFactor.setStatus('current') tlpPduDeviceOutputCurrentPrecision = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 2, 1, 1, 11), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1, 2)).clone(namedValues=NamedValues(("none", 0), ("tenths", 1), ("hundredths", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduDeviceOutputCurrentPrecision.setStatus('current') tlpPduInputTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 1), ) if mibBuilder.loadTexts: tlpPduInputTable.setStatus('current') tlpPduInputEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex")) if mibBuilder.loadTexts: tlpPduInputEntry.setStatus('current') tlpPduInputNominalVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 1, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduInputNominalVoltage.setStatus('current') tlpPduInputNominalVoltagePhaseToPhase = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 1, 1, 2), Unsigned32()).setUnits('0.1 Volt DC').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduInputNominalVoltagePhaseToPhase.setStatus('current') tlpPduInputNominalVoltagePhaseToNeutral = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 1, 1, 3), Unsigned32()).setUnits('0.1 Volt DC').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduInputNominalVoltagePhaseToNeutral.setStatus('current') tlpPduInputLowTransferVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 1, 1, 4), Unsigned32()).setUnits('0.1 Volts').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduInputLowTransferVoltage.setStatus('current') tlpPduInputLowTransferVoltageLowerBound = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 1, 1, 5), Unsigned32()).setUnits('Volts').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduInputLowTransferVoltageLowerBound.setStatus('current') tlpPduInputLowTransferVoltageUpperBound = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 1, 1, 6), Unsigned32()).setUnits('Volts').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduInputLowTransferVoltageUpperBound.setStatus('current') tlpPduInputHighTransferVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 1, 1, 7), Unsigned32()).setUnits('0.1 Volts').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduInputHighTransferVoltage.setStatus('current') tlpPduInputHighTransferVoltageLowerBound = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 1, 1, 8), Unsigned32()).setUnits('Volts').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduInputHighTransferVoltageLowerBound.setStatus('current') tlpPduInputHighTransferVoltageUpperBound = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 1, 1, 9), Unsigned32()).setUnits('Volts').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduInputHighTransferVoltageUpperBound.setStatus('current') tlpPduInputCurrentLimit = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 1, 1, 10), Unsigned32()).setUnits('Amp DC').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduInputCurrentLimit.setStatus('current') tlpPduInputPhaseTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 2), ) if mibBuilder.loadTexts: tlpPduInputPhaseTable.setStatus('current') tlpPduInputPhaseEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 2, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"), (0, "TRIPPLITE-PRODUCTS", "tlpPduInputPhaseIndex")) if mibBuilder.loadTexts: tlpPduInputPhaseEntry.setStatus('current') tlpPduInputPhaseIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 2, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduInputPhaseIndex.setStatus('current') tlpPduInputPhasePhaseType = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 2, 1, 2), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("phaseToNeutral", 0), ("phaseToPhase", 1)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduInputPhasePhaseType.setStatus('current') tlpPduInputPhaseFrequency = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 2, 1, 3), Unsigned32()).setUnits('0.1 Hertz').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduInputPhaseFrequency.setStatus('current') tlpPduInputPhaseVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 2, 1, 4), Unsigned32()).setUnits('0.1 Volt DC').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduInputPhaseVoltage.setStatus('current') tlpPduInputPhaseVoltageMin = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 2, 1, 5), Unsigned32()).setUnits('0.1 Volt DC').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpPduInputPhaseVoltageMin.setStatus('current') tlpPduInputPhaseVoltageMax = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 2, 1, 6), Unsigned32()).setUnits('0.1 Volt DC').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpPduInputPhaseVoltageMax.setStatus('current') tlpPduInputPhaseCurrent = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 2, 1, 7), Unsigned32()).setUnits('0.01 Amp DC').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduInputPhaseCurrent.setStatus('current') tlpPduOutputTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 2, 1), ) if mibBuilder.loadTexts: tlpPduOutputTable.setStatus('current') tlpPduOutputEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 2, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"), (0, "TRIPPLITE-PRODUCTS", "tlpPduOutputIndex")) if mibBuilder.loadTexts: tlpPduOutputEntry.setStatus('current') tlpPduOutputIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 2, 1, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduOutputIndex.setStatus('current') tlpPduOutputPhase = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 2, 1, 1, 2), Integer32().subtype(subtypeSpec=SingleValueConstraint(1, 2, 3)).clone(namedValues=NamedValues(("phase1", 1), ("phase2", 2), ("phase3", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduOutputPhase.setStatus('current') tlpPduOutputPhaseType = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 2, 1, 1, 3), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("phaseToNeutral", 0), ("phaseToPhase", 1)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduOutputPhaseType.setStatus('current') tlpPduOutputVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 2, 1, 1, 4), Unsigned32()).setUnits('0.1 Volt DC').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduOutputVoltage.setStatus('current') tlpPduOutputCurrent = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 2, 1, 1, 5), Unsigned32()).setUnits('0.01 Amp DC').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduOutputCurrent.setStatus('current') tlpPduOutputCurrentMin = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 2, 1, 1, 6), Unsigned32()).setUnits('0.01 Amp DC').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduOutputCurrentMin.setStatus('current') tlpPduOutputCurrentMax = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 2, 1, 1, 7), Unsigned32()).setUnits('0.01 Amp DC').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduOutputCurrentMax.setStatus('current') tlpPduOutputActivePower = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 2, 1, 1, 8), Unsigned32()).setUnits('Watts').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduOutputActivePower.setStatus('current') tlpPduOutputPowerFactor = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 2, 1, 1, 9), Unsigned32()).setUnits('0.01 percent').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduOutputPowerFactor.setStatus('current') tlpPduOutputSource = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 2, 1, 1, 10), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("none", 0), ("normal", 1)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduOutputSource.setStatus('current') tlpPduOutletTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1), ) if mibBuilder.loadTexts: tlpPduOutletTable.setStatus('current') tlpPduOutletEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"), (0, "TRIPPLITE-PRODUCTS", "tlpPduOutletIndex")) if mibBuilder.loadTexts: tlpPduOutletEntry.setStatus('current') tlpPduOutletIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduOutletIndex.setStatus('current') tlpPduOutletName = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 2), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpPduOutletName.setStatus('current') tlpPduOutletDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 3), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpPduOutletDescription.setStatus('current') tlpPduOutletState = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 4), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1, 2)).clone(namedValues=NamedValues(("unknown", 0), ("off", 1), ("on", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduOutletState.setStatus('current') tlpPduOutletControllable = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 5), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduOutletControllable.setStatus('current') tlpPduOutletCommand = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 6), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1, 2, 3)).clone(namedValues=NamedValues(("idle", 0), ("turnOff", 1), ("turnOn", 2), ("cycle", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpPduOutletCommand.setStatus('current') tlpPduOutletVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 7), Unsigned32()).setUnits('0.1 Volt DC').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduOutletVoltage.setStatus('current') tlpPduOutletCurrent = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 8), Unsigned32()).setUnits('0.01 RMS Amp').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduOutletCurrent.setStatus('current') tlpPduOutletPower = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 9), Unsigned32()).setUnits('Watts').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduOutletPower.setStatus('current') tlpPduOutletRampAction = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 10), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("remainOff", 0), ("turnOnAfterDelay", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpPduOutletRampAction.setStatus('current') tlpPduOutletRampDelay = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 11), Integer32()).setUnits('seconds').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpPduOutletRampDelay.setStatus('current') tlpPduOutletShedAction = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 12), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("remainOn", 0), ("turnOffAfterDelay", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpPduOutletShedAction.setStatus('current') tlpPduOutletShedDelay = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 13), Integer32()).setUnits('seconds').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpPduOutletShedDelay.setStatus('current') tlpPduOutletGroup = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 14), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpPduOutletGroup.setStatus('current') tlpPduOutletBank = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 15), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduOutletBank.setStatus('current') tlpPduOutletCircuit = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 16), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduOutletCircuit.setStatus('current') tlpPduOutletPhase = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 17), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1, 2, 3, 4, 5, 6)).clone(namedValues=NamedValues(("unknown", 0), ("phase1", 1), ("phase2", 2), ("phase3", 3), ("phase1-2", 4), ("phase2-3", 5), ("phase3-1", 6)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduOutletPhase.setStatus('current') tlpPduOutletGroupTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 2), ) if mibBuilder.loadTexts: tlpPduOutletGroupTable.setStatus('current') tlpPduOutletGroupEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 2, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"), (0, "TRIPPLITE-PRODUCTS", "tlpPduOutletGroupIndex")) if mibBuilder.loadTexts: tlpPduOutletGroupEntry.setStatus('current') tlpPduOutletGroupIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 2, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduOutletGroupIndex.setStatus('current') tlpPduOutletGroupRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 2, 1, 2), RowStatus()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpPduOutletGroupRowStatus.setStatus('current') tlpPduOutletGroupName = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 2, 1, 3), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpPduOutletGroupName.setStatus('current') tlpPduOutletGroupDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 2, 1, 4), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpPduOutletGroupDescription.setStatus('current') tlpPduOutletGroupState = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 2, 1, 5), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1, 2, 3)).clone(namedValues=NamedValues(("unknown", 0), ("off", 1), ("on", 2), ("mixed", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduOutletGroupState.setStatus('current') tlpPduOutletGroupCommand = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 2, 1, 6), Integer32().subtype(subtypeSpec=SingleValueConstraint(1, 2, 3)).clone(namedValues=NamedValues(("turnOff", 1), ("turnOn", 2), ("cycle", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpPduOutletGroupCommand.setStatus('current') tlpPduCircuitTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 4, 1), ) if mibBuilder.loadTexts: tlpPduCircuitTable.setStatus('current') tlpPduCircuitEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 4, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"), (0, "TRIPPLITE-PRODUCTS", "tlpPduCircuitIndex")) if mibBuilder.loadTexts: tlpPduCircuitEntry.setStatus('current') tlpPduCircuitIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 4, 1, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduCircuitIndex.setStatus('current') tlpPduCircuitPhase = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 4, 1, 1, 2), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1, 2, 3, 4, 5, 6)).clone(namedValues=NamedValues(("unknown", 0), ("phase1", 1), ("phase2", 2), ("phase3", 3), ("phase1-2", 4), ("phase2-3", 5), ("phase3-1", 6)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduCircuitPhase.setStatus('current') tlpPduCircuitInputVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 4, 1, 1, 3), Integer32()).setUnits('0.1 Volt DC').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduCircuitInputVoltage.setStatus('current') tlpPduCircuitTotalCurrent = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 4, 1, 1, 4), Integer32()).setUnits('0.01 Amp DC').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduCircuitTotalCurrent.setStatus('current') tlpPduCircuitCurrentLimit = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 4, 1, 1, 5), Integer32()).setUnits('0.01 Amp DC').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduCircuitCurrentLimit.setStatus('current') tlpPduCircuitCurrentMin = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 4, 1, 1, 6), Integer32()).setUnits('0.01 Amp DC').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduCircuitCurrentMin.setStatus('current') tlpPduCircuitCurrentMax = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 4, 1, 1, 7), Integer32()).setUnits('0.01 Amp DC').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduCircuitCurrentMax.setStatus('current') tlpPduCircuitTotalPower = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 4, 1, 1, 8), Integer32()).setUnits('Watts').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduCircuitTotalPower.setStatus('current') tlpPduCircuitPowerFactor = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 4, 1, 1, 9), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 200))).setUnits('percent').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduCircuitPowerFactor.setStatus('current') tlpPduCircuitUtilization = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 4, 1, 1, 10), Unsigned32()).setUnits('0.01 %').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduCircuitUtilization.setStatus('current') tlpPduBreakerTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 5, 1), ) if mibBuilder.loadTexts: tlpPduBreakerTable.setStatus('current') tlpPduBreakerEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 5, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"), (0, "TRIPPLITE-PRODUCTS", "tlpPduBreakerIndex")) if mibBuilder.loadTexts: tlpPduBreakerEntry.setStatus('current') tlpPduBreakerIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 5, 1, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduBreakerIndex.setStatus('current') tlpPduBreakerStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 5, 1, 1, 2), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1, 2)).clone(namedValues=NamedValues(("open", 0), ("closed", 1), ("notInstalled", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduBreakerStatus.setStatus('current') tlpPduHeatsinkTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 6, 1), ) if mibBuilder.loadTexts: tlpPduHeatsinkTable.setStatus('current') tlpPduHeatsinkEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 6, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"), (0, "TRIPPLITE-PRODUCTS", "tlpPduHeatsinkIndex")) if mibBuilder.loadTexts: tlpPduHeatsinkEntry.setStatus('current') tlpPduHeatsinkIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 6, 1, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduHeatsinkIndex.setStatus('current') tlpPduHeatsinkStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 6, 1, 1, 2), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("notAvailable", 0), ("available", 1)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduHeatsinkStatus.setStatus('current') tlpPduHeatsinkTemperatureC = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 6, 1, 1, 3), Integer32()).setUnits('0.1 degrees Centigrade').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduHeatsinkTemperatureC.setStatus('current') tlpPduHeatsinkTemperatureF = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 6, 1, 1, 4), Integer32()).setUnits('0.1 degrees Farenheit').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduHeatsinkTemperatureF.setStatus('current') tlpPduControlTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 4, 1), ) if mibBuilder.loadTexts: tlpPduControlTable.setStatus('current') tlpPduControlEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 4, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex")) if mibBuilder.loadTexts: tlpPduControlEntry.setStatus('current') tlpPduControlRamp = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 4, 1, 1, 1), TruthValue()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpPduControlRamp.setStatus('current') tlpPduControlShed = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 4, 1, 1, 2), TruthValue()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpPduControlShed.setStatus('current') tlpPduControlPduOn = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 4, 1, 1, 3), TruthValue()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpPduControlPduOn.setStatus('current') tlpPduControlPduOff = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 4, 1, 1, 4), TruthValue()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpPduControlPduOff.setStatus('current') tlpPduControlPduReboot = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 4, 1, 1, 5), TruthValue()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpPduControlPduReboot.setStatus('current') tlpPduConfigTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 5, 1), ) if mibBuilder.loadTexts: tlpPduConfigTable.setStatus('current') tlpPduConfigEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 5, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex")) if mibBuilder.loadTexts: tlpPduConfigEntry.setStatus('current') tlpPduConfigInputVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 5, 1, 1, 1), Unsigned32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpPduConfigInputVoltage.setStatus('current') tlpEnvIdentNumEnvirosense = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpEnvIdentNumEnvirosense.setStatus('current') tlpEnvIdentTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 1, 2), ) if mibBuilder.loadTexts: tlpEnvIdentTable.setStatus('current') tlpEnvIdentEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 1, 2, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex")) if mibBuilder.loadTexts: tlpEnvIdentEntry.setStatus('current') tlpEnvIdentTempSupported = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 1, 2, 1, 1), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpEnvIdentTempSupported.setStatus('current') tlpEnvIdentHumiditySupported = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 1, 2, 1, 2), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpEnvIdentHumiditySupported.setStatus('current') tlpEnvNumInputContacts = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 1, 2, 1, 3), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpEnvNumInputContacts.setStatus('current') tlpEnvNumOutputContacts = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 1, 2, 1, 4), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpEnvNumOutputContacts.setStatus('current') tlpEnvTemperatureTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 1), ) if mibBuilder.loadTexts: tlpEnvTemperatureTable.setStatus('current') tlpEnvTemperatureEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex")) if mibBuilder.loadTexts: tlpEnvTemperatureEntry.setStatus('current') tlpEnvTemperatureC = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 1, 1, 1), Integer32()).setUnits('degrees Centigrade').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpEnvTemperatureC.setStatus('current') tlpEnvTemperatureF = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 1, 1, 2), Integer32()).setUnits('0.1 degrees Farenheit').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpEnvTemperatureF.setStatus('current') tlpEnvTemperatureInAlarm = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 1, 1, 3), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpEnvTemperatureInAlarm.setStatus('current') tlpEnvHumidityTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 2), ) if mibBuilder.loadTexts: tlpEnvHumidityTable.setStatus('current') tlpEnvHumidityEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 2, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex")) if mibBuilder.loadTexts: tlpEnvHumidityEntry.setStatus('current') tlpEnvHumidityHumidity = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setUnits('percent').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpEnvHumidityHumidity.setStatus('current') tlpEnvHumidityInAlarm = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 2, 1, 2), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpEnvHumidityInAlarm.setStatus('current') tlpEnvInputContactTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 3), ) if mibBuilder.loadTexts: tlpEnvInputContactTable.setStatus('current') tlpEnvInputContactEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 3, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"), (0, "TRIPPLITE-PRODUCTS", "tlpEnvInputContactIndex")) if mibBuilder.loadTexts: tlpEnvInputContactEntry.setStatus('current') tlpEnvInputContactIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 3, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpEnvInputContactIndex.setStatus('current') tlpEnvInputContactName = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 3, 1, 2), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpEnvInputContactName.setStatus('current') tlpEnvInputContactNormalState = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 3, 1, 3), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("open", 0), ("closed", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpEnvInputContactNormalState.setStatus('current') tlpEnvInputContactCurrentState = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 3, 1, 4), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("open", 0), ("closed", 1)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpEnvInputContactCurrentState.setStatus('current') tlpEnvInputContactInAlarm = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 3, 1, 5), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpEnvInputContactInAlarm.setStatus('current') tlpEnvOutputContactTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 4), ) if mibBuilder.loadTexts: tlpEnvOutputContactTable.setStatus('current') tlpEnvOutputContactEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 4, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"), (0, "TRIPPLITE-PRODUCTS", "tlpEnvOutputContactIndex")) if mibBuilder.loadTexts: tlpEnvOutputContactEntry.setStatus('current') tlpEnvOutputContactIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 4, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpEnvOutputContactIndex.setStatus('current') tlpEnvOutputContactName = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 4, 1, 2), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpEnvOutputContactName.setStatus('current') tlpEnvOutputContactNormalState = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 4, 1, 3), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("open", 0), ("closed", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpEnvOutputContactNormalState.setStatus('current') tlpEnvOutputContactCurrentState = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 4, 1, 4), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("open", 0), ("closed", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpEnvOutputContactCurrentState.setStatus('current') tlpEnvOutputContactInAlarm = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 4, 1, 5), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpEnvOutputContactInAlarm.setStatus('current') tlpEnvConfigTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 5, 1), ) if mibBuilder.loadTexts: tlpEnvConfigTable.setStatus('current') tlpEnvConfigEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 5, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex")) if mibBuilder.loadTexts: tlpEnvConfigEntry.setStatus('current') tlpEnvTemperatureLowLimit = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 5, 1, 1, 1), Integer32()).setUnits('degrees Farenheit').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpEnvTemperatureLowLimit.setStatus('current') tlpEnvTemperatureHighLimit = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 5, 1, 1, 2), Integer32()).setUnits('degrees Farenheit').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpEnvTemperatureHighLimit.setStatus('current') tlpEnvHumidityLowLimit = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 5, 1, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setUnits('percent').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpEnvHumidityLowLimit.setStatus('current') tlpEnvHumidityHighLimit = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 5, 1, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setUnits('percent').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpEnvHumidityHighLimit.setStatus('current') tlpAtsIdentNumAts = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsIdentNumAts.setStatus('current') tlpAtsIdentTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 2), ) if mibBuilder.loadTexts: tlpAtsIdentTable.setStatus('current') tlpAtsIdentEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 2, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex")) if mibBuilder.loadTexts: tlpAtsIdentEntry.setStatus('current') tlpAtsIdentNumInputs = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 2, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsIdentNumInputs.setStatus('current') tlpAtsIdentNumOutputs = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 2, 1, 2), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsIdentNumOutputs.setStatus('current') tlpAtsIdentNumPhases = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 2, 1, 3), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsIdentNumPhases.setStatus('current') tlpAtsIdentNumOutlets = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 2, 1, 4), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsIdentNumOutlets.setStatus('current') tlpAtsIdentNumOutletGroups = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 2, 1, 5), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsIdentNumOutletGroups.setStatus('current') tlpAtsIdentNumCircuits = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 2, 1, 6), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsIdentNumCircuits.setStatus('current') tlpAtsIdentNumBreakers = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 2, 1, 7), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsIdentNumBreakers.setStatus('current') tlpAtsIdentNumHeatsinks = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 2, 1, 8), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsIdentNumHeatsinks.setStatus('current') tlpAtsSupportsTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 3), ) if mibBuilder.loadTexts: tlpAtsSupportsTable.setStatus('current') tlpAtsSupportsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 3, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex")) if mibBuilder.loadTexts: tlpAtsSupportsEntry.setStatus('current') tlpAtsSupportsEnergywise = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 3, 1, 1), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsSupportsEnergywise.setStatus('current') tlpAtsSupportsRampShed = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 3, 1, 2), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsSupportsRampShed.setStatus('current') tlpAtsSupportsOutletGroup = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 3, 1, 3), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsSupportsOutletGroup.setStatus('current') tlpAtsSupportsOutletCurrentPower = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 3, 1, 4), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsSupportsOutletCurrentPower.setStatus('current') tlpAtsSupportsOutletVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 3, 1, 5), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsSupportsOutletVoltage.setStatus('current') tlpAtsDisplayTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 4), ) if mibBuilder.loadTexts: tlpAtsDisplayTable.setStatus('current') tlpAtsDisplayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 4, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex")) if mibBuilder.loadTexts: tlpAtsDisplayEntry.setStatus('current') tlpAtsDisplayScheme = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 4, 1, 1), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("schemeReverse", 0), ("schemeNormal", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsDisplayScheme.setStatus('current') tlpAtsDisplayOrientation = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 4, 1, 2), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("displayNormal", 0), ("displayReverse", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsDisplayOrientation.setStatus('current') tlpAtsDisplayAutoScroll = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 4, 1, 3), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("scrollDisabled", 0), ("scrollEnabled", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsDisplayAutoScroll.setStatus('current') tlpAtsDisplayIntensity = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 4, 1, 4), Integer32().subtype(subtypeSpec=SingleValueConstraint(1, 2, 3, 4)).clone(namedValues=NamedValues(("intensity25", 1), ("intensity50", 2), ("intensity75", 3), ("intensity100", 4)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsDisplayIntensity.setStatus('current') tlpAtsDisplayUnits = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 4, 1, 5), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("normal", 0), ("metric", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsDisplayUnits.setStatus('current') tlpAtsDeviceTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 2, 1), ) if mibBuilder.loadTexts: tlpAtsDeviceTable.setStatus('current') tlpAtsDeviceEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 2, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex")) if mibBuilder.loadTexts: tlpAtsDeviceEntry.setStatus('current') tlpAtsDeviceMainLoadState = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 2, 1, 1, 1), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1, 2)).clone(namedValues=NamedValues(("unknown", 0), ("off", 1), ("on", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsDeviceMainLoadState.setStatus('current') tlpAtsDeviceMainLoadControllable = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 2, 1, 1, 2), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsDeviceMainLoadControllable.setStatus('current') tlpAtsDeviceMainLoadCommand = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 2, 1, 1, 3), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1, 2, 3)).clone(namedValues=NamedValues(("idle", 0), ("turnOff", 1), ("turnOn", 2), ("cycle", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsDeviceMainLoadCommand.setStatus('current') tlpAtsDevicePowerOnDelay = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 2, 1, 1, 4), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsDevicePowerOnDelay.setStatus('current') tlpAtsDeviceTotalInputPowerRating = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 2, 1, 1, 5), Integer32()).setUnits('Watts').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsDeviceTotalInputPowerRating.setStatus('current') tlpAtsDeviceTemperatureC = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 2, 1, 1, 6), Integer32()).setUnits('degrees Centigrade').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsDeviceTemperatureC.setStatus('current') tlpAtsDeviceTemperatureF = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 2, 1, 1, 7), Integer32()).setUnits('degrees Farenheit').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsDeviceTemperatureF.setStatus('current') tlpAtsDevicePhaseImbalance = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 2, 1, 1, 8), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 200))).setUnits('percent').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsDevicePhaseImbalance.setStatus('current') tlpAtsDeviceOutputPowerTotal = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 2, 1, 1, 9), Unsigned32()).setUnits('Watts').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsDeviceOutputPowerTotal.setStatus('current') tlpAtsDeviceAggregatePowerFactor = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 2, 1, 1, 10), Unsigned32()).setUnits('0.1 Watts').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsDeviceAggregatePowerFactor.setStatus('current') tlpAtsDeviceOutputCurrentPrecision = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 2, 1, 1, 11), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1, 2)).clone(namedValues=NamedValues(("none", 0), ("tenths", 1), ("hundredths", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsDeviceOutputCurrentPrecision.setStatus('current') tlpAtsDeviceGeneralFault = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 2, 1, 1, 12), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsDeviceGeneralFault.setStatus('current') tlpAtsInputTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1), ) if mibBuilder.loadTexts: tlpAtsInputTable.setStatus('current') tlpAtsInputEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex")) if mibBuilder.loadTexts: tlpAtsInputEntry.setStatus('current') tlpAtsInputNominalVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsInputNominalVoltage.setStatus('current') tlpAtsInputNominalVoltagePhaseToPhase = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1, 1, 2), Unsigned32()).setUnits('0.1 Volt DC').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsInputNominalVoltagePhaseToPhase.setStatus('current') tlpAtsInputNominalVoltagePhaseToNeutral = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1, 1, 3), Unsigned32()).setUnits('0.1 Volt DC').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsInputNominalVoltagePhaseToNeutral.setStatus('current') tlpAtsInputBadTransferVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1, 1, 4), Unsigned32()).setUnits('0.1 Volts').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsInputBadTransferVoltage.setStatus('current') tlpAtsInputBadTransferVoltageLowerBound = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1, 1, 5), Unsigned32()).setUnits('Volts').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsInputBadTransferVoltageLowerBound.setStatus('current') tlpAtsInputBadTransferVoltageUpperBound = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1, 1, 6), Unsigned32()).setUnits('Volts').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsInputBadTransferVoltageUpperBound.setStatus('current') tlpAtsInputHighTransferVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1, 1, 7), Unsigned32()).setUnits('0.1 Volts').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsInputHighTransferVoltage.setStatus('current') tlpAtsInputHighTransferVoltageLowerBound = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1, 1, 8), Unsigned32()).setUnits('Volts').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsInputHighTransferVoltageLowerBound.setStatus('current') tlpAtsInputHighTransferVoltageUpperBound = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1, 1, 9), Unsigned32()).setUnits('Volts').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsInputHighTransferVoltageUpperBound.setStatus('current') tlpAtsInputFairVoltageThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1, 1, 10), Unsigned32()).setUnits('Volts').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsInputFairVoltageThreshold.setStatus('current') tlpAtsInputBadVoltageThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1, 1, 11), Unsigned32()).setUnits('Volts').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsInputBadVoltageThreshold.setStatus('current') tlpAtsInputSourceAvailability = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1, 1, 12), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1, 2, 3)).clone(namedValues=NamedValues(("none", 0), ("inputSourceA", 1), ("inputSourceB", 2), ("inputSourceAB", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsInputSourceAvailability.setStatus('current') tlpAtsInputSourceInUse = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1, 1, 13), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("inputSourceA", 0), ("inputSourceB", 1)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsInputSourceInUse.setStatus('current') tlpAtsInputSourceTransitionCount = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1, 1, 14), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsInputSourceTransitionCount.setStatus('current') tlpAtsInputCurrentLimit = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1, 1, 15), Unsigned32()).setUnits('Amp DC').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsInputCurrentLimit.setStatus('current') tlpAtsInputPhaseTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 2), ) if mibBuilder.loadTexts: tlpAtsInputPhaseTable.setStatus('current') tlpAtsInputPhaseEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 2, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"), (0, "TRIPPLITE-PRODUCTS", "tlpAtsInputLineIndex"), (0, "TRIPPLITE-PRODUCTS", "tlpAtsInputPhaseIndex")) if mibBuilder.loadTexts: tlpAtsInputPhaseEntry.setStatus('current') tlpAtsInputLineIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 2, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsInputLineIndex.setStatus('current') tlpAtsInputPhaseIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 2, 1, 2), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsInputPhaseIndex.setStatus('current') tlpAtsInputPhaseType = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 2, 1, 3), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("phaseToNeutral", 0), ("phaseToPhase", 1)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsInputPhaseType.setStatus('current') tlpAtsInputPhaseFrequency = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 2, 1, 4), Unsigned32()).setUnits('0.1 Hertz').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsInputPhaseFrequency.setStatus('current') tlpAtsInputPhaseVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 2, 1, 5), Unsigned32()).setUnits('0.1 Volt DC').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsInputPhaseVoltage.setStatus('current') tlpAtsInputPhaseVoltageMin = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 2, 1, 6), Unsigned32()).setUnits('0.1 Volt DC').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsInputPhaseVoltageMin.setStatus('current') tlpAtsInputPhaseVoltageMax = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 2, 1, 7), Unsigned32()).setUnits('0.1 Volt DC').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsInputPhaseVoltageMax.setStatus('current') tlpAtsInputPhaseCurrent = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 2, 1, 8), Unsigned32()).setUnits('0.01 Amp DC').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsInputPhaseCurrent.setStatus('current') tlpAtsOutputTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 2, 1), ) if mibBuilder.loadTexts: tlpAtsOutputTable.setStatus('current') tlpAtsOutputEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 2, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"), (0, "TRIPPLITE-PRODUCTS", "tlpAtsOutputIndex")) if mibBuilder.loadTexts: tlpAtsOutputEntry.setStatus('current') tlpAtsOutputIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 2, 1, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsOutputIndex.setStatus('current') tlpAtsOutputPhase = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 2, 1, 1, 2), Integer32().subtype(subtypeSpec=SingleValueConstraint(1, 2, 3)).clone(namedValues=NamedValues(("phase1", 1), ("phase2", 2), ("phase3", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsOutputPhase.setStatus('current') tlpAtsOutputPhaseType = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 2, 1, 1, 3), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("phaseToNeutral", 0), ("phaseToPhase", 1)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsOutputPhaseType.setStatus('current') tlpAtsOutputVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 2, 1, 1, 4), Unsigned32()).setUnits('0.1 Volt DC').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsOutputVoltage.setStatus('current') tlpAtsOutputCurrent = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 2, 1, 1, 5), Unsigned32()).setUnits('0.01 Amp DC').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsOutputCurrent.setStatus('current') tlpAtsOutputCurrentMin = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 2, 1, 1, 6), Unsigned32()).setUnits('0.01 Amp DC').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsOutputCurrentMin.setStatus('current') tlpAtsOutputCurrentMax = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 2, 1, 1, 7), Unsigned32()).setUnits('0.01 Amp DC').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsOutputCurrentMax.setStatus('current') tlpAtsOutputActivePower = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 2, 1, 1, 8), Unsigned32()).setUnits('Watts').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsOutputActivePower.setStatus('current') tlpAtsOutputPowerFactor = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 2, 1, 1, 9), Unsigned32()).setUnits('0.01 percent').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsOutputPowerFactor.setStatus('current') tlpAtsOutputSource = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 2, 1, 1, 10), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("none", 0), ("normal", 1)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsOutputSource.setStatus('current') tlpAtsOutletTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1), ) if mibBuilder.loadTexts: tlpAtsOutletTable.setStatus('current') tlpAtsOutletEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"), (0, "TRIPPLITE-PRODUCTS", "tlpAtsOutletIndex")) if mibBuilder.loadTexts: tlpAtsOutletEntry.setStatus('current') tlpAtsOutletIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsOutletIndex.setStatus('current') tlpAtsOutletName = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 2), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsOutletName.setStatus('current') tlpAtsOutletDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 3), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsOutletDescription.setStatus('current') tlpAtsOutletState = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 4), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1, 2)).clone(namedValues=NamedValues(("unknown", 0), ("off", 1), ("on", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsOutletState.setStatus('current') tlpAtsOutletControllable = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 5), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsOutletControllable.setStatus('current') tlpAtsOutletCommand = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 6), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1, 2, 3)).clone(namedValues=NamedValues(("idle", 0), ("turnOff", 1), ("turnOn", 2), ("cycle", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsOutletCommand.setStatus('current') tlpAtsOutletVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 7), Unsigned32()).setUnits('0.1 Volt DC').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsOutletVoltage.setStatus('current') tlpAtsOutletCurrent = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 8), Unsigned32()).setUnits('0.01 RMS Amp').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsOutletCurrent.setStatus('current') tlpAtsOutletPower = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 9), Unsigned32()).setUnits('Watts').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsOutletPower.setStatus('current') tlpAtsOutletRampAction = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 10), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("remainOff", 0), ("turnOnAfterDelay", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsOutletRampAction.setStatus('current') tlpAtsOutletRampDelay = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 11), Integer32()).setUnits('seconds').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsOutletRampDelay.setStatus('current') tlpAtsOutletShedAction = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 12), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("remainOn", 0), ("turnOffAfterDelay", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsOutletShedAction.setStatus('current') tlpAtsOutletShedDelay = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 13), Integer32()).setUnits('seconds').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsOutletShedDelay.setStatus('current') tlpAtsOutletGroup = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 14), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsOutletGroup.setStatus('current') tlpAtsOutletBank = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 15), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsOutletBank.setStatus('current') tlpAtsOutletCircuit = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 16), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsOutletCircuit.setStatus('current') tlpAtsOutletPhase = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 17), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1, 2, 3, 4, 5, 6)).clone(namedValues=NamedValues(("unknown", 0), ("phase1", 1), ("phase2", 2), ("phase3", 3), ("phase1-2", 4), ("phase2-3", 5), ("phase3-1", 6)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsOutletPhase.setStatus('current') tlpAtsOutletGroupTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 2), ) if mibBuilder.loadTexts: tlpAtsOutletGroupTable.setStatus('current') tlpAtsOutletGroupEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 2, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"), (0, "TRIPPLITE-PRODUCTS", "tlpAtsOutletGroupIndex")) if mibBuilder.loadTexts: tlpAtsOutletGroupEntry.setStatus('current') tlpAtsOutletGroupIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 2, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsOutletGroupIndex.setStatus('current') tlpAtsOutletGroupRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 2, 1, 2), RowStatus()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsOutletGroupRowStatus.setStatus('current') tlpAtsOutletGroupName = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 2, 1, 3), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsOutletGroupName.setStatus('current') tlpAtsOutletGroupDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 2, 1, 4), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsOutletGroupDescription.setStatus('current') tlpAtsOutletGroupState = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 2, 1, 5), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1, 2, 3)).clone(namedValues=NamedValues(("unknown", 0), ("off", 1), ("on", 2), ("mixed", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsOutletGroupState.setStatus('current') tlpAtsOutletGroupCommand = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 2, 1, 6), Integer32().subtype(subtypeSpec=SingleValueConstraint(1, 2, 3)).clone(namedValues=NamedValues(("turnOff", 1), ("turnOn", 2), ("cycle", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsOutletGroupCommand.setStatus('current') tlpAtsCircuitTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 4, 1), ) if mibBuilder.loadTexts: tlpAtsCircuitTable.setStatus('current') tlpAtsCircuitEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 4, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"), (0, "TRIPPLITE-PRODUCTS", "tlpAtsCircuitIndex")) if mibBuilder.loadTexts: tlpAtsCircuitEntry.setStatus('current') tlpAtsCircuitIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 4, 1, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsCircuitIndex.setStatus('current') tlpAtsCircuitPhase = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 4, 1, 1, 2), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1, 2, 3, 4, 5, 6)).clone(namedValues=NamedValues(("unknown", 0), ("phase1", 1), ("phase2", 2), ("phase3", 3), ("phase1-2", 4), ("phase2-3", 5), ("phase3-1", 6)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsCircuitPhase.setStatus('current') tlpAtsCircuitInputVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 4, 1, 1, 3), Integer32()).setUnits('0.1 Volt DC').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsCircuitInputVoltage.setStatus('current') tlpAtsCircuitTotalCurrent = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 4, 1, 1, 4), Integer32()).setUnits('0.01 Amp DC').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsCircuitTotalCurrent.setStatus('current') tlpAtsCircuitCurrentLimit = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 4, 1, 1, 5), Integer32()).setUnits('0.01 Amp DC').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsCircuitCurrentLimit.setStatus('current') tlpAtsCircuitCurrentMin = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 4, 1, 1, 6), Integer32()).setUnits('0.01 Amp DC').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsCircuitCurrentMin.setStatus('current') tlpAtsCircuitCurrentMax = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 4, 1, 1, 7), Integer32()).setUnits('0.01 Amp DC').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsCircuitCurrentMax.setStatus('current') tlpAtsCircuitTotalPower = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 4, 1, 1, 8), Integer32()).setUnits('Watts').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsCircuitTotalPower.setStatus('current') tlpAtsCircuitPowerFactor = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 4, 1, 1, 9), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 200))).setUnits('percent').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsCircuitPowerFactor.setStatus('current') tlpAtsCircuitUtilization = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 4, 1, 1, 10), Unsigned32()).setUnits('0.01 %').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsCircuitUtilization.setStatus('current') tlpAtsBreakerTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 5, 1), ) if mibBuilder.loadTexts: tlpAtsBreakerTable.setStatus('current') tlpAtsBreakerEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 5, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"), (0, "TRIPPLITE-PRODUCTS", "tlpAtsBreakerIndex")) if mibBuilder.loadTexts: tlpAtsBreakerEntry.setStatus('current') tlpAtsBreakerIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 5, 1, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsBreakerIndex.setStatus('current') tlpAtsBreakerStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 5, 1, 1, 2), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1, 2)).clone(namedValues=NamedValues(("open", 0), ("closed", 1), ("notInstalled", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsBreakerStatus.setStatus('current') tlpAtsHeatsinkTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 6, 1), ) if mibBuilder.loadTexts: tlpAtsHeatsinkTable.setStatus('current') tlpAtsHeatsinkEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 6, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"), (0, "TRIPPLITE-PRODUCTS", "tlpAtsHeatsinkIndex")) if mibBuilder.loadTexts: tlpAtsHeatsinkEntry.setStatus('current') tlpAtsHeatsinkIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 6, 1, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsHeatsinkIndex.setStatus('current') tlpAtsHeatsinkStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 6, 1, 1, 2), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("notAvailable", 0), ("available", 1)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsHeatsinkStatus.setStatus('current') tlpAtsHeatsinkTemperatureC = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 6, 1, 1, 3), Integer32()).setUnits('0.1 degrees Centigrade').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsHeatsinkTemperatureC.setStatus('current') tlpAtsHeatsinkTemperatureF = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 6, 1, 1, 4), Integer32()).setUnits('0.1 degrees Farenheit').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsHeatsinkTemperatureF.setStatus('current') tlpAtsControlTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 4, 1), ) if mibBuilder.loadTexts: tlpAtsControlTable.setStatus('current') tlpAtsControlEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 4, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex")) if mibBuilder.loadTexts: tlpAtsControlEntry.setStatus('current') tlpAtsControlRamp = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 4, 1, 1, 1), TruthValue()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsControlRamp.setStatus('current') tlpAtsControlShed = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 4, 1, 1, 2), TruthValue()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsControlShed.setStatus('current') tlpAtsControlAtsOn = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 4, 1, 1, 3), TruthValue()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsControlAtsOn.setStatus('current') tlpAtsControlAtsOff = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 4, 1, 1, 4), TruthValue()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsControlAtsOff.setStatus('current') tlpAtsControlAtsReboot = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 4, 1, 1, 5), TruthValue()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsControlAtsReboot.setStatus('current') tlpAtsControlResetGeneralFault = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 4, 1, 1, 6), TruthValue()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsControlResetGeneralFault.setStatus('current') tlpAtsConfigTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 1), ) if mibBuilder.loadTexts: tlpAtsConfigTable.setStatus('current') tlpAtsConfigEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex")) if mibBuilder.loadTexts: tlpAtsConfigEntry.setStatus('current') tlpAtsConfigInputVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 1, 1, 1), Unsigned32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsConfigInputVoltage.setStatus('current') tlpAtsConfigSourceSelect = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 1, 1, 2), Integer32().subtype(subtypeSpec=SingleValueConstraint(1, 2)).clone(namedValues=NamedValues(("inputSourceA", 1), ("inputSourceB", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsConfigSourceSelect.setStatus('current') tlpAtsConfigSource1ReturnTime = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 1, 1, 3), Unsigned32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsConfigSource1ReturnTime.setStatus('current') tlpAtsConfigSource2ReturnTime = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 1, 1, 4), Unsigned32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsConfigSource2ReturnTime.setStatus('current') tlpAtsConfigAutoRampOnTransition = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 1, 1, 5), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsConfigAutoRampOnTransition.setStatus('current') tlpAtsConfigAutoShedOnTransition = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 1, 1, 6), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1)).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsConfigAutoShedOnTransition.setStatus('current') tlpAtsConfigVoltageRangeTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 2), ) if mibBuilder.loadTexts: tlpAtsConfigVoltageRangeTable.setStatus('current') tlpAtsConfigVoltageRangeEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 2, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex")) if mibBuilder.loadTexts: tlpAtsConfigVoltageRangeEntry.setStatus('current') tlpAtsConfigHighVoltageTransfer = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 2, 1, 1), Unsigned32()).setUnits('0.1 Volts').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsConfigHighVoltageTransfer.setStatus('current') tlpAtsConfigHighVoltageReset = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 2, 1, 2), Unsigned32()).setUnits('0.1 Volts').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsConfigHighVoltageReset.setStatus('current') tlpAtsConfigSource1TransferReset = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 2, 1, 3), Unsigned32()).setUnits('0.1 Volts').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsConfigSource1TransferReset.setStatus('current') tlpAtsConfigSource1BrownoutSet = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 2, 1, 4), Unsigned32()).setUnits('0.1 Volts').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsConfigSource1BrownoutSet.setStatus('current') tlpAtsConfigSource1TransferSet = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 2, 1, 5), Unsigned32()).setUnits('0.1 Volts').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsConfigSource1TransferSet.setStatus('current') tlpAtsConfigSource2TransferReset = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 2, 1, 6), Unsigned32()).setUnits('0.1 Volts').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsConfigSource2TransferReset.setStatus('current') tlpAtsConfigSource2BrownoutSet = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 2, 1, 7), Unsigned32()).setUnits('0.1 Volts').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsConfigSource2BrownoutSet.setStatus('current') tlpAtsConfigSource2TransferSet = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 2, 1, 8), Unsigned32()).setUnits('0.1 Volts').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsConfigSource2TransferSet.setStatus('current') tlpAtsConfigLowVoltageReset = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 2, 1, 9), Unsigned32()).setUnits('0.1 Volts').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsConfigLowVoltageReset.setStatus('current') tlpAtsConfigLowVoltageTransfer = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 2, 1, 10), Unsigned32()).setUnits('0.1 Volts').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsConfigLowVoltageTransfer.setStatus('current') tlpAtsConfigVoltageRangeLimitsTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 3), ) if mibBuilder.loadTexts: tlpAtsConfigVoltageRangeLimitsTable.setStatus('current') tlpAtsConfigVoltageRangeLimitsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 3, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex")) if mibBuilder.loadTexts: tlpAtsConfigVoltageRangeLimitsEntry.setStatus('current') tlpAtsConfigSourceBrownoutSetMinimum = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 3, 1, 1), Unsigned32()).setUnits('0.1 Volts').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsConfigSourceBrownoutSetMinimum.setStatus('current') tlpAtsConfigSourceBrownoutSetMaximum = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 3, 1, 2), Unsigned32()).setUnits('0.1 Volts').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsConfigSourceBrownoutSetMaximum.setStatus('current') tlpAtsConfigSourceTransferSetMinimum = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 3, 1, 3), Unsigned32()).setUnits('0.1 Volts').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsConfigSourceTransferSetMinimum.setStatus('current') tlpAtsConfigSourceTransferSetMaximum = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 3, 1, 4), Unsigned32()).setUnits('0.1 Volts').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsConfigSourceTransferSetMaximum.setStatus('current') tlpAtsConfigThresholdTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 4), ) if mibBuilder.loadTexts: tlpAtsConfigThresholdTable.setStatus('current') tlpAtsConfigThresholdEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 4, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex")) if mibBuilder.loadTexts: tlpAtsConfigThresholdEntry.setStatus('current') tlpAtsConfigOverCurrentThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 4, 1, 1), Unsigned32()).setUnits('0.1 Amps').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsConfigOverCurrentThreshold.setStatus('current') tlpAtsConfigOverTemperatureThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 4, 1, 2), Unsigned32()).setUnits('0.1 Centigrade').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsConfigOverTemperatureThreshold.setStatus('current') tlpAtsConfigOverVoltageThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 4, 1, 3), Unsigned32()).setUnits('0.1 Volts').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsConfigOverVoltageThreshold.setStatus('current') tlpAtsConfigOverLoadThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 4, 1, 4), Unsigned32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsConfigOverLoadThreshold.setStatus('current') tlpCoolingIdentNumCooling = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 5, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpCoolingIdentNumCooling.setStatus('current') tlpKvmIdentNumKvm = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 6, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpKvmIdentNumKvm.setStatus('current') tlpRackTrackIdentNumRackTrack = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 7, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpRackTrackIdentNumRackTrack.setStatus('current') tlpSwitchIdentNumSwitch = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 8, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpSwitchIdentNumSwitch.setStatus('current') tlpAgentType = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 1, 1), Integer32().subtype(subtypeSpec=SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8)).clone(namedValues=NamedValues(("unknown", 0), ("pal", 1), ("pansa", 2), ("delta", 3), ("sinetica", 4), ("netos6", 5), ("netos7", 6), ("panms", 7), ("nmc5", 8)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAgentType.setStatus('current') tlpAgentVersion = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAgentVersion.setStatus('current') tlpAgentDriverVersion = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 1, 3), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAgentDriverVersion.setStatus('current') tlpAgentMAC = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 1, 4), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAgentMAC.setStatus('current') tlpAgentSerialNum = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 1, 5), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAgentSerialNum.setStatus('current') tlpAgentUuid = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 1, 6), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAgentUuid.setStatus('current') tlpAgentAttributesSupports = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 1)) tlpAgentAttributesSupportsHTTP = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 1, 1), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAgentAttributesSupportsHTTP.setStatus('current') tlpAgentAttributesSupportsHTTPS = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 1, 2), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAgentAttributesSupportsHTTPS.setStatus('current') tlpAgentAttributesSupportsFTP = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 1, 3), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAgentAttributesSupportsFTP.setStatus('current') tlpAgentAttributesSupportsTelnetMenu = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 1, 4), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAgentAttributesSupportsTelnetMenu.setStatus('current') tlpAgentAttributesSupportsTelnetCLI = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 1, 5), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAgentAttributesSupportsTelnetCLI.setStatus('current') tlpAgentAttributesSupportsSSHMenu = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 1, 6), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAgentAttributesSupportsSSHMenu.setStatus('current') tlpAgentAttributesSupportsSSHCLI = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 1, 7), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAgentAttributesSupportsSSHCLI.setStatus('current') tlpAgentAttributesSupportsSNMP = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 1, 8), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAgentAttributesSupportsSNMP.setStatus('current') tlpAgentAttributesSupportsSNMPTrap = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 1, 9), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAgentAttributesSupportsSNMPTrap.setStatus('current') tlpAgentAttributesAutostart = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 2)) tlpAgentAttributesAutostartHTTP = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 2, 1), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAgentAttributesAutostartHTTP.setStatus('current') tlpAgentAttributesAutostartHTTPS = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 2, 2), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAgentAttributesAutostartHTTPS.setStatus('current') tlpAgentAttributesAutostartFTP = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 2, 3), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAgentAttributesAutostartFTP.setStatus('current') tlpAgentAttributesAutostartTelnetMenu = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 2, 4), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAgentAttributesAutostartTelnetMenu.setStatus('current') tlpAgentAttributesAutostartTelnetCLI = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 2, 5), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAgentAttributesAutostartTelnetCLI.setStatus('current') tlpAgentAttributesAutostartSSHMenu = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 2, 6), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAgentAttributesAutostartSSHMenu.setStatus('current') tlpAgentAttributesAutostartSSHCLI = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 2, 7), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAgentAttributesAutostartSSHCLI.setStatus('current') tlpAgentAttributesAutostartSNMP = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 2, 8), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAgentAttributesAutostartSNMP.setStatus('current') tlpAgentAttributesSnmp = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 3)) tlpAgentAttributesSNMPv1Enabled = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 3, 1), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAgentAttributesSNMPv1Enabled.setStatus('current') tlpAgentAttributesSNMPv2cEnabled = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 3, 2), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAgentAttributesSNMPv2cEnabled.setStatus('current') tlpAgentAttributesSNMPv3Enabled = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 3, 3), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAgentAttributesSNMPv3Enabled.setStatus('current') tlpAgentAttributesPorts = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 4)) tlpAgentAttributesHTTPPort = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 4, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAgentAttributesHTTPPort.setStatus('current') tlpAgentAttributesHTTPSPort = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 4, 2), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAgentAttributesHTTPSPort.setStatus('current') tlpAgentAttributesFTPPort = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 4, 3), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAgentAttributesFTPPort.setStatus('current') tlpAgentAttributesTelnetMenuPort = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 4, 4), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAgentAttributesTelnetMenuPort.setStatus('current') tlpAgentAttributesTelnetCLIPort = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 4, 5), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAgentAttributesTelnetCLIPort.setStatus('current') tlpAgentAttributesSSHMenuPort = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 4, 6), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAgentAttributesSSHMenuPort.setStatus('current') tlpAgentAttributesSSHCLIPort = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 4, 7), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAgentAttributesSSHCLIPort.setStatus('current') tlpAgentAttributesSNMPPort = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 4, 8), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAgentAttributesSNMPPort.setStatus('current') tlpAgentAttributesSNMPTrapPort = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 4, 9), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAgentAttributesSNMPTrapPort.setStatus('current') tlpAgentConfigRemoteRegistration = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 2, 1, 1), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAgentConfigRemoteRegistration.setStatus('current') tlpAgentConfigCurrentTime = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 2, 1, 2), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAgentConfigCurrentTime.setStatus('current') tlpAgentNumEmailContacts = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAgentNumEmailContacts.setStatus('current') tlpAgentEmailContactTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 1, 2), ) if mibBuilder.loadTexts: tlpAgentEmailContactTable.setStatus('current') tlpAgentEmailContactEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 1, 2, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpAgentEmailContactIndex")) if mibBuilder.loadTexts: tlpAgentEmailContactEntry.setStatus('current') tlpAgentEmailContactIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 1, 2, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAgentEmailContactIndex.setStatus('current') tlpAgentEmailContactRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 1, 2, 1, 2), RowStatus()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAgentEmailContactRowStatus.setStatus('current') tlpAgentEmailContactName = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 1, 2, 1, 3), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAgentEmailContactName.setStatus('current') tlpAgentEmailContactAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 1, 2, 1, 4), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAgentEmailContactAddress.setStatus('current') tlpAgentNumSnmpContacts = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 2, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAgentNumSnmpContacts.setStatus('current') tlpAgentSnmpContactTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 2, 2), ) if mibBuilder.loadTexts: tlpAgentSnmpContactTable.setStatus('current') tlpAgentSnmpContactEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 2, 2, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpAgentSnmpContactIndex")) if mibBuilder.loadTexts: tlpAgentSnmpContactEntry.setStatus('current') tlpAgentSnmpContactIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 2, 2, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAgentSnmpContactIndex.setStatus('current') tlpAgentSnmpContactRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 2, 2, 1, 2), RowStatus()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAgentSnmpContactRowStatus.setStatus('current') tlpAgentSnmpContactName = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 2, 2, 1, 3), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAgentSnmpContactName.setStatus('current') tlpAgentSnmpContactIpAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 2, 2, 1, 4), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAgentSnmpContactIpAddress.setStatus('current') tlpAgentSnmpContactPort = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 2, 2, 1, 5), Unsigned32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAgentSnmpContactPort.setStatus('current') tlpAgentSnmpContactSnmpVersion = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 2, 2, 1, 6), Integer32().subtype(subtypeSpec=SingleValueConstraint(1, 2, 3)).clone(namedValues=NamedValues(("snmpv1", 1), ("snmpv2c", 2), ("snmpv3", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAgentSnmpContactSnmpVersion.setStatus('current') tlpAgentSnmpContactSecurityName = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 2, 2, 1, 7), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAgentSnmpContactSecurityName.setStatus('current') tlpAgentSnmpContactPrivPassword = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 2, 2, 1, 8), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAgentSnmpContactPrivPassword.setStatus('current') tlpAgentSnmpContactAuthPassword = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 2, 2, 1, 9), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAgentSnmpContactAuthPassword.setStatus('current') tlpAlarmsPresent = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 3, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAlarmsPresent.setStatus('current') tlpAlarmTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 3, 2), ) if mibBuilder.loadTexts: tlpAlarmTable.setStatus('current') tlpAlarmEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 3, 2, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpAlarmId")) if mibBuilder.loadTexts: tlpAlarmEntry.setStatus('current') tlpAlarmId = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 3, 2, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAlarmId.setStatus('current') tlpAlarmDescr = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 3, 2, 1, 2), ObjectIdentifier()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAlarmDescr.setStatus('current') tlpAlarmTime = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 3, 2, 1, 3), TimeStamp()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAlarmTime.setStatus('current') tlpAlarmTableRef = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 3, 2, 1, 4), ObjectIdentifier()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAlarmTableRef.setStatus('current') tlpAlarmTableRowRef = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 3, 2, 1, 5), ObjectIdentifier()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAlarmTableRowRef.setStatus('current') tlpAlarmDetail = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 3, 2, 1, 6), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAlarmDetail.setStatus('current') tlpAlarmType = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 3, 2, 1, 7), Integer32().subtype(subtypeSpec=SingleValueConstraint(1, 2, 3, 4, 5, 6)).clone(namedValues=NamedValues(("critical", 1), ("warning", 2), ("info", 3), ("status", 4), ("offline", 5), ("custom", 6)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAlarmType.setStatus('current') tlpAlarmState = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 3, 2, 1, 8), Integer32().subtype(subtypeSpec=SingleValueConstraint(1, 2)).clone(namedValues=NamedValues(("active", 1), ("inactive", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAlarmState.setStatus('current') tlpAlarmAcknowledged = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 3, 2, 1, 9), Integer32().subtype(subtypeSpec=SingleValueConstraint(1, 2)).clone(namedValues=NamedValues(("notAcknowledged", 1), ("acknowledged", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAlarmAcknowledged.setStatus('current') tlpAlarmCommunicationsLost = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 2, 1)) if mibBuilder.loadTexts: tlpAlarmCommunicationsLost.setStatus('current') tlpAlarmUserDefined = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 2, 2)) tlpAlarmUserDefined01 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 2, 2, 1)) if mibBuilder.loadTexts: tlpAlarmUserDefined01.setStatus('current') tlpAlarmUserDefined02 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 2, 2, 2)) if mibBuilder.loadTexts: tlpAlarmUserDefined02.setStatus('current') tlpAlarmUserDefined03 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 2, 2, 3)) if mibBuilder.loadTexts: tlpAlarmUserDefined03.setStatus('current') tlpAlarmUserDefined04 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 2, 2, 4)) if mibBuilder.loadTexts: tlpAlarmUserDefined04.setStatus('current') tlpAlarmUserDefined05 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 2, 2, 5)) if mibBuilder.loadTexts: tlpAlarmUserDefined05.setStatus('current') tlpAlarmUserDefined06 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 2, 2, 6)) if mibBuilder.loadTexts: tlpAlarmUserDefined06.setStatus('current') tlpAlarmUserDefined07 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 2, 2, 7)) if mibBuilder.loadTexts: tlpAlarmUserDefined07.setStatus('current') tlpAlarmUserDefined08 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 2, 2, 8)) if mibBuilder.loadTexts: tlpAlarmUserDefined08.setStatus('current') tlpAlarmUserDefined09 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 2, 2, 9)) if mibBuilder.loadTexts: tlpAlarmUserDefined09.setStatus('current') tlpUpsAlarmBatteryBad = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 1)) if mibBuilder.loadTexts: tlpUpsAlarmBatteryBad.setStatus('current') tlpUpsAlarmOnBattery = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 2)) if mibBuilder.loadTexts: tlpUpsAlarmOnBattery.setStatus('current') tlpUpsAlarmLowBattery = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 3)) if mibBuilder.loadTexts: tlpUpsAlarmLowBattery.setStatus('current') tlpUpsAlarmDepletedBattery = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 4)) if mibBuilder.loadTexts: tlpUpsAlarmDepletedBattery.setStatus('current') tlpUpsAlarmTempBad = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 5)) if mibBuilder.loadTexts: tlpUpsAlarmTempBad.setStatus('current') tlpUpsAlarmInputBad = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 6)) if mibBuilder.loadTexts: tlpUpsAlarmInputBad.setStatus('current') tlpUpsAlarmOutputBad = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 7)) if mibBuilder.loadTexts: tlpUpsAlarmOutputBad.setStatus('current') tlpUpsAlarmOutputOverload = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 8)) if mibBuilder.loadTexts: tlpUpsAlarmOutputOverload.setStatus('current') tlpUpsAlarmOnBypass = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 9)) if mibBuilder.loadTexts: tlpUpsAlarmOnBypass.setStatus('current') tlpUpsAlarmBypassBad = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 10)) if mibBuilder.loadTexts: tlpUpsAlarmBypassBad.setStatus('current') tlpUpsAlarmOutputOffAsRequested = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 11)) if mibBuilder.loadTexts: tlpUpsAlarmOutputOffAsRequested.setStatus('current') tlpUpsAlarmUpsOffAsRequested = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 12)) if mibBuilder.loadTexts: tlpUpsAlarmUpsOffAsRequested.setStatus('current') tlpUpsAlarmChargerFailed = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 13)) if mibBuilder.loadTexts: tlpUpsAlarmChargerFailed.setStatus('current') tlpUpsAlarmUpsOutputOff = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 14)) if mibBuilder.loadTexts: tlpUpsAlarmUpsOutputOff.setStatus('current') tlpUpsAlarmUpsSystemOff = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 15)) if mibBuilder.loadTexts: tlpUpsAlarmUpsSystemOff.setStatus('current') tlpUpsAlarmFanFailure = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 16)) if mibBuilder.loadTexts: tlpUpsAlarmFanFailure.setStatus('current') tlpUpsAlarmFuseFailure = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 17)) if mibBuilder.loadTexts: tlpUpsAlarmFuseFailure.setStatus('current') tlpUpsAlarmGeneralFault = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 18)) if mibBuilder.loadTexts: tlpUpsAlarmGeneralFault.setStatus('current') tlpUpsAlarmDiagnosticTestFailed = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 19)) if mibBuilder.loadTexts: tlpUpsAlarmDiagnosticTestFailed.setStatus('current') tlpUpsAlarmAwaitingPower = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 20)) if mibBuilder.loadTexts: tlpUpsAlarmAwaitingPower.setStatus('current') tlpUpsAlarmShutdownPending = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 21)) if mibBuilder.loadTexts: tlpUpsAlarmShutdownPending.setStatus('current') tlpUpsAlarmShutdownImminent = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 22)) if mibBuilder.loadTexts: tlpUpsAlarmShutdownImminent.setStatus('current') tlpUpsAlarmLoadLevelAboveThreshold = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 23)) tlpUpsAlarmLoadLevelAboveThresholdTotal = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 23, 1)) if mibBuilder.loadTexts: tlpUpsAlarmLoadLevelAboveThresholdTotal.setStatus('current') tlpUpsAlarmLoadLevelAboveThresholdPhase1 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 23, 2)) if mibBuilder.loadTexts: tlpUpsAlarmLoadLevelAboveThresholdPhase1.setStatus('current') tlpUpsAlarmLoadLevelAboveThresholdPhase2 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 23, 3)) if mibBuilder.loadTexts: tlpUpsAlarmLoadLevelAboveThresholdPhase2.setStatus('current') tlpUpsAlarmLoadLevelAboveThresholdPhase3 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 23, 4)) if mibBuilder.loadTexts: tlpUpsAlarmLoadLevelAboveThresholdPhase3.setStatus('current') tlpUpsAlarmOutputCurrentChanged = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 24)) if mibBuilder.loadTexts: tlpUpsAlarmOutputCurrentChanged.setStatus('current') tlpUpsAlarmBatteryAgeAboveThreshold = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 25)) if mibBuilder.loadTexts: tlpUpsAlarmBatteryAgeAboveThreshold.setStatus('current') tlpUpsAlarmLoadOff = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26)) tlpUpsAlarmLoadOff01 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 1)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff01.setStatus('current') tlpUpsAlarmLoadOff02 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 2)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff02.setStatus('current') tlpUpsAlarmLoadOff03 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 3)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff03.setStatus('current') tlpUpsAlarmLoadOff04 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 4)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff04.setStatus('current') tlpUpsAlarmLoadOff05 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 5)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff05.setStatus('current') tlpUpsAlarmLoadOff06 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 6)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff06.setStatus('current') tlpUpsAlarmLoadOff07 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 7)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff07.setStatus('current') tlpUpsAlarmLoadOff08 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 8)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff08.setStatus('current') tlpUpsAlarmLoadOff09 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 9)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff09.setStatus('current') tlpUpsAlarmLoadOff10 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 10)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff10.setStatus('current') tlpUpsAlarmLoadOff11 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 11)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff11.setStatus('current') tlpUpsAlarmLoadOff12 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 12)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff12.setStatus('current') tlpUpsAlarmLoadOff13 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 13)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff13.setStatus('current') tlpUpsAlarmLoadOff14 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 14)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff14.setStatus('current') tlpUpsAlarmLoadOff15 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 15)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff15.setStatus('current') tlpUpsAlarmLoadOff16 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 16)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff16.setStatus('current') tlpUpsAlarmLoadOff17 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 17)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff17.setStatus('current') tlpUpsAlarmLoadOff18 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 18)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff18.setStatus('current') tlpUpsAlarmLoadOff19 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 19)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff19.setStatus('current') tlpUpsAlarmLoadOff20 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 20)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff20.setStatus('current') tlpUpsAlarmLoadOff21 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 21)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff21.setStatus('current') tlpUpsAlarmLoadOff22 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 22)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff22.setStatus('current') tlpUpsAlarmLoadOff23 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 23)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff23.setStatus('current') tlpUpsAlarmLoadOff24 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 24)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff24.setStatus('current') tlpUpsAlarmLoadOff25 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 25)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff25.setStatus('current') tlpUpsAlarmLoadOff26 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 26)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff26.setStatus('current') tlpUpsAlarmLoadOff27 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 27)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff27.setStatus('current') tlpUpsAlarmLoadOff28 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 28)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff28.setStatus('current') tlpUpsAlarmLoadOff29 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 29)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff29.setStatus('current') tlpUpsAlarmLoadOff30 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 30)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff30.setStatus('current') tlpUpsAlarmLoadOff31 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 31)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff31.setStatus('current') tlpUpsAlarmLoadOff32 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 32)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff32.setStatus('current') tlpUpsAlarmLoadOff33 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 33)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff33.setStatus('current') tlpUpsAlarmLoadOff34 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 34)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff34.setStatus('current') tlpUpsAlarmLoadOff35 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 35)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff35.setStatus('current') tlpUpsAlarmLoadOff36 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 36)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff36.setStatus('current') tlpUpsAlarmLoadOff37 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 37)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff37.setStatus('current') tlpUpsAlarmLoadOff38 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 38)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff38.setStatus('current') tlpUpsAlarmLoadOff39 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 39)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff39.setStatus('current') tlpUpsAlarmLoadOff40 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 40)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff40.setStatus('current') tlpUpsAlarmCurrentAboveThreshold = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 27)) tlpUpsAlarmCurrentAboveThreshold1 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 27, 1)) if mibBuilder.loadTexts: tlpUpsAlarmCurrentAboveThreshold1.setStatus('current') tlpUpsAlarmCurrentAboveThreshold2 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 27, 2)) if mibBuilder.loadTexts: tlpUpsAlarmCurrentAboveThreshold2.setStatus('current') tlpUpsAlarmCurrentAboveThreshold3 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 27, 3)) if mibBuilder.loadTexts: tlpUpsAlarmCurrentAboveThreshold3.setStatus('current') tlpUpsAlarmRuntimeBelowWarningLevel = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 28)) if mibBuilder.loadTexts: tlpUpsAlarmRuntimeBelowWarningLevel.setStatus('current') tlpUpsAlarmBusStartVoltageLow = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 29)) if mibBuilder.loadTexts: tlpUpsAlarmBusStartVoltageLow.setStatus('current') tlpUpsAlarmBusOverVoltage = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 30)) if mibBuilder.loadTexts: tlpUpsAlarmBusOverVoltage.setStatus('current') tlpUpsAlarmBusUnderVoltage = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 31)) if mibBuilder.loadTexts: tlpUpsAlarmBusUnderVoltage.setStatus('current') tlpUpsAlarmBusVoltageUnbalanced = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 32)) if mibBuilder.loadTexts: tlpUpsAlarmBusVoltageUnbalanced.setStatus('current') tlpUpsAlarmInverterSoftStartBad = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 33)) if mibBuilder.loadTexts: tlpUpsAlarmInverterSoftStartBad.setStatus('current') tlpUpsAlarmInverterOverVoltage = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 34)) if mibBuilder.loadTexts: tlpUpsAlarmInverterOverVoltage.setStatus('current') tlpUpsAlarmInverterUnderVoltage = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 35)) if mibBuilder.loadTexts: tlpUpsAlarmInverterUnderVoltage.setStatus('current') tlpUpsAlarmInverterCircuitBad = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 36)) if mibBuilder.loadTexts: tlpUpsAlarmInverterCircuitBad.setStatus('current') tlpUpsAlarmBatteryOverVoltage = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 37)) if mibBuilder.loadTexts: tlpUpsAlarmBatteryOverVoltage.setStatus('current') tlpUpsAlarmBatteryUnderVoltage = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 38)) if mibBuilder.loadTexts: tlpUpsAlarmBatteryUnderVoltage.setStatus('current') tlpUpsAlarmSiteWiringFault = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 39)) if mibBuilder.loadTexts: tlpUpsAlarmSiteWiringFault.setStatus('current') tlpUpsAlarmOverTemperatureProtection = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 40)) if mibBuilder.loadTexts: tlpUpsAlarmOverTemperatureProtection.setStatus('current') tlpUpsAlarmOverCharged = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 41)) if mibBuilder.loadTexts: tlpUpsAlarmOverCharged.setStatus('current') tlpUpsAlarmEPOActive = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 42)) if mibBuilder.loadTexts: tlpUpsAlarmEPOActive.setStatus('current') tlpUpsAlarmBypassFrequencyBad = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 43)) if mibBuilder.loadTexts: tlpUpsAlarmBypassFrequencyBad.setStatus('current') tlpUpsAlarmExternalSmartBatteryAgeAboveThreshold = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 44)) if mibBuilder.loadTexts: tlpUpsAlarmExternalSmartBatteryAgeAboveThreshold.setStatus('current') tlpUpsAlarmExternalNonSmartBatteryAgeAboveThreshold = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 45)) if mibBuilder.loadTexts: tlpUpsAlarmExternalNonSmartBatteryAgeAboveThreshold.setStatus('current') tlpUpsAlarmSmartBatteryCommLost = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 46)) if mibBuilder.loadTexts: tlpUpsAlarmSmartBatteryCommLost.setStatus('current') tlpUpsAlarmLoadsNotAllOn = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 47)) if mibBuilder.loadTexts: tlpUpsAlarmLoadsNotAllOn.setStatus('current') tlpPduAlarmLoadLevelAboveThreshold = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 1)) if mibBuilder.loadTexts: tlpPduAlarmLoadLevelAboveThreshold.setStatus('current') tlpPduAlarmInputBad = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 2)) if mibBuilder.loadTexts: tlpPduAlarmInputBad.setStatus('current') tlpPduAlarmOutputBad = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 3)) if mibBuilder.loadTexts: tlpPduAlarmOutputBad.setStatus('current') tlpPduAlarmOutputOverload = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 4)) if mibBuilder.loadTexts: tlpPduAlarmOutputOverload.setStatus('current') tlpPduAlarmOutputOff = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 5)) if mibBuilder.loadTexts: tlpPduAlarmOutputOff.setStatus('current') tlpPduAlarmLoadOff = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6)) tlpPduAlarmLoadOff01 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 1)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff01.setStatus('current') tlpPduAlarmLoadOff02 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 2)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff02.setStatus('current') tlpPduAlarmLoadOff03 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 3)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff03.setStatus('current') tlpPduAlarmLoadOff04 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 4)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff04.setStatus('current') tlpPduAlarmLoadOff05 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 5)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff05.setStatus('current') tlpPduAlarmLoadOff06 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 6)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff06.setStatus('current') tlpPduAlarmLoadOff07 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 7)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff07.setStatus('current') tlpPduAlarmLoadOff08 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 8)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff08.setStatus('current') tlpPduAlarmLoadOff09 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 9)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff09.setStatus('current') tlpPduAlarmLoadOff10 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 10)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff10.setStatus('current') tlpPduAlarmLoadOff11 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 11)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff11.setStatus('current') tlpPduAlarmLoadOff12 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 12)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff12.setStatus('current') tlpPduAlarmLoadOff13 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 13)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff13.setStatus('current') tlpPduAlarmLoadOff14 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 14)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff14.setStatus('current') tlpPduAlarmLoadOff15 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 15)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff15.setStatus('current') tlpPduAlarmLoadOff16 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 16)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff16.setStatus('current') tlpPduAlarmLoadOff17 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 17)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff17.setStatus('current') tlpPduAlarmLoadOff18 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 18)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff18.setStatus('current') tlpPduAlarmLoadOff19 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 19)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff19.setStatus('current') tlpPduAlarmLoadOff20 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 20)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff20.setStatus('current') tlpPduAlarmLoadOff21 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 21)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff21.setStatus('current') tlpPduAlarmLoadOff22 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 22)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff22.setStatus('current') tlpPduAlarmLoadOff23 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 23)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff23.setStatus('current') tlpPduAlarmLoadOff24 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 24)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff24.setStatus('current') tlpPduAlarmLoadOff25 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 25)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff25.setStatus('current') tlpPduAlarmLoadOff26 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 26)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff26.setStatus('current') tlpPduAlarmLoadOff27 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 27)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff27.setStatus('current') tlpPduAlarmLoadOff28 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 28)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff28.setStatus('current') tlpPduAlarmLoadOff29 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 29)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff29.setStatus('current') tlpPduAlarmLoadOff30 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 30)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff30.setStatus('current') tlpPduAlarmLoadOff31 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 31)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff31.setStatus('current') tlpPduAlarmLoadOff32 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 32)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff32.setStatus('current') tlpPduAlarmLoadOff33 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 33)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff33.setStatus('current') tlpPduAlarmLoadOff34 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 34)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff34.setStatus('current') tlpPduAlarmLoadOff35 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 35)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff35.setStatus('current') tlpPduAlarmLoadOff36 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 36)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff36.setStatus('current') tlpPduAlarmLoadOff37 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 37)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff37.setStatus('current') tlpPduAlarmLoadOff38 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 38)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff38.setStatus('current') tlpPduAlarmLoadOff39 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 39)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff39.setStatus('current') tlpPduAlarmLoadOff40 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 40)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff40.setStatus('current') tlpPduAlarmCircuitBreakerOpen = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 7)) tlpPduAlarmCircuitBreakerOpen01 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 7, 1)) if mibBuilder.loadTexts: tlpPduAlarmCircuitBreakerOpen01.setStatus('current') tlpPduAlarmCircuitBreakerOpen02 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 7, 2)) if mibBuilder.loadTexts: tlpPduAlarmCircuitBreakerOpen02.setStatus('current') tlpPduAlarmCircuitBreakerOpen03 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 7, 3)) if mibBuilder.loadTexts: tlpPduAlarmCircuitBreakerOpen03.setStatus('current') tlpPduAlarmCircuitBreakerOpen04 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 7, 4)) if mibBuilder.loadTexts: tlpPduAlarmCircuitBreakerOpen04.setStatus('current') tlpPduAlarmCircuitBreakerOpen05 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 7, 5)) if mibBuilder.loadTexts: tlpPduAlarmCircuitBreakerOpen05.setStatus('current') tlpPduAlarmCircuitBreakerOpen06 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 7, 6)) if mibBuilder.loadTexts: tlpPduAlarmCircuitBreakerOpen06.setStatus('current') tlpPduAlarmCurrentAboveThreshold = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 8)) tlpPduAlarmCurrentAboveThreshold1 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 8, 1)) if mibBuilder.loadTexts: tlpPduAlarmCurrentAboveThreshold1.setStatus('current') tlpPduAlarmCurrentAboveThreshold2 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 8, 2)) if mibBuilder.loadTexts: tlpPduAlarmCurrentAboveThreshold2.setStatus('current') tlpPduAlarmCurrentAboveThreshold3 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 8, 3)) if mibBuilder.loadTexts: tlpPduAlarmCurrentAboveThreshold3.setStatus('current') tlpPduAlarmLoadsNotAllOn = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 9)) if mibBuilder.loadTexts: tlpPduAlarmLoadsNotAllOn.setStatus('current') tlpEnvAlarmTemperatureBeyondLimits = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 5, 1)) if mibBuilder.loadTexts: tlpEnvAlarmTemperatureBeyondLimits.setStatus('current') tlpEnvAlarmHumidityBeyondLimits = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 5, 2)) if mibBuilder.loadTexts: tlpEnvAlarmHumidityBeyondLimits.setStatus('current') tlpEnvAlarmInputContact = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 5, 3)) tlpEnvAlarmInputContact01 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 5, 3, 1)) if mibBuilder.loadTexts: tlpEnvAlarmInputContact01.setStatus('current') tlpEnvAlarmInputContact02 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 5, 3, 2)) if mibBuilder.loadTexts: tlpEnvAlarmInputContact02.setStatus('current') tlpEnvAlarmInputContact03 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 5, 3, 3)) if mibBuilder.loadTexts: tlpEnvAlarmInputContact03.setStatus('current') tlpEnvAlarmInputContact04 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 5, 3, 4)) if mibBuilder.loadTexts: tlpEnvAlarmInputContact04.setStatus('current') tlpEnvAlarmOutputContact = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 5, 4)) tlpEnvAlarmOutputContact01 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 5, 4, 1)) if mibBuilder.loadTexts: tlpEnvAlarmOutputContact01.setStatus('current') tlpEnvAlarmOutputContact02 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 5, 4, 2)) if mibBuilder.loadTexts: tlpEnvAlarmOutputContact02.setStatus('current') tlpEnvAlarmOutputContact03 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 5, 4, 3)) if mibBuilder.loadTexts: tlpEnvAlarmOutputContact03.setStatus('current') tlpEnvAlarmOutputContact04 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 5, 4, 4)) if mibBuilder.loadTexts: tlpEnvAlarmOutputContact04.setStatus('current') tlpAtsAlarmOutage = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 1)) tlpAtsAlarmSource1Outage = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 1, 1)) if mibBuilder.loadTexts: tlpAtsAlarmSource1Outage.setStatus('current') tlpAtsAlarmSource2Outage = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 1, 2)) if mibBuilder.loadTexts: tlpAtsAlarmSource2Outage.setStatus('current') tlpAtsAlarmTemperature = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 2)) tlpAtsAlarmSystemTemperature = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 2, 1)) if mibBuilder.loadTexts: tlpAtsAlarmSystemTemperature.setStatus('current') tlpAtsAlarmSource1Temperature = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 2, 2)) if mibBuilder.loadTexts: tlpAtsAlarmSource1Temperature.setStatus('current') tlpAtsAlarmSource2Temperature = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 2, 3)) if mibBuilder.loadTexts: tlpAtsAlarmSource2Temperature.setStatus('current') tlpAtsAlarmLoadLevelAboveThreshold = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 3)) if mibBuilder.loadTexts: tlpAtsAlarmLoadLevelAboveThreshold.setStatus('current') tlpAtsAlarmInputBad = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 4)) if mibBuilder.loadTexts: tlpAtsAlarmInputBad.setStatus('current') tlpAtsAlarmOutputBad = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 5)) if mibBuilder.loadTexts: tlpAtsAlarmOutputBad.setStatus('current') tlpAtsAlarmOutputOverload = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 6)) if mibBuilder.loadTexts: tlpAtsAlarmOutputOverload.setStatus('current') tlpAtsAlarmOutputOff = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 7)) if mibBuilder.loadTexts: tlpAtsAlarmOutputOff.setStatus('current') tlpAtsAlarmLoadOff = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8)) tlpAtsAlarmLoadOff01 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 1)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff01.setStatus('current') tlpAtsAlarmLoadOff02 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 2)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff02.setStatus('current') tlpAtsAlarmLoadOff03 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 3)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff03.setStatus('current') tlpAtsAlarmLoadOff04 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 4)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff04.setStatus('current') tlpAtsAlarmLoadOff05 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 5)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff05.setStatus('current') tlpAtsAlarmLoadOff06 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 6)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff06.setStatus('current') tlpAtsAlarmLoadOff07 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 7)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff07.setStatus('current') tlpAtsAlarmLoadOff08 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 8)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff08.setStatus('current') tlpAtsAlarmLoadOff09 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 9)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff09.setStatus('current') tlpAtsAlarmLoadOff10 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 10)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff10.setStatus('current') tlpAtsAlarmLoadOff11 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 11)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff11.setStatus('current') tlpAtsAlarmLoadOff12 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 12)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff12.setStatus('current') tlpAtsAlarmLoadOff13 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 13)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff13.setStatus('current') tlpAtsAlarmLoadOff14 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 14)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff14.setStatus('current') tlpAtsAlarmLoadOff15 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 15)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff15.setStatus('current') tlpAtsAlarmLoadOff16 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 16)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff16.setStatus('current') tlpAtsAlarmLoadOff17 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 17)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff17.setStatus('current') tlpAtsAlarmLoadOff18 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 18)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff18.setStatus('current') tlpAtsAlarmLoadOff19 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 19)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff19.setStatus('current') tlpAtsAlarmLoadOff20 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 20)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff20.setStatus('current') tlpAtsAlarmLoadOff21 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 21)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff21.setStatus('current') tlpAtsAlarmLoadOff22 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 22)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff22.setStatus('current') tlpAtsAlarmLoadOff23 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 23)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff23.setStatus('current') tlpAtsAlarmLoadOff24 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 24)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff24.setStatus('current') tlpAtsAlarmLoadOff25 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 25)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff25.setStatus('current') tlpAtsAlarmLoadOff26 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 26)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff26.setStatus('current') tlpAtsAlarmLoadOff27 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 27)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff27.setStatus('current') tlpAtsAlarmLoadOff28 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 28)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff28.setStatus('current') tlpAtsAlarmLoadOff29 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 29)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff29.setStatus('current') tlpAtsAlarmLoadOff30 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 30)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff30.setStatus('current') tlpAtsAlarmLoadOff31 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 31)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff31.setStatus('current') tlpAtsAlarmLoadOff32 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 32)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff32.setStatus('current') tlpAtsAlarmLoadOff33 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 33)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff33.setStatus('current') tlpAtsAlarmLoadOff34 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 34)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff34.setStatus('current') tlpAtsAlarmLoadOff35 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 35)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff35.setStatus('current') tlpAtsAlarmLoadOff36 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 36)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff36.setStatus('current') tlpAtsAlarmLoadOff37 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 37)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff37.setStatus('current') tlpAtsAlarmLoadOff38 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 38)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff38.setStatus('current') tlpAtsAlarmLoadOff39 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 39)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff39.setStatus('current') tlpAtsAlarmLoadOff40 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 40)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff40.setStatus('current') tlpAtsAlarmCircuitBreakerOpen = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 9)) tlpAtsAlarmCircuitBreakerOpen01 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 9, 1)) if mibBuilder.loadTexts: tlpAtsAlarmCircuitBreakerOpen01.setStatus('current') tlpAtsAlarmCircuitBreakerOpen02 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 9, 2)) if mibBuilder.loadTexts: tlpAtsAlarmCircuitBreakerOpen02.setStatus('current') tlpAtsAlarmCircuitBreakerOpen03 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 9, 3)) if mibBuilder.loadTexts: tlpAtsAlarmCircuitBreakerOpen03.setStatus('current') tlpAtsAlarmCircuitBreakerOpen04 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 9, 4)) if mibBuilder.loadTexts: tlpAtsAlarmCircuitBreakerOpen04.setStatus('current') tlpAtsAlarmCircuitBreakerOpen05 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 9, 5)) if mibBuilder.loadTexts: tlpAtsAlarmCircuitBreakerOpen05.setStatus('current') tlpAtsAlarmCircuitBreakerOpen06 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 9, 6)) if mibBuilder.loadTexts: tlpAtsAlarmCircuitBreakerOpen06.setStatus('current') tlpAtsAlarmCurrentAboveThreshold = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 10)) tlpAtsAlarmCurrentAboveThresholdA1 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 10, 1)) if mibBuilder.loadTexts: tlpAtsAlarmCurrentAboveThresholdA1.setStatus('current') tlpAtsAlarmCurrentAboveThresholdA2 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 10, 2)) if mibBuilder.loadTexts: tlpAtsAlarmCurrentAboveThresholdA2.setStatus('current') tlpAtsAlarmCurrentAboveThresholdA3 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 10, 3)) if mibBuilder.loadTexts: tlpAtsAlarmCurrentAboveThresholdA3.setStatus('current') tlpAtsAlarmCurrentAboveThresholdB1 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 10, 4)) if mibBuilder.loadTexts: tlpAtsAlarmCurrentAboveThresholdB1.setStatus('current') tlpAtsAlarmCurrentAboveThresholdB2 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 10, 5)) if mibBuilder.loadTexts: tlpAtsAlarmCurrentAboveThresholdB2.setStatus('current') tlpAtsAlarmCurrentAboveThresholdB3 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 10, 6)) if mibBuilder.loadTexts: tlpAtsAlarmCurrentAboveThresholdB3.setStatus('current') tlpAtsAlarmLoadsNotAllOn = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 11)) if mibBuilder.loadTexts: tlpAtsAlarmLoadsNotAllOn.setStatus('current') tlpAtsAlarmGeneralFault = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 12)) if mibBuilder.loadTexts: tlpAtsAlarmGeneralFault.setStatus('current') tlpAtsAlarmVoltage = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 13)) tlpAtsAlarmOverVoltage = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 13, 1)) if mibBuilder.loadTexts: tlpAtsAlarmOverVoltage.setStatus('current') tlpAtsAlarmSource1OverVoltage = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 13, 2)) if mibBuilder.loadTexts: tlpAtsAlarmSource1OverVoltage.setStatus('current') tlpAtsAlarmSource2OverVoltage = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 13, 3)) if mibBuilder.loadTexts: tlpAtsAlarmSource2OverVoltage.setStatus('current') tlpAtsAlarmFrequency = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 14)) tlpAtsAlarmSource1InvalidFrequency = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 14, 1)) if mibBuilder.loadTexts: tlpAtsAlarmSource1InvalidFrequency.setStatus('current') tlpAtsAlarmSource2InvalidFrequency = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 14, 2)) if mibBuilder.loadTexts: tlpAtsAlarmSource2InvalidFrequency.setStatus('current') tlpCoolingAlarmSupplyAirSensorFault = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 1)) if mibBuilder.loadTexts: tlpCoolingAlarmSupplyAirSensorFault.setStatus('current') tlpCoolingAlarmReturnAirSensorFault = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 2)) if mibBuilder.loadTexts: tlpCoolingAlarmReturnAirSensorFault.setStatus('current') tlpCoolingAlarmCondenserInletAirSensorFault = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 3)) if mibBuilder.loadTexts: tlpCoolingAlarmCondenserInletAirSensorFault.setStatus('current') tlpCoolingAlarmCondenserOutletAirSensorFault = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 4)) if mibBuilder.loadTexts: tlpCoolingAlarmCondenserOutletAirSensorFault.setStatus('current') tlpCoolingAlarmSuctionTemperatureSensorFault = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 5)) if mibBuilder.loadTexts: tlpCoolingAlarmSuctionTemperatureSensorFault.setStatus('current') tlpCoolingAlarmEvaporatorTemperatureSensorFault = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 6)) if mibBuilder.loadTexts: tlpCoolingAlarmEvaporatorTemperatureSensorFault.setStatus('current') tlpCoolingAlarmAirFilterClogged = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 7)) if mibBuilder.loadTexts: tlpCoolingAlarmAirFilterClogged.setStatus('current') tlpCoolingAlarmAirFilterRunHoursViolation = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 8)) if mibBuilder.loadTexts: tlpCoolingAlarmAirFilterRunHoursViolation.setStatus('current') tlpCoolingAlarmSuctionPressureSensorFault = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 9)) if mibBuilder.loadTexts: tlpCoolingAlarmSuctionPressureSensorFault.setStatus('current') tlpCoolingAlarmInverterCommunicationsFault = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 10)) if mibBuilder.loadTexts: tlpCoolingAlarmInverterCommunicationsFault.setStatus('current') tlpCoolingAlarmRemoteShutdownViaInputContact = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 11)) if mibBuilder.loadTexts: tlpCoolingAlarmRemoteShutdownViaInputContact.setStatus('current') tlpCoolingAlarmCondensatePumpFault = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 12)) if mibBuilder.loadTexts: tlpCoolingAlarmCondensatePumpFault.setStatus('current') tlpCoolingAlarmLowRefrigerantStartupFault = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 13)) if mibBuilder.loadTexts: tlpCoolingAlarmLowRefrigerantStartupFault.setStatus('current') tlpCoolingAlarmCondenserFanFault = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 14)) if mibBuilder.loadTexts: tlpCoolingAlarmCondenserFanFault.setStatus('current') tlpCoolingAlarmCondenserFailure = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 15)) if mibBuilder.loadTexts: tlpCoolingAlarmCondenserFailure.setStatus('current') tlpCoolingAlarmEvaporatorCoolingFailure = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 16)) if mibBuilder.loadTexts: tlpCoolingAlarmEvaporatorCoolingFailure.setStatus('current') tlpCoolingAlarmReturnAirTempHigh = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 17)) if mibBuilder.loadTexts: tlpCoolingAlarmReturnAirTempHigh.setStatus('current') tlpCoolingAlarmSupplyAirTempHigh = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 18)) if mibBuilder.loadTexts: tlpCoolingAlarmSupplyAirTempHigh.setStatus('current') tlpCoolingAlarmEvaporatorFailure = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 19)) if mibBuilder.loadTexts: tlpCoolingAlarmEvaporatorFailure.setStatus('current') tlpCoolingAlarmEvaporatorFreezeUp = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 20)) if mibBuilder.loadTexts: tlpCoolingAlarmEvaporatorFreezeUp.setStatus('current') tlpCoolingAlarmDischargePressureHigh = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 21)) if mibBuilder.loadTexts: tlpCoolingAlarmDischargePressureHigh.setStatus('current') tlpCoolingAlarmPressureGaugeFailure = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 22)) if mibBuilder.loadTexts: tlpCoolingAlarmPressureGaugeFailure.setStatus('current') tlpCoolingAlarmDischargePressurePersistentHigh = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 23)) if mibBuilder.loadTexts: tlpCoolingAlarmDischargePressurePersistentHigh.setStatus('current') tlpCoolingAlarmSuctionPressureLowStartFailure = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 24)) if mibBuilder.loadTexts: tlpCoolingAlarmSuctionPressureLowStartFailure.setStatus('current') tlpCoolingAlarmSuctionPressureLow = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 25)) if mibBuilder.loadTexts: tlpCoolingAlarmSuctionPressureLow.setStatus('current') tlpCoolingAlarmSuctionPressurePersistentLow = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 26)) if mibBuilder.loadTexts: tlpCoolingAlarmSuctionPressurePersistentLow.setStatus('current') tlpCoolingAlarmStartupLinePressureImbalance = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 27)) if mibBuilder.loadTexts: tlpCoolingAlarmStartupLinePressureImbalance.setStatus('current') tlpCoolingAlarmCompressorFailure = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 28)) if mibBuilder.loadTexts: tlpCoolingAlarmCompressorFailure.setStatus('current') tlpCoolingAlarmCurrentLimit = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 29)) if mibBuilder.loadTexts: tlpCoolingAlarmCurrentLimit.setStatus('current') tlpCoolingAlarmWaterLeak = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 30)) if mibBuilder.loadTexts: tlpCoolingAlarmWaterLeak.setStatus('current') tlpCoolingAlarmFanUnderCurrent = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 31)) if mibBuilder.loadTexts: tlpCoolingAlarmFanUnderCurrent.setStatus('current') tlpCoolingAlarmFanOverCurrent = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 32)) if mibBuilder.loadTexts: tlpCoolingAlarmFanOverCurrent.setStatus('current') tlpCoolingAlarmDischargePressureSensorFault = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 33)) if mibBuilder.loadTexts: tlpCoolingAlarmDischargePressureSensorFault.setStatus('current') tlpCoolingAlarmWaterFull = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 34)) if mibBuilder.loadTexts: tlpCoolingAlarmWaterFull.setStatus('current') tlpCoolingAlarmAutoCoolingOn = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 35)) if mibBuilder.loadTexts: tlpCoolingAlarmAutoCoolingOn.setStatus('current') tlpCoolingAlarmPowerButtonPressed = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 36)) if mibBuilder.loadTexts: tlpCoolingAlarmPowerButtonPressed.setStatus('current') tlpCoolingAlarmDisconnectedFromDevice = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 37)) if mibBuilder.loadTexts: tlpCoolingAlarmDisconnectedFromDevice.setStatus('current') tlpAlarmControlTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 3, 4, 1), ) if mibBuilder.loadTexts: tlpAlarmControlTable.setStatus('current') tlpAlarmControlEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 3, 4, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"), (0, "TRIPPLITE-PRODUCTS", "tlpAlarmControlIndex")) if mibBuilder.loadTexts: tlpAlarmControlEntry.setStatus('current') tlpAlarmControlIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 3, 4, 1, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAlarmControlIndex.setStatus('current') tlpAlarmControlDescr = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 3, 4, 1, 1, 2), ObjectIdentifier()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAlarmControlDescr.setStatus('current') tlpAlarmControlDetail = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 3, 4, 1, 1, 3), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAlarmControlDetail.setStatus('current') tlpAlarmControlSeverity = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 3, 4, 1, 1, 4), Integer32().subtype(subtypeSpec=SingleValueConstraint(1, 2, 3)).clone(namedValues=NamedValues(("critical", 1), ("warning", 2), ("info", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAlarmControlSeverity.setStatus('current') tlpNotificationsAlarmEntryAdded = NotificationType((1, 3, 6, 1, 4, 1, 850, 1, 4, 1, 1)).setObjects(("TRIPPLITE-PRODUCTS", "tlpAlarmId"), ("TRIPPLITE-PRODUCTS", "tlpAlarmDescr"), ("TRIPPLITE-PRODUCTS", "tlpAlarmTime"), ("TRIPPLITE-PRODUCTS", "tlpAlarmTableRef"), ("TRIPPLITE-PRODUCTS", "tlpAlarmTableRowRef"), ("TRIPPLITE-PRODUCTS", "tlpAlarmDetail"), ("TRIPPLITE-PRODUCTS", "tlpAlarmType")) if mibBuilder.loadTexts: tlpNotificationsAlarmEntryAdded.setStatus('current') tlpNotificationsAlarmEntryRemoved = NotificationType((1, 3, 6, 1, 4, 1, 850, 1, 4, 1, 2)).setObjects(("TRIPPLITE-PRODUCTS", "tlpAlarmId"), ("TRIPPLITE-PRODUCTS", "tlpAlarmDescr"), ("TRIPPLITE-PRODUCTS", "tlpAlarmTime"), ("TRIPPLITE-PRODUCTS", "tlpAlarmTableRef"), ("TRIPPLITE-PRODUCTS", "tlpAlarmTableRowRef"), ("TRIPPLITE-PRODUCTS", "tlpAlarmDetail"), ("TRIPPLITE-PRODUCTS", "tlpAlarmType")) if mibBuilder.loadTexts: tlpNotificationsAlarmEntryRemoved.setStatus('current') tlpNotifySystemStartup = NotificationType((1, 3, 6, 1, 4, 1, 850, 1, 4, 1, 3)) if mibBuilder.loadTexts: tlpNotifySystemStartup.setStatus('current') tlpNotifySystemShutdown = NotificationType((1, 3, 6, 1, 4, 1, 850, 1, 4, 1, 4)) if mibBuilder.loadTexts: tlpNotifySystemShutdown.setStatus('current') tlpNotifySystemUpdate = NotificationType((1, 3, 6, 1, 4, 1, 850, 1, 4, 1, 5)) if mibBuilder.loadTexts: tlpNotifySystemUpdate.setStatus('current') mibBuilder.exportSymbols("TRIPPLITE-PRODUCTS", tlpCoolingAlarmCondenserFanFault=tlpCoolingAlarmCondenserFanFault, tlpCoolingAlarmAirFilterClogged=tlpCoolingAlarmAirFilterClogged, tlpUpsInputPhaseCurrent=tlpUpsInputPhaseCurrent, tlpAtsAlarmLoadOff23=tlpAtsAlarmLoadOff23, tlpAgentNumEmailContacts=tlpAgentNumEmailContacts, tlpAtsOutputEntry=tlpAtsOutputEntry, tlpPduSupportsOutletGroup=tlpPduSupportsOutletGroup, tlpPduDeviceTable=tlpPduDeviceTable, tlpAtsOutletGroupRowStatus=tlpAtsOutletGroupRowStatus, tlpUpsConfigColdStart=tlpUpsConfigColdStart, tlpUpsOutletGroupName=tlpUpsOutletGroupName, tlpPduAlarmLoadOff04=tlpPduAlarmLoadOff04, tlpUpsInputPhaseTable=tlpUpsInputPhaseTable, tlpAgentAttributesSupports=tlpAgentAttributesSupports, tlpAtsAlarmInputBad=tlpAtsAlarmInputBad, tlpUpsBatteryPackIdentTable=tlpUpsBatteryPackIdentTable, tlpPduAlarmOutputOverload=tlpPduAlarmOutputOverload, tlpAgentSnmpContactPort=tlpAgentSnmpContactPort, tlpAgentEmailContactAddress=tlpAgentEmailContactAddress, tlpUpsWatchdogSecsBeforeReboot=tlpUpsWatchdogSecsBeforeReboot, tlpSwitchDevice=tlpSwitchDevice, tlpAtsAlarmLoadOff32=tlpAtsAlarmLoadOff32, tlpPduAlarmLoadOff40=tlpPduAlarmLoadOff40, tlpUpsAlarmLoadOff23=tlpUpsAlarmLoadOff23, tlpUpsOutputLineVoltage=tlpUpsOutputLineVoltage, tlpAtsInputPhaseCurrent=tlpAtsInputPhaseCurrent, tlpAtsAlarmTemperature=tlpAtsAlarmTemperature, tlpSwitch=tlpSwitch, tlpPduDeviceMainLoadControllable=tlpPduDeviceMainLoadControllable, tlpUpsInputTable=tlpUpsInputTable, tlpAtsOutputSource=tlpAtsOutputSource, tlpUpsAlarmCurrentAboveThreshold3=tlpUpsAlarmCurrentAboveThreshold3, tlpCoolingDevice=tlpCoolingDevice, tlpEnvAlarmInputContact01=tlpEnvAlarmInputContact01, tlpUpsBattery=tlpUpsBattery, tlpAtsOutputActivePower=tlpAtsOutputActivePower, tlpPduAlarmLoadOff25=tlpPduAlarmLoadOff25, tlpAlarmControlDescr=tlpAlarmControlDescr, tlpUpsDeviceTestResultsStatus=tlpUpsDeviceTestResultsStatus, tlpAtsDeviceMainLoadControllable=tlpAtsDeviceMainLoadControllable, tlpPduAlarmOutputOff=tlpPduAlarmOutputOff, tlpAtsAlarmLoadOff11=tlpAtsAlarmLoadOff11, tlpPduAlarmLoadOff36=tlpPduAlarmLoadOff36, tlpAtsIdentNumOutletGroups=tlpAtsIdentNumOutletGroups, tlpPduAlarmLoadOff14=tlpPduAlarmLoadOff14, tlpUpsIdentNumOutlets=tlpUpsIdentNumOutlets, tlpPduBreakerStatus=tlpPduBreakerStatus, tlpAtsAlarmSource1Outage=tlpAtsAlarmSource1Outage, tlpPduOutletEntry=tlpPduOutletEntry, tlpAtsOutletPhase=tlpAtsOutletPhase, tlpPduInputEntry=tlpPduInputEntry, tlpAtsDeviceMainLoadCommand=tlpAtsDeviceMainLoadCommand, tlpAtsOutputCurrentMax=tlpAtsOutputCurrentMax, tlpCoolingDetail=tlpCoolingDetail, tlpUpsConfigAutoShedOnTransition=tlpUpsConfigAutoShedOnTransition, tlpPduDisplayOrientation=tlpPduDisplayOrientation, tlpUpsAlarmLoadOff22=tlpUpsAlarmLoadOff22, tlpUpsAlarmLoadOff14=tlpUpsAlarmLoadOff14, tlpPduInput=tlpPduInput, tlpAtsConfigSource1BrownoutSet=tlpAtsConfigSource1BrownoutSet, tlpPduAlarmLoadOff28=tlpPduAlarmLoadOff28, tlpPduHeatsinkEntry=tlpPduHeatsinkEntry, tlpUpsAlarmLoadOff31=tlpUpsAlarmLoadOff31, tlpDeviceManufacturer=tlpDeviceManufacturer, tlpCoolingAlarmEvaporatorFailure=tlpCoolingAlarmEvaporatorFailure, tlpPduAlarmInputBad=tlpPduAlarmInputBad, tlpAtsConfigSource2TransferReset=tlpAtsConfigSource2TransferReset, tlpEnvAlarmOutputContact=tlpEnvAlarmOutputContact, tlpEnvIdentTable=tlpEnvIdentTable, tlpAtsAlarmCurrentAboveThresholdA1=tlpAtsAlarmCurrentAboveThresholdA1, tlpEnvOutputContactInAlarm=tlpEnvOutputContactInAlarm, tlpAgentSnmpContactTable=tlpAgentSnmpContactTable, tlpUpsInputPhaseVoltage=tlpUpsInputPhaseVoltage, tlpUpsOutletGroupEntry=tlpUpsOutletGroupEntry, tlpRackTrackAlarms=tlpRackTrackAlarms, tlpCoolingAlarmDischargePressurePersistentHigh=tlpCoolingAlarmDischargePressurePersistentHigh, tlpAtsAlarmOutputOff=tlpAtsAlarmOutputOff, tlpPduSupportsOutletVoltage=tlpPduSupportsOutletVoltage, tlpUpsAlarmLoadOff34=tlpUpsAlarmLoadOff34, tlpCoolingAlarmEvaporatorTemperatureSensorFault=tlpCoolingAlarmEvaporatorTemperatureSensorFault, tlpUpsAlarmLoadOff37=tlpUpsAlarmLoadOff37, tlpAtsConfigSourceSelect=tlpAtsConfigSourceSelect, tlpAtsOutlet=tlpAtsOutlet, tlpUpsOutletGroupTable=tlpUpsOutletGroupTable, tlpAgentSnmpContactSnmpVersion=tlpAgentSnmpContactSnmpVersion, tlpPduAlarmLoadOff30=tlpPduAlarmLoadOff30, tlpPduAlarmLoadOff23=tlpPduAlarmLoadOff23, tlpUpsOutletDescription=tlpUpsOutletDescription, tlpEnvOutputContactNormalState=tlpEnvOutputContactNormalState, tlpPduAlarmCurrentAboveThreshold1=tlpPduAlarmCurrentAboveThreshold1, tlpDeviceIdentDateInstalled=tlpDeviceIdentDateInstalled, tlpAgentAttributesSSHMenuPort=tlpAgentAttributesSSHMenuPort, tlpUpsAlarmTempBad=tlpUpsAlarmTempBad, tlpAtsAlarmLoadOff31=tlpAtsAlarmLoadOff31, tlpUpsOutletCurrent=tlpUpsOutletCurrent, tlpAtsAlarmCircuitBreakerOpen01=tlpAtsAlarmCircuitBreakerOpen01, tlpDeviceIdentEntry=tlpDeviceIdentEntry, tlpUpsAlarmDiagnosticTestFailed=tlpUpsAlarmDiagnosticTestFailed, tlpPduControlTable=tlpPduControlTable, tlpAlarmControlSeverity=tlpAlarmControlSeverity, tlpAtsControlTable=tlpAtsControlTable, tlpAtsCircuitCurrentMin=tlpAtsCircuitCurrentMin, tlpAtsAlarmLoadOff01=tlpAtsAlarmLoadOff01, tlpUpsBatteryPackConfigMinCellVoltage=tlpUpsBatteryPackConfigMinCellVoltage, tlpAtsIdent=tlpAtsIdent, tlpAlarmCommunicationsLost=tlpAlarmCommunicationsLost, tlpUpsControlRamp=tlpUpsControlRamp, tlpPduAlarmLoadOff06=tlpPduAlarmLoadOff06, tlpAtsAlarmLoadOff22=tlpAtsAlarmLoadOff22, tlpUpsControlBypass=tlpUpsControlBypass, tlpPduInputLowTransferVoltage=tlpPduInputLowTransferVoltage, tlpAlarmsWellKnown=tlpAlarmsWellKnown, tlpEnvInputContactIndex=tlpEnvInputContactIndex, tlpAtsIdentNumCircuits=tlpAtsIdentNumCircuits, tlpAtsOutletBank=tlpAtsOutletBank, tlpUpsAlarmShutdownImminent=tlpUpsAlarmShutdownImminent, tlpPduDeviceOutputCurrentPrecision=tlpPduDeviceOutputCurrentPrecision, tlpAtsInputPhaseEntry=tlpAtsInputPhaseEntry, tlpAtsAlarmOutputBad=tlpAtsAlarmOutputBad, tlpAtsOutletCurrent=tlpAtsOutletCurrent, tlpUpsSupportsEntry=tlpUpsSupportsEntry, tlpAtsControlShed=tlpAtsControlShed, tlpAtsAlarmLoadsNotAllOn=tlpAtsAlarmLoadsNotAllOn, tlpUpsInputNominalFrequency=tlpUpsInputNominalFrequency, tlpPduOutletIndex=tlpPduOutletIndex, tlpPduOutletGroupEntry=tlpPduOutletGroupEntry, tlpSwitchIdentNumSwitch=tlpSwitchIdentNumSwitch, tlpAts=tlpAts, tlpAgentAttributesSNMPPort=tlpAgentAttributesSNMPPort, tlpPduAlarmCircuitBreakerOpen06=tlpPduAlarmCircuitBreakerOpen06, tlpAlarmUserDefined03=tlpAlarmUserDefined03, tlpUpsIdentNumOutletGroups=tlpUpsIdentNumOutletGroups, tlpUpsConfigOffMode=tlpUpsConfigOffMode, tlpCoolingAlarmFanUnderCurrent=tlpCoolingAlarmFanUnderCurrent, tlpAgentType=tlpAgentType, tlpUpsAlarmUpsOutputOff=tlpUpsAlarmUpsOutputOff, tlpAgentUuid=tlpAgentUuid, tlpCoolingAlarmRemoteShutdownViaInputContact=tlpCoolingAlarmRemoteShutdownViaInputContact, tlpPduCircuitPowerFactor=tlpPduCircuitPowerFactor, tlpPduAlarmLoadOff21=tlpPduAlarmLoadOff21, tlpDeviceModel=tlpDeviceModel, tlpAgentAttributesSupportsSNMP=tlpAgentAttributesSupportsSNMP, tlpUpsOutletGroupDescription=tlpUpsOutletGroupDescription, tlpPduDevicePowerOnDelay=tlpPduDevicePowerOnDelay, tlpUpsOutputNominalVoltage=tlpUpsOutputNominalVoltage, tlpUpsBatteryPackConfigCellCapacity=tlpUpsBatteryPackConfigCellCapacity, tlpAgentSettings=tlpAgentSettings, tlpEnvIdentTempSupported=tlpEnvIdentTempSupported, tlpUpsBatteryPackConfigEntry=tlpUpsBatteryPackConfigEntry, tlpAgentAttributesSNMPv2cEnabled=tlpAgentAttributesSNMPv2cEnabled, tlpNotifications=tlpNotifications, tlpPduAlarmLoadOff27=tlpPduAlarmLoadOff27, tlpUpsConfigLineSensitivity=tlpUpsConfigLineSensitivity, tlpCoolingAlarmCondensatePumpFault=tlpCoolingAlarmCondensatePumpFault, tlpAtsSupportsEnergywise=tlpAtsSupportsEnergywise, tlpPduCircuitCurrentMax=tlpPduCircuitCurrentMax, tlpPduControlPduReboot=tlpPduControlPduReboot, PYSNMP_MODULE_ID=tlpProducts, tlpUpsControlUpsOff=tlpUpsControlUpsOff, tlpSwitchConfig=tlpSwitchConfig, tlpUpsBatteryPackIdentSerialNum=tlpUpsBatteryPackIdentSerialNum, tlpAtsHeatsink=tlpAtsHeatsink, tlpAgentAttributesAutostartHTTPS=tlpAgentAttributesAutostartHTTPS, tlpCoolingAlarmCompressorFailure=tlpCoolingAlarmCompressorFailure, tlpAtsOutputCurrentMin=tlpAtsOutputCurrentMin, tlpPduOutputEntry=tlpPduOutputEntry, tlpAtsCircuit=tlpAtsCircuit, tlpPduIdentNumPhases=tlpPduIdentNumPhases, tlpAtsDeviceTemperatureF=tlpAtsDeviceTemperatureF, tlpAtsAlarmLoadOff03=tlpAtsAlarmLoadOff03, tlpUpsAlarmLoadOff17=tlpUpsAlarmLoadOff17, tlpUpsBatteryDetailCharge=tlpUpsBatteryDetailCharge, tlpAgentAttributesSnmp=tlpAgentAttributesSnmp, tlpUpsConfigFaultAction=tlpUpsConfigFaultAction, tlpPduDeviceMainLoadCommand=tlpPduDeviceMainLoadCommand, tlpUpsBatteryPackConfigStrings=tlpUpsBatteryPackConfigStrings, tlpAtsOutletIndex=tlpAtsOutletIndex, tlpUps=tlpUps, tlpPduIdentEntry=tlpPduIdentEntry, tlpUpsOutletGroup=tlpUpsOutletGroup, tlpAtsConfigInputVoltage=tlpAtsConfigInputVoltage, tlpAtsInputSourceInUse=tlpAtsInputSourceInUse, tlpCoolingAlarmAirFilterRunHoursViolation=tlpCoolingAlarmAirFilterRunHoursViolation, tlpCoolingAlarmSuctionTemperatureSensorFault=tlpCoolingAlarmSuctionTemperatureSensorFault, tlpPduSupportsTable=tlpPduSupportsTable, tlpUpsOutletGroupRowStatus=tlpUpsOutletGroupRowStatus, tlpPduAlarmCurrentAboveThreshold3=tlpPduAlarmCurrentAboveThreshold3, tlpUpsAlarmLoadOff33=tlpUpsAlarmLoadOff33, tlpPduInputTable=tlpPduInputTable, tlpAtsInputPhaseIndex=tlpAtsInputPhaseIndex, tlpAtsDisplayTable=tlpAtsDisplayTable, tlpAtsConfigSource2BrownoutSet=tlpAtsConfigSource2BrownoutSet, tlpAtsConfigSource1ReturnTime=tlpAtsConfigSource1ReturnTime, tlpUpsBatteryPackIdentEntry=tlpUpsBatteryPackIdentEntry, tlpAlarms=tlpAlarms, tlpUpsAlarmAwaitingPower=tlpUpsAlarmAwaitingPower, tlpPduIdent=tlpPduIdent, tlpAgentAttributesTelnetCLIPort=tlpAgentAttributesTelnetCLIPort, tlpUpsInputHighTransferVoltage=tlpUpsInputHighTransferVoltage, tlpPduInputPhaseVoltageMin=tlpPduInputPhaseVoltageMin, tlpAtsInputBadTransferVoltageUpperBound=tlpAtsInputBadTransferVoltageUpperBound, tlpEnvAlarmOutputContact01=tlpEnvAlarmOutputContact01, tlpUpsOutputLineEntry=tlpUpsOutputLineEntry, tlpAgentAttributesHTTPPort=tlpAgentAttributesHTTPPort, tlpAgentAttributesSNMPTrapPort=tlpAgentAttributesSNMPTrapPort, tlpAtsInputTable=tlpAtsInputTable, tlpPduAlarmLoadOff07=tlpPduAlarmLoadOff07, tlpAtsDeviceGeneralFault=tlpAtsDeviceGeneralFault, tlpAtsAlarmLoadOff39=tlpAtsAlarmLoadOff39, tlpCoolingAlarmSuctionPressureLow=tlpCoolingAlarmSuctionPressureLow, tlpAgentSnmpContactEntry=tlpAgentSnmpContactEntry, tlpCoolingAlarmReturnAirTempHigh=tlpCoolingAlarmReturnAirTempHigh, tlpAtsAlarmCircuitBreakerOpen04=tlpAtsAlarmCircuitBreakerOpen04, tlpPduInputNominalVoltagePhaseToNeutral=tlpPduInputNominalVoltagePhaseToNeutral, tlpRackTrackIdentNumRackTrack=tlpRackTrackIdentNumRackTrack, tlpUpsWatchdogEntry=tlpUpsWatchdogEntry, tlpUpsAlarmBusVoltageUnbalanced=tlpUpsAlarmBusVoltageUnbalanced, tlpAlarmUserDefined07=tlpAlarmUserDefined07, tlpAtsConfigEntry=tlpAtsConfigEntry, tlpPduAlarmLoadOff22=tlpPduAlarmLoadOff22, tlpUpsAlarmLoadOff32=tlpUpsAlarmLoadOff32, tlpAgentAttributesFTPPort=tlpAgentAttributesFTPPort, tlpPduInputPhaseVoltageMax=tlpPduInputPhaseVoltageMax, tlpUpsAlarmDepletedBattery=tlpUpsAlarmDepletedBattery, tlpPduControlRamp=tlpPduControlRamp, tlpUpsAlarmLoadLevelAboveThresholdPhase1=tlpUpsAlarmLoadLevelAboveThresholdPhase1, tlpEnvOutputContactName=tlpEnvOutputContactName, tlpAtsOutputTable=tlpAtsOutputTable, tlpEnvAlarmTemperatureBeyondLimits=tlpEnvAlarmTemperatureBeyondLimits, tlpKvmAlarms=tlpKvmAlarms, tlpPduDevice=tlpPduDevice, tlpAtsControl=tlpAtsControl, tlpAtsOutletGroupState=tlpAtsOutletGroupState, tlpCoolingAlarmFanOverCurrent=tlpCoolingAlarmFanOverCurrent, tlpPduCircuitIndex=tlpPduCircuitIndex, tlpKvmControl=tlpKvmControl, tlpPduDisplayTable=tlpPduDisplayTable, tlpAtsAlarmLoadOff20=tlpAtsAlarmLoadOff20, tlpUpsConfigAutoRestartLowVoltageCutoff=tlpUpsConfigAutoRestartLowVoltageCutoff, tlpPduAlarmOutputBad=tlpPduAlarmOutputBad, tlpAtsBreakerIndex=tlpAtsBreakerIndex, tlpAtsConfigHighVoltageReset=tlpAtsConfigHighVoltageReset, tlpEnvConfig=tlpEnvConfig, tlpEnvTemperatureC=tlpEnvTemperatureC, tlpAtsAlarmOutputOverload=tlpAtsAlarmOutputOverload, tlpPduAlarmLoadOff=tlpPduAlarmLoadOff, tlpEnvTemperatureInAlarm=tlpEnvTemperatureInAlarm, tlpAgentAttributesAutostart=tlpAgentAttributesAutostart, tlpDeviceID=tlpDeviceID, tlpAtsConfigAutoRampOnTransition=tlpAtsConfigAutoRampOnTransition, tlpAtsBreakerStatus=tlpAtsBreakerStatus, tlpUpsOutletVoltage=tlpUpsOutletVoltage, tlpAgentSnmpContactIpAddress=tlpAgentSnmpContactIpAddress, tlpCoolingAlarmDischargePressureHigh=tlpCoolingAlarmDischargePressureHigh) mibBuilder.exportSymbols("TRIPPLITE-PRODUCTS", tlpEnvAlarmHumidityBeyondLimits=tlpEnvAlarmHumidityBeyondLimits, tlpPduAlarmCurrentAboveThreshold2=tlpPduAlarmCurrentAboveThreshold2, tlpCoolingConfig=tlpCoolingConfig, tlpAtsInputLineIndex=tlpAtsInputLineIndex, tlpPduBreakerEntry=tlpPduBreakerEntry, tlpAtsOutput=tlpAtsOutput, tlpPduDeviceTemperatureC=tlpPduDeviceTemperatureC, tlpEnvAlarmOutputContact02=tlpEnvAlarmOutputContact02, tlpAtsCircuitEntry=tlpAtsCircuitEntry, tlpUpsBatteryDetailCurrent=tlpUpsBatteryDetailCurrent, tlpAtsInputPhaseVoltage=tlpAtsInputPhaseVoltage, tlpAtsConfigSourceTransferSetMinimum=tlpAtsConfigSourceTransferSetMinimum, tlpEnvHumidityEntry=tlpEnvHumidityEntry, tlpAgentEmailContactTable=tlpAgentEmailContactTable, tlpUpsConfigAutoRestartDelayedWakeup=tlpUpsConfigAutoRestartDelayedWakeup, tlpUpsConfigOutputFrequency=tlpUpsConfigOutputFrequency, tlpAlarmUserDefined05=tlpAlarmUserDefined05, tlpUpsDeviceTemperatureF=tlpUpsDeviceTemperatureF, tlpEnvAlarmInputContact=tlpEnvAlarmInputContact, tlpUpsConfigAudibleStatus=tlpUpsConfigAudibleStatus, tlpAlarmControlDetail=tlpAlarmControlDetail, tlpAgentSnmpContactRowStatus=tlpAgentSnmpContactRowStatus, tlpUpsAlarmLoadOff20=tlpUpsAlarmLoadOff20, tlpAtsOutletVoltage=tlpAtsOutletVoltage, tlpUpsAlarmRuntimeBelowWarningLevel=tlpUpsAlarmRuntimeBelowWarningLevel, tlpEnvIdent=tlpEnvIdent, tlpAtsAlarmLoadOff=tlpAtsAlarmLoadOff, tlpAtsDeviceMainLoadState=tlpAtsDeviceMainLoadState, tlpPduControlPduOn=tlpPduControlPduOn, tlpCoolingAlarmPowerButtonPressed=tlpCoolingAlarmPowerButtonPressed, tlpEnvInputContactInAlarm=tlpEnvInputContactInAlarm, tlpPduIdentNumBreakers=tlpPduIdentNumBreakers, tlpPduOutletGroupName=tlpPduOutletGroupName, tlpDeviceStatus=tlpDeviceStatus, tlpAtsDeviceTotalInputPowerRating=tlpAtsDeviceTotalInputPowerRating, tlpRackTrackConfig=tlpRackTrackConfig, tlpCoolingAlarmCondenserOutletAirSensorFault=tlpCoolingAlarmCondenserOutletAirSensorFault, tlpAtsOutputPhaseType=tlpAtsOutputPhaseType, tlpUpsAlarmOutputOffAsRequested=tlpUpsAlarmOutputOffAsRequested, tlpPduIdentNumOutputs=tlpPduIdentNumOutputs, tlpUpsOutputLinePercentLoad=tlpUpsOutputLinePercentLoad, tlpPduHeatsinkTemperatureC=tlpPduHeatsinkTemperatureC, tlpEnvOutputContactCurrentState=tlpEnvOutputContactCurrentState, tlpAtsOutletShedAction=tlpAtsOutletShedAction, tlpUpsAlarmOnBattery=tlpUpsAlarmOnBattery, tlpUpsAlarmLoadOff10=tlpUpsAlarmLoadOff10, tlpPduCircuitTotalPower=tlpPduCircuitTotalPower, tlpAlarmAcknowledged=tlpAlarmAcknowledged, tlpDeviceIdentCurrentUptime=tlpDeviceIdentCurrentUptime, tlpAgentAttributesSNMPv3Enabled=tlpAgentAttributesSNMPv3Enabled, tlpUpsAlarmExternalSmartBatteryAgeAboveThreshold=tlpUpsAlarmExternalSmartBatteryAgeAboveThreshold, tlpAgentDetails=tlpAgentDetails, tlpAtsHeatsinkEntry=tlpAtsHeatsinkEntry, tlpUpsOutletShedAction=tlpUpsOutletShedAction, tlpAlarmTime=tlpAlarmTime, tlpUpsAlarmLoadOff29=tlpUpsAlarmLoadOff29, tlpUpsOutletPower=tlpUpsOutletPower, tlpUpsConfig=tlpUpsConfig, tlpUpsAlarmLoadOff07=tlpUpsAlarmLoadOff07, tlpEnvInputContactEntry=tlpEnvInputContactEntry, tlpUpsInputPhaseVoltageMax=tlpUpsInputPhaseVoltageMax, tlpUpsAlarmBatteryAgeAboveThreshold=tlpUpsAlarmBatteryAgeAboveThreshold, tlpUpsBatteryPackDetailCondition=tlpUpsBatteryPackDetailCondition, tlpPduOutletPhase=tlpPduOutletPhase, tlpDeviceIdentFirmwareVersion=tlpDeviceIdentFirmwareVersion, tlpPduSupportsOutletCurrentPower=tlpPduSupportsOutletCurrentPower, tlpAgentAttributesSupportsTelnetMenu=tlpAgentAttributesSupportsTelnetMenu, tlpUpsAlarmUpsSystemOff=tlpUpsAlarmUpsSystemOff, tlpPduAlarmLoadOff01=tlpPduAlarmLoadOff01, tlpEnvConfigTable=tlpEnvConfigTable, tlpEnvOutputContactIndex=tlpEnvOutputContactIndex, tlpPduInputHighTransferVoltageLowerBound=tlpPduInputHighTransferVoltageLowerBound, tlpUpsConfigOutputVoltage=tlpUpsConfigOutputVoltage, tlpUpsAlarmLoadOff35=tlpUpsAlarmLoadOff35, tlpPduAlarms=tlpPduAlarms, tlpAtsAlarmLoadOff17=tlpAtsAlarmLoadOff17, tlpCoolingAlarmSupplyAirSensorFault=tlpCoolingAlarmSupplyAirSensorFault, tlpUpsEstimatedMinutesRemaining=tlpUpsEstimatedMinutesRemaining, tlpAtsAlarmCurrentAboveThresholdA2=tlpAtsAlarmCurrentAboveThresholdA2, tlpPduAlarmCircuitBreakerOpen02=tlpPduAlarmCircuitBreakerOpen02, tlpAtsCircuitTotalCurrent=tlpAtsCircuitTotalCurrent, tlpKvmIdentNumKvm=tlpKvmIdentNumKvm, tlpUpsAlarmSiteWiringFault=tlpUpsAlarmSiteWiringFault, tlpUpsSupportsTable=tlpUpsSupportsTable, tlpSwitchDetail=tlpSwitchDetail, tlpAtsSupportsRampShed=tlpAtsSupportsRampShed, tlpAtsAlarmLoadOff15=tlpAtsAlarmLoadOff15, tlpEnvIdentHumiditySupported=tlpEnvIdentHumiditySupported, tlpAtsConfigSourceTransferSetMaximum=tlpAtsConfigSourceTransferSetMaximum, tlpAtsInputHighTransferVoltageUpperBound=tlpAtsInputHighTransferVoltageUpperBound, tlpPduOutputActivePower=tlpPduOutputActivePower, tlpPduConfigInputVoltage=tlpPduConfigInputVoltage, tlpAtsOutletCircuit=tlpAtsOutletCircuit, tlpUpsAlarmLoadOff25=tlpUpsAlarmLoadOff25, tlpCoolingAlarmCondenserFailure=tlpCoolingAlarmCondenserFailure, tlpUpsOutletTable=tlpUpsOutletTable, tlpUpsBatteryPackConfigCapacityUnits=tlpUpsBatteryPackConfigCapacityUnits, tlpUpsAlarmOutputCurrentChanged=tlpUpsAlarmOutputCurrentChanged, tlpUpsAlarmSmartBatteryCommLost=tlpUpsAlarmSmartBatteryCommLost, tlpAtsAlarmLoadOff27=tlpAtsAlarmLoadOff27, tlpUpsInput=tlpUpsInput, tlpPduControlPduOff=tlpPduControlPduOff, tlpAtsBreakerEntry=tlpAtsBreakerEntry, tlpDeviceRowStatus=tlpDeviceRowStatus, tlpCoolingAlarmSupplyAirTempHigh=tlpCoolingAlarmSupplyAirTempHigh, tlpPduCircuitTable=tlpPduCircuitTable, tlpDeviceIdentSerialNum=tlpDeviceIdentSerialNum, tlpUpsAlarmLoadOff15=tlpUpsAlarmLoadOff15, tlpPduHeatsinkTable=tlpPduHeatsinkTable, tlpAtsCircuitCurrentLimit=tlpAtsCircuitCurrentLimit, tlpPduCircuitCurrentMin=tlpPduCircuitCurrentMin, tlpUpsAlarmLoadOff06=tlpUpsAlarmLoadOff06, tlpAtsAlarmLoadOff16=tlpAtsAlarmLoadOff16, tlpUpsAlarmLoadOff24=tlpUpsAlarmLoadOff24, tlpAlarmDescr=tlpAlarmDescr, tlpDeviceNumDevices=tlpDeviceNumDevices, tlpAtsConfigVoltageRangeTable=tlpAtsConfigVoltageRangeTable, tlpRackTrackControl=tlpRackTrackControl, tlpAtsAlarmCurrentAboveThreshold=tlpAtsAlarmCurrentAboveThreshold, tlpAtsConfigSource2TransferSet=tlpAtsConfigSource2TransferSet, tlpUpsAlarmInverterSoftStartBad=tlpUpsAlarmInverterSoftStartBad, tlpPduOutputCurrentMax=tlpPduOutputCurrentMax, tlpPduControl=tlpPduControl, tlpAtsAlarms=tlpAtsAlarms, tlpCoolingAlarmSuctionPressureSensorFault=tlpCoolingAlarmSuctionPressureSensorFault, tlpRackTrackDetail=tlpRackTrackDetail, tlpAgentNumSnmpContacts=tlpAgentNumSnmpContacts, tlpAtsInputPhaseVoltageMin=tlpAtsInputPhaseVoltageMin, tlpPduInputHighTransferVoltage=tlpPduInputHighTransferVoltage, tlpAtsInputNominalVoltagePhaseToPhase=tlpAtsInputNominalVoltagePhaseToPhase, tlpCoolingAlarmSuctionPressureLowStartFailure=tlpCoolingAlarmSuctionPressureLowStartFailure, tlpPduOutletName=tlpPduOutletName, tlpUpsAlarmShutdownPending=tlpUpsAlarmShutdownPending, tlpAlarmDetail=tlpAlarmDetail, tlpPduAlarmLoadsNotAllOn=tlpPduAlarmLoadsNotAllOn, tlpKvmDevice=tlpKvmDevice, tlpPduAlarmLoadOff17=tlpPduAlarmLoadOff17, tlpAtsConfigSource2ReturnTime=tlpAtsConfigSource2ReturnTime, tlpUpsConfigTable=tlpUpsConfigTable, tlpUpsAlarmLoadLevelAboveThreshold=tlpUpsAlarmLoadLevelAboveThreshold, tlpUpsOutletShedDelay=tlpUpsOutletShedDelay, tlpPduAlarmLoadOff05=tlpPduAlarmLoadOff05, tlpUpsWatchdog=tlpUpsWatchdog, tlpUpsAlarmLowBattery=tlpUpsAlarmLowBattery, tlpAtsAlarmLoadOff21=tlpAtsAlarmLoadOff21, tlpAtsOutletName=tlpAtsOutletName, tlpAlarmState=tlpAlarmState, tlpAtsOutletGroupIndex=tlpAtsOutletGroupIndex, tlpPdu=tlpPdu, tlpAtsAlarmCurrentAboveThresholdB1=tlpAtsAlarmCurrentAboveThresholdB1, tlpAgentSnmpContactSecurityName=tlpAgentSnmpContactSecurityName, tlpPduOutletGroupDescription=tlpPduOutletGroupDescription, tlpAtsOutputPhase=tlpAtsOutputPhase, tlpUpsAlarmLoadLevelAboveThresholdTotal=tlpUpsAlarmLoadLevelAboveThresholdTotal, tlpAtsInputHighTransferVoltage=tlpAtsInputHighTransferVoltage, tlpAlarmType=tlpAlarmType, tlpUpsBatteryPackIdentIndex=tlpUpsBatteryPackIdentIndex, tlpUpsBatteryPackIdentManufacturer=tlpUpsBatteryPackIdentManufacturer, tlpAtsOutletRampDelay=tlpAtsOutletRampDelay, tlpUpsInputPhaseIndex=tlpUpsInputPhaseIndex, tlpAtsInputNominalVoltagePhaseToNeutral=tlpAtsInputNominalVoltagePhaseToNeutral, tlpAlarmEntry=tlpAlarmEntry, tlpPduAlarmLoadOff39=tlpPduAlarmLoadOff39, tlpAgentSnmpContactAuthPassword=tlpAgentSnmpContactAuthPassword, tlpUpsOutputSource=tlpUpsOutputSource, tlpUpsAlarmLoadOff02=tlpUpsAlarmLoadOff02, tlpUpsConfigEntry=tlpUpsConfigEntry, tlpUpsAlarmBusUnderVoltage=tlpUpsAlarmBusUnderVoltage, tlpDeviceType=tlpDeviceType, tlpAtsOutputCurrent=tlpAtsOutputCurrent, tlpEnvInputContactName=tlpEnvInputContactName, tlpAgentConfigRemoteRegistration=tlpAgentConfigRemoteRegistration, tlpPduConfigEntry=tlpPduConfigEntry, tlpPduAlarmCurrentAboveThreshold=tlpPduAlarmCurrentAboveThreshold, tlpUpsIdentNumUps=tlpUpsIdentNumUps, tlpPduDisplayScheme=tlpPduDisplayScheme, tlpAtsControlResetGeneralFault=tlpAtsControlResetGeneralFault, tlpUpsAlarmOnBypass=tlpUpsAlarmOnBypass, tlpCoolingAlarmInverterCommunicationsFault=tlpCoolingAlarmInverterCommunicationsFault, tlpAgentMAC=tlpAgentMAC, tlpRackTrack=tlpRackTrack, tlpEnvAlarmInputContact04=tlpEnvAlarmInputContact04, tlpUpsBatteryDetailChargerStatus=tlpUpsBatteryDetailChargerStatus, tlpUpsAlarmLoadsNotAllOn=tlpUpsAlarmLoadsNotAllOn, tlpUpsAlarmLoadOff39=tlpUpsAlarmLoadOff39, tlpAlarmTableRowRef=tlpAlarmTableRowRef, tlpUpsBatteryPackConfigChemistry=tlpUpsBatteryPackConfigChemistry, tlpAtsDeviceTemperatureC=tlpAtsDeviceTemperatureC, tlpUpsDevicePowerOnDelay=tlpUpsDevicePowerOnDelay, tlpAtsDeviceTable=tlpAtsDeviceTable, tlpAtsOutletControllable=tlpAtsOutletControllable, tlpEnvOutputContactEntry=tlpEnvOutputContactEntry, tlpUpsSupportsOutletCurrentPower=tlpUpsSupportsOutletCurrentPower, tlpAtsAlarmLoadOff09=tlpAtsAlarmLoadOff09, tlpPduIdentNumOutletGroups=tlpPduIdentNumOutletGroups, tlpUpsBatteryPackIdentSKU=tlpUpsBatteryPackIdentSKU, tlpCoolingAlarmDischargePressureSensorFault=tlpCoolingAlarmDischargePressureSensorFault, tlpPduDisplayUnits=tlpPduDisplayUnits, tlpPduAlarmLoadLevelAboveThreshold=tlpPduAlarmLoadLevelAboveThreshold, tlpAgentEmailContacts=tlpAgentEmailContacts, tlpNotify=tlpNotify, tlpAtsAlarmSource1InvalidFrequency=tlpAtsAlarmSource1InvalidFrequency, tlpAtsInputBadVoltageThreshold=tlpAtsInputBadVoltageThreshold, tlpUpsBatteryDetailCapacity=tlpUpsBatteryDetailCapacity, tlpPduOutputPowerFactor=tlpPduOutputPowerFactor, tlpSwitchIdent=tlpSwitchIdent, tlpPduAlarmLoadOff19=tlpPduAlarmLoadOff19, tlpAtsDeviceAggregatePowerFactor=tlpAtsDeviceAggregatePowerFactor, tlpAlarmUserDefined=tlpAlarmUserDefined, tlpPduDeviceEntry=tlpPduDeviceEntry, tlpUpsAlarmLoadOff28=tlpUpsAlarmLoadOff28, tlpAtsOutletGroupDescription=tlpAtsOutletGroupDescription, tlpAtsControlAtsOn=tlpAtsControlAtsOn, tlpUpsBatteryPackConfigNumBatteries=tlpUpsBatteryPackConfigNumBatteries, tlpUpsBypass=tlpUpsBypass, tlpUpsAlarmInverterUnderVoltage=tlpUpsAlarmInverterUnderVoltage, tlpEnvTemperatureF=tlpEnvTemperatureF, tlpAtsInputBadTransferVoltageLowerBound=tlpAtsInputBadTransferVoltageLowerBound, tlpPduCircuit=tlpPduCircuit, tlpPduConfig=tlpPduConfig, tlpAtsAlarmLoadOff13=tlpAtsAlarmLoadOff13, tlpAtsOutletShedDelay=tlpAtsOutletShedDelay, tlpSwitchAlarms=tlpSwitchAlarms, tlpUpsIdentTable=tlpUpsIdentTable, tlpUpsAlarmBatteryUnderVoltage=tlpUpsAlarmBatteryUnderVoltage, tlpEnvAlarmOutputContact04=tlpEnvAlarmOutputContact04, tlpPduInputNominalVoltagePhaseToPhase=tlpPduInputNominalVoltagePhaseToPhase, tlpEnvirosense=tlpEnvirosense, tlpAtsAlarmLoadOff02=tlpAtsAlarmLoadOff02, tlpUpsConfigAutoRestartOverLoad=tlpUpsConfigAutoRestartOverLoad, tlpAtsAlarmLoadOff28=tlpAtsAlarmLoadOff28, tlpAlarmUserDefined06=tlpAlarmUserDefined06, tlpCoolingAlarmSuctionPressurePersistentLow=tlpCoolingAlarmSuctionPressurePersistentLow, tlpUpsBatteryPackDetailTemperatureF=tlpUpsBatteryPackDetailTemperatureF, tlpUpsSupportsOutletGroup=tlpUpsSupportsOutletGroup, tlpCoolingAlarmLowRefrigerantStartupFault=tlpCoolingAlarmLowRefrigerantStartupFault, tlpPduAlarmLoadOff13=tlpPduAlarmLoadOff13, tlpSoftware=tlpSoftware, tlpAlarmUserDefined04=tlpAlarmUserDefined04, tlpAtsOutletEntry=tlpAtsOutletEntry, tlpUpsAlarmLoadOff11=tlpUpsAlarmLoadOff11, tlpCoolingAlarmWaterLeak=tlpCoolingAlarmWaterLeak, tlpPduIdentNumOutlets=tlpPduIdentNumOutlets, tlpPduOutputVoltage=tlpPduOutputVoltage, tlpAtsConfigTable=tlpAtsConfigTable, tlpUpsControl=tlpUpsControl, tlpEnvNumInputContacts=tlpEnvNumInputContacts, tlpPduOutputSource=tlpPduOutputSource, tlpPduAlarmLoadOff18=tlpPduAlarmLoadOff18, tlpUpsBypassTable=tlpUpsBypassTable, tlpPduCircuitTotalCurrent=tlpPduCircuitTotalCurrent, tlpPduDisplayIntensity=tlpPduDisplayIntensity, tlpCoolingAlarms=tlpCoolingAlarms, tlpAlarmControl=tlpAlarmControl) mibBuilder.exportSymbols("TRIPPLITE-PRODUCTS", tlpUpsBypassFrequency=tlpUpsBypassFrequency, tlpAtsBreakerTable=tlpAtsBreakerTable, tlpAtsSupportsOutletVoltage=tlpAtsSupportsOutletVoltage, tlpDevice=tlpDevice, tlpPduAlarmCircuitBreakerOpen=tlpPduAlarmCircuitBreakerOpen, tlpUpsBypassLineCurrent=tlpUpsBypassLineCurrent, tlpPduOutletState=tlpPduOutletState, tlpPduIdentNumCircuits=tlpPduIdentNumCircuits, tlpCoolingAlarmWaterFull=tlpCoolingAlarmWaterFull, tlpUpsOutletControllable=tlpUpsOutletControllable, tlpPduOutletGroupTable=tlpPduOutletGroupTable, tlpUpsBatteryPackConfigStyle=tlpUpsBatteryPackConfigStyle, tlpUpsAlarmUpsOffAsRequested=tlpUpsAlarmUpsOffAsRequested, tlpAtsInputPhaseFrequency=tlpAtsInputPhaseFrequency, tlpPduOutletGroupRowStatus=tlpPduOutletGroupRowStatus, tlpUpsDeviceEntry=tlpUpsDeviceEntry, tlpUpsAlarmBusOverVoltage=tlpUpsAlarmBusOverVoltage, tlpDeviceIdentTotalUptime=tlpDeviceIdentTotalUptime, tlpPduOutputCurrentMin=tlpPduOutputCurrentMin, tlpPduOutputCurrent=tlpPduOutputCurrent, tlpUpsAlarmOutputBad=tlpUpsAlarmOutputBad, tlpPduOutletCircuit=tlpPduOutletCircuit, tlpUpsConfigThresholdTable=tlpUpsConfigThresholdTable, tlpAtsInputSourceTransitionCount=tlpAtsInputSourceTransitionCount, tlpUpsAlarms=tlpUpsAlarms, tlpPduInputPhaseFrequency=tlpPduInputPhaseFrequency, tlpAtsConfigAutoShedOnTransition=tlpAtsConfigAutoShedOnTransition, tlpAtsAlarmSource2Temperature=tlpAtsAlarmSource2Temperature, tlpAgentConfig=tlpAgentConfig, tlpAtsDevice=tlpAtsDevice, tlpUpsOutletEntry=tlpUpsOutletEntry, tlpAtsHeatsinkTemperatureF=tlpAtsHeatsinkTemperatureF, tlpAgentAttributesAutostartSSHMenu=tlpAgentAttributesAutostartSSHMenu, tlpUpsInputPhaseEntry=tlpUpsInputPhaseEntry, tlpPduCircuitInputVoltage=tlpPduCircuitInputVoltage, tlpPduOutletRampDelay=tlpPduOutletRampDelay, tlpAgentEmailContactName=tlpAgentEmailContactName, tlpAtsAlarmLoadLevelAboveThreshold=tlpAtsAlarmLoadLevelAboveThreshold, tlpPduInputPhaseTable=tlpPduInputPhaseTable, tlpCoolingInput=tlpCoolingInput, tlpUpsDetail=tlpUpsDetail, tlpAtsDisplayOrientation=tlpAtsDisplayOrientation, tlpAgentAttributesAutostartTelnetCLI=tlpAgentAttributesAutostartTelnetCLI, tlpPduBreakerIndex=tlpPduBreakerIndex, tlpAtsAlarmCurrentAboveThresholdA3=tlpAtsAlarmCurrentAboveThresholdA3, tlpAtsAlarmLoadOff35=tlpAtsAlarmLoadOff35, tlpAtsAlarmCurrentAboveThresholdB2=tlpAtsAlarmCurrentAboveThresholdB2, tlpAtsOutletGroupEntry=tlpAtsOutletGroupEntry, tlpAtsCircuitInputVoltage=tlpAtsCircuitInputVoltage, tlpUpsBatteryPackConfigCellsPerBattery=tlpUpsBatteryPackConfigCellsPerBattery, tlpUpsOutletGroupIndex=tlpUpsOutletGroupIndex, tlpCoolingAlarmDisconnectedFromDevice=tlpCoolingAlarmDisconnectedFromDevice, tlpAtsHeatsinkTemperatureC=tlpAtsHeatsinkTemperatureC, tlpUpsOutputEntry=tlpUpsOutputEntry, tlpPduOutlet=tlpPduOutlet, tlpAtsAlarmLoadOff05=tlpAtsAlarmLoadOff05, tlpCoolingAlarmReturnAirSensorFault=tlpCoolingAlarmReturnAirSensorFault, tlpRackTrackIdent=tlpRackTrackIdent, tlpUpsOutput=tlpUpsOutput, tlpCoolingAlarmCurrentLimit=tlpCoolingAlarmCurrentLimit, tlpUpsConfigAutoRestartEntry=tlpUpsConfigAutoRestartEntry, tlpEnvAlarmInputContact02=tlpEnvAlarmInputContact02, tlpAgentSnmpContactIndex=tlpAgentSnmpContactIndex, tlpPduInputPhaseVoltage=tlpPduInputPhaseVoltage, tlpAgentSerialNum=tlpAgentSerialNum, tlpUpsBatteryPackDetailTable=tlpUpsBatteryPackDetailTable, tlpUpsInputHighTransferVoltageLowerBound=tlpUpsInputHighTransferVoltageLowerBound, tlpCoolingAlarmCondenserInletAirSensorFault=tlpCoolingAlarmCondenserInletAirSensorFault, tlpUpsAlarmOutputOverload=tlpUpsAlarmOutputOverload, tlpAtsOutletGroupTable=tlpAtsOutletGroupTable, tlpAgentAttributesTelnetMenuPort=tlpAgentAttributesTelnetMenuPort, tlpAtsAlarmLoadOff12=tlpAtsAlarmLoadOff12, tlpUpsInputLowTransferVoltageUpperBound=tlpUpsInputLowTransferVoltageUpperBound, tlpAtsAlarmLoadOff18=tlpAtsAlarmLoadOff18, tlpUpsOutletGroupCommand=tlpUpsOutletGroupCommand, tlpAtsAlarmCircuitBreakerOpen06=tlpAtsAlarmCircuitBreakerOpen06, tlpAgentAttributesAutostartSSHCLI=tlpAgentAttributesAutostartSSHCLI, tlpEnvConfigEntry=tlpEnvConfigEntry, tlpUpsOutletRampAction=tlpUpsOutletRampAction, tlpAgentSnmpContacts=tlpAgentSnmpContacts, tlpAtsConfigOverLoadThreshold=tlpAtsConfigOverLoadThreshold, tlpAtsDisplayUnits=tlpAtsDisplayUnits, tlpAgentAttributesAutostartTelnetMenu=tlpAgentAttributesAutostartTelnetMenu, tlpPduAlarmLoadOff29=tlpPduAlarmLoadOff29, tlpAgentEmailContactEntry=tlpAgentEmailContactEntry, tlpAtsHeatsinkTable=tlpAtsHeatsinkTable, tlpAtsAlarmLoadOff19=tlpAtsAlarmLoadOff19, tlpPduAlarmLoadOff26=tlpPduAlarmLoadOff26, tlpUpsBatteryPackDetailEntry=tlpUpsBatteryPackDetailEntry, tlpEnvNumOutputContacts=tlpEnvNumOutputContacts, tlpAtsIdentNumOutputs=tlpAtsIdentNumOutputs, tlpEnvHumidityHumidity=tlpEnvHumidityHumidity, tlpAtsOutletPower=tlpAtsOutletPower, tlpAlarmControlTable=tlpAlarmControlTable, tlpAtsAlarmLoadOff06=tlpAtsAlarmLoadOff06, tlpUpsConfigBatteryAgeThreshold=tlpUpsConfigBatteryAgeThreshold, tlpAtsIdentNumInputs=tlpAtsIdentNumInputs, tlpEnvTemperatureHighLimit=tlpEnvTemperatureHighLimit, tlpAlarmUserDefined09=tlpAlarmUserDefined09, tlpPduAlarmLoadOff38=tlpPduAlarmLoadOff38, tlpNotifySystemStartup=tlpNotifySystemStartup, tlpUpsConfigEconomicMode=tlpUpsConfigEconomicMode, tlpAtsConfigSourceBrownoutSetMaximum=tlpAtsConfigSourceBrownoutSetMaximum, tlpUpsBypassLineEntry=tlpUpsBypassLineEntry, tlpUpsBatteryPackConfigLocation=tlpUpsBatteryPackConfigLocation, tlpUpsIdentNumInputs=tlpUpsIdentNumInputs, tlpUpsIdent=tlpUpsIdent, tlpUpsAlarmCurrentAboveThreshold2=tlpUpsAlarmCurrentAboveThreshold2, tlpUpsBatteryDetailTable=tlpUpsBatteryDetailTable, tlpAlarmsPresent=tlpAlarmsPresent, tlpAtsInput=tlpAtsInput, tlpAtsCircuitPhase=tlpAtsCircuitPhase, tlpUpsOutletGroupState=tlpUpsOutletGroupState, tlpHardware=tlpHardware, tlpPduAlarmLoadOff31=tlpPduAlarmLoadOff31, tlpPduInputPhaseEntry=tlpPduInputPhaseEntry, tlpAtsAlarmOutage=tlpAtsAlarmOutage, tlpAtsConfigSource1TransferSet=tlpAtsConfigSource1TransferSet, tlpPduInputPhasePhaseType=tlpPduInputPhasePhaseType, tlpPduOutput=tlpPduOutput, tlpAtsAlarmLoadOff08=tlpAtsAlarmLoadOff08, tlpPduAlarmLoadOff09=tlpPduAlarmLoadOff09, tlpUpsAlarmLoadOff=tlpUpsAlarmLoadOff, tlpAtsIdentNumOutlets=tlpAtsIdentNumOutlets, tlpPduOutletGroupIndex=tlpPduOutletGroupIndex, tlpUpsBatterySummaryTable=tlpUpsBatterySummaryTable, tlpUpsAlarmGeneralFault=tlpUpsAlarmGeneralFault, tlpAgentAttributesPorts=tlpAgentAttributesPorts, tlpUpsAlarmLoadOff13=tlpUpsAlarmLoadOff13, tlpAgentConfigCurrentTime=tlpAgentConfigCurrentTime, tlpAgentEmailContactIndex=tlpAgentEmailContactIndex, tlpUpsDeviceTable=tlpUpsDeviceTable, tlpUpsConfigAutoBatteryTest=tlpUpsConfigAutoBatteryTest, tlpUpsInputPhaseFrequency=tlpUpsInputPhaseFrequency, tlpAgentDriverVersion=tlpAgentDriverVersion, tlpUpsAlarmLoadOff19=tlpUpsAlarmLoadOff19, tlpEnvInputContactCurrentState=tlpEnvInputContactCurrentState, tlpUpsSupportsRampShed=tlpUpsSupportsRampShed, tlpAlarmControlEntry=tlpAlarmControlEntry, tlpEnvAlarmInputContact03=tlpEnvAlarmInputContact03, tlpPduHeatsinkTemperatureF=tlpPduHeatsinkTemperatureF, tlpAgentAttributesSupportsSNMPTrap=tlpAgentAttributesSupportsSNMPTrap, tlpAtsAlarmLoadOff07=tlpAtsAlarmLoadOff07, tlpAtsInputCurrentLimit=tlpAtsInputCurrentLimit, tlpAgentVersion=tlpAgentVersion, tlpUpsBatteryPackDetailLastReplaceDate=tlpUpsBatteryPackDetailLastReplaceDate, tlpPduIdentNumInputs=tlpPduIdentNumInputs, tlpPduControlEntry=tlpPduControlEntry, tlpUpsAlarmOverTemperatureProtection=tlpUpsAlarmOverTemperatureProtection, tlpAgentSnmpContactName=tlpAgentSnmpContactName, tlpPduAlarmLoadOff11=tlpPduAlarmLoadOff11, tlpPduAlarmLoadOff02=tlpPduAlarmLoadOff02, tlpNotificationsAlarmEntryAdded=tlpNotificationsAlarmEntryAdded, tlpUpsBatteryPackConfigMaxCellVoltage=tlpUpsBatteryPackConfigMaxCellVoltage, tlpUpsAlarmLoadOff26=tlpUpsAlarmLoadOff26, tlpAtsAlarmOverVoltage=tlpAtsAlarmOverVoltage, tlpAgentAttributesSNMPv1Enabled=tlpAgentAttributesSNMPv1Enabled, tlpUpsBatteryDetailVoltage=tlpUpsBatteryDetailVoltage, tlpUpsDeviceTestDate=tlpUpsDeviceTestDate, tlpAtsAlarmLoadOff40=tlpAtsAlarmLoadOff40, tlpUpsInputLowTransferVoltage=tlpUpsInputLowTransferVoltage, tlpEnvTemperatureEntry=tlpEnvTemperatureEntry, tlpPduOutletDescription=tlpPduOutletDescription, tlpDeviceDetail=tlpDeviceDetail, tlpUpsDevice=tlpUpsDevice, tlpAtsOutputIndex=tlpAtsOutputIndex, tlpAtsInputEntry=tlpAtsInputEntry, tlpUpsAlarmBusStartVoltageLow=tlpUpsAlarmBusStartVoltageLow, tlpAtsAlarmVoltage=tlpAtsAlarmVoltage, tlpAtsAlarmCircuitBreakerOpen05=tlpAtsAlarmCircuitBreakerOpen05, tlpAtsOutputPowerFactor=tlpAtsOutputPowerFactor, tlpDeviceLocation=tlpDeviceLocation, tlpEnvIdentEntry=tlpEnvIdentEntry, tlpPduAlarmLoadOff35=tlpPduAlarmLoadOff35, tlpAtsAlarmSource1Temperature=tlpAtsAlarmSource1Temperature, tlpUpsOutputLineFrequency=tlpUpsOutputLineFrequency, tlpCoolingAlarmEvaporatorCoolingFailure=tlpCoolingAlarmEvaporatorCoolingFailure, tlpAtsCircuitPowerFactor=tlpAtsCircuitPowerFactor, tlpPduIdentNumHeatsinks=tlpPduIdentNumHeatsinks, tlpPduOutletBank=tlpPduOutletBank, tlpAtsAlarmLoadOff38=tlpAtsAlarmLoadOff38, tlpUpsConfigLowBatteryTime=tlpUpsConfigLowBatteryTime, tlpAtsAlarmSource2InvalidFrequency=tlpAtsAlarmSource2InvalidFrequency, tlpUpsWatchdogSupported=tlpUpsWatchdogSupported, tlpAtsConfigOverCurrentThreshold=tlpAtsConfigOverCurrentThreshold, tlpUpsConfigAutoRampOnTransition=tlpUpsConfigAutoRampOnTransition, tlpPduOutletShedAction=tlpPduOutletShedAction, tlpCoolingIdentNumCooling=tlpCoolingIdentNumCooling, tlpAtsConfigOverVoltageThreshold=tlpAtsConfigOverVoltageThreshold, tlpKvm=tlpKvm, tlpUpsIdentNumBypass=tlpUpsIdentNumBypass, tlpUpsDeviceMainLoadState=tlpUpsDeviceMainLoadState, tlpAtsIdentNumHeatsinks=tlpAtsIdentNumHeatsinks, tlpAgentAttributesAutostartHTTP=tlpAgentAttributesAutostartHTTP, tlpNotificationsAlarmEntryRemoved=tlpNotificationsAlarmEntryRemoved, tlpAtsConfigLowVoltageTransfer=tlpAtsConfigLowVoltageTransfer, tlpPduAlarmLoadOff12=tlpPduAlarmLoadOff12, tlpUpsAlarmInputBad=tlpUpsAlarmInputBad, tlpAtsOutletGroupName=tlpAtsOutletGroupName, tlpAtsInputPhaseType=tlpAtsInputPhaseType, tlpAlarmUserDefined08=tlpAlarmUserDefined08, tlpKvmIdent=tlpKvmIdent, tlpUpsIdentEntry=tlpUpsIdentEntry, tlpAtsDisplayAutoScroll=tlpAtsDisplayAutoScroll, tlpUpsBatteryDetailEntry=tlpUpsBatteryDetailEntry, tlpAtsConfigThresholdTable=tlpAtsConfigThresholdTable, tlpPduOutletPower=tlpPduOutletPower, tlpUpsAlarmFanFailure=tlpUpsAlarmFanFailure, tlpUpsConfigLowBatteryThreshold=tlpUpsConfigLowBatteryThreshold, tlpCoolingAlarmAutoCoolingOn=tlpCoolingAlarmAutoCoolingOn, tlpDeviceAlarms=tlpDeviceAlarms, tlpAtsOutletTable=tlpAtsOutletTable, tlpUpsConfigThresholdEntry=tlpUpsConfigThresholdEntry, tlpEnvAlarmOutputContact03=tlpEnvAlarmOutputContact03, tlpAtsInputPhaseTable=tlpAtsInputPhaseTable, tlpUpsInputLineBads=tlpUpsInputLineBads, tlpCoolingAlarmPressureGaugeFailure=tlpCoolingAlarmPressureGaugeFailure, tlpAtsHeatsinkIndex=tlpAtsHeatsinkIndex, tlpPduInputNominalVoltage=tlpPduInputNominalVoltage, tlpAtsInputSourceAvailability=tlpAtsInputSourceAvailability, tlpAgentAttributesSupportsFTP=tlpAgentAttributesSupportsFTP, tlpPduOutletGroupCommand=tlpPduOutletGroupCommand, tlpPduAlarmLoadOff15=tlpPduAlarmLoadOff15, tlpAtsDisplayEntry=tlpAtsDisplayEntry, tlpPduAlarmLoadOff32=tlpPduAlarmLoadOff32, tlpEnvHumidityInAlarm=tlpEnvHumidityInAlarm, tlpAtsOutputVoltage=tlpAtsOutputVoltage, tlpAtsDeviceEntry=tlpAtsDeviceEntry, tlpUpsConfigInputVoltage=tlpUpsConfigInputVoltage, tlpKvmConfig=tlpKvmConfig, tlpPduAlarmCircuitBreakerOpen05=tlpPduAlarmCircuitBreakerOpen05, tlpUpsControlUpsOn=tlpUpsControlUpsOn, tlpAtsOutletState=tlpAtsOutletState, tlpPduIdentTable=tlpPduIdentTable, tlpPduOutletCurrent=tlpPduOutletCurrent, tlpAtsBreaker=tlpAtsBreaker, tlpUpsAlarmLoadOff12=tlpUpsAlarmLoadOff12, tlpAgentIdent=tlpAgentIdent, tlpAtsHeatsinkStatus=tlpAtsHeatsinkStatus, tlpAlarmControlIndex=tlpAlarmControlIndex, tlpPduDeviceTotalInputPowerRating=tlpPduDeviceTotalInputPowerRating, tlpUpsAlarmLoadOff01=tlpUpsAlarmLoadOff01, tlpPduDevicePhaseImbalance=tlpPduDevicePhaseImbalance, tlpPduOutletTable=tlpPduOutletTable, tlpUpsIdentNumOutputs=tlpUpsIdentNumOutputs, tlpAtsAlarmLoadOff25=tlpAtsAlarmLoadOff25, tlpPduCircuitCurrentLimit=tlpPduCircuitCurrentLimit, tlpAtsOutletCommand=tlpAtsOutletCommand, tlpAtsConfigThresholdEntry=tlpAtsConfigThresholdEntry, tlpEnvInputContactNormalState=tlpEnvInputContactNormalState, tlpAtsOutletGroup=tlpAtsOutletGroup, tlpPduInputCurrentLimit=tlpPduInputCurrentLimit, tlpAtsConfigVoltageRangeLimitsTable=tlpAtsConfigVoltageRangeLimitsTable, tlpAtsInputPhaseVoltageMax=tlpAtsInputPhaseVoltageMax) mibBuilder.exportSymbols("TRIPPLITE-PRODUCTS", tlpEnvDetail=tlpEnvDetail, tlpAtsCircuitTable=tlpAtsCircuitTable, tlpPduOutletCommand=tlpPduOutletCommand, tlpUpsBatteryPackConfigTable=tlpUpsBatteryPackConfigTable, tlpPduAlarmLoadOff20=tlpPduAlarmLoadOff20, tlpAtsAlarmSource2OverVoltage=tlpAtsAlarmSource2OverVoltage, tlpNotifySystemShutdown=tlpNotifySystemShutdown, tlpUpsIdentNumPhases=tlpUpsIdentNumPhases, tlpPduAlarmLoadOff37=tlpPduAlarmLoadOff37, tlpUpsBypassEntry=tlpUpsBypassEntry, tlpUpsAlarmLoadOff03=tlpUpsAlarmLoadOff03, tlpAtsCircuitIndex=tlpAtsCircuitIndex, tlpPduHeatsinkStatus=tlpPduHeatsinkStatus, tlpAtsAlarmCircuitBreakerOpen=tlpAtsAlarmCircuitBreakerOpen, tlpUpsAlarmLoadOff04=tlpUpsAlarmLoadOff04, tlpAtsSupportsOutletCurrentPower=tlpAtsSupportsOutletCurrentPower, tlpUpsAlarmCurrentAboveThreshold1=tlpUpsAlarmCurrentAboveThreshold1, tlpAtsIdentNumAts=tlpAtsIdentNumAts, tlpPduOutletVoltage=tlpPduOutletVoltage, tlpAtsOutletRampAction=tlpAtsOutletRampAction, tlpPduBreaker=tlpPduBreaker, tlpPduAlarmLoadOff08=tlpPduAlarmLoadOff08, tlpAtsOutletGroupCommand=tlpAtsOutletGroupCommand, tlpEnvTemperatureLowLimit=tlpEnvTemperatureLowLimit, tlpPduOutletGroup=tlpPduOutletGroup, tlpAtsAlarmLoadOff33=tlpAtsAlarmLoadOff33, tlpDeviceIdentProtocol=tlpDeviceIdentProtocol, tlpUpsBypassLineIndex=tlpUpsBypassLineIndex, tlpAgentAlarms=tlpAgentAlarms, tlpPduIdentNumPdu=tlpPduIdentNumPdu, tlpUpsSupportsOutletVoltage=tlpUpsSupportsOutletVoltage, tlpPduCircuitPhase=tlpPduCircuitPhase, tlpAtsAlarmLoadOff24=tlpAtsAlarmLoadOff24, tlpPduDeviceMainLoadState=tlpPduDeviceMainLoadState, tlpUpsAlarmInverterCircuitBad=tlpUpsAlarmInverterCircuitBad, tlpPduBreakerTable=tlpPduBreakerTable, tlpUpsOutletState=tlpUpsOutletState, tlpAtsInputBadTransferVoltage=tlpAtsInputBadTransferVoltage, tlpUpsOutletRampDelay=tlpUpsOutletRampDelay, tlpUpsOutputLineCurrent=tlpUpsOutputLineCurrent, tlpPduAlarmLoadOff16=tlpPduAlarmLoadOff16, tlpUpsOutputTable=tlpUpsOutputTable, tlpAgentAttributesSSHCLIPort=tlpAgentAttributesSSHCLIPort, tlpAlarmTable=tlpAlarmTable, tlpAtsAlarmSystemTemperature=tlpAtsAlarmSystemTemperature, tlpPduAlarmCircuitBreakerOpen03=tlpPduAlarmCircuitBreakerOpen03, tlpUpsAlarmLoadOff05=tlpUpsAlarmLoadOff05, tlpCooling=tlpCooling, tlpAtsSupportsOutletGroup=tlpAtsSupportsOutletGroup, tlpUpsConfigBypassUpperLimitPercent=tlpUpsConfigBypassUpperLimitPercent, tlpEnvOutputContactTable=tlpEnvOutputContactTable, tlpAtsAlarmGeneralFault=tlpAtsAlarmGeneralFault, tlpSwitchControl=tlpSwitchControl, tlpAtsControlAtsReboot=tlpAtsControlAtsReboot, tlpPduInputLowTransferVoltageLowerBound=tlpPduInputLowTransferVoltageLowerBound, tlpUpsAlarmLoadOff30=tlpUpsAlarmLoadOff30, tlpAgentAttributes=tlpAgentAttributes, tlpPduSupportsEntry=tlpPduSupportsEntry, tlpUpsWatchdogTable=tlpUpsWatchdogTable, tlpAtsDisplayIntensity=tlpAtsDisplayIntensity, tlpUpsAlarmInverterOverVoltage=tlpUpsAlarmInverterOverVoltage, tlpAtsConfig=tlpAtsConfig, tlpUpsAlarmLoadOff09=tlpUpsAlarmLoadOff09, tlpCoolingAlarmStartupLinePressureImbalance=tlpCoolingAlarmStartupLinePressureImbalance, tlpAtsAlarmLoadOff26=tlpAtsAlarmLoadOff26, tlpDeviceIdentHardwareVersion=tlpDeviceIdentHardwareVersion, tlpAtsAlarmLoadOff10=tlpAtsAlarmLoadOff10, tlpAlarmTableRef=tlpAlarmTableRef, tlpUpsInputNominalVoltage=tlpUpsInputNominalVoltage, tlpUpsBatteryPackIdentFirmware=tlpUpsBatteryPackIdentFirmware, tlpAtsInputHighTransferVoltageLowerBound=tlpAtsInputHighTransferVoltageLowerBound, tlpAtsAlarmLoadOff30=tlpAtsAlarmLoadOff30, tlpUpsInputHighTransferVoltageUpperBound=tlpUpsInputHighTransferVoltageUpperBound, tlpUpsOutputLineIndex=tlpUpsOutputLineIndex, tlpUpsSecondsOnBattery=tlpUpsSecondsOnBattery, tlpAtsDeviceOutputPowerTotal=tlpAtsDeviceOutputPowerTotal, tlpUpsDeviceTemperatureC=tlpUpsDeviceTemperatureC, tlpUpsAlarmLoadLevelAboveThresholdPhase2=tlpUpsAlarmLoadLevelAboveThresholdPhase2, tlpAgentAttributesSupportsTelnetCLI=tlpAgentAttributesSupportsTelnetCLI, tlpUpsAlarmLoadOff40=tlpUpsAlarmLoadOff40, tlpUpsAlarmExternalNonSmartBatteryAgeAboveThreshold=tlpUpsAlarmExternalNonSmartBatteryAgeAboveThreshold, tlpUpsInputEntry=tlpUpsInputEntry, tlpPduInputPhaseCurrent=tlpPduInputPhaseCurrent, tlpUpsConfigOverLoadThreshold=tlpUpsConfigOverLoadThreshold, tlpAtsAlarmFrequency=tlpAtsAlarmFrequency, tlpAtsAlarmCircuitBreakerOpen03=tlpAtsAlarmCircuitBreakerOpen03, tlpUpsBypassLineTable=tlpUpsBypassLineTable, tlpPduDeviceTemperatureF=tlpPduDeviceTemperatureF, tlpAgentAttributesSupportsHTTPS=tlpAgentAttributesSupportsHTTPS, tlpAtsAlarmSource2Outage=tlpAtsAlarmSource2Outage, tlpUpsBatterySummaryEntry=tlpUpsBatterySummaryEntry, tlpEnvAlarms=tlpEnvAlarms, tlpEnvHumidityHighLimit=tlpEnvHumidityHighLimit, tlpUpsBypassLinePower=tlpUpsBypassLinePower, tlpAtsAlarmLoadOff34=tlpAtsAlarmLoadOff34, tlpUpsBatteryPackConfigBatteriesPerString=tlpUpsBatteryPackConfigBatteriesPerString, tlpKvmDetail=tlpKvmDetail, tlpAtsAlarmLoadOff04=tlpAtsAlarmLoadOff04, tlpCoolingAlarmEvaporatorFreezeUp=tlpCoolingAlarmEvaporatorFreezeUp, tlpUpsOutlet=tlpUpsOutlet, tlpDeviceName=tlpDeviceName, tlpEnvIdentNumEnvirosense=tlpEnvIdentNumEnvirosense, tlpUpsBatteryPackDetailNextReplaceDate=tlpUpsBatteryPackDetailNextReplaceDate, tlpPduOutputPhaseType=tlpPduOutputPhaseType, tlpAtsSupportsTable=tlpAtsSupportsTable, tlpPduAlarmLoadOff33=tlpPduAlarmLoadOff33, tlpAtsControlAtsOff=tlpAtsControlAtsOff, tlpPduDisplayAutoScroll=tlpPduDisplayAutoScroll, tlpPduAlarmCircuitBreakerOpen04=tlpPduAlarmCircuitBreakerOpen04, tlpPduHeatsink=tlpPduHeatsink, tlpAtsConfigSourceBrownoutSetMinimum=tlpAtsConfigSourceBrownoutSetMinimum, tlpUpsEstimatedChargeRemaining=tlpUpsEstimatedChargeRemaining, tlpUpsOutletIndex=tlpUpsOutletIndex, tlpCoolingOutput=tlpCoolingOutput, tlpAtsCircuitTotalPower=tlpAtsCircuitTotalPower, tlpEnvInputContactTable=tlpEnvInputContactTable, tlpAtsConfigVoltageRangeEntry=tlpAtsConfigVoltageRangeEntry, tlpUpsAlarmLoadOff38=tlpUpsAlarmLoadOff38, tlpUpsConfigBypassLowerLimitVoltage=tlpUpsConfigBypassLowerLimitVoltage, tlpAgentAttributesSupportsHTTP=tlpAgentAttributesSupportsHTTP, tlpEnvHumidityLowLimit=tlpEnvHumidityLowLimit, tlpAtsDevicePhaseImbalance=tlpAtsDevicePhaseImbalance, tlpUpsBypassLineVoltage=tlpUpsBypassLineVoltage, tlpUpsAlarmLoadOff08=tlpUpsAlarmLoadOff08, tlpUpsConfigInputFrequency=tlpUpsConfigInputFrequency, tlpUpsAlarmLoadOff16=tlpUpsAlarmLoadOff16, tlpUpsOutletName=tlpUpsOutletName, tlpPduControlShed=tlpPduControlShed, tlpPduAlarmCircuitBreakerOpen01=tlpPduAlarmCircuitBreakerOpen01, tlpNotifySystemUpdate=tlpNotifySystemUpdate, tlpAtsIdentNumPhases=tlpAtsIdentNumPhases, tlpPduHeatsinkIndex=tlpPduHeatsinkIndex, tlpAtsDetail=tlpAtsDetail, tlpAtsAlarmCircuitBreakerOpen02=tlpAtsAlarmCircuitBreakerOpen02, tlpDeviceTypes=tlpDeviceTypes, tlpDeviceIdentCommPortName=tlpDeviceIdentCommPortName, tlpAtsDisplayScheme=tlpAtsDisplayScheme, tlpUpsAlarmCurrentAboveThreshold=tlpUpsAlarmCurrentAboveThreshold, tlpEnvHumidityTable=tlpEnvHumidityTable, tlpAgentAttributesSupportsSSHCLI=tlpAgentAttributesSupportsSSHCLI, tlpUpsInputLowTransferVoltageLowerBound=tlpUpsInputLowTransferVoltageLowerBound, tlpAtsDeviceOutputCurrentPrecision=tlpAtsDeviceOutputCurrentPrecision, tlpPduOutputPhase=tlpPduOutputPhase, tlpAtsControlEntry=tlpAtsControlEntry, tlpAtsInputNominalVoltage=tlpAtsInputNominalVoltage, tlpUpsBatteryPackDetailAge=tlpUpsBatteryPackDetailAge, tlpUpsConfigAutoRestartOverTemperature=tlpUpsConfigAutoRestartOverTemperature, tlpAtsDevicePowerOnDelay=tlpAtsDevicePowerOnDelay, tlpAtsCircuitCurrentMax=tlpAtsCircuitCurrentMax, tlpPduAlarmLoadOff34=tlpPduAlarmLoadOff34, tlpPduDisplayEntry=tlpPduDisplayEntry, tlpUpsAlarmEPOActive=tlpUpsAlarmEPOActive, tlpPduConfigTable=tlpPduConfigTable, tlpAtsConfigLowVoltageReset=tlpAtsConfigLowVoltageReset, tlpUpsConfigAutoRestartInverterShutdown=tlpUpsConfigAutoRestartInverterShutdown, tlpUpsAlarmLoadOff21=tlpUpsAlarmLoadOff21, tlpAtsAlarmLoadOff37=tlpAtsAlarmLoadOff37, tlpPduAlarmLoadOff03=tlpPduAlarmLoadOff03, tlpUpsIdentNumBatteryPacks=tlpUpsIdentNumBatteryPacks, tlpDeviceEntry=tlpDeviceEntry, tlpUpsAlarmChargerFailed=tlpUpsAlarmChargerFailed, tlpUpsOutputFrequency=tlpUpsOutputFrequency, tlpAtsConfigVoltageRangeLimitsEntry=tlpAtsConfigVoltageRangeLimitsEntry, tlpEnvTemperatureTable=tlpEnvTemperatureTable, tlpUpsConfigAutoRestartAfterShutdown=tlpUpsConfigAutoRestartAfterShutdown, tlpPduAlarmLoadOff24=tlpPduAlarmLoadOff24, tlpAtsConfigSource1TransferReset=tlpAtsConfigSource1TransferReset, tlpUpsBatteryPackConfigDesignCapacity=tlpUpsBatteryPackConfigDesignCapacity, tlpProducts=tlpProducts, tlpUpsConfigAutoRestartTable=tlpUpsConfigAutoRestartTable, tlpUpsAlarmBypassFrequencyBad=tlpUpsAlarmBypassFrequencyBad, tlpAtsIdentEntry=tlpAtsIdentEntry, tlpAtsConfigOverTemperatureThreshold=tlpAtsConfigOverTemperatureThreshold, tlpUpsOutletCommand=tlpUpsOutletCommand, tlpAtsIdentNumBreakers=tlpAtsIdentNumBreakers, tlpUpsAlarmBypassBad=tlpUpsAlarmBypassBad, tlpAgentAttributesAutostartFTP=tlpAgentAttributesAutostartFTP, tlpPduDeviceOutputPowerTotal=tlpPduDeviceOutputPowerTotal, tlpUpsBatteryPackDetailCycleCount=tlpUpsBatteryPackDetailCycleCount, tlpPduDetail=tlpPduDetail, tlpPduOutputTable=tlpPduOutputTable, tlpUpsAlarmLoadOff27=tlpUpsAlarmLoadOff27, tlpUpsConfigBypassUpperLimitVoltage=tlpUpsConfigBypassUpperLimitVoltage, tlpPduInputPhaseIndex=tlpPduInputPhaseIndex, tlpPduSupportsEnergywise=tlpPduSupportsEnergywise, tlpPduCircuitEntry=tlpPduCircuitEntry, tlpPduOutputIndex=tlpPduOutputIndex, tlpUpsAlarmLoadOff36=tlpUpsAlarmLoadOff36, tlpAgentContacts=tlpAgentContacts, tlpCoolingIdent=tlpCoolingIdent, tlpAgentAttributesHTTPSPort=tlpAgentAttributesHTTPSPort, tlpUpsOutputLinePower=tlpUpsOutputLinePower, tlpCoolingControl=tlpCoolingControl, tlpPduInputLowTransferVoltageUpperBound=tlpPduInputLowTransferVoltageUpperBound, tlpUpsConfigBypassLowerLimitPercent=tlpUpsConfigBypassLowerLimitPercent, tlpAgentEmailContactRowStatus=tlpAgentEmailContactRowStatus, tlpDeviceRegion=tlpDeviceRegion, tlpDeviceIdentCommPortType=tlpDeviceIdentCommPortType, tlpAlarmUserDefined01=tlpAlarmUserDefined01, tlpPduInputHighTransferVoltageUpperBound=tlpPduInputHighTransferVoltageUpperBound, tlpAtsCircuitUtilization=tlpAtsCircuitUtilization, tlpAtsSupportsEntry=tlpAtsSupportsEntry, tlpUpsControlSelfTest=tlpUpsControlSelfTest, tlpAtsAlarmLoadOff29=tlpAtsAlarmLoadOff29, tlpUpsBatteryPackIdentModel=tlpUpsBatteryPackIdentModel, tlpUpsDeviceMainLoadControllable=tlpUpsDeviceMainLoadControllable, tlpAtsAlarmCurrentAboveThresholdB3=tlpAtsAlarmCurrentAboveThresholdB3, tlpAgentAttributesSupportsSSHMenu=tlpAgentAttributesSupportsSSHMenu, tlpUpsOutputLineTable=tlpUpsOutputLineTable, tlpUpsControlUpsReboot=tlpUpsControlUpsReboot, tlpUpsAlarmLoadOff18=tlpUpsAlarmLoadOff18, tlpPduOutletShedDelay=tlpPduOutletShedDelay, tlpUpsBatteryPackDetailTemperatureC=tlpUpsBatteryPackDetailTemperatureC, tlpUpsControlEntry=tlpUpsControlEntry, tlpUpsBatteryRunTimeRemaining=tlpUpsBatteryRunTimeRemaining, tlpUpsAlarmBatteryOverVoltage=tlpUpsAlarmBatteryOverVoltage, tlpAtsAlarmSource1OverVoltage=tlpAtsAlarmSource1OverVoltage, tlpAtsInputFairVoltageThreshold=tlpAtsInputFairVoltageThreshold, tlpUpsAlarmOverCharged=tlpUpsAlarmOverCharged, tlpAgentAttributesAutostartSNMP=tlpAgentAttributesAutostartSNMP, tlpUpsSupportsEnergywise=tlpUpsSupportsEnergywise, tlpPduOutletControllable=tlpPduOutletControllable, tlpAtsIdentTable=tlpAtsIdentTable, tlpUpsDeviceMainLoadCommand=tlpUpsDeviceMainLoadCommand, tlpUpsControlTable=tlpUpsControlTable, tlpPduOutletRampAction=tlpPduOutletRampAction, tlpDeviceTable=tlpDeviceTable, tlpAtsOutletDescription=tlpAtsOutletDescription, tlpDeviceIdentTable=tlpDeviceIdentTable, tlpAtsAlarmLoadOff14=tlpAtsAlarmLoadOff14, tlpDeviceIndex=tlpDeviceIndex, tlpUpsAlarmFuseFailure=tlpUpsAlarmFuseFailure, tlpAlarmId=tlpAlarmId, tlpPduOutletGroupState=tlpPduOutletGroupState, tlpAgentSnmpContactPrivPassword=tlpAgentSnmpContactPrivPassword, tlpUpsAlarmBatteryBad=tlpUpsAlarmBatteryBad, tlpAlarmUserDefined02=tlpAlarmUserDefined02, tlpUpsInputPhaseVoltageMin=tlpUpsInputPhaseVoltageMin, tlpPduCircuitUtilization=tlpPduCircuitUtilization, tlpRackTrackDevice=tlpRackTrackDevice, tlpPduSupportsRampShed=tlpPduSupportsRampShed, tlpUpsInputPhasePower=tlpUpsInputPhasePower, tlpPduDeviceAggregatePowerFactor=tlpPduDeviceAggregatePowerFactor, tlpUpsAlarmLoadLevelAboveThresholdPhase3=tlpUpsAlarmLoadLevelAboveThresholdPhase3, tlpUpsBatteryStatus=tlpUpsBatteryStatus, tlpAtsControlRamp=tlpAtsControlRamp, tlpAtsConfigHighVoltageTransfer=tlpAtsConfigHighVoltageTransfer, tlpUpsControlShed=tlpUpsControlShed, tlpPduAlarmLoadOff10=tlpPduAlarmLoadOff10, tlpAtsAlarmLoadOff36=tlpAtsAlarmLoadOff36)
(integer, object_identifier, octet_string) = mibBuilder.importSymbols('ASN1', 'Integer', 'ObjectIdentifier', 'OctetString') (named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues') (constraints_union, single_value_constraint, constraints_intersection, value_size_constraint, value_range_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ConstraintsUnion', 'SingleValueConstraint', 'ConstraintsIntersection', 'ValueSizeConstraint', 'ValueRangeConstraint') (notification_group, module_compliance, object_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'NotificationGroup', 'ModuleCompliance', 'ObjectGroup') (integer32, mib_scalar, mib_table, mib_table_row, mib_table_column, notification_type, mib_identifier, bits, time_ticks, counter64, unsigned32, enterprises, module_identity, gauge32, iso, object_identity, ip_address, counter32) = mibBuilder.importSymbols('SNMPv2-SMI', 'Integer32', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'NotificationType', 'MibIdentifier', 'Bits', 'TimeTicks', 'Counter64', 'Unsigned32', 'enterprises', 'ModuleIdentity', 'Gauge32', 'iso', 'ObjectIdentity', 'IpAddress', 'Counter32') (display_string, truth_value, row_status, textual_convention, time_stamp) = mibBuilder.importSymbols('SNMPv2-TC', 'DisplayString', 'TruthValue', 'RowStatus', 'TextualConvention', 'TimeStamp') (tripplite,) = mibBuilder.importSymbols('TRIPPLITE', 'tripplite') tlp_products = module_identity((1, 3, 6, 1, 4, 1, 850, 1)) tlpProducts.setRevisions(('2016-06-22 11:15', '2016-02-02 11:15', '2016-01-25 12:30', '2016-01-20 12:00', '2016-01-08 11:40', '2015-11-25 13:00', '2015-11-10 13:00', '2015-10-16 12:30', '2015-08-19 12:00', '2014-12-04 10:00', '2014-04-14 09:00')) if mibBuilder.loadTexts: tlpProducts.setLastUpdated('201606221115Z') if mibBuilder.loadTexts: tlpProducts.setOrganization('Tripp Lite') tlp_hardware = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1)) tlp_software = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 2)) tlp_alarms = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 3)) tlp_notify = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 4)) tlp_device = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 1)) tlp_device_detail = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 2)) tlp_device_types = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3)) tlp_ups = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1)) tlp_pdu = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2)) tlp_envirosense = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3)) tlp_ats = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4)) tlp_cooling = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 5)) tlp_kvm = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 6)) tlp_rack_track = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 7)) tlp_switch = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 8)) tlp_ups_ident = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1)) tlp_ups_device = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 2)) tlp_ups_detail = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3)) tlp_ups_control = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 4)) tlp_ups_config = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5)) tlp_ups_battery = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1)) tlp_ups_input = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2)) tlp_ups_output = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 3)) tlp_ups_bypass = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 4)) tlp_ups_outlet = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5)) tlp_ups_watchdog = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 6)) tlp_pdu_ident = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1)) tlp_pdu_device = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 2)) tlp_pdu_detail = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3)) tlp_pdu_control = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 4)) tlp_pdu_config = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 5)) tlp_pdu_input = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1)) tlp_pdu_output = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 2)) tlp_pdu_outlet = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3)) tlp_pdu_circuit = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 4)) tlp_pdu_breaker = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 5)) tlp_pdu_heatsink = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 6)) tlp_env_ident = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 1)) tlp_env_detail = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3)) tlp_env_config = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 5)) tlp_ats_ident = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1)) tlp_ats_device = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 2)) tlp_ats_detail = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3)) tlp_ats_control = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 4)) tlp_ats_config = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5)) tlp_ats_input = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1)) tlp_ats_output = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 2)) tlp_ats_outlet = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3)) tlp_ats_circuit = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 4)) tlp_ats_breaker = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 5)) tlp_ats_heatsink = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 6)) tlp_cooling_ident = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 5, 1)) tlp_cooling_device = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 5, 2)) tlp_cooling_detail = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 5, 3)) tlp_cooling_control = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 5, 4)) tlp_cooling_config = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 5, 5)) tlp_cooling_input = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 5, 3, 1)) tlp_cooling_output = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 5, 3, 2)) tlp_kvm_ident = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 6, 1)) tlp_kvm_device = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 6, 2)) tlp_kvm_detail = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 6, 3)) tlp_kvm_control = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 6, 4)) tlp_kvm_config = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 6, 5)) tlp_rack_track_ident = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 7, 1)) tlp_rack_track_device = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 7, 2)) tlp_rack_track_detail = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 7, 3)) tlp_rack_track_control = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 7, 4)) tlp_rack_track_config = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 7, 5)) tlp_switch_ident = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 8, 1)) tlp_switch_device = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 8, 2)) tlp_switch_detail = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 8, 3)) tlp_switch_control = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 8, 4)) tlp_switch_config = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 8, 5)) tlp_agent_details = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 2, 1)) tlp_agent_settings = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 2, 2)) tlp_agent_contacts = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 2, 3)) tlp_agent_ident = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 1)) tlp_agent_attributes = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2)) tlp_agent_config = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 2, 2, 1)) tlp_agent_email_contacts = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 1)) tlp_agent_snmp_contacts = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 2)) tlp_alarms_well_known = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3)) tlp_alarm_control = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 4)) tlp_agent_alarms = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 1)) tlp_device_alarms = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 2)) tlp_ups_alarms = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3)) tlp_pdu_alarms = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4)) tlp_env_alarms = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 5)) tlp_ats_alarms = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6)) tlp_cooling_alarms = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7)) tlp_kvm_alarms = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 8)) tlp_rack_track_alarms = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 9)) tlp_switch_alarms = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 10)) tlp_notifications = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 4, 1)) tlp_device_num_devices = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 1, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpDeviceNumDevices.setStatus('current') tlp_device_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 1, 2)) if mibBuilder.loadTexts: tlpDeviceTable.setStatus('current') tlp_device_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 1, 2, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex')) if mibBuilder.loadTexts: tlpDeviceEntry.setStatus('current') tlp_device_index = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 1, 2, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpDeviceIndex.setStatus('current') tlp_device_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 1, 2, 1, 2), row_status()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpDeviceRowStatus.setStatus('current') tlp_device_type = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 1, 2, 1, 3), object_identifier()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpDeviceType.setStatus('current') tlp_device_manufacturer = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 1, 2, 1, 4), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpDeviceManufacturer.setStatus('current') tlp_device_model = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 1, 2, 1, 5), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpDeviceModel.setStatus('current') tlp_device_name = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 1, 2, 1, 6), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpDeviceName.setStatus('current') tlp_device_id = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 1, 2, 1, 7), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpDeviceID.setStatus('current') tlp_device_location = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 1, 2, 1, 8), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpDeviceLocation.setStatus('current') tlp_device_region = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 1, 2, 1, 9), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpDeviceRegion.setStatus('current') tlp_device_status = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 1, 2, 1, 10), integer32().subtype(subtypeSpec=single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7)).clone(namedValues=named_values(('none', 0), ('critical', 1), ('warning', 2), ('info', 3), ('status', 4), ('offline', 5), ('custom', 6), ('configuration', 7)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpDeviceStatus.setStatus('current') tlp_device_ident_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 2, 1)) if mibBuilder.loadTexts: tlpDeviceIdentTable.setStatus('current') tlp_device_ident_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 2, 1, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex')) if mibBuilder.loadTexts: tlpDeviceIdentEntry.setStatus('current') tlp_device_ident_protocol = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 2, 1, 1, 1), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpDeviceIdentProtocol.setStatus('current') tlp_device_ident_comm_port_type = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 2, 1, 1, 2), integer32().subtype(subtypeSpec=single_value_constraint(0, 1, 2, 3, 4, 5)).clone(namedValues=named_values(('unknown', 0), ('serial', 1), ('usb', 2), ('hid', 3), ('simulated', 4), ('unittest', 5)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpDeviceIdentCommPortType.setStatus('current') tlp_device_ident_comm_port_name = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 2, 1, 1, 3), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpDeviceIdentCommPortName.setStatus('current') tlp_device_ident_firmware_version = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 2, 1, 1, 4), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpDeviceIdentFirmwareVersion.setStatus('current') tlp_device_ident_serial_num = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 2, 1, 1, 5), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpDeviceIdentSerialNum.setStatus('current') tlp_device_ident_date_installed = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 2, 1, 1, 6), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpDeviceIdentDateInstalled.setStatus('current') tlp_device_ident_hardware_version = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 2, 1, 1, 7), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpDeviceIdentHardwareVersion.setStatus('current') tlp_device_ident_current_uptime = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 2, 1, 1, 8), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpDeviceIdentCurrentUptime.setStatus('current') tlp_device_ident_total_uptime = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 2, 1, 1, 9), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpDeviceIdentTotalUptime.setStatus('current') tlp_ups_ident_num_ups = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsIdentNumUps.setStatus('current') tlp_ups_ident_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 2)) if mibBuilder.loadTexts: tlpUpsIdentTable.setStatus('current') tlp_ups_ident_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 2, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex')) if mibBuilder.loadTexts: tlpUpsIdentEntry.setStatus('current') tlp_ups_ident_num_inputs = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 2, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsIdentNumInputs.setStatus('current') tlp_ups_ident_num_outputs = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 2, 1, 2), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsIdentNumOutputs.setStatus('current') tlp_ups_ident_num_bypass = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 2, 1, 3), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsIdentNumBypass.setStatus('current') tlp_ups_ident_num_phases = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 2, 1, 4), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsIdentNumPhases.setStatus('current') tlp_ups_ident_num_outlets = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 2, 1, 5), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsIdentNumOutlets.setStatus('current') tlp_ups_ident_num_outlet_groups = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 2, 1, 6), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsIdentNumOutletGroups.setStatus('current') tlp_ups_ident_num_battery_packs = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 2, 1, 7), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsIdentNumBatteryPacks.setStatus('current') tlp_ups_supports_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 3)) if mibBuilder.loadTexts: tlpUpsSupportsTable.setStatus('current') tlp_ups_supports_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 3, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex')) if mibBuilder.loadTexts: tlpUpsSupportsEntry.setStatus('current') tlp_ups_supports_energywise = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 3, 1, 1), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsSupportsEnergywise.setStatus('current') tlp_ups_supports_ramp_shed = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 3, 1, 2), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsSupportsRampShed.setStatus('current') tlp_ups_supports_outlet_group = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 3, 1, 3), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsSupportsOutletGroup.setStatus('current') tlp_ups_supports_outlet_current_power = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 3, 1, 4), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsSupportsOutletCurrentPower.setStatus('current') tlp_ups_supports_outlet_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 3, 1, 5), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsSupportsOutletVoltage.setStatus('current') tlp_ups_device_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 2, 1)) if mibBuilder.loadTexts: tlpUpsDeviceTable.setStatus('current') tlp_ups_device_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 2, 1, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex')) if mibBuilder.loadTexts: tlpUpsDeviceEntry.setStatus('current') tlp_ups_device_main_load_state = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 2, 1, 1, 1), integer32().subtype(subtypeSpec=single_value_constraint(0, 1, 2)).clone(namedValues=named_values(('unknown', 0), ('off', 1), ('on', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsDeviceMainLoadState.setStatus('current') tlp_ups_device_main_load_controllable = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 2, 1, 1, 2), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsDeviceMainLoadControllable.setStatus('current') tlp_ups_device_main_load_command = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 2, 1, 1, 3), integer32().subtype(subtypeSpec=single_value_constraint(0, 1, 2, 3)).clone(namedValues=named_values(('idle', 0), ('turnOff', 1), ('turnOn', 2), ('cycle', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsDeviceMainLoadCommand.setStatus('current') tlp_ups_device_power_on_delay = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 2, 1, 1, 4), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsDevicePowerOnDelay.setStatus('current') tlp_ups_device_test_date = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 2, 1, 1, 5), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsDeviceTestDate.setStatus('current') tlp_ups_device_test_results_status = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 2, 1, 1, 6), integer32().subtype(subtypeSpec=single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9)).clone(namedValues=named_values(('noTest', 0), ('doneAndPassed', 1), ('doneAndWarning', 2), ('doneAndError', 3), ('aborted', 4), ('inProgress', 5), ('noTestInitiated', 6), ('badBattery', 7), ('overCurrent', 8), ('batteryFailed', 9)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsDeviceTestResultsStatus.setStatus('current') tlp_ups_device_temperature_c = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 2, 1, 1, 7), integer32()).setUnits('degrees Centigrade').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsDeviceTemperatureC.setStatus('current') tlp_ups_device_temperature_f = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 2, 1, 1, 8), integer32()).setUnits('degrees Farenheit').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsDeviceTemperatureF.setStatus('current') tlp_ups_battery_summary_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 1)) if mibBuilder.loadTexts: tlpUpsBatterySummaryTable.setStatus('current') tlp_ups_battery_summary_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 1, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex')) if mibBuilder.loadTexts: tlpUpsBatterySummaryEntry.setStatus('current') tlp_ups_battery_status = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 1, 1, 1), integer32().subtype(subtypeSpec=single_value_constraint(1, 2, 3, 4)).clone(namedValues=named_values(('unknown', 1), ('batteryNormal', 2), ('batteryLow', 3), ('batteryDepleted', 4)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsBatteryStatus.setStatus('current') tlp_ups_seconds_on_battery = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 1, 1, 2), unsigned32()).setUnits('seconds').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsSecondsOnBattery.setStatus('current') tlp_ups_estimated_minutes_remaining = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 1, 1, 3), unsigned32()).setUnits('minutes').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsEstimatedMinutesRemaining.setStatus('current') tlp_ups_estimated_charge_remaining = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 1, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(0, 100))).setUnits('percent').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsEstimatedChargeRemaining.setStatus('current') tlp_ups_battery_run_time_remaining = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 1, 1, 5), time_ticks()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsBatteryRunTimeRemaining.setStatus('current') tlp_ups_battery_detail_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 2)) if mibBuilder.loadTexts: tlpUpsBatteryDetailTable.setStatus('current') tlp_ups_battery_detail_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 2, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex')) if mibBuilder.loadTexts: tlpUpsBatteryDetailEntry.setStatus('current') tlp_ups_battery_detail_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 2, 1, 1), unsigned32()).setUnits('0.1 Volt DC').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsBatteryDetailVoltage.setStatus('current') tlp_ups_battery_detail_current = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 2, 1, 2), unsigned32()).setUnits('0.1 Amp DC').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsBatteryDetailCurrent.setStatus('current') tlp_ups_battery_detail_capacity = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 2, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 100))).setUnits('percent').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsBatteryDetailCapacity.setStatus('current') tlp_ups_battery_detail_charge = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 2, 1, 4), integer32().subtype(subtypeSpec=single_value_constraint(0, 1, 2, 3, 4, 5)).clone(namedValues=named_values(('floating', 0), ('charging', 1), ('resting', 2), ('discharging', 3), ('normal', 4), ('standby', 5)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsBatteryDetailCharge.setStatus('current') tlp_ups_battery_detail_charger_status = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 2, 1, 5), integer32().subtype(subtypeSpec=single_value_constraint(0, 1)).clone(namedValues=named_values(('ok', 0), ('inFaultCondition', 1)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsBatteryDetailChargerStatus.setStatus('current') tlp_ups_battery_pack_ident_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 3)) if mibBuilder.loadTexts: tlpUpsBatteryPackIdentTable.setStatus('current') tlp_ups_battery_pack_ident_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 3, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex'), (0, 'TRIPPLITE-PRODUCTS', 'tlpUpsBatteryPackIdentIndex')) if mibBuilder.loadTexts: tlpUpsBatteryPackIdentEntry.setStatus('current') tlp_ups_battery_pack_ident_index = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 3, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsBatteryPackIdentIndex.setStatus('current') tlp_ups_battery_pack_ident_manufacturer = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 3, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsBatteryPackIdentManufacturer.setStatus('current') tlp_ups_battery_pack_ident_model = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 3, 1, 3), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsBatteryPackIdentModel.setStatus('current') tlp_ups_battery_pack_ident_serial_num = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 3, 1, 4), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsBatteryPackIdentSerialNum.setStatus('current') tlp_ups_battery_pack_ident_firmware = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 3, 1, 5), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsBatteryPackIdentFirmware.setStatus('current') tlp_ups_battery_pack_ident_sku = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 3, 1, 6), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsBatteryPackIdentSKU.setStatus('current') tlp_ups_battery_pack_config_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 4)) if mibBuilder.loadTexts: tlpUpsBatteryPackConfigTable.setStatus('current') tlp_ups_battery_pack_config_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 4, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex'), (0, 'TRIPPLITE-PRODUCTS', 'tlpUpsBatteryPackIdentIndex')) if mibBuilder.loadTexts: tlpUpsBatteryPackConfigEntry.setStatus('current') tlp_ups_battery_pack_config_chemistry = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 4, 1, 1), integer32().subtype(subtypeSpec=single_value_constraint(0, 1, 2, 3)).clone(namedValues=named_values(('unknown', 0), ('leadAcid', 1), ('nickelCadmium', 2), ('lithiumIon', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsBatteryPackConfigChemistry.setStatus('current') tlp_ups_battery_pack_config_style = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 4, 1, 2), integer32().subtype(subtypeSpec=single_value_constraint(0, 1, 2, 3)).clone(namedValues=named_values(('unknown', 0), ('nonsmart', 1), ('smart', 2), ('bms', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsBatteryPackConfigStyle.setStatus('current') tlp_ups_battery_pack_config_location = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 4, 1, 3), integer32().subtype(subtypeSpec=single_value_constraint(0, 1, 2)).clone(namedValues=named_values(('unknown', 0), ('internal', 1), ('external', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsBatteryPackConfigLocation.setStatus('current') tlp_ups_battery_pack_config_strings = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 4, 1, 4), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsBatteryPackConfigStrings.setStatus('current') tlp_ups_battery_pack_config_batteries_per_string = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 4, 1, 5), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsBatteryPackConfigBatteriesPerString.setStatus('current') tlp_ups_battery_pack_config_cells_per_battery = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 4, 1, 6), integer32().subtype(subtypeSpec=single_value_constraint(0, 1, 2, 4, 6)).clone(namedValues=named_values(('unknown', 0), ('one', 1), ('two', 2), ('four', 4), ('six', 6)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsBatteryPackConfigCellsPerBattery.setStatus('current') tlp_ups_battery_pack_config_num_batteries = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 4, 1, 7), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsBatteryPackConfigNumBatteries.setStatus('current') tlp_ups_battery_pack_config_capacity_units = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 4, 1, 8), integer32().subtype(subtypeSpec=single_value_constraint(0, 1)).clone(namedValues=named_values(('mAHr', 0), ('mWHr', 1)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsBatteryPackConfigCapacityUnits.setStatus('current') tlp_ups_battery_pack_config_design_capacity = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 4, 1, 9), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsBatteryPackConfigDesignCapacity.setStatus('current') tlp_ups_battery_pack_config_cell_capacity = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 4, 1, 10), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsBatteryPackConfigCellCapacity.setStatus('current') tlp_ups_battery_pack_config_min_cell_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 4, 1, 11), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsBatteryPackConfigMinCellVoltage.setStatus('current') tlp_ups_battery_pack_config_max_cell_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 4, 1, 12), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsBatteryPackConfigMaxCellVoltage.setStatus('current') tlp_ups_battery_pack_detail_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 5)) if mibBuilder.loadTexts: tlpUpsBatteryPackDetailTable.setStatus('current') tlp_ups_battery_pack_detail_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 5, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex'), (0, 'TRIPPLITE-PRODUCTS', 'tlpUpsBatteryPackIdentIndex')) if mibBuilder.loadTexts: tlpUpsBatteryPackDetailEntry.setStatus('current') tlp_ups_battery_pack_detail_condition = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 5, 1, 1), integer32().subtype(subtypeSpec=single_value_constraint(0, 1, 2, 3)).clone(namedValues=named_values(('unknown', 0), ('good', 1), ('weak', 2), ('bad', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsBatteryPackDetailCondition.setStatus('current') tlp_ups_battery_pack_detail_temperature_c = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 5, 1, 2), unsigned32()).setUnits('degrees Centigrade').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsBatteryPackDetailTemperatureC.setStatus('current') tlp_ups_battery_pack_detail_temperature_f = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 5, 1, 3), unsigned32()).setUnits('0.1 degrees Farenheit').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsBatteryPackDetailTemperatureF.setStatus('current') tlp_ups_battery_pack_detail_age = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 5, 1, 4), unsigned32()).setUnits('0.1 Years').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsBatteryPackDetailAge.setStatus('current') tlp_ups_battery_pack_detail_last_replace_date = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 5, 1, 5), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsBatteryPackDetailLastReplaceDate.setStatus('current') tlp_ups_battery_pack_detail_next_replace_date = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 5, 1, 6), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsBatteryPackDetailNextReplaceDate.setStatus('current') tlp_ups_battery_pack_detail_cycle_count = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 5, 1, 7), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsBatteryPackDetailCycleCount.setStatus('current') tlp_ups_input_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 1)) if mibBuilder.loadTexts: tlpUpsInputTable.setStatus('current') tlp_ups_input_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 1, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex')) if mibBuilder.loadTexts: tlpUpsInputEntry.setStatus('current') tlp_ups_input_line_bads = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 1, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsInputLineBads.setStatus('current') tlp_ups_input_nominal_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 1, 1, 2), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsInputNominalVoltage.setStatus('current') tlp_ups_input_nominal_frequency = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 1, 1, 3), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsInputNominalFrequency.setStatus('current') tlp_ups_input_low_transfer_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 1, 1, 4), unsigned32()).setUnits('0.1 Volts').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsInputLowTransferVoltage.setStatus('current') tlp_ups_input_low_transfer_voltage_lower_bound = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 1, 1, 5), unsigned32()).setUnits('0.1 Volts').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsInputLowTransferVoltageLowerBound.setStatus('current') tlp_ups_input_low_transfer_voltage_upper_bound = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 1, 1, 6), unsigned32()).setUnits('0.1 Volts').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsInputLowTransferVoltageUpperBound.setStatus('current') tlp_ups_input_high_transfer_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 1, 1, 7), unsigned32()).setUnits('0.1 Volts').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsInputHighTransferVoltage.setStatus('current') tlp_ups_input_high_transfer_voltage_lower_bound = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 1, 1, 8), unsigned32()).setUnits('0.1 Volts').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsInputHighTransferVoltageLowerBound.setStatus('current') tlp_ups_input_high_transfer_voltage_upper_bound = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 1, 1, 9), unsigned32()).setUnits('0.1 Volts').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsInputHighTransferVoltageUpperBound.setStatus('current') tlp_ups_input_phase_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 2)) if mibBuilder.loadTexts: tlpUpsInputPhaseTable.setStatus('current') tlp_ups_input_phase_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 2, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex'), (0, 'TRIPPLITE-PRODUCTS', 'tlpUpsInputPhaseIndex')) if mibBuilder.loadTexts: tlpUpsInputPhaseEntry.setStatus('current') tlp_ups_input_phase_index = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 2, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsInputPhaseIndex.setStatus('current') tlp_ups_input_phase_frequency = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 2, 1, 2), unsigned32()).setUnits('0.1 Hertz').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsInputPhaseFrequency.setStatus('current') tlp_ups_input_phase_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 2, 1, 3), unsigned32()).setUnits('0.1 Volt DC').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsInputPhaseVoltage.setStatus('current') tlp_ups_input_phase_voltage_min = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 2, 1, 4), unsigned32()).setUnits('0.1 Volt DC').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsInputPhaseVoltageMin.setStatus('current') tlp_ups_input_phase_voltage_max = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 2, 1, 5), unsigned32()).setUnits('0.1 Volt DC').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsInputPhaseVoltageMax.setStatus('current') tlp_ups_input_phase_current = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 2, 1, 6), unsigned32()).setUnits('0.01 Amp DC').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsInputPhaseCurrent.setStatus('current') tlp_ups_input_phase_power = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 2, 1, 7), unsigned32()).setUnits('Watts').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsInputPhasePower.setStatus('current') tlp_ups_output_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 3, 1)) if mibBuilder.loadTexts: tlpUpsOutputTable.setStatus('current') tlp_ups_output_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 3, 1, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex')) if mibBuilder.loadTexts: tlpUpsOutputEntry.setStatus('current') tlp_ups_output_source = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 3, 1, 1, 1), integer32().subtype(subtypeSpec=single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9)).clone(namedValues=named_values(('unknown', 0), ('other', 1), ('none', 2), ('normal', 3), ('bypass', 4), ('battery', 5), ('boosting', 6), ('reducing', 7), ('second', 8), ('economy', 9)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsOutputSource.setStatus('current') tlp_ups_output_nominal_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 3, 1, 1, 2), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsOutputNominalVoltage.setStatus('current') tlp_ups_output_frequency = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 3, 1, 1, 3), unsigned32()).setUnits('0.1 Hertz').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsOutputFrequency.setStatus('current') tlp_ups_output_line_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 3, 2)) if mibBuilder.loadTexts: tlpUpsOutputLineTable.setStatus('current') tlp_ups_output_line_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 3, 2, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex'), (0, 'TRIPPLITE-PRODUCTS', 'tlpUpsOutputLineIndex')) if mibBuilder.loadTexts: tlpUpsOutputLineEntry.setStatus('current') tlp_ups_output_line_index = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 3, 2, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsOutputLineIndex.setStatus('current') tlp_ups_output_line_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 3, 2, 1, 2), unsigned32()).setUnits('0.1 Volt DC').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsOutputLineVoltage.setStatus('current') tlp_ups_output_line_current = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 3, 2, 1, 3), unsigned32()).setUnits('0.1 Amp').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsOutputLineCurrent.setStatus('current') tlp_ups_output_line_power = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 3, 2, 1, 4), unsigned32()).setUnits('Watts').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsOutputLinePower.setStatus('current') tlp_ups_output_line_percent_load = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 3, 2, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(0, 200))).setUnits('percent').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsOutputLinePercentLoad.setStatus('current') tlp_ups_output_line_frequency = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 3, 2, 1, 6), unsigned32()).setUnits('0.1 Hertz').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsOutputLineFrequency.setStatus('current') tlp_ups_bypass_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 4, 1)) if mibBuilder.loadTexts: tlpUpsBypassTable.setStatus('current') tlp_ups_bypass_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 4, 1, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex')) if mibBuilder.loadTexts: tlpUpsBypassEntry.setStatus('current') tlp_ups_bypass_frequency = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 4, 1, 1, 1), unsigned32()).setUnits('0.1 Hertz').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsBypassFrequency.setStatus('current') tlp_ups_bypass_line_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 4, 2)) if mibBuilder.loadTexts: tlpUpsBypassLineTable.setStatus('current') tlp_ups_bypass_line_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 4, 2, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex'), (0, 'TRIPPLITE-PRODUCTS', 'tlpUpsBypassLineIndex')) if mibBuilder.loadTexts: tlpUpsBypassLineEntry.setStatus('current') tlp_ups_bypass_line_index = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 4, 2, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsBypassLineIndex.setStatus('current') tlp_ups_bypass_line_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 4, 2, 1, 2), unsigned32()).setUnits('0.1 Volt DC').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsBypassLineVoltage.setStatus('current') tlp_ups_bypass_line_current = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 4, 2, 1, 3), unsigned32()).setUnits('0.1 Amp').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsBypassLineCurrent.setStatus('current') tlp_ups_bypass_line_power = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 4, 2, 1, 4), unsigned32()).setUnits('Watts').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsBypassLinePower.setStatus('current') tlp_ups_outlet_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 1)) if mibBuilder.loadTexts: tlpUpsOutletTable.setStatus('current') tlp_ups_outlet_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 1, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex'), (0, 'TRIPPLITE-PRODUCTS', 'tlpUpsOutletIndex')) if mibBuilder.loadTexts: tlpUpsOutletEntry.setStatus('current') tlp_ups_outlet_index = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 1, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsOutletIndex.setStatus('current') tlp_ups_outlet_name = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 1, 1, 2), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsOutletName.setStatus('current') tlp_ups_outlet_description = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 1, 1, 3), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsOutletDescription.setStatus('current') tlp_ups_outlet_state = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 1, 1, 4), integer32().subtype(subtypeSpec=single_value_constraint(0, 1, 2)).clone(namedValues=named_values(('unknown', 0), ('off', 1), ('on', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsOutletState.setStatus('current') tlp_ups_outlet_controllable = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 1, 1, 5), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsOutletControllable.setStatus('current') tlp_ups_outlet_command = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 1, 1, 6), integer32().subtype(subtypeSpec=single_value_constraint(0, 1, 2, 3)).clone(namedValues=named_values(('idle', 0), ('turnOff', 1), ('turnOn', 2), ('cycle', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsOutletCommand.setStatus('current') tlp_ups_outlet_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 1, 1, 7), unsigned32()).setUnits('0.1 Volt DC').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsOutletVoltage.setStatus('current') tlp_ups_outlet_current = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 1, 1, 8), unsigned32()).setUnits('0.01 RMS Amp').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsOutletCurrent.setStatus('current') tlp_ups_outlet_power = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 1, 1, 9), unsigned32()).setUnits('Watts').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsOutletPower.setStatus('current') tlp_ups_outlet_ramp_action = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 1, 1, 10), integer32().subtype(subtypeSpec=single_value_constraint(0, 1)).clone(namedValues=named_values(('remainOff', 0), ('turnOnAfterDelay', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsOutletRampAction.setStatus('current') tlp_ups_outlet_ramp_delay = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 1, 1, 11), integer32()).setUnits('seconds').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsOutletRampDelay.setStatus('current') tlp_ups_outlet_shed_action = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 1, 1, 12), integer32().subtype(subtypeSpec=single_value_constraint(0, 1)).clone(namedValues=named_values(('remainOn', 0), ('turnOffAfterDelay', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsOutletShedAction.setStatus('current') tlp_ups_outlet_shed_delay = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 1, 1, 13), integer32()).setUnits('seconds').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsOutletShedDelay.setStatus('current') tlp_ups_outlet_group = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 1, 1, 14), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsOutletGroup.setStatus('current') tlp_ups_outlet_group_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 2)) if mibBuilder.loadTexts: tlpUpsOutletGroupTable.setStatus('current') tlp_ups_outlet_group_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 2, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex'), (0, 'TRIPPLITE-PRODUCTS', 'tlpUpsOutletGroupIndex')) if mibBuilder.loadTexts: tlpUpsOutletGroupEntry.setStatus('current') tlp_ups_outlet_group_index = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 2, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsOutletGroupIndex.setStatus('current') tlp_ups_outlet_group_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 2, 1, 2), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsOutletGroupRowStatus.setStatus('current') tlp_ups_outlet_group_name = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 2, 1, 3), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsOutletGroupName.setStatus('current') tlp_ups_outlet_group_description = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 2, 1, 4), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsOutletGroupDescription.setStatus('current') tlp_ups_outlet_group_state = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 2, 1, 5), integer32().subtype(subtypeSpec=single_value_constraint(0, 1, 2, 3)).clone(namedValues=named_values(('unknown', 0), ('off', 1), ('on', 2), ('mixed', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsOutletGroupState.setStatus('current') tlp_ups_outlet_group_command = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 2, 1, 6), integer32().subtype(subtypeSpec=single_value_constraint(0, 1, 2, 3)).clone(namedValues=named_values(('idle', 0), ('turnOff', 1), ('turnOn', 2), ('cycle', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsOutletGroupCommand.setStatus('current') tlp_ups_watchdog_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 6, 1)) if mibBuilder.loadTexts: tlpUpsWatchdogTable.setStatus('current') tlp_ups_watchdog_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 6, 1, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex')) if mibBuilder.loadTexts: tlpUpsWatchdogEntry.setStatus('current') tlp_ups_watchdog_supported = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 6, 1, 1, 1), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsWatchdogSupported.setStatus('current') tlp_ups_watchdog_secs_before_reboot = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 6, 1, 1, 2), unsigned32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsWatchdogSecsBeforeReboot.setStatus('current') tlp_ups_control_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 4, 1)) if mibBuilder.loadTexts: tlpUpsControlTable.setStatus('current') tlp_ups_control_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 4, 1, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex')) if mibBuilder.loadTexts: tlpUpsControlEntry.setStatus('current') tlp_ups_control_self_test = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 4, 1, 1, 1), truth_value()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsControlSelfTest.setStatus('current') tlp_ups_control_ramp = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 4, 1, 1, 2), truth_value()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsControlRamp.setStatus('current') tlp_ups_control_shed = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 4, 1, 1, 3), truth_value()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsControlShed.setStatus('current') tlp_ups_control_ups_on = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 4, 1, 1, 4), truth_value()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsControlUpsOn.setStatus('current') tlp_ups_control_ups_off = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 4, 1, 1, 5), truth_value()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsControlUpsOff.setStatus('current') tlp_ups_control_ups_reboot = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 4, 1, 1, 6), truth_value()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsControlUpsReboot.setStatus('current') tlp_ups_control_bypass = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 4, 1, 1, 7), integer32().subtype(subtypeSpec=single_value_constraint(0, 1)).clone(namedValues=named_values(('disable', 0), ('enable', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsControlBypass.setStatus('current') tlp_ups_config_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1)) if mibBuilder.loadTexts: tlpUpsConfigTable.setStatus('current') tlp_ups_config_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex')) if mibBuilder.loadTexts: tlpUpsConfigEntry.setStatus('current') tlp_ups_config_input_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 1), unsigned32()).setUnits('Volts').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsConfigInputVoltage.setStatus('current') tlp_ups_config_input_frequency = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 2), unsigned32()).setUnits('0.1 Hertz').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsConfigInputFrequency.setStatus('current') tlp_ups_config_output_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 3), unsigned32()).setUnits('Volts').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsConfigOutputVoltage.setStatus('current') tlp_ups_config_output_frequency = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 4), unsigned32()).setUnits('0.1 Hertz').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsConfigOutputFrequency.setStatus('current') tlp_ups_config_audible_status = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 5), integer32().subtype(subtypeSpec=single_value_constraint(1, 2, 3)).clone(namedValues=named_values(('disabled', 1), ('enabled', 2), ('muted', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsConfigAudibleStatus.setStatus('current') tlp_ups_config_auto_battery_test = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 6), integer32().subtype(subtypeSpec=single_value_constraint(0, 1, 2, 3, 4)).clone(namedValues=named_values(('disabled', 0), ('biweekly', 1), ('monthly', 2), ('quarterly', 3), ('semiannually', 4)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsConfigAutoBatteryTest.setStatus('current') tlp_ups_config_auto_restart_after_shutdown = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 7), integer32().subtype(subtypeSpec=single_value_constraint(0, 1)).clone(namedValues=named_values(('disabled', 0), ('enabled', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsConfigAutoRestartAfterShutdown.setStatus('current') tlp_ups_config_auto_ramp_on_transition = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 8), integer32().subtype(subtypeSpec=single_value_constraint(0, 1)).clone(namedValues=named_values(('disabled', 0), ('enabled', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsConfigAutoRampOnTransition.setStatus('current') tlp_ups_config_auto_shed_on_transition = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 9), integer32().subtype(subtypeSpec=single_value_constraint(0, 1)).clone(namedValues=named_values(('disabled', 0), ('enabled', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsConfigAutoShedOnTransition.setStatus('current') tlp_ups_config_bypass_lower_limit_percent = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(-20, -5))).setUnits('percent').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsConfigBypassLowerLimitPercent.setStatus('current') tlp_ups_config_bypass_upper_limit_percent = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 11), integer32().subtype(subtypeSpec=value_range_constraint(5, 20))).setUnits('percent').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsConfigBypassUpperLimitPercent.setStatus('current') tlp_ups_config_bypass_lower_limit_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 12), unsigned32()).setUnits('Volts').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsConfigBypassLowerLimitVoltage.setStatus('current') tlp_ups_config_bypass_upper_limit_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 13), unsigned32()).setUnits('Volts').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsConfigBypassUpperLimitVoltage.setStatus('current') tlp_ups_config_cold_start = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 14), integer32().subtype(subtypeSpec=single_value_constraint(0, 1)).clone(namedValues=named_values(('disabled', 0), ('enabled', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsConfigColdStart.setStatus('current') tlp_ups_config_economic_mode = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 15), integer32().subtype(subtypeSpec=single_value_constraint(0, 1, 2, 3, 4, 5)).clone(namedValues=named_values(('online', 0), ('economy', 1), ('constant50Hz', 2), ('constant60Hz', 3), ('constantAuto', 4), ('autoAdaptive', 5)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsConfigEconomicMode.setStatus('current') tlp_ups_config_fault_action = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 16), integer32().subtype(subtypeSpec=single_value_constraint(0, 1)).clone(namedValues=named_values(('bypass', 0), ('standby', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsConfigFaultAction.setStatus('current') tlp_ups_config_off_mode = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 17), integer32().subtype(subtypeSpec=single_value_constraint(0, 1)).clone(namedValues=named_values(('standby', 0), ('bypass', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsConfigOffMode.setStatus('current') tlp_ups_config_line_sensitivity = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 18), integer32().subtype(subtypeSpec=single_value_constraint(0, 1, 2)).clone(namedValues=named_values(('normal', 0), ('reduced', 1), ('fullyReduced', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsConfigLineSensitivity.setStatus('current') tlp_ups_config_auto_restart_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 2)) if mibBuilder.loadTexts: tlpUpsConfigAutoRestartTable.setStatus('current') tlp_ups_config_auto_restart_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 2, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex')) if mibBuilder.loadTexts: tlpUpsConfigAutoRestartEntry.setStatus('current') tlp_ups_config_auto_restart_inverter_shutdown = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 2, 1, 1), integer32().subtype(subtypeSpec=single_value_constraint(0, 1)).clone(namedValues=named_values(('disabled', 0), ('enabled', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsConfigAutoRestartInverterShutdown.setStatus('current') tlp_ups_config_auto_restart_delayed_wakeup = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 2, 1, 2), integer32().subtype(subtypeSpec=single_value_constraint(0, 1)).clone(namedValues=named_values(('disabled', 0), ('enabled', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsConfigAutoRestartDelayedWakeup.setStatus('current') tlp_ups_config_auto_restart_low_voltage_cutoff = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 2, 1, 3), integer32().subtype(subtypeSpec=single_value_constraint(0, 1)).clone(namedValues=named_values(('disabled', 0), ('enabled', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsConfigAutoRestartLowVoltageCutoff.setStatus('current') tlp_ups_config_auto_restart_over_load = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 2, 1, 4), integer32().subtype(subtypeSpec=single_value_constraint(0, 1)).clone(namedValues=named_values(('disabled', 0), ('enabled', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsConfigAutoRestartOverLoad.setStatus('current') tlp_ups_config_auto_restart_over_temperature = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 2, 1, 5), integer32().subtype(subtypeSpec=single_value_constraint(0, 1)).clone(namedValues=named_values(('disabled', 0), ('enabled', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsConfigAutoRestartOverTemperature.setStatus('current') tlp_ups_config_threshold_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 3)) if mibBuilder.loadTexts: tlpUpsConfigThresholdTable.setStatus('current') tlp_ups_config_threshold_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 3, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex')) if mibBuilder.loadTexts: tlpUpsConfigThresholdEntry.setStatus('current') tlp_ups_config_battery_age_threshold = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 3, 1, 1), unsigned32()).setUnits('months').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsConfigBatteryAgeThreshold.setStatus('current') tlp_ups_config_low_battery_threshold = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 3, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(5, 95))).setUnits('percent').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsConfigLowBatteryThreshold.setStatus('current') tlp_ups_config_low_battery_time = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 3, 1, 3), unsigned32()).setUnits('seconds').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsConfigLowBatteryTime.setStatus('current') tlp_ups_config_over_load_threshold = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 3, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(5, 105))).setUnits('percent').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsConfigOverLoadThreshold.setStatus('current') tlp_pdu_ident_num_pdu = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduIdentNumPdu.setStatus('current') tlp_pdu_ident_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 2)) if mibBuilder.loadTexts: tlpPduIdentTable.setStatus('current') tlp_pdu_ident_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 2, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex')) if mibBuilder.loadTexts: tlpPduIdentEntry.setStatus('current') tlp_pdu_ident_num_inputs = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 2, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduIdentNumInputs.setStatus('current') tlp_pdu_ident_num_outputs = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 2, 1, 2), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduIdentNumOutputs.setStatus('current') tlp_pdu_ident_num_phases = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 2, 1, 3), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduIdentNumPhases.setStatus('current') tlp_pdu_ident_num_outlets = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 2, 1, 4), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduIdentNumOutlets.setStatus('current') tlp_pdu_ident_num_outlet_groups = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 2, 1, 5), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduIdentNumOutletGroups.setStatus('current') tlp_pdu_ident_num_circuits = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 2, 1, 6), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduIdentNumCircuits.setStatus('current') tlp_pdu_ident_num_breakers = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 2, 1, 7), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduIdentNumBreakers.setStatus('current') tlp_pdu_ident_num_heatsinks = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 2, 1, 8), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduIdentNumHeatsinks.setStatus('current') tlp_pdu_supports_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 3)) if mibBuilder.loadTexts: tlpPduSupportsTable.setStatus('current') tlp_pdu_supports_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 3, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex')) if mibBuilder.loadTexts: tlpPduSupportsEntry.setStatus('current') tlp_pdu_supports_energywise = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 3, 1, 1), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduSupportsEnergywise.setStatus('current') tlp_pdu_supports_ramp_shed = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 3, 1, 2), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduSupportsRampShed.setStatus('current') tlp_pdu_supports_outlet_group = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 3, 1, 3), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduSupportsOutletGroup.setStatus('current') tlp_pdu_supports_outlet_current_power = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 3, 1, 4), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduSupportsOutletCurrentPower.setStatus('current') tlp_pdu_supports_outlet_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 3, 1, 5), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduSupportsOutletVoltage.setStatus('current') tlp_pdu_display_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 4)) if mibBuilder.loadTexts: tlpPduDisplayTable.setStatus('current') tlp_pdu_display_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 4, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex')) if mibBuilder.loadTexts: tlpPduDisplayEntry.setStatus('current') tlp_pdu_display_scheme = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 4, 1, 1), integer32().subtype(subtypeSpec=single_value_constraint(0, 1)).clone(namedValues=named_values(('schemeReverse', 0), ('schemeNormal', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpPduDisplayScheme.setStatus('current') tlp_pdu_display_orientation = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 4, 1, 2), integer32().subtype(subtypeSpec=single_value_constraint(0, 1)).clone(namedValues=named_values(('displayNormal', 0), ('displayReverse', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpPduDisplayOrientation.setStatus('current') tlp_pdu_display_auto_scroll = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 4, 1, 3), integer32().subtype(subtypeSpec=single_value_constraint(0, 1)).clone(namedValues=named_values(('scrollDisabled', 0), ('scrollEnabled', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpPduDisplayAutoScroll.setStatus('current') tlp_pdu_display_intensity = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 4, 1, 4), integer32().subtype(subtypeSpec=single_value_constraint(1, 2, 3, 4)).clone(namedValues=named_values(('intensity25', 1), ('intensity50', 2), ('intensity75', 3), ('intensity100', 4)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpPduDisplayIntensity.setStatus('current') tlp_pdu_display_units = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 4, 1, 5), integer32().subtype(subtypeSpec=single_value_constraint(0, 1)).clone(namedValues=named_values(('normal', 0), ('metric', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpPduDisplayUnits.setStatus('current') tlp_pdu_device_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 2, 1)) if mibBuilder.loadTexts: tlpPduDeviceTable.setStatus('current') tlp_pdu_device_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 2, 1, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex')) if mibBuilder.loadTexts: tlpPduDeviceEntry.setStatus('current') tlp_pdu_device_main_load_state = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 2, 1, 1, 1), integer32().subtype(subtypeSpec=single_value_constraint(0, 1, 2)).clone(namedValues=named_values(('unknown', 0), ('off', 1), ('on', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduDeviceMainLoadState.setStatus('current') tlp_pdu_device_main_load_controllable = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 2, 1, 1, 2), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduDeviceMainLoadControllable.setStatus('current') tlp_pdu_device_main_load_command = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 2, 1, 1, 3), integer32().subtype(subtypeSpec=single_value_constraint(0, 1, 2, 3)).clone(namedValues=named_values(('idle', 0), ('turnOff', 1), ('turnOn', 2), ('cycle', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpPduDeviceMainLoadCommand.setStatus('current') tlp_pdu_device_power_on_delay = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 2, 1, 1, 4), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpPduDevicePowerOnDelay.setStatus('current') tlp_pdu_device_total_input_power_rating = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 2, 1, 1, 5), integer32()).setUnits('Watts').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduDeviceTotalInputPowerRating.setStatus('current') tlp_pdu_device_temperature_c = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 2, 1, 1, 6), integer32()).setUnits('degrees Centigrade').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduDeviceTemperatureC.setStatus('current') tlp_pdu_device_temperature_f = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 2, 1, 1, 7), integer32()).setUnits('degrees Farenheit').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduDeviceTemperatureF.setStatus('current') tlp_pdu_device_phase_imbalance = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 2, 1, 1, 8), integer32().subtype(subtypeSpec=value_range_constraint(0, 200))).setUnits('percent').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduDevicePhaseImbalance.setStatus('current') tlp_pdu_device_output_power_total = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 2, 1, 1, 9), unsigned32()).setUnits('Watts').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduDeviceOutputPowerTotal.setStatus('current') tlp_pdu_device_aggregate_power_factor = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 2, 1, 1, 10), unsigned32()).setUnits('0.1 Watts').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduDeviceAggregatePowerFactor.setStatus('current') tlp_pdu_device_output_current_precision = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 2, 1, 1, 11), integer32().subtype(subtypeSpec=single_value_constraint(0, 1, 2)).clone(namedValues=named_values(('none', 0), ('tenths', 1), ('hundredths', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduDeviceOutputCurrentPrecision.setStatus('current') tlp_pdu_input_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 1)) if mibBuilder.loadTexts: tlpPduInputTable.setStatus('current') tlp_pdu_input_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 1, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex')) if mibBuilder.loadTexts: tlpPduInputEntry.setStatus('current') tlp_pdu_input_nominal_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 1, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduInputNominalVoltage.setStatus('current') tlp_pdu_input_nominal_voltage_phase_to_phase = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 1, 1, 2), unsigned32()).setUnits('0.1 Volt DC').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduInputNominalVoltagePhaseToPhase.setStatus('current') tlp_pdu_input_nominal_voltage_phase_to_neutral = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 1, 1, 3), unsigned32()).setUnits('0.1 Volt DC').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduInputNominalVoltagePhaseToNeutral.setStatus('current') tlp_pdu_input_low_transfer_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 1, 1, 4), unsigned32()).setUnits('0.1 Volts').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduInputLowTransferVoltage.setStatus('current') tlp_pdu_input_low_transfer_voltage_lower_bound = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 1, 1, 5), unsigned32()).setUnits('Volts').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduInputLowTransferVoltageLowerBound.setStatus('current') tlp_pdu_input_low_transfer_voltage_upper_bound = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 1, 1, 6), unsigned32()).setUnits('Volts').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduInputLowTransferVoltageUpperBound.setStatus('current') tlp_pdu_input_high_transfer_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 1, 1, 7), unsigned32()).setUnits('0.1 Volts').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduInputHighTransferVoltage.setStatus('current') tlp_pdu_input_high_transfer_voltage_lower_bound = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 1, 1, 8), unsigned32()).setUnits('Volts').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduInputHighTransferVoltageLowerBound.setStatus('current') tlp_pdu_input_high_transfer_voltage_upper_bound = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 1, 1, 9), unsigned32()).setUnits('Volts').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduInputHighTransferVoltageUpperBound.setStatus('current') tlp_pdu_input_current_limit = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 1, 1, 10), unsigned32()).setUnits('Amp DC').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduInputCurrentLimit.setStatus('current') tlp_pdu_input_phase_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 2)) if mibBuilder.loadTexts: tlpPduInputPhaseTable.setStatus('current') tlp_pdu_input_phase_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 2, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex'), (0, 'TRIPPLITE-PRODUCTS', 'tlpPduInputPhaseIndex')) if mibBuilder.loadTexts: tlpPduInputPhaseEntry.setStatus('current') tlp_pdu_input_phase_index = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 2, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduInputPhaseIndex.setStatus('current') tlp_pdu_input_phase_phase_type = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 2, 1, 2), integer32().subtype(subtypeSpec=single_value_constraint(0, 1)).clone(namedValues=named_values(('phaseToNeutral', 0), ('phaseToPhase', 1)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduInputPhasePhaseType.setStatus('current') tlp_pdu_input_phase_frequency = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 2, 1, 3), unsigned32()).setUnits('0.1 Hertz').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduInputPhaseFrequency.setStatus('current') tlp_pdu_input_phase_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 2, 1, 4), unsigned32()).setUnits('0.1 Volt DC').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduInputPhaseVoltage.setStatus('current') tlp_pdu_input_phase_voltage_min = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 2, 1, 5), unsigned32()).setUnits('0.1 Volt DC').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpPduInputPhaseVoltageMin.setStatus('current') tlp_pdu_input_phase_voltage_max = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 2, 1, 6), unsigned32()).setUnits('0.1 Volt DC').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpPduInputPhaseVoltageMax.setStatus('current') tlp_pdu_input_phase_current = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 2, 1, 7), unsigned32()).setUnits('0.01 Amp DC').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduInputPhaseCurrent.setStatus('current') tlp_pdu_output_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 2, 1)) if mibBuilder.loadTexts: tlpPduOutputTable.setStatus('current') tlp_pdu_output_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 2, 1, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex'), (0, 'TRIPPLITE-PRODUCTS', 'tlpPduOutputIndex')) if mibBuilder.loadTexts: tlpPduOutputEntry.setStatus('current') tlp_pdu_output_index = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 2, 1, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduOutputIndex.setStatus('current') tlp_pdu_output_phase = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 2, 1, 1, 2), integer32().subtype(subtypeSpec=single_value_constraint(1, 2, 3)).clone(namedValues=named_values(('phase1', 1), ('phase2', 2), ('phase3', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduOutputPhase.setStatus('current') tlp_pdu_output_phase_type = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 2, 1, 1, 3), integer32().subtype(subtypeSpec=single_value_constraint(0, 1)).clone(namedValues=named_values(('phaseToNeutral', 0), ('phaseToPhase', 1)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduOutputPhaseType.setStatus('current') tlp_pdu_output_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 2, 1, 1, 4), unsigned32()).setUnits('0.1 Volt DC').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduOutputVoltage.setStatus('current') tlp_pdu_output_current = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 2, 1, 1, 5), unsigned32()).setUnits('0.01 Amp DC').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduOutputCurrent.setStatus('current') tlp_pdu_output_current_min = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 2, 1, 1, 6), unsigned32()).setUnits('0.01 Amp DC').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduOutputCurrentMin.setStatus('current') tlp_pdu_output_current_max = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 2, 1, 1, 7), unsigned32()).setUnits('0.01 Amp DC').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduOutputCurrentMax.setStatus('current') tlp_pdu_output_active_power = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 2, 1, 1, 8), unsigned32()).setUnits('Watts').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduOutputActivePower.setStatus('current') tlp_pdu_output_power_factor = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 2, 1, 1, 9), unsigned32()).setUnits('0.01 percent').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduOutputPowerFactor.setStatus('current') tlp_pdu_output_source = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 2, 1, 1, 10), integer32().subtype(subtypeSpec=single_value_constraint(0, 1)).clone(namedValues=named_values(('none', 0), ('normal', 1)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduOutputSource.setStatus('current') tlp_pdu_outlet_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1)) if mibBuilder.loadTexts: tlpPduOutletTable.setStatus('current') tlp_pdu_outlet_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex'), (0, 'TRIPPLITE-PRODUCTS', 'tlpPduOutletIndex')) if mibBuilder.loadTexts: tlpPduOutletEntry.setStatus('current') tlp_pdu_outlet_index = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduOutletIndex.setStatus('current') tlp_pdu_outlet_name = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 2), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpPduOutletName.setStatus('current') tlp_pdu_outlet_description = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 3), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpPduOutletDescription.setStatus('current') tlp_pdu_outlet_state = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 4), integer32().subtype(subtypeSpec=single_value_constraint(0, 1, 2)).clone(namedValues=named_values(('unknown', 0), ('off', 1), ('on', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduOutletState.setStatus('current') tlp_pdu_outlet_controllable = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 5), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduOutletControllable.setStatus('current') tlp_pdu_outlet_command = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 6), integer32().subtype(subtypeSpec=single_value_constraint(0, 1, 2, 3)).clone(namedValues=named_values(('idle', 0), ('turnOff', 1), ('turnOn', 2), ('cycle', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpPduOutletCommand.setStatus('current') tlp_pdu_outlet_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 7), unsigned32()).setUnits('0.1 Volt DC').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduOutletVoltage.setStatus('current') tlp_pdu_outlet_current = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 8), unsigned32()).setUnits('0.01 RMS Amp').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduOutletCurrent.setStatus('current') tlp_pdu_outlet_power = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 9), unsigned32()).setUnits('Watts').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduOutletPower.setStatus('current') tlp_pdu_outlet_ramp_action = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 10), integer32().subtype(subtypeSpec=single_value_constraint(0, 1)).clone(namedValues=named_values(('remainOff', 0), ('turnOnAfterDelay', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpPduOutletRampAction.setStatus('current') tlp_pdu_outlet_ramp_delay = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 11), integer32()).setUnits('seconds').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpPduOutletRampDelay.setStatus('current') tlp_pdu_outlet_shed_action = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 12), integer32().subtype(subtypeSpec=single_value_constraint(0, 1)).clone(namedValues=named_values(('remainOn', 0), ('turnOffAfterDelay', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpPduOutletShedAction.setStatus('current') tlp_pdu_outlet_shed_delay = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 13), integer32()).setUnits('seconds').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpPduOutletShedDelay.setStatus('current') tlp_pdu_outlet_group = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 14), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpPduOutletGroup.setStatus('current') tlp_pdu_outlet_bank = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 15), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduOutletBank.setStatus('current') tlp_pdu_outlet_circuit = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 16), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduOutletCircuit.setStatus('current') tlp_pdu_outlet_phase = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 17), integer32().subtype(subtypeSpec=single_value_constraint(0, 1, 2, 3, 4, 5, 6)).clone(namedValues=named_values(('unknown', 0), ('phase1', 1), ('phase2', 2), ('phase3', 3), ('phase1-2', 4), ('phase2-3', 5), ('phase3-1', 6)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduOutletPhase.setStatus('current') tlp_pdu_outlet_group_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 2)) if mibBuilder.loadTexts: tlpPduOutletGroupTable.setStatus('current') tlp_pdu_outlet_group_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 2, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex'), (0, 'TRIPPLITE-PRODUCTS', 'tlpPduOutletGroupIndex')) if mibBuilder.loadTexts: tlpPduOutletGroupEntry.setStatus('current') tlp_pdu_outlet_group_index = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 2, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduOutletGroupIndex.setStatus('current') tlp_pdu_outlet_group_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 2, 1, 2), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpPduOutletGroupRowStatus.setStatus('current') tlp_pdu_outlet_group_name = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 2, 1, 3), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpPduOutletGroupName.setStatus('current') tlp_pdu_outlet_group_description = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 2, 1, 4), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpPduOutletGroupDescription.setStatus('current') tlp_pdu_outlet_group_state = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 2, 1, 5), integer32().subtype(subtypeSpec=single_value_constraint(0, 1, 2, 3)).clone(namedValues=named_values(('unknown', 0), ('off', 1), ('on', 2), ('mixed', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduOutletGroupState.setStatus('current') tlp_pdu_outlet_group_command = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 2, 1, 6), integer32().subtype(subtypeSpec=single_value_constraint(1, 2, 3)).clone(namedValues=named_values(('turnOff', 1), ('turnOn', 2), ('cycle', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpPduOutletGroupCommand.setStatus('current') tlp_pdu_circuit_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 4, 1)) if mibBuilder.loadTexts: tlpPduCircuitTable.setStatus('current') tlp_pdu_circuit_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 4, 1, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex'), (0, 'TRIPPLITE-PRODUCTS', 'tlpPduCircuitIndex')) if mibBuilder.loadTexts: tlpPduCircuitEntry.setStatus('current') tlp_pdu_circuit_index = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 4, 1, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduCircuitIndex.setStatus('current') tlp_pdu_circuit_phase = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 4, 1, 1, 2), integer32().subtype(subtypeSpec=single_value_constraint(0, 1, 2, 3, 4, 5, 6)).clone(namedValues=named_values(('unknown', 0), ('phase1', 1), ('phase2', 2), ('phase3', 3), ('phase1-2', 4), ('phase2-3', 5), ('phase3-1', 6)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduCircuitPhase.setStatus('current') tlp_pdu_circuit_input_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 4, 1, 1, 3), integer32()).setUnits('0.1 Volt DC').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduCircuitInputVoltage.setStatus('current') tlp_pdu_circuit_total_current = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 4, 1, 1, 4), integer32()).setUnits('0.01 Amp DC').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduCircuitTotalCurrent.setStatus('current') tlp_pdu_circuit_current_limit = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 4, 1, 1, 5), integer32()).setUnits('0.01 Amp DC').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduCircuitCurrentLimit.setStatus('current') tlp_pdu_circuit_current_min = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 4, 1, 1, 6), integer32()).setUnits('0.01 Amp DC').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduCircuitCurrentMin.setStatus('current') tlp_pdu_circuit_current_max = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 4, 1, 1, 7), integer32()).setUnits('0.01 Amp DC').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduCircuitCurrentMax.setStatus('current') tlp_pdu_circuit_total_power = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 4, 1, 1, 8), integer32()).setUnits('Watts').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduCircuitTotalPower.setStatus('current') tlp_pdu_circuit_power_factor = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 4, 1, 1, 9), integer32().subtype(subtypeSpec=value_range_constraint(0, 200))).setUnits('percent').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduCircuitPowerFactor.setStatus('current') tlp_pdu_circuit_utilization = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 4, 1, 1, 10), unsigned32()).setUnits('0.01 %').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduCircuitUtilization.setStatus('current') tlp_pdu_breaker_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 5, 1)) if mibBuilder.loadTexts: tlpPduBreakerTable.setStatus('current') tlp_pdu_breaker_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 5, 1, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex'), (0, 'TRIPPLITE-PRODUCTS', 'tlpPduBreakerIndex')) if mibBuilder.loadTexts: tlpPduBreakerEntry.setStatus('current') tlp_pdu_breaker_index = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 5, 1, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduBreakerIndex.setStatus('current') tlp_pdu_breaker_status = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 5, 1, 1, 2), integer32().subtype(subtypeSpec=single_value_constraint(0, 1, 2)).clone(namedValues=named_values(('open', 0), ('closed', 1), ('notInstalled', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduBreakerStatus.setStatus('current') tlp_pdu_heatsink_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 6, 1)) if mibBuilder.loadTexts: tlpPduHeatsinkTable.setStatus('current') tlp_pdu_heatsink_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 6, 1, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex'), (0, 'TRIPPLITE-PRODUCTS', 'tlpPduHeatsinkIndex')) if mibBuilder.loadTexts: tlpPduHeatsinkEntry.setStatus('current') tlp_pdu_heatsink_index = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 6, 1, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduHeatsinkIndex.setStatus('current') tlp_pdu_heatsink_status = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 6, 1, 1, 2), integer32().subtype(subtypeSpec=single_value_constraint(0, 1)).clone(namedValues=named_values(('notAvailable', 0), ('available', 1)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduHeatsinkStatus.setStatus('current') tlp_pdu_heatsink_temperature_c = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 6, 1, 1, 3), integer32()).setUnits('0.1 degrees Centigrade').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduHeatsinkTemperatureC.setStatus('current') tlp_pdu_heatsink_temperature_f = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 6, 1, 1, 4), integer32()).setUnits('0.1 degrees Farenheit').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduHeatsinkTemperatureF.setStatus('current') tlp_pdu_control_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 4, 1)) if mibBuilder.loadTexts: tlpPduControlTable.setStatus('current') tlp_pdu_control_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 4, 1, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex')) if mibBuilder.loadTexts: tlpPduControlEntry.setStatus('current') tlp_pdu_control_ramp = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 4, 1, 1, 1), truth_value()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpPduControlRamp.setStatus('current') tlp_pdu_control_shed = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 4, 1, 1, 2), truth_value()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpPduControlShed.setStatus('current') tlp_pdu_control_pdu_on = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 4, 1, 1, 3), truth_value()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpPduControlPduOn.setStatus('current') tlp_pdu_control_pdu_off = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 4, 1, 1, 4), truth_value()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpPduControlPduOff.setStatus('current') tlp_pdu_control_pdu_reboot = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 4, 1, 1, 5), truth_value()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpPduControlPduReboot.setStatus('current') tlp_pdu_config_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 5, 1)) if mibBuilder.loadTexts: tlpPduConfigTable.setStatus('current') tlp_pdu_config_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 5, 1, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex')) if mibBuilder.loadTexts: tlpPduConfigEntry.setStatus('current') tlp_pdu_config_input_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 5, 1, 1, 1), unsigned32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpPduConfigInputVoltage.setStatus('current') tlp_env_ident_num_envirosense = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpEnvIdentNumEnvirosense.setStatus('current') tlp_env_ident_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 1, 2)) if mibBuilder.loadTexts: tlpEnvIdentTable.setStatus('current') tlp_env_ident_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 1, 2, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex')) if mibBuilder.loadTexts: tlpEnvIdentEntry.setStatus('current') tlp_env_ident_temp_supported = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 1, 2, 1, 1), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpEnvIdentTempSupported.setStatus('current') tlp_env_ident_humidity_supported = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 1, 2, 1, 2), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpEnvIdentHumiditySupported.setStatus('current') tlp_env_num_input_contacts = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 1, 2, 1, 3), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpEnvNumInputContacts.setStatus('current') tlp_env_num_output_contacts = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 1, 2, 1, 4), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpEnvNumOutputContacts.setStatus('current') tlp_env_temperature_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 1)) if mibBuilder.loadTexts: tlpEnvTemperatureTable.setStatus('current') tlp_env_temperature_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 1, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex')) if mibBuilder.loadTexts: tlpEnvTemperatureEntry.setStatus('current') tlp_env_temperature_c = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 1, 1, 1), integer32()).setUnits('degrees Centigrade').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpEnvTemperatureC.setStatus('current') tlp_env_temperature_f = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 1, 1, 2), integer32()).setUnits('0.1 degrees Farenheit').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpEnvTemperatureF.setStatus('current') tlp_env_temperature_in_alarm = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 1, 1, 3), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpEnvTemperatureInAlarm.setStatus('current') tlp_env_humidity_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 2)) if mibBuilder.loadTexts: tlpEnvHumidityTable.setStatus('current') tlp_env_humidity_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 2, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex')) if mibBuilder.loadTexts: tlpEnvHumidityEntry.setStatus('current') tlp_env_humidity_humidity = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 100))).setUnits('percent').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpEnvHumidityHumidity.setStatus('current') tlp_env_humidity_in_alarm = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 2, 1, 2), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpEnvHumidityInAlarm.setStatus('current') tlp_env_input_contact_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 3)) if mibBuilder.loadTexts: tlpEnvInputContactTable.setStatus('current') tlp_env_input_contact_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 3, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex'), (0, 'TRIPPLITE-PRODUCTS', 'tlpEnvInputContactIndex')) if mibBuilder.loadTexts: tlpEnvInputContactEntry.setStatus('current') tlp_env_input_contact_index = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 3, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpEnvInputContactIndex.setStatus('current') tlp_env_input_contact_name = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 3, 1, 2), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpEnvInputContactName.setStatus('current') tlp_env_input_contact_normal_state = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 3, 1, 3), integer32().subtype(subtypeSpec=single_value_constraint(0, 1)).clone(namedValues=named_values(('open', 0), ('closed', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpEnvInputContactNormalState.setStatus('current') tlp_env_input_contact_current_state = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 3, 1, 4), integer32().subtype(subtypeSpec=single_value_constraint(0, 1)).clone(namedValues=named_values(('open', 0), ('closed', 1)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpEnvInputContactCurrentState.setStatus('current') tlp_env_input_contact_in_alarm = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 3, 1, 5), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpEnvInputContactInAlarm.setStatus('current') tlp_env_output_contact_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 4)) if mibBuilder.loadTexts: tlpEnvOutputContactTable.setStatus('current') tlp_env_output_contact_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 4, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex'), (0, 'TRIPPLITE-PRODUCTS', 'tlpEnvOutputContactIndex')) if mibBuilder.loadTexts: tlpEnvOutputContactEntry.setStatus('current') tlp_env_output_contact_index = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 4, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpEnvOutputContactIndex.setStatus('current') tlp_env_output_contact_name = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 4, 1, 2), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpEnvOutputContactName.setStatus('current') tlp_env_output_contact_normal_state = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 4, 1, 3), integer32().subtype(subtypeSpec=single_value_constraint(0, 1)).clone(namedValues=named_values(('open', 0), ('closed', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpEnvOutputContactNormalState.setStatus('current') tlp_env_output_contact_current_state = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 4, 1, 4), integer32().subtype(subtypeSpec=single_value_constraint(0, 1)).clone(namedValues=named_values(('open', 0), ('closed', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpEnvOutputContactCurrentState.setStatus('current') tlp_env_output_contact_in_alarm = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 4, 1, 5), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpEnvOutputContactInAlarm.setStatus('current') tlp_env_config_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 5, 1)) if mibBuilder.loadTexts: tlpEnvConfigTable.setStatus('current') tlp_env_config_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 5, 1, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex')) if mibBuilder.loadTexts: tlpEnvConfigEntry.setStatus('current') tlp_env_temperature_low_limit = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 5, 1, 1, 1), integer32()).setUnits('degrees Farenheit').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpEnvTemperatureLowLimit.setStatus('current') tlp_env_temperature_high_limit = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 5, 1, 1, 2), integer32()).setUnits('degrees Farenheit').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpEnvTemperatureHighLimit.setStatus('current') tlp_env_humidity_low_limit = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 5, 1, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 100))).setUnits('percent').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpEnvHumidityLowLimit.setStatus('current') tlp_env_humidity_high_limit = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 5, 1, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(0, 100))).setUnits('percent').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpEnvHumidityHighLimit.setStatus('current') tlp_ats_ident_num_ats = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsIdentNumAts.setStatus('current') tlp_ats_ident_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 2)) if mibBuilder.loadTexts: tlpAtsIdentTable.setStatus('current') tlp_ats_ident_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 2, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex')) if mibBuilder.loadTexts: tlpAtsIdentEntry.setStatus('current') tlp_ats_ident_num_inputs = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 2, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsIdentNumInputs.setStatus('current') tlp_ats_ident_num_outputs = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 2, 1, 2), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsIdentNumOutputs.setStatus('current') tlp_ats_ident_num_phases = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 2, 1, 3), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsIdentNumPhases.setStatus('current') tlp_ats_ident_num_outlets = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 2, 1, 4), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsIdentNumOutlets.setStatus('current') tlp_ats_ident_num_outlet_groups = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 2, 1, 5), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsIdentNumOutletGroups.setStatus('current') tlp_ats_ident_num_circuits = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 2, 1, 6), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsIdentNumCircuits.setStatus('current') tlp_ats_ident_num_breakers = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 2, 1, 7), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsIdentNumBreakers.setStatus('current') tlp_ats_ident_num_heatsinks = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 2, 1, 8), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsIdentNumHeatsinks.setStatus('current') tlp_ats_supports_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 3)) if mibBuilder.loadTexts: tlpAtsSupportsTable.setStatus('current') tlp_ats_supports_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 3, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex')) if mibBuilder.loadTexts: tlpAtsSupportsEntry.setStatus('current') tlp_ats_supports_energywise = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 3, 1, 1), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsSupportsEnergywise.setStatus('current') tlp_ats_supports_ramp_shed = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 3, 1, 2), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsSupportsRampShed.setStatus('current') tlp_ats_supports_outlet_group = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 3, 1, 3), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsSupportsOutletGroup.setStatus('current') tlp_ats_supports_outlet_current_power = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 3, 1, 4), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsSupportsOutletCurrentPower.setStatus('current') tlp_ats_supports_outlet_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 3, 1, 5), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsSupportsOutletVoltage.setStatus('current') tlp_ats_display_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 4)) if mibBuilder.loadTexts: tlpAtsDisplayTable.setStatus('current') tlp_ats_display_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 4, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex')) if mibBuilder.loadTexts: tlpAtsDisplayEntry.setStatus('current') tlp_ats_display_scheme = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 4, 1, 1), integer32().subtype(subtypeSpec=single_value_constraint(0, 1)).clone(namedValues=named_values(('schemeReverse', 0), ('schemeNormal', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsDisplayScheme.setStatus('current') tlp_ats_display_orientation = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 4, 1, 2), integer32().subtype(subtypeSpec=single_value_constraint(0, 1)).clone(namedValues=named_values(('displayNormal', 0), ('displayReverse', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsDisplayOrientation.setStatus('current') tlp_ats_display_auto_scroll = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 4, 1, 3), integer32().subtype(subtypeSpec=single_value_constraint(0, 1)).clone(namedValues=named_values(('scrollDisabled', 0), ('scrollEnabled', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsDisplayAutoScroll.setStatus('current') tlp_ats_display_intensity = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 4, 1, 4), integer32().subtype(subtypeSpec=single_value_constraint(1, 2, 3, 4)).clone(namedValues=named_values(('intensity25', 1), ('intensity50', 2), ('intensity75', 3), ('intensity100', 4)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsDisplayIntensity.setStatus('current') tlp_ats_display_units = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 4, 1, 5), integer32().subtype(subtypeSpec=single_value_constraint(0, 1)).clone(namedValues=named_values(('normal', 0), ('metric', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsDisplayUnits.setStatus('current') tlp_ats_device_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 2, 1)) if mibBuilder.loadTexts: tlpAtsDeviceTable.setStatus('current') tlp_ats_device_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 2, 1, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex')) if mibBuilder.loadTexts: tlpAtsDeviceEntry.setStatus('current') tlp_ats_device_main_load_state = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 2, 1, 1, 1), integer32().subtype(subtypeSpec=single_value_constraint(0, 1, 2)).clone(namedValues=named_values(('unknown', 0), ('off', 1), ('on', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsDeviceMainLoadState.setStatus('current') tlp_ats_device_main_load_controllable = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 2, 1, 1, 2), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsDeviceMainLoadControllable.setStatus('current') tlp_ats_device_main_load_command = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 2, 1, 1, 3), integer32().subtype(subtypeSpec=single_value_constraint(0, 1, 2, 3)).clone(namedValues=named_values(('idle', 0), ('turnOff', 1), ('turnOn', 2), ('cycle', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsDeviceMainLoadCommand.setStatus('current') tlp_ats_device_power_on_delay = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 2, 1, 1, 4), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsDevicePowerOnDelay.setStatus('current') tlp_ats_device_total_input_power_rating = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 2, 1, 1, 5), integer32()).setUnits('Watts').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsDeviceTotalInputPowerRating.setStatus('current') tlp_ats_device_temperature_c = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 2, 1, 1, 6), integer32()).setUnits('degrees Centigrade').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsDeviceTemperatureC.setStatus('current') tlp_ats_device_temperature_f = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 2, 1, 1, 7), integer32()).setUnits('degrees Farenheit').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsDeviceTemperatureF.setStatus('current') tlp_ats_device_phase_imbalance = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 2, 1, 1, 8), integer32().subtype(subtypeSpec=value_range_constraint(0, 200))).setUnits('percent').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsDevicePhaseImbalance.setStatus('current') tlp_ats_device_output_power_total = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 2, 1, 1, 9), unsigned32()).setUnits('Watts').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsDeviceOutputPowerTotal.setStatus('current') tlp_ats_device_aggregate_power_factor = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 2, 1, 1, 10), unsigned32()).setUnits('0.1 Watts').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsDeviceAggregatePowerFactor.setStatus('current') tlp_ats_device_output_current_precision = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 2, 1, 1, 11), integer32().subtype(subtypeSpec=single_value_constraint(0, 1, 2)).clone(namedValues=named_values(('none', 0), ('tenths', 1), ('hundredths', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsDeviceOutputCurrentPrecision.setStatus('current') tlp_ats_device_general_fault = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 2, 1, 1, 12), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsDeviceGeneralFault.setStatus('current') tlp_ats_input_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1)) if mibBuilder.loadTexts: tlpAtsInputTable.setStatus('current') tlp_ats_input_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex')) if mibBuilder.loadTexts: tlpAtsInputEntry.setStatus('current') tlp_ats_input_nominal_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsInputNominalVoltage.setStatus('current') tlp_ats_input_nominal_voltage_phase_to_phase = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1, 1, 2), unsigned32()).setUnits('0.1 Volt DC').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsInputNominalVoltagePhaseToPhase.setStatus('current') tlp_ats_input_nominal_voltage_phase_to_neutral = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1, 1, 3), unsigned32()).setUnits('0.1 Volt DC').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsInputNominalVoltagePhaseToNeutral.setStatus('current') tlp_ats_input_bad_transfer_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1, 1, 4), unsigned32()).setUnits('0.1 Volts').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsInputBadTransferVoltage.setStatus('current') tlp_ats_input_bad_transfer_voltage_lower_bound = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1, 1, 5), unsigned32()).setUnits('Volts').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsInputBadTransferVoltageLowerBound.setStatus('current') tlp_ats_input_bad_transfer_voltage_upper_bound = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1, 1, 6), unsigned32()).setUnits('Volts').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsInputBadTransferVoltageUpperBound.setStatus('current') tlp_ats_input_high_transfer_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1, 1, 7), unsigned32()).setUnits('0.1 Volts').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsInputHighTransferVoltage.setStatus('current') tlp_ats_input_high_transfer_voltage_lower_bound = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1, 1, 8), unsigned32()).setUnits('Volts').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsInputHighTransferVoltageLowerBound.setStatus('current') tlp_ats_input_high_transfer_voltage_upper_bound = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1, 1, 9), unsigned32()).setUnits('Volts').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsInputHighTransferVoltageUpperBound.setStatus('current') tlp_ats_input_fair_voltage_threshold = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1, 1, 10), unsigned32()).setUnits('Volts').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsInputFairVoltageThreshold.setStatus('current') tlp_ats_input_bad_voltage_threshold = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1, 1, 11), unsigned32()).setUnits('Volts').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsInputBadVoltageThreshold.setStatus('current') tlp_ats_input_source_availability = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1, 1, 12), integer32().subtype(subtypeSpec=single_value_constraint(0, 1, 2, 3)).clone(namedValues=named_values(('none', 0), ('inputSourceA', 1), ('inputSourceB', 2), ('inputSourceAB', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsInputSourceAvailability.setStatus('current') tlp_ats_input_source_in_use = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1, 1, 13), integer32().subtype(subtypeSpec=single_value_constraint(0, 1)).clone(namedValues=named_values(('inputSourceA', 0), ('inputSourceB', 1)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsInputSourceInUse.setStatus('current') tlp_ats_input_source_transition_count = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1, 1, 14), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsInputSourceTransitionCount.setStatus('current') tlp_ats_input_current_limit = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1, 1, 15), unsigned32()).setUnits('Amp DC').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsInputCurrentLimit.setStatus('current') tlp_ats_input_phase_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 2)) if mibBuilder.loadTexts: tlpAtsInputPhaseTable.setStatus('current') tlp_ats_input_phase_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 2, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex'), (0, 'TRIPPLITE-PRODUCTS', 'tlpAtsInputLineIndex'), (0, 'TRIPPLITE-PRODUCTS', 'tlpAtsInputPhaseIndex')) if mibBuilder.loadTexts: tlpAtsInputPhaseEntry.setStatus('current') tlp_ats_input_line_index = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 2, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsInputLineIndex.setStatus('current') tlp_ats_input_phase_index = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 2, 1, 2), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsInputPhaseIndex.setStatus('current') tlp_ats_input_phase_type = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 2, 1, 3), integer32().subtype(subtypeSpec=single_value_constraint(0, 1)).clone(namedValues=named_values(('phaseToNeutral', 0), ('phaseToPhase', 1)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsInputPhaseType.setStatus('current') tlp_ats_input_phase_frequency = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 2, 1, 4), unsigned32()).setUnits('0.1 Hertz').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsInputPhaseFrequency.setStatus('current') tlp_ats_input_phase_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 2, 1, 5), unsigned32()).setUnits('0.1 Volt DC').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsInputPhaseVoltage.setStatus('current') tlp_ats_input_phase_voltage_min = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 2, 1, 6), unsigned32()).setUnits('0.1 Volt DC').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsInputPhaseVoltageMin.setStatus('current') tlp_ats_input_phase_voltage_max = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 2, 1, 7), unsigned32()).setUnits('0.1 Volt DC').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsInputPhaseVoltageMax.setStatus('current') tlp_ats_input_phase_current = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 2, 1, 8), unsigned32()).setUnits('0.01 Amp DC').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsInputPhaseCurrent.setStatus('current') tlp_ats_output_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 2, 1)) if mibBuilder.loadTexts: tlpAtsOutputTable.setStatus('current') tlp_ats_output_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 2, 1, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex'), (0, 'TRIPPLITE-PRODUCTS', 'tlpAtsOutputIndex')) if mibBuilder.loadTexts: tlpAtsOutputEntry.setStatus('current') tlp_ats_output_index = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 2, 1, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsOutputIndex.setStatus('current') tlp_ats_output_phase = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 2, 1, 1, 2), integer32().subtype(subtypeSpec=single_value_constraint(1, 2, 3)).clone(namedValues=named_values(('phase1', 1), ('phase2', 2), ('phase3', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsOutputPhase.setStatus('current') tlp_ats_output_phase_type = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 2, 1, 1, 3), integer32().subtype(subtypeSpec=single_value_constraint(0, 1)).clone(namedValues=named_values(('phaseToNeutral', 0), ('phaseToPhase', 1)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsOutputPhaseType.setStatus('current') tlp_ats_output_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 2, 1, 1, 4), unsigned32()).setUnits('0.1 Volt DC').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsOutputVoltage.setStatus('current') tlp_ats_output_current = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 2, 1, 1, 5), unsigned32()).setUnits('0.01 Amp DC').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsOutputCurrent.setStatus('current') tlp_ats_output_current_min = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 2, 1, 1, 6), unsigned32()).setUnits('0.01 Amp DC').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsOutputCurrentMin.setStatus('current') tlp_ats_output_current_max = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 2, 1, 1, 7), unsigned32()).setUnits('0.01 Amp DC').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsOutputCurrentMax.setStatus('current') tlp_ats_output_active_power = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 2, 1, 1, 8), unsigned32()).setUnits('Watts').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsOutputActivePower.setStatus('current') tlp_ats_output_power_factor = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 2, 1, 1, 9), unsigned32()).setUnits('0.01 percent').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsOutputPowerFactor.setStatus('current') tlp_ats_output_source = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 2, 1, 1, 10), integer32().subtype(subtypeSpec=single_value_constraint(0, 1)).clone(namedValues=named_values(('none', 0), ('normal', 1)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsOutputSource.setStatus('current') tlp_ats_outlet_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1)) if mibBuilder.loadTexts: tlpAtsOutletTable.setStatus('current') tlp_ats_outlet_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex'), (0, 'TRIPPLITE-PRODUCTS', 'tlpAtsOutletIndex')) if mibBuilder.loadTexts: tlpAtsOutletEntry.setStatus('current') tlp_ats_outlet_index = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsOutletIndex.setStatus('current') tlp_ats_outlet_name = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 2), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsOutletName.setStatus('current') tlp_ats_outlet_description = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 3), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsOutletDescription.setStatus('current') tlp_ats_outlet_state = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 4), integer32().subtype(subtypeSpec=single_value_constraint(0, 1, 2)).clone(namedValues=named_values(('unknown', 0), ('off', 1), ('on', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsOutletState.setStatus('current') tlp_ats_outlet_controllable = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 5), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsOutletControllable.setStatus('current') tlp_ats_outlet_command = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 6), integer32().subtype(subtypeSpec=single_value_constraint(0, 1, 2, 3)).clone(namedValues=named_values(('idle', 0), ('turnOff', 1), ('turnOn', 2), ('cycle', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsOutletCommand.setStatus('current') tlp_ats_outlet_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 7), unsigned32()).setUnits('0.1 Volt DC').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsOutletVoltage.setStatus('current') tlp_ats_outlet_current = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 8), unsigned32()).setUnits('0.01 RMS Amp').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsOutletCurrent.setStatus('current') tlp_ats_outlet_power = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 9), unsigned32()).setUnits('Watts').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsOutletPower.setStatus('current') tlp_ats_outlet_ramp_action = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 10), integer32().subtype(subtypeSpec=single_value_constraint(0, 1)).clone(namedValues=named_values(('remainOff', 0), ('turnOnAfterDelay', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsOutletRampAction.setStatus('current') tlp_ats_outlet_ramp_delay = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 11), integer32()).setUnits('seconds').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsOutletRampDelay.setStatus('current') tlp_ats_outlet_shed_action = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 12), integer32().subtype(subtypeSpec=single_value_constraint(0, 1)).clone(namedValues=named_values(('remainOn', 0), ('turnOffAfterDelay', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsOutletShedAction.setStatus('current') tlp_ats_outlet_shed_delay = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 13), integer32()).setUnits('seconds').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsOutletShedDelay.setStatus('current') tlp_ats_outlet_group = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 14), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsOutletGroup.setStatus('current') tlp_ats_outlet_bank = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 15), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsOutletBank.setStatus('current') tlp_ats_outlet_circuit = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 16), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsOutletCircuit.setStatus('current') tlp_ats_outlet_phase = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 17), integer32().subtype(subtypeSpec=single_value_constraint(0, 1, 2, 3, 4, 5, 6)).clone(namedValues=named_values(('unknown', 0), ('phase1', 1), ('phase2', 2), ('phase3', 3), ('phase1-2', 4), ('phase2-3', 5), ('phase3-1', 6)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsOutletPhase.setStatus('current') tlp_ats_outlet_group_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 2)) if mibBuilder.loadTexts: tlpAtsOutletGroupTable.setStatus('current') tlp_ats_outlet_group_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 2, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex'), (0, 'TRIPPLITE-PRODUCTS', 'tlpAtsOutletGroupIndex')) if mibBuilder.loadTexts: tlpAtsOutletGroupEntry.setStatus('current') tlp_ats_outlet_group_index = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 2, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsOutletGroupIndex.setStatus('current') tlp_ats_outlet_group_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 2, 1, 2), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsOutletGroupRowStatus.setStatus('current') tlp_ats_outlet_group_name = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 2, 1, 3), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsOutletGroupName.setStatus('current') tlp_ats_outlet_group_description = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 2, 1, 4), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsOutletGroupDescription.setStatus('current') tlp_ats_outlet_group_state = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 2, 1, 5), integer32().subtype(subtypeSpec=single_value_constraint(0, 1, 2, 3)).clone(namedValues=named_values(('unknown', 0), ('off', 1), ('on', 2), ('mixed', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsOutletGroupState.setStatus('current') tlp_ats_outlet_group_command = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 2, 1, 6), integer32().subtype(subtypeSpec=single_value_constraint(1, 2, 3)).clone(namedValues=named_values(('turnOff', 1), ('turnOn', 2), ('cycle', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsOutletGroupCommand.setStatus('current') tlp_ats_circuit_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 4, 1)) if mibBuilder.loadTexts: tlpAtsCircuitTable.setStatus('current') tlp_ats_circuit_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 4, 1, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex'), (0, 'TRIPPLITE-PRODUCTS', 'tlpAtsCircuitIndex')) if mibBuilder.loadTexts: tlpAtsCircuitEntry.setStatus('current') tlp_ats_circuit_index = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 4, 1, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsCircuitIndex.setStatus('current') tlp_ats_circuit_phase = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 4, 1, 1, 2), integer32().subtype(subtypeSpec=single_value_constraint(0, 1, 2, 3, 4, 5, 6)).clone(namedValues=named_values(('unknown', 0), ('phase1', 1), ('phase2', 2), ('phase3', 3), ('phase1-2', 4), ('phase2-3', 5), ('phase3-1', 6)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsCircuitPhase.setStatus('current') tlp_ats_circuit_input_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 4, 1, 1, 3), integer32()).setUnits('0.1 Volt DC').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsCircuitInputVoltage.setStatus('current') tlp_ats_circuit_total_current = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 4, 1, 1, 4), integer32()).setUnits('0.01 Amp DC').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsCircuitTotalCurrent.setStatus('current') tlp_ats_circuit_current_limit = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 4, 1, 1, 5), integer32()).setUnits('0.01 Amp DC').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsCircuitCurrentLimit.setStatus('current') tlp_ats_circuit_current_min = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 4, 1, 1, 6), integer32()).setUnits('0.01 Amp DC').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsCircuitCurrentMin.setStatus('current') tlp_ats_circuit_current_max = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 4, 1, 1, 7), integer32()).setUnits('0.01 Amp DC').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsCircuitCurrentMax.setStatus('current') tlp_ats_circuit_total_power = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 4, 1, 1, 8), integer32()).setUnits('Watts').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsCircuitTotalPower.setStatus('current') tlp_ats_circuit_power_factor = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 4, 1, 1, 9), integer32().subtype(subtypeSpec=value_range_constraint(0, 200))).setUnits('percent').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsCircuitPowerFactor.setStatus('current') tlp_ats_circuit_utilization = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 4, 1, 1, 10), unsigned32()).setUnits('0.01 %').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsCircuitUtilization.setStatus('current') tlp_ats_breaker_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 5, 1)) if mibBuilder.loadTexts: tlpAtsBreakerTable.setStatus('current') tlp_ats_breaker_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 5, 1, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex'), (0, 'TRIPPLITE-PRODUCTS', 'tlpAtsBreakerIndex')) if mibBuilder.loadTexts: tlpAtsBreakerEntry.setStatus('current') tlp_ats_breaker_index = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 5, 1, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsBreakerIndex.setStatus('current') tlp_ats_breaker_status = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 5, 1, 1, 2), integer32().subtype(subtypeSpec=single_value_constraint(0, 1, 2)).clone(namedValues=named_values(('open', 0), ('closed', 1), ('notInstalled', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsBreakerStatus.setStatus('current') tlp_ats_heatsink_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 6, 1)) if mibBuilder.loadTexts: tlpAtsHeatsinkTable.setStatus('current') tlp_ats_heatsink_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 6, 1, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex'), (0, 'TRIPPLITE-PRODUCTS', 'tlpAtsHeatsinkIndex')) if mibBuilder.loadTexts: tlpAtsHeatsinkEntry.setStatus('current') tlp_ats_heatsink_index = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 6, 1, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsHeatsinkIndex.setStatus('current') tlp_ats_heatsink_status = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 6, 1, 1, 2), integer32().subtype(subtypeSpec=single_value_constraint(0, 1)).clone(namedValues=named_values(('notAvailable', 0), ('available', 1)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsHeatsinkStatus.setStatus('current') tlp_ats_heatsink_temperature_c = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 6, 1, 1, 3), integer32()).setUnits('0.1 degrees Centigrade').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsHeatsinkTemperatureC.setStatus('current') tlp_ats_heatsink_temperature_f = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 6, 1, 1, 4), integer32()).setUnits('0.1 degrees Farenheit').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsHeatsinkTemperatureF.setStatus('current') tlp_ats_control_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 4, 1)) if mibBuilder.loadTexts: tlpAtsControlTable.setStatus('current') tlp_ats_control_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 4, 1, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex')) if mibBuilder.loadTexts: tlpAtsControlEntry.setStatus('current') tlp_ats_control_ramp = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 4, 1, 1, 1), truth_value()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsControlRamp.setStatus('current') tlp_ats_control_shed = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 4, 1, 1, 2), truth_value()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsControlShed.setStatus('current') tlp_ats_control_ats_on = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 4, 1, 1, 3), truth_value()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsControlAtsOn.setStatus('current') tlp_ats_control_ats_off = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 4, 1, 1, 4), truth_value()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsControlAtsOff.setStatus('current') tlp_ats_control_ats_reboot = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 4, 1, 1, 5), truth_value()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsControlAtsReboot.setStatus('current') tlp_ats_control_reset_general_fault = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 4, 1, 1, 6), truth_value()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsControlResetGeneralFault.setStatus('current') tlp_ats_config_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 1)) if mibBuilder.loadTexts: tlpAtsConfigTable.setStatus('current') tlp_ats_config_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 1, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex')) if mibBuilder.loadTexts: tlpAtsConfigEntry.setStatus('current') tlp_ats_config_input_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 1, 1, 1), unsigned32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsConfigInputVoltage.setStatus('current') tlp_ats_config_source_select = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 1, 1, 2), integer32().subtype(subtypeSpec=single_value_constraint(1, 2)).clone(namedValues=named_values(('inputSourceA', 1), ('inputSourceB', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsConfigSourceSelect.setStatus('current') tlp_ats_config_source1_return_time = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 1, 1, 3), unsigned32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsConfigSource1ReturnTime.setStatus('current') tlp_ats_config_source2_return_time = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 1, 1, 4), unsigned32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsConfigSource2ReturnTime.setStatus('current') tlp_ats_config_auto_ramp_on_transition = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 1, 1, 5), integer32().subtype(subtypeSpec=single_value_constraint(0, 1)).clone(namedValues=named_values(('disabled', 0), ('enabled', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsConfigAutoRampOnTransition.setStatus('current') tlp_ats_config_auto_shed_on_transition = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 1, 1, 6), integer32().subtype(subtypeSpec=single_value_constraint(0, 1)).clone(namedValues=named_values(('disabled', 0), ('enabled', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsConfigAutoShedOnTransition.setStatus('current') tlp_ats_config_voltage_range_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 2)) if mibBuilder.loadTexts: tlpAtsConfigVoltageRangeTable.setStatus('current') tlp_ats_config_voltage_range_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 2, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex')) if mibBuilder.loadTexts: tlpAtsConfigVoltageRangeEntry.setStatus('current') tlp_ats_config_high_voltage_transfer = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 2, 1, 1), unsigned32()).setUnits('0.1 Volts').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsConfigHighVoltageTransfer.setStatus('current') tlp_ats_config_high_voltage_reset = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 2, 1, 2), unsigned32()).setUnits('0.1 Volts').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsConfigHighVoltageReset.setStatus('current') tlp_ats_config_source1_transfer_reset = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 2, 1, 3), unsigned32()).setUnits('0.1 Volts').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsConfigSource1TransferReset.setStatus('current') tlp_ats_config_source1_brownout_set = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 2, 1, 4), unsigned32()).setUnits('0.1 Volts').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsConfigSource1BrownoutSet.setStatus('current') tlp_ats_config_source1_transfer_set = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 2, 1, 5), unsigned32()).setUnits('0.1 Volts').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsConfigSource1TransferSet.setStatus('current') tlp_ats_config_source2_transfer_reset = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 2, 1, 6), unsigned32()).setUnits('0.1 Volts').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsConfigSource2TransferReset.setStatus('current') tlp_ats_config_source2_brownout_set = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 2, 1, 7), unsigned32()).setUnits('0.1 Volts').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsConfigSource2BrownoutSet.setStatus('current') tlp_ats_config_source2_transfer_set = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 2, 1, 8), unsigned32()).setUnits('0.1 Volts').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsConfigSource2TransferSet.setStatus('current') tlp_ats_config_low_voltage_reset = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 2, 1, 9), unsigned32()).setUnits('0.1 Volts').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsConfigLowVoltageReset.setStatus('current') tlp_ats_config_low_voltage_transfer = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 2, 1, 10), unsigned32()).setUnits('0.1 Volts').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsConfigLowVoltageTransfer.setStatus('current') tlp_ats_config_voltage_range_limits_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 3)) if mibBuilder.loadTexts: tlpAtsConfigVoltageRangeLimitsTable.setStatus('current') tlp_ats_config_voltage_range_limits_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 3, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex')) if mibBuilder.loadTexts: tlpAtsConfigVoltageRangeLimitsEntry.setStatus('current') tlp_ats_config_source_brownout_set_minimum = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 3, 1, 1), unsigned32()).setUnits('0.1 Volts').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsConfigSourceBrownoutSetMinimum.setStatus('current') tlp_ats_config_source_brownout_set_maximum = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 3, 1, 2), unsigned32()).setUnits('0.1 Volts').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsConfigSourceBrownoutSetMaximum.setStatus('current') tlp_ats_config_source_transfer_set_minimum = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 3, 1, 3), unsigned32()).setUnits('0.1 Volts').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsConfigSourceTransferSetMinimum.setStatus('current') tlp_ats_config_source_transfer_set_maximum = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 3, 1, 4), unsigned32()).setUnits('0.1 Volts').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsConfigSourceTransferSetMaximum.setStatus('current') tlp_ats_config_threshold_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 4)) if mibBuilder.loadTexts: tlpAtsConfigThresholdTable.setStatus('current') tlp_ats_config_threshold_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 4, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex')) if mibBuilder.loadTexts: tlpAtsConfigThresholdEntry.setStatus('current') tlp_ats_config_over_current_threshold = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 4, 1, 1), unsigned32()).setUnits('0.1 Amps').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsConfigOverCurrentThreshold.setStatus('current') tlp_ats_config_over_temperature_threshold = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 4, 1, 2), unsigned32()).setUnits('0.1 Centigrade').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsConfigOverTemperatureThreshold.setStatus('current') tlp_ats_config_over_voltage_threshold = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 4, 1, 3), unsigned32()).setUnits('0.1 Volts').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsConfigOverVoltageThreshold.setStatus('current') tlp_ats_config_over_load_threshold = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 4, 1, 4), unsigned32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsConfigOverLoadThreshold.setStatus('current') tlp_cooling_ident_num_cooling = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 5, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpCoolingIdentNumCooling.setStatus('current') tlp_kvm_ident_num_kvm = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 6, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpKvmIdentNumKvm.setStatus('current') tlp_rack_track_ident_num_rack_track = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 7, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpRackTrackIdentNumRackTrack.setStatus('current') tlp_switch_ident_num_switch = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 8, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpSwitchIdentNumSwitch.setStatus('current') tlp_agent_type = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 1, 1), integer32().subtype(subtypeSpec=single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8)).clone(namedValues=named_values(('unknown', 0), ('pal', 1), ('pansa', 2), ('delta', 3), ('sinetica', 4), ('netos6', 5), ('netos7', 6), ('panms', 7), ('nmc5', 8)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAgentType.setStatus('current') tlp_agent_version = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAgentVersion.setStatus('current') tlp_agent_driver_version = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 1, 3), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAgentDriverVersion.setStatus('current') tlp_agent_mac = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 1, 4), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAgentMAC.setStatus('current') tlp_agent_serial_num = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 1, 5), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAgentSerialNum.setStatus('current') tlp_agent_uuid = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 1, 6), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAgentUuid.setStatus('current') tlp_agent_attributes_supports = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 1)) tlp_agent_attributes_supports_http = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 1, 1), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAgentAttributesSupportsHTTP.setStatus('current') tlp_agent_attributes_supports_https = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 1, 2), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAgentAttributesSupportsHTTPS.setStatus('current') tlp_agent_attributes_supports_ftp = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 1, 3), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAgentAttributesSupportsFTP.setStatus('current') tlp_agent_attributes_supports_telnet_menu = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 1, 4), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAgentAttributesSupportsTelnetMenu.setStatus('current') tlp_agent_attributes_supports_telnet_cli = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 1, 5), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAgentAttributesSupportsTelnetCLI.setStatus('current') tlp_agent_attributes_supports_ssh_menu = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 1, 6), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAgentAttributesSupportsSSHMenu.setStatus('current') tlp_agent_attributes_supports_sshcli = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 1, 7), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAgentAttributesSupportsSSHCLI.setStatus('current') tlp_agent_attributes_supports_snmp = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 1, 8), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAgentAttributesSupportsSNMP.setStatus('current') tlp_agent_attributes_supports_snmp_trap = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 1, 9), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAgentAttributesSupportsSNMPTrap.setStatus('current') tlp_agent_attributes_autostart = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 2)) tlp_agent_attributes_autostart_http = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 2, 1), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAgentAttributesAutostartHTTP.setStatus('current') tlp_agent_attributes_autostart_https = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 2, 2), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAgentAttributesAutostartHTTPS.setStatus('current') tlp_agent_attributes_autostart_ftp = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 2, 3), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAgentAttributesAutostartFTP.setStatus('current') tlp_agent_attributes_autostart_telnet_menu = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 2, 4), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAgentAttributesAutostartTelnetMenu.setStatus('current') tlp_agent_attributes_autostart_telnet_cli = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 2, 5), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAgentAttributesAutostartTelnetCLI.setStatus('current') tlp_agent_attributes_autostart_ssh_menu = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 2, 6), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAgentAttributesAutostartSSHMenu.setStatus('current') tlp_agent_attributes_autostart_sshcli = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 2, 7), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAgentAttributesAutostartSSHCLI.setStatus('current') tlp_agent_attributes_autostart_snmp = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 2, 8), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAgentAttributesAutostartSNMP.setStatus('current') tlp_agent_attributes_snmp = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 3)) tlp_agent_attributes_snm_pv1_enabled = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 3, 1), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAgentAttributesSNMPv1Enabled.setStatus('current') tlp_agent_attributes_snm_pv2c_enabled = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 3, 2), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAgentAttributesSNMPv2cEnabled.setStatus('current') tlp_agent_attributes_snm_pv3_enabled = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 3, 3), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAgentAttributesSNMPv3Enabled.setStatus('current') tlp_agent_attributes_ports = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 4)) tlp_agent_attributes_http_port = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 4, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAgentAttributesHTTPPort.setStatus('current') tlp_agent_attributes_https_port = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 4, 2), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAgentAttributesHTTPSPort.setStatus('current') tlp_agent_attributes_ftp_port = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 4, 3), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAgentAttributesFTPPort.setStatus('current') tlp_agent_attributes_telnet_menu_port = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 4, 4), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAgentAttributesTelnetMenuPort.setStatus('current') tlp_agent_attributes_telnet_cli_port = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 4, 5), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAgentAttributesTelnetCLIPort.setStatus('current') tlp_agent_attributes_ssh_menu_port = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 4, 6), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAgentAttributesSSHMenuPort.setStatus('current') tlp_agent_attributes_sshcli_port = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 4, 7), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAgentAttributesSSHCLIPort.setStatus('current') tlp_agent_attributes_snmp_port = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 4, 8), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAgentAttributesSNMPPort.setStatus('current') tlp_agent_attributes_snmp_trap_port = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 4, 9), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAgentAttributesSNMPTrapPort.setStatus('current') tlp_agent_config_remote_registration = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 2, 1, 1), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAgentConfigRemoteRegistration.setStatus('current') tlp_agent_config_current_time = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 2, 1, 2), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAgentConfigCurrentTime.setStatus('current') tlp_agent_num_email_contacts = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAgentNumEmailContacts.setStatus('current') tlp_agent_email_contact_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 1, 2)) if mibBuilder.loadTexts: tlpAgentEmailContactTable.setStatus('current') tlp_agent_email_contact_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 1, 2, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpAgentEmailContactIndex')) if mibBuilder.loadTexts: tlpAgentEmailContactEntry.setStatus('current') tlp_agent_email_contact_index = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 1, 2, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAgentEmailContactIndex.setStatus('current') tlp_agent_email_contact_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 1, 2, 1, 2), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAgentEmailContactRowStatus.setStatus('current') tlp_agent_email_contact_name = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 1, 2, 1, 3), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAgentEmailContactName.setStatus('current') tlp_agent_email_contact_address = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 1, 2, 1, 4), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAgentEmailContactAddress.setStatus('current') tlp_agent_num_snmp_contacts = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 2, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAgentNumSnmpContacts.setStatus('current') tlp_agent_snmp_contact_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 2, 2)) if mibBuilder.loadTexts: tlpAgentSnmpContactTable.setStatus('current') tlp_agent_snmp_contact_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 2, 2, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpAgentSnmpContactIndex')) if mibBuilder.loadTexts: tlpAgentSnmpContactEntry.setStatus('current') tlp_agent_snmp_contact_index = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 2, 2, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAgentSnmpContactIndex.setStatus('current') tlp_agent_snmp_contact_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 2, 2, 1, 2), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAgentSnmpContactRowStatus.setStatus('current') tlp_agent_snmp_contact_name = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 2, 2, 1, 3), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAgentSnmpContactName.setStatus('current') tlp_agent_snmp_contact_ip_address = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 2, 2, 1, 4), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAgentSnmpContactIpAddress.setStatus('current') tlp_agent_snmp_contact_port = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 2, 2, 1, 5), unsigned32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAgentSnmpContactPort.setStatus('current') tlp_agent_snmp_contact_snmp_version = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 2, 2, 1, 6), integer32().subtype(subtypeSpec=single_value_constraint(1, 2, 3)).clone(namedValues=named_values(('snmpv1', 1), ('snmpv2c', 2), ('snmpv3', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAgentSnmpContactSnmpVersion.setStatus('current') tlp_agent_snmp_contact_security_name = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 2, 2, 1, 7), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAgentSnmpContactSecurityName.setStatus('current') tlp_agent_snmp_contact_priv_password = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 2, 2, 1, 8), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAgentSnmpContactPrivPassword.setStatus('current') tlp_agent_snmp_contact_auth_password = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 2, 2, 1, 9), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAgentSnmpContactAuthPassword.setStatus('current') tlp_alarms_present = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 3, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAlarmsPresent.setStatus('current') tlp_alarm_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 3, 2)) if mibBuilder.loadTexts: tlpAlarmTable.setStatus('current') tlp_alarm_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 3, 2, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpAlarmId')) if mibBuilder.loadTexts: tlpAlarmEntry.setStatus('current') tlp_alarm_id = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 3, 2, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAlarmId.setStatus('current') tlp_alarm_descr = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 3, 2, 1, 2), object_identifier()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAlarmDescr.setStatus('current') tlp_alarm_time = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 3, 2, 1, 3), time_stamp()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAlarmTime.setStatus('current') tlp_alarm_table_ref = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 3, 2, 1, 4), object_identifier()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAlarmTableRef.setStatus('current') tlp_alarm_table_row_ref = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 3, 2, 1, 5), object_identifier()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAlarmTableRowRef.setStatus('current') tlp_alarm_detail = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 3, 2, 1, 6), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAlarmDetail.setStatus('current') tlp_alarm_type = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 3, 2, 1, 7), integer32().subtype(subtypeSpec=single_value_constraint(1, 2, 3, 4, 5, 6)).clone(namedValues=named_values(('critical', 1), ('warning', 2), ('info', 3), ('status', 4), ('offline', 5), ('custom', 6)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAlarmType.setStatus('current') tlp_alarm_state = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 3, 2, 1, 8), integer32().subtype(subtypeSpec=single_value_constraint(1, 2)).clone(namedValues=named_values(('active', 1), ('inactive', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAlarmState.setStatus('current') tlp_alarm_acknowledged = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 3, 2, 1, 9), integer32().subtype(subtypeSpec=single_value_constraint(1, 2)).clone(namedValues=named_values(('notAcknowledged', 1), ('acknowledged', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAlarmAcknowledged.setStatus('current') tlp_alarm_communications_lost = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 2, 1)) if mibBuilder.loadTexts: tlpAlarmCommunicationsLost.setStatus('current') tlp_alarm_user_defined = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 2, 2)) tlp_alarm_user_defined01 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 2, 2, 1)) if mibBuilder.loadTexts: tlpAlarmUserDefined01.setStatus('current') tlp_alarm_user_defined02 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 2, 2, 2)) if mibBuilder.loadTexts: tlpAlarmUserDefined02.setStatus('current') tlp_alarm_user_defined03 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 2, 2, 3)) if mibBuilder.loadTexts: tlpAlarmUserDefined03.setStatus('current') tlp_alarm_user_defined04 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 2, 2, 4)) if mibBuilder.loadTexts: tlpAlarmUserDefined04.setStatus('current') tlp_alarm_user_defined05 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 2, 2, 5)) if mibBuilder.loadTexts: tlpAlarmUserDefined05.setStatus('current') tlp_alarm_user_defined06 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 2, 2, 6)) if mibBuilder.loadTexts: tlpAlarmUserDefined06.setStatus('current') tlp_alarm_user_defined07 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 2, 2, 7)) if mibBuilder.loadTexts: tlpAlarmUserDefined07.setStatus('current') tlp_alarm_user_defined08 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 2, 2, 8)) if mibBuilder.loadTexts: tlpAlarmUserDefined08.setStatus('current') tlp_alarm_user_defined09 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 2, 2, 9)) if mibBuilder.loadTexts: tlpAlarmUserDefined09.setStatus('current') tlp_ups_alarm_battery_bad = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 1)) if mibBuilder.loadTexts: tlpUpsAlarmBatteryBad.setStatus('current') tlp_ups_alarm_on_battery = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 2)) if mibBuilder.loadTexts: tlpUpsAlarmOnBattery.setStatus('current') tlp_ups_alarm_low_battery = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 3)) if mibBuilder.loadTexts: tlpUpsAlarmLowBattery.setStatus('current') tlp_ups_alarm_depleted_battery = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 4)) if mibBuilder.loadTexts: tlpUpsAlarmDepletedBattery.setStatus('current') tlp_ups_alarm_temp_bad = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 5)) if mibBuilder.loadTexts: tlpUpsAlarmTempBad.setStatus('current') tlp_ups_alarm_input_bad = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 6)) if mibBuilder.loadTexts: tlpUpsAlarmInputBad.setStatus('current') tlp_ups_alarm_output_bad = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 7)) if mibBuilder.loadTexts: tlpUpsAlarmOutputBad.setStatus('current') tlp_ups_alarm_output_overload = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 8)) if mibBuilder.loadTexts: tlpUpsAlarmOutputOverload.setStatus('current') tlp_ups_alarm_on_bypass = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 9)) if mibBuilder.loadTexts: tlpUpsAlarmOnBypass.setStatus('current') tlp_ups_alarm_bypass_bad = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 10)) if mibBuilder.loadTexts: tlpUpsAlarmBypassBad.setStatus('current') tlp_ups_alarm_output_off_as_requested = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 11)) if mibBuilder.loadTexts: tlpUpsAlarmOutputOffAsRequested.setStatus('current') tlp_ups_alarm_ups_off_as_requested = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 12)) if mibBuilder.loadTexts: tlpUpsAlarmUpsOffAsRequested.setStatus('current') tlp_ups_alarm_charger_failed = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 13)) if mibBuilder.loadTexts: tlpUpsAlarmChargerFailed.setStatus('current') tlp_ups_alarm_ups_output_off = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 14)) if mibBuilder.loadTexts: tlpUpsAlarmUpsOutputOff.setStatus('current') tlp_ups_alarm_ups_system_off = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 15)) if mibBuilder.loadTexts: tlpUpsAlarmUpsSystemOff.setStatus('current') tlp_ups_alarm_fan_failure = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 16)) if mibBuilder.loadTexts: tlpUpsAlarmFanFailure.setStatus('current') tlp_ups_alarm_fuse_failure = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 17)) if mibBuilder.loadTexts: tlpUpsAlarmFuseFailure.setStatus('current') tlp_ups_alarm_general_fault = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 18)) if mibBuilder.loadTexts: tlpUpsAlarmGeneralFault.setStatus('current') tlp_ups_alarm_diagnostic_test_failed = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 19)) if mibBuilder.loadTexts: tlpUpsAlarmDiagnosticTestFailed.setStatus('current') tlp_ups_alarm_awaiting_power = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 20)) if mibBuilder.loadTexts: tlpUpsAlarmAwaitingPower.setStatus('current') tlp_ups_alarm_shutdown_pending = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 21)) if mibBuilder.loadTexts: tlpUpsAlarmShutdownPending.setStatus('current') tlp_ups_alarm_shutdown_imminent = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 22)) if mibBuilder.loadTexts: tlpUpsAlarmShutdownImminent.setStatus('current') tlp_ups_alarm_load_level_above_threshold = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 23)) tlp_ups_alarm_load_level_above_threshold_total = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 23, 1)) if mibBuilder.loadTexts: tlpUpsAlarmLoadLevelAboveThresholdTotal.setStatus('current') tlp_ups_alarm_load_level_above_threshold_phase1 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 23, 2)) if mibBuilder.loadTexts: tlpUpsAlarmLoadLevelAboveThresholdPhase1.setStatus('current') tlp_ups_alarm_load_level_above_threshold_phase2 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 23, 3)) if mibBuilder.loadTexts: tlpUpsAlarmLoadLevelAboveThresholdPhase2.setStatus('current') tlp_ups_alarm_load_level_above_threshold_phase3 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 23, 4)) if mibBuilder.loadTexts: tlpUpsAlarmLoadLevelAboveThresholdPhase3.setStatus('current') tlp_ups_alarm_output_current_changed = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 24)) if mibBuilder.loadTexts: tlpUpsAlarmOutputCurrentChanged.setStatus('current') tlp_ups_alarm_battery_age_above_threshold = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 25)) if mibBuilder.loadTexts: tlpUpsAlarmBatteryAgeAboveThreshold.setStatus('current') tlp_ups_alarm_load_off = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26)) tlp_ups_alarm_load_off01 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 1)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff01.setStatus('current') tlp_ups_alarm_load_off02 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 2)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff02.setStatus('current') tlp_ups_alarm_load_off03 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 3)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff03.setStatus('current') tlp_ups_alarm_load_off04 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 4)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff04.setStatus('current') tlp_ups_alarm_load_off05 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 5)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff05.setStatus('current') tlp_ups_alarm_load_off06 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 6)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff06.setStatus('current') tlp_ups_alarm_load_off07 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 7)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff07.setStatus('current') tlp_ups_alarm_load_off08 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 8)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff08.setStatus('current') tlp_ups_alarm_load_off09 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 9)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff09.setStatus('current') tlp_ups_alarm_load_off10 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 10)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff10.setStatus('current') tlp_ups_alarm_load_off11 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 11)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff11.setStatus('current') tlp_ups_alarm_load_off12 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 12)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff12.setStatus('current') tlp_ups_alarm_load_off13 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 13)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff13.setStatus('current') tlp_ups_alarm_load_off14 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 14)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff14.setStatus('current') tlp_ups_alarm_load_off15 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 15)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff15.setStatus('current') tlp_ups_alarm_load_off16 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 16)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff16.setStatus('current') tlp_ups_alarm_load_off17 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 17)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff17.setStatus('current') tlp_ups_alarm_load_off18 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 18)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff18.setStatus('current') tlp_ups_alarm_load_off19 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 19)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff19.setStatus('current') tlp_ups_alarm_load_off20 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 20)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff20.setStatus('current') tlp_ups_alarm_load_off21 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 21)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff21.setStatus('current') tlp_ups_alarm_load_off22 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 22)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff22.setStatus('current') tlp_ups_alarm_load_off23 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 23)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff23.setStatus('current') tlp_ups_alarm_load_off24 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 24)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff24.setStatus('current') tlp_ups_alarm_load_off25 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 25)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff25.setStatus('current') tlp_ups_alarm_load_off26 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 26)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff26.setStatus('current') tlp_ups_alarm_load_off27 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 27)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff27.setStatus('current') tlp_ups_alarm_load_off28 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 28)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff28.setStatus('current') tlp_ups_alarm_load_off29 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 29)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff29.setStatus('current') tlp_ups_alarm_load_off30 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 30)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff30.setStatus('current') tlp_ups_alarm_load_off31 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 31)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff31.setStatus('current') tlp_ups_alarm_load_off32 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 32)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff32.setStatus('current') tlp_ups_alarm_load_off33 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 33)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff33.setStatus('current') tlp_ups_alarm_load_off34 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 34)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff34.setStatus('current') tlp_ups_alarm_load_off35 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 35)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff35.setStatus('current') tlp_ups_alarm_load_off36 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 36)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff36.setStatus('current') tlp_ups_alarm_load_off37 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 37)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff37.setStatus('current') tlp_ups_alarm_load_off38 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 38)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff38.setStatus('current') tlp_ups_alarm_load_off39 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 39)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff39.setStatus('current') tlp_ups_alarm_load_off40 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 40)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff40.setStatus('current') tlp_ups_alarm_current_above_threshold = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 27)) tlp_ups_alarm_current_above_threshold1 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 27, 1)) if mibBuilder.loadTexts: tlpUpsAlarmCurrentAboveThreshold1.setStatus('current') tlp_ups_alarm_current_above_threshold2 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 27, 2)) if mibBuilder.loadTexts: tlpUpsAlarmCurrentAboveThreshold2.setStatus('current') tlp_ups_alarm_current_above_threshold3 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 27, 3)) if mibBuilder.loadTexts: tlpUpsAlarmCurrentAboveThreshold3.setStatus('current') tlp_ups_alarm_runtime_below_warning_level = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 28)) if mibBuilder.loadTexts: tlpUpsAlarmRuntimeBelowWarningLevel.setStatus('current') tlp_ups_alarm_bus_start_voltage_low = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 29)) if mibBuilder.loadTexts: tlpUpsAlarmBusStartVoltageLow.setStatus('current') tlp_ups_alarm_bus_over_voltage = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 30)) if mibBuilder.loadTexts: tlpUpsAlarmBusOverVoltage.setStatus('current') tlp_ups_alarm_bus_under_voltage = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 31)) if mibBuilder.loadTexts: tlpUpsAlarmBusUnderVoltage.setStatus('current') tlp_ups_alarm_bus_voltage_unbalanced = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 32)) if mibBuilder.loadTexts: tlpUpsAlarmBusVoltageUnbalanced.setStatus('current') tlp_ups_alarm_inverter_soft_start_bad = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 33)) if mibBuilder.loadTexts: tlpUpsAlarmInverterSoftStartBad.setStatus('current') tlp_ups_alarm_inverter_over_voltage = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 34)) if mibBuilder.loadTexts: tlpUpsAlarmInverterOverVoltage.setStatus('current') tlp_ups_alarm_inverter_under_voltage = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 35)) if mibBuilder.loadTexts: tlpUpsAlarmInverterUnderVoltage.setStatus('current') tlp_ups_alarm_inverter_circuit_bad = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 36)) if mibBuilder.loadTexts: tlpUpsAlarmInverterCircuitBad.setStatus('current') tlp_ups_alarm_battery_over_voltage = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 37)) if mibBuilder.loadTexts: tlpUpsAlarmBatteryOverVoltage.setStatus('current') tlp_ups_alarm_battery_under_voltage = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 38)) if mibBuilder.loadTexts: tlpUpsAlarmBatteryUnderVoltage.setStatus('current') tlp_ups_alarm_site_wiring_fault = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 39)) if mibBuilder.loadTexts: tlpUpsAlarmSiteWiringFault.setStatus('current') tlp_ups_alarm_over_temperature_protection = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 40)) if mibBuilder.loadTexts: tlpUpsAlarmOverTemperatureProtection.setStatus('current') tlp_ups_alarm_over_charged = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 41)) if mibBuilder.loadTexts: tlpUpsAlarmOverCharged.setStatus('current') tlp_ups_alarm_epo_active = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 42)) if mibBuilder.loadTexts: tlpUpsAlarmEPOActive.setStatus('current') tlp_ups_alarm_bypass_frequency_bad = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 43)) if mibBuilder.loadTexts: tlpUpsAlarmBypassFrequencyBad.setStatus('current') tlp_ups_alarm_external_smart_battery_age_above_threshold = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 44)) if mibBuilder.loadTexts: tlpUpsAlarmExternalSmartBatteryAgeAboveThreshold.setStatus('current') tlp_ups_alarm_external_non_smart_battery_age_above_threshold = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 45)) if mibBuilder.loadTexts: tlpUpsAlarmExternalNonSmartBatteryAgeAboveThreshold.setStatus('current') tlp_ups_alarm_smart_battery_comm_lost = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 46)) if mibBuilder.loadTexts: tlpUpsAlarmSmartBatteryCommLost.setStatus('current') tlp_ups_alarm_loads_not_all_on = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 47)) if mibBuilder.loadTexts: tlpUpsAlarmLoadsNotAllOn.setStatus('current') tlp_pdu_alarm_load_level_above_threshold = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 1)) if mibBuilder.loadTexts: tlpPduAlarmLoadLevelAboveThreshold.setStatus('current') tlp_pdu_alarm_input_bad = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 2)) if mibBuilder.loadTexts: tlpPduAlarmInputBad.setStatus('current') tlp_pdu_alarm_output_bad = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 3)) if mibBuilder.loadTexts: tlpPduAlarmOutputBad.setStatus('current') tlp_pdu_alarm_output_overload = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 4)) if mibBuilder.loadTexts: tlpPduAlarmOutputOverload.setStatus('current') tlp_pdu_alarm_output_off = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 5)) if mibBuilder.loadTexts: tlpPduAlarmOutputOff.setStatus('current') tlp_pdu_alarm_load_off = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6)) tlp_pdu_alarm_load_off01 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 1)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff01.setStatus('current') tlp_pdu_alarm_load_off02 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 2)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff02.setStatus('current') tlp_pdu_alarm_load_off03 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 3)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff03.setStatus('current') tlp_pdu_alarm_load_off04 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 4)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff04.setStatus('current') tlp_pdu_alarm_load_off05 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 5)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff05.setStatus('current') tlp_pdu_alarm_load_off06 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 6)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff06.setStatus('current') tlp_pdu_alarm_load_off07 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 7)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff07.setStatus('current') tlp_pdu_alarm_load_off08 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 8)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff08.setStatus('current') tlp_pdu_alarm_load_off09 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 9)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff09.setStatus('current') tlp_pdu_alarm_load_off10 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 10)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff10.setStatus('current') tlp_pdu_alarm_load_off11 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 11)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff11.setStatus('current') tlp_pdu_alarm_load_off12 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 12)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff12.setStatus('current') tlp_pdu_alarm_load_off13 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 13)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff13.setStatus('current') tlp_pdu_alarm_load_off14 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 14)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff14.setStatus('current') tlp_pdu_alarm_load_off15 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 15)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff15.setStatus('current') tlp_pdu_alarm_load_off16 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 16)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff16.setStatus('current') tlp_pdu_alarm_load_off17 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 17)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff17.setStatus('current') tlp_pdu_alarm_load_off18 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 18)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff18.setStatus('current') tlp_pdu_alarm_load_off19 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 19)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff19.setStatus('current') tlp_pdu_alarm_load_off20 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 20)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff20.setStatus('current') tlp_pdu_alarm_load_off21 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 21)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff21.setStatus('current') tlp_pdu_alarm_load_off22 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 22)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff22.setStatus('current') tlp_pdu_alarm_load_off23 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 23)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff23.setStatus('current') tlp_pdu_alarm_load_off24 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 24)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff24.setStatus('current') tlp_pdu_alarm_load_off25 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 25)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff25.setStatus('current') tlp_pdu_alarm_load_off26 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 26)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff26.setStatus('current') tlp_pdu_alarm_load_off27 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 27)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff27.setStatus('current') tlp_pdu_alarm_load_off28 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 28)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff28.setStatus('current') tlp_pdu_alarm_load_off29 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 29)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff29.setStatus('current') tlp_pdu_alarm_load_off30 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 30)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff30.setStatus('current') tlp_pdu_alarm_load_off31 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 31)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff31.setStatus('current') tlp_pdu_alarm_load_off32 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 32)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff32.setStatus('current') tlp_pdu_alarm_load_off33 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 33)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff33.setStatus('current') tlp_pdu_alarm_load_off34 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 34)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff34.setStatus('current') tlp_pdu_alarm_load_off35 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 35)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff35.setStatus('current') tlp_pdu_alarm_load_off36 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 36)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff36.setStatus('current') tlp_pdu_alarm_load_off37 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 37)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff37.setStatus('current') tlp_pdu_alarm_load_off38 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 38)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff38.setStatus('current') tlp_pdu_alarm_load_off39 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 39)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff39.setStatus('current') tlp_pdu_alarm_load_off40 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 40)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff40.setStatus('current') tlp_pdu_alarm_circuit_breaker_open = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 7)) tlp_pdu_alarm_circuit_breaker_open01 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 7, 1)) if mibBuilder.loadTexts: tlpPduAlarmCircuitBreakerOpen01.setStatus('current') tlp_pdu_alarm_circuit_breaker_open02 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 7, 2)) if mibBuilder.loadTexts: tlpPduAlarmCircuitBreakerOpen02.setStatus('current') tlp_pdu_alarm_circuit_breaker_open03 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 7, 3)) if mibBuilder.loadTexts: tlpPduAlarmCircuitBreakerOpen03.setStatus('current') tlp_pdu_alarm_circuit_breaker_open04 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 7, 4)) if mibBuilder.loadTexts: tlpPduAlarmCircuitBreakerOpen04.setStatus('current') tlp_pdu_alarm_circuit_breaker_open05 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 7, 5)) if mibBuilder.loadTexts: tlpPduAlarmCircuitBreakerOpen05.setStatus('current') tlp_pdu_alarm_circuit_breaker_open06 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 7, 6)) if mibBuilder.loadTexts: tlpPduAlarmCircuitBreakerOpen06.setStatus('current') tlp_pdu_alarm_current_above_threshold = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 8)) tlp_pdu_alarm_current_above_threshold1 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 8, 1)) if mibBuilder.loadTexts: tlpPduAlarmCurrentAboveThreshold1.setStatus('current') tlp_pdu_alarm_current_above_threshold2 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 8, 2)) if mibBuilder.loadTexts: tlpPduAlarmCurrentAboveThreshold2.setStatus('current') tlp_pdu_alarm_current_above_threshold3 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 8, 3)) if mibBuilder.loadTexts: tlpPduAlarmCurrentAboveThreshold3.setStatus('current') tlp_pdu_alarm_loads_not_all_on = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 9)) if mibBuilder.loadTexts: tlpPduAlarmLoadsNotAllOn.setStatus('current') tlp_env_alarm_temperature_beyond_limits = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 5, 1)) if mibBuilder.loadTexts: tlpEnvAlarmTemperatureBeyondLimits.setStatus('current') tlp_env_alarm_humidity_beyond_limits = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 5, 2)) if mibBuilder.loadTexts: tlpEnvAlarmHumidityBeyondLimits.setStatus('current') tlp_env_alarm_input_contact = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 5, 3)) tlp_env_alarm_input_contact01 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 5, 3, 1)) if mibBuilder.loadTexts: tlpEnvAlarmInputContact01.setStatus('current') tlp_env_alarm_input_contact02 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 5, 3, 2)) if mibBuilder.loadTexts: tlpEnvAlarmInputContact02.setStatus('current') tlp_env_alarm_input_contact03 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 5, 3, 3)) if mibBuilder.loadTexts: tlpEnvAlarmInputContact03.setStatus('current') tlp_env_alarm_input_contact04 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 5, 3, 4)) if mibBuilder.loadTexts: tlpEnvAlarmInputContact04.setStatus('current') tlp_env_alarm_output_contact = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 5, 4)) tlp_env_alarm_output_contact01 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 5, 4, 1)) if mibBuilder.loadTexts: tlpEnvAlarmOutputContact01.setStatus('current') tlp_env_alarm_output_contact02 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 5, 4, 2)) if mibBuilder.loadTexts: tlpEnvAlarmOutputContact02.setStatus('current') tlp_env_alarm_output_contact03 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 5, 4, 3)) if mibBuilder.loadTexts: tlpEnvAlarmOutputContact03.setStatus('current') tlp_env_alarm_output_contact04 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 5, 4, 4)) if mibBuilder.loadTexts: tlpEnvAlarmOutputContact04.setStatus('current') tlp_ats_alarm_outage = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 1)) tlp_ats_alarm_source1_outage = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 1, 1)) if mibBuilder.loadTexts: tlpAtsAlarmSource1Outage.setStatus('current') tlp_ats_alarm_source2_outage = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 1, 2)) if mibBuilder.loadTexts: tlpAtsAlarmSource2Outage.setStatus('current') tlp_ats_alarm_temperature = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 2)) tlp_ats_alarm_system_temperature = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 2, 1)) if mibBuilder.loadTexts: tlpAtsAlarmSystemTemperature.setStatus('current') tlp_ats_alarm_source1_temperature = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 2, 2)) if mibBuilder.loadTexts: tlpAtsAlarmSource1Temperature.setStatus('current') tlp_ats_alarm_source2_temperature = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 2, 3)) if mibBuilder.loadTexts: tlpAtsAlarmSource2Temperature.setStatus('current') tlp_ats_alarm_load_level_above_threshold = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 3)) if mibBuilder.loadTexts: tlpAtsAlarmLoadLevelAboveThreshold.setStatus('current') tlp_ats_alarm_input_bad = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 4)) if mibBuilder.loadTexts: tlpAtsAlarmInputBad.setStatus('current') tlp_ats_alarm_output_bad = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 5)) if mibBuilder.loadTexts: tlpAtsAlarmOutputBad.setStatus('current') tlp_ats_alarm_output_overload = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 6)) if mibBuilder.loadTexts: tlpAtsAlarmOutputOverload.setStatus('current') tlp_ats_alarm_output_off = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 7)) if mibBuilder.loadTexts: tlpAtsAlarmOutputOff.setStatus('current') tlp_ats_alarm_load_off = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8)) tlp_ats_alarm_load_off01 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 1)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff01.setStatus('current') tlp_ats_alarm_load_off02 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 2)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff02.setStatus('current') tlp_ats_alarm_load_off03 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 3)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff03.setStatus('current') tlp_ats_alarm_load_off04 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 4)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff04.setStatus('current') tlp_ats_alarm_load_off05 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 5)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff05.setStatus('current') tlp_ats_alarm_load_off06 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 6)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff06.setStatus('current') tlp_ats_alarm_load_off07 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 7)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff07.setStatus('current') tlp_ats_alarm_load_off08 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 8)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff08.setStatus('current') tlp_ats_alarm_load_off09 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 9)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff09.setStatus('current') tlp_ats_alarm_load_off10 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 10)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff10.setStatus('current') tlp_ats_alarm_load_off11 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 11)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff11.setStatus('current') tlp_ats_alarm_load_off12 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 12)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff12.setStatus('current') tlp_ats_alarm_load_off13 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 13)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff13.setStatus('current') tlp_ats_alarm_load_off14 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 14)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff14.setStatus('current') tlp_ats_alarm_load_off15 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 15)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff15.setStatus('current') tlp_ats_alarm_load_off16 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 16)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff16.setStatus('current') tlp_ats_alarm_load_off17 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 17)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff17.setStatus('current') tlp_ats_alarm_load_off18 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 18)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff18.setStatus('current') tlp_ats_alarm_load_off19 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 19)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff19.setStatus('current') tlp_ats_alarm_load_off20 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 20)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff20.setStatus('current') tlp_ats_alarm_load_off21 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 21)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff21.setStatus('current') tlp_ats_alarm_load_off22 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 22)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff22.setStatus('current') tlp_ats_alarm_load_off23 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 23)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff23.setStatus('current') tlp_ats_alarm_load_off24 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 24)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff24.setStatus('current') tlp_ats_alarm_load_off25 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 25)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff25.setStatus('current') tlp_ats_alarm_load_off26 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 26)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff26.setStatus('current') tlp_ats_alarm_load_off27 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 27)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff27.setStatus('current') tlp_ats_alarm_load_off28 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 28)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff28.setStatus('current') tlp_ats_alarm_load_off29 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 29)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff29.setStatus('current') tlp_ats_alarm_load_off30 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 30)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff30.setStatus('current') tlp_ats_alarm_load_off31 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 31)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff31.setStatus('current') tlp_ats_alarm_load_off32 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 32)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff32.setStatus('current') tlp_ats_alarm_load_off33 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 33)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff33.setStatus('current') tlp_ats_alarm_load_off34 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 34)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff34.setStatus('current') tlp_ats_alarm_load_off35 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 35)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff35.setStatus('current') tlp_ats_alarm_load_off36 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 36)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff36.setStatus('current') tlp_ats_alarm_load_off37 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 37)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff37.setStatus('current') tlp_ats_alarm_load_off38 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 38)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff38.setStatus('current') tlp_ats_alarm_load_off39 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 39)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff39.setStatus('current') tlp_ats_alarm_load_off40 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 40)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff40.setStatus('current') tlp_ats_alarm_circuit_breaker_open = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 9)) tlp_ats_alarm_circuit_breaker_open01 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 9, 1)) if mibBuilder.loadTexts: tlpAtsAlarmCircuitBreakerOpen01.setStatus('current') tlp_ats_alarm_circuit_breaker_open02 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 9, 2)) if mibBuilder.loadTexts: tlpAtsAlarmCircuitBreakerOpen02.setStatus('current') tlp_ats_alarm_circuit_breaker_open03 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 9, 3)) if mibBuilder.loadTexts: tlpAtsAlarmCircuitBreakerOpen03.setStatus('current') tlp_ats_alarm_circuit_breaker_open04 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 9, 4)) if mibBuilder.loadTexts: tlpAtsAlarmCircuitBreakerOpen04.setStatus('current') tlp_ats_alarm_circuit_breaker_open05 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 9, 5)) if mibBuilder.loadTexts: tlpAtsAlarmCircuitBreakerOpen05.setStatus('current') tlp_ats_alarm_circuit_breaker_open06 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 9, 6)) if mibBuilder.loadTexts: tlpAtsAlarmCircuitBreakerOpen06.setStatus('current') tlp_ats_alarm_current_above_threshold = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 10)) tlp_ats_alarm_current_above_threshold_a1 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 10, 1)) if mibBuilder.loadTexts: tlpAtsAlarmCurrentAboveThresholdA1.setStatus('current') tlp_ats_alarm_current_above_threshold_a2 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 10, 2)) if mibBuilder.loadTexts: tlpAtsAlarmCurrentAboveThresholdA2.setStatus('current') tlp_ats_alarm_current_above_threshold_a3 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 10, 3)) if mibBuilder.loadTexts: tlpAtsAlarmCurrentAboveThresholdA3.setStatus('current') tlp_ats_alarm_current_above_threshold_b1 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 10, 4)) if mibBuilder.loadTexts: tlpAtsAlarmCurrentAboveThresholdB1.setStatus('current') tlp_ats_alarm_current_above_threshold_b2 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 10, 5)) if mibBuilder.loadTexts: tlpAtsAlarmCurrentAboveThresholdB2.setStatus('current') tlp_ats_alarm_current_above_threshold_b3 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 10, 6)) if mibBuilder.loadTexts: tlpAtsAlarmCurrentAboveThresholdB3.setStatus('current') tlp_ats_alarm_loads_not_all_on = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 11)) if mibBuilder.loadTexts: tlpAtsAlarmLoadsNotAllOn.setStatus('current') tlp_ats_alarm_general_fault = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 12)) if mibBuilder.loadTexts: tlpAtsAlarmGeneralFault.setStatus('current') tlp_ats_alarm_voltage = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 13)) tlp_ats_alarm_over_voltage = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 13, 1)) if mibBuilder.loadTexts: tlpAtsAlarmOverVoltage.setStatus('current') tlp_ats_alarm_source1_over_voltage = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 13, 2)) if mibBuilder.loadTexts: tlpAtsAlarmSource1OverVoltage.setStatus('current') tlp_ats_alarm_source2_over_voltage = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 13, 3)) if mibBuilder.loadTexts: tlpAtsAlarmSource2OverVoltage.setStatus('current') tlp_ats_alarm_frequency = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 14)) tlp_ats_alarm_source1_invalid_frequency = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 14, 1)) if mibBuilder.loadTexts: tlpAtsAlarmSource1InvalidFrequency.setStatus('current') tlp_ats_alarm_source2_invalid_frequency = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 14, 2)) if mibBuilder.loadTexts: tlpAtsAlarmSource2InvalidFrequency.setStatus('current') tlp_cooling_alarm_supply_air_sensor_fault = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 1)) if mibBuilder.loadTexts: tlpCoolingAlarmSupplyAirSensorFault.setStatus('current') tlp_cooling_alarm_return_air_sensor_fault = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 2)) if mibBuilder.loadTexts: tlpCoolingAlarmReturnAirSensorFault.setStatus('current') tlp_cooling_alarm_condenser_inlet_air_sensor_fault = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 3)) if mibBuilder.loadTexts: tlpCoolingAlarmCondenserInletAirSensorFault.setStatus('current') tlp_cooling_alarm_condenser_outlet_air_sensor_fault = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 4)) if mibBuilder.loadTexts: tlpCoolingAlarmCondenserOutletAirSensorFault.setStatus('current') tlp_cooling_alarm_suction_temperature_sensor_fault = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 5)) if mibBuilder.loadTexts: tlpCoolingAlarmSuctionTemperatureSensorFault.setStatus('current') tlp_cooling_alarm_evaporator_temperature_sensor_fault = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 6)) if mibBuilder.loadTexts: tlpCoolingAlarmEvaporatorTemperatureSensorFault.setStatus('current') tlp_cooling_alarm_air_filter_clogged = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 7)) if mibBuilder.loadTexts: tlpCoolingAlarmAirFilterClogged.setStatus('current') tlp_cooling_alarm_air_filter_run_hours_violation = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 8)) if mibBuilder.loadTexts: tlpCoolingAlarmAirFilterRunHoursViolation.setStatus('current') tlp_cooling_alarm_suction_pressure_sensor_fault = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 9)) if mibBuilder.loadTexts: tlpCoolingAlarmSuctionPressureSensorFault.setStatus('current') tlp_cooling_alarm_inverter_communications_fault = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 10)) if mibBuilder.loadTexts: tlpCoolingAlarmInverterCommunicationsFault.setStatus('current') tlp_cooling_alarm_remote_shutdown_via_input_contact = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 11)) if mibBuilder.loadTexts: tlpCoolingAlarmRemoteShutdownViaInputContact.setStatus('current') tlp_cooling_alarm_condensate_pump_fault = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 12)) if mibBuilder.loadTexts: tlpCoolingAlarmCondensatePumpFault.setStatus('current') tlp_cooling_alarm_low_refrigerant_startup_fault = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 13)) if mibBuilder.loadTexts: tlpCoolingAlarmLowRefrigerantStartupFault.setStatus('current') tlp_cooling_alarm_condenser_fan_fault = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 14)) if mibBuilder.loadTexts: tlpCoolingAlarmCondenserFanFault.setStatus('current') tlp_cooling_alarm_condenser_failure = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 15)) if mibBuilder.loadTexts: tlpCoolingAlarmCondenserFailure.setStatus('current') tlp_cooling_alarm_evaporator_cooling_failure = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 16)) if mibBuilder.loadTexts: tlpCoolingAlarmEvaporatorCoolingFailure.setStatus('current') tlp_cooling_alarm_return_air_temp_high = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 17)) if mibBuilder.loadTexts: tlpCoolingAlarmReturnAirTempHigh.setStatus('current') tlp_cooling_alarm_supply_air_temp_high = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 18)) if mibBuilder.loadTexts: tlpCoolingAlarmSupplyAirTempHigh.setStatus('current') tlp_cooling_alarm_evaporator_failure = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 19)) if mibBuilder.loadTexts: tlpCoolingAlarmEvaporatorFailure.setStatus('current') tlp_cooling_alarm_evaporator_freeze_up = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 20)) if mibBuilder.loadTexts: tlpCoolingAlarmEvaporatorFreezeUp.setStatus('current') tlp_cooling_alarm_discharge_pressure_high = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 21)) if mibBuilder.loadTexts: tlpCoolingAlarmDischargePressureHigh.setStatus('current') tlp_cooling_alarm_pressure_gauge_failure = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 22)) if mibBuilder.loadTexts: tlpCoolingAlarmPressureGaugeFailure.setStatus('current') tlp_cooling_alarm_discharge_pressure_persistent_high = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 23)) if mibBuilder.loadTexts: tlpCoolingAlarmDischargePressurePersistentHigh.setStatus('current') tlp_cooling_alarm_suction_pressure_low_start_failure = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 24)) if mibBuilder.loadTexts: tlpCoolingAlarmSuctionPressureLowStartFailure.setStatus('current') tlp_cooling_alarm_suction_pressure_low = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 25)) if mibBuilder.loadTexts: tlpCoolingAlarmSuctionPressureLow.setStatus('current') tlp_cooling_alarm_suction_pressure_persistent_low = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 26)) if mibBuilder.loadTexts: tlpCoolingAlarmSuctionPressurePersistentLow.setStatus('current') tlp_cooling_alarm_startup_line_pressure_imbalance = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 27)) if mibBuilder.loadTexts: tlpCoolingAlarmStartupLinePressureImbalance.setStatus('current') tlp_cooling_alarm_compressor_failure = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 28)) if mibBuilder.loadTexts: tlpCoolingAlarmCompressorFailure.setStatus('current') tlp_cooling_alarm_current_limit = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 29)) if mibBuilder.loadTexts: tlpCoolingAlarmCurrentLimit.setStatus('current') tlp_cooling_alarm_water_leak = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 30)) if mibBuilder.loadTexts: tlpCoolingAlarmWaterLeak.setStatus('current') tlp_cooling_alarm_fan_under_current = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 31)) if mibBuilder.loadTexts: tlpCoolingAlarmFanUnderCurrent.setStatus('current') tlp_cooling_alarm_fan_over_current = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 32)) if mibBuilder.loadTexts: tlpCoolingAlarmFanOverCurrent.setStatus('current') tlp_cooling_alarm_discharge_pressure_sensor_fault = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 33)) if mibBuilder.loadTexts: tlpCoolingAlarmDischargePressureSensorFault.setStatus('current') tlp_cooling_alarm_water_full = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 34)) if mibBuilder.loadTexts: tlpCoolingAlarmWaterFull.setStatus('current') tlp_cooling_alarm_auto_cooling_on = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 35)) if mibBuilder.loadTexts: tlpCoolingAlarmAutoCoolingOn.setStatus('current') tlp_cooling_alarm_power_button_pressed = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 36)) if mibBuilder.loadTexts: tlpCoolingAlarmPowerButtonPressed.setStatus('current') tlp_cooling_alarm_disconnected_from_device = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 37)) if mibBuilder.loadTexts: tlpCoolingAlarmDisconnectedFromDevice.setStatus('current') tlp_alarm_control_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 3, 4, 1)) if mibBuilder.loadTexts: tlpAlarmControlTable.setStatus('current') tlp_alarm_control_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 3, 4, 1, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex'), (0, 'TRIPPLITE-PRODUCTS', 'tlpAlarmControlIndex')) if mibBuilder.loadTexts: tlpAlarmControlEntry.setStatus('current') tlp_alarm_control_index = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 3, 4, 1, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAlarmControlIndex.setStatus('current') tlp_alarm_control_descr = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 3, 4, 1, 1, 2), object_identifier()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAlarmControlDescr.setStatus('current') tlp_alarm_control_detail = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 3, 4, 1, 1, 3), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAlarmControlDetail.setStatus('current') tlp_alarm_control_severity = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 3, 4, 1, 1, 4), integer32().subtype(subtypeSpec=single_value_constraint(1, 2, 3)).clone(namedValues=named_values(('critical', 1), ('warning', 2), ('info', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAlarmControlSeverity.setStatus('current') tlp_notifications_alarm_entry_added = notification_type((1, 3, 6, 1, 4, 1, 850, 1, 4, 1, 1)).setObjects(('TRIPPLITE-PRODUCTS', 'tlpAlarmId'), ('TRIPPLITE-PRODUCTS', 'tlpAlarmDescr'), ('TRIPPLITE-PRODUCTS', 'tlpAlarmTime'), ('TRIPPLITE-PRODUCTS', 'tlpAlarmTableRef'), ('TRIPPLITE-PRODUCTS', 'tlpAlarmTableRowRef'), ('TRIPPLITE-PRODUCTS', 'tlpAlarmDetail'), ('TRIPPLITE-PRODUCTS', 'tlpAlarmType')) if mibBuilder.loadTexts: tlpNotificationsAlarmEntryAdded.setStatus('current') tlp_notifications_alarm_entry_removed = notification_type((1, 3, 6, 1, 4, 1, 850, 1, 4, 1, 2)).setObjects(('TRIPPLITE-PRODUCTS', 'tlpAlarmId'), ('TRIPPLITE-PRODUCTS', 'tlpAlarmDescr'), ('TRIPPLITE-PRODUCTS', 'tlpAlarmTime'), ('TRIPPLITE-PRODUCTS', 'tlpAlarmTableRef'), ('TRIPPLITE-PRODUCTS', 'tlpAlarmTableRowRef'), ('TRIPPLITE-PRODUCTS', 'tlpAlarmDetail'), ('TRIPPLITE-PRODUCTS', 'tlpAlarmType')) if mibBuilder.loadTexts: tlpNotificationsAlarmEntryRemoved.setStatus('current') tlp_notify_system_startup = notification_type((1, 3, 6, 1, 4, 1, 850, 1, 4, 1, 3)) if mibBuilder.loadTexts: tlpNotifySystemStartup.setStatus('current') tlp_notify_system_shutdown = notification_type((1, 3, 6, 1, 4, 1, 850, 1, 4, 1, 4)) if mibBuilder.loadTexts: tlpNotifySystemShutdown.setStatus('current') tlp_notify_system_update = notification_type((1, 3, 6, 1, 4, 1, 850, 1, 4, 1, 5)) if mibBuilder.loadTexts: tlpNotifySystemUpdate.setStatus('current') mibBuilder.exportSymbols('TRIPPLITE-PRODUCTS', tlpCoolingAlarmCondenserFanFault=tlpCoolingAlarmCondenserFanFault, tlpCoolingAlarmAirFilterClogged=tlpCoolingAlarmAirFilterClogged, tlpUpsInputPhaseCurrent=tlpUpsInputPhaseCurrent, tlpAtsAlarmLoadOff23=tlpAtsAlarmLoadOff23, tlpAgentNumEmailContacts=tlpAgentNumEmailContacts, tlpAtsOutputEntry=tlpAtsOutputEntry, tlpPduSupportsOutletGroup=tlpPduSupportsOutletGroup, tlpPduDeviceTable=tlpPduDeviceTable, tlpAtsOutletGroupRowStatus=tlpAtsOutletGroupRowStatus, tlpUpsConfigColdStart=tlpUpsConfigColdStart, tlpUpsOutletGroupName=tlpUpsOutletGroupName, tlpPduAlarmLoadOff04=tlpPduAlarmLoadOff04, tlpUpsInputPhaseTable=tlpUpsInputPhaseTable, tlpAgentAttributesSupports=tlpAgentAttributesSupports, tlpAtsAlarmInputBad=tlpAtsAlarmInputBad, tlpUpsBatteryPackIdentTable=tlpUpsBatteryPackIdentTable, tlpPduAlarmOutputOverload=tlpPduAlarmOutputOverload, tlpAgentSnmpContactPort=tlpAgentSnmpContactPort, tlpAgentEmailContactAddress=tlpAgentEmailContactAddress, tlpUpsWatchdogSecsBeforeReboot=tlpUpsWatchdogSecsBeforeReboot, tlpSwitchDevice=tlpSwitchDevice, tlpAtsAlarmLoadOff32=tlpAtsAlarmLoadOff32, tlpPduAlarmLoadOff40=tlpPduAlarmLoadOff40, tlpUpsAlarmLoadOff23=tlpUpsAlarmLoadOff23, tlpUpsOutputLineVoltage=tlpUpsOutputLineVoltage, tlpAtsInputPhaseCurrent=tlpAtsInputPhaseCurrent, tlpAtsAlarmTemperature=tlpAtsAlarmTemperature, tlpSwitch=tlpSwitch, tlpPduDeviceMainLoadControllable=tlpPduDeviceMainLoadControllable, tlpUpsInputTable=tlpUpsInputTable, tlpAtsOutputSource=tlpAtsOutputSource, tlpUpsAlarmCurrentAboveThreshold3=tlpUpsAlarmCurrentAboveThreshold3, tlpCoolingDevice=tlpCoolingDevice, tlpEnvAlarmInputContact01=tlpEnvAlarmInputContact01, tlpUpsBattery=tlpUpsBattery, tlpAtsOutputActivePower=tlpAtsOutputActivePower, tlpPduAlarmLoadOff25=tlpPduAlarmLoadOff25, tlpAlarmControlDescr=tlpAlarmControlDescr, tlpUpsDeviceTestResultsStatus=tlpUpsDeviceTestResultsStatus, tlpAtsDeviceMainLoadControllable=tlpAtsDeviceMainLoadControllable, tlpPduAlarmOutputOff=tlpPduAlarmOutputOff, tlpAtsAlarmLoadOff11=tlpAtsAlarmLoadOff11, tlpPduAlarmLoadOff36=tlpPduAlarmLoadOff36, tlpAtsIdentNumOutletGroups=tlpAtsIdentNumOutletGroups, tlpPduAlarmLoadOff14=tlpPduAlarmLoadOff14, tlpUpsIdentNumOutlets=tlpUpsIdentNumOutlets, tlpPduBreakerStatus=tlpPduBreakerStatus, tlpAtsAlarmSource1Outage=tlpAtsAlarmSource1Outage, tlpPduOutletEntry=tlpPduOutletEntry, tlpAtsOutletPhase=tlpAtsOutletPhase, tlpPduInputEntry=tlpPduInputEntry, tlpAtsDeviceMainLoadCommand=tlpAtsDeviceMainLoadCommand, tlpAtsOutputCurrentMax=tlpAtsOutputCurrentMax, tlpCoolingDetail=tlpCoolingDetail, tlpUpsConfigAutoShedOnTransition=tlpUpsConfigAutoShedOnTransition, tlpPduDisplayOrientation=tlpPduDisplayOrientation, tlpUpsAlarmLoadOff22=tlpUpsAlarmLoadOff22, tlpUpsAlarmLoadOff14=tlpUpsAlarmLoadOff14, tlpPduInput=tlpPduInput, tlpAtsConfigSource1BrownoutSet=tlpAtsConfigSource1BrownoutSet, tlpPduAlarmLoadOff28=tlpPduAlarmLoadOff28, tlpPduHeatsinkEntry=tlpPduHeatsinkEntry, tlpUpsAlarmLoadOff31=tlpUpsAlarmLoadOff31, tlpDeviceManufacturer=tlpDeviceManufacturer, tlpCoolingAlarmEvaporatorFailure=tlpCoolingAlarmEvaporatorFailure, tlpPduAlarmInputBad=tlpPduAlarmInputBad, tlpAtsConfigSource2TransferReset=tlpAtsConfigSource2TransferReset, tlpEnvAlarmOutputContact=tlpEnvAlarmOutputContact, tlpEnvIdentTable=tlpEnvIdentTable, tlpAtsAlarmCurrentAboveThresholdA1=tlpAtsAlarmCurrentAboveThresholdA1, tlpEnvOutputContactInAlarm=tlpEnvOutputContactInAlarm, tlpAgentSnmpContactTable=tlpAgentSnmpContactTable, tlpUpsInputPhaseVoltage=tlpUpsInputPhaseVoltage, tlpUpsOutletGroupEntry=tlpUpsOutletGroupEntry, tlpRackTrackAlarms=tlpRackTrackAlarms, tlpCoolingAlarmDischargePressurePersistentHigh=tlpCoolingAlarmDischargePressurePersistentHigh, tlpAtsAlarmOutputOff=tlpAtsAlarmOutputOff, tlpPduSupportsOutletVoltage=tlpPduSupportsOutletVoltage, tlpUpsAlarmLoadOff34=tlpUpsAlarmLoadOff34, tlpCoolingAlarmEvaporatorTemperatureSensorFault=tlpCoolingAlarmEvaporatorTemperatureSensorFault, tlpUpsAlarmLoadOff37=tlpUpsAlarmLoadOff37, tlpAtsConfigSourceSelect=tlpAtsConfigSourceSelect, tlpAtsOutlet=tlpAtsOutlet, tlpUpsOutletGroupTable=tlpUpsOutletGroupTable, tlpAgentSnmpContactSnmpVersion=tlpAgentSnmpContactSnmpVersion, tlpPduAlarmLoadOff30=tlpPduAlarmLoadOff30, tlpPduAlarmLoadOff23=tlpPduAlarmLoadOff23, tlpUpsOutletDescription=tlpUpsOutletDescription, tlpEnvOutputContactNormalState=tlpEnvOutputContactNormalState, tlpPduAlarmCurrentAboveThreshold1=tlpPduAlarmCurrentAboveThreshold1, tlpDeviceIdentDateInstalled=tlpDeviceIdentDateInstalled, tlpAgentAttributesSSHMenuPort=tlpAgentAttributesSSHMenuPort, tlpUpsAlarmTempBad=tlpUpsAlarmTempBad, tlpAtsAlarmLoadOff31=tlpAtsAlarmLoadOff31, tlpUpsOutletCurrent=tlpUpsOutletCurrent, tlpAtsAlarmCircuitBreakerOpen01=tlpAtsAlarmCircuitBreakerOpen01, tlpDeviceIdentEntry=tlpDeviceIdentEntry, tlpUpsAlarmDiagnosticTestFailed=tlpUpsAlarmDiagnosticTestFailed, tlpPduControlTable=tlpPduControlTable, tlpAlarmControlSeverity=tlpAlarmControlSeverity, tlpAtsControlTable=tlpAtsControlTable, tlpAtsCircuitCurrentMin=tlpAtsCircuitCurrentMin, tlpAtsAlarmLoadOff01=tlpAtsAlarmLoadOff01, tlpUpsBatteryPackConfigMinCellVoltage=tlpUpsBatteryPackConfigMinCellVoltage, tlpAtsIdent=tlpAtsIdent, tlpAlarmCommunicationsLost=tlpAlarmCommunicationsLost, tlpUpsControlRamp=tlpUpsControlRamp, tlpPduAlarmLoadOff06=tlpPduAlarmLoadOff06, tlpAtsAlarmLoadOff22=tlpAtsAlarmLoadOff22, tlpUpsControlBypass=tlpUpsControlBypass, tlpPduInputLowTransferVoltage=tlpPduInputLowTransferVoltage, tlpAlarmsWellKnown=tlpAlarmsWellKnown, tlpEnvInputContactIndex=tlpEnvInputContactIndex, tlpAtsIdentNumCircuits=tlpAtsIdentNumCircuits, tlpAtsOutletBank=tlpAtsOutletBank, tlpUpsAlarmShutdownImminent=tlpUpsAlarmShutdownImminent, tlpPduDeviceOutputCurrentPrecision=tlpPduDeviceOutputCurrentPrecision, tlpAtsInputPhaseEntry=tlpAtsInputPhaseEntry, tlpAtsAlarmOutputBad=tlpAtsAlarmOutputBad, tlpAtsOutletCurrent=tlpAtsOutletCurrent, tlpUpsSupportsEntry=tlpUpsSupportsEntry, tlpAtsControlShed=tlpAtsControlShed, tlpAtsAlarmLoadsNotAllOn=tlpAtsAlarmLoadsNotAllOn, tlpUpsInputNominalFrequency=tlpUpsInputNominalFrequency, tlpPduOutletIndex=tlpPduOutletIndex, tlpPduOutletGroupEntry=tlpPduOutletGroupEntry, tlpSwitchIdentNumSwitch=tlpSwitchIdentNumSwitch, tlpAts=tlpAts, tlpAgentAttributesSNMPPort=tlpAgentAttributesSNMPPort, tlpPduAlarmCircuitBreakerOpen06=tlpPduAlarmCircuitBreakerOpen06, tlpAlarmUserDefined03=tlpAlarmUserDefined03, tlpUpsIdentNumOutletGroups=tlpUpsIdentNumOutletGroups, tlpUpsConfigOffMode=tlpUpsConfigOffMode, tlpCoolingAlarmFanUnderCurrent=tlpCoolingAlarmFanUnderCurrent, tlpAgentType=tlpAgentType, tlpUpsAlarmUpsOutputOff=tlpUpsAlarmUpsOutputOff, tlpAgentUuid=tlpAgentUuid, tlpCoolingAlarmRemoteShutdownViaInputContact=tlpCoolingAlarmRemoteShutdownViaInputContact, tlpPduCircuitPowerFactor=tlpPduCircuitPowerFactor, tlpPduAlarmLoadOff21=tlpPduAlarmLoadOff21, tlpDeviceModel=tlpDeviceModel, tlpAgentAttributesSupportsSNMP=tlpAgentAttributesSupportsSNMP, tlpUpsOutletGroupDescription=tlpUpsOutletGroupDescription, tlpPduDevicePowerOnDelay=tlpPduDevicePowerOnDelay, tlpUpsOutputNominalVoltage=tlpUpsOutputNominalVoltage, tlpUpsBatteryPackConfigCellCapacity=tlpUpsBatteryPackConfigCellCapacity, tlpAgentSettings=tlpAgentSettings, tlpEnvIdentTempSupported=tlpEnvIdentTempSupported, tlpUpsBatteryPackConfigEntry=tlpUpsBatteryPackConfigEntry, tlpAgentAttributesSNMPv2cEnabled=tlpAgentAttributesSNMPv2cEnabled, tlpNotifications=tlpNotifications, tlpPduAlarmLoadOff27=tlpPduAlarmLoadOff27, tlpUpsConfigLineSensitivity=tlpUpsConfigLineSensitivity, tlpCoolingAlarmCondensatePumpFault=tlpCoolingAlarmCondensatePumpFault, tlpAtsSupportsEnergywise=tlpAtsSupportsEnergywise, tlpPduCircuitCurrentMax=tlpPduCircuitCurrentMax, tlpPduControlPduReboot=tlpPduControlPduReboot, PYSNMP_MODULE_ID=tlpProducts, tlpUpsControlUpsOff=tlpUpsControlUpsOff, tlpSwitchConfig=tlpSwitchConfig, tlpUpsBatteryPackIdentSerialNum=tlpUpsBatteryPackIdentSerialNum, tlpAtsHeatsink=tlpAtsHeatsink, tlpAgentAttributesAutostartHTTPS=tlpAgentAttributesAutostartHTTPS, tlpCoolingAlarmCompressorFailure=tlpCoolingAlarmCompressorFailure, tlpAtsOutputCurrentMin=tlpAtsOutputCurrentMin, tlpPduOutputEntry=tlpPduOutputEntry, tlpAtsCircuit=tlpAtsCircuit, tlpPduIdentNumPhases=tlpPduIdentNumPhases, tlpAtsDeviceTemperatureF=tlpAtsDeviceTemperatureF, tlpAtsAlarmLoadOff03=tlpAtsAlarmLoadOff03, tlpUpsAlarmLoadOff17=tlpUpsAlarmLoadOff17, tlpUpsBatteryDetailCharge=tlpUpsBatteryDetailCharge, tlpAgentAttributesSnmp=tlpAgentAttributesSnmp, tlpUpsConfigFaultAction=tlpUpsConfigFaultAction, tlpPduDeviceMainLoadCommand=tlpPduDeviceMainLoadCommand, tlpUpsBatteryPackConfigStrings=tlpUpsBatteryPackConfigStrings, tlpAtsOutletIndex=tlpAtsOutletIndex, tlpUps=tlpUps, tlpPduIdentEntry=tlpPduIdentEntry, tlpUpsOutletGroup=tlpUpsOutletGroup, tlpAtsConfigInputVoltage=tlpAtsConfigInputVoltage, tlpAtsInputSourceInUse=tlpAtsInputSourceInUse, tlpCoolingAlarmAirFilterRunHoursViolation=tlpCoolingAlarmAirFilterRunHoursViolation, tlpCoolingAlarmSuctionTemperatureSensorFault=tlpCoolingAlarmSuctionTemperatureSensorFault, tlpPduSupportsTable=tlpPduSupportsTable, tlpUpsOutletGroupRowStatus=tlpUpsOutletGroupRowStatus, tlpPduAlarmCurrentAboveThreshold3=tlpPduAlarmCurrentAboveThreshold3, tlpUpsAlarmLoadOff33=tlpUpsAlarmLoadOff33, tlpPduInputTable=tlpPduInputTable, tlpAtsInputPhaseIndex=tlpAtsInputPhaseIndex, tlpAtsDisplayTable=tlpAtsDisplayTable, tlpAtsConfigSource2BrownoutSet=tlpAtsConfigSource2BrownoutSet, tlpAtsConfigSource1ReturnTime=tlpAtsConfigSource1ReturnTime, tlpUpsBatteryPackIdentEntry=tlpUpsBatteryPackIdentEntry, tlpAlarms=tlpAlarms, tlpUpsAlarmAwaitingPower=tlpUpsAlarmAwaitingPower, tlpPduIdent=tlpPduIdent, tlpAgentAttributesTelnetCLIPort=tlpAgentAttributesTelnetCLIPort, tlpUpsInputHighTransferVoltage=tlpUpsInputHighTransferVoltage, tlpPduInputPhaseVoltageMin=tlpPduInputPhaseVoltageMin, tlpAtsInputBadTransferVoltageUpperBound=tlpAtsInputBadTransferVoltageUpperBound, tlpEnvAlarmOutputContact01=tlpEnvAlarmOutputContact01, tlpUpsOutputLineEntry=tlpUpsOutputLineEntry, tlpAgentAttributesHTTPPort=tlpAgentAttributesHTTPPort, tlpAgentAttributesSNMPTrapPort=tlpAgentAttributesSNMPTrapPort, tlpAtsInputTable=tlpAtsInputTable, tlpPduAlarmLoadOff07=tlpPduAlarmLoadOff07, tlpAtsDeviceGeneralFault=tlpAtsDeviceGeneralFault, tlpAtsAlarmLoadOff39=tlpAtsAlarmLoadOff39, tlpCoolingAlarmSuctionPressureLow=tlpCoolingAlarmSuctionPressureLow, tlpAgentSnmpContactEntry=tlpAgentSnmpContactEntry, tlpCoolingAlarmReturnAirTempHigh=tlpCoolingAlarmReturnAirTempHigh, tlpAtsAlarmCircuitBreakerOpen04=tlpAtsAlarmCircuitBreakerOpen04, tlpPduInputNominalVoltagePhaseToNeutral=tlpPduInputNominalVoltagePhaseToNeutral, tlpRackTrackIdentNumRackTrack=tlpRackTrackIdentNumRackTrack, tlpUpsWatchdogEntry=tlpUpsWatchdogEntry, tlpUpsAlarmBusVoltageUnbalanced=tlpUpsAlarmBusVoltageUnbalanced, tlpAlarmUserDefined07=tlpAlarmUserDefined07, tlpAtsConfigEntry=tlpAtsConfigEntry, tlpPduAlarmLoadOff22=tlpPduAlarmLoadOff22, tlpUpsAlarmLoadOff32=tlpUpsAlarmLoadOff32, tlpAgentAttributesFTPPort=tlpAgentAttributesFTPPort, tlpPduInputPhaseVoltageMax=tlpPduInputPhaseVoltageMax, tlpUpsAlarmDepletedBattery=tlpUpsAlarmDepletedBattery, tlpPduControlRamp=tlpPduControlRamp, tlpUpsAlarmLoadLevelAboveThresholdPhase1=tlpUpsAlarmLoadLevelAboveThresholdPhase1, tlpEnvOutputContactName=tlpEnvOutputContactName, tlpAtsOutputTable=tlpAtsOutputTable, tlpEnvAlarmTemperatureBeyondLimits=tlpEnvAlarmTemperatureBeyondLimits, tlpKvmAlarms=tlpKvmAlarms, tlpPduDevice=tlpPduDevice, tlpAtsControl=tlpAtsControl, tlpAtsOutletGroupState=tlpAtsOutletGroupState, tlpCoolingAlarmFanOverCurrent=tlpCoolingAlarmFanOverCurrent, tlpPduCircuitIndex=tlpPduCircuitIndex, tlpKvmControl=tlpKvmControl, tlpPduDisplayTable=tlpPduDisplayTable, tlpAtsAlarmLoadOff20=tlpAtsAlarmLoadOff20, tlpUpsConfigAutoRestartLowVoltageCutoff=tlpUpsConfigAutoRestartLowVoltageCutoff, tlpPduAlarmOutputBad=tlpPduAlarmOutputBad, tlpAtsBreakerIndex=tlpAtsBreakerIndex, tlpAtsConfigHighVoltageReset=tlpAtsConfigHighVoltageReset, tlpEnvConfig=tlpEnvConfig, tlpEnvTemperatureC=tlpEnvTemperatureC, tlpAtsAlarmOutputOverload=tlpAtsAlarmOutputOverload, tlpPduAlarmLoadOff=tlpPduAlarmLoadOff, tlpEnvTemperatureInAlarm=tlpEnvTemperatureInAlarm, tlpAgentAttributesAutostart=tlpAgentAttributesAutostart, tlpDeviceID=tlpDeviceID, tlpAtsConfigAutoRampOnTransition=tlpAtsConfigAutoRampOnTransition, tlpAtsBreakerStatus=tlpAtsBreakerStatus, tlpUpsOutletVoltage=tlpUpsOutletVoltage, tlpAgentSnmpContactIpAddress=tlpAgentSnmpContactIpAddress, tlpCoolingAlarmDischargePressureHigh=tlpCoolingAlarmDischargePressureHigh) mibBuilder.exportSymbols('TRIPPLITE-PRODUCTS', tlpEnvAlarmHumidityBeyondLimits=tlpEnvAlarmHumidityBeyondLimits, tlpPduAlarmCurrentAboveThreshold2=tlpPduAlarmCurrentAboveThreshold2, tlpCoolingConfig=tlpCoolingConfig, tlpAtsInputLineIndex=tlpAtsInputLineIndex, tlpPduBreakerEntry=tlpPduBreakerEntry, tlpAtsOutput=tlpAtsOutput, tlpPduDeviceTemperatureC=tlpPduDeviceTemperatureC, tlpEnvAlarmOutputContact02=tlpEnvAlarmOutputContact02, tlpAtsCircuitEntry=tlpAtsCircuitEntry, tlpUpsBatteryDetailCurrent=tlpUpsBatteryDetailCurrent, tlpAtsInputPhaseVoltage=tlpAtsInputPhaseVoltage, tlpAtsConfigSourceTransferSetMinimum=tlpAtsConfigSourceTransferSetMinimum, tlpEnvHumidityEntry=tlpEnvHumidityEntry, tlpAgentEmailContactTable=tlpAgentEmailContactTable, tlpUpsConfigAutoRestartDelayedWakeup=tlpUpsConfigAutoRestartDelayedWakeup, tlpUpsConfigOutputFrequency=tlpUpsConfigOutputFrequency, tlpAlarmUserDefined05=tlpAlarmUserDefined05, tlpUpsDeviceTemperatureF=tlpUpsDeviceTemperatureF, tlpEnvAlarmInputContact=tlpEnvAlarmInputContact, tlpUpsConfigAudibleStatus=tlpUpsConfigAudibleStatus, tlpAlarmControlDetail=tlpAlarmControlDetail, tlpAgentSnmpContactRowStatus=tlpAgentSnmpContactRowStatus, tlpUpsAlarmLoadOff20=tlpUpsAlarmLoadOff20, tlpAtsOutletVoltage=tlpAtsOutletVoltage, tlpUpsAlarmRuntimeBelowWarningLevel=tlpUpsAlarmRuntimeBelowWarningLevel, tlpEnvIdent=tlpEnvIdent, tlpAtsAlarmLoadOff=tlpAtsAlarmLoadOff, tlpAtsDeviceMainLoadState=tlpAtsDeviceMainLoadState, tlpPduControlPduOn=tlpPduControlPduOn, tlpCoolingAlarmPowerButtonPressed=tlpCoolingAlarmPowerButtonPressed, tlpEnvInputContactInAlarm=tlpEnvInputContactInAlarm, tlpPduIdentNumBreakers=tlpPduIdentNumBreakers, tlpPduOutletGroupName=tlpPduOutletGroupName, tlpDeviceStatus=tlpDeviceStatus, tlpAtsDeviceTotalInputPowerRating=tlpAtsDeviceTotalInputPowerRating, tlpRackTrackConfig=tlpRackTrackConfig, tlpCoolingAlarmCondenserOutletAirSensorFault=tlpCoolingAlarmCondenserOutletAirSensorFault, tlpAtsOutputPhaseType=tlpAtsOutputPhaseType, tlpUpsAlarmOutputOffAsRequested=tlpUpsAlarmOutputOffAsRequested, tlpPduIdentNumOutputs=tlpPduIdentNumOutputs, tlpUpsOutputLinePercentLoad=tlpUpsOutputLinePercentLoad, tlpPduHeatsinkTemperatureC=tlpPduHeatsinkTemperatureC, tlpEnvOutputContactCurrentState=tlpEnvOutputContactCurrentState, tlpAtsOutletShedAction=tlpAtsOutletShedAction, tlpUpsAlarmOnBattery=tlpUpsAlarmOnBattery, tlpUpsAlarmLoadOff10=tlpUpsAlarmLoadOff10, tlpPduCircuitTotalPower=tlpPduCircuitTotalPower, tlpAlarmAcknowledged=tlpAlarmAcknowledged, tlpDeviceIdentCurrentUptime=tlpDeviceIdentCurrentUptime, tlpAgentAttributesSNMPv3Enabled=tlpAgentAttributesSNMPv3Enabled, tlpUpsAlarmExternalSmartBatteryAgeAboveThreshold=tlpUpsAlarmExternalSmartBatteryAgeAboveThreshold, tlpAgentDetails=tlpAgentDetails, tlpAtsHeatsinkEntry=tlpAtsHeatsinkEntry, tlpUpsOutletShedAction=tlpUpsOutletShedAction, tlpAlarmTime=tlpAlarmTime, tlpUpsAlarmLoadOff29=tlpUpsAlarmLoadOff29, tlpUpsOutletPower=tlpUpsOutletPower, tlpUpsConfig=tlpUpsConfig, tlpUpsAlarmLoadOff07=tlpUpsAlarmLoadOff07, tlpEnvInputContactEntry=tlpEnvInputContactEntry, tlpUpsInputPhaseVoltageMax=tlpUpsInputPhaseVoltageMax, tlpUpsAlarmBatteryAgeAboveThreshold=tlpUpsAlarmBatteryAgeAboveThreshold, tlpUpsBatteryPackDetailCondition=tlpUpsBatteryPackDetailCondition, tlpPduOutletPhase=tlpPduOutletPhase, tlpDeviceIdentFirmwareVersion=tlpDeviceIdentFirmwareVersion, tlpPduSupportsOutletCurrentPower=tlpPduSupportsOutletCurrentPower, tlpAgentAttributesSupportsTelnetMenu=tlpAgentAttributesSupportsTelnetMenu, tlpUpsAlarmUpsSystemOff=tlpUpsAlarmUpsSystemOff, tlpPduAlarmLoadOff01=tlpPduAlarmLoadOff01, tlpEnvConfigTable=tlpEnvConfigTable, tlpEnvOutputContactIndex=tlpEnvOutputContactIndex, tlpPduInputHighTransferVoltageLowerBound=tlpPduInputHighTransferVoltageLowerBound, tlpUpsConfigOutputVoltage=tlpUpsConfigOutputVoltage, tlpUpsAlarmLoadOff35=tlpUpsAlarmLoadOff35, tlpPduAlarms=tlpPduAlarms, tlpAtsAlarmLoadOff17=tlpAtsAlarmLoadOff17, tlpCoolingAlarmSupplyAirSensorFault=tlpCoolingAlarmSupplyAirSensorFault, tlpUpsEstimatedMinutesRemaining=tlpUpsEstimatedMinutesRemaining, tlpAtsAlarmCurrentAboveThresholdA2=tlpAtsAlarmCurrentAboveThresholdA2, tlpPduAlarmCircuitBreakerOpen02=tlpPduAlarmCircuitBreakerOpen02, tlpAtsCircuitTotalCurrent=tlpAtsCircuitTotalCurrent, tlpKvmIdentNumKvm=tlpKvmIdentNumKvm, tlpUpsAlarmSiteWiringFault=tlpUpsAlarmSiteWiringFault, tlpUpsSupportsTable=tlpUpsSupportsTable, tlpSwitchDetail=tlpSwitchDetail, tlpAtsSupportsRampShed=tlpAtsSupportsRampShed, tlpAtsAlarmLoadOff15=tlpAtsAlarmLoadOff15, tlpEnvIdentHumiditySupported=tlpEnvIdentHumiditySupported, tlpAtsConfigSourceTransferSetMaximum=tlpAtsConfigSourceTransferSetMaximum, tlpAtsInputHighTransferVoltageUpperBound=tlpAtsInputHighTransferVoltageUpperBound, tlpPduOutputActivePower=tlpPduOutputActivePower, tlpPduConfigInputVoltage=tlpPduConfigInputVoltage, tlpAtsOutletCircuit=tlpAtsOutletCircuit, tlpUpsAlarmLoadOff25=tlpUpsAlarmLoadOff25, tlpCoolingAlarmCondenserFailure=tlpCoolingAlarmCondenserFailure, tlpUpsOutletTable=tlpUpsOutletTable, tlpUpsBatteryPackConfigCapacityUnits=tlpUpsBatteryPackConfigCapacityUnits, tlpUpsAlarmOutputCurrentChanged=tlpUpsAlarmOutputCurrentChanged, tlpUpsAlarmSmartBatteryCommLost=tlpUpsAlarmSmartBatteryCommLost, tlpAtsAlarmLoadOff27=tlpAtsAlarmLoadOff27, tlpUpsInput=tlpUpsInput, tlpPduControlPduOff=tlpPduControlPduOff, tlpAtsBreakerEntry=tlpAtsBreakerEntry, tlpDeviceRowStatus=tlpDeviceRowStatus, tlpCoolingAlarmSupplyAirTempHigh=tlpCoolingAlarmSupplyAirTempHigh, tlpPduCircuitTable=tlpPduCircuitTable, tlpDeviceIdentSerialNum=tlpDeviceIdentSerialNum, tlpUpsAlarmLoadOff15=tlpUpsAlarmLoadOff15, tlpPduHeatsinkTable=tlpPduHeatsinkTable, tlpAtsCircuitCurrentLimit=tlpAtsCircuitCurrentLimit, tlpPduCircuitCurrentMin=tlpPduCircuitCurrentMin, tlpUpsAlarmLoadOff06=tlpUpsAlarmLoadOff06, tlpAtsAlarmLoadOff16=tlpAtsAlarmLoadOff16, tlpUpsAlarmLoadOff24=tlpUpsAlarmLoadOff24, tlpAlarmDescr=tlpAlarmDescr, tlpDeviceNumDevices=tlpDeviceNumDevices, tlpAtsConfigVoltageRangeTable=tlpAtsConfigVoltageRangeTable, tlpRackTrackControl=tlpRackTrackControl, tlpAtsAlarmCurrentAboveThreshold=tlpAtsAlarmCurrentAboveThreshold, tlpAtsConfigSource2TransferSet=tlpAtsConfigSource2TransferSet, tlpUpsAlarmInverterSoftStartBad=tlpUpsAlarmInverterSoftStartBad, tlpPduOutputCurrentMax=tlpPduOutputCurrentMax, tlpPduControl=tlpPduControl, tlpAtsAlarms=tlpAtsAlarms, tlpCoolingAlarmSuctionPressureSensorFault=tlpCoolingAlarmSuctionPressureSensorFault, tlpRackTrackDetail=tlpRackTrackDetail, tlpAgentNumSnmpContacts=tlpAgentNumSnmpContacts, tlpAtsInputPhaseVoltageMin=tlpAtsInputPhaseVoltageMin, tlpPduInputHighTransferVoltage=tlpPduInputHighTransferVoltage, tlpAtsInputNominalVoltagePhaseToPhase=tlpAtsInputNominalVoltagePhaseToPhase, tlpCoolingAlarmSuctionPressureLowStartFailure=tlpCoolingAlarmSuctionPressureLowStartFailure, tlpPduOutletName=tlpPduOutletName, tlpUpsAlarmShutdownPending=tlpUpsAlarmShutdownPending, tlpAlarmDetail=tlpAlarmDetail, tlpPduAlarmLoadsNotAllOn=tlpPduAlarmLoadsNotAllOn, tlpKvmDevice=tlpKvmDevice, tlpPduAlarmLoadOff17=tlpPduAlarmLoadOff17, tlpAtsConfigSource2ReturnTime=tlpAtsConfigSource2ReturnTime, tlpUpsConfigTable=tlpUpsConfigTable, tlpUpsAlarmLoadLevelAboveThreshold=tlpUpsAlarmLoadLevelAboveThreshold, tlpUpsOutletShedDelay=tlpUpsOutletShedDelay, tlpPduAlarmLoadOff05=tlpPduAlarmLoadOff05, tlpUpsWatchdog=tlpUpsWatchdog, tlpUpsAlarmLowBattery=tlpUpsAlarmLowBattery, tlpAtsAlarmLoadOff21=tlpAtsAlarmLoadOff21, tlpAtsOutletName=tlpAtsOutletName, tlpAlarmState=tlpAlarmState, tlpAtsOutletGroupIndex=tlpAtsOutletGroupIndex, tlpPdu=tlpPdu, tlpAtsAlarmCurrentAboveThresholdB1=tlpAtsAlarmCurrentAboveThresholdB1, tlpAgentSnmpContactSecurityName=tlpAgentSnmpContactSecurityName, tlpPduOutletGroupDescription=tlpPduOutletGroupDescription, tlpAtsOutputPhase=tlpAtsOutputPhase, tlpUpsAlarmLoadLevelAboveThresholdTotal=tlpUpsAlarmLoadLevelAboveThresholdTotal, tlpAtsInputHighTransferVoltage=tlpAtsInputHighTransferVoltage, tlpAlarmType=tlpAlarmType, tlpUpsBatteryPackIdentIndex=tlpUpsBatteryPackIdentIndex, tlpUpsBatteryPackIdentManufacturer=tlpUpsBatteryPackIdentManufacturer, tlpAtsOutletRampDelay=tlpAtsOutletRampDelay, tlpUpsInputPhaseIndex=tlpUpsInputPhaseIndex, tlpAtsInputNominalVoltagePhaseToNeutral=tlpAtsInputNominalVoltagePhaseToNeutral, tlpAlarmEntry=tlpAlarmEntry, tlpPduAlarmLoadOff39=tlpPduAlarmLoadOff39, tlpAgentSnmpContactAuthPassword=tlpAgentSnmpContactAuthPassword, tlpUpsOutputSource=tlpUpsOutputSource, tlpUpsAlarmLoadOff02=tlpUpsAlarmLoadOff02, tlpUpsConfigEntry=tlpUpsConfigEntry, tlpUpsAlarmBusUnderVoltage=tlpUpsAlarmBusUnderVoltage, tlpDeviceType=tlpDeviceType, tlpAtsOutputCurrent=tlpAtsOutputCurrent, tlpEnvInputContactName=tlpEnvInputContactName, tlpAgentConfigRemoteRegistration=tlpAgentConfigRemoteRegistration, tlpPduConfigEntry=tlpPduConfigEntry, tlpPduAlarmCurrentAboveThreshold=tlpPduAlarmCurrentAboveThreshold, tlpUpsIdentNumUps=tlpUpsIdentNumUps, tlpPduDisplayScheme=tlpPduDisplayScheme, tlpAtsControlResetGeneralFault=tlpAtsControlResetGeneralFault, tlpUpsAlarmOnBypass=tlpUpsAlarmOnBypass, tlpCoolingAlarmInverterCommunicationsFault=tlpCoolingAlarmInverterCommunicationsFault, tlpAgentMAC=tlpAgentMAC, tlpRackTrack=tlpRackTrack, tlpEnvAlarmInputContact04=tlpEnvAlarmInputContact04, tlpUpsBatteryDetailChargerStatus=tlpUpsBatteryDetailChargerStatus, tlpUpsAlarmLoadsNotAllOn=tlpUpsAlarmLoadsNotAllOn, tlpUpsAlarmLoadOff39=tlpUpsAlarmLoadOff39, tlpAlarmTableRowRef=tlpAlarmTableRowRef, tlpUpsBatteryPackConfigChemistry=tlpUpsBatteryPackConfigChemistry, tlpAtsDeviceTemperatureC=tlpAtsDeviceTemperatureC, tlpUpsDevicePowerOnDelay=tlpUpsDevicePowerOnDelay, tlpAtsDeviceTable=tlpAtsDeviceTable, tlpAtsOutletControllable=tlpAtsOutletControllable, tlpEnvOutputContactEntry=tlpEnvOutputContactEntry, tlpUpsSupportsOutletCurrentPower=tlpUpsSupportsOutletCurrentPower, tlpAtsAlarmLoadOff09=tlpAtsAlarmLoadOff09, tlpPduIdentNumOutletGroups=tlpPduIdentNumOutletGroups, tlpUpsBatteryPackIdentSKU=tlpUpsBatteryPackIdentSKU, tlpCoolingAlarmDischargePressureSensorFault=tlpCoolingAlarmDischargePressureSensorFault, tlpPduDisplayUnits=tlpPduDisplayUnits, tlpPduAlarmLoadLevelAboveThreshold=tlpPduAlarmLoadLevelAboveThreshold, tlpAgentEmailContacts=tlpAgentEmailContacts, tlpNotify=tlpNotify, tlpAtsAlarmSource1InvalidFrequency=tlpAtsAlarmSource1InvalidFrequency, tlpAtsInputBadVoltageThreshold=tlpAtsInputBadVoltageThreshold, tlpUpsBatteryDetailCapacity=tlpUpsBatteryDetailCapacity, tlpPduOutputPowerFactor=tlpPduOutputPowerFactor, tlpSwitchIdent=tlpSwitchIdent, tlpPduAlarmLoadOff19=tlpPduAlarmLoadOff19, tlpAtsDeviceAggregatePowerFactor=tlpAtsDeviceAggregatePowerFactor, tlpAlarmUserDefined=tlpAlarmUserDefined, tlpPduDeviceEntry=tlpPduDeviceEntry, tlpUpsAlarmLoadOff28=tlpUpsAlarmLoadOff28, tlpAtsOutletGroupDescription=tlpAtsOutletGroupDescription, tlpAtsControlAtsOn=tlpAtsControlAtsOn, tlpUpsBatteryPackConfigNumBatteries=tlpUpsBatteryPackConfigNumBatteries, tlpUpsBypass=tlpUpsBypass, tlpUpsAlarmInverterUnderVoltage=tlpUpsAlarmInverterUnderVoltage, tlpEnvTemperatureF=tlpEnvTemperatureF, tlpAtsInputBadTransferVoltageLowerBound=tlpAtsInputBadTransferVoltageLowerBound, tlpPduCircuit=tlpPduCircuit, tlpPduConfig=tlpPduConfig, tlpAtsAlarmLoadOff13=tlpAtsAlarmLoadOff13, tlpAtsOutletShedDelay=tlpAtsOutletShedDelay, tlpSwitchAlarms=tlpSwitchAlarms, tlpUpsIdentTable=tlpUpsIdentTable, tlpUpsAlarmBatteryUnderVoltage=tlpUpsAlarmBatteryUnderVoltage, tlpEnvAlarmOutputContact04=tlpEnvAlarmOutputContact04, tlpPduInputNominalVoltagePhaseToPhase=tlpPduInputNominalVoltagePhaseToPhase, tlpEnvirosense=tlpEnvirosense, tlpAtsAlarmLoadOff02=tlpAtsAlarmLoadOff02, tlpUpsConfigAutoRestartOverLoad=tlpUpsConfigAutoRestartOverLoad, tlpAtsAlarmLoadOff28=tlpAtsAlarmLoadOff28, tlpAlarmUserDefined06=tlpAlarmUserDefined06, tlpCoolingAlarmSuctionPressurePersistentLow=tlpCoolingAlarmSuctionPressurePersistentLow, tlpUpsBatteryPackDetailTemperatureF=tlpUpsBatteryPackDetailTemperatureF, tlpUpsSupportsOutletGroup=tlpUpsSupportsOutletGroup, tlpCoolingAlarmLowRefrigerantStartupFault=tlpCoolingAlarmLowRefrigerantStartupFault, tlpPduAlarmLoadOff13=tlpPduAlarmLoadOff13, tlpSoftware=tlpSoftware, tlpAlarmUserDefined04=tlpAlarmUserDefined04, tlpAtsOutletEntry=tlpAtsOutletEntry, tlpUpsAlarmLoadOff11=tlpUpsAlarmLoadOff11, tlpCoolingAlarmWaterLeak=tlpCoolingAlarmWaterLeak, tlpPduIdentNumOutlets=tlpPduIdentNumOutlets, tlpPduOutputVoltage=tlpPduOutputVoltage, tlpAtsConfigTable=tlpAtsConfigTable, tlpUpsControl=tlpUpsControl, tlpEnvNumInputContacts=tlpEnvNumInputContacts, tlpPduOutputSource=tlpPduOutputSource, tlpPduAlarmLoadOff18=tlpPduAlarmLoadOff18, tlpUpsBypassTable=tlpUpsBypassTable, tlpPduCircuitTotalCurrent=tlpPduCircuitTotalCurrent, tlpPduDisplayIntensity=tlpPduDisplayIntensity, tlpCoolingAlarms=tlpCoolingAlarms, tlpAlarmControl=tlpAlarmControl) mibBuilder.exportSymbols('TRIPPLITE-PRODUCTS', tlpUpsBypassFrequency=tlpUpsBypassFrequency, tlpAtsBreakerTable=tlpAtsBreakerTable, tlpAtsSupportsOutletVoltage=tlpAtsSupportsOutletVoltage, tlpDevice=tlpDevice, tlpPduAlarmCircuitBreakerOpen=tlpPduAlarmCircuitBreakerOpen, tlpUpsBypassLineCurrent=tlpUpsBypassLineCurrent, tlpPduOutletState=tlpPduOutletState, tlpPduIdentNumCircuits=tlpPduIdentNumCircuits, tlpCoolingAlarmWaterFull=tlpCoolingAlarmWaterFull, tlpUpsOutletControllable=tlpUpsOutletControllable, tlpPduOutletGroupTable=tlpPduOutletGroupTable, tlpUpsBatteryPackConfigStyle=tlpUpsBatteryPackConfigStyle, tlpUpsAlarmUpsOffAsRequested=tlpUpsAlarmUpsOffAsRequested, tlpAtsInputPhaseFrequency=tlpAtsInputPhaseFrequency, tlpPduOutletGroupRowStatus=tlpPduOutletGroupRowStatus, tlpUpsDeviceEntry=tlpUpsDeviceEntry, tlpUpsAlarmBusOverVoltage=tlpUpsAlarmBusOverVoltage, tlpDeviceIdentTotalUptime=tlpDeviceIdentTotalUptime, tlpPduOutputCurrentMin=tlpPduOutputCurrentMin, tlpPduOutputCurrent=tlpPduOutputCurrent, tlpUpsAlarmOutputBad=tlpUpsAlarmOutputBad, tlpPduOutletCircuit=tlpPduOutletCircuit, tlpUpsConfigThresholdTable=tlpUpsConfigThresholdTable, tlpAtsInputSourceTransitionCount=tlpAtsInputSourceTransitionCount, tlpUpsAlarms=tlpUpsAlarms, tlpPduInputPhaseFrequency=tlpPduInputPhaseFrequency, tlpAtsConfigAutoShedOnTransition=tlpAtsConfigAutoShedOnTransition, tlpAtsAlarmSource2Temperature=tlpAtsAlarmSource2Temperature, tlpAgentConfig=tlpAgentConfig, tlpAtsDevice=tlpAtsDevice, tlpUpsOutletEntry=tlpUpsOutletEntry, tlpAtsHeatsinkTemperatureF=tlpAtsHeatsinkTemperatureF, tlpAgentAttributesAutostartSSHMenu=tlpAgentAttributesAutostartSSHMenu, tlpUpsInputPhaseEntry=tlpUpsInputPhaseEntry, tlpPduCircuitInputVoltage=tlpPduCircuitInputVoltage, tlpPduOutletRampDelay=tlpPduOutletRampDelay, tlpAgentEmailContactName=tlpAgentEmailContactName, tlpAtsAlarmLoadLevelAboveThreshold=tlpAtsAlarmLoadLevelAboveThreshold, tlpPduInputPhaseTable=tlpPduInputPhaseTable, tlpCoolingInput=tlpCoolingInput, tlpUpsDetail=tlpUpsDetail, tlpAtsDisplayOrientation=tlpAtsDisplayOrientation, tlpAgentAttributesAutostartTelnetCLI=tlpAgentAttributesAutostartTelnetCLI, tlpPduBreakerIndex=tlpPduBreakerIndex, tlpAtsAlarmCurrentAboveThresholdA3=tlpAtsAlarmCurrentAboveThresholdA3, tlpAtsAlarmLoadOff35=tlpAtsAlarmLoadOff35, tlpAtsAlarmCurrentAboveThresholdB2=tlpAtsAlarmCurrentAboveThresholdB2, tlpAtsOutletGroupEntry=tlpAtsOutletGroupEntry, tlpAtsCircuitInputVoltage=tlpAtsCircuitInputVoltage, tlpUpsBatteryPackConfigCellsPerBattery=tlpUpsBatteryPackConfigCellsPerBattery, tlpUpsOutletGroupIndex=tlpUpsOutletGroupIndex, tlpCoolingAlarmDisconnectedFromDevice=tlpCoolingAlarmDisconnectedFromDevice, tlpAtsHeatsinkTemperatureC=tlpAtsHeatsinkTemperatureC, tlpUpsOutputEntry=tlpUpsOutputEntry, tlpPduOutlet=tlpPduOutlet, tlpAtsAlarmLoadOff05=tlpAtsAlarmLoadOff05, tlpCoolingAlarmReturnAirSensorFault=tlpCoolingAlarmReturnAirSensorFault, tlpRackTrackIdent=tlpRackTrackIdent, tlpUpsOutput=tlpUpsOutput, tlpCoolingAlarmCurrentLimit=tlpCoolingAlarmCurrentLimit, tlpUpsConfigAutoRestartEntry=tlpUpsConfigAutoRestartEntry, tlpEnvAlarmInputContact02=tlpEnvAlarmInputContact02, tlpAgentSnmpContactIndex=tlpAgentSnmpContactIndex, tlpPduInputPhaseVoltage=tlpPduInputPhaseVoltage, tlpAgentSerialNum=tlpAgentSerialNum, tlpUpsBatteryPackDetailTable=tlpUpsBatteryPackDetailTable, tlpUpsInputHighTransferVoltageLowerBound=tlpUpsInputHighTransferVoltageLowerBound, tlpCoolingAlarmCondenserInletAirSensorFault=tlpCoolingAlarmCondenserInletAirSensorFault, tlpUpsAlarmOutputOverload=tlpUpsAlarmOutputOverload, tlpAtsOutletGroupTable=tlpAtsOutletGroupTable, tlpAgentAttributesTelnetMenuPort=tlpAgentAttributesTelnetMenuPort, tlpAtsAlarmLoadOff12=tlpAtsAlarmLoadOff12, tlpUpsInputLowTransferVoltageUpperBound=tlpUpsInputLowTransferVoltageUpperBound, tlpAtsAlarmLoadOff18=tlpAtsAlarmLoadOff18, tlpUpsOutletGroupCommand=tlpUpsOutletGroupCommand, tlpAtsAlarmCircuitBreakerOpen06=tlpAtsAlarmCircuitBreakerOpen06, tlpAgentAttributesAutostartSSHCLI=tlpAgentAttributesAutostartSSHCLI, tlpEnvConfigEntry=tlpEnvConfigEntry, tlpUpsOutletRampAction=tlpUpsOutletRampAction, tlpAgentSnmpContacts=tlpAgentSnmpContacts, tlpAtsConfigOverLoadThreshold=tlpAtsConfigOverLoadThreshold, tlpAtsDisplayUnits=tlpAtsDisplayUnits, tlpAgentAttributesAutostartTelnetMenu=tlpAgentAttributesAutostartTelnetMenu, tlpPduAlarmLoadOff29=tlpPduAlarmLoadOff29, tlpAgentEmailContactEntry=tlpAgentEmailContactEntry, tlpAtsHeatsinkTable=tlpAtsHeatsinkTable, tlpAtsAlarmLoadOff19=tlpAtsAlarmLoadOff19, tlpPduAlarmLoadOff26=tlpPduAlarmLoadOff26, tlpUpsBatteryPackDetailEntry=tlpUpsBatteryPackDetailEntry, tlpEnvNumOutputContacts=tlpEnvNumOutputContacts, tlpAtsIdentNumOutputs=tlpAtsIdentNumOutputs, tlpEnvHumidityHumidity=tlpEnvHumidityHumidity, tlpAtsOutletPower=tlpAtsOutletPower, tlpAlarmControlTable=tlpAlarmControlTable, tlpAtsAlarmLoadOff06=tlpAtsAlarmLoadOff06, tlpUpsConfigBatteryAgeThreshold=tlpUpsConfigBatteryAgeThreshold, tlpAtsIdentNumInputs=tlpAtsIdentNumInputs, tlpEnvTemperatureHighLimit=tlpEnvTemperatureHighLimit, tlpAlarmUserDefined09=tlpAlarmUserDefined09, tlpPduAlarmLoadOff38=tlpPduAlarmLoadOff38, tlpNotifySystemStartup=tlpNotifySystemStartup, tlpUpsConfigEconomicMode=tlpUpsConfigEconomicMode, tlpAtsConfigSourceBrownoutSetMaximum=tlpAtsConfigSourceBrownoutSetMaximum, tlpUpsBypassLineEntry=tlpUpsBypassLineEntry, tlpUpsBatteryPackConfigLocation=tlpUpsBatteryPackConfigLocation, tlpUpsIdentNumInputs=tlpUpsIdentNumInputs, tlpUpsIdent=tlpUpsIdent, tlpUpsAlarmCurrentAboveThreshold2=tlpUpsAlarmCurrentAboveThreshold2, tlpUpsBatteryDetailTable=tlpUpsBatteryDetailTable, tlpAlarmsPresent=tlpAlarmsPresent, tlpAtsInput=tlpAtsInput, tlpAtsCircuitPhase=tlpAtsCircuitPhase, tlpUpsOutletGroupState=tlpUpsOutletGroupState, tlpHardware=tlpHardware, tlpPduAlarmLoadOff31=tlpPduAlarmLoadOff31, tlpPduInputPhaseEntry=tlpPduInputPhaseEntry, tlpAtsAlarmOutage=tlpAtsAlarmOutage, tlpAtsConfigSource1TransferSet=tlpAtsConfigSource1TransferSet, tlpPduInputPhasePhaseType=tlpPduInputPhasePhaseType, tlpPduOutput=tlpPduOutput, tlpAtsAlarmLoadOff08=tlpAtsAlarmLoadOff08, tlpPduAlarmLoadOff09=tlpPduAlarmLoadOff09, tlpUpsAlarmLoadOff=tlpUpsAlarmLoadOff, tlpAtsIdentNumOutlets=tlpAtsIdentNumOutlets, tlpPduOutletGroupIndex=tlpPduOutletGroupIndex, tlpUpsBatterySummaryTable=tlpUpsBatterySummaryTable, tlpUpsAlarmGeneralFault=tlpUpsAlarmGeneralFault, tlpAgentAttributesPorts=tlpAgentAttributesPorts, tlpUpsAlarmLoadOff13=tlpUpsAlarmLoadOff13, tlpAgentConfigCurrentTime=tlpAgentConfigCurrentTime, tlpAgentEmailContactIndex=tlpAgentEmailContactIndex, tlpUpsDeviceTable=tlpUpsDeviceTable, tlpUpsConfigAutoBatteryTest=tlpUpsConfigAutoBatteryTest, tlpUpsInputPhaseFrequency=tlpUpsInputPhaseFrequency, tlpAgentDriverVersion=tlpAgentDriverVersion, tlpUpsAlarmLoadOff19=tlpUpsAlarmLoadOff19, tlpEnvInputContactCurrentState=tlpEnvInputContactCurrentState, tlpUpsSupportsRampShed=tlpUpsSupportsRampShed, tlpAlarmControlEntry=tlpAlarmControlEntry, tlpEnvAlarmInputContact03=tlpEnvAlarmInputContact03, tlpPduHeatsinkTemperatureF=tlpPduHeatsinkTemperatureF, tlpAgentAttributesSupportsSNMPTrap=tlpAgentAttributesSupportsSNMPTrap, tlpAtsAlarmLoadOff07=tlpAtsAlarmLoadOff07, tlpAtsInputCurrentLimit=tlpAtsInputCurrentLimit, tlpAgentVersion=tlpAgentVersion, tlpUpsBatteryPackDetailLastReplaceDate=tlpUpsBatteryPackDetailLastReplaceDate, tlpPduIdentNumInputs=tlpPduIdentNumInputs, tlpPduControlEntry=tlpPduControlEntry, tlpUpsAlarmOverTemperatureProtection=tlpUpsAlarmOverTemperatureProtection, tlpAgentSnmpContactName=tlpAgentSnmpContactName, tlpPduAlarmLoadOff11=tlpPduAlarmLoadOff11, tlpPduAlarmLoadOff02=tlpPduAlarmLoadOff02, tlpNotificationsAlarmEntryAdded=tlpNotificationsAlarmEntryAdded, tlpUpsBatteryPackConfigMaxCellVoltage=tlpUpsBatteryPackConfigMaxCellVoltage, tlpUpsAlarmLoadOff26=tlpUpsAlarmLoadOff26, tlpAtsAlarmOverVoltage=tlpAtsAlarmOverVoltage, tlpAgentAttributesSNMPv1Enabled=tlpAgentAttributesSNMPv1Enabled, tlpUpsBatteryDetailVoltage=tlpUpsBatteryDetailVoltage, tlpUpsDeviceTestDate=tlpUpsDeviceTestDate, tlpAtsAlarmLoadOff40=tlpAtsAlarmLoadOff40, tlpUpsInputLowTransferVoltage=tlpUpsInputLowTransferVoltage, tlpEnvTemperatureEntry=tlpEnvTemperatureEntry, tlpPduOutletDescription=tlpPduOutletDescription, tlpDeviceDetail=tlpDeviceDetail, tlpUpsDevice=tlpUpsDevice, tlpAtsOutputIndex=tlpAtsOutputIndex, tlpAtsInputEntry=tlpAtsInputEntry, tlpUpsAlarmBusStartVoltageLow=tlpUpsAlarmBusStartVoltageLow, tlpAtsAlarmVoltage=tlpAtsAlarmVoltage, tlpAtsAlarmCircuitBreakerOpen05=tlpAtsAlarmCircuitBreakerOpen05, tlpAtsOutputPowerFactor=tlpAtsOutputPowerFactor, tlpDeviceLocation=tlpDeviceLocation, tlpEnvIdentEntry=tlpEnvIdentEntry, tlpPduAlarmLoadOff35=tlpPduAlarmLoadOff35, tlpAtsAlarmSource1Temperature=tlpAtsAlarmSource1Temperature, tlpUpsOutputLineFrequency=tlpUpsOutputLineFrequency, tlpCoolingAlarmEvaporatorCoolingFailure=tlpCoolingAlarmEvaporatorCoolingFailure, tlpAtsCircuitPowerFactor=tlpAtsCircuitPowerFactor, tlpPduIdentNumHeatsinks=tlpPduIdentNumHeatsinks, tlpPduOutletBank=tlpPduOutletBank, tlpAtsAlarmLoadOff38=tlpAtsAlarmLoadOff38, tlpUpsConfigLowBatteryTime=tlpUpsConfigLowBatteryTime, tlpAtsAlarmSource2InvalidFrequency=tlpAtsAlarmSource2InvalidFrequency, tlpUpsWatchdogSupported=tlpUpsWatchdogSupported, tlpAtsConfigOverCurrentThreshold=tlpAtsConfigOverCurrentThreshold, tlpUpsConfigAutoRampOnTransition=tlpUpsConfigAutoRampOnTransition, tlpPduOutletShedAction=tlpPduOutletShedAction, tlpCoolingIdentNumCooling=tlpCoolingIdentNumCooling, tlpAtsConfigOverVoltageThreshold=tlpAtsConfigOverVoltageThreshold, tlpKvm=tlpKvm, tlpUpsIdentNumBypass=tlpUpsIdentNumBypass, tlpUpsDeviceMainLoadState=tlpUpsDeviceMainLoadState, tlpAtsIdentNumHeatsinks=tlpAtsIdentNumHeatsinks, tlpAgentAttributesAutostartHTTP=tlpAgentAttributesAutostartHTTP, tlpNotificationsAlarmEntryRemoved=tlpNotificationsAlarmEntryRemoved, tlpAtsConfigLowVoltageTransfer=tlpAtsConfigLowVoltageTransfer, tlpPduAlarmLoadOff12=tlpPduAlarmLoadOff12, tlpUpsAlarmInputBad=tlpUpsAlarmInputBad, tlpAtsOutletGroupName=tlpAtsOutletGroupName, tlpAtsInputPhaseType=tlpAtsInputPhaseType, tlpAlarmUserDefined08=tlpAlarmUserDefined08, tlpKvmIdent=tlpKvmIdent, tlpUpsIdentEntry=tlpUpsIdentEntry, tlpAtsDisplayAutoScroll=tlpAtsDisplayAutoScroll, tlpUpsBatteryDetailEntry=tlpUpsBatteryDetailEntry, tlpAtsConfigThresholdTable=tlpAtsConfigThresholdTable, tlpPduOutletPower=tlpPduOutletPower, tlpUpsAlarmFanFailure=tlpUpsAlarmFanFailure, tlpUpsConfigLowBatteryThreshold=tlpUpsConfigLowBatteryThreshold, tlpCoolingAlarmAutoCoolingOn=tlpCoolingAlarmAutoCoolingOn, tlpDeviceAlarms=tlpDeviceAlarms, tlpAtsOutletTable=tlpAtsOutletTable, tlpUpsConfigThresholdEntry=tlpUpsConfigThresholdEntry, tlpEnvAlarmOutputContact03=tlpEnvAlarmOutputContact03, tlpAtsInputPhaseTable=tlpAtsInputPhaseTable, tlpUpsInputLineBads=tlpUpsInputLineBads, tlpCoolingAlarmPressureGaugeFailure=tlpCoolingAlarmPressureGaugeFailure, tlpAtsHeatsinkIndex=tlpAtsHeatsinkIndex, tlpPduInputNominalVoltage=tlpPduInputNominalVoltage, tlpAtsInputSourceAvailability=tlpAtsInputSourceAvailability, tlpAgentAttributesSupportsFTP=tlpAgentAttributesSupportsFTP, tlpPduOutletGroupCommand=tlpPduOutletGroupCommand, tlpPduAlarmLoadOff15=tlpPduAlarmLoadOff15, tlpAtsDisplayEntry=tlpAtsDisplayEntry, tlpPduAlarmLoadOff32=tlpPduAlarmLoadOff32, tlpEnvHumidityInAlarm=tlpEnvHumidityInAlarm, tlpAtsOutputVoltage=tlpAtsOutputVoltage, tlpAtsDeviceEntry=tlpAtsDeviceEntry, tlpUpsConfigInputVoltage=tlpUpsConfigInputVoltage, tlpKvmConfig=tlpKvmConfig, tlpPduAlarmCircuitBreakerOpen05=tlpPduAlarmCircuitBreakerOpen05, tlpUpsControlUpsOn=tlpUpsControlUpsOn, tlpAtsOutletState=tlpAtsOutletState, tlpPduIdentTable=tlpPduIdentTable, tlpPduOutletCurrent=tlpPduOutletCurrent, tlpAtsBreaker=tlpAtsBreaker, tlpUpsAlarmLoadOff12=tlpUpsAlarmLoadOff12, tlpAgentIdent=tlpAgentIdent, tlpAtsHeatsinkStatus=tlpAtsHeatsinkStatus, tlpAlarmControlIndex=tlpAlarmControlIndex, tlpPduDeviceTotalInputPowerRating=tlpPduDeviceTotalInputPowerRating, tlpUpsAlarmLoadOff01=tlpUpsAlarmLoadOff01, tlpPduDevicePhaseImbalance=tlpPduDevicePhaseImbalance, tlpPduOutletTable=tlpPduOutletTable, tlpUpsIdentNumOutputs=tlpUpsIdentNumOutputs, tlpAtsAlarmLoadOff25=tlpAtsAlarmLoadOff25, tlpPduCircuitCurrentLimit=tlpPduCircuitCurrentLimit, tlpAtsOutletCommand=tlpAtsOutletCommand, tlpAtsConfigThresholdEntry=tlpAtsConfigThresholdEntry, tlpEnvInputContactNormalState=tlpEnvInputContactNormalState, tlpAtsOutletGroup=tlpAtsOutletGroup, tlpPduInputCurrentLimit=tlpPduInputCurrentLimit, tlpAtsConfigVoltageRangeLimitsTable=tlpAtsConfigVoltageRangeLimitsTable, tlpAtsInputPhaseVoltageMax=tlpAtsInputPhaseVoltageMax) mibBuilder.exportSymbols('TRIPPLITE-PRODUCTS', tlpEnvDetail=tlpEnvDetail, tlpAtsCircuitTable=tlpAtsCircuitTable, tlpPduOutletCommand=tlpPduOutletCommand, tlpUpsBatteryPackConfigTable=tlpUpsBatteryPackConfigTable, tlpPduAlarmLoadOff20=tlpPduAlarmLoadOff20, tlpAtsAlarmSource2OverVoltage=tlpAtsAlarmSource2OverVoltage, tlpNotifySystemShutdown=tlpNotifySystemShutdown, tlpUpsIdentNumPhases=tlpUpsIdentNumPhases, tlpPduAlarmLoadOff37=tlpPduAlarmLoadOff37, tlpUpsBypassEntry=tlpUpsBypassEntry, tlpUpsAlarmLoadOff03=tlpUpsAlarmLoadOff03, tlpAtsCircuitIndex=tlpAtsCircuitIndex, tlpPduHeatsinkStatus=tlpPduHeatsinkStatus, tlpAtsAlarmCircuitBreakerOpen=tlpAtsAlarmCircuitBreakerOpen, tlpUpsAlarmLoadOff04=tlpUpsAlarmLoadOff04, tlpAtsSupportsOutletCurrentPower=tlpAtsSupportsOutletCurrentPower, tlpUpsAlarmCurrentAboveThreshold1=tlpUpsAlarmCurrentAboveThreshold1, tlpAtsIdentNumAts=tlpAtsIdentNumAts, tlpPduOutletVoltage=tlpPduOutletVoltage, tlpAtsOutletRampAction=tlpAtsOutletRampAction, tlpPduBreaker=tlpPduBreaker, tlpPduAlarmLoadOff08=tlpPduAlarmLoadOff08, tlpAtsOutletGroupCommand=tlpAtsOutletGroupCommand, tlpEnvTemperatureLowLimit=tlpEnvTemperatureLowLimit, tlpPduOutletGroup=tlpPduOutletGroup, tlpAtsAlarmLoadOff33=tlpAtsAlarmLoadOff33, tlpDeviceIdentProtocol=tlpDeviceIdentProtocol, tlpUpsBypassLineIndex=tlpUpsBypassLineIndex, tlpAgentAlarms=tlpAgentAlarms, tlpPduIdentNumPdu=tlpPduIdentNumPdu, tlpUpsSupportsOutletVoltage=tlpUpsSupportsOutletVoltage, tlpPduCircuitPhase=tlpPduCircuitPhase, tlpAtsAlarmLoadOff24=tlpAtsAlarmLoadOff24, tlpPduDeviceMainLoadState=tlpPduDeviceMainLoadState, tlpUpsAlarmInverterCircuitBad=tlpUpsAlarmInverterCircuitBad, tlpPduBreakerTable=tlpPduBreakerTable, tlpUpsOutletState=tlpUpsOutletState, tlpAtsInputBadTransferVoltage=tlpAtsInputBadTransferVoltage, tlpUpsOutletRampDelay=tlpUpsOutletRampDelay, tlpUpsOutputLineCurrent=tlpUpsOutputLineCurrent, tlpPduAlarmLoadOff16=tlpPduAlarmLoadOff16, tlpUpsOutputTable=tlpUpsOutputTable, tlpAgentAttributesSSHCLIPort=tlpAgentAttributesSSHCLIPort, tlpAlarmTable=tlpAlarmTable, tlpAtsAlarmSystemTemperature=tlpAtsAlarmSystemTemperature, tlpPduAlarmCircuitBreakerOpen03=tlpPduAlarmCircuitBreakerOpen03, tlpUpsAlarmLoadOff05=tlpUpsAlarmLoadOff05, tlpCooling=tlpCooling, tlpAtsSupportsOutletGroup=tlpAtsSupportsOutletGroup, tlpUpsConfigBypassUpperLimitPercent=tlpUpsConfigBypassUpperLimitPercent, tlpEnvOutputContactTable=tlpEnvOutputContactTable, tlpAtsAlarmGeneralFault=tlpAtsAlarmGeneralFault, tlpSwitchControl=tlpSwitchControl, tlpAtsControlAtsReboot=tlpAtsControlAtsReboot, tlpPduInputLowTransferVoltageLowerBound=tlpPduInputLowTransferVoltageLowerBound, tlpUpsAlarmLoadOff30=tlpUpsAlarmLoadOff30, tlpAgentAttributes=tlpAgentAttributes, tlpPduSupportsEntry=tlpPduSupportsEntry, tlpUpsWatchdogTable=tlpUpsWatchdogTable, tlpAtsDisplayIntensity=tlpAtsDisplayIntensity, tlpUpsAlarmInverterOverVoltage=tlpUpsAlarmInverterOverVoltage, tlpAtsConfig=tlpAtsConfig, tlpUpsAlarmLoadOff09=tlpUpsAlarmLoadOff09, tlpCoolingAlarmStartupLinePressureImbalance=tlpCoolingAlarmStartupLinePressureImbalance, tlpAtsAlarmLoadOff26=tlpAtsAlarmLoadOff26, tlpDeviceIdentHardwareVersion=tlpDeviceIdentHardwareVersion, tlpAtsAlarmLoadOff10=tlpAtsAlarmLoadOff10, tlpAlarmTableRef=tlpAlarmTableRef, tlpUpsInputNominalVoltage=tlpUpsInputNominalVoltage, tlpUpsBatteryPackIdentFirmware=tlpUpsBatteryPackIdentFirmware, tlpAtsInputHighTransferVoltageLowerBound=tlpAtsInputHighTransferVoltageLowerBound, tlpAtsAlarmLoadOff30=tlpAtsAlarmLoadOff30, tlpUpsInputHighTransferVoltageUpperBound=tlpUpsInputHighTransferVoltageUpperBound, tlpUpsOutputLineIndex=tlpUpsOutputLineIndex, tlpUpsSecondsOnBattery=tlpUpsSecondsOnBattery, tlpAtsDeviceOutputPowerTotal=tlpAtsDeviceOutputPowerTotal, tlpUpsDeviceTemperatureC=tlpUpsDeviceTemperatureC, tlpUpsAlarmLoadLevelAboveThresholdPhase2=tlpUpsAlarmLoadLevelAboveThresholdPhase2, tlpAgentAttributesSupportsTelnetCLI=tlpAgentAttributesSupportsTelnetCLI, tlpUpsAlarmLoadOff40=tlpUpsAlarmLoadOff40, tlpUpsAlarmExternalNonSmartBatteryAgeAboveThreshold=tlpUpsAlarmExternalNonSmartBatteryAgeAboveThreshold, tlpUpsInputEntry=tlpUpsInputEntry, tlpPduInputPhaseCurrent=tlpPduInputPhaseCurrent, tlpUpsConfigOverLoadThreshold=tlpUpsConfigOverLoadThreshold, tlpAtsAlarmFrequency=tlpAtsAlarmFrequency, tlpAtsAlarmCircuitBreakerOpen03=tlpAtsAlarmCircuitBreakerOpen03, tlpUpsBypassLineTable=tlpUpsBypassLineTable, tlpPduDeviceTemperatureF=tlpPduDeviceTemperatureF, tlpAgentAttributesSupportsHTTPS=tlpAgentAttributesSupportsHTTPS, tlpAtsAlarmSource2Outage=tlpAtsAlarmSource2Outage, tlpUpsBatterySummaryEntry=tlpUpsBatterySummaryEntry, tlpEnvAlarms=tlpEnvAlarms, tlpEnvHumidityHighLimit=tlpEnvHumidityHighLimit, tlpUpsBypassLinePower=tlpUpsBypassLinePower, tlpAtsAlarmLoadOff34=tlpAtsAlarmLoadOff34, tlpUpsBatteryPackConfigBatteriesPerString=tlpUpsBatteryPackConfigBatteriesPerString, tlpKvmDetail=tlpKvmDetail, tlpAtsAlarmLoadOff04=tlpAtsAlarmLoadOff04, tlpCoolingAlarmEvaporatorFreezeUp=tlpCoolingAlarmEvaporatorFreezeUp, tlpUpsOutlet=tlpUpsOutlet, tlpDeviceName=tlpDeviceName, tlpEnvIdentNumEnvirosense=tlpEnvIdentNumEnvirosense, tlpUpsBatteryPackDetailNextReplaceDate=tlpUpsBatteryPackDetailNextReplaceDate, tlpPduOutputPhaseType=tlpPduOutputPhaseType, tlpAtsSupportsTable=tlpAtsSupportsTable, tlpPduAlarmLoadOff33=tlpPduAlarmLoadOff33, tlpAtsControlAtsOff=tlpAtsControlAtsOff, tlpPduDisplayAutoScroll=tlpPduDisplayAutoScroll, tlpPduAlarmCircuitBreakerOpen04=tlpPduAlarmCircuitBreakerOpen04, tlpPduHeatsink=tlpPduHeatsink, tlpAtsConfigSourceBrownoutSetMinimum=tlpAtsConfigSourceBrownoutSetMinimum, tlpUpsEstimatedChargeRemaining=tlpUpsEstimatedChargeRemaining, tlpUpsOutletIndex=tlpUpsOutletIndex, tlpCoolingOutput=tlpCoolingOutput, tlpAtsCircuitTotalPower=tlpAtsCircuitTotalPower, tlpEnvInputContactTable=tlpEnvInputContactTable, tlpAtsConfigVoltageRangeEntry=tlpAtsConfigVoltageRangeEntry, tlpUpsAlarmLoadOff38=tlpUpsAlarmLoadOff38, tlpUpsConfigBypassLowerLimitVoltage=tlpUpsConfigBypassLowerLimitVoltage, tlpAgentAttributesSupportsHTTP=tlpAgentAttributesSupportsHTTP, tlpEnvHumidityLowLimit=tlpEnvHumidityLowLimit, tlpAtsDevicePhaseImbalance=tlpAtsDevicePhaseImbalance, tlpUpsBypassLineVoltage=tlpUpsBypassLineVoltage, tlpUpsAlarmLoadOff08=tlpUpsAlarmLoadOff08, tlpUpsConfigInputFrequency=tlpUpsConfigInputFrequency, tlpUpsAlarmLoadOff16=tlpUpsAlarmLoadOff16, tlpUpsOutletName=tlpUpsOutletName, tlpPduControlShed=tlpPduControlShed, tlpPduAlarmCircuitBreakerOpen01=tlpPduAlarmCircuitBreakerOpen01, tlpNotifySystemUpdate=tlpNotifySystemUpdate, tlpAtsIdentNumPhases=tlpAtsIdentNumPhases, tlpPduHeatsinkIndex=tlpPduHeatsinkIndex, tlpAtsDetail=tlpAtsDetail, tlpAtsAlarmCircuitBreakerOpen02=tlpAtsAlarmCircuitBreakerOpen02, tlpDeviceTypes=tlpDeviceTypes, tlpDeviceIdentCommPortName=tlpDeviceIdentCommPortName, tlpAtsDisplayScheme=tlpAtsDisplayScheme, tlpUpsAlarmCurrentAboveThreshold=tlpUpsAlarmCurrentAboveThreshold, tlpEnvHumidityTable=tlpEnvHumidityTable, tlpAgentAttributesSupportsSSHCLI=tlpAgentAttributesSupportsSSHCLI, tlpUpsInputLowTransferVoltageLowerBound=tlpUpsInputLowTransferVoltageLowerBound, tlpAtsDeviceOutputCurrentPrecision=tlpAtsDeviceOutputCurrentPrecision, tlpPduOutputPhase=tlpPduOutputPhase, tlpAtsControlEntry=tlpAtsControlEntry, tlpAtsInputNominalVoltage=tlpAtsInputNominalVoltage, tlpUpsBatteryPackDetailAge=tlpUpsBatteryPackDetailAge, tlpUpsConfigAutoRestartOverTemperature=tlpUpsConfigAutoRestartOverTemperature, tlpAtsDevicePowerOnDelay=tlpAtsDevicePowerOnDelay, tlpAtsCircuitCurrentMax=tlpAtsCircuitCurrentMax, tlpPduAlarmLoadOff34=tlpPduAlarmLoadOff34, tlpPduDisplayEntry=tlpPduDisplayEntry, tlpUpsAlarmEPOActive=tlpUpsAlarmEPOActive, tlpPduConfigTable=tlpPduConfigTable, tlpAtsConfigLowVoltageReset=tlpAtsConfigLowVoltageReset, tlpUpsConfigAutoRestartInverterShutdown=tlpUpsConfigAutoRestartInverterShutdown, tlpUpsAlarmLoadOff21=tlpUpsAlarmLoadOff21, tlpAtsAlarmLoadOff37=tlpAtsAlarmLoadOff37, tlpPduAlarmLoadOff03=tlpPduAlarmLoadOff03, tlpUpsIdentNumBatteryPacks=tlpUpsIdentNumBatteryPacks, tlpDeviceEntry=tlpDeviceEntry, tlpUpsAlarmChargerFailed=tlpUpsAlarmChargerFailed, tlpUpsOutputFrequency=tlpUpsOutputFrequency, tlpAtsConfigVoltageRangeLimitsEntry=tlpAtsConfigVoltageRangeLimitsEntry, tlpEnvTemperatureTable=tlpEnvTemperatureTable, tlpUpsConfigAutoRestartAfterShutdown=tlpUpsConfigAutoRestartAfterShutdown, tlpPduAlarmLoadOff24=tlpPduAlarmLoadOff24, tlpAtsConfigSource1TransferReset=tlpAtsConfigSource1TransferReset, tlpUpsBatteryPackConfigDesignCapacity=tlpUpsBatteryPackConfigDesignCapacity, tlpProducts=tlpProducts, tlpUpsConfigAutoRestartTable=tlpUpsConfigAutoRestartTable, tlpUpsAlarmBypassFrequencyBad=tlpUpsAlarmBypassFrequencyBad, tlpAtsIdentEntry=tlpAtsIdentEntry, tlpAtsConfigOverTemperatureThreshold=tlpAtsConfigOverTemperatureThreshold, tlpUpsOutletCommand=tlpUpsOutletCommand, tlpAtsIdentNumBreakers=tlpAtsIdentNumBreakers, tlpUpsAlarmBypassBad=tlpUpsAlarmBypassBad, tlpAgentAttributesAutostartFTP=tlpAgentAttributesAutostartFTP, tlpPduDeviceOutputPowerTotal=tlpPduDeviceOutputPowerTotal, tlpUpsBatteryPackDetailCycleCount=tlpUpsBatteryPackDetailCycleCount, tlpPduDetail=tlpPduDetail, tlpPduOutputTable=tlpPduOutputTable, tlpUpsAlarmLoadOff27=tlpUpsAlarmLoadOff27, tlpUpsConfigBypassUpperLimitVoltage=tlpUpsConfigBypassUpperLimitVoltage, tlpPduInputPhaseIndex=tlpPduInputPhaseIndex, tlpPduSupportsEnergywise=tlpPduSupportsEnergywise, tlpPduCircuitEntry=tlpPduCircuitEntry, tlpPduOutputIndex=tlpPduOutputIndex, tlpUpsAlarmLoadOff36=tlpUpsAlarmLoadOff36, tlpAgentContacts=tlpAgentContacts, tlpCoolingIdent=tlpCoolingIdent, tlpAgentAttributesHTTPSPort=tlpAgentAttributesHTTPSPort, tlpUpsOutputLinePower=tlpUpsOutputLinePower, tlpCoolingControl=tlpCoolingControl, tlpPduInputLowTransferVoltageUpperBound=tlpPduInputLowTransferVoltageUpperBound, tlpUpsConfigBypassLowerLimitPercent=tlpUpsConfigBypassLowerLimitPercent, tlpAgentEmailContactRowStatus=tlpAgentEmailContactRowStatus, tlpDeviceRegion=tlpDeviceRegion, tlpDeviceIdentCommPortType=tlpDeviceIdentCommPortType, tlpAlarmUserDefined01=tlpAlarmUserDefined01, tlpPduInputHighTransferVoltageUpperBound=tlpPduInputHighTransferVoltageUpperBound, tlpAtsCircuitUtilization=tlpAtsCircuitUtilization, tlpAtsSupportsEntry=tlpAtsSupportsEntry, tlpUpsControlSelfTest=tlpUpsControlSelfTest, tlpAtsAlarmLoadOff29=tlpAtsAlarmLoadOff29, tlpUpsBatteryPackIdentModel=tlpUpsBatteryPackIdentModel, tlpUpsDeviceMainLoadControllable=tlpUpsDeviceMainLoadControllable, tlpAtsAlarmCurrentAboveThresholdB3=tlpAtsAlarmCurrentAboveThresholdB3, tlpAgentAttributesSupportsSSHMenu=tlpAgentAttributesSupportsSSHMenu, tlpUpsOutputLineTable=tlpUpsOutputLineTable, tlpUpsControlUpsReboot=tlpUpsControlUpsReboot, tlpUpsAlarmLoadOff18=tlpUpsAlarmLoadOff18, tlpPduOutletShedDelay=tlpPduOutletShedDelay, tlpUpsBatteryPackDetailTemperatureC=tlpUpsBatteryPackDetailTemperatureC, tlpUpsControlEntry=tlpUpsControlEntry, tlpUpsBatteryRunTimeRemaining=tlpUpsBatteryRunTimeRemaining, tlpUpsAlarmBatteryOverVoltage=tlpUpsAlarmBatteryOverVoltage, tlpAtsAlarmSource1OverVoltage=tlpAtsAlarmSource1OverVoltage, tlpAtsInputFairVoltageThreshold=tlpAtsInputFairVoltageThreshold, tlpUpsAlarmOverCharged=tlpUpsAlarmOverCharged, tlpAgentAttributesAutostartSNMP=tlpAgentAttributesAutostartSNMP, tlpUpsSupportsEnergywise=tlpUpsSupportsEnergywise, tlpPduOutletControllable=tlpPduOutletControllable, tlpAtsIdentTable=tlpAtsIdentTable, tlpUpsDeviceMainLoadCommand=tlpUpsDeviceMainLoadCommand, tlpUpsControlTable=tlpUpsControlTable, tlpPduOutletRampAction=tlpPduOutletRampAction, tlpDeviceTable=tlpDeviceTable, tlpAtsOutletDescription=tlpAtsOutletDescription, tlpDeviceIdentTable=tlpDeviceIdentTable, tlpAtsAlarmLoadOff14=tlpAtsAlarmLoadOff14, tlpDeviceIndex=tlpDeviceIndex, tlpUpsAlarmFuseFailure=tlpUpsAlarmFuseFailure, tlpAlarmId=tlpAlarmId, tlpPduOutletGroupState=tlpPduOutletGroupState, tlpAgentSnmpContactPrivPassword=tlpAgentSnmpContactPrivPassword, tlpUpsAlarmBatteryBad=tlpUpsAlarmBatteryBad, tlpAlarmUserDefined02=tlpAlarmUserDefined02, tlpUpsInputPhaseVoltageMin=tlpUpsInputPhaseVoltageMin, tlpPduCircuitUtilization=tlpPduCircuitUtilization, tlpRackTrackDevice=tlpRackTrackDevice, tlpPduSupportsRampShed=tlpPduSupportsRampShed, tlpUpsInputPhasePower=tlpUpsInputPhasePower, tlpPduDeviceAggregatePowerFactor=tlpPduDeviceAggregatePowerFactor, tlpUpsAlarmLoadLevelAboveThresholdPhase3=tlpUpsAlarmLoadLevelAboveThresholdPhase3, tlpUpsBatteryStatus=tlpUpsBatteryStatus, tlpAtsControlRamp=tlpAtsControlRamp, tlpAtsConfigHighVoltageTransfer=tlpAtsConfigHighVoltageTransfer, tlpUpsControlShed=tlpUpsControlShed, tlpPduAlarmLoadOff10=tlpPduAlarmLoadOff10, tlpAtsAlarmLoadOff36=tlpAtsAlarmLoadOff36)
# Raised when VT-100 can't be enabled class VT100Error( Exception ): def __init__( self ): super().__init__( "Couldn't enable VT-100 terminal emulation" )
class Vt100Error(Exception): def __init__(self): super().__init__("Couldn't enable VT-100 terminal emulation")
class Solution: """ @param pid: the process id @param ppid: the parent process id @param kill: a PID you want to kill @return: a list of PIDs of processes that will be killed in the end """ def killProcess(self, pid, ppid, kill): groupByPPID = {} index = 0 while index < len(ppid) : if ppid[index] in groupByPPID : groupByPPID[ppid[index]].append(pid[index]) else : groupByPPID[ppid[index]] = [pid[index]] index += 1 stack = [kill] result = [] while stack : node = stack.pop() result.append(node) if node in groupByPPID : for childNode in groupByPPID[node] : stack.append(childNode) return result
class Solution: """ @param pid: the process id @param ppid: the parent process id @param kill: a PID you want to kill @return: a list of PIDs of processes that will be killed in the end """ def kill_process(self, pid, ppid, kill): group_by_ppid = {} index = 0 while index < len(ppid): if ppid[index] in groupByPPID: groupByPPID[ppid[index]].append(pid[index]) else: groupByPPID[ppid[index]] = [pid[index]] index += 1 stack = [kill] result = [] while stack: node = stack.pop() result.append(node) if node in groupByPPID: for child_node in groupByPPID[node]: stack.append(childNode) return result
""" spiel.data Module for organizing input data to the SPieL system """ class ParseError(ValueError): """ Raised by bad values for a new instance """ class Instance: """ Represents a single end-to-end training instance """ def __init__(self, shape, segments, labels): """ Initializes the instance :param shape: The written shape of the instance :type shape: str :param segments: The segments that make up the shape :type segments: list of str :param labels: The labels for each segment :type labels: list of str """ self.shape = shape self.segments = segments self.labels = labels @staticmethod def fit(lines, strict): """ Generates an Instance object from lines of text :param lines: The lines to generate from :type lines: list of str :param strict: Whether the Instance must have segments and labels :type strict: bool :rtype: Instance """ try: shape, segments, labels = lines except ValueError: if len(lines) > 3 or strict: raise ParseError("Unexpected number of fields") shape, segments, labels = lines[0], None, None if (segments or labels) and not len(segments) == len(labels): raise ParseError(f"Number of segments must match number of \ labels; got segments '{segments}' segments, but labels '{labels}'.") return Instance(''.join(shape), segments, labels) @property def annotations(self): """ Returns the combination of the instance's segments and labels :rtype: list of (str, str) """ return list(zip(self.segments, self.labels)) def annotation_string(self): """ Returns a string representation of the instance's segments and labels """ return '-'.join([f"{segment}/{label}" for segment, label in self.annotations]) def __eq__(self, other): return self.shape == other.shape and \ self.segments == other.segments and \ self.labels == other.labels def load_file(file_name, strict=True): """ Loads a list of instances from a file """ with open(file_name) as instance_file: return load(instance_file, strict) def load(lines, strict=True): """ Loads a list of instances from a list of lines Lines must be ordered as follows: Line 1*n: Shape Line 2*n: Segments Line 3*n: Labels Line 4*n: blank :return: A list of training instances :rtype: list of Instance """ instances = [] data = [] for line in lines: line = line.strip() if not line: if data: instances.append(Instance.fit(data, strict)) data = [] else: data.append(line.split()) if data: instances.append(Instance.fit(data, strict)) return instances
""" spiel.data Module for organizing input data to the SPieL system """ class Parseerror(ValueError): """ Raised by bad values for a new instance """ class Instance: """ Represents a single end-to-end training instance """ def __init__(self, shape, segments, labels): """ Initializes the instance :param shape: The written shape of the instance :type shape: str :param segments: The segments that make up the shape :type segments: list of str :param labels: The labels for each segment :type labels: list of str """ self.shape = shape self.segments = segments self.labels = labels @staticmethod def fit(lines, strict): """ Generates an Instance object from lines of text :param lines: The lines to generate from :type lines: list of str :param strict: Whether the Instance must have segments and labels :type strict: bool :rtype: Instance """ try: (shape, segments, labels) = lines except ValueError: if len(lines) > 3 or strict: raise parse_error('Unexpected number of fields') (shape, segments, labels) = (lines[0], None, None) if (segments or labels) and (not len(segments) == len(labels)): raise parse_error(f"Number of segments must match number of labels; got segments '{segments}' segments, but labels '{labels}'.") return instance(''.join(shape), segments, labels) @property def annotations(self): """ Returns the combination of the instance's segments and labels :rtype: list of (str, str) """ return list(zip(self.segments, self.labels)) def annotation_string(self): """ Returns a string representation of the instance's segments and labels """ return '-'.join([f'{segment}/{label}' for (segment, label) in self.annotations]) def __eq__(self, other): return self.shape == other.shape and self.segments == other.segments and (self.labels == other.labels) def load_file(file_name, strict=True): """ Loads a list of instances from a file """ with open(file_name) as instance_file: return load(instance_file, strict) def load(lines, strict=True): """ Loads a list of instances from a list of lines Lines must be ordered as follows: Line 1*n: Shape Line 2*n: Segments Line 3*n: Labels Line 4*n: blank :return: A list of training instances :rtype: list of Instance """ instances = [] data = [] for line in lines: line = line.strip() if not line: if data: instances.append(Instance.fit(data, strict)) data = [] else: data.append(line.split()) if data: instances.append(Instance.fit(data, strict)) return instances
test1 = 6 # True test2 = 11 # False test3 = 25 # True test4 = 330 # 165 33 dividers = [2, 3, 5] def is_ugly(n): result = n i = 0 while result > 1: i += 1 print(i) divided = False for divisor in (5, 3, 2): quotent, reminder = divmod(result, divisor) if reminder == 0: result = quotent divided = True break if divided: continue break return result == 1 print(is_ugly(3300))
test1 = 6 test2 = 11 test3 = 25 test4 = 330 dividers = [2, 3, 5] def is_ugly(n): result = n i = 0 while result > 1: i += 1 print(i) divided = False for divisor in (5, 3, 2): (quotent, reminder) = divmod(result, divisor) if reminder == 0: result = quotent divided = True break if divided: continue break return result == 1 print(is_ugly(3300))
# here the assumption is the user will give "n" # the function has to print all dice rolls possible for "n" dices def collect_all_dice_rolls(n): result_set = [] helper(n, [], result_set) return result_set def helper(n, roll_set, result_set): if n == 0: result_set.append(list(roll_set)) else: for i in range(1,7): roll_set.append(i) helper(n - 1, roll_set, result_set) roll_set.pop() print(collect_all_dice_rolls(3))
def collect_all_dice_rolls(n): result_set = [] helper(n, [], result_set) return result_set def helper(n, roll_set, result_set): if n == 0: result_set.append(list(roll_set)) else: for i in range(1, 7): roll_set.append(i) helper(n - 1, roll_set, result_set) roll_set.pop() print(collect_all_dice_rolls(3))
""" This sub-package holds the Scripts system. Scripts are database entities that can store data both in connection to Objects and Accounts or globally. They may also have a timer-component to execute various timed effects. """
""" This sub-package holds the Scripts system. Scripts are database entities that can store data both in connection to Objects and Accounts or globally. They may also have a timer-component to execute various timed effects. """
SAMPLE_YEAR = 1983 SAMPLE_YEAR_SHORT = 83 SAMPLE_MONTH = 1 SAMPLE_DAY = 2 SAMPLE_HOUR = 15 SAMPLE_UTC_HOUR = 20 SAMPLE_HOUR_12H = 3 SAMPLE_MINUTE = 4 SAMPLE_SECOND = 5 SAMPLE_PERIOD = 'PM' SAMPLE_OFFSET = '-00' SAMPLE_LONG_TZ = 'UTC' def create_sample(template: str) -> str: return ( template .replace('YYYY', str(SAMPLE_YEAR)) .replace('YY', ('%02d' % SAMPLE_YEAR_SHORT)) .replace('MM', ('%02d' % SAMPLE_MONTH)) .replace('DD', ('%02d' % SAMPLE_DAY)) .replace('HH24', ('%02d' % SAMPLE_HOUR)) .replace('HH12', ('%02d' % SAMPLE_HOUR_12H)) .replace('HH', ('%02d' % SAMPLE_HOUR)) .replace('MI', ('%02d' % SAMPLE_MINUTE)) .replace('SS', ('%02d' % SAMPLE_SECOND)) .replace('OF', SAMPLE_OFFSET) .replace('AM', SAMPLE_PERIOD) ) DATE_CASES = [ 'YYYY-MM-DD', 'MM-DD-YYYY', 'DD-MM-YYYY', 'MM/DD/YY', 'DD/MM/YY', 'DD-MM-YY', ] TIMEONLY_CASES = [ "HH12:MI AM", "HH:MI:SS", "HH24:MI:SS", ] DATETIMETZ_CASES = [ "YYYY-MM-DD HH:MI:SSOF", "YYYY-MM-DD HH:MI:SS", "YYYY-MM-DD HH24:MI:SSOF", "MM/DD/YY HH24:MI", ] DATETIME_CASES = [ "YYYY-MM-DD HH24:MI:SS", "YYYY-MM-DD HH:MI:SS", "YYYY-MM-DD HH12:MI AM", "MM/DD/YY HH24:MI", ]
sample_year = 1983 sample_year_short = 83 sample_month = 1 sample_day = 2 sample_hour = 15 sample_utc_hour = 20 sample_hour_12_h = 3 sample_minute = 4 sample_second = 5 sample_period = 'PM' sample_offset = '-00' sample_long_tz = 'UTC' def create_sample(template: str) -> str: return template.replace('YYYY', str(SAMPLE_YEAR)).replace('YY', '%02d' % SAMPLE_YEAR_SHORT).replace('MM', '%02d' % SAMPLE_MONTH).replace('DD', '%02d' % SAMPLE_DAY).replace('HH24', '%02d' % SAMPLE_HOUR).replace('HH12', '%02d' % SAMPLE_HOUR_12H).replace('HH', '%02d' % SAMPLE_HOUR).replace('MI', '%02d' % SAMPLE_MINUTE).replace('SS', '%02d' % SAMPLE_SECOND).replace('OF', SAMPLE_OFFSET).replace('AM', SAMPLE_PERIOD) date_cases = ['YYYY-MM-DD', 'MM-DD-YYYY', 'DD-MM-YYYY', 'MM/DD/YY', 'DD/MM/YY', 'DD-MM-YY'] timeonly_cases = ['HH12:MI AM', 'HH:MI:SS', 'HH24:MI:SS'] datetimetz_cases = ['YYYY-MM-DD HH:MI:SSOF', 'YYYY-MM-DD HH:MI:SS', 'YYYY-MM-DD HH24:MI:SSOF', 'MM/DD/YY HH24:MI'] datetime_cases = ['YYYY-MM-DD HH24:MI:SS', 'YYYY-MM-DD HH:MI:SS', 'YYYY-MM-DD HH12:MI AM', 'MM/DD/YY HH24:MI']
# https://leetcode.com/problems/largest-triangle-area/submissions/ # Time:26.45% Memory:100% class Solution(object): def largest_triangle_area(self, points): max_area = 0 for i in range(len(points) - 2): for j in range(i+1, len(points) - 1): for k in range(j+1, len(points)): three_points = [points[i], points[j], points[k]] area = self.calculate_triangle_area(three_points) if max_area < area: max_area = area return max_area def calculate_triangle_area(self, points): xs = [point[0] for point in points] + [points[0][0]] ys = [point[1] for point in points] + [points[0][1]] area = 0 for i in range(3): area += xs[i] * ys[i + 1] area -= ys[i] * xs[i + 1] area = abs(area) / 2.0 return area if __name__ == "__main__": points = [[0,0],[0,1],[1,0],[0,2],[2,0]] area = Solution().largest_triangle_area(points) print(area)
class Solution(object): def largest_triangle_area(self, points): max_area = 0 for i in range(len(points) - 2): for j in range(i + 1, len(points) - 1): for k in range(j + 1, len(points)): three_points = [points[i], points[j], points[k]] area = self.calculate_triangle_area(three_points) if max_area < area: max_area = area return max_area def calculate_triangle_area(self, points): xs = [point[0] for point in points] + [points[0][0]] ys = [point[1] for point in points] + [points[0][1]] area = 0 for i in range(3): area += xs[i] * ys[i + 1] area -= ys[i] * xs[i + 1] area = abs(area) / 2.0 return area if __name__ == '__main__': points = [[0, 0], [0, 1], [1, 0], [0, 2], [2, 0]] area = solution().largest_triangle_area(points) print(area)
# -*- coding: utf-8 -*- BOT_NAME = 'p1_pipeline' SPIDER_MODULES = ['p1_pipeline.spiders'] NEWSPIDER_MODULE = 'p1_pipeline.spiders' ROBOTSTXT_OBEY = True # Configure item pipelines # See http://scrapy.readthedocs.org/en/latest/topics/item-pipeline.html ITEM_PIPELINES = { 'p1_pipeline.pipelines.DropNoTagsPipeline': 300, }
bot_name = 'p1_pipeline' spider_modules = ['p1_pipeline.spiders'] newspider_module = 'p1_pipeline.spiders' robotstxt_obey = True item_pipelines = {'p1_pipeline.pipelines.DropNoTagsPipeline': 300}
# blanyal, hiimbex :) ''' The goal of binary ssearch is to divide the search space in half every iteration Binary search also assumes you have a sorted list of integers and goes through every time and determines if the item you are searching for is greater than or less than your mid point and jumps to the respective side from there. If your item is found it returns true, otherwise your item is either not in the list or the list was not sorted, etc. ''' def binarysearch (list, item): first = 0 last = len(list) - 1 found = False while not found and first <= last: mid = (first+last)//2 if list[mid] == item: found = True else: if item < list[mid]: last = mid - 1 else: first = mid + 1 return found if __name__ == "__main__": inputList = [int(x) for x in input("Enter the input list: ").split()] item = int(input("Enter the item to be found: ")) print (binarySearch(inputList, item))
""" The goal of binary ssearch is to divide the search space in half every iteration Binary search also assumes you have a sorted list of integers and goes through every time and determines if the item you are searching for is greater than or less than your mid point and jumps to the respective side from there. If your item is found it returns true, otherwise your item is either not in the list or the list was not sorted, etc. """ def binarysearch(list, item): first = 0 last = len(list) - 1 found = False while not found and first <= last: mid = (first + last) // 2 if list[mid] == item: found = True elif item < list[mid]: last = mid - 1 else: first = mid + 1 return found if __name__ == '__main__': input_list = [int(x) for x in input('Enter the input list: ').split()] item = int(input('Enter the item to be found: ')) print(binary_search(inputList, item))
class NoBranchSelected(Exception): def __init__(self, message: str = ''): self.message: str = message def __str__(self): return """ No git Branch Selected {0!s} """.format(self.message)
class Nobranchselected(Exception): def __init__(self, message: str=''): self.message: str = message def __str__(self): return '\nNo git Branch Selected\n{0!s}\n'.format(self.message)
{ "targets" : [ { "target_name" : "leveled", "sources" : ["src/leveled.cc", "src/batch.cc"], "dependencies" : [ "deps/leveldb/binding.gyp:leveldb" ] } ] }
{'targets': [{'target_name': 'leveled', 'sources': ['src/leveled.cc', 'src/batch.cc'], 'dependencies': ['deps/leveldb/binding.gyp:leveldb']}]}
class Solution: def makesquare(self, matchsticks: List[int]) -> bool: """ [1,1,2,2,2] total = 8, k = 4, subset = 2 subproblems: Can I make 4 subsets with equal sum out of the given numbers? Find all subsets, starting from 0 .... n-1 if can make 4 subsets and use all numbers -> answer true else answer is false find_subsets(k, i, sum) = find_subsets(k-1...0, i...n-1, sum...0) base cases: if k == 0: return True if sum == 0: return find(subsets) if sum < 0: return False answer -> if can make 4 subsets and use all numbers -> answer true else answer is false Compelexities: Time O(2^N * N) Space O(2^N) """ @lru_cache(None) def find_subsets(mask, k, curr_sum): if k == 0: return True if curr_sum == 0: return find_subsets(mask, k-1, subset_sum) if curr_sum < 0: return False for j in range(0, len(matchsticks)): if mask & (1 << j) != 0: continue if find_subsets(mask ^ (1 << j), k, curr_sum - matchsticks[j]): return True return False total_sum = sum(matchsticks) subsets_count = 4 if total_sum % subsets_count != 0: return False subset_sum = total_sum // subsets_count return find_subsets(0, subsets_count-1, subset_sum)
class Solution: def makesquare(self, matchsticks: List[int]) -> bool: """ [1,1,2,2,2] total = 8, k = 4, subset = 2 subproblems: Can I make 4 subsets with equal sum out of the given numbers? Find all subsets, starting from 0 .... n-1 if can make 4 subsets and use all numbers -> answer true else answer is false find_subsets(k, i, sum) = find_subsets(k-1...0, i...n-1, sum...0) base cases: if k == 0: return True if sum == 0: return find(subsets) if sum < 0: return False answer -> if can make 4 subsets and use all numbers -> answer true else answer is false Compelexities: Time O(2^N * N) Space O(2^N) """ @lru_cache(None) def find_subsets(mask, k, curr_sum): if k == 0: return True if curr_sum == 0: return find_subsets(mask, k - 1, subset_sum) if curr_sum < 0: return False for j in range(0, len(matchsticks)): if mask & 1 << j != 0: continue if find_subsets(mask ^ 1 << j, k, curr_sum - matchsticks[j]): return True return False total_sum = sum(matchsticks) subsets_count = 4 if total_sum % subsets_count != 0: return False subset_sum = total_sum // subsets_count return find_subsets(0, subsets_count - 1, subset_sum)
posts = [ { "id": 1, "title": "Pancake", "content": "Lorem Ipsum ..." } ] users = []
posts = [{'id': 1, 'title': 'Pancake', 'content': 'Lorem Ipsum ...'}] users = []
class Solution: def largestRectangleArea(self, heights: List[int]) -> int: max_area = 0 stack = [] #(index, height) for i, h in enumerate(heights): start = i while stack and stack[-1][1] > h: index, height = stack.pop() max_area = max(max_area, height * (i - index)) start = index stack.append((start, h)) for i, h in stack: max_area = max(max_area, h * (len(heights) - i)) return max_area
class Solution: def largest_rectangle_area(self, heights: List[int]) -> int: max_area = 0 stack = [] for (i, h) in enumerate(heights): start = i while stack and stack[-1][1] > h: (index, height) = stack.pop() max_area = max(max_area, height * (i - index)) start = index stack.append((start, h)) for (i, h) in stack: max_area = max(max_area, h * (len(heights) - i)) return max_area
#!/usr/bin/python3 # Generators def genFibonacci(): """ Fibonacci generator """ yield 0 yield 1 cnt = 2 a = 0 b = 1 c = a + b while cnt < 10: c = a + b yield c a = b b = c cnt += 1 def genPrimes(): n = 1000 primes = [True]*(n+1) primes[0] = False primes[1] = False i = 2 while i*i <= n: if primes[i]: yield i for j in range(2*i, n+1, i): primes[j] = False i+=1 #for i in genFibonacci(): # print(i) cnt = 1 for p in genPrimes(): if cnt==1: print(p) break cnt+=1
def gen_fibonacci(): """ Fibonacci generator """ yield 0 yield 1 cnt = 2 a = 0 b = 1 c = a + b while cnt < 10: c = a + b yield c a = b b = c cnt += 1 def gen_primes(): n = 1000 primes = [True] * (n + 1) primes[0] = False primes[1] = False i = 2 while i * i <= n: if primes[i]: yield i for j in range(2 * i, n + 1, i): primes[j] = False i += 1 cnt = 1 for p in gen_primes(): if cnt == 1: print(p) break cnt += 1
## @package AssociateJoint Association joint that used by gait recorder ## The class that has all the information about associations class AssociateJoint: ## Constructor # @param self Object pointer # @param module Module name string # @param node Node index # @param corr Bool, correaltion: True for positive; False for negtive # @param ratio Correlation ratio def __init__(self, module, node, corr, ratio): ## Module name string self.ModuleName = module # name string ## Node index self.Node = node ## Correlation boolean value self.Correlation = corr # bool value ## Correlation ratio self.Ratio = ratio ## Current object to string # @param self Object pointer def ToString(self): return self.ModuleName+"::"+self.NodeToString(self.Node)+"::"+ \ self.CorrelationToStr(self.Correlation)+"::"+str(self.Ratio) ## Find node string name given node index # @param self Object pointer # @param node Integer, node indez def NodeToString(self, node): if node == 0: return "Front Wheel" if node == 1: return "Lft Wheel" if node == 2: return "Rgt Wheel" if node == 3: return "Central Bending" ## Correlation boolean value to string # @param self Object pointer # @param corr Correlation boolean def CorrelationToStr(self,corr): if corr: return "+" else: return "-"
class Associatejoint: def __init__(self, module, node, corr, ratio): self.ModuleName = module self.Node = node self.Correlation = corr self.Ratio = ratio def to_string(self): return self.ModuleName + '::' + self.NodeToString(self.Node) + '::' + self.CorrelationToStr(self.Correlation) + '::' + str(self.Ratio) def node_to_string(self, node): if node == 0: return 'Front Wheel' if node == 1: return 'Lft Wheel' if node == 2: return 'Rgt Wheel' if node == 3: return 'Central Bending' def correlation_to_str(self, corr): if corr: return '+' else: return '-'
class Solution: def generateMatrix(self, n): """ :type n: int :rtype: List[List[int]] """ matrix = [[0 for _ in range(n)] for _ in range(n)] lvl, c = 0, 1 while lvl <= n//2: if c <= n*n: for i in range(lvl, n-lvl): matrix[lvl][i] = c c += 1 if c <= n*n: for i in range(lvl+1, n-lvl): matrix[i][n-lvl-1] = c c += 1 if c <= n*n: for i in range(n-lvl-2, -1+lvl, -1): matrix[n-lvl-1][i] = c c += 1 if c <= n*n: for i in range(n-lvl-2, lvl, -1): matrix[i][lvl] = c c += 1 lvl += 1 return matrix if __name__ == "__main__": for i in Solution().generateMatrix(9): print(i)
class Solution: def generate_matrix(self, n): """ :type n: int :rtype: List[List[int]] """ matrix = [[0 for _ in range(n)] for _ in range(n)] (lvl, c) = (0, 1) while lvl <= n // 2: if c <= n * n: for i in range(lvl, n - lvl): matrix[lvl][i] = c c += 1 if c <= n * n: for i in range(lvl + 1, n - lvl): matrix[i][n - lvl - 1] = c c += 1 if c <= n * n: for i in range(n - lvl - 2, -1 + lvl, -1): matrix[n - lvl - 1][i] = c c += 1 if c <= n * n: for i in range(n - lvl - 2, lvl, -1): matrix[i][lvl] = c c += 1 lvl += 1 return matrix if __name__ == '__main__': for i in solution().generateMatrix(9): print(i)
def modify_input_for_multiple_files(hotel, image): dict = {} dict['hotel'] = hotel dict['image'] = image return dict def modify_input_for_multiple_room_files(room, image): dict = {} dict['room'] = room dict['image'] = image return dict def modify_input_for_multiple_package_files(package, image): dict = {} dict['package'] = package dict['image'] = image return dict
def modify_input_for_multiple_files(hotel, image): dict = {} dict['hotel'] = hotel dict['image'] = image return dict def modify_input_for_multiple_room_files(room, image): dict = {} dict['room'] = room dict['image'] = image return dict def modify_input_for_multiple_package_files(package, image): dict = {} dict['package'] = package dict['image'] = image return dict
class Solution: def judgeCircle(self, moves: str) -> bool: x = y = 0 for m in moves: if m == 'R': x += 1 elif m == 'L': x -= 1 elif m == 'U': y -= 1 else: y += 1 return x == 0 and y == 0
class Solution: def judge_circle(self, moves: str) -> bool: x = y = 0 for m in moves: if m == 'R': x += 1 elif m == 'L': x -= 1 elif m == 'U': y -= 1 else: y += 1 return x == 0 and y == 0
for _ in range(int(input())): n = int(input()) l = list(map(int, input().split(" "))) is_true = False for i in range(1, n): if l[i] >= l[i-1]: is_true = True break if is_true: print("YES") else: print("NO")
for _ in range(int(input())): n = int(input()) l = list(map(int, input().split(' '))) is_true = False for i in range(1, n): if l[i] >= l[i - 1]: is_true = True break if is_true: print('YES') else: print('NO')
# stops the current iteration in a loop class MinorException(Exception): pass # stops the bot class CriticalException(Exception): pass
class Minorexception(Exception): pass class Criticalexception(Exception): pass
measured_values = [None] * N for i in range(N): # Intercept qubits from Alice qubit = conn.recvQubit() # Measure all qubits in standard basis measured_values[i] = qubit.measure(inplace=True) # Forward qubits to Bob conn.sendQubit(qubit, "Bob")
measured_values = [None] * N for i in range(N): qubit = conn.recvQubit() measured_values[i] = qubit.measure(inplace=True) conn.sendQubit(qubit, 'Bob')
# Here list comprehension is used # all() is used to make sure that the list # goes through all the values of x and y n = input() print([x for x in range(2, int(n)) if all(x % y != 0 for y in range(2, int(x**0.5)+1))]) # These lines make sure the program doesn't close # before you even see the output! print("\n\n\n\n\nA program by Karthikeshwar\n\n") input("Press enter to exit")
n = input() print([x for x in range(2, int(n)) if all((x % y != 0 for y in range(2, int(x ** 0.5) + 1)))]) print('\n\n\n\n\nA program by Karthikeshwar\n\n') input('Press enter to exit')
class IFrameworkInputElement(IInputElement): """ Declares a namescope contract for framework elements. """ def __init__(self,*args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass Name=property(lambda self: object(),lambda self,v: None,lambda self: None) """Gets or sets the name of an element. Get: Name(self: IFrameworkInputElement) -> str Set: Name(self: IFrameworkInputElement)=value """
class Iframeworkinputelement(IInputElement): """ Declares a namescope contract for framework elements. """ def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass name = property(lambda self: object(), lambda self, v: None, lambda self: None) 'Gets or sets the name of an element.\n\n\n\nGet: Name(self: IFrameworkInputElement) -> str\n\n\n\nSet: Name(self: IFrameworkInputElement)=value\n\n'
names = ["Serena", "Andrew", "Bobbie", "Cason", "David", "Farzana", "Frank", "Hannah", "Ida", "Irene", "Jim", "Jose", "Keith", "Laura", "Lucy", "Meredith", "Nick", "Ada", "Yeeling", "Yan"] pre_nouns = ["an", "a", "the", "one", "two", "three", "four", "five", "six", "seven", "eight", "nine", "ten", "much", "every", "any", "each", "some", "more"] question_words = ["What", "Which", "Where", "Who", "When", "Why", "How", "At what time"] adverbs = ["very", "just", "before", "too", "well", "also", "such", "near", "still", "never", "between", "far", "together", "often", "always", "once", "enough", "soon", "early", "slow", "fine"] adjectives = ["hot", "other", "long", "first", "new", "round", "good", "great", "low", "same", "right", "old", "small", "large", "even", "big", "high", "light", "kind", "own", "last", "hard", "late", "real", "next", "white", "second", "main", "plain", "usual", "young", "ready", "red", "direct", "black", "short", "numeral", "complete", "whole", "best", "better", "fast", "simple", "cold", "certain", "dark", "correct", "able", "done", "final", "green", "quick", "warm", "free", "strong", "special", "clear", "full", "blue", "deep", "busy", "common", "gold", "possible", "dry", "cool"] articles = ["the", "a", "an"] conjunctions = ["and", "or", "but", "if", "then", "than", "though"] nouns = ["that", "color", "this", "there", "word", "time", "way", "these", "thing", "day", "number", "water", "people", "side", "now", "part", "place", "man", "year", "name", "form", "line", "boy", "sentence", "end", "home", "hand", "port", "land", "here", "men", "house", "picture", "animal", "point", "mother", "world", "self", "earth", "father", "head", "page", "country", "school", "food", "sun", "eye", "door", "city", "tree", "cross", "story", "sea", "left", "night", "life", "children", "example", "ease", "paper", "music", "book", "letter", "mile", "river", "car", "feet", "group", "rain", "room", "friend", "idea", "fish", "mountain", "north", "base", "horse", "face", "wood", "girl", "list", "bird", "body", "dog", "family", "song", "state", "product", "class", "wind", "question", "ship", "area", "rock", "order", "fire", "south", "problem", "piece", "farm", "top", "king", "size", "hour", "true", "step", "west", "ground", "table", "morning", "vowel", "war", "pattern", "center", "love", "person", "money", "road", "map", "science", "notice", "voice", "power", "town", "unit", "machine", "note", "plan", "figure", "star", "box", "noun", "field", "pound", "beauty", "front", "week", "minute", "mind", "tail", "fact", "street", "inch", "nothing", "course", "wheel", "force", "object", "surface", "moon", "island", "foot", "test", "boat", "plane", "age", "game", "shape", "heat", "snow", "bed", "east", "weight", "language"] numerals = ["one", "two", "three", "four", "hundred", "five", "six", "ten", "thousand"] other = ["will", "dont", "while", "sure", "ever", "oh", "ago", "yes", "perhaps"] possesive_pronouns = ["his", "your", "their", "her", "my", "our"] prepositions = ["of", "to", "in", "for", "on", "with", "as", "at", "from", "by", "out", "up", "about", "so", "over", "down", "after", "back", "under", "through", "off", "again", "since", "until", "above", "during", "toward", "against", "behind", "yet", "among"] pronouns = ["it", "you", "he", "I", "they", "we", "she", "them", "him", "me", "us", "those"] quantities = ["some", "all", "each", "many", "more", "no", "most", "any", "little", "only", "every", "much", "few", "both", "half", "less", "several", "lot"] verbs = ["is", "was", "are", "be", "have", "had", "can", "were", "use", "said", "do", "would", "write", "like", "make", "see", "has", "look", "could", "go", "come", "did", "sound", "know", "call", "may", "been", "find", "work", "take", "get", "made", "live", "came", "show", "give", "think", "say", "help", "turn", "cause", "mean", "differ", "move", "does", "tell", "set", "want", "air", "play", "put", "read", "spell", "add", "must", "follow", "act", "ask", "change", "went", "need", "try", "build", "stand", "should", "found", "answer", "grow", "study", "learn", "plant", "cover", "thought", "let", "keep", "start", "might", "saw", "draw", "run", "press", "close", "stop", "open", "seem", "begin", "got", "walk", "mark", "care", "carry", "took", "eat", "began", "hear", "cut", "watch", "feel", "talk", "pose", "leave", "measure", "happen", "told", "knew", "pass", "heard", "am", "remember", "hold", "interest", "reach", "sing", "listen", "travel", "lay", "serve", "appear", "rule", "govern", "pull", "fall", "fly", "lead", "cry", "wait", "rest", "drive", "stood", "contain", "teach", "gave", "develop", "sleep", "produce", "stay", "decide", "record", "wonder", "laugh", "ran", "check", "miss", "brought", "bring", "sit", "fill"] versions_of_to_be = ["am", "is", "are", "was", "were"]
names = ['Serena', 'Andrew', 'Bobbie', 'Cason', 'David', 'Farzana', 'Frank', 'Hannah', 'Ida', 'Irene', 'Jim', 'Jose', 'Keith', 'Laura', 'Lucy', 'Meredith', 'Nick', 'Ada', 'Yeeling', 'Yan'] pre_nouns = ['an', 'a', 'the', 'one', 'two', 'three', 'four', 'five', 'six', 'seven', 'eight', 'nine', 'ten', 'much', 'every', 'any', 'each', 'some', 'more'] question_words = ['What', 'Which', 'Where', 'Who', 'When', 'Why', 'How', 'At what time'] adverbs = ['very', 'just', 'before', 'too', 'well', 'also', 'such', 'near', 'still', 'never', 'between', 'far', 'together', 'often', 'always', 'once', 'enough', 'soon', 'early', 'slow', 'fine'] adjectives = ['hot', 'other', 'long', 'first', 'new', 'round', 'good', 'great', 'low', 'same', 'right', 'old', 'small', 'large', 'even', 'big', 'high', 'light', 'kind', 'own', 'last', 'hard', 'late', 'real', 'next', 'white', 'second', 'main', 'plain', 'usual', 'young', 'ready', 'red', 'direct', 'black', 'short', 'numeral', 'complete', 'whole', 'best', 'better', 'fast', 'simple', 'cold', 'certain', 'dark', 'correct', 'able', 'done', 'final', 'green', 'quick', 'warm', 'free', 'strong', 'special', 'clear', 'full', 'blue', 'deep', 'busy', 'common', 'gold', 'possible', 'dry', 'cool'] articles = ['the', 'a', 'an'] conjunctions = ['and', 'or', 'but', 'if', 'then', 'than', 'though'] nouns = ['that', 'color', 'this', 'there', 'word', 'time', 'way', 'these', 'thing', 'day', 'number', 'water', 'people', 'side', 'now', 'part', 'place', 'man', 'year', 'name', 'form', 'line', 'boy', 'sentence', 'end', 'home', 'hand', 'port', 'land', 'here', 'men', 'house', 'picture', 'animal', 'point', 'mother', 'world', 'self', 'earth', 'father', 'head', 'page', 'country', 'school', 'food', 'sun', 'eye', 'door', 'city', 'tree', 'cross', 'story', 'sea', 'left', 'night', 'life', 'children', 'example', 'ease', 'paper', 'music', 'book', 'letter', 'mile', 'river', 'car', 'feet', 'group', 'rain', 'room', 'friend', 'idea', 'fish', 'mountain', 'north', 'base', 'horse', 'face', 'wood', 'girl', 'list', 'bird', 'body', 'dog', 'family', 'song', 'state', 'product', 'class', 'wind', 'question', 'ship', 'area', 'rock', 'order', 'fire', 'south', 'problem', 'piece', 'farm', 'top', 'king', 'size', 'hour', 'true', 'step', 'west', 'ground', 'table', 'morning', 'vowel', 'war', 'pattern', 'center', 'love', 'person', 'money', 'road', 'map', 'science', 'notice', 'voice', 'power', 'town', 'unit', 'machine', 'note', 'plan', 'figure', 'star', 'box', 'noun', 'field', 'pound', 'beauty', 'front', 'week', 'minute', 'mind', 'tail', 'fact', 'street', 'inch', 'nothing', 'course', 'wheel', 'force', 'object', 'surface', 'moon', 'island', 'foot', 'test', 'boat', 'plane', 'age', 'game', 'shape', 'heat', 'snow', 'bed', 'east', 'weight', 'language'] numerals = ['one', 'two', 'three', 'four', 'hundred', 'five', 'six', 'ten', 'thousand'] other = ['will', 'dont', 'while', 'sure', 'ever', 'oh', 'ago', 'yes', 'perhaps'] possesive_pronouns = ['his', 'your', 'their', 'her', 'my', 'our'] prepositions = ['of', 'to', 'in', 'for', 'on', 'with', 'as', 'at', 'from', 'by', 'out', 'up', 'about', 'so', 'over', 'down', 'after', 'back', 'under', 'through', 'off', 'again', 'since', 'until', 'above', 'during', 'toward', 'against', 'behind', 'yet', 'among'] pronouns = ['it', 'you', 'he', 'I', 'they', 'we', 'she', 'them', 'him', 'me', 'us', 'those'] quantities = ['some', 'all', 'each', 'many', 'more', 'no', 'most', 'any', 'little', 'only', 'every', 'much', 'few', 'both', 'half', 'less', 'several', 'lot'] verbs = ['is', 'was', 'are', 'be', 'have', 'had', 'can', 'were', 'use', 'said', 'do', 'would', 'write', 'like', 'make', 'see', 'has', 'look', 'could', 'go', 'come', 'did', 'sound', 'know', 'call', 'may', 'been', 'find', 'work', 'take', 'get', 'made', 'live', 'came', 'show', 'give', 'think', 'say', 'help', 'turn', 'cause', 'mean', 'differ', 'move', 'does', 'tell', 'set', 'want', 'air', 'play', 'put', 'read', 'spell', 'add', 'must', 'follow', 'act', 'ask', 'change', 'went', 'need', 'try', 'build', 'stand', 'should', 'found', 'answer', 'grow', 'study', 'learn', 'plant', 'cover', 'thought', 'let', 'keep', 'start', 'might', 'saw', 'draw', 'run', 'press', 'close', 'stop', 'open', 'seem', 'begin', 'got', 'walk', 'mark', 'care', 'carry', 'took', 'eat', 'began', 'hear', 'cut', 'watch', 'feel', 'talk', 'pose', 'leave', 'measure', 'happen', 'told', 'knew', 'pass', 'heard', 'am', 'remember', 'hold', 'interest', 'reach', 'sing', 'listen', 'travel', 'lay', 'serve', 'appear', 'rule', 'govern', 'pull', 'fall', 'fly', 'lead', 'cry', 'wait', 'rest', 'drive', 'stood', 'contain', 'teach', 'gave', 'develop', 'sleep', 'produce', 'stay', 'decide', 'record', 'wonder', 'laugh', 'ran', 'check', 'miss', 'brought', 'bring', 'sit', 'fill'] versions_of_to_be = ['am', 'is', 'are', 'was', 'were']
params = { 'model_name': 'NCP', # model name 'cluster_generator': "MFM", # or CRP 'maxK': 12, # max number of clusters to generate # MFM "poisson_lambda": 3 - 1, # K ~ Pk(k) = Poisson(lambda) + 1 "dirichlet_alpha": 1, # prior for cluster proportions # CRP 'crp_alpha': .7, # dispersion parameter of CRP # data shape 'n_timesteps': 32, # width of each spike 'n_channels': 7, # number of local channels/units # ResNet encoder: parameters for spike_encoder.py 'resnet_blocks': [1,1,1,1], 'resnet_planes': 32, # number of data points for training, N ~ unif(Nmin, Nmax) 'Nmin': 200, 'Nmax': 500, # neural net architecture for NCP 'h_dim': 256, 'g_dim': 512, 'H_dim': 128, }
params = {'model_name': 'NCP', 'cluster_generator': 'MFM', 'maxK': 12, 'poisson_lambda': 3 - 1, 'dirichlet_alpha': 1, 'crp_alpha': 0.7, 'n_timesteps': 32, 'n_channels': 7, 'resnet_blocks': [1, 1, 1, 1], 'resnet_planes': 32, 'Nmin': 200, 'Nmax': 500, 'h_dim': 256, 'g_dim': 512, 'H_dim': 128}
VCF_CONFIG = { "load_modules": ["samtools/1.4.1", "bcftools/1.4.1"], "ref_genome": "/external/malaria_SciRep2018/ref_genomes/Plasmodium_falciparum_3D7.fasta", "data_directory": "/external/malaria_SciRep2018/R7.3_fastq", "save_directory": "/processed/variant_call_v1/", }
vcf_config = {'load_modules': ['samtools/1.4.1', 'bcftools/1.4.1'], 'ref_genome': '/external/malaria_SciRep2018/ref_genomes/Plasmodium_falciparum_3D7.fasta', 'data_directory': '/external/malaria_SciRep2018/R7.3_fastq', 'save_directory': '/processed/variant_call_v1/'}
# coding:utf-8 """ Name : config.py Author : blu Time : 2022/3/7 16:19 Desc : """ Debug = False filter_host = "http://192.168.9.166:5000" class DatabaseConfig: mongo_host = 'XXXX' mongo_user = 'XXXX' mongo_pwd = 'XXXXX' mongo_database = 'XXXX'
""" Name : config.py Author : blu Time : 2022/3/7 16:19 Desc : """ debug = False filter_host = 'http://192.168.9.166:5000' class Databaseconfig: mongo_host = 'XXXX' mongo_user = 'XXXX' mongo_pwd = 'XXXXX' mongo_database = 'XXXX'
"""Import Variants and some misconceptions # module1.py import math is marth in sys. """
"""Import Variants and some misconceptions # module1.py import math is marth in sys. """
class Config: DATABASE_USER = '' DATABASE_PASSWORD = '' DATABASE_DB = '' DATABASE_HOST = '' DATABASE_PORT = 3306 LOG_FILE = ''
class Config: database_user = '' database_password = '' database_db = '' database_host = '' database_port = 3306 log_file = ''
# def __init__(self): super().__init__(abc) #
def __init__(self): super().__init__(abc)
class Solution: def findDisappearedNumbers(self, nums: [int]) -> [int]: return list(set(range(1, len(nums) + 1)) - set(nums)) s = Solution() print(s.findDisappearedNumbers([1, 1]))
class Solution: def find_disappeared_numbers(self, nums: [int]) -> [int]: return list(set(range(1, len(nums) + 1)) - set(nums)) s = solution() print(s.findDisappearedNumbers([1, 1]))
# By listing the first six prime numbers: 2, 3, 5, 7, 11, and 13, we can see that the 6th prime is 13. # What is the 10 001st prime number? primes = [2] next = 3 def isPrime(n): for i in primes: if n % i == 0: return False return True while (len(primes) < 10001): if isPrime(next): primes.append(next) next += 2 print(primes[10000])
primes = [2] next = 3 def is_prime(n): for i in primes: if n % i == 0: return False return True while len(primes) < 10001: if is_prime(next): primes.append(next) next += 2 print(primes[10000])
def test_address_on_home_page(app): address_from_home_page = app.contact.get_contact_list()[0] address_from_edit_page = app.contact.get_contact_info_from_edit_page(0) assert address_from_home_page.address == address_from_edit_page.address
def test_address_on_home_page(app): address_from_home_page = app.contact.get_contact_list()[0] address_from_edit_page = app.contact.get_contact_info_from_edit_page(0) assert address_from_home_page.address == address_from_edit_page.address
class Dataset(object): """An abstract class representing a Dataset. All other datasets should subclass it. All subclasses should override ``__len__``, that provides the size of the dataset, and ``__getitem__``, supporting integer indexing in range from 0 to len(self) exclusive. """ def __getitem__(self, index): raise NotImplementedError def __len__(self): raise NotImplementedError class TensorDataset(Dataset): """Dataset wrapping data and target tensors. Each sample will be retrieved by indexing both tensors along the first dimension. Arguments: data_tensor (Tensor): contains sample data. target_tensor (Tensor): contains sample targets (labels). """ def __init__(self, data_tensor, target_tensor): assert data_tensor.size(0) == target_tensor.size(0) self.data_tensor = data_tensor self.target_tensor = target_tensor def __getitem__(self, index): return self.data_tensor[index], self.target_tensor[index] def __len__(self): return self.data_tensor.size(0)
class Dataset(object): """An abstract class representing a Dataset. All other datasets should subclass it. All subclasses should override ``__len__``, that provides the size of the dataset, and ``__getitem__``, supporting integer indexing in range from 0 to len(self) exclusive. """ def __getitem__(self, index): raise NotImplementedError def __len__(self): raise NotImplementedError class Tensordataset(Dataset): """Dataset wrapping data and target tensors. Each sample will be retrieved by indexing both tensors along the first dimension. Arguments: data_tensor (Tensor): contains sample data. target_tensor (Tensor): contains sample targets (labels). """ def __init__(self, data_tensor, target_tensor): assert data_tensor.size(0) == target_tensor.size(0) self.data_tensor = data_tensor self.target_tensor = target_tensor def __getitem__(self, index): return (self.data_tensor[index], self.target_tensor[index]) def __len__(self): return self.data_tensor.size(0)
class Error(Exception): def __init__(self, basemessage="Unspecified Error", message=""): self.basemessage = basemessage self.message = message super().__init__(basemessage, message) class NotImplementedError(Error): """An error to indicate that the requested operation has not yet been implemented """ def __init__(self, message=""): super().__init__("This feature has not yet been implemented.", message) class ParseError(Error): def __init__(self, basemessage='ParserError', message=''): super().__init__(basemessage=basemessage, message=message)
class Error(Exception): def __init__(self, basemessage='Unspecified Error', message=''): self.basemessage = basemessage self.message = message super().__init__(basemessage, message) class Notimplementederror(Error): """An error to indicate that the requested operation has not yet been implemented """ def __init__(self, message=''): super().__init__('This feature has not yet been implemented.', message) class Parseerror(Error): def __init__(self, basemessage='ParserError', message=''): super().__init__(basemessage=basemessage, message=message)
x,y=map(int,input().split()) if(x < y): print('<') elif(x > y): print('>') elif(x==y): print('==')
(x, y) = map(int, input().split()) if x < y: print('<') elif x > y: print('>') elif x == y: print('==')
class Settings(): # APP SETTINGS # /////////////////////////////////////////////////////////////// ENABLE_CUSTOM_TITLE_BAR = False MENU_WIDTH = 240 TIME_ANIMATION = 400 # BTNS LEFT AND RIGHT BOX COLORS BTN_LEFT_BOX_COLOR = "background-color: rgb(44, 49, 58);" BTN_RIGHT_BOX_COLOR = "background-color: #81A1C1;" # MENU SELECTED STYLESHEET MENU_SELECTED_STYLESHEET = """ border-left: 30px solid qlineargradient(spread:pad, x1:0.034, y1:0, x2:0.216, y2:0, stop:0.499 #4c78ad, stop:0.5 rgba(85, 170, 255, 0)); background-color: #3B4252; """
class Settings: enable_custom_title_bar = False menu_width = 240 time_animation = 400 btn_left_box_color = 'background-color: rgb(44, 49, 58);' btn_right_box_color = 'background-color: #81A1C1;' menu_selected_stylesheet = '\n border-left: 30px solid qlineargradient(spread:pad, x1:0.034, y1:0, x2:0.216, y2:0, stop:0.499 #4c78ad, stop:0.5 rgba(85, 170, 255, 0));\n background-color: #3B4252;\n '
# This program is free software: you can redistribute it and/or modify it under the # terms of the Apache License (v2.0) as published by the Apache Software Foundation. # # This program is distributed in the hope that it will be useful, but WITHOUT ANY # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. See the Apache License for more details. # # You should have received a copy of the Apache License along with this program. # If not, see <https://www.apache.org/licenses/LICENSE-2.0>. """Initialization for resource-monitor.""" # package metadata __appname__ = 'monitor' __version__ = '2.3.1' __authors__ = 'Geoffrey Lentner' __contact__ = 'glentner@purdue.edu' __license__ = 'Apache Software License 2.0' __website__ = 'https://resource-monitor.readthedocs.io' __copyright__ = 'Geoffrey Lentner 2019. All rights reserved.' __description__ = 'A simple cross-platform system resource monitor.' __keywords__ = 'cross-platform system resource-monitor telemetry utility command-line-tool'
"""Initialization for resource-monitor.""" __appname__ = 'monitor' __version__ = '2.3.1' __authors__ = 'Geoffrey Lentner' __contact__ = 'glentner@purdue.edu' __license__ = 'Apache Software License 2.0' __website__ = 'https://resource-monitor.readthedocs.io' __copyright__ = 'Geoffrey Lentner 2019. All rights reserved.' __description__ = 'A simple cross-platform system resource monitor.' __keywords__ = 'cross-platform system resource-monitor telemetry utility command-line-tool'
class MonoidLawTester: def __init__(self, monoid, value): self.monoid = monoid self.value = value def left_identity_test(self): monoid = self.monoid(self.value) assert monoid.concat(monoid.neutral()) == monoid def right_identity_test(self): monoid = self.monoid(self.value) assert monoid.neutral().concat(monoid) == monoid def test(self): self.left_identity_test() self.right_identity_test()
class Monoidlawtester: def __init__(self, monoid, value): self.monoid = monoid self.value = value def left_identity_test(self): monoid = self.monoid(self.value) assert monoid.concat(monoid.neutral()) == monoid def right_identity_test(self): monoid = self.monoid(self.value) assert monoid.neutral().concat(monoid) == monoid def test(self): self.left_identity_test() self.right_identity_test()
class Circulo: pi = 3.14 # variable de clase (sin self), puede ser utilizadas por las instancias def __init__(self,radio): self.radio = radio # radio es una variable de instancia circle1 = Circulo(10) circle2 = Circulo(20) print(circle1.radio) circle2.radio = 100 print(circle2.radio) # uso de la variable sin instancia print(Circulo.pi)
class Circulo: pi = 3.14 def __init__(self, radio): self.radio = radio circle1 = circulo(10) circle2 = circulo(20) print(circle1.radio) circle2.radio = 100 print(circle2.radio) print(Circulo.pi)
# -*- coding:utf-8 -*- class Type: id = '' word_id = '' name = '' meanings = [] def desc(self): name = self.name if self.name is not None else '' return '(\'' + self.word_id + '\', \'' + name + '\')'
class Type: id = '' word_id = '' name = '' meanings = [] def desc(self): name = self.name if self.name is not None else '' return "('" + self.word_id + "', '" + name + "')"
##Clock in pt2thon## t1 = input("Init schedule : ") # first schedule HH1 = int(t1[0] + t1[1]) MM1 = int(t1[3] + t1[4]) SS1 = int(t1[6] + t1[7]) t2 = input("Final schedule : ") # second schedule HH2 = int(t2[0] + t2[1]) MM2 = int(t2[3] + t2[4]) SS2 = int(t2[6] + t2[7]) tt1 = (HH1 * 3600) + (MM1 * 60) + SS1 # total schedule 1 tt2 = (HH2 * 3600) + (MM2 * 60) + SS2 # total schedule 2 tt3 = tt2 - tt1 # difference between tt2 e tt1 # Part Math if tt3 < 0: # If the difference between tt2 e tt1 for negative : a = 86400 - tt1 # 86400 is seconds in 1 day; a2 = a + tt2 # a2 is the difference between 1 day e the <hours var>; Ht = a2 // 3600 # Ht is hours calculated; a = a2 % 3600 # Convert 'a' in seconds; Mt = a // 60 # Mt is minutes calculated; St = a % 60 # St is seconds calculated; else: # If the difference between tt2 e tt1 for positive : Ht = tt3 // 3600 # Ht is hours calculated; z = tt3 % 3600 # 'z' is tt3 converting in hours by seconds Mt = z // 60 # Mt is minutes calculated; St = tt3 % 60 # St is seconds calculated; # special condition below : if Ht < 10: h = "0" + str(Ht) Ht = h if Mt < 10: m = "0" + str(Mt) Mt = m if St < 10: s = "0" + str(St) St = s # add '0' to the empty spaces (caused by previous operations) in the final result! print( "final result is :", str(Ht) + ":" + str(Mt) + ":" + str(St) ) # final result (formatted in clock)
t1 = input('Init schedule : ') hh1 = int(t1[0] + t1[1]) mm1 = int(t1[3] + t1[4]) ss1 = int(t1[6] + t1[7]) t2 = input('Final schedule : ') hh2 = int(t2[0] + t2[1]) mm2 = int(t2[3] + t2[4]) ss2 = int(t2[6] + t2[7]) tt1 = HH1 * 3600 + MM1 * 60 + SS1 tt2 = HH2 * 3600 + MM2 * 60 + SS2 tt3 = tt2 - tt1 if tt3 < 0: a = 86400 - tt1 a2 = a + tt2 ht = a2 // 3600 a = a2 % 3600 mt = a // 60 st = a % 60 else: ht = tt3 // 3600 z = tt3 % 3600 mt = z // 60 st = tt3 % 60 if Ht < 10: h = '0' + str(Ht) ht = h if Mt < 10: m = '0' + str(Mt) mt = m if St < 10: s = '0' + str(St) st = s print('final result is :', str(Ht) + ':' + str(Mt) + ':' + str(St))
# PySNMP SMI module. Autogenerated from smidump -f python IANA-MAU-MIB # by libsmi2pysnmp-0.1.3 at Thu May 22 11:57:41 2014, # 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") ( Bits, Integer32, ModuleIdentity, MibIdentifier, ObjectIdentity, TimeTicks, mib_2, ) = mibBuilder.importSymbols("SNMPv2-SMI", "Bits", "Integer32", "ModuleIdentity", "MibIdentifier", "ObjectIdentity", "TimeTicks", "mib-2") ( TextualConvention, ) = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention") # Types class IANAifJackType(Integer): subtypeSpec = Integer.subtypeSpec+SingleValueConstraint(9,15,11,3,7,8,12,4,2,1,13,6,5,10,14,) namedValues = NamedValues(("other", 1), ("fiberST", 10), ("telco", 11), ("mtrj", 12), ("hssdc", 13), ("fiberLC", 14), ("cx4", 15), ("rj45", 2), ("rj45S", 3), ("db9", 4), ("bnc", 5), ("fAUI", 6), ("mAUI", 7), ("fiberSC", 8), ("fiberMIC", 9), ) class IANAifMauAutoNegCapBits(Bits): namedValues = NamedValues(("bOther", 0), ("b10baseT", 1), ("bFdxSPause", 10), ("bFdxBPause", 11), ("b1000baseX", 12), ("b1000baseXFD", 13), ("b1000baseT", 14), ("b1000baseTFD", 15), ("b10baseTFD", 2), ("b100baseT4", 3), ("b100baseTX", 4), ("b100baseTXFD", 5), ("b100baseT2", 6), ("b100baseT2FD", 7), ("bFdxPause", 8), ("bFdxAPause", 9), ) class IANAifMauMediaAvailable(Integer): subtypeSpec = Integer.subtypeSpec+SingleValueConstraint(9,3,12,13,20,6,2,17,1,14,10,7,5,4,16,11,15,8,18,19,) namedValues = NamedValues(("other", 1), ("offline", 10), ("autoNegError", 11), ("pmdLinkFault", 12), ("wisFrameLoss", 13), ("wisSignalLoss", 14), ("pcsLinkFault", 15), ("excessiveBER", 16), ("dxsLinkFault", 17), ("pxsLinkFault", 18), ("availableReduced", 19), ("unknown", 2), ("ready", 20), ("available", 3), ("notAvailable", 4), ("remoteFault", 5), ("invalidSignal", 6), ("remoteJabber", 7), ("remoteLinkLoss", 8), ("remoteTest", 9), ) class IANAifMauTypeListBits(Bits): namedValues = NamedValues(("bOther", 0), ("bAUI", 1), ("b10baseTHD", 10), ("b10baseTFD", 11), ("b10baseFLHD", 12), ("b10baseFLFD", 13), ("b100baseT4", 14), ("b100baseTXHD", 15), ("b100baseTXFD", 16), ("b100baseFXHD", 17), ("b100baseFXFD", 18), ("b100baseT2HD", 19), ("b10base5", 2), ("b100baseT2FD", 20), ("b1000baseXHD", 21), ("b1000baseXFD", 22), ("b1000baseLXHD", 23), ("b1000baseLXFD", 24), ("b1000baseSXHD", 25), ("b1000baseSXFD", 26), ("b1000baseCXHD", 27), ("b1000baseCXFD", 28), ("b1000baseTHD", 29), ("bFoirl", 3), ("b1000baseTFD", 30), ("b10GbaseX", 31), ("b10GbaseLX4", 32), ("b10GbaseR", 33), ("b10GbaseER", 34), ("b10GbaseLR", 35), ("b10GbaseSR", 36), ("b10GbaseW", 37), ("b10GbaseEW", 38), ("b10GbaseLW", 39), ("b10base2", 4), ("b10GbaseSW", 40), ("b10GbaseCX4", 41), ("b2BaseTL", 42), ("b10PassTS", 43), ("b100BaseBX10D", 44), ("b100BaseBX10U", 45), ("b100BaseLX10", 46), ("b1000BaseBX10D", 47), ("b1000BaseBX10U", 48), ("b1000BaseLX10", 49), ("b10baseT", 5), ("b1000BasePX10D", 50), ("b1000BasePX10U", 51), ("b1000BasePX20D", 52), ("b1000BasePX20U", 53), ("b10baseFP", 6), ("b10baseFB", 7), ("b10baseFL", 8), ("b10broad36", 9), ) # Objects dot3MauType = MibIdentifier((1, 3, 6, 1, 2, 1, 26, 4)) dot3MauTypeAUI = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 1)) if mibBuilder.loadTexts: dot3MauTypeAUI.setDescription("no internal MAU, view from AUI") dot3MauType10Base5 = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 2)) if mibBuilder.loadTexts: dot3MauType10Base5.setDescription("thick coax MAU") dot3MauTypeFoirl = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 3)) if mibBuilder.loadTexts: dot3MauTypeFoirl.setDescription("FOIRL MAU") dot3MauType10Base2 = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 4)) if mibBuilder.loadTexts: dot3MauType10Base2.setDescription("thin coax MAU") dot3MauType10BaseT = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 5)) if mibBuilder.loadTexts: dot3MauType10BaseT.setDescription("UTP MAU.\nNote that it is strongly recommended that\nagents return either dot3MauType10BaseTHD or\ndot3MauType10BaseTFD if the duplex mode is\nknown. However, management applications should\nbe prepared to receive this MAU type value from\nolder agent implementations.") dot3MauType10BaseFP = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 6)) if mibBuilder.loadTexts: dot3MauType10BaseFP.setDescription("passive fiber MAU") dot3MauType10BaseFB = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 7)) if mibBuilder.loadTexts: dot3MauType10BaseFB.setDescription("sync fiber MAU") dot3MauType10BaseFL = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 8)) if mibBuilder.loadTexts: dot3MauType10BaseFL.setDescription("async fiber MAU.\nNote that it is strongly recommended that\nagents return either dot3MauType10BaseFLHD or\ndot3MauType10BaseFLFD if the duplex mode is\nknown. However, management applications should\nbe prepared to receive this MAU type value from\nolder agent implementations.") dot3MauType10Broad36 = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 9)) if mibBuilder.loadTexts: dot3MauType10Broad36.setDescription("broadband DTE MAU.\nNote that 10BROAD36 MAUs can be attached to\ninterfaces but not to repeaters.") dot3MauType10BaseTHD = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 10)) if mibBuilder.loadTexts: dot3MauType10BaseTHD.setDescription("UTP MAU, half duplex mode") dot3MauType10BaseTFD = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 11)) if mibBuilder.loadTexts: dot3MauType10BaseTFD.setDescription("UTP MAU, full duplex mode") dot3MauType10BaseFLHD = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 12)) if mibBuilder.loadTexts: dot3MauType10BaseFLHD.setDescription("async fiber MAU, half duplex mode") dot3MauType10BaseFLFD = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 13)) if mibBuilder.loadTexts: dot3MauType10BaseFLFD.setDescription("async fiber MAU, full duplex mode") dot3MauType100BaseT4 = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 14)) if mibBuilder.loadTexts: dot3MauType100BaseT4.setDescription("4 pair category 3 UTP") dot3MauType100BaseTXHD = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 15)) if mibBuilder.loadTexts: dot3MauType100BaseTXHD.setDescription("2 pair category 5 UTP, half duplex mode") dot3MauType100BaseTXFD = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 16)) if mibBuilder.loadTexts: dot3MauType100BaseTXFD.setDescription("2 pair category 5 UTP, full duplex mode") dot3MauType100BaseFXHD = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 17)) if mibBuilder.loadTexts: dot3MauType100BaseFXHD.setDescription("X fiber over PMT, half duplex mode") dot3MauType100BaseFXFD = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 18)) if mibBuilder.loadTexts: dot3MauType100BaseFXFD.setDescription("X fiber over PMT, full duplex mode") dot3MauType100BaseT2HD = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 19)) if mibBuilder.loadTexts: dot3MauType100BaseT2HD.setDescription("2 pair category 3 UTP, half duplex mode") dot3MauType100BaseT2FD = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 20)) if mibBuilder.loadTexts: dot3MauType100BaseT2FD.setDescription("2 pair category 3 UTP, full duplex mode") dot3MauType1000BaseXHD = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 21)) if mibBuilder.loadTexts: dot3MauType1000BaseXHD.setDescription("PCS/PMA, unknown PMD, half duplex mode") dot3MauType1000BaseXFD = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 22)) if mibBuilder.loadTexts: dot3MauType1000BaseXFD.setDescription("PCS/PMA, unknown PMD, full duplex mode") dot3MauType1000BaseLXHD = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 23)) if mibBuilder.loadTexts: dot3MauType1000BaseLXHD.setDescription("Fiber over long-wavelength laser, half duplex\nmode") dot3MauType1000BaseLXFD = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 24)) if mibBuilder.loadTexts: dot3MauType1000BaseLXFD.setDescription("Fiber over long-wavelength laser, full duplex\nmode") dot3MauType1000BaseSXHD = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 25)) if mibBuilder.loadTexts: dot3MauType1000BaseSXHD.setDescription("Fiber over short-wavelength laser, half\nduplex mode") dot3MauType1000BaseSXFD = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 26)) if mibBuilder.loadTexts: dot3MauType1000BaseSXFD.setDescription("Fiber over short-wavelength laser, full\nduplex mode") dot3MauType1000BaseCXHD = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 27)) if mibBuilder.loadTexts: dot3MauType1000BaseCXHD.setDescription("Copper over 150-Ohm balanced cable, half\nduplex mode") dot3MauType1000BaseCXFD = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 28)) if mibBuilder.loadTexts: dot3MauType1000BaseCXFD.setDescription("Copper over 150-Ohm balanced cable, full\n\nduplex mode") dot3MauType1000BaseTHD = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 29)) if mibBuilder.loadTexts: dot3MauType1000BaseTHD.setDescription("Four-pair Category 5 UTP, half duplex mode") dot3MauType1000BaseTFD = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 30)) if mibBuilder.loadTexts: dot3MauType1000BaseTFD.setDescription("Four-pair Category 5 UTP, full duplex mode") dot3MauType10GigBaseX = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 31)) if mibBuilder.loadTexts: dot3MauType10GigBaseX.setDescription("X PCS/PMA, unknown PMD.") dot3MauType10GigBaseLX4 = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 32)) if mibBuilder.loadTexts: dot3MauType10GigBaseLX4.setDescription("X fiber over WWDM optics") dot3MauType10GigBaseR = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 33)) if mibBuilder.loadTexts: dot3MauType10GigBaseR.setDescription("R PCS/PMA, unknown PMD.") dot3MauType10GigBaseER = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 34)) if mibBuilder.loadTexts: dot3MauType10GigBaseER.setDescription("R fiber over 1550 nm optics") dot3MauType10GigBaseLR = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 35)) if mibBuilder.loadTexts: dot3MauType10GigBaseLR.setDescription("R fiber over 1310 nm optics") dot3MauType10GigBaseSR = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 36)) if mibBuilder.loadTexts: dot3MauType10GigBaseSR.setDescription("R fiber over 850 nm optics") dot3MauType10GigBaseW = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 37)) if mibBuilder.loadTexts: dot3MauType10GigBaseW.setDescription("W PCS/PMA, unknown PMD.") dot3MauType10GigBaseEW = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 38)) if mibBuilder.loadTexts: dot3MauType10GigBaseEW.setDescription("W fiber over 1550 nm optics") dot3MauType10GigBaseLW = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 39)) if mibBuilder.loadTexts: dot3MauType10GigBaseLW.setDescription("W fiber over 1310 nm optics") dot3MauType10GigBaseSW = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 40)) if mibBuilder.loadTexts: dot3MauType10GigBaseSW.setDescription("W fiber over 850 nm optics") dot3MauType10GigBaseCX4 = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 41)) if mibBuilder.loadTexts: dot3MauType10GigBaseCX4.setDescription("X copper over 8 pair 100-Ohm balanced cable") dot3MauType2BaseTL = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 42)) if mibBuilder.loadTexts: dot3MauType2BaseTL.setDescription("Voice grade UTP copper, up to 2700m, optional PAF") dot3MauType10PassTS = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 43)) if mibBuilder.loadTexts: dot3MauType10PassTS.setDescription("Voice grade UTP copper, up to 750m, optional PAF") dot3MauType100BaseBX10D = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 44)) if mibBuilder.loadTexts: dot3MauType100BaseBX10D.setDescription("One single-mode fiber OLT, long wavelength, 10km") dot3MauType100BaseBX10U = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 45)) if mibBuilder.loadTexts: dot3MauType100BaseBX10U.setDescription("One single-mode fiber ONU, long wavelength, 10km") dot3MauType100BaseLX10 = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 46)) if mibBuilder.loadTexts: dot3MauType100BaseLX10.setDescription("Two single-mode fibers, long wavelength, 10km") dot3MauType1000BaseBX10D = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 47)) if mibBuilder.loadTexts: dot3MauType1000BaseBX10D.setDescription("One single-mode fiber OLT, long wavelength, 10km") dot3MauType1000BaseBX10U = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 48)) if mibBuilder.loadTexts: dot3MauType1000BaseBX10U.setDescription("One single-mode fiber ONU, long wavelength, 10km") dot3MauType1000BaseLX10 = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 49)) if mibBuilder.loadTexts: dot3MauType1000BaseLX10.setDescription("Two sigle-mode fiber, long wavelength, 10km") dot3MauType1000BasePX10D = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 50)) if mibBuilder.loadTexts: dot3MauType1000BasePX10D.setDescription("One single-mode fiber EPON OLT, 10km") dot3MauType1000BasePX10U = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 51)) if mibBuilder.loadTexts: dot3MauType1000BasePX10U.setDescription("One single-mode fiber EPON ONU, 10km") dot3MauType1000BasePX20D = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 52)) if mibBuilder.loadTexts: dot3MauType1000BasePX20D.setDescription("One single-mode fiber EPON OLT, 20km") dot3MauType1000BasePX20U = ObjectIdentity((1, 3, 6, 1, 2, 1, 26, 4, 53)) if mibBuilder.loadTexts: dot3MauType1000BasePX20U.setDescription("One single-mode fiber EPON ONU, 20km") ianaMauMIB = ModuleIdentity((1, 3, 6, 1, 2, 1, 154)).setRevisions(("2007-04-21 00:00",)) if mibBuilder.loadTexts: ianaMauMIB.setOrganization("IANA") if mibBuilder.loadTexts: ianaMauMIB.setContactInfo(" Internet Assigned Numbers Authority\n\nPostal: ICANN\n 4676 Admiralty Way, Suite 330\n Marina del Rey, CA 90292\n\n Tel: +1-310-823-9358\n EMail: iana&iana.org") if mibBuilder.loadTexts: ianaMauMIB.setDescription("This MIB module defines dot3MauType OBJECT-IDENTITIES and\nIANAifMauListBits, IANAifMauMediaAvailable,\nIANAifMauAutoNegCapBits, and IANAifJackType\n\nTEXTUAL-CONVENTIONs, specifying enumerated values of the\nifMauTypeListBits, ifMauMediaAvailable / rpMauMediaAvailable,\nifMauAutoNegCapabilityBits / ifMauAutoNegCapAdvertisedBits /\nifMauAutoNegCapReceivedBits and ifJackType / rpJackType objects\nrespectively, defined in the MAU-MIB.\n\nIt is intended that each new MAU type, Media Availability\nstate, Auto Negotiation capability and/or Jack type defined by\nthe IEEE 802.3 working group and approved for publication in a\nrevision of IEEE Std 802.3 will be added to this MIB module,\nprovided that it is suitable for being managed by the base\nobjects in the MAU-MIB. An Expert Review, as defined in\nRFC 2434 [RFC2434], is REQUIRED for such additions.\n\nThe following reference is used throughout this MIB module:\n\n[IEEE802.3] refers to:\n IEEE Std 802.3, 2005 Edition: 'IEEE Standard for\n Information technology - Telecommunications and information\n exchange between systems - Local and metropolitan area\n networks - Specific requirements -\n Part 3: Carrier sense multiple access with collision\n detection (CSMA/CD) access method and physical layer\n specifications'.\n\nThis reference should be updated as appropriate when new\nMAU types, Media Availability states, Auto Negotiation\ncapabilities, and/or Jack types are added to this MIB module.\n\nCopyright (C) The IETF Trust (2007).\nThe initial version of this MIB module was published in\nRFC 4836; for full legal notices see the RFC itself.\nSupplementary information may be available at:\nhttp://www.ietf.org/copyrights/ianamib.html") # Augmentions # Exports # Module identity mibBuilder.exportSymbols("IANA-MAU-MIB", PYSNMP_MODULE_ID=ianaMauMIB) # Types mibBuilder.exportSymbols("IANA-MAU-MIB", IANAifJackType=IANAifJackType, IANAifMauAutoNegCapBits=IANAifMauAutoNegCapBits, IANAifMauMediaAvailable=IANAifMauMediaAvailable, IANAifMauTypeListBits=IANAifMauTypeListBits) # Objects mibBuilder.exportSymbols("IANA-MAU-MIB", dot3MauType=dot3MauType, dot3MauTypeAUI=dot3MauTypeAUI, dot3MauType10Base5=dot3MauType10Base5, dot3MauTypeFoirl=dot3MauTypeFoirl, dot3MauType10Base2=dot3MauType10Base2, dot3MauType10BaseT=dot3MauType10BaseT, dot3MauType10BaseFP=dot3MauType10BaseFP, dot3MauType10BaseFB=dot3MauType10BaseFB, dot3MauType10BaseFL=dot3MauType10BaseFL, dot3MauType10Broad36=dot3MauType10Broad36, dot3MauType10BaseTHD=dot3MauType10BaseTHD, dot3MauType10BaseTFD=dot3MauType10BaseTFD, dot3MauType10BaseFLHD=dot3MauType10BaseFLHD, dot3MauType10BaseFLFD=dot3MauType10BaseFLFD, dot3MauType100BaseT4=dot3MauType100BaseT4, dot3MauType100BaseTXHD=dot3MauType100BaseTXHD, dot3MauType100BaseTXFD=dot3MauType100BaseTXFD, dot3MauType100BaseFXHD=dot3MauType100BaseFXHD, dot3MauType100BaseFXFD=dot3MauType100BaseFXFD, dot3MauType100BaseT2HD=dot3MauType100BaseT2HD, dot3MauType100BaseT2FD=dot3MauType100BaseT2FD, dot3MauType1000BaseXHD=dot3MauType1000BaseXHD, dot3MauType1000BaseXFD=dot3MauType1000BaseXFD, dot3MauType1000BaseLXHD=dot3MauType1000BaseLXHD, dot3MauType1000BaseLXFD=dot3MauType1000BaseLXFD, dot3MauType1000BaseSXHD=dot3MauType1000BaseSXHD, dot3MauType1000BaseSXFD=dot3MauType1000BaseSXFD, dot3MauType1000BaseCXHD=dot3MauType1000BaseCXHD, dot3MauType1000BaseCXFD=dot3MauType1000BaseCXFD, dot3MauType1000BaseTHD=dot3MauType1000BaseTHD, dot3MauType1000BaseTFD=dot3MauType1000BaseTFD, dot3MauType10GigBaseX=dot3MauType10GigBaseX, dot3MauType10GigBaseLX4=dot3MauType10GigBaseLX4, dot3MauType10GigBaseR=dot3MauType10GigBaseR, dot3MauType10GigBaseER=dot3MauType10GigBaseER, dot3MauType10GigBaseLR=dot3MauType10GigBaseLR, dot3MauType10GigBaseSR=dot3MauType10GigBaseSR, dot3MauType10GigBaseW=dot3MauType10GigBaseW, dot3MauType10GigBaseEW=dot3MauType10GigBaseEW, dot3MauType10GigBaseLW=dot3MauType10GigBaseLW, dot3MauType10GigBaseSW=dot3MauType10GigBaseSW, dot3MauType10GigBaseCX4=dot3MauType10GigBaseCX4, dot3MauType2BaseTL=dot3MauType2BaseTL, dot3MauType10PassTS=dot3MauType10PassTS, dot3MauType100BaseBX10D=dot3MauType100BaseBX10D, dot3MauType100BaseBX10U=dot3MauType100BaseBX10U, dot3MauType100BaseLX10=dot3MauType100BaseLX10, dot3MauType1000BaseBX10D=dot3MauType1000BaseBX10D, dot3MauType1000BaseBX10U=dot3MauType1000BaseBX10U, dot3MauType1000BaseLX10=dot3MauType1000BaseLX10, dot3MauType1000BasePX10D=dot3MauType1000BasePX10D, dot3MauType1000BasePX10U=dot3MauType1000BasePX10U, dot3MauType1000BasePX20D=dot3MauType1000BasePX20D, dot3MauType1000BasePX20U=dot3MauType1000BasePX20U, ianaMauMIB=ianaMauMIB)
(integer, object_identifier, octet_string) = mibBuilder.importSymbols('ASN1', 'Integer', 'ObjectIdentifier', 'OctetString') (named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues') (constraints_intersection, constraints_union, single_value_constraint, value_range_constraint, value_size_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ConstraintsIntersection', 'ConstraintsUnion', 'SingleValueConstraint', 'ValueRangeConstraint', 'ValueSizeConstraint') (bits, integer32, module_identity, mib_identifier, object_identity, time_ticks, mib_2) = mibBuilder.importSymbols('SNMPv2-SMI', 'Bits', 'Integer32', 'ModuleIdentity', 'MibIdentifier', 'ObjectIdentity', 'TimeTicks', 'mib-2') (textual_convention,) = mibBuilder.importSymbols('SNMPv2-TC', 'TextualConvention') class Ianaifjacktype(Integer): subtype_spec = Integer.subtypeSpec + single_value_constraint(9, 15, 11, 3, 7, 8, 12, 4, 2, 1, 13, 6, 5, 10, 14) named_values = named_values(('other', 1), ('fiberST', 10), ('telco', 11), ('mtrj', 12), ('hssdc', 13), ('fiberLC', 14), ('cx4', 15), ('rj45', 2), ('rj45S', 3), ('db9', 4), ('bnc', 5), ('fAUI', 6), ('mAUI', 7), ('fiberSC', 8), ('fiberMIC', 9)) class Ianaifmauautonegcapbits(Bits): named_values = named_values(('bOther', 0), ('b10baseT', 1), ('bFdxSPause', 10), ('bFdxBPause', 11), ('b1000baseX', 12), ('b1000baseXFD', 13), ('b1000baseT', 14), ('b1000baseTFD', 15), ('b10baseTFD', 2), ('b100baseT4', 3), ('b100baseTX', 4), ('b100baseTXFD', 5), ('b100baseT2', 6), ('b100baseT2FD', 7), ('bFdxPause', 8), ('bFdxAPause', 9)) class Ianaifmaumediaavailable(Integer): subtype_spec = Integer.subtypeSpec + single_value_constraint(9, 3, 12, 13, 20, 6, 2, 17, 1, 14, 10, 7, 5, 4, 16, 11, 15, 8, 18, 19) named_values = named_values(('other', 1), ('offline', 10), ('autoNegError', 11), ('pmdLinkFault', 12), ('wisFrameLoss', 13), ('wisSignalLoss', 14), ('pcsLinkFault', 15), ('excessiveBER', 16), ('dxsLinkFault', 17), ('pxsLinkFault', 18), ('availableReduced', 19), ('unknown', 2), ('ready', 20), ('available', 3), ('notAvailable', 4), ('remoteFault', 5), ('invalidSignal', 6), ('remoteJabber', 7), ('remoteLinkLoss', 8), ('remoteTest', 9)) class Ianaifmautypelistbits(Bits): named_values = named_values(('bOther', 0), ('bAUI', 1), ('b10baseTHD', 10), ('b10baseTFD', 11), ('b10baseFLHD', 12), ('b10baseFLFD', 13), ('b100baseT4', 14), ('b100baseTXHD', 15), ('b100baseTXFD', 16), ('b100baseFXHD', 17), ('b100baseFXFD', 18), ('b100baseT2HD', 19), ('b10base5', 2), ('b100baseT2FD', 20), ('b1000baseXHD', 21), ('b1000baseXFD', 22), ('b1000baseLXHD', 23), ('b1000baseLXFD', 24), ('b1000baseSXHD', 25), ('b1000baseSXFD', 26), ('b1000baseCXHD', 27), ('b1000baseCXFD', 28), ('b1000baseTHD', 29), ('bFoirl', 3), ('b1000baseTFD', 30), ('b10GbaseX', 31), ('b10GbaseLX4', 32), ('b10GbaseR', 33), ('b10GbaseER', 34), ('b10GbaseLR', 35), ('b10GbaseSR', 36), ('b10GbaseW', 37), ('b10GbaseEW', 38), ('b10GbaseLW', 39), ('b10base2', 4), ('b10GbaseSW', 40), ('b10GbaseCX4', 41), ('b2BaseTL', 42), ('b10PassTS', 43), ('b100BaseBX10D', 44), ('b100BaseBX10U', 45), ('b100BaseLX10', 46), ('b1000BaseBX10D', 47), ('b1000BaseBX10U', 48), ('b1000BaseLX10', 49), ('b10baseT', 5), ('b1000BasePX10D', 50), ('b1000BasePX10U', 51), ('b1000BasePX20D', 52), ('b1000BasePX20U', 53), ('b10baseFP', 6), ('b10baseFB', 7), ('b10baseFL', 8), ('b10broad36', 9)) dot3_mau_type = mib_identifier((1, 3, 6, 1, 2, 1, 26, 4)) dot3_mau_type_aui = object_identity((1, 3, 6, 1, 2, 1, 26, 4, 1)) if mibBuilder.loadTexts: dot3MauTypeAUI.setDescription('no internal MAU, view from AUI') dot3_mau_type10_base5 = object_identity((1, 3, 6, 1, 2, 1, 26, 4, 2)) if mibBuilder.loadTexts: dot3MauType10Base5.setDescription('thick coax MAU') dot3_mau_type_foirl = object_identity((1, 3, 6, 1, 2, 1, 26, 4, 3)) if mibBuilder.loadTexts: dot3MauTypeFoirl.setDescription('FOIRL MAU') dot3_mau_type10_base2 = object_identity((1, 3, 6, 1, 2, 1, 26, 4, 4)) if mibBuilder.loadTexts: dot3MauType10Base2.setDescription('thin coax MAU') dot3_mau_type10_base_t = object_identity((1, 3, 6, 1, 2, 1, 26, 4, 5)) if mibBuilder.loadTexts: dot3MauType10BaseT.setDescription('UTP MAU.\nNote that it is strongly recommended that\nagents return either dot3MauType10BaseTHD or\ndot3MauType10BaseTFD if the duplex mode is\nknown. However, management applications should\nbe prepared to receive this MAU type value from\nolder agent implementations.') dot3_mau_type10_base_fp = object_identity((1, 3, 6, 1, 2, 1, 26, 4, 6)) if mibBuilder.loadTexts: dot3MauType10BaseFP.setDescription('passive fiber MAU') dot3_mau_type10_base_fb = object_identity((1, 3, 6, 1, 2, 1, 26, 4, 7)) if mibBuilder.loadTexts: dot3MauType10BaseFB.setDescription('sync fiber MAU') dot3_mau_type10_base_fl = object_identity((1, 3, 6, 1, 2, 1, 26, 4, 8)) if mibBuilder.loadTexts: dot3MauType10BaseFL.setDescription('async fiber MAU.\nNote that it is strongly recommended that\nagents return either dot3MauType10BaseFLHD or\ndot3MauType10BaseFLFD if the duplex mode is\nknown. However, management applications should\nbe prepared to receive this MAU type value from\nolder agent implementations.') dot3_mau_type10_broad36 = object_identity((1, 3, 6, 1, 2, 1, 26, 4, 9)) if mibBuilder.loadTexts: dot3MauType10Broad36.setDescription('broadband DTE MAU.\nNote that 10BROAD36 MAUs can be attached to\ninterfaces but not to repeaters.') dot3_mau_type10_base_thd = object_identity((1, 3, 6, 1, 2, 1, 26, 4, 10)) if mibBuilder.loadTexts: dot3MauType10BaseTHD.setDescription('UTP MAU, half duplex mode') dot3_mau_type10_base_tfd = object_identity((1, 3, 6, 1, 2, 1, 26, 4, 11)) if mibBuilder.loadTexts: dot3MauType10BaseTFD.setDescription('UTP MAU, full duplex mode') dot3_mau_type10_base_flhd = object_identity((1, 3, 6, 1, 2, 1, 26, 4, 12)) if mibBuilder.loadTexts: dot3MauType10BaseFLHD.setDescription('async fiber MAU, half duplex mode') dot3_mau_type10_base_flfd = object_identity((1, 3, 6, 1, 2, 1, 26, 4, 13)) if mibBuilder.loadTexts: dot3MauType10BaseFLFD.setDescription('async fiber MAU, full duplex mode') dot3_mau_type100_base_t4 = object_identity((1, 3, 6, 1, 2, 1, 26, 4, 14)) if mibBuilder.loadTexts: dot3MauType100BaseT4.setDescription('4 pair category 3 UTP') dot3_mau_type100_base_txhd = object_identity((1, 3, 6, 1, 2, 1, 26, 4, 15)) if mibBuilder.loadTexts: dot3MauType100BaseTXHD.setDescription('2 pair category 5 UTP, half duplex mode') dot3_mau_type100_base_txfd = object_identity((1, 3, 6, 1, 2, 1, 26, 4, 16)) if mibBuilder.loadTexts: dot3MauType100BaseTXFD.setDescription('2 pair category 5 UTP, full duplex mode') dot3_mau_type100_base_fxhd = object_identity((1, 3, 6, 1, 2, 1, 26, 4, 17)) if mibBuilder.loadTexts: dot3MauType100BaseFXHD.setDescription('X fiber over PMT, half duplex mode') dot3_mau_type100_base_fxfd = object_identity((1, 3, 6, 1, 2, 1, 26, 4, 18)) if mibBuilder.loadTexts: dot3MauType100BaseFXFD.setDescription('X fiber over PMT, full duplex mode') dot3_mau_type100_base_t2_hd = object_identity((1, 3, 6, 1, 2, 1, 26, 4, 19)) if mibBuilder.loadTexts: dot3MauType100BaseT2HD.setDescription('2 pair category 3 UTP, half duplex mode') dot3_mau_type100_base_t2_fd = object_identity((1, 3, 6, 1, 2, 1, 26, 4, 20)) if mibBuilder.loadTexts: dot3MauType100BaseT2FD.setDescription('2 pair category 3 UTP, full duplex mode') dot3_mau_type1000_base_xhd = object_identity((1, 3, 6, 1, 2, 1, 26, 4, 21)) if mibBuilder.loadTexts: dot3MauType1000BaseXHD.setDescription('PCS/PMA, unknown PMD, half duplex mode') dot3_mau_type1000_base_xfd = object_identity((1, 3, 6, 1, 2, 1, 26, 4, 22)) if mibBuilder.loadTexts: dot3MauType1000BaseXFD.setDescription('PCS/PMA, unknown PMD, full duplex mode') dot3_mau_type1000_base_lxhd = object_identity((1, 3, 6, 1, 2, 1, 26, 4, 23)) if mibBuilder.loadTexts: dot3MauType1000BaseLXHD.setDescription('Fiber over long-wavelength laser, half duplex\nmode') dot3_mau_type1000_base_lxfd = object_identity((1, 3, 6, 1, 2, 1, 26, 4, 24)) if mibBuilder.loadTexts: dot3MauType1000BaseLXFD.setDescription('Fiber over long-wavelength laser, full duplex\nmode') dot3_mau_type1000_base_sxhd = object_identity((1, 3, 6, 1, 2, 1, 26, 4, 25)) if mibBuilder.loadTexts: dot3MauType1000BaseSXHD.setDescription('Fiber over short-wavelength laser, half\nduplex mode') dot3_mau_type1000_base_sxfd = object_identity((1, 3, 6, 1, 2, 1, 26, 4, 26)) if mibBuilder.loadTexts: dot3MauType1000BaseSXFD.setDescription('Fiber over short-wavelength laser, full\nduplex mode') dot3_mau_type1000_base_cxhd = object_identity((1, 3, 6, 1, 2, 1, 26, 4, 27)) if mibBuilder.loadTexts: dot3MauType1000BaseCXHD.setDescription('Copper over 150-Ohm balanced cable, half\nduplex mode') dot3_mau_type1000_base_cxfd = object_identity((1, 3, 6, 1, 2, 1, 26, 4, 28)) if mibBuilder.loadTexts: dot3MauType1000BaseCXFD.setDescription('Copper over 150-Ohm balanced cable, full\n\nduplex mode') dot3_mau_type1000_base_thd = object_identity((1, 3, 6, 1, 2, 1, 26, 4, 29)) if mibBuilder.loadTexts: dot3MauType1000BaseTHD.setDescription('Four-pair Category 5 UTP, half duplex mode') dot3_mau_type1000_base_tfd = object_identity((1, 3, 6, 1, 2, 1, 26, 4, 30)) if mibBuilder.loadTexts: dot3MauType1000BaseTFD.setDescription('Four-pair Category 5 UTP, full duplex mode') dot3_mau_type10_gig_base_x = object_identity((1, 3, 6, 1, 2, 1, 26, 4, 31)) if mibBuilder.loadTexts: dot3MauType10GigBaseX.setDescription('X PCS/PMA, unknown PMD.') dot3_mau_type10_gig_base_lx4 = object_identity((1, 3, 6, 1, 2, 1, 26, 4, 32)) if mibBuilder.loadTexts: dot3MauType10GigBaseLX4.setDescription('X fiber over WWDM optics') dot3_mau_type10_gig_base_r = object_identity((1, 3, 6, 1, 2, 1, 26, 4, 33)) if mibBuilder.loadTexts: dot3MauType10GigBaseR.setDescription('R PCS/PMA, unknown PMD.') dot3_mau_type10_gig_base_er = object_identity((1, 3, 6, 1, 2, 1, 26, 4, 34)) if mibBuilder.loadTexts: dot3MauType10GigBaseER.setDescription('R fiber over 1550 nm optics') dot3_mau_type10_gig_base_lr = object_identity((1, 3, 6, 1, 2, 1, 26, 4, 35)) if mibBuilder.loadTexts: dot3MauType10GigBaseLR.setDescription('R fiber over 1310 nm optics') dot3_mau_type10_gig_base_sr = object_identity((1, 3, 6, 1, 2, 1, 26, 4, 36)) if mibBuilder.loadTexts: dot3MauType10GigBaseSR.setDescription('R fiber over 850 nm optics') dot3_mau_type10_gig_base_w = object_identity((1, 3, 6, 1, 2, 1, 26, 4, 37)) if mibBuilder.loadTexts: dot3MauType10GigBaseW.setDescription('W PCS/PMA, unknown PMD.') dot3_mau_type10_gig_base_ew = object_identity((1, 3, 6, 1, 2, 1, 26, 4, 38)) if mibBuilder.loadTexts: dot3MauType10GigBaseEW.setDescription('W fiber over 1550 nm optics') dot3_mau_type10_gig_base_lw = object_identity((1, 3, 6, 1, 2, 1, 26, 4, 39)) if mibBuilder.loadTexts: dot3MauType10GigBaseLW.setDescription('W fiber over 1310 nm optics') dot3_mau_type10_gig_base_sw = object_identity((1, 3, 6, 1, 2, 1, 26, 4, 40)) if mibBuilder.loadTexts: dot3MauType10GigBaseSW.setDescription('W fiber over 850 nm optics') dot3_mau_type10_gig_base_cx4 = object_identity((1, 3, 6, 1, 2, 1, 26, 4, 41)) if mibBuilder.loadTexts: dot3MauType10GigBaseCX4.setDescription('X copper over 8 pair 100-Ohm balanced cable') dot3_mau_type2_base_tl = object_identity((1, 3, 6, 1, 2, 1, 26, 4, 42)) if mibBuilder.loadTexts: dot3MauType2BaseTL.setDescription('Voice grade UTP copper, up to 2700m, optional PAF') dot3_mau_type10_pass_ts = object_identity((1, 3, 6, 1, 2, 1, 26, 4, 43)) if mibBuilder.loadTexts: dot3MauType10PassTS.setDescription('Voice grade UTP copper, up to 750m, optional PAF') dot3_mau_type100_base_bx10_d = object_identity((1, 3, 6, 1, 2, 1, 26, 4, 44)) if mibBuilder.loadTexts: dot3MauType100BaseBX10D.setDescription('One single-mode fiber OLT, long wavelength, 10km') dot3_mau_type100_base_bx10_u = object_identity((1, 3, 6, 1, 2, 1, 26, 4, 45)) if mibBuilder.loadTexts: dot3MauType100BaseBX10U.setDescription('One single-mode fiber ONU, long wavelength, 10km') dot3_mau_type100_base_lx10 = object_identity((1, 3, 6, 1, 2, 1, 26, 4, 46)) if mibBuilder.loadTexts: dot3MauType100BaseLX10.setDescription('Two single-mode fibers, long wavelength, 10km') dot3_mau_type1000_base_bx10_d = object_identity((1, 3, 6, 1, 2, 1, 26, 4, 47)) if mibBuilder.loadTexts: dot3MauType1000BaseBX10D.setDescription('One single-mode fiber OLT, long wavelength, 10km') dot3_mau_type1000_base_bx10_u = object_identity((1, 3, 6, 1, 2, 1, 26, 4, 48)) if mibBuilder.loadTexts: dot3MauType1000BaseBX10U.setDescription('One single-mode fiber ONU, long wavelength, 10km') dot3_mau_type1000_base_lx10 = object_identity((1, 3, 6, 1, 2, 1, 26, 4, 49)) if mibBuilder.loadTexts: dot3MauType1000BaseLX10.setDescription('Two sigle-mode fiber, long wavelength, 10km') dot3_mau_type1000_base_px10_d = object_identity((1, 3, 6, 1, 2, 1, 26, 4, 50)) if mibBuilder.loadTexts: dot3MauType1000BasePX10D.setDescription('One single-mode fiber EPON OLT, 10km') dot3_mau_type1000_base_px10_u = object_identity((1, 3, 6, 1, 2, 1, 26, 4, 51)) if mibBuilder.loadTexts: dot3MauType1000BasePX10U.setDescription('One single-mode fiber EPON ONU, 10km') dot3_mau_type1000_base_px20_d = object_identity((1, 3, 6, 1, 2, 1, 26, 4, 52)) if mibBuilder.loadTexts: dot3MauType1000BasePX20D.setDescription('One single-mode fiber EPON OLT, 20km') dot3_mau_type1000_base_px20_u = object_identity((1, 3, 6, 1, 2, 1, 26, 4, 53)) if mibBuilder.loadTexts: dot3MauType1000BasePX20U.setDescription('One single-mode fiber EPON ONU, 20km') iana_mau_mib = module_identity((1, 3, 6, 1, 2, 1, 154)).setRevisions(('2007-04-21 00:00',)) if mibBuilder.loadTexts: ianaMauMIB.setOrganization('IANA') if mibBuilder.loadTexts: ianaMauMIB.setContactInfo(' Internet Assigned Numbers Authority\n\nPostal: ICANN\n 4676 Admiralty Way, Suite 330\n Marina del Rey, CA 90292\n\n Tel: +1-310-823-9358\n EMail: iana&iana.org') if mibBuilder.loadTexts: ianaMauMIB.setDescription("This MIB module defines dot3MauType OBJECT-IDENTITIES and\nIANAifMauListBits, IANAifMauMediaAvailable,\nIANAifMauAutoNegCapBits, and IANAifJackType\n\nTEXTUAL-CONVENTIONs, specifying enumerated values of the\nifMauTypeListBits, ifMauMediaAvailable / rpMauMediaAvailable,\nifMauAutoNegCapabilityBits / ifMauAutoNegCapAdvertisedBits /\nifMauAutoNegCapReceivedBits and ifJackType / rpJackType objects\nrespectively, defined in the MAU-MIB.\n\nIt is intended that each new MAU type, Media Availability\nstate, Auto Negotiation capability and/or Jack type defined by\nthe IEEE 802.3 working group and approved for publication in a\nrevision of IEEE Std 802.3 will be added to this MIB module,\nprovided that it is suitable for being managed by the base\nobjects in the MAU-MIB. An Expert Review, as defined in\nRFC 2434 [RFC2434], is REQUIRED for such additions.\n\nThe following reference is used throughout this MIB module:\n\n[IEEE802.3] refers to:\n IEEE Std 802.3, 2005 Edition: 'IEEE Standard for\n Information technology - Telecommunications and information\n exchange between systems - Local and metropolitan area\n networks - Specific requirements -\n Part 3: Carrier sense multiple access with collision\n detection (CSMA/CD) access method and physical layer\n specifications'.\n\nThis reference should be updated as appropriate when new\nMAU types, Media Availability states, Auto Negotiation\ncapabilities, and/or Jack types are added to this MIB module.\n\nCopyright (C) The IETF Trust (2007).\nThe initial version of this MIB module was published in\nRFC 4836; for full legal notices see the RFC itself.\nSupplementary information may be available at:\nhttp://www.ietf.org/copyrights/ianamib.html") mibBuilder.exportSymbols('IANA-MAU-MIB', PYSNMP_MODULE_ID=ianaMauMIB) mibBuilder.exportSymbols('IANA-MAU-MIB', IANAifJackType=IANAifJackType, IANAifMauAutoNegCapBits=IANAifMauAutoNegCapBits, IANAifMauMediaAvailable=IANAifMauMediaAvailable, IANAifMauTypeListBits=IANAifMauTypeListBits) mibBuilder.exportSymbols('IANA-MAU-MIB', dot3MauType=dot3MauType, dot3MauTypeAUI=dot3MauTypeAUI, dot3MauType10Base5=dot3MauType10Base5, dot3MauTypeFoirl=dot3MauTypeFoirl, dot3MauType10Base2=dot3MauType10Base2, dot3MauType10BaseT=dot3MauType10BaseT, dot3MauType10BaseFP=dot3MauType10BaseFP, dot3MauType10BaseFB=dot3MauType10BaseFB, dot3MauType10BaseFL=dot3MauType10BaseFL, dot3MauType10Broad36=dot3MauType10Broad36, dot3MauType10BaseTHD=dot3MauType10BaseTHD, dot3MauType10BaseTFD=dot3MauType10BaseTFD, dot3MauType10BaseFLHD=dot3MauType10BaseFLHD, dot3MauType10BaseFLFD=dot3MauType10BaseFLFD, dot3MauType100BaseT4=dot3MauType100BaseT4, dot3MauType100BaseTXHD=dot3MauType100BaseTXHD, dot3MauType100BaseTXFD=dot3MauType100BaseTXFD, dot3MauType100BaseFXHD=dot3MauType100BaseFXHD, dot3MauType100BaseFXFD=dot3MauType100BaseFXFD, dot3MauType100BaseT2HD=dot3MauType100BaseT2HD, dot3MauType100BaseT2FD=dot3MauType100BaseT2FD, dot3MauType1000BaseXHD=dot3MauType1000BaseXHD, dot3MauType1000BaseXFD=dot3MauType1000BaseXFD, dot3MauType1000BaseLXHD=dot3MauType1000BaseLXHD, dot3MauType1000BaseLXFD=dot3MauType1000BaseLXFD, dot3MauType1000BaseSXHD=dot3MauType1000BaseSXHD, dot3MauType1000BaseSXFD=dot3MauType1000BaseSXFD, dot3MauType1000BaseCXHD=dot3MauType1000BaseCXHD, dot3MauType1000BaseCXFD=dot3MauType1000BaseCXFD, dot3MauType1000BaseTHD=dot3MauType1000BaseTHD, dot3MauType1000BaseTFD=dot3MauType1000BaseTFD, dot3MauType10GigBaseX=dot3MauType10GigBaseX, dot3MauType10GigBaseLX4=dot3MauType10GigBaseLX4, dot3MauType10GigBaseR=dot3MauType10GigBaseR, dot3MauType10GigBaseER=dot3MauType10GigBaseER, dot3MauType10GigBaseLR=dot3MauType10GigBaseLR, dot3MauType10GigBaseSR=dot3MauType10GigBaseSR, dot3MauType10GigBaseW=dot3MauType10GigBaseW, dot3MauType10GigBaseEW=dot3MauType10GigBaseEW, dot3MauType10GigBaseLW=dot3MauType10GigBaseLW, dot3MauType10GigBaseSW=dot3MauType10GigBaseSW, dot3MauType10GigBaseCX4=dot3MauType10GigBaseCX4, dot3MauType2BaseTL=dot3MauType2BaseTL, dot3MauType10PassTS=dot3MauType10PassTS, dot3MauType100BaseBX10D=dot3MauType100BaseBX10D, dot3MauType100BaseBX10U=dot3MauType100BaseBX10U, dot3MauType100BaseLX10=dot3MauType100BaseLX10, dot3MauType1000BaseBX10D=dot3MauType1000BaseBX10D, dot3MauType1000BaseBX10U=dot3MauType1000BaseBX10U, dot3MauType1000BaseLX10=dot3MauType1000BaseLX10, dot3MauType1000BasePX10D=dot3MauType1000BasePX10D, dot3MauType1000BasePX10U=dot3MauType1000BasePX10U, dot3MauType1000BasePX20D=dot3MauType1000BasePX20D, dot3MauType1000BasePX20U=dot3MauType1000BasePX20U, ianaMauMIB=ianaMauMIB)
# name: Exes and Ohs # url: https://www.codewars.com/kata/55908aad6620c066bc00002a # Check to see if a string has the same amount of 'x's and 'o's. The method # must return a boolean and be case insensitive. The string can contain any char. def xo(s): lowerStr = s.lower() return lowerStr.count('o') == lowerStr.count('x') if __name__ == '__main__': print(xo("ooxx")) # => true print(xo("xooxx")) # => false print(xo("ooxXm")) # => true print(xo("zpzpzpp")) # => true // when no 'x' and 'o' is present should return true print(xo("zzoo")) # => false
def xo(s): lower_str = s.lower() return lowerStr.count('o') == lowerStr.count('x') if __name__ == '__main__': print(xo('ooxx')) print(xo('xooxx')) print(xo('ooxXm')) print(xo('zpzpzpp')) print(xo('zzoo'))
BASE_URL = "https://paper-api.alpaca.markets" KEY = "your key here" SECRET_KEY = "your secret key here" HEADERS = {"APCA-API-KEY-ID": KEY, "APCA-API-SECRET-KEY": SECRET_KEY} # headers are used to authenticate our request
base_url = 'https://paper-api.alpaca.markets' key = 'your key here' secret_key = 'your secret key here' headers = {'APCA-API-KEY-ID': KEY, 'APCA-API-SECRET-KEY': SECRET_KEY}
# coding: utf-8 # Copyright 2014 jeoliva author. All rights reserved. # Use of this source code is governed by a MIT License # license that can be found in the LICENSE file. class RangedUri(object): def __init__(self): self.start = 0 self.length = -1 self.baseUri = "" self.referenceUri = ""
class Rangeduri(object): def __init__(self): self.start = 0 self.length = -1 self.baseUri = '' self.referenceUri = ''
class Solution: def wordPatternV1(self, pattern: str, str: str) -> bool: p2s, s2p, words = {}, {}, str.split() if len(pattern) != len(words): return False for p, s in zip(pattern, words): if p in p2s and p2s[p] != s: return False else: p2s[p] = s if s in s2p and s2p[s] != p: return False else: s2p[s] = p return True def wordPatternV2(self, pattern: str, str: str) -> bool: # map the element of iterable xs to the index of first appearance f = lambda xs: map({}.setdefault, xs, range(len(xs))) return list(f(pattern)) == list(f(str.split())) # TESTS tests = [ ("aaa", "aa aa aa aa", False), ("abba", "dog cat cat dog", True), ("abba", "dog cat cat fish", False), ("aaaa", "dog cat cat dog", False), ("abba", "dog dog dog dog", False), ] for pattern, string, expected in tests: sol = Solution() actual = sol.wordPatternV1(pattern, string) print("String", string, "follows the same pattern", pattern, "->", actual) assert actual == expected assert expected == sol.wordPatternV2(pattern, string)
class Solution: def word_pattern_v1(self, pattern: str, str: str) -> bool: (p2s, s2p, words) = ({}, {}, str.split()) if len(pattern) != len(words): return False for (p, s) in zip(pattern, words): if p in p2s and p2s[p] != s: return False else: p2s[p] = s if s in s2p and s2p[s] != p: return False else: s2p[s] = p return True def word_pattern_v2(self, pattern: str, str: str) -> bool: f = lambda xs: map({}.setdefault, xs, range(len(xs))) return list(f(pattern)) == list(f(str.split())) tests = [('aaa', 'aa aa aa aa', False), ('abba', 'dog cat cat dog', True), ('abba', 'dog cat cat fish', False), ('aaaa', 'dog cat cat dog', False), ('abba', 'dog dog dog dog', False)] for (pattern, string, expected) in tests: sol = solution() actual = sol.wordPatternV1(pattern, string) print('String', string, 'follows the same pattern', pattern, '->', actual) assert actual == expected assert expected == sol.wordPatternV2(pattern, string)
#------------------------------------------------------------------------------- # Name: powerlaw.py # Purpose: This is a set of power law coefficients(a,b) for the calculation of # empirical rain attenuation model A = a*R^b. #------------------------------------------------------------------------------- def get_coef_ab(freq, mod_type = 'MP'): ''' Returns power law coefficients according to model type (mod_type) at a given frequency[Hz]. Input: freq - frequency, [Hz]. Optional: mod_type - model type for power law. This can be 'ITU_R2005', 'MP','GAMMA'. By default, mode_type = 'ITU_R2005'. Output: a,b - power law coefficients. ''' if mod_type == 'ITU_R2005': a = {'18': 0.07393, '23': 0.1285, '38': 0.39225} b = {'18':1.0404605978, '23': 0.99222272,'38':0.8686641682} elif mod_type == 'MP': a = {'18': 0.05911087, '23': 0.1080751, '38': 0.37898495} b = {'18': 1.08693514, '23': 1.05342886, '38': 0.92876888} elif mod_type=='GAMMA': a = {'18': 0.04570854, '23': 0.08174184, '38': 0.28520923} b = {'18': 1.09211488, '23': 1.08105214, '38': 1.01426258} freq = int(freq/1e9) return a[str(freq)], b[str(freq)]
def get_coef_ab(freq, mod_type='MP'): """ Returns power law coefficients according to model type (mod_type) at a given frequency[Hz]. Input: freq - frequency, [Hz]. Optional: mod_type - model type for power law. This can be 'ITU_R2005', 'MP','GAMMA'. By default, mode_type = 'ITU_R2005'. Output: a,b - power law coefficients. """ if mod_type == 'ITU_R2005': a = {'18': 0.07393, '23': 0.1285, '38': 0.39225} b = {'18': 1.0404605978, '23': 0.99222272, '38': 0.8686641682} elif mod_type == 'MP': a = {'18': 0.05911087, '23': 0.1080751, '38': 0.37898495} b = {'18': 1.08693514, '23': 1.05342886, '38': 0.92876888} elif mod_type == 'GAMMA': a = {'18': 0.04570854, '23': 0.08174184, '38': 0.28520923} b = {'18': 1.09211488, '23': 1.08105214, '38': 1.01426258} freq = int(freq / 1000000000.0) return (a[str(freq)], b[str(freq)])
def isPalindrome(x): #x = x.casefold() rev_str = reversed(x) if list(x) == list(rev_str): print("It is palindrome") return True else: print("It is not palindrome") return False isPalindrome("SSAASS")
def is_palindrome(x): rev_str = reversed(x) if list(x) == list(rev_str): print('It is palindrome') return True else: print('It is not palindrome') return False is_palindrome('SSAASS')
'''Application Data (bpy.app) This module contains application values that remain unchanged during runtime. ''' debug = None '''Boolean, for debug info (started with --debug / --debug_* matching this attribute name) ''' debug_events = None '''Boolean, for debug info (started with --debug / --debug_* matching this attribute name) ''' debug_ffmpeg = None '''Boolean, for debug info (started with --debug / --debug_* matching this attribute name) ''' debug_handlers = None '''Boolean, for debug info (started with --debug / --debug_* matching this attribute name) ''' debug_python = None '''Boolean, for debug info (started with --debug / --debug_* matching this attribute name) ''' debug_value = None '''Int, number which can be set to non-zero values for testing purposes ''' debug_wm = None '''Boolean, for debug info (started with --debug / --debug_* matching this attribute name) ''' driver_namespace = None '''Dictionary for drivers namespace, editable in-place, reset on file load (read-only) ''' tempdir = None '''String, the temp directory used by blender (read-only) ''' background = None '''Boolean, True when blender is running without a user interface (started with -b) ''' binary_path = None '''The location of blenders executable, useful for utilities that spawn new instances ''' build_cflags = None '''C compiler flags ''' build_cxxflags = None '''C++ compiler flags ''' build_date = None '''The date this blender instance was built ''' build_linkflags = None '''Binary linking flags ''' build_options = None '''A set containing most important enabled optional build features ''' build_platform = None '''The platform this blender instance was built for ''' build_revision = None '''The subversion revision this blender instance was built with ''' build_system = None '''Build system used ''' build_time = None '''The time this blender instance was built ''' build_type = None '''The type of build (Release, Debug) ''' ffmpeg = None '''FFmpeg library information backend ''' handlers = None '''Application handler callbacks ''' translations = None '''Application and addons internationalization API ''' version = None '''The Blender version as a tuple of 3 numbers. eg. (2, 50, 11) ''' version_char = None '''The Blender version character (for minor releases) ''' version_cycle = None '''The release status of this build alpha/beta/rc/release ''' version_string = None '''The Blender version formatted as a string ''' def count(*argv): '''T.count(value) -> integer -- return number of occurrences of value ''' pass def index(*argv): '''T.index(value, [start, [stop]]) -> integer -- return first index of value. Raises ValueError if the value is not present. ''' pass
"""Application Data (bpy.app) This module contains application values that remain unchanged during runtime. """ debug = None 'Boolean, for debug info (started with --debug / --debug_* matching this attribute name)\n \n' debug_events = None 'Boolean, for debug info (started with --debug / --debug_* matching this attribute name)\n \n' debug_ffmpeg = None 'Boolean, for debug info (started with --debug / --debug_* matching this attribute name)\n \n' debug_handlers = None 'Boolean, for debug info (started with --debug / --debug_* matching this attribute name)\n \n' debug_python = None 'Boolean, for debug info (started with --debug / --debug_* matching this attribute name)\n \n' debug_value = None 'Int, number which can be set to non-zero values for testing purposes\n \n' debug_wm = None 'Boolean, for debug info (started with --debug / --debug_* matching this attribute name)\n \n' driver_namespace = None 'Dictionary for drivers namespace, editable in-place, reset on file load (read-only)\n \n' tempdir = None 'String, the temp directory used by blender (read-only)\n \n' background = None 'Boolean, True when blender is running without a user interface (started with -b)\n \n' binary_path = None 'The location of blenders executable, useful for utilities that spawn new instances\n \n' build_cflags = None 'C compiler flags\n \n' build_cxxflags = None 'C++ compiler flags\n \n' build_date = None 'The date this blender instance was built\n \n' build_linkflags = None 'Binary linking flags\n \n' build_options = None 'A set containing most important enabled optional build features\n \n' build_platform = None 'The platform this blender instance was built for\n \n' build_revision = None 'The subversion revision this blender instance was built with\n \n' build_system = None 'Build system used\n \n' build_time = None 'The time this blender instance was built\n \n' build_type = None 'The type of build (Release, Debug)\n \n' ffmpeg = None 'FFmpeg library information backend\n \n' handlers = None 'Application handler callbacks\n \n' translations = None 'Application and addons internationalization API\n \n' version = None 'The Blender version as a tuple of 3 numbers. eg. (2, 50, 11)\n \n' version_char = None 'The Blender version character (for minor releases)\n \n' version_cycle = None 'The release status of this build alpha/beta/rc/release\n \n' version_string = None 'The Blender version formatted as a string\n \n' def count(*argv): """T.count(value) -> integer -- return number of occurrences of value """ pass def index(*argv): """T.index(value, [start, [stop]]) -> integer -- return first index of value. Raises ValueError if the value is not present. """ pass
############################################## # parameters than can be defined by the user # ############################################## # parameters modifying the behaviour of the network global weight_multiplicator # multiplicator of a returned observation, allow to scale observations in order to make the network differentiate them weight_multiplicator = 0.25 global victory_reward victory_reward = 0 # reward at win global defeat_punishment defeat_punishment = 1 # punishment given when the game is lost (pool fall or cart get out of bound) global network_param network_param = [4] # shape of hidden layers network_type = "mlp" # network_type ("mlp", "elman") # parameters modifying the result display (might not be change by a common user) max_score = 200 # score which makes the game end (200 is the basic OpenAI gym value) nb_seq = 1000 # lenght of a simulation nb_simulation = 10 # number of simulations save_frequency = 100 gamma = 0.6 hyperopt = 0 # set to 1 to launch with hyperopt, 0 for normal use pro_level_exists = 0 # if set to 1, the network stop learning after winning a game
global weight_multiplicator weight_multiplicator = 0.25 global victory_reward victory_reward = 0 global defeat_punishment defeat_punishment = 1 global network_param network_param = [4] network_type = 'mlp' max_score = 200 nb_seq = 1000 nb_simulation = 10 save_frequency = 100 gamma = 0.6 hyperopt = 0 pro_level_exists = 0
# -*- coding: utf-8 -*- name = 'nuke_ML_server' version = '0.1.3' build_requires = [ 'cmake-3.10+' ] variants = [ ['platform-linux', 'arch-x86_64', 'nuke-12.2'] ] def commands(): env.NUKE_PATH.append('{root}/lib') env.LDD_LIBRARY_PATH.append(env.NUKE_LOCATION)
name = 'nuke_ML_server' version = '0.1.3' build_requires = ['cmake-3.10+'] variants = [['platform-linux', 'arch-x86_64', 'nuke-12.2']] def commands(): env.NUKE_PATH.append('{root}/lib') env.LDD_LIBRARY_PATH.append(env.NUKE_LOCATION)
input() x = list(map(int, input().split())) N = len(x) for i in range(0, N - 1): for j in range(0, N - i - 1): if x[j] > x[j + 1]: x[j], x[j + 1] = x[j + 1], x[j] print(' '.join(map(str, x)))
input() x = list(map(int, input().split())) n = len(x) for i in range(0, N - 1): for j in range(0, N - i - 1): if x[j] > x[j + 1]: (x[j], x[j + 1]) = (x[j + 1], x[j]) print(' '.join(map(str, x)))
class Solution: def reverseString(self, s): """ :type s: str :rtype: str """ output = list(s) output = output[::-1] output = "".join(output) return output
class Solution: def reverse_string(self, s): """ :type s: str :rtype: str """ output = list(s) output = output[::-1] output = ''.join(output) return output
# author: Bilal El Uneis # since: April 2018 # bilaleluneis@gmail.com class Methods: number_of_instances = 0 # this is a class level property # initializer with default values (constructor) def __init__(self, method_name="anonymous", method_return_type="void"): self.method_name = method_name self.method_return_type = method_return_type type(self).number_of_instances += 1 # this is how to access class level var inside init # I am guessing this is like a destructor in other languages like C++ def __del__(self): type(self).number_of_instances -= 1 # this is an instance method, every instance method has first argument as self def update_method_name(self, new_name): self.method_name = new_name # this is a class level method @classmethod def get_class_number_of_instances(cls): return cls.number_of_instances # a static method @staticmethod def is_valid_return_type(method_return_type): if method_return_type in ["void", "int", "String"]: return True else: return False # start of running code if __name__ == "__main__": print("current number of instances = {}".format(Methods.get_class_number_of_instances())) instance_1 = Methods() instance_2 = Methods(method_return_type="float") # need to use argument name if you are passing only one param instance_3 = Methods("awesome", "String") print("current number of instances = {}".format(Methods.get_class_number_of_instances())) instance_1.update_method_name("instance_1") print("instance_1 method name is updated to {}".format(instance_1.method_name)) del instance_1 # this will call the __del__ (destructor) print("current number of instances = {}".format(Methods.get_class_number_of_instances())) valid_return_type = Methods.is_valid_return_type(instance_2.method_return_type) print("instance_2 method return type is valid: {}".format(valid_return_type)) valid_return_type = Methods.is_valid_return_type(instance_3.method_return_type) print("instance_3 method return type is valid: {}".format(valid_return_type)) del instance_2 del instance_3 print("current number of instances = {}".format(Methods.get_class_number_of_instances()))
class Methods: number_of_instances = 0 def __init__(self, method_name='anonymous', method_return_type='void'): self.method_name = method_name self.method_return_type = method_return_type type(self).number_of_instances += 1 def __del__(self): type(self).number_of_instances -= 1 def update_method_name(self, new_name): self.method_name = new_name @classmethod def get_class_number_of_instances(cls): return cls.number_of_instances @staticmethod def is_valid_return_type(method_return_type): if method_return_type in ['void', 'int', 'String']: return True else: return False if __name__ == '__main__': print('current number of instances = {}'.format(Methods.get_class_number_of_instances())) instance_1 = methods() instance_2 = methods(method_return_type='float') instance_3 = methods('awesome', 'String') print('current number of instances = {}'.format(Methods.get_class_number_of_instances())) instance_1.update_method_name('instance_1') print('instance_1 method name is updated to {}'.format(instance_1.method_name)) del instance_1 print('current number of instances = {}'.format(Methods.get_class_number_of_instances())) valid_return_type = Methods.is_valid_return_type(instance_2.method_return_type) print('instance_2 method return type is valid: {}'.format(valid_return_type)) valid_return_type = Methods.is_valid_return_type(instance_3.method_return_type) print('instance_3 method return type is valid: {}'.format(valid_return_type)) del instance_2 del instance_3 print('current number of instances = {}'.format(Methods.get_class_number_of_instances()))
n = int(input()) a = list(map(int, input().split())) total = sum(a) if total % n != 0: print(-1) exit() num = total // n ans = 0 for i in range(n - 1): left = sum(a[:i + 1]) right = sum(a[i + 1:]) if left < num * (i + 1) or right < num * (n - i - 1): ans += 1 print(ans)
n = int(input()) a = list(map(int, input().split())) total = sum(a) if total % n != 0: print(-1) exit() num = total // n ans = 0 for i in range(n - 1): left = sum(a[:i + 1]) right = sum(a[i + 1:]) if left < num * (i + 1) or right < num * (n - i - 1): ans += 1 print(ans)
#encoding:utf-8 subreddit = 'KamenRider' t_channel = '@r_KamenRider' def send_post(submission, r2t): return r2t.send_simple(submission)
subreddit = 'KamenRider' t_channel = '@r_KamenRider' def send_post(submission, r2t): return r2t.send_simple(submission)
"""Python implementation of Binary Search Tree.""" class BST(): # pragma: no cover """Binary Search Tree.""" def __init__(self): """Initialize Binary Search tree.""" self._root = None self._length = 0 self._rdepth = 0 self._ldepth = 0 self._depth = 0 self._balance = 0 def insert(self, val, list_pair): """Insert new node into Binary Search Tree.""" if type(val) != int: raise TypeError('You can only add numbers to this tree.') curr = self._root if curr is None: curr = Node(val) curr._list.append(list_pair) self._root = curr self._length = 1 self._depth = 1 return while True: if val < curr.val: if curr.left: curr = curr.left else: curr.left = Node(val) curr.left._list.append(list_pair) curr.left.parent = curr self._length += 1 self._bal_and_rotate(curr.left) return elif val > curr.val: if curr.right: curr = curr.right else: curr.right = Node(val) curr.right._list.append(list_pair) curr.right.parent = curr self._length += 1 self._bal_and_rotate(curr.right) return else: current_keys = [] for item in curr._list: current_keys.append(item[0]) if list_pair[0] not in current_keys: curr._list.append(list_pair) return else: for item in curr._list: if item[0] == list_pair[0]: curr._list[curr._list.index(item)] = list_pair return def search(self, val): """Find the node at val in Binary Search Tree.""" curr = self._root if type(val) != int: raise TypeError('This tree only contains numbers.') while curr: if val < curr.val: curr = curr.left elif val > curr.val: curr = curr.right else: return curr def size(self): """Return the amount of nodes in Binary Search Tree.""" return self._length def _bal_and_rotate(self, node): """Check balance and rotate as needed for full tree.""" balanced = False curr = node if curr != self._root: par_bal = self._tree_depth(curr.parent) if par_bal[0] > par_bal[1]: curr = curr.parent.right else: curr = curr.parent.left while not balanced: auto_bal = self._check_bal(curr.parent, curr) if len(auto_bal) == 2: balanced = True self._rdepth = auto_bal[0] self._ldepth = auto_bal[1] self._balance = self._rdepth - self._ldepth self._depth = max([self._rdepth, self._ldepth]) + 1 elif auto_bal[2] == -2 and auto_bal[3] in [-1, 0]: self._rotate_right(auto_bal[0]) curr = auto_bal[0] elif auto_bal[2] == 2 and auto_bal[3] in [1, 0]: self._rotate_left(auto_bal[0]) curr = auto_bal[0] elif auto_bal[2] == -2 and auto_bal[3] == 1: self._rotate_left(auto_bal[1]) self._rotate_right(auto_bal[0]) curr = auto_bal[0] elif auto_bal[2] == 2 and auto_bal[3] == -1: self._rotate_right(auto_bal[1]) self._rotate_left(auto_bal[0]) curr = auto_bal[0] return def _check_bal(self, par_node, child): """Check the for balance of tree or sub tree. Continues up till out of balance or complete. """ while True: if child.right or child.left: child_bal = self._tree_depth(child) else: child_bal = (0, 0) if par_node is not None: par_bal = self._tree_depth(par_node) bal = par_bal[0] - par_bal[1] if bal in range(-1, 2): child = par_node par_node = par_node.parent else: return par_node, child, bal, child_bal[0] - child_bal[1] else: return child_bal[0], child_bal[1] def _rotate_right(self, node): """Right rotation for current node.""" curr = node.left node.left = curr.right if node.left: node.left.parent = node curr.parent = node.parent curr.right = node node.parent = curr if curr.parent: if curr.parent.right == node: curr.parent.right = curr else: curr.parent.left = curr else: self._root = curr curr.parent = None return def _rotate_left(self, node): """Left rotation for current node.""" curr = node.right node.right = curr.left if node.right: node.right.parent = node curr.parent = node.parent curr.left = node node.parent = curr if curr.parent: if curr.parent.right == node: curr.parent.right = curr else: curr.parent.left = curr else: self._root = curr curr.parent = None return def _tree_depth(self, node): """Get the depth of the tree or sub tree.""" lside = {} rside = {} on_right = False curr = None if node.left: curr = node.left elif node.right: curr = node.right while True: if curr == node.right: on_right = True elif not node.left: on_right = True if curr == node and curr.left and curr.left in lside.keys(): curr = curr.right on_right = True elif on_right: if curr not in rside.keys() and curr.parent in rside.keys(): rside[curr] = rside[curr.parent] + 1 elif curr == node.right: rside[curr] = 1 if curr.left and curr.left not in rside.keys(): curr = curr.left elif curr.right and curr.right not in rside.keys(): curr = curr.right else: curr = curr.parent else: if curr not in lside.keys() and curr.parent in lside.keys(): lside[curr] = lside[curr.parent] + 1 elif curr == node.left: lside[curr] = 1 if curr.left and curr.left not in lside.keys(): curr = curr.left elif curr.right and curr.right not in lside.keys(): curr = curr.right else: curr = curr.parent if on_right or not node.right: if curr == node: if rside and lside: return (max(rside.values()), max(lside.values())) elif rside: return (max(rside.values()), 0) else: return (0, max(lside.values())) class Node(): # pragma: no cover """Create a node to add to the Binary Search Tree.""" def __init__(self, val, parent=None, left=None, right=None): """Initialize a new node.""" self.val = val self._list = [] self.parent = parent self.left = left self.right = right
"""Python implementation of Binary Search Tree.""" class Bst: """Binary Search Tree.""" def __init__(self): """Initialize Binary Search tree.""" self._root = None self._length = 0 self._rdepth = 0 self._ldepth = 0 self._depth = 0 self._balance = 0 def insert(self, val, list_pair): """Insert new node into Binary Search Tree.""" if type(val) != int: raise type_error('You can only add numbers to this tree.') curr = self._root if curr is None: curr = node(val) curr._list.append(list_pair) self._root = curr self._length = 1 self._depth = 1 return while True: if val < curr.val: if curr.left: curr = curr.left else: curr.left = node(val) curr.left._list.append(list_pair) curr.left.parent = curr self._length += 1 self._bal_and_rotate(curr.left) return elif val > curr.val: if curr.right: curr = curr.right else: curr.right = node(val) curr.right._list.append(list_pair) curr.right.parent = curr self._length += 1 self._bal_and_rotate(curr.right) return else: current_keys = [] for item in curr._list: current_keys.append(item[0]) if list_pair[0] not in current_keys: curr._list.append(list_pair) return else: for item in curr._list: if item[0] == list_pair[0]: curr._list[curr._list.index(item)] = list_pair return def search(self, val): """Find the node at val in Binary Search Tree.""" curr = self._root if type(val) != int: raise type_error('This tree only contains numbers.') while curr: if val < curr.val: curr = curr.left elif val > curr.val: curr = curr.right else: return curr def size(self): """Return the amount of nodes in Binary Search Tree.""" return self._length def _bal_and_rotate(self, node): """Check balance and rotate as needed for full tree.""" balanced = False curr = node if curr != self._root: par_bal = self._tree_depth(curr.parent) if par_bal[0] > par_bal[1]: curr = curr.parent.right else: curr = curr.parent.left while not balanced: auto_bal = self._check_bal(curr.parent, curr) if len(auto_bal) == 2: balanced = True self._rdepth = auto_bal[0] self._ldepth = auto_bal[1] self._balance = self._rdepth - self._ldepth self._depth = max([self._rdepth, self._ldepth]) + 1 elif auto_bal[2] == -2 and auto_bal[3] in [-1, 0]: self._rotate_right(auto_bal[0]) curr = auto_bal[0] elif auto_bal[2] == 2 and auto_bal[3] in [1, 0]: self._rotate_left(auto_bal[0]) curr = auto_bal[0] elif auto_bal[2] == -2 and auto_bal[3] == 1: self._rotate_left(auto_bal[1]) self._rotate_right(auto_bal[0]) curr = auto_bal[0] elif auto_bal[2] == 2 and auto_bal[3] == -1: self._rotate_right(auto_bal[1]) self._rotate_left(auto_bal[0]) curr = auto_bal[0] return def _check_bal(self, par_node, child): """Check the for balance of tree or sub tree. Continues up till out of balance or complete. """ while True: if child.right or child.left: child_bal = self._tree_depth(child) else: child_bal = (0, 0) if par_node is not None: par_bal = self._tree_depth(par_node) bal = par_bal[0] - par_bal[1] if bal in range(-1, 2): child = par_node par_node = par_node.parent else: return (par_node, child, bal, child_bal[0] - child_bal[1]) else: return (child_bal[0], child_bal[1]) def _rotate_right(self, node): """Right rotation for current node.""" curr = node.left node.left = curr.right if node.left: node.left.parent = node curr.parent = node.parent curr.right = node node.parent = curr if curr.parent: if curr.parent.right == node: curr.parent.right = curr else: curr.parent.left = curr else: self._root = curr curr.parent = None return def _rotate_left(self, node): """Left rotation for current node.""" curr = node.right node.right = curr.left if node.right: node.right.parent = node curr.parent = node.parent curr.left = node node.parent = curr if curr.parent: if curr.parent.right == node: curr.parent.right = curr else: curr.parent.left = curr else: self._root = curr curr.parent = None return def _tree_depth(self, node): """Get the depth of the tree or sub tree.""" lside = {} rside = {} on_right = False curr = None if node.left: curr = node.left elif node.right: curr = node.right while True: if curr == node.right: on_right = True elif not node.left: on_right = True if curr == node and curr.left and (curr.left in lside.keys()): curr = curr.right on_right = True elif on_right: if curr not in rside.keys() and curr.parent in rside.keys(): rside[curr] = rside[curr.parent] + 1 elif curr == node.right: rside[curr] = 1 if curr.left and curr.left not in rside.keys(): curr = curr.left elif curr.right and curr.right not in rside.keys(): curr = curr.right else: curr = curr.parent else: if curr not in lside.keys() and curr.parent in lside.keys(): lside[curr] = lside[curr.parent] + 1 elif curr == node.left: lside[curr] = 1 if curr.left and curr.left not in lside.keys(): curr = curr.left elif curr.right and curr.right not in lside.keys(): curr = curr.right else: curr = curr.parent if on_right or not node.right: if curr == node: if rside and lside: return (max(rside.values()), max(lside.values())) elif rside: return (max(rside.values()), 0) else: return (0, max(lside.values())) class Node: """Create a node to add to the Binary Search Tree.""" def __init__(self, val, parent=None, left=None, right=None): """Initialize a new node.""" self.val = val self._list = [] self.parent = parent self.left = left self.right = right
t = int(input()) tests = [] def fact(n): if n == 1: return n else: return n * fact(n - 1) while t > 0: n = int(input()) tests.append(fact(n)) t -= 1 for x in tests: print(x % 10)
t = int(input()) tests = [] def fact(n): if n == 1: return n else: return n * fact(n - 1) while t > 0: n = int(input()) tests.append(fact(n)) t -= 1 for x in tests: print(x % 10)
class Distribution: def __init__(self, mu=0, sigma=1): """ Genertic distribution class for calculating and visualizing a probability disttribution. Attributes: mean (float) representing the mean value of the distribution. stdev (float) representing the standard deviation of the distribution. data_list (list of floats) a list of floats extracted from the data file. """ self.mean = mu self.stdev = sigma self.data = [] def read_data_file(self, file_name): """ Function to read in data from a txt file. The txt file should have one number (float) per line. The numbers are stored in the data attributes. Args: file_name (string): name of a file to read from Returns: None """ with open(file_name) as file: data_list = [] line = file.readline() while line: data_list.append(int(line)) line = file.readline() file.close() self.data = data_list
class Distribution: def __init__(self, mu=0, sigma=1): """ Genertic distribution class for calculating and visualizing a probability disttribution. Attributes: mean (float) representing the mean value of the distribution. stdev (float) representing the standard deviation of the distribution. data_list (list of floats) a list of floats extracted from the data file. """ self.mean = mu self.stdev = sigma self.data = [] def read_data_file(self, file_name): """ Function to read in data from a txt file. The txt file should have one number (float) per line. The numbers are stored in the data attributes. Args: file_name (string): name of a file to read from Returns: None """ with open(file_name) as file: data_list = [] line = file.readline() while line: data_list.append(int(line)) line = file.readline() file.close() self.data = data_list
#!/usr/bin/env python # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # # Authors: # - Paul Nilsson, paul.nilsson@cern.ch, 2018-2021 def allow_memory_usage_verifications(): """ Should memory usage verifications be performed? :return: boolean. """ return False def memory_usage(job): """ Perform memory usage verification. :param job: job object :return: exit code (int), diagnostics (string). """ exit_code = 0 diagnostics = "" return exit_code, diagnostics
def allow_memory_usage_verifications(): """ Should memory usage verifications be performed? :return: boolean. """ return False def memory_usage(job): """ Perform memory usage verification. :param job: job object :return: exit code (int), diagnostics (string). """ exit_code = 0 diagnostics = '' return (exit_code, diagnostics)
# Adapted from byterun test_functions.py test # Tests returning from a generator """This program is self-checking!""" def gen(): yield 1 return 2 x = gen() while True: try: assert next(x) == 1 except StopIteration as e: assert e.value == 2 break
"""This program is self-checking!""" def gen(): yield 1 return 2 x = gen() while True: try: assert next(x) == 1 except StopIteration as e: assert e.value == 2 break
""" Class for holding and accessing a "Named Entity" for a relation """ class NamedEntity: def __init__(self, entity, doc): self.entity = entity """ Gets the type of entity this object represents. "PERSON", "ORG", etc. """ @property def entity_type(self): return None """ Gets the text span of this entity, referring to the original document """ @property def text(self): return None """ Holds a set of entities, not necessarily from the same collection This is an immutable collection """ class NamedEntityCollection: def __init__(self, entities): self.entities = self.entities def join(self, other): return [] def get_entity(self, span): return None def get_entityies_by_type(self, type): return None
""" Class for holding and accessing a "Named Entity" for a relation """ class Namedentity: def __init__(self, entity, doc): self.entity = entity '\n Gets the type of entity\n this object represents.\n\n "PERSON", "ORG", etc.\n ' @property def entity_type(self): return None '\n Gets the text span of this entity,\n referring to the original document\n ' @property def text(self): return None '\nHolds a set of entities, not necessarily from the same collection\n\nThis is an immutable collection\n' class Namedentitycollection: def __init__(self, entities): self.entities = self.entities def join(self, other): return [] def get_entity(self, span): return None def get_entityies_by_type(self, type): return None
for _ in range(int(input())): a,b,q=map(int,input().split()) arr=[] for i in range(q): arr+=[list(map(int,input().split()))] res=0 if a!=b: for j in range(arr[i][0],arr[i][1]+1): if (j%a)%b!=(j%b)%a: res+=1 if i!=q-1: print(res,end=" ") if i==q-1: print(res)
for _ in range(int(input())): (a, b, q) = map(int, input().split()) arr = [] for i in range(q): arr += [list(map(int, input().split()))] res = 0 if a != b: for j in range(arr[i][0], arr[i][1] + 1): if j % a % b != j % b % a: res += 1 if i != q - 1: print(res, end=' ') if i == q - 1: print(res)
# The isBadVersion API is already defined for you. # @param version, an integer # @return a bool def isBadVersion(version): pass class Solution: def firstBadVersion(self, n): left, right = 0, n while left <= right: mid = (left + right) // 2 if not isBadVersion(mid): left = mid + 1 else: right = mid - 1 return left
def is_bad_version(version): pass class Solution: def first_bad_version(self, n): (left, right) = (0, n) while left <= right: mid = (left + right) // 2 if not is_bad_version(mid): left = mid + 1 else: right = mid - 1 return left
""" LC 26 Given an array of sorted numbers, remove all duplicates from it. You should not use any extra space; after removing the duplicates in-place return the length of the subarray that has no duplicate in it. Example 1: Input: [2, 3, 3, 3, 6, 9, 9] Output: 4 Explanation: The first four elements after removing the duplicates will be [2, 3, 6, 9]. Example 2: Input: [2, 2, 2, 11] Output: 2 Explanation: The first two elements after removing the duplicates will be [2, 11]. """ def remove_duplicates(arr): p_place = 0 last_n = float('inf') for p_iter, n in enumerate(arr): if n != last_n: arr[p_place] = n last_n = n p_place += 1 return p_place def main(): print(remove_duplicates([2, 3, 3, 3, 6, 9, 9])) # 4 print(remove_duplicates([2, 2, 2, 11])) # 2 main() """ Time O(N) Space O(1) """
""" LC 26 Given an array of sorted numbers, remove all duplicates from it. You should not use any extra space; after removing the duplicates in-place return the length of the subarray that has no duplicate in it. Example 1: Input: [2, 3, 3, 3, 6, 9, 9] Output: 4 Explanation: The first four elements after removing the duplicates will be [2, 3, 6, 9]. Example 2: Input: [2, 2, 2, 11] Output: 2 Explanation: The first two elements after removing the duplicates will be [2, 11]. """ def remove_duplicates(arr): p_place = 0 last_n = float('inf') for (p_iter, n) in enumerate(arr): if n != last_n: arr[p_place] = n last_n = n p_place += 1 return p_place def main(): print(remove_duplicates([2, 3, 3, 3, 6, 9, 9])) print(remove_duplicates([2, 2, 2, 11])) main() '\nTime O(N)\nSpace O(1)\n'
def takeInstInput(S): degrees = [] inputS = S.split(" ") inputS = [int(x) for x in inputS] for i in range(len(inputS)): degrees.append((inputS[i], i)) return degrees def takeFileInput(FileName): fileI = open(FileName, 'r') inputS = fileI.readline() degrees = takeInstInput(inputS) fileI.close() return inputS, degrees
def take_inst_input(S): degrees = [] input_s = S.split(' ') input_s = [int(x) for x in inputS] for i in range(len(inputS)): degrees.append((inputS[i], i)) return degrees def take_file_input(FileName): file_i = open(FileName, 'r') input_s = fileI.readline() degrees = take_inst_input(inputS) fileI.close() return (inputS, degrees)
""" Given a N cross M matrix in which each row is sorted, find the overall median of the matrix. Assume N*M is odd. For example, Matrix= [1, 3, 5] [2, 6, 9] [3, 6, 9] A = [1, 2, 3, 3, 5, 6, 6, 9, 9] Median is 5. So, we return 5. """ def median_matrix(A): if len(A) == 1: vec = A[0] return vec[len(vec)//2] else: new_list = [] for row in range(len(A)): new_list.extend(A[row]) new_list = sorted(new_list) return new_list[len(new_list)//2] # Example 1: l1 = [1, 3, 5] l2 = [2, 6, 9] l3 = [3, 6, 9] A = [l1, l2, l3] # Example 2: A1 = [l1] print(median_matrix(A)) print(median_matrix(A1))
""" Given a N cross M matrix in which each row is sorted, find the overall median of the matrix. Assume N*M is odd. For example, Matrix= [1, 3, 5] [2, 6, 9] [3, 6, 9] A = [1, 2, 3, 3, 5, 6, 6, 9, 9] Median is 5. So, we return 5. """ def median_matrix(A): if len(A) == 1: vec = A[0] return vec[len(vec) // 2] else: new_list = [] for row in range(len(A)): new_list.extend(A[row]) new_list = sorted(new_list) return new_list[len(new_list) // 2] l1 = [1, 3, 5] l2 = [2, 6, 9] l3 = [3, 6, 9] a = [l1, l2, l3] a1 = [l1] print(median_matrix(A)) print(median_matrix(A1))
"""arbmod.py just a sample module for use with tests.""" def arbmod_attribute(): """Do nothing.""" pass
"""arbmod.py just a sample module for use with tests.""" def arbmod_attribute(): """Do nothing.""" pass
""" The Borg Pattern Notes: Originally proposed by Alex Martelli, the Borg Pattern improves upon the classical Singleton pattern by questioning the point of a Singleton. While a Singleton design pattern mandates that all objects representing a Singleton must share the same identity (point to the same instance of a class), the Borg pattern allows all representations to have unique identities (instances) while ensuring that they all share the same state (all attributes of the instances point to the same dictionary). Many Python developers consider the Singleton to be an anti-pattern (If all representations are to point to the same instance, why not just use a class-less module with functions and variables?). The Borg pattern solves this problem by allowing for a shared state while simultaenously allowing for meaningful inheritance and preservation of object identities. """ class Borg: """Any children of this Borg class will share its state but NOT its identity.""" _shared_state = {} def __init__(self): """All attributes of an instance of a Python class are added by default to the `self.__dict__` dictionary. The Borg pattern exploits this by binding the `__dict__` attribute for all child instances to the `_shared_state` dictionary.""" self.__dict__ = self._shared_state class ChildBorg(Borg): def __init__(self, **kwargs): """In this example, by calling the Borg's constructor, `self.__dict__` is binded before its attributes are assigned. This will ensure the instance has access to all of the `_shared_state` attributes, and that its attribute assigments will update the shared state.""" # Construct the Borg before setting attributes to bind the shared state. Borg.__init__(self) # How attributes are assigned henceforth depends entirely on your needs. # This example allows the constructor to accept and assign multiple unknown attributes. for key, value in kwargs.iteritems(): # For a key:value pair of a:1, the next line would equate to `self.a = 1` setattr(self, key, value) if __name__ == '__main__': # Let's imagine our Borg represents a type of video game character. cb1 = ChildBorg(health=100, attack=15) # Let's suppose that some in-game event causes all Borgs to become 10% healthier # and gain an armour worth 20 points. # Creating a new ChildBorg after the aformenetioned ingame event. cb2 = ChildBorg(health=110, attack=15, armour=20) # Tests print("Do cb1 and cb2 have separate identities?") print(cb1 is not cb2) # True print("Do cb1 and cb2 share the same state?") print("Health: {}".format(cb1.health == cb2.health == 110)) # True print("Attack: {}".format(cb1.attack == cb2.attack == 15)) # True print("Armour: {}".format(cb1.armour == cb2.armour == 20)) # True (note how cb1 also has armour)
""" The Borg Pattern Notes: Originally proposed by Alex Martelli, the Borg Pattern improves upon the classical Singleton pattern by questioning the point of a Singleton. While a Singleton design pattern mandates that all objects representing a Singleton must share the same identity (point to the same instance of a class), the Borg pattern allows all representations to have unique identities (instances) while ensuring that they all share the same state (all attributes of the instances point to the same dictionary). Many Python developers consider the Singleton to be an anti-pattern (If all representations are to point to the same instance, why not just use a class-less module with functions and variables?). The Borg pattern solves this problem by allowing for a shared state while simultaenously allowing for meaningful inheritance and preservation of object identities. """ class Borg: """Any children of this Borg class will share its state but NOT its identity.""" _shared_state = {} def __init__(self): """All attributes of an instance of a Python class are added by default to the `self.__dict__` dictionary. The Borg pattern exploits this by binding the `__dict__` attribute for all child instances to the `_shared_state` dictionary.""" self.__dict__ = self._shared_state class Childborg(Borg): def __init__(self, **kwargs): """In this example, by calling the Borg's constructor, `self.__dict__` is binded before its attributes are assigned. This will ensure the instance has access to all of the `_shared_state` attributes, and that its attribute assigments will update the shared state.""" Borg.__init__(self) for (key, value) in kwargs.iteritems(): setattr(self, key, value) if __name__ == '__main__': cb1 = child_borg(health=100, attack=15) cb2 = child_borg(health=110, attack=15, armour=20) print('Do cb1 and cb2 have separate identities?') print(cb1 is not cb2) print('Do cb1 and cb2 share the same state?') print('Health: {}'.format(cb1.health == cb2.health == 110)) print('Attack: {}'.format(cb1.attack == cb2.attack == 15)) print('Armour: {}'.format(cb1.armour == cb2.armour == 20))
class Solution: def intToRoman(self, num: int) -> str: ''' T: O(1) and S: O(1) ''' int2rom = {1000:'M', 900:'CM', 500:'D', 400:'CD', 100:'C', 90:'XC', 50:'L', 40:'XL', 10:'X', 9:'IX', 5:'V', 4:'IV', 1:'I'} result = '' for divisor in int2rom: carry, num = divmod(num, divisor) result += carry * int2rom[divisor] return result
class Solution: def int_to_roman(self, num: int) -> str: """ T: O(1) and S: O(1) """ int2rom = {1000: 'M', 900: 'CM', 500: 'D', 400: 'CD', 100: 'C', 90: 'XC', 50: 'L', 40: 'XL', 10: 'X', 9: 'IX', 5: 'V', 4: 'IV', 1: 'I'} result = '' for divisor in int2rom: (carry, num) = divmod(num, divisor) result += carry * int2rom[divisor] return result
""" One way to serialize a binary tree is to use pre-order traversal. When we encounter a non-null node, we record the node's value. If it is a null node, we record using a sentinel value such as #. _9_ / \ 3 2 / \ / \ 4 1 # 6 / \ / \ / \ # # # # # # For example, the above binary tree can be serialized to the string "9,3,4,#,#,1,#,#,2,#,6,#,#" where # represents a null node. Given a string of comma separated values, verify whether it is a correct preorder traversal serialization of a binary tree. Find an algorithm without reconstructing the tree. Each comma separated value in the string must be either an integer or a character '#' representing null pointer. You may assume that the input format is always valid, for example it could never contain two consecutive commas such as "1,,3". Example 1: Input: "9,3,4,#,#,1,#,#,2,#,6,#,#" Output: true Example 2: Input: "1,#" Output: false Example 3: Input: "9,#,#,1" Output: false SOLUTION: Binary tree could be considered as a number of slots to fulfill. At the start there is just one slot available for a number or null node. Both number and null node take one slot to be placed. For the null node the story ends up here, whereas the number will add into the tree two slots for the child nodes. Each child node could be, again, a number or a null. The idea is straightforward: take the nodes one by one from preorder traversal, and compute the number of available slots. If at the end all available slots are used up, the preorder traversal represents the valid serialization. In the beginning there is one available slot. Each number or null consumes one slot. Null node adds no slots, whereas each number adds two slots for the child nodes. """ def is_valid_preorder(preorder): preorder = preorder.split(",") # CAREFUL: Its 1 initially! slots = 1 for i in range(len(preorder)): val = preorder[i] slots -= 1 # CAREFUL: This is important! if slots < 0: return False if val != "#": slots += 2 return slots == 0 def main(): preorder = "9,3,4,#,#,1,#,#,2,#,6,#,#" print(is_valid_preorder(preorder)) preorder = "1,#" print(is_valid_preorder(preorder)) preorder = "9,#,#,1" print(is_valid_preorder(preorder)) main()
""" One way to serialize a binary tree is to use pre-order traversal. When we encounter a non-null node, we record the node's value. If it is a null node, we record using a sentinel value such as #. _9_ / 3 2 / \\ / 4 1 # 6 / \\ / \\ / # # # # # # For example, the above binary tree can be serialized to the string "9,3,4,#,#,1,#,#,2,#,6,#,#" where # represents a null node. Given a string of comma separated values, verify whether it is a correct preorder traversal serialization of a binary tree. Find an algorithm without reconstructing the tree. Each comma separated value in the string must be either an integer or a character '#' representing null pointer. You may assume that the input format is always valid, for example it could never contain two consecutive commas such as "1,,3". Example 1: Input: "9,3,4,#,#,1,#,#,2,#,6,#,#" Output: true Example 2: Input: "1,#" Output: false Example 3: Input: "9,#,#,1" Output: false SOLUTION: Binary tree could be considered as a number of slots to fulfill. At the start there is just one slot available for a number or null node. Both number and null node take one slot to be placed. For the null node the story ends up here, whereas the number will add into the tree two slots for the child nodes. Each child node could be, again, a number or a null. The idea is straightforward: take the nodes one by one from preorder traversal, and compute the number of available slots. If at the end all available slots are used up, the preorder traversal represents the valid serialization. In the beginning there is one available slot. Each number or null consumes one slot. Null node adds no slots, whereas each number adds two slots for the child nodes. """ def is_valid_preorder(preorder): preorder = preorder.split(',') slots = 1 for i in range(len(preorder)): val = preorder[i] slots -= 1 if slots < 0: return False if val != '#': slots += 2 return slots == 0 def main(): preorder = '9,3,4,#,#,1,#,#,2,#,6,#,#' print(is_valid_preorder(preorder)) preorder = '1,#' print(is_valid_preorder(preorder)) preorder = '9,#,#,1' print(is_valid_preorder(preorder)) main()