content
stringlengths
7
1.05M
fixed_cases
stringlengths
1
1.28M
class ListNode(object): def __init__(self, x): self.val = x self.next = None def __repr__(self): node = self output = "" while node != None: output += str(node.val) output += " " node = node.next return output
class Listnode(object): def __init__(self, x): self.val = x self.next = None def __repr__(self): node = self output = '' while node != None: output += str(node.val) output += ' ' node = node.next return output
#Unicode characters and strings #1960s/1970s ---> we assumed one byte is one character and went it with # a byte and character were assumed to be the same thing #ASCII goes up to 127 print(ord('H')) print(ord('e')) print(ord('\n')) print(ord('G')) #UTF-16 - fixed length, two byes #UTF-32 - fixed length, four byes #UTF-8 - 1-4 bytes # upwards compat with ASCII # auto detection between ASCII & UTF-8 # UTF-8 rec best pracetice for encoding/data exchange between systems # in python3, all strings are unicode # data in from external resource # must be decoded based on its character set so it's properly represented in py3 as a string # when talking to external network resource that sends bytes, # you need to encode the py3 strings into a given char encoding
print(ord('H')) print(ord('e')) print(ord('\n')) print(ord('G'))
description = 'MIRA2 monochromator' group = 'lowlevel' includes = ['base', 'mslit2', 'sample', 'alias_mono'] tango_base = 'tango://miractrl.mira.frm2:10000/mira/' devices = dict( co_m2tt = device('nicos.devices.entangle.Sensor', visibility = (), tangodevice = tango_base + 'mono2/m2tt_enc', unit = 'deg', ), mo_m2tt = device('nicos.devices.entangle.Motor', visibility = (), tangodevice = tango_base + 'mono2/m2tt_mot', unit = 'deg', precision = 1, # due to backlash ), m2tt = device('nicos_mlz.mira.devices.axis.HoveringAxis', description = 'monochromator two-theta angle', precision = 0.04, backlash = 1, motor = 'mo_m2tt', coder = 'co_m2tt', startdelay = 1, stopdelay = 4, speed = 0.25, switch = 'air_mono', switchvalues = (0, 1), fmtstr = '%.3f', ), co_m2th = device('nicos.devices.entangle.Sensor', visibility = (), tangodevice = tango_base + 'mono2/m2th_enc', unit = 'deg', ), mo_m2th = device('nicos.devices.entangle.Motor', visibility = (), tangodevice = tango_base + 'mono2/m2th_mot', unit = 'deg', precision = 0.002, ), m2th = device('nicos.devices.generic.Axis', description = 'monochromator theta angle', motor = 'mo_m2th', coder = 'co_m2th', fmtstr = '%.3f', precision = 0.002, ), mono = device('nicos.devices.tas.Monochromator', description = 'monochromator unit to move incoming wavevector', unit = 'A-1', theta = 'm2th', twotheta = 'm2tt', focush = None, focusv = 'm2fv', abslimits = (0.1, 10), # calibration 1/2013, valid from 1.2 to 1.4 ki vfocuspars = [220.528, -40.485, 2.789], scatteringsense = -1, crystalside = -1, dvalue = 3.355, ), co_m2tx = device('nicos.devices.entangle.Sensor', visibility = (), tangodevice = tango_base + 'mono2/m2tx_enc', unit = 'mm', ), mo_m2tx = device('nicos.devices.entangle.Motor', visibility = (), tangodevice = tango_base + 'mono2/m2tx_mot', unit = 'mm', precision = 0.1, ), m2tx = device('nicos.devices.generic.Axis', description = 'monochromator translation parallel to the blades', motor = 'mo_m2tx', coder = 'co_m2tx', fmtstr = '%.2f', precision = 0.1, ), co_m2ty = device('nicos.devices.entangle.Sensor', visibility = (), tangodevice = tango_base + 'mono2/m2ty_enc', unit = 'mm', ), mo_m2ty = device('nicos.devices.entangle.Motor', visibility = (), tangodevice = tango_base + 'mono2/m2ty_mot', unit = 'mm', precision = 0.1, ), m2ty = device('nicos.devices.generic.Axis', description = 'monochromator translation perpendicular to the blades', motor = 'mo_m2ty', coder = 'co_m2ty', fmtstr = '%.2f', precision = 0.1, ), co_m2gx = device('nicos.devices.entangle.Sensor', visibility = (), tangodevice = tango_base + 'mono2/m2gx_enc', unit = 'deg', ), mo_m2gx = device('nicos.devices.entangle.Motor', visibility = (), tangodevice = tango_base + 'mono2/m2gx_mot', unit = 'deg', precision = 0.05, ), m2gx = device('nicos.devices.generic.Axis', description = 'monochromator tilt', motor = 'mo_m2gx', coder = 'co_m2gx', fmtstr = '%.2f', precision = 0.05, ), m2fv = device('nicos.devices.entangle.Motor', description = 'monochromator vertical focus', tangodevice = tango_base + 'mono2/m2fv_mot', unit = 'deg', precision = 0.5, fmtstr = '%.1f', ), PBe = device('nicos_mlz.mira.devices.center.CrappySensor', description = 'Be filter pressure', tangodevice = tango_base + 'leybold/sensor2', warnlimits = (1e-8, 0.00051), fmtstr = '%.2g', ), Pccr = device('nicos_mlz.mira.devices.center.CrappySensor', description = 'CCR isolation vacuum pressure', tangodevice = tango_base + 'leybold/sensor1', warnlimits = (1e-9, 1e-5), fmtstr = '%.2g', ), TBe = device('nicos.devices.entangle.Sensor', description = 'LakeShore sensor: Be filter temperature', tangodevice = tango_base + 'ls/t_be', warnlimits = (0, 65), pollinterval = 3, maxage = 5, fmtstr = '%.1f', ), ) startupcode = ''' mth.alias = m2th mtt.alias = m2tt mtx.alias = m2tx mty.alias = m2ty mgx.alias = m2gx mfv.alias = m2fv '''
description = 'MIRA2 monochromator' group = 'lowlevel' includes = ['base', 'mslit2', 'sample', 'alias_mono'] tango_base = 'tango://miractrl.mira.frm2:10000/mira/' devices = dict(co_m2tt=device('nicos.devices.entangle.Sensor', visibility=(), tangodevice=tango_base + 'mono2/m2tt_enc', unit='deg'), mo_m2tt=device('nicos.devices.entangle.Motor', visibility=(), tangodevice=tango_base + 'mono2/m2tt_mot', unit='deg', precision=1), m2tt=device('nicos_mlz.mira.devices.axis.HoveringAxis', description='monochromator two-theta angle', precision=0.04, backlash=1, motor='mo_m2tt', coder='co_m2tt', startdelay=1, stopdelay=4, speed=0.25, switch='air_mono', switchvalues=(0, 1), fmtstr='%.3f'), co_m2th=device('nicos.devices.entangle.Sensor', visibility=(), tangodevice=tango_base + 'mono2/m2th_enc', unit='deg'), mo_m2th=device('nicos.devices.entangle.Motor', visibility=(), tangodevice=tango_base + 'mono2/m2th_mot', unit='deg', precision=0.002), m2th=device('nicos.devices.generic.Axis', description='monochromator theta angle', motor='mo_m2th', coder='co_m2th', fmtstr='%.3f', precision=0.002), mono=device('nicos.devices.tas.Monochromator', description='monochromator unit to move incoming wavevector', unit='A-1', theta='m2th', twotheta='m2tt', focush=None, focusv='m2fv', abslimits=(0.1, 10), vfocuspars=[220.528, -40.485, 2.789], scatteringsense=-1, crystalside=-1, dvalue=3.355), co_m2tx=device('nicos.devices.entangle.Sensor', visibility=(), tangodevice=tango_base + 'mono2/m2tx_enc', unit='mm'), mo_m2tx=device('nicos.devices.entangle.Motor', visibility=(), tangodevice=tango_base + 'mono2/m2tx_mot', unit='mm', precision=0.1), m2tx=device('nicos.devices.generic.Axis', description='monochromator translation parallel to the blades', motor='mo_m2tx', coder='co_m2tx', fmtstr='%.2f', precision=0.1), co_m2ty=device('nicos.devices.entangle.Sensor', visibility=(), tangodevice=tango_base + 'mono2/m2ty_enc', unit='mm'), mo_m2ty=device('nicos.devices.entangle.Motor', visibility=(), tangodevice=tango_base + 'mono2/m2ty_mot', unit='mm', precision=0.1), m2ty=device('nicos.devices.generic.Axis', description='monochromator translation perpendicular to the blades', motor='mo_m2ty', coder='co_m2ty', fmtstr='%.2f', precision=0.1), co_m2gx=device('nicos.devices.entangle.Sensor', visibility=(), tangodevice=tango_base + 'mono2/m2gx_enc', unit='deg'), mo_m2gx=device('nicos.devices.entangle.Motor', visibility=(), tangodevice=tango_base + 'mono2/m2gx_mot', unit='deg', precision=0.05), m2gx=device('nicos.devices.generic.Axis', description='monochromator tilt', motor='mo_m2gx', coder='co_m2gx', fmtstr='%.2f', precision=0.05), m2fv=device('nicos.devices.entangle.Motor', description='monochromator vertical focus', tangodevice=tango_base + 'mono2/m2fv_mot', unit='deg', precision=0.5, fmtstr='%.1f'), PBe=device('nicos_mlz.mira.devices.center.CrappySensor', description='Be filter pressure', tangodevice=tango_base + 'leybold/sensor2', warnlimits=(1e-08, 0.00051), fmtstr='%.2g'), Pccr=device('nicos_mlz.mira.devices.center.CrappySensor', description='CCR isolation vacuum pressure', tangodevice=tango_base + 'leybold/sensor1', warnlimits=(1e-09, 1e-05), fmtstr='%.2g'), TBe=device('nicos.devices.entangle.Sensor', description='LakeShore sensor: Be filter temperature', tangodevice=tango_base + 'ls/t_be', warnlimits=(0, 65), pollinterval=3, maxage=5, fmtstr='%.1f')) startupcode = '\nmth.alias = m2th\nmtt.alias = m2tt\nmtx.alias = m2tx\nmty.alias = m2ty\nmgx.alias = m2gx\nmfv.alias = m2fv\n'
# Divided OF two number while True: a = int(input("Enter The Dividend Number : ")) b = int(input("Enter The Divisor Number : ")) if a > b: quotient = int(a / b) print("Quotirnt Number Of :", quotient) else: Quotient = int(b / a) print("Quotirnt Number Of : 0.", Quotient)
while True: a = int(input('Enter The Dividend Number : ')) b = int(input('Enter The Divisor Number : ')) if a > b: quotient = int(a / b) print('Quotirnt Number Of :', quotient) else: quotient = int(b / a) print('Quotirnt Number Of : 0.', Quotient)
IMPAR = [] PAR = [] for i in range(15): X = int(input()) if X % 2 == 0: PAR.append(X) elif X % 2 != 0: IMPAR.append(X) if len(PAR) == 5: Y = 0 for j in PAR: print('par[{}] = {}'.format(Y,j)) Y += 1 PAR = [] if len(IMPAR) == 5: Y = 0 for j in IMPAR: print('impar[{}] = {}'.format(Y,j)) Y += 1 IMPAR = [] if len(IMPAR) > 0: Y = 0 for j in IMPAR: print('impar[{}] = {}'.format(Y,j)) Y += 1 if len(PAR) > 0: Y = 0 for j in PAR: print('par[{}] = {}'.format(Y,j)) Y += 1
impar = [] par = [] for i in range(15): x = int(input()) if X % 2 == 0: PAR.append(X) elif X % 2 != 0: IMPAR.append(X) if len(PAR) == 5: y = 0 for j in PAR: print('par[{}] = {}'.format(Y, j)) y += 1 par = [] if len(IMPAR) == 5: y = 0 for j in IMPAR: print('impar[{}] = {}'.format(Y, j)) y += 1 impar = [] if len(IMPAR) > 0: y = 0 for j in IMPAR: print('impar[{}] = {}'.format(Y, j)) y += 1 if len(PAR) > 0: y = 0 for j in PAR: print('par[{}] = {}'.format(Y, j)) y += 1
class UserRepositoryDependencyMarker: # pragma: no cover pass class ProductRepositoryDependencyMarker: # pragma: no cover pass
class Userrepositorydependencymarker: pass class Productrepositorydependencymarker: pass
#!/usr/bin/env python3 # -*- coding: utf-8 -*- class Option: def __init__(self, name, number, y): self.name=name self.number=number self.y=y
class Option: def __init__(self, name, number, y): self.name = name self.number = number self.y = y
''' N = int(input()) notas100 = N//100 notas50 = (N-(notas100*100))//50 notas20 = (N-(notas100*100+notas50*50))//20 notas10 = (N-(notas100*100+notas50*50+notas20*20))//10 notas5 = (N-(notas100*100+notas50*50+notas20*20+notas10*10))//5 notas2 = (N-(notas100*100+notas50*50+notas20*20+notas10*10+notas5*5))//2 notas1 = (N-(notas100*100+notas50*50+notas20*20+notas10*10+notas5*5+notas2*2)) print(notas100, ' nota(s) de R$ 100,00') print(notas50, ' nota(s) de R$ 50,00') print(notas20, ' nota(s) de R$ 20,00') print(notas10, ' nota(s) de R$ 10,00') print(notas5, ' nota(s) de R$ 5,00') print(notas2, ' nota(s) de R$ 2,00') print(notas1, ' nota(s) de R$ 1,00') ''' N = int(input()) n100 = N//100 N = N - n100*100 n50 = N//50 N = N - n50*50 n20 = N//20 N = N - n20*20 n10 = N//10 N = N - n10*10 n5 = N//5 N = N - n5*5 n2 = N//2 N = N - n2*2 n1 = N print(n100, ' nota(s) de R$ 100,00') print(n50, ' nota(s) de R$ 50,00') print(n20, ' nota(s) de R$ 20,00') print(n10, ' nota(s) de R$ 10,00') print(n5, ' nota(s) de R$ 5,00') print(n2, ' nota(s) de R$ 2,00') print(n1, ' nota(s) de R$ 1,00')
""" N = int(input()) notas100 = N//100 notas50 = (N-(notas100*100))//50 notas20 = (N-(notas100*100+notas50*50))//20 notas10 = (N-(notas100*100+notas50*50+notas20*20))//10 notas5 = (N-(notas100*100+notas50*50+notas20*20+notas10*10))//5 notas2 = (N-(notas100*100+notas50*50+notas20*20+notas10*10+notas5*5))//2 notas1 = (N-(notas100*100+notas50*50+notas20*20+notas10*10+notas5*5+notas2*2)) print(notas100, ' nota(s) de R$ 100,00') print(notas50, ' nota(s) de R$ 50,00') print(notas20, ' nota(s) de R$ 20,00') print(notas10, ' nota(s) de R$ 10,00') print(notas5, ' nota(s) de R$ 5,00') print(notas2, ' nota(s) de R$ 2,00') print(notas1, ' nota(s) de R$ 1,00') """ n = int(input()) n100 = N // 100 n = N - n100 * 100 n50 = N // 50 n = N - n50 * 50 n20 = N // 20 n = N - n20 * 20 n10 = N // 10 n = N - n10 * 10 n5 = N // 5 n = N - n5 * 5 n2 = N // 2 n = N - n2 * 2 n1 = N print(n100, ' nota(s) de R$ 100,00') print(n50, ' nota(s) de R$ 50,00') print(n20, ' nota(s) de R$ 20,00') print(n10, ' nota(s) de R$ 10,00') print(n5, ' nota(s) de R$ 5,00') print(n2, ' nota(s) de R$ 2,00') print(n1, ' nota(s) de R$ 1,00')
# https://binarysearch.com/problems/Longest-Anagram-Subsequence class Solution: def solve(self, a, b): letters = set(list(a)).intersection(set(list(b))) length = 0 for i in letters: length += min(a.count(i),b.count(i)) return length
class Solution: def solve(self, a, b): letters = set(list(a)).intersection(set(list(b))) length = 0 for i in letters: length += min(a.count(i), b.count(i)) return length
t = int(input()) while t > 0: t -= 1 n,m,s = map(int, input().strip().split(' ')) k = (s+m-1)%n if(k==0): print (n) else: print (k)
t = int(input()) while t > 0: t -= 1 (n, m, s) = map(int, input().strip().split(' ')) k = (s + m - 1) % n if k == 0: print(n) else: print(k)
''' Description : Input In Function By .format Method Function Date : 14 Feb 2021 Function Author : Prasad Dangare Input : Int Output : Int ''' # defination of function, use of .format method def Addition(no1, no2): ans = no1 + no2 return ans def main(): print("enter first number") value1 = int(input()) print("enter second number") value2 = int(input()) ret = Addition(value1, value2) print("Addition of {} and {} is {} ".format(value1, value2, ret)) if __name__ == "__main__": main()
""" Description : Input In Function By .format Method Function Date : 14 Feb 2021 Function Author : Prasad Dangare Input : Int Output : Int """ def addition(no1, no2): ans = no1 + no2 return ans def main(): print('enter first number') value1 = int(input()) print('enter second number') value2 = int(input()) ret = addition(value1, value2) print('Addition of {} and {} is {} '.format(value1, value2, ret)) if __name__ == '__main__': main()
#cameraCoords syntax: [x1 (oben links),y1,x2 (unten rechts),y2,zoomLevel] def moveCamera(cameraCoords, move,worldSize): if cameraCoords[0]+move[0] <= 1 and move[0] < 0: cameraCoords[0] -= cameraCoords[0]%1 cameraCoords[2] -= cameraCoords[2]%1 while cameraCoords[0] > 1: cameraCoords[0] -= 1 #Wenn Kamera x-Koordinaten unter 0 gesetzt werden, werden die Koordinaten proportional angeglichen cameraCoords[2] -= 1 elif cameraCoords[2]+move[0]+1 >= worldSize[0]: return cameraCoords else: cameraCoords[0] += move[0] cameraCoords[2] += move[0]#Bewegen (x) if cameraCoords[1]+move[1] <= 1 and move[1] < 0: cameraCoords[1] -= cameraCoords[1]%1 cameraCoords[3] -= cameraCoords[3]%1 while cameraCoords[1] > 1: cameraCoords[1] -= 1#Wenn Kamera y-Koordinaten unter 0 gesetzt werden, werden die Koordinaten proportional angeglichen cameraCoords[3] -= 1 elif cameraCoords[3]+move[1]+1 >= worldSize[1]: return cameraCoords else: cameraCoords[1] += move[1] cameraCoords[3] += move[1]#Bewegen (y) return cameraCoords
def move_camera(cameraCoords, move, worldSize): if cameraCoords[0] + move[0] <= 1 and move[0] < 0: cameraCoords[0] -= cameraCoords[0] % 1 cameraCoords[2] -= cameraCoords[2] % 1 while cameraCoords[0] > 1: cameraCoords[0] -= 1 cameraCoords[2] -= 1 elif cameraCoords[2] + move[0] + 1 >= worldSize[0]: return cameraCoords else: cameraCoords[0] += move[0] cameraCoords[2] += move[0] if cameraCoords[1] + move[1] <= 1 and move[1] < 0: cameraCoords[1] -= cameraCoords[1] % 1 cameraCoords[3] -= cameraCoords[3] % 1 while cameraCoords[1] > 1: cameraCoords[1] -= 1 cameraCoords[3] -= 1 elif cameraCoords[3] + move[1] + 1 >= worldSize[1]: return cameraCoords else: cameraCoords[1] += move[1] cameraCoords[3] += move[1] return cameraCoords
a = input ("Digite algo") print(a.isalpha()) print(a.isalnum()) print(a.isascii()) print(a.isdecimal()) print(a.isdigit()) print(a.isidentifier()) print(a.islower())
a = input('Digite algo') print(a.isalpha()) print(a.isalnum()) print(a.isascii()) print(a.isdecimal()) print(a.isdigit()) print(a.isidentifier()) print(a.islower())
class Node: def __init__(self, val=0): self.value = val self.next = None class LinkList: c = 10 def __init__(self, *args): self.val = (*args,) self.head = self.__constructLinklist() #self.printLinklist(self.head) # self.pre = self.revserlinklist() # self.printLinklist(self.pre) def printLinklist(self, head): while head is not None: print(head.val) head = head.next def __constructLinklist(self): dummyNode = Node() head = Node(self.val[0]) dummyNode.next = head for i in range(1, len(self.val)): next = Node(self.val[i]) head.next = next head = next return dummyNode.next def revserlinklist(self): pre = None while self.head is not None: next = self.head.next self.head.next = pre pre = self.head self.head = next return pre def revserFromM2N(self, m, n): #if m<0 or n<0 or n>self.linklength():return None head2=self.head head3=self.head head2.next.next.next=None self.printLinklist(self.head) def linklength(self): length = 0 while self.head is not None: self.head = self.head.next length += 1 return length a = LinkList(1, 2, 3, 4, 5) a.revserFromM2N(2,3)
class Node: def __init__(self, val=0): self.value = val self.next = None class Linklist: c = 10 def __init__(self, *args): self.val = (*args,) self.head = self.__constructLinklist() def print_linklist(self, head): while head is not None: print(head.val) head = head.next def __construct_linklist(self): dummy_node = node() head = node(self.val[0]) dummyNode.next = head for i in range(1, len(self.val)): next = node(self.val[i]) head.next = next head = next return dummyNode.next def revserlinklist(self): pre = None while self.head is not None: next = self.head.next self.head.next = pre pre = self.head self.head = next return pre def revser_from_m2_n(self, m, n): head2 = self.head head3 = self.head head2.next.next.next = None self.printLinklist(self.head) def linklength(self): length = 0 while self.head is not None: self.head = self.head.next length += 1 return length a = link_list(1, 2, 3, 4, 5) a.revserFromM2N(2, 3)
''' __program__: Taking user input from the user __author__: Abhinav Anil __submittedTo__: dataSciTech __email__: dataascii@gmail.com __instagram__: @data.sci_ ''' #Taking the user name, PAN card number to validate the information for the user details. while(1): name = input("\n Enter your name : ") if name.isalpha() == False: print("Invalid Name, Sorry you cannot proceed.") break else: pan_card_no = input("\n Enter your PAN card number : ") if pan_card_no.isalnum == False: print("Invalid PAN card number, Sorry you cannot proceed.") break print("Please check "+name, "your PAN card number is: "+pan_card_no) break
""" __program__: Taking user input from the user __author__: Abhinav Anil __submittedTo__: dataSciTech __email__: dataascii@gmail.com __instagram__: @data.sci_ """ while 1: name = input('\n Enter your name : ') if name.isalpha() == False: print('Invalid Name, Sorry you cannot proceed.') break else: pan_card_no = input('\n Enter your PAN card number : ') if pan_card_no.isalnum == False: print('Invalid PAN card number, Sorry you cannot proceed.') break print('Please check ' + name, 'your PAN card number is: ' + pan_card_no) break
peoples = { 'first_name': 'le', 'last_name': 'xiaoyuan', 'age': 21, 'city': 'dawu' } print(peoples['first_name']) print(peoples['last_name']) print(peoples['age']) print(peoples['city']) for people in peoples.values(): print(people) lucky_number = { 'lexiaoyuan': 6, 'benjamin': 66, 'lexiaoyuanbeta': 666, 'yege': 6666, 'ruanwei': 66666 } print('lexiaoyuan'.title() + "'s lucky number is " + str(lucky_number['lexiaoyuan'])) print('benjamin'.title() + "'s lucky number is " + str(lucky_number['benjamin'])) print('lexiaoyuanbeta'.title() + "'s lucky number is " + str(lucky_number['lexiaoyuanbeta'])) print('yege'.title() + "'s lucky number is " + str(lucky_number['yege'])) print('ruanwei'.title() + "'s lucky number is " + str(lucky_number['ruanwei'])) for name, number in lucky_number.items(): print(name.title() + "'s lucky number is " + str(number)) dictionary = { 'if': 'if', 'for': 'for', 'list': 'list', 'title': 'title', 'upper': 'upper' } print("if: " + dictionary['if']) print("for: " + dictionary['for']) print("list: " + dictionary['list']) print("title: " + dictionary['title']) print("upper: " + dictionary['upper']) for dic in dictionary.keys(): print(dic) people_1 = { 'first_name': 'le', 'last_name': 'xiaoyuan', 'age': 21, 'city': 'dawu' } people_2 = { 'first_name': 'le', 'last_name': 'xiaoyuanbeta', 'age': 21, 'city': 'dawu' } people_3 = { 'first_name': 'ben', 'last_name': 'jamin', 'age': 21, 'city': 'dawu' } people = [people_1, people_2, people_3] for p in people: print(p) lucky_numbers = { 'lexiaoyuan': [6, 66], 'benjamin': [66, 666], 'lexiaoyuanbeta': [666, 6666], 'yege': [6666, 66666], 'ruanwei': [66666, 666666], } for name, numbers in lucky_numbers.items(): print(name.title() + "'s favorite number are:") for number in numbers: print("\t" + str(number))
peoples = {'first_name': 'le', 'last_name': 'xiaoyuan', 'age': 21, 'city': 'dawu'} print(peoples['first_name']) print(peoples['last_name']) print(peoples['age']) print(peoples['city']) for people in peoples.values(): print(people) lucky_number = {'lexiaoyuan': 6, 'benjamin': 66, 'lexiaoyuanbeta': 666, 'yege': 6666, 'ruanwei': 66666} print('lexiaoyuan'.title() + "'s lucky number is " + str(lucky_number['lexiaoyuan'])) print('benjamin'.title() + "'s lucky number is " + str(lucky_number['benjamin'])) print('lexiaoyuanbeta'.title() + "'s lucky number is " + str(lucky_number['lexiaoyuanbeta'])) print('yege'.title() + "'s lucky number is " + str(lucky_number['yege'])) print('ruanwei'.title() + "'s lucky number is " + str(lucky_number['ruanwei'])) for (name, number) in lucky_number.items(): print(name.title() + "'s lucky number is " + str(number)) dictionary = {'if': 'if', 'for': 'for', 'list': 'list', 'title': 'title', 'upper': 'upper'} print('if: ' + dictionary['if']) print('for: ' + dictionary['for']) print('list: ' + dictionary['list']) print('title: ' + dictionary['title']) print('upper: ' + dictionary['upper']) for dic in dictionary.keys(): print(dic) people_1 = {'first_name': 'le', 'last_name': 'xiaoyuan', 'age': 21, 'city': 'dawu'} people_2 = {'first_name': 'le', 'last_name': 'xiaoyuanbeta', 'age': 21, 'city': 'dawu'} people_3 = {'first_name': 'ben', 'last_name': 'jamin', 'age': 21, 'city': 'dawu'} people = [people_1, people_2, people_3] for p in people: print(p) lucky_numbers = {'lexiaoyuan': [6, 66], 'benjamin': [66, 666], 'lexiaoyuanbeta': [666, 6666], 'yege': [6666, 66666], 'ruanwei': [66666, 666666]} for (name, numbers) in lucky_numbers.items(): print(name.title() + "'s favorite number are:") for number in numbers: print('\t' + str(number))
# Problem! you teach children about how to calculate the area and perimeter of the square # and you will solve 20 questions about the way to find area and perimeter. to teach them. # but that will consume the time, so you want to write a program to reduce the time # when calculating all 20 quests. # Now try to solve it. # Hint: perimeter = (x * 4), area = (x ** 2) # The first method def calc(x): sideLength = x print(f"area = {sideLength ** 2}") print(f"perimeter = {sideLength * 4}") calc(int(input())) # The second method calcs = lambda x : (x**2, x*4) c1, c2 = calcs(int(input())) print(f'area = {c1}\nperimeter = {c2}') # The 3rd method def calc2(x): return (x**2, x*4) a, b = calcs(int(input())) print(str(a) + ' is area', str(b) + ' is perimeter')
def calc(x): side_length = x print(f'area = {sideLength ** 2}') print(f'perimeter = {sideLength * 4}') calc(int(input())) calcs = lambda x: (x ** 2, x * 4) (c1, c2) = calcs(int(input())) print(f'area = {c1}\nperimeter = {c2}') def calc2(x): return (x ** 2, x * 4) (a, b) = calcs(int(input())) print(str(a) + ' is area', str(b) + ' is perimeter')
# *** these filters do NOT see ping messages, nor do routers see them *** # *** global imports are NOT accessible, do imports in __init__ and bind them to an attribute *** class Filters(Base): def __init__(self, logger): # init parent class super().__init__(logger) # some imports needed later self.random = __import__("random") self.base64 = __import__("base64") self._thread = __import__("_thread") self.time = __import__("time") # some vars #self.master_killed = False self.started = 0 self.data_received = {} self.overlay_constructed = False self.mutation_logged = False def gui_command_incoming(self, command): global task pass def gui_command_completed(self, command, error): global task if command["_command"] == "start": if not error: pass #self.logger.info("*********** STARTED") else: pass #self.logger.info("*********** ERROR STARTING ROUTER: %s" % str(error)) def gui_event_outgoing(self, event): global task pass def router_command_incoming(self, command, router): global task if command["_command"] == "subscribe": self.started = self.time.time() if command["_command"] == "remove_connection" and task["name"] in ["test", "all_reconnects_on_packetloss"]: self.logger.error("*********** CODE_EVENT(remove_connection): reconnects += 1") def subscribed_datamsg_incoming(self, msg, router): global task pass def covert_msg_incoming(self, msg, con): global task if msg.get_type() == "Flooding_advertise" and not msg["reflood"] and task["name"] in ["flooding_suboptimal_paths"]: channel = msg["channel"] nonce = self.base64.b64decode(bytes(msg["nonce"], "ascii")) # decode nonce peer_id = con.get_peer_id() chain = (self.router._find_nonce(nonce, self.router.advertisement_routing_table[channel]) if channel in self.router.advertisement_routing_table else None) if chain: # new advertisements (chain == None) aren't relevant here sorting = self.router._compare_nonces(nonce, self.router.advertisement_routing_table[channel][chain].peekitem(0)[0]) if sorting != -1: return # received advertisement is longer than already known one publisher = self.router._canonize_active_path_identifier(channel, msg['nonce']) for subscriber in self.router._ActivePathsMixin__reverse_edges[channel]: if publisher in self.router._ActivePathsMixin__reverse_edges[channel][subscriber]: active_peer = self.router._ActivePathsMixin__reverse_edges[channel][subscriber][publisher]["peer"] if sorting == -1 and active_peer != peer_id: if self.router.node_id == subscriber: self.logger.error("*********** CODE_EVENT(shorter_nonce): shorter_subscribers += 1") else: self.logger.error("*********** CODE_EVENT(shorter_nonce): shorter_intermediates += 1") self.logger.info("*********** DEBUG_DATA: node_id=%s, subscriber=%s, msg=%s" % (self.router.node_id, subscriber, str(msg))) def covert_msg_outgoing(self, msg, con): global task # only check first advertisements if msg.get_type() == "Flooding_advertise" and not msg["reflood"] and task["name"] in ["flooding_master_count"]: channel = msg["channel"] nonce = self.base64.b64decode(bytes(msg["nonce"], "ascii")) # decode nonce peer_id = con.get_peer_id() chain = (self.router._find_nonce(nonce, self.router.advertisement_routing_table[channel]) if channel in self.router.advertisement_routing_table else None) shortest_nonce = self.router.advertisement_routing_table[channel][chain].peekitem(0)[0] if None in self.router.advertisement_routing_table[channel][chain][shortest_nonce] and not self.mutation_logged: self.logger.error("*********** CODE_EVENT(become_master): master_publishers += 1") self.logger.info("*********** DEBUG_DATA: node_id=%s" % self.router.node_id) self.mutation_logged = True def msg_incoming(self, msg, con): global task if task["name"] in [ "test", "flooding_overlay_construction", "aco_overlay_construction", "aco_overlay_construction_bandwidth", "flooding_overlay_construction_packetloss", "aco_overlay_construction_packetloss", "simple_overlay_construction", "simple_overlay_construction_packetloss", ]: if msg["channel"] in self.router.subscriptions and msg["id"] not in self.router.seen_data_ids: # only check subscriber perspective if msg["data"] not in self.data_received: self.data_received[msg["data"]] = 0 self.data_received[msg["data"]] += 1 self.logger.info("*********** DEBUG_DATA: data_received[%s] --> %s" % (str(msg["data"]), str(self.data_received[msg["data"]]))) if self.data_received[msg["data"]] == task["publishers"] and not self.overlay_constructed: self.logger.error("*********** CODE_EVENT(overlay_constructed): overlay_construction.append(%.3f)" % (self.time.time() - self.started)) self.logger.info("*********** DEBUG_DATA: node_id = %s" % self.router.node_id) #TODO: this should be used by the evaluator to stop evaluation earlier if possible self.logger.info("*********** MEASUREMENT_COMPLETED: %s" % self.router.node_id) self.overlay_constructed = True def msg_outgoing(self, msg, con): global task #if msg.get_type() == "Flooding_data": #if self.time.time() - self.started > 60 and "test" in self.router.master and self.router.master["test"] and not self.master_killed: #self.logger.info("*********** KILLING MASTER NODE: node_id=%s" % self.router.node_id) #self.master_killed = True #self._thread.interrupt_main() pass
class Filters(Base): def __init__(self, logger): super().__init__(logger) self.random = __import__('random') self.base64 = __import__('base64') self._thread = __import__('_thread') self.time = __import__('time') self.started = 0 self.data_received = {} self.overlay_constructed = False self.mutation_logged = False def gui_command_incoming(self, command): global task pass def gui_command_completed(self, command, error): global task if command['_command'] == 'start': if not error: pass else: pass def gui_event_outgoing(self, event): global task pass def router_command_incoming(self, command, router): global task if command['_command'] == 'subscribe': self.started = self.time.time() if command['_command'] == 'remove_connection' and task['name'] in ['test', 'all_reconnects_on_packetloss']: self.logger.error('*********** CODE_EVENT(remove_connection): reconnects += 1') def subscribed_datamsg_incoming(self, msg, router): global task pass def covert_msg_incoming(self, msg, con): global task if msg.get_type() == 'Flooding_advertise' and (not msg['reflood']) and (task['name'] in ['flooding_suboptimal_paths']): channel = msg['channel'] nonce = self.base64.b64decode(bytes(msg['nonce'], 'ascii')) peer_id = con.get_peer_id() chain = self.router._find_nonce(nonce, self.router.advertisement_routing_table[channel]) if channel in self.router.advertisement_routing_table else None if chain: sorting = self.router._compare_nonces(nonce, self.router.advertisement_routing_table[channel][chain].peekitem(0)[0]) if sorting != -1: return publisher = self.router._canonize_active_path_identifier(channel, msg['nonce']) for subscriber in self.router._ActivePathsMixin__reverse_edges[channel]: if publisher in self.router._ActivePathsMixin__reverse_edges[channel][subscriber]: active_peer = self.router._ActivePathsMixin__reverse_edges[channel][subscriber][publisher]['peer'] if sorting == -1 and active_peer != peer_id: if self.router.node_id == subscriber: self.logger.error('*********** CODE_EVENT(shorter_nonce): shorter_subscribers += 1') else: self.logger.error('*********** CODE_EVENT(shorter_nonce): shorter_intermediates += 1') self.logger.info('*********** DEBUG_DATA: node_id=%s, subscriber=%s, msg=%s' % (self.router.node_id, subscriber, str(msg))) def covert_msg_outgoing(self, msg, con): global task if msg.get_type() == 'Flooding_advertise' and (not msg['reflood']) and (task['name'] in ['flooding_master_count']): channel = msg['channel'] nonce = self.base64.b64decode(bytes(msg['nonce'], 'ascii')) peer_id = con.get_peer_id() chain = self.router._find_nonce(nonce, self.router.advertisement_routing_table[channel]) if channel in self.router.advertisement_routing_table else None shortest_nonce = self.router.advertisement_routing_table[channel][chain].peekitem(0)[0] if None in self.router.advertisement_routing_table[channel][chain][shortest_nonce] and (not self.mutation_logged): self.logger.error('*********** CODE_EVENT(become_master): master_publishers += 1') self.logger.info('*********** DEBUG_DATA: node_id=%s' % self.router.node_id) self.mutation_logged = True def msg_incoming(self, msg, con): global task if task['name'] in ['test', 'flooding_overlay_construction', 'aco_overlay_construction', 'aco_overlay_construction_bandwidth', 'flooding_overlay_construction_packetloss', 'aco_overlay_construction_packetloss', 'simple_overlay_construction', 'simple_overlay_construction_packetloss']: if msg['channel'] in self.router.subscriptions and msg['id'] not in self.router.seen_data_ids: if msg['data'] not in self.data_received: self.data_received[msg['data']] = 0 self.data_received[msg['data']] += 1 self.logger.info('*********** DEBUG_DATA: data_received[%s] --> %s' % (str(msg['data']), str(self.data_received[msg['data']]))) if self.data_received[msg['data']] == task['publishers'] and (not self.overlay_constructed): self.logger.error('*********** CODE_EVENT(overlay_constructed): overlay_construction.append(%.3f)' % (self.time.time() - self.started)) self.logger.info('*********** DEBUG_DATA: node_id = %s' % self.router.node_id) self.logger.info('*********** MEASUREMENT_COMPLETED: %s' % self.router.node_id) self.overlay_constructed = True def msg_outgoing(self, msg, con): global task pass
number = input("Enter a series of number, using separator you like: ") separator = "" for char in number: if not char.isnumeric(): separator = separator + char print(separator) str = 0; sum = 0 for char in number: if char not in separator: str = str * 10 + int(char) if char == number[len(number)-1]: sum = sum + int(char) elif char in separator: sum = sum + str str = 0 print(sum)
number = input('Enter a series of number, using separator you like: ') separator = '' for char in number: if not char.isnumeric(): separator = separator + char print(separator) str = 0 sum = 0 for char in number: if char not in separator: str = str * 10 + int(char) if char == number[len(number) - 1]: sum = sum + int(char) elif char in separator: sum = sum + str str = 0 print(sum)
{ "includes": [ "../common.gypi" ], "targets": [ { "target_name": "libgdal_ogr_pgdump_frmt", "type": "static_library", "sources": [ "../gdal/ogr/ogrsf_frmts/pgdump/ogrpgdumplayer.cpp", "../gdal/ogr/ogrsf_frmts/pgdump/ogrpgdumpdatasource.cpp", "../gdal/ogr/ogrsf_frmts/pgdump/ogrpgdumpdriver.cpp" ], "include_dirs": [ "../gdal/ogr/ogrsf_frmts/pgdump" ] } ] }
{'includes': ['../common.gypi'], 'targets': [{'target_name': 'libgdal_ogr_pgdump_frmt', 'type': 'static_library', 'sources': ['../gdal/ogr/ogrsf_frmts/pgdump/ogrpgdumplayer.cpp', '../gdal/ogr/ogrsf_frmts/pgdump/ogrpgdumpdatasource.cpp', '../gdal/ogr/ogrsf_frmts/pgdump/ogrpgdumpdriver.cpp'], 'include_dirs': ['../gdal/ogr/ogrsf_frmts/pgdump']}]}
class Human(object): def __init__(self, mark, io): self.mark = mark self.io = io def sanitize_user_input(self, user_input): try: sanitized_input = int(user_input) except TypeError: sanitized_input = 0 except ValueError: sanitized_input = 0 return sanitized_input def get_sanitized_input(self): user_input = self.io.get_input() return self.sanitize_user_input(user_input) def is_move_valid(self, move, board): return isinstance(move, int) and board.is_spot_available(move) def get_move(self, presenter, board): while 1: presenter.move_prompt(self.mark) presenter.available_moves_message(board.available_spots()) chosen_move = self.get_sanitized_input() if self.is_move_valid(chosen_move, board): return chosen_move presenter.invalid_move_message()
class Human(object): def __init__(self, mark, io): self.mark = mark self.io = io def sanitize_user_input(self, user_input): try: sanitized_input = int(user_input) except TypeError: sanitized_input = 0 except ValueError: sanitized_input = 0 return sanitized_input def get_sanitized_input(self): user_input = self.io.get_input() return self.sanitize_user_input(user_input) def is_move_valid(self, move, board): return isinstance(move, int) and board.is_spot_available(move) def get_move(self, presenter, board): while 1: presenter.move_prompt(self.mark) presenter.available_moves_message(board.available_spots()) chosen_move = self.get_sanitized_input() if self.is_move_valid(chosen_move, board): return chosen_move presenter.invalid_move_message()
def razbi_stevilo(n, st): s = [] st = str(st) while len(st) > n: stevilo = st[:n] s.append(stevilo) st = st[1:] return s #seznam 13 mestnih steil podanih v nizu def razbi_stevke(n): sez_stevk = [] for stevka in n: sez_stevk.append(int(stevka)) sez_stevk.sort() return sez_stevk def max_zmnozek(n, st): s = razbi_stevilo(n, st) sez_stevil = [] for ste in s: sez_stevil.append(razbi_stevke(ste)) maxi = max(sez_stevil) zmnozek = 1 for stevka in maxi: zmnozek *= stevka return zmnozek st = 7316717653133062491922511967442657474235534919493496983520312774506326239578318016984801869478851843858615607891129494954595017379583319528532088055111254069874715852386305071569329096329522744304355766896648950445244523161731856403098711121722383113622298934233803081353362766142828064444866452387493035890729629049156044077239071381051585930796086670172427121883998797908792274921901699720888093776657273330010533678812202354218097512545405947522435258490771167055601360483958644670632441572215539753697817977846174064955149290862569321978468622482839722413756570560574902614079729686524145351004748216637048440319989000889524345065854122758866688116427171479924442928230863465674813919123162824586178664583591245665294765456828489128831426076900422421902267105562632111110937054421750694165896040807198403850962455444362981230987879927244284909188845801561660979191338754992005240636899125607176060588611646710940507754100225698315520005593572972571636269561882670428252483600823257530420752963450
def razbi_stevilo(n, st): s = [] st = str(st) while len(st) > n: stevilo = st[:n] s.append(stevilo) st = st[1:] return s def razbi_stevke(n): sez_stevk = [] for stevka in n: sez_stevk.append(int(stevka)) sez_stevk.sort() return sez_stevk def max_zmnozek(n, st): s = razbi_stevilo(n, st) sez_stevil = [] for ste in s: sez_stevil.append(razbi_stevke(ste)) maxi = max(sez_stevil) zmnozek = 1 for stevka in maxi: zmnozek *= stevka return zmnozek st = 7316717653133062491922511967442657474235534919493496983520312774506326239578318016984801869478851843858615607891129494954595017379583319528532088055111254069874715852386305071569329096329522744304355766896648950445244523161731856403098711121722383113622298934233803081353362766142828064444866452387493035890729629049156044077239071381051585930796086670172427121883998797908792274921901699720888093776657273330010533678812202354218097512545405947522435258490771167055601360483958644670632441572215539753697817977846174064955149290862569321978468622482839722413756570560574902614079729686524145351004748216637048440319989000889524345065854122758866688116427171479924442928230863465674813919123162824586178664583591245665294765456828489128831426076900422421902267105562632111110937054421750694165896040807198403850962455444362981230987879927244284909188845801561660979191338754992005240636899125607176060588611646710940507754100225698315520005593572972571636269561882670428252483600823257530420752963450
class Solution: def longestMountain(self, A: List[int]) -> int: ''' T: O(n) and S: O(1) ''' if len(A) < 3: return 0 maxLen = 0 for i in range(1, len(A)-1): left, right = i - 1, i + 1 if (A[left] < A[i]) and (A[i] > A[right]): while left > 0 and A[left-1] < A[left]: left -= 1 while right < len(A)-1 and A[right] > A[right+1]: right += 1 maxLen = max(maxLen, right - left + 1) return maxLen
class Solution: def longest_mountain(self, A: List[int]) -> int: """ T: O(n) and S: O(1) """ if len(A) < 3: return 0 max_len = 0 for i in range(1, len(A) - 1): (left, right) = (i - 1, i + 1) if A[left] < A[i] and A[i] > A[right]: while left > 0 and A[left - 1] < A[left]: left -= 1 while right < len(A) - 1 and A[right] > A[right + 1]: right += 1 max_len = max(maxLen, right - left + 1) return maxLen
# Loan repayment calculation service # This is the program calculating the loan repayment amount for clients. # # Input parameters: # principal(p) : Only integers equal or greater than one million are allowed # years(y) : Only integers equal or greater than one are allowed # annual interest rate(r) : Only floating point numbers from 0.0 to 100.0 are allowed # Output parameters: # annual repayment amount(d), monthly repayment amount(d / 12), total repayment amount(d * y) # # Developers : Hacktree # Development date : 2021/06/16 (Version 1.0) # Input and check input value print("Welcome to loan repayment calculation service") p = int(input("How much is the principal? (We only count over one million won.) ")) y = int(input("How many years is the repayment period? ")) r = float(input("What percent is the interest rate? ")) # Calcualte repayment amount d = ((1 + (r / 100)) ** y * p * (r / 100)) // ((1 + (r / 100)) ** y - 1) d = int(d) # Print Output print("We will inform you about the loan repayment details.") print("If you repay once a year, you have to pay {} won for each year.".format(d)) print("If you repay once a month, you have to pay {} won for each month.".format(d // 12)) print("The total repayment amount until the repayment is completed is {} won.".format(d * y)) print("Thank you for using our service.") print("I hope you to see again.")
print('Welcome to loan repayment calculation service') p = int(input('How much is the principal? (We only count over one million won.) ')) y = int(input('How many years is the repayment period? ')) r = float(input('What percent is the interest rate? ')) d = (1 + r / 100) ** y * p * (r / 100) // ((1 + r / 100) ** y - 1) d = int(d) print('We will inform you about the loan repayment details.') print('If you repay once a year, you have to pay {} won for each year.'.format(d)) print('If you repay once a month, you have to pay {} won for each month.'.format(d // 12)) print('The total repayment amount until the repayment is completed is {} won.'.format(d * y)) print('Thank you for using our service.') print('I hope you to see again.')
a = int(input("Enter the first no : ")) b = int(input("Enter the second no : ")) c = a+b print("sum of",a,'+',b,'=',c) print("The first no is: %d and second number is: %d and the sum is: %d"%(a,b,c)) print("%d + %d = %d"%(a,b,c)) print("%-10d + %-10d = %-10d"%(a,b,c)) print("%-10f + %-10f = %-10f"%(a,b,c)) print("%s + %s = %s"%("tony","george","tonygeorge"))
a = int(input('Enter the first no : ')) b = int(input('Enter the second no : ')) c = a + b print('sum of', a, '+', b, '=', c) print('The first no is: %d and second number is: %d and the sum is: %d' % (a, b, c)) print('%d + %d = %d' % (a, b, c)) print('%-10d + %-10d = %-10d' % (a, b, c)) print('%-10f + %-10f = %-10f' % (a, b, c)) print('%s + %s = %s' % ('tony', 'george', 'tonygeorge'))
class Node(object): def __init__(self, data, next=None): self.data = data self.next = next def kth_to_last(k, linked_list): pointer1, pointer2 = linked_list, linked_list for _ in range(k): if not pointer1: return None pointer1 = pointer1.next while pointer1: pointer1, pointer2 = pointer1.next, pointer2.next return pointer2 def kth_to_last2(k, linked_list): ll_length = 0 head = linked_list while head: ll_length += 1 head = head.next final_head = linked_list while final_head.next and k != ll_length: final_head = final_head.next ll_length -= 1 return final_head ll = Node(1, Node(2, Node(3, Node(4, None)))) k = 3 newll = kth_to_last2(k, ll) print(newll.data) print(newll.next.data) print(newll.next.next.data)
class Node(object): def __init__(self, data, next=None): self.data = data self.next = next def kth_to_last(k, linked_list): (pointer1, pointer2) = (linked_list, linked_list) for _ in range(k): if not pointer1: return None pointer1 = pointer1.next while pointer1: (pointer1, pointer2) = (pointer1.next, pointer2.next) return pointer2 def kth_to_last2(k, linked_list): ll_length = 0 head = linked_list while head: ll_length += 1 head = head.next final_head = linked_list while final_head.next and k != ll_length: final_head = final_head.next ll_length -= 1 return final_head ll = node(1, node(2, node(3, node(4, None)))) k = 3 newll = kth_to_last2(k, ll) print(newll.data) print(newll.next.data) print(newll.next.next.data)
print("-- Strings -- ") print() mystring = "hello" myfloat = 10.0 myint = 20 if mystring == "hello": print("String: %s" % mystring) if isinstance(myfloat, float) and myfloat == 10.0: print("Float: %f" % myfloat) if isinstance(myint, int) and myint == 20: print("Integer: %d" % myint) print() nome = 'Teste' idade = 18 print('Nome: {a}, Idade: {b}'.format(a=nome, b=idade)) def print_full_name(a, b): print('Hello {a} {b}! You just delved into python.'.format(a=a, b=b)) print_full_name('Ross', 'Taylor') a = "this is a string" a = a.split(" ") # a is converted to a list of strings. print(a) string = '' for item in a: if len(string) > 0: string = string +"-"+ item else: string = string + item print(string)
print('-- Strings -- ') print() mystring = 'hello' myfloat = 10.0 myint = 20 if mystring == 'hello': print('String: %s' % mystring) if isinstance(myfloat, float) and myfloat == 10.0: print('Float: %f' % myfloat) if isinstance(myint, int) and myint == 20: print('Integer: %d' % myint) print() nome = 'Teste' idade = 18 print('Nome: {a}, Idade: {b}'.format(a=nome, b=idade)) def print_full_name(a, b): print('Hello {a} {b}! You just delved into python.'.format(a=a, b=b)) print_full_name('Ross', 'Taylor') a = 'this is a string' a = a.split(' ') print(a) string = '' for item in a: if len(string) > 0: string = string + '-' + item else: string = string + item print(string)
def General(project): feature_vectors = get_featrures(projects) h_clusters = BIRCH(projects,feature_vectors) for level in h_clusters.levels: if level.depth == h_clusters.max_depth: for cluster in level.clusters: level.cluster.bell = bellwether(cluster.projects) else: for cluster in h_clusters.level.clusters: bell_projects = cluster.child.get_bellwethers() level.cluster.bell = bellwether(bell_projects) return h_clusters
def general(project): feature_vectors = get_featrures(projects) h_clusters = birch(projects, feature_vectors) for level in h_clusters.levels: if level.depth == h_clusters.max_depth: for cluster in level.clusters: level.cluster.bell = bellwether(cluster.projects) else: for cluster in h_clusters.level.clusters: bell_projects = cluster.child.get_bellwethers() level.cluster.bell = bellwether(bell_projects) return h_clusters
# import contact: click on chart to draw a contact that gets pinged by sonar colors = {'GRN':color(51, 255, 0), 'RED':color(193, 49, 36), 'BLK':color(10)} def setup(): size(480, 480) background(colors['BLK']) fill(colors['RED']) ellipse(240, 240, 430, 430) fill(10) ellipse(240, 240, 420, 420) def draw(): stroke(colors['GRN']) if mousePressed: fill(colors['GRN']) ellipse(mouseX, mouseY, 10, 10)
colors = {'GRN': color(51, 255, 0), 'RED': color(193, 49, 36), 'BLK': color(10)} def setup(): size(480, 480) background(colors['BLK']) fill(colors['RED']) ellipse(240, 240, 430, 430) fill(10) ellipse(240, 240, 420, 420) def draw(): stroke(colors['GRN']) if mousePressed: fill(colors['GRN']) ellipse(mouseX, mouseY, 10, 10)
def debug_policy_plot(): qq_right = [] x_vec = np.arange(vagent.max_q[0]) for xx in x_vec: vagent.q[0] = xx vsensor.update(vscene,vagent) vobservation = local_observer(vsensor,vagent) #todo: generalize qq_right.append(RL.compute_q_eval(vobservation.reshape([1,-1]))) qq_right = (np.reshape(qq_right,[-1,2])) vax[0].clear() vax[0].plot(qq_right, 'x-') vax[1].clear() vax[1].plot(qq_right[:,1]-qq_right[:,0], 'x-')
def debug_policy_plot(): qq_right = [] x_vec = np.arange(vagent.max_q[0]) for xx in x_vec: vagent.q[0] = xx vsensor.update(vscene, vagent) vobservation = local_observer(vsensor, vagent) qq_right.append(RL.compute_q_eval(vobservation.reshape([1, -1]))) qq_right = np.reshape(qq_right, [-1, 2]) vax[0].clear() vax[0].plot(qq_right, 'x-') vax[1].clear() vax[1].plot(qq_right[:, 1] - qq_right[:, 0], 'x-')
class Solution: def stringShift(self, s: str, shift: List[List[int]]) -> str: sum = 0 for i in shift: if i[0] == 0: sum += i[1] else: sum -= i[1] sum = sum % len(s) return s[sum:]+s[:sum]
class Solution: def string_shift(self, s: str, shift: List[List[int]]) -> str: sum = 0 for i in shift: if i[0] == 0: sum += i[1] else: sum -= i[1] sum = sum % len(s) return s[sum:] + s[:sum]
# Based on MicroPython config option, comparison of str and bytes # or vice versa may issue a runtime warning. On CPython, if run as # "python3 -b", only comparison of str to bytes issues a warning, # not the other way around (while exactly comparison of bytes to # str would be the most common error, as in sock.recv(3) == "GET"). # Update: the issue above with CPython apparently happens in REPL, # when run as a script, both lines issue a warning. if ("123" == b"123" or b"123" == "123"): print("FAIL") raise SystemExit print("PASS")
if '123' == b'123' or b'123' == '123': print('FAIL') raise SystemExit print('PASS')
class Solution: def toGoatLatin(self, S: str) -> str: words = S.split() res = [] for i, w in enumerate(words): if w[0].lower() not in "aeiou": w = w[1:] + w[0] w += "ma" + ("a" * (i + 1)) res.append(w) return ' '.join(res) if __name__ == '__main__': S = input("Input: ") print(f"Output: {Solution().toGoatLatin(S)}")
class Solution: def to_goat_latin(self, S: str) -> str: words = S.split() res = [] for (i, w) in enumerate(words): if w[0].lower() not in 'aeiou': w = w[1:] + w[0] w += 'ma' + 'a' * (i + 1) res.append(w) return ' '.join(res) if __name__ == '__main__': s = input('Input: ') print(f'Output: {solution().toGoatLatin(S)}')
# the interface # class, or the interface # data type # interface data types # are inspired from # the typescript language # example # f = Interface(types) # f.create(data) class InterfaceObject(): def __init__(self, object_info): # the passed in values # to create a new object self.values = object_info # get the interface # property def get_item(self, property_): if property_ in self.values: return self.values[property_] else: raise KeyError(f"Cannot find {property_}") # set the interface # property # Note : cannot change types after assignment def set_item(self, property_, value): # check if property_ is in self.values # if yes, pass # else throw a KeyError if property_ in self.values: # check whether the current type # of the key and the new type is same # if yes , change the value # else , raise a KeyError typeof = isinstance(value, type(self.values[property_])) if typeof: self.values[property_] = value else: raise TypeError("Cannot change types after assignment") else: raise KeyError(f"Cannot find {property_}") def __repr__(self): return "" class Interface(object): def __init__(self, data_params): # the main # key names and the # type of the value self.params = self.__get_params(data_params) # verifying the entered # parameters and return # them def __get_params(self, data): # check whether the data # passed in is a dict # else throw an Error data_is_dict = isinstance(data, dict) # loop through each dict # value and check whether # each value is # a list # the list of types it can be # return the passed-in parameter if data_is_dict: for data_key in data: if not isinstance(data[data_key], list): raise TypeError("Expected to be a list") return data else: raise TypeError("Expected a dict") # create a new interface # object def create(self, *args): # self.match = self.__match_param_types(data) # print(args) if len(args) == len(self.params): match = self.__match_param_types(args) return InterfaceObject(match) else: raise Exception( f"Expected {len(self.params)} arguments but got {len(args)}") # check whether # the new create interface # parameter type match # with self.params def __match_param_types(self, data): # check if the passed in # parameter is a # tuple, else throw # a TYpeError if isinstance(data, tuple): # the new interface interface = {} # loop through each element # and index in the dictionary # (self.params) for index, key in enumerate(self.params): # the current character # of the argument current_character = data[index] # the number of types # matches(a list of # True and False(booleans)) types_matches = [] for allowed_type in self.params[key]: # if the allowed types # is (?) or 'any', append true # as it resembles (any) type # else, if the type of # the param is in # the list of types # allowed if allowed_type == "?" or allowed_type == "any": types_matches.append(True) else: types_matches.append(allowed_type == type(data[index])) # if the list is full of False # or if no types match raise # a type error # else, add it to the # interface dict if True not in types_matches: raise TypeError("Types don't match") else: interface[key] = data[index] # return the interface dict return interface else: raise TypeError("Expected a dict")
class Interfaceobject: def __init__(self, object_info): self.values = object_info def get_item(self, property_): if property_ in self.values: return self.values[property_] else: raise key_error(f'Cannot find {property_}') def set_item(self, property_, value): if property_ in self.values: typeof = isinstance(value, type(self.values[property_])) if typeof: self.values[property_] = value else: raise type_error('Cannot change types after assignment') else: raise key_error(f'Cannot find {property_}') def __repr__(self): return '' class Interface(object): def __init__(self, data_params): self.params = self.__get_params(data_params) def __get_params(self, data): data_is_dict = isinstance(data, dict) if data_is_dict: for data_key in data: if not isinstance(data[data_key], list): raise type_error('Expected to be a list') return data else: raise type_error('Expected a dict') def create(self, *args): if len(args) == len(self.params): match = self.__match_param_types(args) return interface_object(match) else: raise exception(f'Expected {len(self.params)} arguments but got {len(args)}') def __match_param_types(self, data): if isinstance(data, tuple): interface = {} for (index, key) in enumerate(self.params): current_character = data[index] types_matches = [] for allowed_type in self.params[key]: if allowed_type == '?' or allowed_type == 'any': types_matches.append(True) else: types_matches.append(allowed_type == type(data[index])) if True not in types_matches: raise type_error("Types don't match") else: interface[key] = data[index] return interface else: raise type_error('Expected a dict')
def rotflip(): yield "rot1" yield "rot2" yield "rot3" yield "rot4" yield "flip" yield "rot1" yield "rot2" yield "rot3" yield "rot4" raise ValueError("aaaaa") i = 0 #for i,a in enumerate(rotflip()): a_gen = rotflip() while True: a = a_gen.__next__() print(a) i += 1 if i == 6: break
def rotflip(): yield 'rot1' yield 'rot2' yield 'rot3' yield 'rot4' yield 'flip' yield 'rot1' yield 'rot2' yield 'rot3' yield 'rot4' raise value_error('aaaaa') i = 0 a_gen = rotflip() while True: a = a_gen.__next__() print(a) i += 1 if i == 6: break
marks = {} for _ in range(int(input())): line = input().split() marks[line[0]] = sum(map(float, line[1:])) / 3 print('%.2f' % marks[input()])
marks = {} for _ in range(int(input())): line = input().split() marks[line[0]] = sum(map(float, line[1:])) / 3 print('%.2f' % marks[input()])
# A script to recursively find the greatest common divisor of two numbers def greatest_divisor(first, second): assert first == int(first) and second == int(second) and first != 0 and second != 0, 'Numbers provided must be nonzero integers' if first < 0: first = -first if second < 0: second = -second if (first >= second): return gcd_ordered(first, second) elif (first < second): return gcd_ordered(second, first) def gcd_ordered(higher, lower): if higher % lower == 0: return lower return gcd_ordered(lower, higher % lower) # Test the function print(greatest_divisor(18,48)) print(greatest_divisor(12,8)) print(greatest_divisor(49,21)) print(greatest_divisor(4,9)) print(greatest_divisor(9,9))
def greatest_divisor(first, second): assert first == int(first) and second == int(second) and (first != 0) and (second != 0), 'Numbers provided must be nonzero integers' if first < 0: first = -first if second < 0: second = -second if first >= second: return gcd_ordered(first, second) elif first < second: return gcd_ordered(second, first) def gcd_ordered(higher, lower): if higher % lower == 0: return lower return gcd_ordered(lower, higher % lower) print(greatest_divisor(18, 48)) print(greatest_divisor(12, 8)) print(greatest_divisor(49, 21)) print(greatest_divisor(4, 9)) print(greatest_divisor(9, 9))
def main(): card_number = input("Enter credit card number: ") print_card_value(card_number) def print_card_value(card_number): if check_for_sum(card_number) == False: print("INVALID") elif check_for_amex(card_number) == True: print("AMEX") elif check_for_master(card_number) == True: print("MASTERCARD") elif check_for_visa(card_number) == True: print("VISA") else: print("INVALID") def check_for_amex(card_number): if len(card_number) == 15 and card_number[:2] in ["34", "37"]: return True else: return False def check_for_master(card_number): if len(card_number) == 16 and card_number[:2] in ["51", "52", "53", "54", "55"]: return True else: return False def check_for_visa(card_number): if len(card_number) in [13, 16] and card_number[0] == "4": return True else: return False def check_for_sum(card_number): product_of_two_sequence = 0 not_product_of_two_sequence = 0 product_of_two_digit_array = [0, 2, 4, 6, 8, 1, 3, 5, 7, 9] for i in range(len(card_number)): new_number = int(card_number[len(card_number) - 1 - i]) if i % 2 == 0: not_product_of_two_sequence = not_product_of_two_sequence + new_number else: product_of_two_sequence = product_of_two_digit_array[new_number] sum_of_total = not_product_of_two_sequence + product_of_two_sequence return ((sum_of_total % 10) == 0) main()
def main(): card_number = input('Enter credit card number: ') print_card_value(card_number) def print_card_value(card_number): if check_for_sum(card_number) == False: print('INVALID') elif check_for_amex(card_number) == True: print('AMEX') elif check_for_master(card_number) == True: print('MASTERCARD') elif check_for_visa(card_number) == True: print('VISA') else: print('INVALID') def check_for_amex(card_number): if len(card_number) == 15 and card_number[:2] in ['34', '37']: return True else: return False def check_for_master(card_number): if len(card_number) == 16 and card_number[:2] in ['51', '52', '53', '54', '55']: return True else: return False def check_for_visa(card_number): if len(card_number) in [13, 16] and card_number[0] == '4': return True else: return False def check_for_sum(card_number): product_of_two_sequence = 0 not_product_of_two_sequence = 0 product_of_two_digit_array = [0, 2, 4, 6, 8, 1, 3, 5, 7, 9] for i in range(len(card_number)): new_number = int(card_number[len(card_number) - 1 - i]) if i % 2 == 0: not_product_of_two_sequence = not_product_of_two_sequence + new_number else: product_of_two_sequence = product_of_two_digit_array[new_number] sum_of_total = not_product_of_two_sequence + product_of_two_sequence return sum_of_total % 10 == 0 main()
best_bpsp = float("inf") n_feats = 64 scale = 3 resblocks = 3 K = 10 plot = "" log_likelihood = True collect_probs = False
best_bpsp = float('inf') n_feats = 64 scale = 3 resblocks = 3 k = 10 plot = '' log_likelihood = True collect_probs = False
def countArrangement(n: int) -> int: options = [[] * n for _ in range(n)] for i in range(1, n + 1): for j in range(1, i): if i % j == 0: options[i-1].append(j) for j in range(i, n+1, i): options[i-1].append(j) options.sort(key=len) taken = set() def backtrack(i): if i >= n: return 1 total = 0 for option in [o for o in options[i] if o not in taken]: taken.add(option) total += backtrack(i+1) taken.remove(option) return total return backtrack(0)
def count_arrangement(n: int) -> int: options = [[] * n for _ in range(n)] for i in range(1, n + 1): for j in range(1, i): if i % j == 0: options[i - 1].append(j) for j in range(i, n + 1, i): options[i - 1].append(j) options.sort(key=len) taken = set() def backtrack(i): if i >= n: return 1 total = 0 for option in [o for o in options[i] if o not in taken]: taken.add(option) total += backtrack(i + 1) taken.remove(option) return total return backtrack(0)
S = 'I want that Farm House to be in my name, comprende? Also, I want Chocolates.' D = {} #SS = S.split() for item in S: if item in D: D[item] = D[item] + 1 else: D[item] = 1 print(D)
s = 'I want that Farm House to be in my name, comprende? Also, I want Chocolates.' d = {} for item in S: if item in D: D[item] = D[item] + 1 else: D[item] = 1 print(D)
def dfs(node,parent): for child in graph[node]: if child!=parent: dfs(child,node) taken,nottaken=1,0 for neigh in graph[node]: if neigh!=parent: taken+=dp[neigh][0] nottaken+=dp[neigh][1] dp[node][1]=min(taken,nottaken) dp[node][0]=nottaken if __name__ == '__main__': n=int(input()) dp=[[0 for j in range(2)] for i in range(n)] graph=[[]for i in range(n)] for i in range(n-1): a,b=map(int,input().split()) a=a-1 b=b-1 graph[a].append(b) graph[b].append(a) dfs(0,-1) print(dp)
def dfs(node, parent): for child in graph[node]: if child != parent: dfs(child, node) (taken, nottaken) = (1, 0) for neigh in graph[node]: if neigh != parent: taken += dp[neigh][0] nottaken += dp[neigh][1] dp[node][1] = min(taken, nottaken) dp[node][0] = nottaken if __name__ == '__main__': n = int(input()) dp = [[0 for j in range(2)] for i in range(n)] graph = [[] for i in range(n)] for i in range(n - 1): (a, b) = map(int, input().split()) a = a - 1 b = b - 1 graph[a].append(b) graph[b].append(a) dfs(0, -1) print(dp)
# Application condition waitFor.id == max_used_id and not cur_node_is_processed # Reaction wait_for_touch_sensor_code = "while (!ecrobot_get_touch_sensor(NXT_PORT_S" + waitFor.Port + ")) {}\n" code.append([wait_for_touch_sensor_code]) id_to_pos_in_code[waitFor.id] = len(code) - 1 cur_node_is_processed = True
waitFor.id == max_used_id and (not cur_node_is_processed) wait_for_touch_sensor_code = 'while (!ecrobot_get_touch_sensor(NXT_PORT_S' + waitFor.Port + ')) {}\n' code.append([wait_for_touch_sensor_code]) id_to_pos_in_code[waitFor.id] = len(code) - 1 cur_node_is_processed = True
print('Event') #-------------Lorem for i in [5,4,5]: print(i)
print('Event') for i in [5, 4, 5]: print(i)
# 4-6. Odd Numbers: Use the third argument of the range() function to make a list # of the odd numbers from 1 to 20. Use a for loop to print each number. for i in range(1,21): if i%2!=0: print(i)
for i in range(1, 21): if i % 2 != 0: print(i)
class ResponseObject(): def __init__(self, status=500, msg="Unknown Error", data=None): self.status = status self.msg = msg if data: self.data = data else: self.data = {} self.response = { "status" : self.status, "msg" : self.msg, "data" : self.data }
class Responseobject: def __init__(self, status=500, msg='Unknown Error', data=None): self.status = status self.msg = msg if data: self.data = data else: self.data = {} self.response = {'status': self.status, 'msg': self.msg, 'data': self.data}
class Settings: PROJECT_TITLE: str = "Book store" PROJECT_VERSION: str = "0.1.1" settings = Settings()
class Settings: project_title: str = 'Book store' project_version: str = '0.1.1' settings = settings()
__all__ = [ 'api_exception', 'update_webhook_400_response_exception', 'retrieve_webhook_400_response_exception', 'create_webhook_400_response_exception', ]
__all__ = ['api_exception', 'update_webhook_400_response_exception', 'retrieve_webhook_400_response_exception', 'create_webhook_400_response_exception']
# simple calculator # This function adds two numbers def add(x, y): return float(x) + float(y) # This function subtracts two numbers def subtract(x, y): return float(x) - float(y) # This function multiplies two numbers def multiply(x, y): return float(x) * float(y) # This function divides two numbers def divide(x, y): try: return float(x) / float(y) except ValueError: return 0 except ZeroDivisionError: return 0 finally: print("There was a problem with the division.") def union(list_one: set, list_two: set): list_one = set(list_one.split(",")) list_two = set(list_two.split(",")) return list_one.union(list_two) def difference(list_one, list_two): list_one = set(list_one.split(",")) list_two = set(list_two.split(",")) return list_one.difference(list_two) def intersection(list_one, list_two): list_one = set(list_one.split(",")) list_two = set(list_two.split(",")) return list_one.intersection(list_two) def calculate_stats(list_one, list_two): list_one = list_one.split(",") list_two = list_two.split(",") print(f"List 1 Min: {min(list_one)}") print(f"List 1 Max: {max(list_one)}") print(f"List 1 Length: {len(list_one)}") print(f"List 2 Min: {min(list_two)}") print(f"List 2 Max: {max(list_two)}") print(f"List 2 Length: {len(list_two)}") def sort_lists(list_one, list_two): list_one = list_one.split(",") list_two = list_two.split(",") combined_list = list_one + list_two combined_list.sort() return combined_list operation = input("Please enter Operation:") first_param = input("Please enter first parameter:") second_param = input("Please enter second parameter:") if operation == 'Add': print(first_param, "+", second_param, "=", add(first_param, second_param)) elif operation == 'Sub': print(first_param, "-", second_param, "=", subtract(first_param, second_param)) elif operation == 'Mul': print(first_param, "*", second_param, "=", multiply(first_param, second_param)) elif operation == 'Div': print(first_param, "/", second_param, "=", divide(first_param, second_param)) elif operation.upper() == 'UNION': print(f"Union: {union(first_param, second_param)}") elif operation.upper() == 'INTERSECTION': print(f"Intersection: {intersection(first_param, second_param)}") elif operation.upper() == 'DIFFERENCE': print(f"Difference: {difference(first_param, second_param)}") elif operation.upper() == 'SORT': print(sort_lists(first_param, second_param)) elif operation.upper() == 'STATS': print(calculate_stats(first_param, second_param)) else: print("Unknown operation.")
def add(x, y): return float(x) + float(y) def subtract(x, y): return float(x) - float(y) def multiply(x, y): return float(x) * float(y) def divide(x, y): try: return float(x) / float(y) except ValueError: return 0 except ZeroDivisionError: return 0 finally: print('There was a problem with the division.') def union(list_one: set, list_two: set): list_one = set(list_one.split(',')) list_two = set(list_two.split(',')) return list_one.union(list_two) def difference(list_one, list_two): list_one = set(list_one.split(',')) list_two = set(list_two.split(',')) return list_one.difference(list_two) def intersection(list_one, list_two): list_one = set(list_one.split(',')) list_two = set(list_two.split(',')) return list_one.intersection(list_two) def calculate_stats(list_one, list_two): list_one = list_one.split(',') list_two = list_two.split(',') print(f'List 1 Min: {min(list_one)}') print(f'List 1 Max: {max(list_one)}') print(f'List 1 Length: {len(list_one)}') print(f'List 2 Min: {min(list_two)}') print(f'List 2 Max: {max(list_two)}') print(f'List 2 Length: {len(list_two)}') def sort_lists(list_one, list_two): list_one = list_one.split(',') list_two = list_two.split(',') combined_list = list_one + list_two combined_list.sort() return combined_list operation = input('Please enter Operation:') first_param = input('Please enter first parameter:') second_param = input('Please enter second parameter:') if operation == 'Add': print(first_param, '+', second_param, '=', add(first_param, second_param)) elif operation == 'Sub': print(first_param, '-', second_param, '=', subtract(first_param, second_param)) elif operation == 'Mul': print(first_param, '*', second_param, '=', multiply(first_param, second_param)) elif operation == 'Div': print(first_param, '/', second_param, '=', divide(first_param, second_param)) elif operation.upper() == 'UNION': print(f'Union: {union(first_param, second_param)}') elif operation.upper() == 'INTERSECTION': print(f'Intersection: {intersection(first_param, second_param)}') elif operation.upper() == 'DIFFERENCE': print(f'Difference: {difference(first_param, second_param)}') elif operation.upper() == 'SORT': print(sort_lists(first_param, second_param)) elif operation.upper() == 'STATS': print(calculate_stats(first_param, second_param)) else: print('Unknown operation.')
DEFAULT_MOD = 10 ** 9 + 7 def mod_permutation(n, k, mod=DEFAULT_MOD): if k >= mod: return 0 ret = 1 for i in range(n, n - k, -1): ret = (ret * i) % mod return ret def mod_factorial(n, mod=DEFAULT_MOD): if n >= mod: return 0 else: return mod_permutation(n, n, mod) def mod_combination(n, k, mod=DEFAULT_MOD): k = min(k, n - k) mod_power = 0 numerator = 1 denominator = 1 for i in range(n, n - k, -1): while i % mod == 0: i //= mod mod_power += 1 numerator = (numerator * i) % mod for i in range(k, 0, -1): while i % mod == 0: i //= mod mod_power -= 1 denominator = (denominator * i) % mod if mod_power > 0: return 0 else: return (numerator * pow(denominator, mod - 2, mod)) % mod
default_mod = 10 ** 9 + 7 def mod_permutation(n, k, mod=DEFAULT_MOD): if k >= mod: return 0 ret = 1 for i in range(n, n - k, -1): ret = ret * i % mod return ret def mod_factorial(n, mod=DEFAULT_MOD): if n >= mod: return 0 else: return mod_permutation(n, n, mod) def mod_combination(n, k, mod=DEFAULT_MOD): k = min(k, n - k) mod_power = 0 numerator = 1 denominator = 1 for i in range(n, n - k, -1): while i % mod == 0: i //= mod mod_power += 1 numerator = numerator * i % mod for i in range(k, 0, -1): while i % mod == 0: i //= mod mod_power -= 1 denominator = denominator * i % mod if mod_power > 0: return 0 else: return numerator * pow(denominator, mod - 2, mod) % mod
# -*- coding: utf-8 -*- n = int(input("Enter one number: ")) if n < 0: print("please enter a positive ") else: while n != 1: print(int(n)) if n % 2 != 0: n = 3 * n + 1 else: n /= 2 print("result ", int(n))
n = int(input('Enter one number: ')) if n < 0: print('please enter a positive ') else: while n != 1: print(int(n)) if n % 2 != 0: n = 3 * n + 1 else: n /= 2 print('result ', int(n))
{"query": {"function_score": {"query": { "bool": {"should": [{"multi_match": {"query": "python", "fields": ["nickname^2", "username^4"]}}], "filter": {"range": {"follower_count": {"gte": "50000", "lte": "100000"}}}}}, "field_value_factor": {"field": "follower_count", "modifier": "log1p", "missing": 0, "factor": 1}, "boost_mode": "avg"}}, "highlight": {"fields": {"nickname": {}, "description": {}}}, "size": 10, "from": 0} { "query": { "function_score": { "query": { "bool": {"must": [{ "multi_match": { "query": "python", "fields": ["nickname^2", "username^4"] }}], "filter": {"range": { "follower_count": { "gte": "50000", "lte": "100000" } }}} }, "field_value_factor": { "field": "follower_count", "modifier": "log1p", "missing": 0, "factor": 1 }, "boost_mode": "avg" } }, "highlight": { "fields": { "nickname": {}, "description": {} } }, "size":10, "from": 0 }
{'query': {'function_score': {'query': {'bool': {'should': [{'multi_match': {'query': 'python', 'fields': ['nickname^2', 'username^4']}}], 'filter': {'range': {'follower_count': {'gte': '50000', 'lte': '100000'}}}}}, 'field_value_factor': {'field': 'follower_count', 'modifier': 'log1p', 'missing': 0, 'factor': 1}, 'boost_mode': 'avg'}}, 'highlight': {'fields': {'nickname': {}, 'description': {}}}, 'size': 10, 'from': 0} {'query': {'function_score': {'query': {'bool': {'must': [{'multi_match': {'query': 'python', 'fields': ['nickname^2', 'username^4']}}], 'filter': {'range': {'follower_count': {'gte': '50000', 'lte': '100000'}}}}}, 'field_value_factor': {'field': 'follower_count', 'modifier': 'log1p', 'missing': 0, 'factor': 1}, 'boost_mode': 'avg'}}, 'highlight': {'fields': {'nickname': {}, 'description': {}}}, 'size': 10, 'from': 0}
def restart(): prompt = input("Type [y] to play again or any other key to quit. ") if prompt.lower() == "y": return True else: return False
def restart(): prompt = input('Type [y] to play again or any other key to quit. ') if prompt.lower() == 'y': return True else: return False
#!/usr/bin/env python3 try: checksum = 0 while True: numbers = [int(n) for n in input().split()] checksum += max(numbers) - min(numbers) except EOFError: print(checksum)
try: checksum = 0 while True: numbers = [int(n) for n in input().split()] checksum += max(numbers) - min(numbers) except EOFError: print(checksum)
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')
#!/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'}}}
# 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
#!/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")
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))
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))
{ "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']}]}
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
## @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 '-'
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')
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/'}
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
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('==')