content
stringlengths
7
1.05M
fixed_cases
stringlengths
1
1.28M
courses = ['History', 'Math', 'Physics', 'CompSci'] for item in courses: print(item) # loop with an index for index, course in enumerate(courses): print(index, course) # loop with a starting index value for index, course in enumerate(courses, start=1): print(index, course)
courses = ['History', 'Math', 'Physics', 'CompSci'] for item in courses: print(item) for (index, course) in enumerate(courses): print(index, course) for (index, course) in enumerate(courses, start=1): print(index, course)
# settings.py - place to store constants for template-gen ACS_API = '2016-03-30' BASE_API = '2016-09-01' COMP_API = '2017-03-30' #COMP_API = '2016-04-30-preview' INSIGHTS_API = '2015-04-01' INSIGHTS_METRICS_API = '2016-03-01' INSIGHTS_PREVIEW_API = '2016-06-01' MEDIA_API = '2015-10-01' NETWORK_API = '2016-09-01' STORAGE_API = '2016-01-01'
acs_api = '2016-03-30' base_api = '2016-09-01' comp_api = '2017-03-30' insights_api = '2015-04-01' insights_metrics_api = '2016-03-01' insights_preview_api = '2016-06-01' media_api = '2015-10-01' network_api = '2016-09-01' storage_api = '2016-01-01'
fileref = open("olympics.txt", "r") ## Mind it the file should be in the same folder of the program execution. lines = fileref.readlines() print(len(lines)) total_char = 0 for line in lines: total_char += len(line) print(line.strip()) print(total_char) fileref.close()
fileref = open('olympics.txt', 'r') lines = fileref.readlines() print(len(lines)) total_char = 0 for line in lines: total_char += len(line) print(line.strip()) print(total_char) fileref.close()
################################################################################ # # Author: francescodilillo # Purpose: practice with dictionaries # Last Edit Date: 18-03-2020 # # ################################################################################ person = {"name": "Francesco", "gender": "M", "age": 27, "address": "15 Rue de Ville, Luxembourg", "phone": 34566112233} request = input("What info would you need to learn about the person? ").lower() output = person.get(request, "The request can't be fulfilled since there is no field " + request) print(request, ": ", output)
person = {'name': 'Francesco', 'gender': 'M', 'age': 27, 'address': '15 Rue de Ville, Luxembourg', 'phone': 34566112233} request = input('What info would you need to learn about the person? ').lower() output = person.get(request, "The request can't be fulfilled since there is no field " + request) print(request, ': ', output)
""" Given a positive integer n, generate a square matrix filled with elements from 1 to n2 in spiral order. Example: Input: 3 Output: [ [ 1, 2, 3 ], [ 8, 9, 4 ], [ 7, 6, 5 ] ] """ class Solution(object): def generateMatrix(self, n): """ :type n: int :rtype: List[List[int]] """ matrix = [[0 for _ in range(n)] for _ in range(n)] left = 0 right = n - 1 top = 0 bottom = n - 1 counter = 1 while left <= right and top <= bottom: # #Top Row for i in range(left, right + 1): matrix[top][i] = counter print(matrix[top][i], top, i) counter += 1 top += 1 # #Right Column for i in range(top, bottom + 1): matrix[i][right] = counter print(matrix[i][right], i, right) counter += 1 right -= 1 # #Bottom Row for i in range(right, left - 1, -1): matrix[bottom][i] = counter print(matrix[bottom][i], bottom, i) counter += 1 bottom -= 1 # #Left Column for i in range(bottom, top - 1, -1): matrix[i][left] = counter print(matrix[i][left], i, left) counter += 1 left += 1 return matrix
""" Given a positive integer n, generate a square matrix filled with elements from 1 to n2 in spiral order. Example: Input: 3 Output: [ [ 1, 2, 3 ], [ 8, 9, 4 ], [ 7, 6, 5 ] ] """ class Solution(object): def generate_matrix(self, n): """ :type n: int :rtype: List[List[int]] """ matrix = [[0 for _ in range(n)] for _ in range(n)] left = 0 right = n - 1 top = 0 bottom = n - 1 counter = 1 while left <= right and top <= bottom: for i in range(left, right + 1): matrix[top][i] = counter print(matrix[top][i], top, i) counter += 1 top += 1 for i in range(top, bottom + 1): matrix[i][right] = counter print(matrix[i][right], i, right) counter += 1 right -= 1 for i in range(right, left - 1, -1): matrix[bottom][i] = counter print(matrix[bottom][i], bottom, i) counter += 1 bottom -= 1 for i in range(bottom, top - 1, -1): matrix[i][left] = counter print(matrix[i][left], i, left) counter += 1 left += 1 return matrix
""" Exceptions. """ class OperationFailError(Exception): """Operation fail exception.""" pass class TaskNameDuplicateError(Exception): """Duplicate task name exception.""" pass class TaskNotFoundError(Exception): """Task is not registered in schedule manager.""" pass class TimeFormatError(Exception): """Time format error.""" pass
""" Exceptions. """ class Operationfailerror(Exception): """Operation fail exception.""" pass class Tasknameduplicateerror(Exception): """Duplicate task name exception.""" pass class Tasknotfounderror(Exception): """Task is not registered in schedule manager.""" pass class Timeformaterror(Exception): """Time format error.""" pass
EXPERIMENTAL_MODE = True # header chunk id HEADER = 0x1 class Chunks13: SHADERS = 0x2 VISUALS = 0x3 PORTALS = 0x4 LIGHT_DYNAMIC = 0x6 GLOWS = 0x7 SECTORS = 0x8 VB = 0x9 IB = 0xa SWIS = 0xb class Chunks12: SHADERS = 0x2 VISUALS = 0x3 PORTALS = 0x4 LIGHT_DYNAMIC = 0x6 GLOWS = 0x7 SECTORS = 0x8 IB = 0x9 VB = 0xa SWIS = 0xb class Chunks10: SHADERS = 0x2 VISUALS = 0x3 PORTALS = 0x4 LIGHT_DYNAMIC = 0x6 GLOWS = 0x7 SECTORS = 0x8 IB = 0x9 VB = 0xa class Chunks9: SHADERS = 0x2 VISUALS = 0x3 VB_OLD = 0x4 CFORM = 0x5 PORTALS = 0x6 SHADER_CONSTANT = 0x7 LIGHT_DYNAMIC = 0x8 GLOWS = 0x9 SECTORS = 0xa IB = 0xb VB = 0xc class Chunks8: SHADERS = 0x2 VISUALS = 0x3 VB = 0x4 CFORM = 0x5 PORTALS = 0x6 LIGHT_DYNAMIC = 0x7 GLOWS = 0x9 SECTORS = 0xa class Chunks5: TEXTURES = 0x2 SHADERS = 0x3 VISUALS = 0x4 VB = 0x5 CFORM = 0x6 PORTALS = 0x7 LIGHT_DYNAMIC = 0x8 LIGHT_KEY_FRAMES = 0x9 GLOWS = 0xa SECTORS = 0xb class Chunks4: TEXTURES = 0x2 SHADERS = 0x3 VISUALS = 0x4 VB = 0x5 CFORM = 0x6 PORTALS = 0x7 LIGHT_DYNAMIC = 0x8 LIGHT_KEY_FRAMES = 0x9 GLOWS = 0xa SECTORS = 0xb class SectorChunks: PORTALS = 0x1 ROOT = 0x2 SECTOR_PORTAL_SIZE = 2 PORTAL_SIZE = 80 PORTAL_VERTEX_COUNT = 6 GLOW_SIZE = 18 GLOW_SIZE_V5 = 24 # light constants LIGHT_DYNAMIC_SIZE = 108 LIGHT_DYNAMIC_SIZE_V8 = 176 LIGHT_DYNAMIC_SIZE_V5 = 124 D3D_LIGHT_POINT = 1 D3D_LIGHT_SPOT = 2 D3D_LIGHT_DIRECTIONAL = 3 LIGHT_V8_NAME_LEN = 64 VERSION_14 = 14 VERSION_13 = 13 VERSION_12 = 12 VERSION_11 = 11 VERSION_10 = 10 VERSION_9 = 9 VERSION_8 = 8 VERSION_5 = 5 VERSION_4 = 4 if EXPERIMENTAL_MODE: SUPPORTED_VERSIONS = ( VERSION_14, VERSION_13, VERSION_12, VERSION_11, VERSION_10, VERSION_9, VERSION_8, VERSION_5, VERSION_4 ) else: SUPPORTED_VERSIONS = (VERSION_14, ) # vertex buffer type names FLOAT2 = 'FLOAT2' FLOAT3 = 'FLOAT3' FLOAT4 = 'FLOAT4' D3DCOLOR = 'D3DCOLOR' SHORT2 = 'SHORT2' SHORT4 = 'SHORT4' UNUSED = 'UNUSED' # vertex buffer method names DEFAULT = 'DEFAULT' PARTIALU = 'PARTIALU' PARTIALV = 'PARTIALV' CROSSUV = 'CROSSUV' UV = 'UV' # vertex buffer usage names POSITION = 'POSITION' BLENDWEIGHT = 'BLENDWEIGHT' BLENDINDICES = 'BLENDINDICES' NORMAL = 'NORMAL' PSIZE = 'PSIZE' TEXCOORD = 'TEXCOORD' TANGENT = 'TANGENT' BINORMAL = 'BINORMAL' TESSFACTOR = 'TESSFACTOR' POSITIONT = 'POSITIONT' COLOR = 'COLOR' FOG = 'FOG' DEPTH = 'DEPTH' SAMPLE = 'SAMPLE' types = { 1: FLOAT2, 2: FLOAT3, 3: FLOAT4, 4: D3DCOLOR, 6: SHORT2, 7: SHORT4, 17: UNUSED } types_struct = { 1: '2f', # FLOAT2 2: '3f', # FLOAT3 3: '4f', # FLOAT4 4: '4B', # D3DCOLOR 6: '2h', # SHORT2 7: '2h2H' # SHORT4 } types_values = { FLOAT2: 1, FLOAT3: 2, FLOAT4: 3, D3DCOLOR: 4, SHORT2: 6, SHORT4: 7, UNUSED: 17 } methods = { 0: DEFAULT, 1: PARTIALU, 2: PARTIALV, 3: CROSSUV, 4: UV } usage = { 0: POSITION, 1: BLENDWEIGHT, 2: BLENDINDICES, 3: NORMAL, 4: PSIZE, 5: TEXCOORD, 6: TANGENT, 7: BINORMAL, 8: TESSFACTOR, 9: POSITIONT, 10: COLOR, 11: FOG, 12: DEPTH, 12: SAMPLE } usage_values = { POSITION: 0, BLENDWEIGHT: 1, BLENDINDICES: 2, NORMAL: 3, PSIZE: 4, TEXCOORD: 5, TANGENT: 6, BINORMAL: 7, TESSFACTOR: 8, POSITIONT: 9, COLOR: 10, FOG: 11, DEPTH: 12, SAMPLE: 12 # ??? } UV_COEFFICIENT = 1024 UV_COEFFICIENT_2 = 2048 LIGHT_MAP_UV_COEFFICIENT = 2 ** 15 - 1 # cform CFORM_VERSION_4 = 4 CFORM_VERSION_3 = 3 CFORM_VERSION_2 = 2 CFORM_SUPPORT_VERSIONS = (CFORM_VERSION_4, CFORM_VERSION_3, CFORM_VERSION_2) # vertex types VERTEX_TYPE_TREE = [ (usage_values[POSITION], types_values[FLOAT3]), (usage_values[NORMAL], types_values[D3DCOLOR]), (usage_values[TANGENT], types_values[D3DCOLOR]), (usage_values[BINORMAL], types_values[D3DCOLOR]), (usage_values[TEXCOORD], types_values[SHORT4]) ] # version 14 VERTEX_TYPE_BRUSH_14 = [ (usage_values[POSITION], types_values[FLOAT3]), (usage_values[NORMAL], types_values[D3DCOLOR]), (usage_values[TANGENT], types_values[D3DCOLOR]), (usage_values[BINORMAL], types_values[D3DCOLOR]), (usage_values[TEXCOORD], types_values[SHORT2]), (usage_values[TEXCOORD], types_values[SHORT2]) ] # version 13 VERTEX_TYPE_BRUSH_13 = [ (usage_values[POSITION], types_values[FLOAT3]), (usage_values[NORMAL], types_values[D3DCOLOR]), (usage_values[TANGENT], types_values[D3DCOLOR]), (usage_values[BINORMAL], types_values[D3DCOLOR]), (usage_values[TEXCOORD], types_values[FLOAT2]), (usage_values[TEXCOORD], types_values[SHORT2]) ] # version 12 VERTEX_TYPE_BRUSH_12 = [ (usage_values[POSITION], types_values[FLOAT3]), (usage_values[NORMAL], types_values[D3DCOLOR]), (usage_values[TEXCOORD], types_values[FLOAT2]), (usage_values[TEXCOORD], types_values[SHORT2]) ] # version 13 VERTEX_TYPE_COLOR_13 = [ (usage_values[POSITION], types_values[FLOAT3]), (usage_values[NORMAL], types_values[D3DCOLOR]), (usage_values[TANGENT], types_values[D3DCOLOR]), (usage_values[BINORMAL], types_values[D3DCOLOR]), (usage_values[COLOR], types_values[D3DCOLOR]), (usage_values[TEXCOORD], types_values[FLOAT2]) ] # version 12 VERTEX_TYPE_COLOR_12 = [ (usage_values[POSITION], types_values[FLOAT3]), (usage_values[NORMAL], types_values[D3DCOLOR]), (usage_values[COLOR], types_values[D3DCOLOR]), (usage_values[TEXCOORD], types_values[FLOAT2]) ] # version 14 VERTEX_TYPE_COLOR_14 = [ (usage_values[POSITION], types_values[FLOAT3]), (usage_values[NORMAL], types_values[D3DCOLOR]), (usage_values[TANGENT], types_values[D3DCOLOR]), (usage_values[BINORMAL], types_values[D3DCOLOR]), (usage_values[COLOR], types_values[D3DCOLOR]), (usage_values[TEXCOORD], types_values[SHORT2]) ] # version 14 VERTEX_TYPE_FASTPATH = [ (usage_values[POSITION], types_values[FLOAT3]), ] # directx 3d 7 vertex formats class D3D7FVF: POSITION_MASK = 0x00e XYZ = 0x002 # x, y, z NORMAL = 0x010 # not used DIFFUSE = 0x040 # quantized normal SPECULAR = 0x080 # not used NC_MASK = 0x0f0 # not used TEX1 = 0x100 # base texture TEX2 = 0x200 # base texture + light map TEXCOUNT_MASK = 0xf00 TEXCOUNT_SHIFT = 8 # directx 3d 9 vertex formats class D3D9FVF: XYZ = 0x002 # x, y, z NORMAL = 0x010 TEXCOUNT_SHIFT = 8 # ogf vertex format without skeleton (normal or progressive) FVF_OGF = D3D9FVF.XYZ | D3D9FVF.NORMAL | (1 << D3D9FVF.TEXCOUNT_SHIFT)
experimental_mode = True header = 1 class Chunks13: shaders = 2 visuals = 3 portals = 4 light_dynamic = 6 glows = 7 sectors = 8 vb = 9 ib = 10 swis = 11 class Chunks12: shaders = 2 visuals = 3 portals = 4 light_dynamic = 6 glows = 7 sectors = 8 ib = 9 vb = 10 swis = 11 class Chunks10: shaders = 2 visuals = 3 portals = 4 light_dynamic = 6 glows = 7 sectors = 8 ib = 9 vb = 10 class Chunks9: shaders = 2 visuals = 3 vb_old = 4 cform = 5 portals = 6 shader_constant = 7 light_dynamic = 8 glows = 9 sectors = 10 ib = 11 vb = 12 class Chunks8: shaders = 2 visuals = 3 vb = 4 cform = 5 portals = 6 light_dynamic = 7 glows = 9 sectors = 10 class Chunks5: textures = 2 shaders = 3 visuals = 4 vb = 5 cform = 6 portals = 7 light_dynamic = 8 light_key_frames = 9 glows = 10 sectors = 11 class Chunks4: textures = 2 shaders = 3 visuals = 4 vb = 5 cform = 6 portals = 7 light_dynamic = 8 light_key_frames = 9 glows = 10 sectors = 11 class Sectorchunks: portals = 1 root = 2 sector_portal_size = 2 portal_size = 80 portal_vertex_count = 6 glow_size = 18 glow_size_v5 = 24 light_dynamic_size = 108 light_dynamic_size_v8 = 176 light_dynamic_size_v5 = 124 d3_d_light_point = 1 d3_d_light_spot = 2 d3_d_light_directional = 3 light_v8_name_len = 64 version_14 = 14 version_13 = 13 version_12 = 12 version_11 = 11 version_10 = 10 version_9 = 9 version_8 = 8 version_5 = 5 version_4 = 4 if EXPERIMENTAL_MODE: supported_versions = (VERSION_14, VERSION_13, VERSION_12, VERSION_11, VERSION_10, VERSION_9, VERSION_8, VERSION_5, VERSION_4) else: supported_versions = (VERSION_14,) float2 = 'FLOAT2' float3 = 'FLOAT3' float4 = 'FLOAT4' d3_dcolor = 'D3DCOLOR' short2 = 'SHORT2' short4 = 'SHORT4' unused = 'UNUSED' default = 'DEFAULT' partialu = 'PARTIALU' partialv = 'PARTIALV' crossuv = 'CROSSUV' uv = 'UV' position = 'POSITION' blendweight = 'BLENDWEIGHT' blendindices = 'BLENDINDICES' normal = 'NORMAL' psize = 'PSIZE' texcoord = 'TEXCOORD' tangent = 'TANGENT' binormal = 'BINORMAL' tessfactor = 'TESSFACTOR' positiont = 'POSITIONT' color = 'COLOR' fog = 'FOG' depth = 'DEPTH' sample = 'SAMPLE' types = {1: FLOAT2, 2: FLOAT3, 3: FLOAT4, 4: D3DCOLOR, 6: SHORT2, 7: SHORT4, 17: UNUSED} types_struct = {1: '2f', 2: '3f', 3: '4f', 4: '4B', 6: '2h', 7: '2h2H'} types_values = {FLOAT2: 1, FLOAT3: 2, FLOAT4: 3, D3DCOLOR: 4, SHORT2: 6, SHORT4: 7, UNUSED: 17} methods = {0: DEFAULT, 1: PARTIALU, 2: PARTIALV, 3: CROSSUV, 4: UV} usage = {0: POSITION, 1: BLENDWEIGHT, 2: BLENDINDICES, 3: NORMAL, 4: PSIZE, 5: TEXCOORD, 6: TANGENT, 7: BINORMAL, 8: TESSFACTOR, 9: POSITIONT, 10: COLOR, 11: FOG, 12: DEPTH, 12: SAMPLE} usage_values = {POSITION: 0, BLENDWEIGHT: 1, BLENDINDICES: 2, NORMAL: 3, PSIZE: 4, TEXCOORD: 5, TANGENT: 6, BINORMAL: 7, TESSFACTOR: 8, POSITIONT: 9, COLOR: 10, FOG: 11, DEPTH: 12, SAMPLE: 12} uv_coefficient = 1024 uv_coefficient_2 = 2048 light_map_uv_coefficient = 2 ** 15 - 1 cform_version_4 = 4 cform_version_3 = 3 cform_version_2 = 2 cform_support_versions = (CFORM_VERSION_4, CFORM_VERSION_3, CFORM_VERSION_2) vertex_type_tree = [(usage_values[POSITION], types_values[FLOAT3]), (usage_values[NORMAL], types_values[D3DCOLOR]), (usage_values[TANGENT], types_values[D3DCOLOR]), (usage_values[BINORMAL], types_values[D3DCOLOR]), (usage_values[TEXCOORD], types_values[SHORT4])] vertex_type_brush_14 = [(usage_values[POSITION], types_values[FLOAT3]), (usage_values[NORMAL], types_values[D3DCOLOR]), (usage_values[TANGENT], types_values[D3DCOLOR]), (usage_values[BINORMAL], types_values[D3DCOLOR]), (usage_values[TEXCOORD], types_values[SHORT2]), (usage_values[TEXCOORD], types_values[SHORT2])] vertex_type_brush_13 = [(usage_values[POSITION], types_values[FLOAT3]), (usage_values[NORMAL], types_values[D3DCOLOR]), (usage_values[TANGENT], types_values[D3DCOLOR]), (usage_values[BINORMAL], types_values[D3DCOLOR]), (usage_values[TEXCOORD], types_values[FLOAT2]), (usage_values[TEXCOORD], types_values[SHORT2])] vertex_type_brush_12 = [(usage_values[POSITION], types_values[FLOAT3]), (usage_values[NORMAL], types_values[D3DCOLOR]), (usage_values[TEXCOORD], types_values[FLOAT2]), (usage_values[TEXCOORD], types_values[SHORT2])] vertex_type_color_13 = [(usage_values[POSITION], types_values[FLOAT3]), (usage_values[NORMAL], types_values[D3DCOLOR]), (usage_values[TANGENT], types_values[D3DCOLOR]), (usage_values[BINORMAL], types_values[D3DCOLOR]), (usage_values[COLOR], types_values[D3DCOLOR]), (usage_values[TEXCOORD], types_values[FLOAT2])] vertex_type_color_12 = [(usage_values[POSITION], types_values[FLOAT3]), (usage_values[NORMAL], types_values[D3DCOLOR]), (usage_values[COLOR], types_values[D3DCOLOR]), (usage_values[TEXCOORD], types_values[FLOAT2])] vertex_type_color_14 = [(usage_values[POSITION], types_values[FLOAT3]), (usage_values[NORMAL], types_values[D3DCOLOR]), (usage_values[TANGENT], types_values[D3DCOLOR]), (usage_values[BINORMAL], types_values[D3DCOLOR]), (usage_values[COLOR], types_values[D3DCOLOR]), (usage_values[TEXCOORD], types_values[SHORT2])] vertex_type_fastpath = [(usage_values[POSITION], types_values[FLOAT3])] class D3D7Fvf: position_mask = 14 xyz = 2 normal = 16 diffuse = 64 specular = 128 nc_mask = 240 tex1 = 256 tex2 = 512 texcount_mask = 3840 texcount_shift = 8 class D3D9Fvf: xyz = 2 normal = 16 texcount_shift = 8 fvf_ogf = D3D9FVF.XYZ | D3D9FVF.NORMAL | 1 << D3D9FVF.TEXCOUNT_SHIFT
""" Author: Samrat Banerjee Date: 01-06-2018 Description: Names, Variables, Code, Functions """ # this one is like your scripts with argv def print_two(*args): arg1, arg2=args print("arg1: %r,arg2: %r"%(arg1,arg2)) # ok, that *args is actually pointless, we can just do this def print_two_again(arg1,arg2): print("arg1: %r,arg2: %r"%(arg1,arg2)) # this just takes one argument def print_one(arg1): print("arg1: %r"%arg1) # this takes no arguments def print_none(): print("I got nothin'.") print_two("Samrat","Banerjee") print_two_again("Sammy","Whammy") print_one("Sam") print_none()
""" Author: Samrat Banerjee Date: 01-06-2018 Description: Names, Variables, Code, Functions """ def print_two(*args): (arg1, arg2) = args print('arg1: %r,arg2: %r' % (arg1, arg2)) def print_two_again(arg1, arg2): print('arg1: %r,arg2: %r' % (arg1, arg2)) def print_one(arg1): print('arg1: %r' % arg1) def print_none(): print("I got nothin'.") print_two('Samrat', 'Banerjee') print_two_again('Sammy', 'Whammy') print_one('Sam') print_none()
class Solution: # time: O(1) # space: O(1) def findComplement(self, num: int) -> int: i = 1 while i <= num: i = i << 1 return (i - 1) ^ num
class Solution: def find_complement(self, num: int) -> int: i = 1 while i <= num: i = i << 1 return i - 1 ^ num
def anagrams(word, words): #your code here word_list = list(word) word_list.sort() l = [] for i in words: j = list(i) j.sort() if(j == word_list): l.append(i) return l
def anagrams(word, words): word_list = list(word) word_list.sort() l = [] for i in words: j = list(i) j.sort() if j == word_list: l.append(i) return l
#!/usr/bin/env python3 #! @author: @ruhend(Mudigonda Himansh) ''' Here in this program i have used one function to do both the encoding and decoding part of it. this works with the basic principle, of division. while division the remainder is returned. Encoding doesnt make use of it, but while decoding the remainder is == 0, if True, then it is not corrupted, else it is. Time Complexity: O(n^2) ''' def crc(msg, div, code): msg = msg + code # Concatinating message and code msg = list(msg) # Self explainatory div = list(div) # Self explainatory # print(msg,div) # Self explainatory for i in range(len(msg)-len(code)): if msg[i] == '1': for j in range(len(div)): # Performing XOR logic using %2 to remove the need of intgrating remainder with the divisor again. msg[i+j] = str((int(msg[i+j])+int(div[j])) % 2) # print(i,j, msg[i+j]) return ''.join(msg[-len(code):]) # Use a divisor that simulates: x^3 + x + 1 msg = '0111' div = '1011' print("Encode: ", msg, div) print('Message:', msg) print('Divisor:', div) code = '0'*(len(div)-1) code = crc(msg, div, code) print('Output code:', code) # FALSE 1010 code = '101' print("Decode: Testing with code = ", code) print('Corrupt:', crc(msg, div, code) != '000') # TRUE 1010 code = '011' print("Decode: Testing with code = ", code) print('Corrupt:', crc(msg, div, code) != '000') # False 0111 code = '001' print("Decode: Testing with code = ", code) print('Corrupt:', crc(msg, div, code) != '000') # TRUE 0111 code = '010' print("Decode: Testing with code = ", code) print('Corrupt:', crc(msg, div, code) != '000') # # TEST 2 #################################################################### # print('Test 2 ---------------------------') # # Use a divisor that simulates: x^2 + 1 # div = '0101' # msg = '00101111011101' # print('Input message:', msg) # print('Divisor:', div) # # Enter the message and divisor to calculate the error-checking code # code = crc(msg, div) # print('Output code:', code) # # Perform a test to check that the code, when run back through, returns an # # output code of '000' proving that the function worked correctly # print('Success:', crc(msg, div, code) == '000')
""" Here in this program i have used one function to do both the encoding and decoding part of it. this works with the basic principle, of division. while division the remainder is returned. Encoding doesnt make use of it, but while decoding the remainder is == 0, if True, then it is not corrupted, else it is. Time Complexity: O(n^2) """ def crc(msg, div, code): msg = msg + code msg = list(msg) div = list(div) for i in range(len(msg) - len(code)): if msg[i] == '1': for j in range(len(div)): msg[i + j] = str((int(msg[i + j]) + int(div[j])) % 2) return ''.join(msg[-len(code):]) msg = '0111' div = '1011' print('Encode: ', msg, div) print('Message:', msg) print('Divisor:', div) code = '0' * (len(div) - 1) code = crc(msg, div, code) print('Output code:', code) code = '101' print('Decode: Testing with code = ', code) print('Corrupt:', crc(msg, div, code) != '000') code = '011' print('Decode: Testing with code = ', code) print('Corrupt:', crc(msg, div, code) != '000') code = '001' print('Decode: Testing with code = ', code) print('Corrupt:', crc(msg, div, code) != '000') code = '010' print('Decode: Testing with code = ', code) print('Corrupt:', crc(msg, div, code) != '000')
class ExerciseStep: def __init__(self, main_text:str, sub_text=""): self.main_text = main_text self.sub_text = sub_text
class Exercisestep: def __init__(self, main_text: str, sub_text=''): self.main_text = main_text self.sub_text = sub_text
class BackEnd: def __init__(self, id, Nome, Descricao, Versao): self.id = id self.nome = Nome self.descricao = Descricao self.versao = Versao def __str__(self): return f"{self.id},{self.nome},{self.descricao},{self.versao}"
class Backend: def __init__(self, id, Nome, Descricao, Versao): self.id = id self.nome = Nome self.descricao = Descricao self.versao = Versao def __str__(self): return f'{self.id},{self.nome},{self.descricao},{self.versao}'
_base_ = [ '../_base_/models/faster_rcnn_r50_fpn.py', '../_base_/datasets/rect_blur_detection.py', '../_base_/schedules/schedule_2x.py', '../_base_/default_runtime.py'] optimizer = dict(type='SGD', lr=0.0005, momentum=0.9, weight_decay=0.0001) model = dict( roi_head=dict( type='DoubleHeadRoIHead', reg_roi_scale_factor=1.3, bbox_roi_extractor=dict( type='SingleRoIExtractor', roi_layer=dict(type='RoIAlign', output_size=7, sampling_ratio=0), out_channels=256, featmap_strides=[4, 8, 16, 32]), bbox_head=dict( _delete_=True, type='DoubleConvFCBBoxHead', num_convs=4, num_fcs=2, in_channels=256, conv_out_channels=1024, fc_out_channels=256, roi_feat_size=7, num_classes=4, num_classes_cls=56, bbox_coder=dict( type='DeltaXYWHBBoxCoder', target_means=[0., 0., 0., 0.], target_stds=[0.1, 0.1, 0.2, 0.2]), reg_class_agnostic=False, loss_cls=dict( type='CrossEntropyLoss', use_sigmoid=False, loss_weight=2.0), loss_bbox=dict(type='SmoothL1Loss', beta=1.0, loss_weight=2.0))), # model training and testing settings train_cfg=dict( rpn=dict( assigner=dict( type='MaxIoUAssigner', pos_iou_thr=0.7, neg_iou_thr=0.3, min_pos_iou=0.3, match_low_quality=True, ignore_iof_thr=-1), sampler=dict( type='RandomSampler', num=256, pos_fraction=0.5, neg_pos_ub=-1, add_gt_as_proposals=False), allowed_border=-1, pos_weight=-1, debug=False), rpn_proposal=dict( nms_pre=1000,#2000 max_per_img=500,#1000 nms=dict(type='nms', iou_threshold=0.8), min_bbox_size=0), rcnn=dict( assigner=dict( type='MaxIoUAssigner', pos_iou_thr=0.6, neg_iou_thr=0.6, min_pos_iou=0.6, match_low_quality=False, ignore_iof_thr=-1), sampler=dict( type='RandomSampler', num=256,#512 pos_fraction=0.25, neg_pos_ub=-1, add_gt_as_proposals=True), pos_weight=-1, debug=False)), test_cfg=dict( rpn=dict( nms_pre=1000, max_per_img=1000, nms=dict(type='nms', iou_threshold=0.7), min_bbox_size=0), rcnn=dict( score_thr=0.05, nms=dict(type='nms', iou_threshold=0.5), max_per_img=100) # soft-nms is also supported for rcnn testing # e.g., nms=dict(type='soft_nms', iou_threshold=0.5, min_score=0.05) ))
_base_ = ['../_base_/models/faster_rcnn_r50_fpn.py', '../_base_/datasets/rect_blur_detection.py', '../_base_/schedules/schedule_2x.py', '../_base_/default_runtime.py'] optimizer = dict(type='SGD', lr=0.0005, momentum=0.9, weight_decay=0.0001) model = dict(roi_head=dict(type='DoubleHeadRoIHead', reg_roi_scale_factor=1.3, bbox_roi_extractor=dict(type='SingleRoIExtractor', roi_layer=dict(type='RoIAlign', output_size=7, sampling_ratio=0), out_channels=256, featmap_strides=[4, 8, 16, 32]), bbox_head=dict(_delete_=True, type='DoubleConvFCBBoxHead', num_convs=4, num_fcs=2, in_channels=256, conv_out_channels=1024, fc_out_channels=256, roi_feat_size=7, num_classes=4, num_classes_cls=56, bbox_coder=dict(type='DeltaXYWHBBoxCoder', target_means=[0.0, 0.0, 0.0, 0.0], target_stds=[0.1, 0.1, 0.2, 0.2]), reg_class_agnostic=False, loss_cls=dict(type='CrossEntropyLoss', use_sigmoid=False, loss_weight=2.0), loss_bbox=dict(type='SmoothL1Loss', beta=1.0, loss_weight=2.0))), train_cfg=dict(rpn=dict(assigner=dict(type='MaxIoUAssigner', pos_iou_thr=0.7, neg_iou_thr=0.3, min_pos_iou=0.3, match_low_quality=True, ignore_iof_thr=-1), sampler=dict(type='RandomSampler', num=256, pos_fraction=0.5, neg_pos_ub=-1, add_gt_as_proposals=False), allowed_border=-1, pos_weight=-1, debug=False), rpn_proposal=dict(nms_pre=1000, max_per_img=500, nms=dict(type='nms', iou_threshold=0.8), min_bbox_size=0), rcnn=dict(assigner=dict(type='MaxIoUAssigner', pos_iou_thr=0.6, neg_iou_thr=0.6, min_pos_iou=0.6, match_low_quality=False, ignore_iof_thr=-1), sampler=dict(type='RandomSampler', num=256, pos_fraction=0.25, neg_pos_ub=-1, add_gt_as_proposals=True), pos_weight=-1, debug=False)), test_cfg=dict(rpn=dict(nms_pre=1000, max_per_img=1000, nms=dict(type='nms', iou_threshold=0.7), min_bbox_size=0), rcnn=dict(score_thr=0.05, nms=dict(type='nms', iou_threshold=0.5), max_per_img=100)))
trip_price = float(input()) money_balance = float(input()) spend_times = 0 days_count = 0 while spend_times < 5 and money_balance < trip_price: action = input() sum = float(input()) days_count += 1 if action == "spend": spend_times += 1 if sum >= money_balance: money_balance = 0 else: money_balance -= sum elif action == "save": spend_times = 0 money_balance += sum if spend_times >= 5: print(f"You can't save the money.") print(f"{days_count}") elif money_balance >= trip_price: print(f"You saved the money for {days_count} days.")
trip_price = float(input()) money_balance = float(input()) spend_times = 0 days_count = 0 while spend_times < 5 and money_balance < trip_price: action = input() sum = float(input()) days_count += 1 if action == 'spend': spend_times += 1 if sum >= money_balance: money_balance = 0 else: money_balance -= sum elif action == 'save': spend_times = 0 money_balance += sum if spend_times >= 5: print(f"You can't save the money.") print(f'{days_count}') elif money_balance >= trip_price: print(f'You saved the money for {days_count} days.')
def floodFill(graph, visited, start): if (start == -1): return(0) s = 0 if (not visited[start]): s += 1 visited[start] = 1 for v in graph[start]: s += floodFill(graph, visited, v) return(s) size = int(input()) graph = [[] for i in range(size)] for i in range(size - 1): v, u = map(int, input().split()) v -= 1 u -= 1 graph[v] += [u] graph[u] += [v] #print(graph) minimum = 9999999999 for i in range(size): for j in range(0, len(graph[i])): #print("Removing", graph[i][j]) b = graph[i][j] graph[i][j] = -1 visited = [0] * size #print(graph) aCity = floodFill(graph, visited, i) #print(a) bCity = floodFill(graph, visited, b) #print(b) dif = abs(aCity - bCity) minimum = min(dif, minimum) graph[i][j] = b print(minimum)
def flood_fill(graph, visited, start): if start == -1: return 0 s = 0 if not visited[start]: s += 1 visited[start] = 1 for v in graph[start]: s += flood_fill(graph, visited, v) return s size = int(input()) graph = [[] for i in range(size)] for i in range(size - 1): (v, u) = map(int, input().split()) v -= 1 u -= 1 graph[v] += [u] graph[u] += [v] minimum = 9999999999 for i in range(size): for j in range(0, len(graph[i])): b = graph[i][j] graph[i][j] = -1 visited = [0] * size a_city = flood_fill(graph, visited, i) b_city = flood_fill(graph, visited, b) dif = abs(aCity - bCity) minimum = min(dif, minimum) graph[i][j] = b print(minimum)
def keyword_from_deeper_submodule(): return 'hi again' class Sub: def keyword_from_class_in_deeper_submodule(self): return 'bye'
def keyword_from_deeper_submodule(): return 'hi again' class Sub: def keyword_from_class_in_deeper_submodule(self): return 'bye'
# Pulled from Scikit-Learn's official Github Repo (18 Sep 2020) to speed up 'caer' package import speeds (since this was the only method referenced from sklearn) MAXPRINT = 50 class spmatrix(object): """ This class provides a base class for all sparse matrices. It cannot be instantiated. Most of the work is provided by subclasses. """ def __init__(self, maxprint=MAXPRINT): self._shape = None if self.__class__.__name__ == 'spmatrix': raise ValueError("This class is not intended" " to be instantiated directly.") self.maxprint = maxprint # Any sparse matrix format deriving from spmatrix must define one of # tocsr or tocoo. The other conversion methods may be implemented for # efficiency, but are not required. def tocsr(self, copy=False): """Convert this matrix to Compressed Sparse Row format. With copy=False, the data/indices may be shared between this matrix and the resultant csr_matrix. """ return self.tocoo(copy=copy).tocsr(copy=False) def tocoo(self, copy=False): """Convert this matrix to COOrdinate format. With copy=False, the data/indices may be shared between this matrix and the resultant coo_matrix. """ return self.tocsr(copy=False).tocoo(copy=copy)
maxprint = 50 class Spmatrix(object): """ This class provides a base class for all sparse matrices. It cannot be instantiated. Most of the work is provided by subclasses. """ def __init__(self, maxprint=MAXPRINT): self._shape = None if self.__class__.__name__ == 'spmatrix': raise value_error('This class is not intended to be instantiated directly.') self.maxprint = maxprint def tocsr(self, copy=False): """Convert this matrix to Compressed Sparse Row format. With copy=False, the data/indices may be shared between this matrix and the resultant csr_matrix. """ return self.tocoo(copy=copy).tocsr(copy=False) def tocoo(self, copy=False): """Convert this matrix to COOrdinate format. With copy=False, the data/indices may be shared between this matrix and the resultant coo_matrix. """ return self.tocsr(copy=False).tocoo(copy=copy)
""" Copyright: MAXON Computer GmbH Author: Maxime Adam Description: - Example to customize the icon used for a script. - The icon should be named like the .py file. - Should be a TIF with a size of 32x32. """
""" Copyright: MAXON Computer GmbH Author: Maxime Adam Description: - Example to customize the icon used for a script. - The icon should be named like the .py file. - Should be a TIF with a size of 32x32. """
#!/usr/bin/python # -*- coding: utf-8 -*- print("Note : Starting GUI...")
print('Note : Starting GUI...')
# # PySNMP MIB module CISCO-CDSTV-INGESTMGR-MIB (http://snmplabs.com/pysmi) # ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/CISCO-CDSTV-INGESTMGR-MIB # Produced by pysmi-0.3.4 at Wed May 1 11:53:05 2019 # On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4 # Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15) # Integer, ObjectIdentifier, OctetString = mibBuilder.importSymbols("ASN1", "Integer", "ObjectIdentifier", "OctetString") NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues") ConstraintsUnion, ConstraintsIntersection, ValueRangeConstraint, ValueSizeConstraint, SingleValueConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsUnion", "ConstraintsIntersection", "ValueRangeConstraint", "ValueSizeConstraint", "SingleValueConstraint") ciscoMgmt, = mibBuilder.importSymbols("CISCO-SMI", "ciscoMgmt") TimeIntervalMin, TimeIntervalSec, CiscoURLString, CiscoURLStringOrEmpty = mibBuilder.importSymbols("CISCO-TC", "TimeIntervalMin", "TimeIntervalSec", "CiscoURLString", "CiscoURLStringOrEmpty") InetAddressType, InetPortNumber, InetAddress = mibBuilder.importSymbols("INET-ADDRESS-MIB", "InetAddressType", "InetPortNumber", "InetAddress") ObjectGroup, ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ObjectGroup", "ModuleCompliance", "NotificationGroup") iso, TimeTicks, Bits, NotificationType, IpAddress, ObjectIdentity, Integer32, Counter64, Unsigned32, MibScalar, MibTable, MibTableRow, MibTableColumn, Gauge32, MibIdentifier, Counter32, ModuleIdentity = mibBuilder.importSymbols("SNMPv2-SMI", "iso", "TimeTicks", "Bits", "NotificationType", "IpAddress", "ObjectIdentity", "Integer32", "Counter64", "Unsigned32", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Gauge32", "MibIdentifier", "Counter32", "ModuleIdentity") TextualConvention, TruthValue, DisplayString = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "TruthValue", "DisplayString") ciscoCdstvIngestmgrMIB = ModuleIdentity((1, 3, 6, 1, 4, 1, 9, 9, 739)) ciscoCdstvIngestmgrMIB.setRevisions(('2010-05-27 00:00',)) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): if mibBuilder.loadTexts: ciscoCdstvIngestmgrMIB.setRevisionsDescriptions(('Initial version of this MIB module.',)) if mibBuilder.loadTexts: ciscoCdstvIngestmgrMIB.setLastUpdated('201005270000Z') if mibBuilder.loadTexts: ciscoCdstvIngestmgrMIB.setOrganization('Cisco Systems, Inc.') if mibBuilder.loadTexts: ciscoCdstvIngestmgrMIB.setContactInfo('Cisco Systems Customer Service Postal: 170 W Tasman Drive San Jose, CA 95134 USA Tel: +1 800 553-NETS E-mail: cs-cds@cisco.com') if mibBuilder.loadTexts: ciscoCdstvIngestmgrMIB.setDescription("This MIB module defines ingest manager configuration objects that faciliate the management of the Cisco Content Delivery System for TV (CDS-TV) product family. CDS-TV is a suite of products and software applications providing ingest, storage, caching, streaming, playout and on-demand delivery of video to television or set-top-box clients. Abbreviations: CCP Cache Control Protocol CDS Content Delivery System CORBA Common Object Request Broker Architecture ISA Interactive Services Architecture ISV Integrated Streamer-Vault FSI File Service Interface FTP File Transfer Protocol MPEG Motion Picture Experts Group MSA Managed Services Architecture RTSP Real-Time Streaming Protocol STB Set-Top Box Common terms: Catcher: Device responsible for receiving content (typically via satellite dishes and antennae) from content providers or from a Headend-In-The-Sky. Content Ingest: Acquisition of content from a source such as a catcher or an FTP server for storing it locally and making it available to streamers as needed. Ingest Manager: CDS module that takes care of provisioned content objects by collecting metadata, sending messages to the appropriate subsystem to ingest the content, and sending messages to expire the content when the expiration period has passed. Device Roles: Vault: Content delivery application responsible for ingesting and storing video content and making it available to streamers and/or caching nodes. Caching Nodes: Content delivery application responsible for caching content from vault (using CCP) and then streaming content out to streamers over HTTP or CCP. Streamer: Content delivery application responsible for streaming video out to STB's. ISV: Content delivery application capable of acting as both a vault and as a streamer in a single device.") ciscoCdstvIngestMgrMIBNotifs = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 739, 0)) ciscoCdstvIngestMgrMIBObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 739, 1)) ciscoCdstvIngestMgrMIBConform = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 739, 2)) ciscoCdstvIngestMgrMIBCompliances = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 739, 2, 1)) cdstvIngestMgrGeneralSettings = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 739, 1, 1)) cdstvIngestMgrIngestSettings = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 739, 1, 2)) cdstvIngestMgrBackOfficeSettings = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 739, 1, 3)) cdstvIngestMgrContentStoreSettings = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 739, 1, 4)) cdstvIngestMgrEncryptionSettings = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 739, 1, 5)) cdstvIngestMgrHostAddressType = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 739, 1, 1, 1), InetAddressType()).setMaxAccess("readwrite") if mibBuilder.loadTexts: cdstvIngestMgrHostAddressType.setStatus('current') if mibBuilder.loadTexts: cdstvIngestMgrHostAddressType.setDescription('This object specifies the type of the IP address (specified by cdstvIngestMgrHostAddress) of the Ingest Manager.') cdstvIngestMgrHostAddress = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 739, 1, 1, 2), InetAddress()).setMaxAccess("readwrite") if mibBuilder.loadTexts: cdstvIngestMgrHostAddress.setStatus('current') if mibBuilder.loadTexts: cdstvIngestMgrHostAddress.setDescription('This object specifies the IP address of the Ingest Manager. The type of this address is specified by cdstvIngestMgrHostAddressType.') cdstvIngestMgrPort = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 739, 1, 1, 3), InetPortNumber().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: cdstvIngestMgrPort.setStatus('current') if mibBuilder.loadTexts: cdstvIngestMgrPort.setDescription('This object specifies the port number to use for listening for inbound connections.') cdstvIngestMgrFsiCallbackPort = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 739, 1, 1, 4), InetPortNumber().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: cdstvIngestMgrFsiCallbackPort.setStatus('current') if mibBuilder.loadTexts: cdstvIngestMgrFsiCallbackPort.setDescription('This object specifies the port number to use for File Services Interface (FSI) callbacks.') cdstvIngestMgrAdditionalPackageWindow = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 739, 1, 1, 5), Unsigned32()).setUnits('days').setMaxAccess("readwrite") if mibBuilder.loadTexts: cdstvIngestMgrAdditionalPackageWindow.setStatus('current') if mibBuilder.loadTexts: cdstvIngestMgrAdditionalPackageWindow.setDescription('This object specifies the additional amount of time to wait once the package expiration window has ended before destroying the stored content package. Typically, when the package expiration window ends, the ingested content package is destroyed from the device. The additional package window adds a grace period to the expiration window.') cdstvIngestMgrFtpTimeout = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 739, 1, 1, 6), TimeIntervalSec()).setMaxAccess("readwrite") if mibBuilder.loadTexts: cdstvIngestMgrFtpTimeout.setStatus('current') if mibBuilder.loadTexts: cdstvIngestMgrFtpTimeout.setDescription('This object specifies the maximum period the Ingest Manager waits before timing out an FTP session and terminating the process.') cdstvIngestMgrUseAssetIdEnable = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 739, 1, 1, 7), TruthValue()).setMaxAccess("readwrite") if mibBuilder.loadTexts: cdstvIngestMgrUseAssetIdEnable.setStatus('current') if mibBuilder.loadTexts: cdstvIngestMgrUseAssetIdEnable.setDescription("This object specifies whether to use the Asset ID (a unique ID assigned to each content ingested into the CDS) for the content name. 'true' indicates that Asset ID is used for the content name. 'false' indicates Asset ID is not used for the content name.") cdstvIngestMgrManageCorbaServices = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 739, 1, 1, 8), TruthValue()).setMaxAccess("readwrite") if mibBuilder.loadTexts: cdstvIngestMgrManageCorbaServices.setStatus('current') if mibBuilder.loadTexts: cdstvIngestMgrManageCorbaServices.setDescription("This object specifies whether the CDS manages the CORBA services. 'true' indicates that CDS manages CORBA services. 'false' indicates that CDS does not manage CORBA services.") cdstvIngestMgrRequireNotifyService = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 739, 1, 1, 9), TruthValue()).setMaxAccess("readwrite") if mibBuilder.loadTexts: cdstvIngestMgrRequireNotifyService.setStatus('current') if mibBuilder.loadTexts: cdstvIngestMgrRequireNotifyService.setDescription("This object specifies whether the CDS requires the use of ISA Notify Service. 'true' indicates that CDS requires the use of ISA Notify Service. 'false' indicates that CDS does not require the use of ISA Notify Service.") cdstvIngestMgrDebugLevel = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 739, 1, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("errors", 1), ("all", 2), ("off", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: cdstvIngestMgrDebugLevel.setStatus('current') if mibBuilder.loadTexts: cdstvIngestMgrDebugLevel.setDescription('This object specifies the amount of debugging information logged. errors(1) - Only error messages are logged. all(2) - Errors, warnings and success message are all logged. off(3) - Debugging is disabled.') cdstvIngestMgrMetaDataPublish = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 739, 1, 1, 11), TruthValue()).setMaxAccess("readwrite") if mibBuilder.loadTexts: cdstvIngestMgrMetaDataPublish.setStatus('current') if mibBuilder.loadTexts: cdstvIngestMgrMetaDataPublish.setDescription("This object specifies whether content metadata is published or not. 'true' indicates that content metadata is published. 'false' indicates that content metadata is not published.") cdstvIngestMgrMetaPublishUrl = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 739, 1, 1, 12), CiscoURLString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: cdstvIngestMgrMetaPublishUrl.setStatus('current') if mibBuilder.loadTexts: cdstvIngestMgrMetaPublishUrl.setDescription('This object specifies the URL where the metadata is published, typically the back-office.') cdstvIngestMgrMetaPublishBackupUrl = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 739, 1, 1, 13), CiscoURLStringOrEmpty()).setMaxAccess("readwrite") if mibBuilder.loadTexts: cdstvIngestMgrMetaPublishBackupUrl.setStatus('current') if mibBuilder.loadTexts: cdstvIngestMgrMetaPublishBackupUrl.setDescription('This object specifies the URL of the backup server where the metadata is published. This string is empty if a backup server URL is not configured.') cdstvIngestMgrIngestInterface = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 739, 1, 2, 1), Bits().clone(namedValues=NamedValues(("isa", 0), ("ciscoSoap", 1), ("prodisSoap", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: cdstvIngestMgrIngestInterface.setStatus('current') if mibBuilder.loadTexts: cdstvIngestMgrIngestInterface.setDescription('This object specifies all ingest interfaces (methods) available, i.e. ISA, Cisco SOAP, Prodis SOAP or any combination of the three. isa(0) - ISA. ciscoSoap(1) - Cisco SOAP prodisSoap(2) - Prodis SOAP.') cdstvIngestMgrCiscoSoapUrl = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 739, 1, 2, 2), CiscoURLStringOrEmpty()).setMaxAccess("readwrite") if mibBuilder.loadTexts: cdstvIngestMgrCiscoSoapUrl.setStatus('current') if mibBuilder.loadTexts: cdstvIngestMgrCiscoSoapUrl.setDescription('This object specifies the URL (IP address, port, and directory) on the Vault used to receive content using the Cisco SOAP (Simple Object Access Protocol). An example of the Cisco SOAP URL is http://10.22.216.251:8793/CiscoAIM. This string is empty if Cisco SOAP is not used.') cdstvIngestMgrProdisSoapUrl = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 739, 1, 2, 3), CiscoURLStringOrEmpty()).setMaxAccess("readwrite") if mibBuilder.loadTexts: cdstvIngestMgrProdisSoapUrl.setStatus('current') if mibBuilder.loadTexts: cdstvIngestMgrProdisSoapUrl.setDescription('This object specifies the URL (IP address, port, and directory) on the Vault used to receive content using the Prodis SOAP(Simple Object Access Protocol). An example of the Prodis SOAP URL is http://10.22.216.251:8793/ProdisAIM. This string is empty if Prodis SOAP is not used.') cdstvIngestMgrBackOfficeMaxRetries = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 739, 1, 3, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 1000))).setMaxAccess("readwrite") if mibBuilder.loadTexts: cdstvIngestMgrBackOfficeMaxRetries.setStatus('current') if mibBuilder.loadTexts: cdstvIngestMgrBackOfficeMaxRetries.setDescription('This object specifies the maximum number of times to retry a failed communication with the back-office.') cdstvIngestMgrBackOfficeRetryInterval = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 739, 1, 3, 2), TimeIntervalMin()).setMaxAccess("readwrite") if mibBuilder.loadTexts: cdstvIngestMgrBackOfficeRetryInterval.setStatus('current') if mibBuilder.loadTexts: cdstvIngestMgrBackOfficeRetryInterval.setDescription('This object specifies the amount of time to wait before retrying a failed communication with the back-office.') cdstvIngestMgrBackOfficeTimeout = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 739, 1, 3, 3), TimeIntervalSec()).setMaxAccess("readwrite") if mibBuilder.loadTexts: cdstvIngestMgrBackOfficeTimeout.setStatus('current') if mibBuilder.loadTexts: cdstvIngestMgrBackOfficeTimeout.setDescription('This object specifies the amount of time to wait for the back-office to respond to a communication attempt.') cdstvIngestMgrBackOfficeTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 739, 1, 3, 4), ) if mibBuilder.loadTexts: cdstvIngestMgrBackOfficeTable.setStatus('current') if mibBuilder.loadTexts: cdstvIngestMgrBackOfficeTable.setDescription('A table containing the back-office type and URL settings.') cdstvIngestMgrBackOfficeEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 739, 1, 3, 4, 1), ).setIndexNames((0, "CISCO-CDSTV-INGESTMGR-MIB", "cdstvIngestMgrBackOfficeIndex")) if mibBuilder.loadTexts: cdstvIngestMgrBackOfficeEntry.setStatus('current') if mibBuilder.loadTexts: cdstvIngestMgrBackOfficeEntry.setDescription('An entry (conceptual row) in the table of back-office type and URL settings. Rows are added if new back-offices are configured and deleted if back-offices are disabled.') cdstvIngestMgrBackOfficeIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 739, 1, 3, 4, 1, 1), Unsigned32()) if mibBuilder.loadTexts: cdstvIngestMgrBackOfficeIndex.setStatus('current') if mibBuilder.loadTexts: cdstvIngestMgrBackOfficeIndex.setDescription('This object uniquely identifies a back-office.') cdstvIngestMgrBackOfficeType = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 739, 1, 3, 4, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("none", 1), ("totalManage", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: cdstvIngestMgrBackOfficeType.setStatus('current') if mibBuilder.loadTexts: cdstvIngestMgrBackOfficeType.setDescription('This object specifies the type of back-office support used. none(1) - No back-office support. totalManage(2) - Use TotalManage back-office support.') cdstvIngestMgrBackOfficeUrl = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 739, 1, 3, 4, 1, 3), CiscoURLStringOrEmpty()).setMaxAccess("readwrite") if mibBuilder.loadTexts: cdstvIngestMgrBackOfficeUrl.setStatus('current') if mibBuilder.loadTexts: cdstvIngestMgrBackOfficeUrl.setDescription('This object specifies the location (URL) of the back-office. This string is empty if back-office support is disabled.') cdstvIngestMgrContentStore = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 739, 1, 4, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("none", 1), ("isa", 2), ("fsi", 3), ("ngod", 4), ("openStream", 5)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: cdstvIngestMgrContentStore.setStatus('current') if mibBuilder.loadTexts: cdstvIngestMgrContentStore.setDescription('This object specifies the type of content store used. none(1) - Content store is disabled. isa(2) - Use ISA content store. fsi(3) - Use FSI content store. ngod(4) - Use Next-Generation On-Demand (NGOD) content store. openStream(5) - Use OpenStream content store.') cdstvIngestMgrContentStoreUrl = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 739, 1, 4, 2), CiscoURLStringOrEmpty()).setMaxAccess("readwrite") if mibBuilder.loadTexts: cdstvIngestMgrContentStoreUrl.setStatus('current') if mibBuilder.loadTexts: cdstvIngestMgrContentStoreUrl.setDescription('This object specifies the URL where the content store is located. This string is empty if content store is disabled.') cdstvIngestMgrEncryptionType = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 739, 1, 5, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("none", 1), ("verimatrix", 2), ("widevine", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: cdstvIngestMgrEncryptionType.setStatus('current') if mibBuilder.loadTexts: cdstvIngestMgrEncryptionType.setDescription('This object specifies the type of encryption used. none(1) - Encryption is disabled. verimatrix(2) - Use Verimatrix encryption. widevine(3) - Use Widevine encryption.') cdstvIngestMgrEncryptionTargetUrl = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 739, 1, 5, 2), CiscoURLStringOrEmpty()).setMaxAccess("readwrite") if mibBuilder.loadTexts: cdstvIngestMgrEncryptionTargetUrl.setStatus('current') if mibBuilder.loadTexts: cdstvIngestMgrEncryptionTargetUrl.setDescription('This object specifies the location on the encryption server used to send MPEG files for encryption, for example, http://192.168.128.54:7898/files/encrypted. This string will be empty if encryption is disabled.') cdstvIngestMgrEncryptionRetrievalUrl = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 739, 1, 5, 3), CiscoURLStringOrEmpty()).setMaxAccess("readwrite") if mibBuilder.loadTexts: cdstvIngestMgrEncryptionRetrievalUrl.setStatus('current') if mibBuilder.loadTexts: cdstvIngestMgrEncryptionRetrievalUrl.setDescription('This object specifies the location on the encryption server used to retrieve encrypted MPEG files, for example, ftp://192.168.128.54:7899/files/encrypted. This string will be empty if encryption is disabled.') ciscoCdstvIngestMgrMIBGroups = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 739, 2, 2)) ciscoCdstvIngestMgrMIBCompliance = ModuleCompliance((1, 3, 6, 1, 4, 1, 9, 9, 739, 2, 1, 1)).setObjects(("CISCO-CDSTV-INGESTMGR-MIB", "ciscoCdstvIngestMgrMIBMainObjectGroup"), ("CISCO-CDSTV-INGESTMGR-MIB", "ciscoCdstvIngestMgrMIBIngestSettingsGroup"), ("CISCO-CDSTV-INGESTMGR-MIB", "ciscoCdstvIngestMgrMIBBackOfficeSettingsGroup"), ("CISCO-CDSTV-INGESTMGR-MIB", "ciscoCdstvIngestMgrMIBContentStoreSettingsGroup"), ("CISCO-CDSTV-INGESTMGR-MIB", "ciscoCdstvIngestMgrMIBEncryptionSettingsGroup")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): ciscoCdstvIngestMgrMIBCompliance = ciscoCdstvIngestMgrMIBCompliance.setStatus('current') if mibBuilder.loadTexts: ciscoCdstvIngestMgrMIBCompliance.setDescription('The compliance statement for the entities which implement the Cisco CDS TV Ingest Manager MIB.') ciscoCdstvIngestMgrMIBMainObjectGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 9, 9, 739, 2, 2, 1)).setObjects(("CISCO-CDSTV-INGESTMGR-MIB", "cdstvIngestMgrHostAddress"), ("CISCO-CDSTV-INGESTMGR-MIB", "cdstvIngestMgrPort"), ("CISCO-CDSTV-INGESTMGR-MIB", "cdstvIngestMgrFsiCallbackPort"), ("CISCO-CDSTV-INGESTMGR-MIB", "cdstvIngestMgrAdditionalPackageWindow"), ("CISCO-CDSTV-INGESTMGR-MIB", "cdstvIngestMgrFtpTimeout"), ("CISCO-CDSTV-INGESTMGR-MIB", "cdstvIngestMgrUseAssetIdEnable"), ("CISCO-CDSTV-INGESTMGR-MIB", "cdstvIngestMgrManageCorbaServices"), ("CISCO-CDSTV-INGESTMGR-MIB", "cdstvIngestMgrRequireNotifyService"), ("CISCO-CDSTV-INGESTMGR-MIB", "cdstvIngestMgrDebugLevel"), ("CISCO-CDSTV-INGESTMGR-MIB", "cdstvIngestMgrMetaDataPublish"), ("CISCO-CDSTV-INGESTMGR-MIB", "cdstvIngestMgrMetaPublishUrl"), ("CISCO-CDSTV-INGESTMGR-MIB", "cdstvIngestMgrMetaPublishBackupUrl"), ("CISCO-CDSTV-INGESTMGR-MIB", "cdstvIngestMgrHostAddressType")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): ciscoCdstvIngestMgrMIBMainObjectGroup = ciscoCdstvIngestMgrMIBMainObjectGroup.setStatus('current') if mibBuilder.loadTexts: ciscoCdstvIngestMgrMIBMainObjectGroup.setDescription('A collection of objects that provide the configuration of CDS-TV ingest manager.') ciscoCdstvIngestMgrMIBIngestSettingsGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 9, 9, 739, 2, 2, 2)).setObjects(("CISCO-CDSTV-INGESTMGR-MIB", "cdstvIngestMgrIngestInterface"), ("CISCO-CDSTV-INGESTMGR-MIB", "cdstvIngestMgrCiscoSoapUrl"), ("CISCO-CDSTV-INGESTMGR-MIB", "cdstvIngestMgrProdisSoapUrl")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): ciscoCdstvIngestMgrMIBIngestSettingsGroup = ciscoCdstvIngestMgrMIBIngestSettingsGroup.setStatus('current') if mibBuilder.loadTexts: ciscoCdstvIngestMgrMIBIngestSettingsGroup.setDescription('A collection of objects that provide the ingest settings of the CDS-TV ingest manager.') ciscoCdstvIngestMgrMIBBackOfficeSettingsGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 9, 9, 739, 2, 2, 3)).setObjects(("CISCO-CDSTV-INGESTMGR-MIB", "cdstvIngestMgrBackOfficeMaxRetries"), ("CISCO-CDSTV-INGESTMGR-MIB", "cdstvIngestMgrBackOfficeRetryInterval"), ("CISCO-CDSTV-INGESTMGR-MIB", "cdstvIngestMgrBackOfficeTimeout"), ("CISCO-CDSTV-INGESTMGR-MIB", "cdstvIngestMgrBackOfficeType"), ("CISCO-CDSTV-INGESTMGR-MIB", "cdstvIngestMgrBackOfficeUrl")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): ciscoCdstvIngestMgrMIBBackOfficeSettingsGroup = ciscoCdstvIngestMgrMIBBackOfficeSettingsGroup.setStatus('current') if mibBuilder.loadTexts: ciscoCdstvIngestMgrMIBBackOfficeSettingsGroup.setDescription('A collection of objects that provide the back-office settings of the CDS-TV ingest manager.') ciscoCdstvIngestMgrMIBContentStoreSettingsGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 9, 9, 739, 2, 2, 4)).setObjects(("CISCO-CDSTV-INGESTMGR-MIB", "cdstvIngestMgrContentStore"), ("CISCO-CDSTV-INGESTMGR-MIB", "cdstvIngestMgrContentStoreUrl")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): ciscoCdstvIngestMgrMIBContentStoreSettingsGroup = ciscoCdstvIngestMgrMIBContentStoreSettingsGroup.setStatus('current') if mibBuilder.loadTexts: ciscoCdstvIngestMgrMIBContentStoreSettingsGroup.setDescription('A collection of objects that provide the content store settings of the CDS-TV ingest manager.') ciscoCdstvIngestMgrMIBEncryptionSettingsGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 9, 9, 739, 2, 2, 5)).setObjects(("CISCO-CDSTV-INGESTMGR-MIB", "cdstvIngestMgrEncryptionType"), ("CISCO-CDSTV-INGESTMGR-MIB", "cdstvIngestMgrEncryptionTargetUrl"), ("CISCO-CDSTV-INGESTMGR-MIB", "cdstvIngestMgrEncryptionRetrievalUrl")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): ciscoCdstvIngestMgrMIBEncryptionSettingsGroup = ciscoCdstvIngestMgrMIBEncryptionSettingsGroup.setStatus('current') if mibBuilder.loadTexts: ciscoCdstvIngestMgrMIBEncryptionSettingsGroup.setDescription('A collection of objects that provide the encryption settings of the CDS-TV ingest manager.') mibBuilder.exportSymbols("CISCO-CDSTV-INGESTMGR-MIB", cdstvIngestMgrFtpTimeout=cdstvIngestMgrFtpTimeout, cdstvIngestMgrDebugLevel=cdstvIngestMgrDebugLevel, ciscoCdstvIngestMgrMIBConform=ciscoCdstvIngestMgrMIBConform, cdstvIngestMgrManageCorbaServices=cdstvIngestMgrManageCorbaServices, cdstvIngestMgrContentStoreUrl=cdstvIngestMgrContentStoreUrl, cdstvIngestMgrEncryptionType=cdstvIngestMgrEncryptionType, cdstvIngestMgrUseAssetIdEnable=cdstvIngestMgrUseAssetIdEnable, cdstvIngestMgrFsiCallbackPort=cdstvIngestMgrFsiCallbackPort, cdstvIngestMgrBackOfficeEntry=cdstvIngestMgrBackOfficeEntry, cdstvIngestMgrBackOfficeIndex=cdstvIngestMgrBackOfficeIndex, cdstvIngestMgrBackOfficeUrl=cdstvIngestMgrBackOfficeUrl, cdstvIngestMgrMetaPublishUrl=cdstvIngestMgrMetaPublishUrl, cdstvIngestMgrBackOfficeTimeout=cdstvIngestMgrBackOfficeTimeout, ciscoCdstvIngestMgrMIBContentStoreSettingsGroup=ciscoCdstvIngestMgrMIBContentStoreSettingsGroup, cdstvIngestMgrEncryptionSettings=cdstvIngestMgrEncryptionSettings, ciscoCdstvIngestMgrMIBCompliances=ciscoCdstvIngestMgrMIBCompliances, cdstvIngestMgrAdditionalPackageWindow=cdstvIngestMgrAdditionalPackageWindow, cdstvIngestMgrBackOfficeSettings=cdstvIngestMgrBackOfficeSettings, cdstvIngestMgrMetaPublishBackupUrl=cdstvIngestMgrMetaPublishBackupUrl, cdstvIngestMgrBackOfficeMaxRetries=cdstvIngestMgrBackOfficeMaxRetries, ciscoCdstvIngestMgrMIBIngestSettingsGroup=ciscoCdstvIngestMgrMIBIngestSettingsGroup, PYSNMP_MODULE_ID=ciscoCdstvIngestmgrMIB, cdstvIngestMgrRequireNotifyService=cdstvIngestMgrRequireNotifyService, cdstvIngestMgrBackOfficeTable=cdstvIngestMgrBackOfficeTable, ciscoCdstvIngestMgrMIBEncryptionSettingsGroup=ciscoCdstvIngestMgrMIBEncryptionSettingsGroup, cdstvIngestMgrEncryptionRetrievalUrl=cdstvIngestMgrEncryptionRetrievalUrl, cdstvIngestMgrContentStoreSettings=cdstvIngestMgrContentStoreSettings, ciscoCdstvIngestMgrMIBNotifs=ciscoCdstvIngestMgrMIBNotifs, ciscoCdstvIngestMgrMIBObjects=ciscoCdstvIngestMgrMIBObjects, cdstvIngestMgrIngestSettings=cdstvIngestMgrIngestSettings, cdstvIngestMgrBackOfficeType=cdstvIngestMgrBackOfficeType, ciscoCdstvIngestMgrMIBBackOfficeSettingsGroup=ciscoCdstvIngestMgrMIBBackOfficeSettingsGroup, cdstvIngestMgrProdisSoapUrl=cdstvIngestMgrProdisSoapUrl, cdstvIngestMgrEncryptionTargetUrl=cdstvIngestMgrEncryptionTargetUrl, cdstvIngestMgrBackOfficeRetryInterval=cdstvIngestMgrBackOfficeRetryInterval, cdstvIngestMgrContentStore=cdstvIngestMgrContentStore, ciscoCdstvIngestMgrMIBMainObjectGroup=ciscoCdstvIngestMgrMIBMainObjectGroup, cdstvIngestMgrHostAddress=cdstvIngestMgrHostAddress, cdstvIngestMgrPort=cdstvIngestMgrPort, cdstvIngestMgrIngestInterface=cdstvIngestMgrIngestInterface, cdstvIngestMgrHostAddressType=cdstvIngestMgrHostAddressType, cdstvIngestMgrMetaDataPublish=cdstvIngestMgrMetaDataPublish, cdstvIngestMgrGeneralSettings=cdstvIngestMgrGeneralSettings, ciscoCdstvIngestMgrMIBCompliance=ciscoCdstvIngestMgrMIBCompliance, ciscoCdstvIngestMgrMIBGroups=ciscoCdstvIngestMgrMIBGroups, cdstvIngestMgrCiscoSoapUrl=cdstvIngestMgrCiscoSoapUrl, ciscoCdstvIngestmgrMIB=ciscoCdstvIngestmgrMIB)
(integer, object_identifier, octet_string) = mibBuilder.importSymbols('ASN1', 'Integer', 'ObjectIdentifier', 'OctetString') (named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues') (constraints_union, constraints_intersection, value_range_constraint, value_size_constraint, single_value_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ConstraintsUnion', 'ConstraintsIntersection', 'ValueRangeConstraint', 'ValueSizeConstraint', 'SingleValueConstraint') (cisco_mgmt,) = mibBuilder.importSymbols('CISCO-SMI', 'ciscoMgmt') (time_interval_min, time_interval_sec, cisco_url_string, cisco_url_string_or_empty) = mibBuilder.importSymbols('CISCO-TC', 'TimeIntervalMin', 'TimeIntervalSec', 'CiscoURLString', 'CiscoURLStringOrEmpty') (inet_address_type, inet_port_number, inet_address) = mibBuilder.importSymbols('INET-ADDRESS-MIB', 'InetAddressType', 'InetPortNumber', 'InetAddress') (object_group, module_compliance, notification_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ObjectGroup', 'ModuleCompliance', 'NotificationGroup') (iso, time_ticks, bits, notification_type, ip_address, object_identity, integer32, counter64, unsigned32, mib_scalar, mib_table, mib_table_row, mib_table_column, gauge32, mib_identifier, counter32, module_identity) = mibBuilder.importSymbols('SNMPv2-SMI', 'iso', 'TimeTicks', 'Bits', 'NotificationType', 'IpAddress', 'ObjectIdentity', 'Integer32', 'Counter64', 'Unsigned32', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'Gauge32', 'MibIdentifier', 'Counter32', 'ModuleIdentity') (textual_convention, truth_value, display_string) = mibBuilder.importSymbols('SNMPv2-TC', 'TextualConvention', 'TruthValue', 'DisplayString') cisco_cdstv_ingestmgr_mib = module_identity((1, 3, 6, 1, 4, 1, 9, 9, 739)) ciscoCdstvIngestmgrMIB.setRevisions(('2010-05-27 00:00',)) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): if mibBuilder.loadTexts: ciscoCdstvIngestmgrMIB.setRevisionsDescriptions(('Initial version of this MIB module.',)) if mibBuilder.loadTexts: ciscoCdstvIngestmgrMIB.setLastUpdated('201005270000Z') if mibBuilder.loadTexts: ciscoCdstvIngestmgrMIB.setOrganization('Cisco Systems, Inc.') if mibBuilder.loadTexts: ciscoCdstvIngestmgrMIB.setContactInfo('Cisco Systems Customer Service Postal: 170 W Tasman Drive San Jose, CA 95134 USA Tel: +1 800 553-NETS E-mail: cs-cds@cisco.com') if mibBuilder.loadTexts: ciscoCdstvIngestmgrMIB.setDescription("This MIB module defines ingest manager configuration objects that faciliate the management of the Cisco Content Delivery System for TV (CDS-TV) product family. CDS-TV is a suite of products and software applications providing ingest, storage, caching, streaming, playout and on-demand delivery of video to television or set-top-box clients. Abbreviations: CCP Cache Control Protocol CDS Content Delivery System CORBA Common Object Request Broker Architecture ISA Interactive Services Architecture ISV Integrated Streamer-Vault FSI File Service Interface FTP File Transfer Protocol MPEG Motion Picture Experts Group MSA Managed Services Architecture RTSP Real-Time Streaming Protocol STB Set-Top Box Common terms: Catcher: Device responsible for receiving content (typically via satellite dishes and antennae) from content providers or from a Headend-In-The-Sky. Content Ingest: Acquisition of content from a source such as a catcher or an FTP server for storing it locally and making it available to streamers as needed. Ingest Manager: CDS module that takes care of provisioned content objects by collecting metadata, sending messages to the appropriate subsystem to ingest the content, and sending messages to expire the content when the expiration period has passed. Device Roles: Vault: Content delivery application responsible for ingesting and storing video content and making it available to streamers and/or caching nodes. Caching Nodes: Content delivery application responsible for caching content from vault (using CCP) and then streaming content out to streamers over HTTP or CCP. Streamer: Content delivery application responsible for streaming video out to STB's. ISV: Content delivery application capable of acting as both a vault and as a streamer in a single device.") cisco_cdstv_ingest_mgr_mib_notifs = mib_identifier((1, 3, 6, 1, 4, 1, 9, 9, 739, 0)) cisco_cdstv_ingest_mgr_mib_objects = mib_identifier((1, 3, 6, 1, 4, 1, 9, 9, 739, 1)) cisco_cdstv_ingest_mgr_mib_conform = mib_identifier((1, 3, 6, 1, 4, 1, 9, 9, 739, 2)) cisco_cdstv_ingest_mgr_mib_compliances = mib_identifier((1, 3, 6, 1, 4, 1, 9, 9, 739, 2, 1)) cdstv_ingest_mgr_general_settings = mib_identifier((1, 3, 6, 1, 4, 1, 9, 9, 739, 1, 1)) cdstv_ingest_mgr_ingest_settings = mib_identifier((1, 3, 6, 1, 4, 1, 9, 9, 739, 1, 2)) cdstv_ingest_mgr_back_office_settings = mib_identifier((1, 3, 6, 1, 4, 1, 9, 9, 739, 1, 3)) cdstv_ingest_mgr_content_store_settings = mib_identifier((1, 3, 6, 1, 4, 1, 9, 9, 739, 1, 4)) cdstv_ingest_mgr_encryption_settings = mib_identifier((1, 3, 6, 1, 4, 1, 9, 9, 739, 1, 5)) cdstv_ingest_mgr_host_address_type = mib_scalar((1, 3, 6, 1, 4, 1, 9, 9, 739, 1, 1, 1), inet_address_type()).setMaxAccess('readwrite') if mibBuilder.loadTexts: cdstvIngestMgrHostAddressType.setStatus('current') if mibBuilder.loadTexts: cdstvIngestMgrHostAddressType.setDescription('This object specifies the type of the IP address (specified by cdstvIngestMgrHostAddress) of the Ingest Manager.') cdstv_ingest_mgr_host_address = mib_scalar((1, 3, 6, 1, 4, 1, 9, 9, 739, 1, 1, 2), inet_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: cdstvIngestMgrHostAddress.setStatus('current') if mibBuilder.loadTexts: cdstvIngestMgrHostAddress.setDescription('This object specifies the IP address of the Ingest Manager. The type of this address is specified by cdstvIngestMgrHostAddressType.') cdstv_ingest_mgr_port = mib_scalar((1, 3, 6, 1, 4, 1, 9, 9, 739, 1, 1, 3), inet_port_number().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: cdstvIngestMgrPort.setStatus('current') if mibBuilder.loadTexts: cdstvIngestMgrPort.setDescription('This object specifies the port number to use for listening for inbound connections.') cdstv_ingest_mgr_fsi_callback_port = mib_scalar((1, 3, 6, 1, 4, 1, 9, 9, 739, 1, 1, 4), inet_port_number().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: cdstvIngestMgrFsiCallbackPort.setStatus('current') if mibBuilder.loadTexts: cdstvIngestMgrFsiCallbackPort.setDescription('This object specifies the port number to use for File Services Interface (FSI) callbacks.') cdstv_ingest_mgr_additional_package_window = mib_scalar((1, 3, 6, 1, 4, 1, 9, 9, 739, 1, 1, 5), unsigned32()).setUnits('days').setMaxAccess('readwrite') if mibBuilder.loadTexts: cdstvIngestMgrAdditionalPackageWindow.setStatus('current') if mibBuilder.loadTexts: cdstvIngestMgrAdditionalPackageWindow.setDescription('This object specifies the additional amount of time to wait once the package expiration window has ended before destroying the stored content package. Typically, when the package expiration window ends, the ingested content package is destroyed from the device. The additional package window adds a grace period to the expiration window.') cdstv_ingest_mgr_ftp_timeout = mib_scalar((1, 3, 6, 1, 4, 1, 9, 9, 739, 1, 1, 6), time_interval_sec()).setMaxAccess('readwrite') if mibBuilder.loadTexts: cdstvIngestMgrFtpTimeout.setStatus('current') if mibBuilder.loadTexts: cdstvIngestMgrFtpTimeout.setDescription('This object specifies the maximum period the Ingest Manager waits before timing out an FTP session and terminating the process.') cdstv_ingest_mgr_use_asset_id_enable = mib_scalar((1, 3, 6, 1, 4, 1, 9, 9, 739, 1, 1, 7), truth_value()).setMaxAccess('readwrite') if mibBuilder.loadTexts: cdstvIngestMgrUseAssetIdEnable.setStatus('current') if mibBuilder.loadTexts: cdstvIngestMgrUseAssetIdEnable.setDescription("This object specifies whether to use the Asset ID (a unique ID assigned to each content ingested into the CDS) for the content name. 'true' indicates that Asset ID is used for the content name. 'false' indicates Asset ID is not used for the content name.") cdstv_ingest_mgr_manage_corba_services = mib_scalar((1, 3, 6, 1, 4, 1, 9, 9, 739, 1, 1, 8), truth_value()).setMaxAccess('readwrite') if mibBuilder.loadTexts: cdstvIngestMgrManageCorbaServices.setStatus('current') if mibBuilder.loadTexts: cdstvIngestMgrManageCorbaServices.setDescription("This object specifies whether the CDS manages the CORBA services. 'true' indicates that CDS manages CORBA services. 'false' indicates that CDS does not manage CORBA services.") cdstv_ingest_mgr_require_notify_service = mib_scalar((1, 3, 6, 1, 4, 1, 9, 9, 739, 1, 1, 9), truth_value()).setMaxAccess('readwrite') if mibBuilder.loadTexts: cdstvIngestMgrRequireNotifyService.setStatus('current') if mibBuilder.loadTexts: cdstvIngestMgrRequireNotifyService.setDescription("This object specifies whether the CDS requires the use of ISA Notify Service. 'true' indicates that CDS requires the use of ISA Notify Service. 'false' indicates that CDS does not require the use of ISA Notify Service.") cdstv_ingest_mgr_debug_level = mib_scalar((1, 3, 6, 1, 4, 1, 9, 9, 739, 1, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('errors', 1), ('all', 2), ('off', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: cdstvIngestMgrDebugLevel.setStatus('current') if mibBuilder.loadTexts: cdstvIngestMgrDebugLevel.setDescription('This object specifies the amount of debugging information logged. errors(1) - Only error messages are logged. all(2) - Errors, warnings and success message are all logged. off(3) - Debugging is disabled.') cdstv_ingest_mgr_meta_data_publish = mib_scalar((1, 3, 6, 1, 4, 1, 9, 9, 739, 1, 1, 11), truth_value()).setMaxAccess('readwrite') if mibBuilder.loadTexts: cdstvIngestMgrMetaDataPublish.setStatus('current') if mibBuilder.loadTexts: cdstvIngestMgrMetaDataPublish.setDescription("This object specifies whether content metadata is published or not. 'true' indicates that content metadata is published. 'false' indicates that content metadata is not published.") cdstv_ingest_mgr_meta_publish_url = mib_scalar((1, 3, 6, 1, 4, 1, 9, 9, 739, 1, 1, 12), cisco_url_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: cdstvIngestMgrMetaPublishUrl.setStatus('current') if mibBuilder.loadTexts: cdstvIngestMgrMetaPublishUrl.setDescription('This object specifies the URL where the metadata is published, typically the back-office.') cdstv_ingest_mgr_meta_publish_backup_url = mib_scalar((1, 3, 6, 1, 4, 1, 9, 9, 739, 1, 1, 13), cisco_url_string_or_empty()).setMaxAccess('readwrite') if mibBuilder.loadTexts: cdstvIngestMgrMetaPublishBackupUrl.setStatus('current') if mibBuilder.loadTexts: cdstvIngestMgrMetaPublishBackupUrl.setDescription('This object specifies the URL of the backup server where the metadata is published. This string is empty if a backup server URL is not configured.') cdstv_ingest_mgr_ingest_interface = mib_scalar((1, 3, 6, 1, 4, 1, 9, 9, 739, 1, 2, 1), bits().clone(namedValues=named_values(('isa', 0), ('ciscoSoap', 1), ('prodisSoap', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: cdstvIngestMgrIngestInterface.setStatus('current') if mibBuilder.loadTexts: cdstvIngestMgrIngestInterface.setDescription('This object specifies all ingest interfaces (methods) available, i.e. ISA, Cisco SOAP, Prodis SOAP or any combination of the three. isa(0) - ISA. ciscoSoap(1) - Cisco SOAP prodisSoap(2) - Prodis SOAP.') cdstv_ingest_mgr_cisco_soap_url = mib_scalar((1, 3, 6, 1, 4, 1, 9, 9, 739, 1, 2, 2), cisco_url_string_or_empty()).setMaxAccess('readwrite') if mibBuilder.loadTexts: cdstvIngestMgrCiscoSoapUrl.setStatus('current') if mibBuilder.loadTexts: cdstvIngestMgrCiscoSoapUrl.setDescription('This object specifies the URL (IP address, port, and directory) on the Vault used to receive content using the Cisco SOAP (Simple Object Access Protocol). An example of the Cisco SOAP URL is http://10.22.216.251:8793/CiscoAIM. This string is empty if Cisco SOAP is not used.') cdstv_ingest_mgr_prodis_soap_url = mib_scalar((1, 3, 6, 1, 4, 1, 9, 9, 739, 1, 2, 3), cisco_url_string_or_empty()).setMaxAccess('readwrite') if mibBuilder.loadTexts: cdstvIngestMgrProdisSoapUrl.setStatus('current') if mibBuilder.loadTexts: cdstvIngestMgrProdisSoapUrl.setDescription('This object specifies the URL (IP address, port, and directory) on the Vault used to receive content using the Prodis SOAP(Simple Object Access Protocol). An example of the Prodis SOAP URL is http://10.22.216.251:8793/ProdisAIM. This string is empty if Prodis SOAP is not used.') cdstv_ingest_mgr_back_office_max_retries = mib_scalar((1, 3, 6, 1, 4, 1, 9, 9, 739, 1, 3, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 1000))).setMaxAccess('readwrite') if mibBuilder.loadTexts: cdstvIngestMgrBackOfficeMaxRetries.setStatus('current') if mibBuilder.loadTexts: cdstvIngestMgrBackOfficeMaxRetries.setDescription('This object specifies the maximum number of times to retry a failed communication with the back-office.') cdstv_ingest_mgr_back_office_retry_interval = mib_scalar((1, 3, 6, 1, 4, 1, 9, 9, 739, 1, 3, 2), time_interval_min()).setMaxAccess('readwrite') if mibBuilder.loadTexts: cdstvIngestMgrBackOfficeRetryInterval.setStatus('current') if mibBuilder.loadTexts: cdstvIngestMgrBackOfficeRetryInterval.setDescription('This object specifies the amount of time to wait before retrying a failed communication with the back-office.') cdstv_ingest_mgr_back_office_timeout = mib_scalar((1, 3, 6, 1, 4, 1, 9, 9, 739, 1, 3, 3), time_interval_sec()).setMaxAccess('readwrite') if mibBuilder.loadTexts: cdstvIngestMgrBackOfficeTimeout.setStatus('current') if mibBuilder.loadTexts: cdstvIngestMgrBackOfficeTimeout.setDescription('This object specifies the amount of time to wait for the back-office to respond to a communication attempt.') cdstv_ingest_mgr_back_office_table = mib_table((1, 3, 6, 1, 4, 1, 9, 9, 739, 1, 3, 4)) if mibBuilder.loadTexts: cdstvIngestMgrBackOfficeTable.setStatus('current') if mibBuilder.loadTexts: cdstvIngestMgrBackOfficeTable.setDescription('A table containing the back-office type and URL settings.') cdstv_ingest_mgr_back_office_entry = mib_table_row((1, 3, 6, 1, 4, 1, 9, 9, 739, 1, 3, 4, 1)).setIndexNames((0, 'CISCO-CDSTV-INGESTMGR-MIB', 'cdstvIngestMgrBackOfficeIndex')) if mibBuilder.loadTexts: cdstvIngestMgrBackOfficeEntry.setStatus('current') if mibBuilder.loadTexts: cdstvIngestMgrBackOfficeEntry.setDescription('An entry (conceptual row) in the table of back-office type and URL settings. Rows are added if new back-offices are configured and deleted if back-offices are disabled.') cdstv_ingest_mgr_back_office_index = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 739, 1, 3, 4, 1, 1), unsigned32()) if mibBuilder.loadTexts: cdstvIngestMgrBackOfficeIndex.setStatus('current') if mibBuilder.loadTexts: cdstvIngestMgrBackOfficeIndex.setDescription('This object uniquely identifies a back-office.') cdstv_ingest_mgr_back_office_type = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 739, 1, 3, 4, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('none', 1), ('totalManage', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: cdstvIngestMgrBackOfficeType.setStatus('current') if mibBuilder.loadTexts: cdstvIngestMgrBackOfficeType.setDescription('This object specifies the type of back-office support used. none(1) - No back-office support. totalManage(2) - Use TotalManage back-office support.') cdstv_ingest_mgr_back_office_url = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 739, 1, 3, 4, 1, 3), cisco_url_string_or_empty()).setMaxAccess('readwrite') if mibBuilder.loadTexts: cdstvIngestMgrBackOfficeUrl.setStatus('current') if mibBuilder.loadTexts: cdstvIngestMgrBackOfficeUrl.setDescription('This object specifies the location (URL) of the back-office. This string is empty if back-office support is disabled.') cdstv_ingest_mgr_content_store = mib_scalar((1, 3, 6, 1, 4, 1, 9, 9, 739, 1, 4, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('none', 1), ('isa', 2), ('fsi', 3), ('ngod', 4), ('openStream', 5)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: cdstvIngestMgrContentStore.setStatus('current') if mibBuilder.loadTexts: cdstvIngestMgrContentStore.setDescription('This object specifies the type of content store used. none(1) - Content store is disabled. isa(2) - Use ISA content store. fsi(3) - Use FSI content store. ngod(4) - Use Next-Generation On-Demand (NGOD) content store. openStream(5) - Use OpenStream content store.') cdstv_ingest_mgr_content_store_url = mib_scalar((1, 3, 6, 1, 4, 1, 9, 9, 739, 1, 4, 2), cisco_url_string_or_empty()).setMaxAccess('readwrite') if mibBuilder.loadTexts: cdstvIngestMgrContentStoreUrl.setStatus('current') if mibBuilder.loadTexts: cdstvIngestMgrContentStoreUrl.setDescription('This object specifies the URL where the content store is located. This string is empty if content store is disabled.') cdstv_ingest_mgr_encryption_type = mib_scalar((1, 3, 6, 1, 4, 1, 9, 9, 739, 1, 5, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('none', 1), ('verimatrix', 2), ('widevine', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: cdstvIngestMgrEncryptionType.setStatus('current') if mibBuilder.loadTexts: cdstvIngestMgrEncryptionType.setDescription('This object specifies the type of encryption used. none(1) - Encryption is disabled. verimatrix(2) - Use Verimatrix encryption. widevine(3) - Use Widevine encryption.') cdstv_ingest_mgr_encryption_target_url = mib_scalar((1, 3, 6, 1, 4, 1, 9, 9, 739, 1, 5, 2), cisco_url_string_or_empty()).setMaxAccess('readwrite') if mibBuilder.loadTexts: cdstvIngestMgrEncryptionTargetUrl.setStatus('current') if mibBuilder.loadTexts: cdstvIngestMgrEncryptionTargetUrl.setDescription('This object specifies the location on the encryption server used to send MPEG files for encryption, for example, http://192.168.128.54:7898/files/encrypted. This string will be empty if encryption is disabled.') cdstv_ingest_mgr_encryption_retrieval_url = mib_scalar((1, 3, 6, 1, 4, 1, 9, 9, 739, 1, 5, 3), cisco_url_string_or_empty()).setMaxAccess('readwrite') if mibBuilder.loadTexts: cdstvIngestMgrEncryptionRetrievalUrl.setStatus('current') if mibBuilder.loadTexts: cdstvIngestMgrEncryptionRetrievalUrl.setDescription('This object specifies the location on the encryption server used to retrieve encrypted MPEG files, for example, ftp://192.168.128.54:7899/files/encrypted. This string will be empty if encryption is disabled.') cisco_cdstv_ingest_mgr_mib_groups = mib_identifier((1, 3, 6, 1, 4, 1, 9, 9, 739, 2, 2)) cisco_cdstv_ingest_mgr_mib_compliance = module_compliance((1, 3, 6, 1, 4, 1, 9, 9, 739, 2, 1, 1)).setObjects(('CISCO-CDSTV-INGESTMGR-MIB', 'ciscoCdstvIngestMgrMIBMainObjectGroup'), ('CISCO-CDSTV-INGESTMGR-MIB', 'ciscoCdstvIngestMgrMIBIngestSettingsGroup'), ('CISCO-CDSTV-INGESTMGR-MIB', 'ciscoCdstvIngestMgrMIBBackOfficeSettingsGroup'), ('CISCO-CDSTV-INGESTMGR-MIB', 'ciscoCdstvIngestMgrMIBContentStoreSettingsGroup'), ('CISCO-CDSTV-INGESTMGR-MIB', 'ciscoCdstvIngestMgrMIBEncryptionSettingsGroup')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): cisco_cdstv_ingest_mgr_mib_compliance = ciscoCdstvIngestMgrMIBCompliance.setStatus('current') if mibBuilder.loadTexts: ciscoCdstvIngestMgrMIBCompliance.setDescription('The compliance statement for the entities which implement the Cisco CDS TV Ingest Manager MIB.') cisco_cdstv_ingest_mgr_mib_main_object_group = object_group((1, 3, 6, 1, 4, 1, 9, 9, 739, 2, 2, 1)).setObjects(('CISCO-CDSTV-INGESTMGR-MIB', 'cdstvIngestMgrHostAddress'), ('CISCO-CDSTV-INGESTMGR-MIB', 'cdstvIngestMgrPort'), ('CISCO-CDSTV-INGESTMGR-MIB', 'cdstvIngestMgrFsiCallbackPort'), ('CISCO-CDSTV-INGESTMGR-MIB', 'cdstvIngestMgrAdditionalPackageWindow'), ('CISCO-CDSTV-INGESTMGR-MIB', 'cdstvIngestMgrFtpTimeout'), ('CISCO-CDSTV-INGESTMGR-MIB', 'cdstvIngestMgrUseAssetIdEnable'), ('CISCO-CDSTV-INGESTMGR-MIB', 'cdstvIngestMgrManageCorbaServices'), ('CISCO-CDSTV-INGESTMGR-MIB', 'cdstvIngestMgrRequireNotifyService'), ('CISCO-CDSTV-INGESTMGR-MIB', 'cdstvIngestMgrDebugLevel'), ('CISCO-CDSTV-INGESTMGR-MIB', 'cdstvIngestMgrMetaDataPublish'), ('CISCO-CDSTV-INGESTMGR-MIB', 'cdstvIngestMgrMetaPublishUrl'), ('CISCO-CDSTV-INGESTMGR-MIB', 'cdstvIngestMgrMetaPublishBackupUrl'), ('CISCO-CDSTV-INGESTMGR-MIB', 'cdstvIngestMgrHostAddressType')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): cisco_cdstv_ingest_mgr_mib_main_object_group = ciscoCdstvIngestMgrMIBMainObjectGroup.setStatus('current') if mibBuilder.loadTexts: ciscoCdstvIngestMgrMIBMainObjectGroup.setDescription('A collection of objects that provide the configuration of CDS-TV ingest manager.') cisco_cdstv_ingest_mgr_mib_ingest_settings_group = object_group((1, 3, 6, 1, 4, 1, 9, 9, 739, 2, 2, 2)).setObjects(('CISCO-CDSTV-INGESTMGR-MIB', 'cdstvIngestMgrIngestInterface'), ('CISCO-CDSTV-INGESTMGR-MIB', 'cdstvIngestMgrCiscoSoapUrl'), ('CISCO-CDSTV-INGESTMGR-MIB', 'cdstvIngestMgrProdisSoapUrl')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): cisco_cdstv_ingest_mgr_mib_ingest_settings_group = ciscoCdstvIngestMgrMIBIngestSettingsGroup.setStatus('current') if mibBuilder.loadTexts: ciscoCdstvIngestMgrMIBIngestSettingsGroup.setDescription('A collection of objects that provide the ingest settings of the CDS-TV ingest manager.') cisco_cdstv_ingest_mgr_mib_back_office_settings_group = object_group((1, 3, 6, 1, 4, 1, 9, 9, 739, 2, 2, 3)).setObjects(('CISCO-CDSTV-INGESTMGR-MIB', 'cdstvIngestMgrBackOfficeMaxRetries'), ('CISCO-CDSTV-INGESTMGR-MIB', 'cdstvIngestMgrBackOfficeRetryInterval'), ('CISCO-CDSTV-INGESTMGR-MIB', 'cdstvIngestMgrBackOfficeTimeout'), ('CISCO-CDSTV-INGESTMGR-MIB', 'cdstvIngestMgrBackOfficeType'), ('CISCO-CDSTV-INGESTMGR-MIB', 'cdstvIngestMgrBackOfficeUrl')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): cisco_cdstv_ingest_mgr_mib_back_office_settings_group = ciscoCdstvIngestMgrMIBBackOfficeSettingsGroup.setStatus('current') if mibBuilder.loadTexts: ciscoCdstvIngestMgrMIBBackOfficeSettingsGroup.setDescription('A collection of objects that provide the back-office settings of the CDS-TV ingest manager.') cisco_cdstv_ingest_mgr_mib_content_store_settings_group = object_group((1, 3, 6, 1, 4, 1, 9, 9, 739, 2, 2, 4)).setObjects(('CISCO-CDSTV-INGESTMGR-MIB', 'cdstvIngestMgrContentStore'), ('CISCO-CDSTV-INGESTMGR-MIB', 'cdstvIngestMgrContentStoreUrl')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): cisco_cdstv_ingest_mgr_mib_content_store_settings_group = ciscoCdstvIngestMgrMIBContentStoreSettingsGroup.setStatus('current') if mibBuilder.loadTexts: ciscoCdstvIngestMgrMIBContentStoreSettingsGroup.setDescription('A collection of objects that provide the content store settings of the CDS-TV ingest manager.') cisco_cdstv_ingest_mgr_mib_encryption_settings_group = object_group((1, 3, 6, 1, 4, 1, 9, 9, 739, 2, 2, 5)).setObjects(('CISCO-CDSTV-INGESTMGR-MIB', 'cdstvIngestMgrEncryptionType'), ('CISCO-CDSTV-INGESTMGR-MIB', 'cdstvIngestMgrEncryptionTargetUrl'), ('CISCO-CDSTV-INGESTMGR-MIB', 'cdstvIngestMgrEncryptionRetrievalUrl')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): cisco_cdstv_ingest_mgr_mib_encryption_settings_group = ciscoCdstvIngestMgrMIBEncryptionSettingsGroup.setStatus('current') if mibBuilder.loadTexts: ciscoCdstvIngestMgrMIBEncryptionSettingsGroup.setDescription('A collection of objects that provide the encryption settings of the CDS-TV ingest manager.') mibBuilder.exportSymbols('CISCO-CDSTV-INGESTMGR-MIB', cdstvIngestMgrFtpTimeout=cdstvIngestMgrFtpTimeout, cdstvIngestMgrDebugLevel=cdstvIngestMgrDebugLevel, ciscoCdstvIngestMgrMIBConform=ciscoCdstvIngestMgrMIBConform, cdstvIngestMgrManageCorbaServices=cdstvIngestMgrManageCorbaServices, cdstvIngestMgrContentStoreUrl=cdstvIngestMgrContentStoreUrl, cdstvIngestMgrEncryptionType=cdstvIngestMgrEncryptionType, cdstvIngestMgrUseAssetIdEnable=cdstvIngestMgrUseAssetIdEnable, cdstvIngestMgrFsiCallbackPort=cdstvIngestMgrFsiCallbackPort, cdstvIngestMgrBackOfficeEntry=cdstvIngestMgrBackOfficeEntry, cdstvIngestMgrBackOfficeIndex=cdstvIngestMgrBackOfficeIndex, cdstvIngestMgrBackOfficeUrl=cdstvIngestMgrBackOfficeUrl, cdstvIngestMgrMetaPublishUrl=cdstvIngestMgrMetaPublishUrl, cdstvIngestMgrBackOfficeTimeout=cdstvIngestMgrBackOfficeTimeout, ciscoCdstvIngestMgrMIBContentStoreSettingsGroup=ciscoCdstvIngestMgrMIBContentStoreSettingsGroup, cdstvIngestMgrEncryptionSettings=cdstvIngestMgrEncryptionSettings, ciscoCdstvIngestMgrMIBCompliances=ciscoCdstvIngestMgrMIBCompliances, cdstvIngestMgrAdditionalPackageWindow=cdstvIngestMgrAdditionalPackageWindow, cdstvIngestMgrBackOfficeSettings=cdstvIngestMgrBackOfficeSettings, cdstvIngestMgrMetaPublishBackupUrl=cdstvIngestMgrMetaPublishBackupUrl, cdstvIngestMgrBackOfficeMaxRetries=cdstvIngestMgrBackOfficeMaxRetries, ciscoCdstvIngestMgrMIBIngestSettingsGroup=ciscoCdstvIngestMgrMIBIngestSettingsGroup, PYSNMP_MODULE_ID=ciscoCdstvIngestmgrMIB, cdstvIngestMgrRequireNotifyService=cdstvIngestMgrRequireNotifyService, cdstvIngestMgrBackOfficeTable=cdstvIngestMgrBackOfficeTable, ciscoCdstvIngestMgrMIBEncryptionSettingsGroup=ciscoCdstvIngestMgrMIBEncryptionSettingsGroup, cdstvIngestMgrEncryptionRetrievalUrl=cdstvIngestMgrEncryptionRetrievalUrl, cdstvIngestMgrContentStoreSettings=cdstvIngestMgrContentStoreSettings, ciscoCdstvIngestMgrMIBNotifs=ciscoCdstvIngestMgrMIBNotifs, ciscoCdstvIngestMgrMIBObjects=ciscoCdstvIngestMgrMIBObjects, cdstvIngestMgrIngestSettings=cdstvIngestMgrIngestSettings, cdstvIngestMgrBackOfficeType=cdstvIngestMgrBackOfficeType, ciscoCdstvIngestMgrMIBBackOfficeSettingsGroup=ciscoCdstvIngestMgrMIBBackOfficeSettingsGroup, cdstvIngestMgrProdisSoapUrl=cdstvIngestMgrProdisSoapUrl, cdstvIngestMgrEncryptionTargetUrl=cdstvIngestMgrEncryptionTargetUrl, cdstvIngestMgrBackOfficeRetryInterval=cdstvIngestMgrBackOfficeRetryInterval, cdstvIngestMgrContentStore=cdstvIngestMgrContentStore, ciscoCdstvIngestMgrMIBMainObjectGroup=ciscoCdstvIngestMgrMIBMainObjectGroup, cdstvIngestMgrHostAddress=cdstvIngestMgrHostAddress, cdstvIngestMgrPort=cdstvIngestMgrPort, cdstvIngestMgrIngestInterface=cdstvIngestMgrIngestInterface, cdstvIngestMgrHostAddressType=cdstvIngestMgrHostAddressType, cdstvIngestMgrMetaDataPublish=cdstvIngestMgrMetaDataPublish, cdstvIngestMgrGeneralSettings=cdstvIngestMgrGeneralSettings, ciscoCdstvIngestMgrMIBCompliance=ciscoCdstvIngestMgrMIBCompliance, ciscoCdstvIngestMgrMIBGroups=ciscoCdstvIngestMgrMIBGroups, cdstvIngestMgrCiscoSoapUrl=cdstvIngestMgrCiscoSoapUrl, ciscoCdstvIngestmgrMIB=ciscoCdstvIngestmgrMIB)
#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ Created on Thu Apr 9 13:59:28 2020 @author: Muhammad """ # Parsing a text file for numerical data covid = open('COVID.txt') word_list = covid.read().split() numbers = [int(x) for x in word_list if x.isdigit()] #numbers.sort() print(numbers) covid.close()
""" Created on Thu Apr 9 13:59:28 2020 @author: Muhammad """ covid = open('COVID.txt') word_list = covid.read().split() numbers = [int(x) for x in word_list if x.isdigit()] print(numbers) covid.close()
# you can write to stdout for debugging purposes, e.g. # print("this is a debug message") def solution(S, P, Q): # write your code in Python 3.6 A = [0]*len(S) APrefixSum = [0]*len(S) C = [0]*len(S) CPrefixSum = [0]*len(S) G = [0]*len(S) GPrefixSum = [0]*len(S) T = [0]*len(S) TPrefixSum = [0]*len(S) # map all the character for index in range(len(S)): if S[index] == 'A': A[index] = 1 elif S[index] == 'C': C[index] = 1 elif S[index] == 'G': G[index] = 1 else: T[index] = 1 #prefix sum sumTemp = 0 for index in range(len(S)): sumTemp += A[index] APrefixSum[index] = sumTemp sumTemp = 0 for index in range(len(S)): sumTemp += C[index] CPrefixSum[index] = sumTemp sumTemp = 0 for index in range(len(S)): sumTemp += G[index] GPrefixSum[index] = sumTemp sumTemp = 0 for index in range(len(S)): sumTemp += T[index] TPrefixSum[index] = sumTemp # Get changes result = [0]*len(P) for index in range(len(P)): if APrefixSum[Q[index]] - APrefixSum[P[index]] > 0 or A[P[index]] == 1: result[index] = 1 elif CPrefixSum[Q[index]] - CPrefixSum[P[index]] > 0 or C[P[index]] == 1: result[index] = 2 elif GPrefixSum[Q[index]]- GPrefixSum[P[index]] > 0 or G[P[index]] == 1: result[index] = 3 else: result[index] = 4 return result
def solution(S, P, Q): a = [0] * len(S) a_prefix_sum = [0] * len(S) c = [0] * len(S) c_prefix_sum = [0] * len(S) g = [0] * len(S) g_prefix_sum = [0] * len(S) t = [0] * len(S) t_prefix_sum = [0] * len(S) for index in range(len(S)): if S[index] == 'A': A[index] = 1 elif S[index] == 'C': C[index] = 1 elif S[index] == 'G': G[index] = 1 else: T[index] = 1 sum_temp = 0 for index in range(len(S)): sum_temp += A[index] APrefixSum[index] = sumTemp sum_temp = 0 for index in range(len(S)): sum_temp += C[index] CPrefixSum[index] = sumTemp sum_temp = 0 for index in range(len(S)): sum_temp += G[index] GPrefixSum[index] = sumTemp sum_temp = 0 for index in range(len(S)): sum_temp += T[index] TPrefixSum[index] = sumTemp result = [0] * len(P) for index in range(len(P)): if APrefixSum[Q[index]] - APrefixSum[P[index]] > 0 or A[P[index]] == 1: result[index] = 1 elif CPrefixSum[Q[index]] - CPrefixSum[P[index]] > 0 or C[P[index]] == 1: result[index] = 2 elif GPrefixSum[Q[index]] - GPrefixSum[P[index]] > 0 or G[P[index]] == 1: result[index] = 3 else: result[index] = 4 return result
#! /usr/bin/env python # coding: utf-8 class ClientError(Exception): def __init__(self): pass class BadRequest(ClientError): def __init__(self, key, detail=None): self.key = key self.detail = detail class ConflictRequest(ClientError): def __init__(self, detail=None): self.detail = detail class ResourceNotFound(ClientError): def __init__(self, resource_name, resource_value): self.resource_name = resource_name self.resource_value = resource_value class Forbidden(ClientError): def __init__(self): pass
class Clienterror(Exception): def __init__(self): pass class Badrequest(ClientError): def __init__(self, key, detail=None): self.key = key self.detail = detail class Conflictrequest(ClientError): def __init__(self, detail=None): self.detail = detail class Resourcenotfound(ClientError): def __init__(self, resource_name, resource_value): self.resource_name = resource_name self.resource_value = resource_value class Forbidden(ClientError): def __init__(self): pass
class TimeRegister: def __init__(self, emp_id, date, hours): self.emp_id = emp_id self.date = date self.hours = hours def get_emp_id(self): return self.emp_id def set_emp_id(self, new_id): self.emp_id = new_id def get_date(self): return self.__date def set_date(self, new_date): self.__date = new_date def get_hours(self): return self.__hours def set_hours(self, new_hours): self.__hours = new_hours def get_empTimeRegisters(self): return self.employeesTimeRegisters def set_to_clear_registers(self): self.employeesTimeRegisters = [] def __repr__(self): return "\nid: %i, data: %s -- %s horas\n\n" %(self.emp_id, self.date, self.hours)
class Timeregister: def __init__(self, emp_id, date, hours): self.emp_id = emp_id self.date = date self.hours = hours def get_emp_id(self): return self.emp_id def set_emp_id(self, new_id): self.emp_id = new_id def get_date(self): return self.__date def set_date(self, new_date): self.__date = new_date def get_hours(self): return self.__hours def set_hours(self, new_hours): self.__hours = new_hours def get_emp_time_registers(self): return self.employeesTimeRegisters def set_to_clear_registers(self): self.employeesTimeRegisters = [] def __repr__(self): return '\nid: %i, data: %s -- %s horas\n\n' % (self.emp_id, self.date, self.hours)
# import levels YES = 'y' NO = 'n' INDENT = ' ' NAME_CHARS = (' ', ',', '-', '.') # ============================================================================== # I/O # ============================================================================== def in_print(s: str, indent: int=0): print(f'{INDENT * indent}{s}') def in_prompt(s: str, indent: int=0): return input(f'{INDENT * indent}{s}: ').strip() def invalid(s: str, indent: int=0): in_print(f'Invalid: {s}\n', indent) # ============================================================================== # VALIDATORS # ============================================================================== def v_nonempty(choice: str) -> bool: return choice.strip() != '' def v_name(choice: str) -> bool: """Return True if the given str is alphabetic besides OKAY characters.""" sanitized = choice for char in NAME_CHARS: sanitized = sanitized.replace(char, '') return sanitized.isalpha() def v_str(choice: str, lower: int=1, upper: int=float('inf')) -> bool: return lower <= len(choice) <= upper def v_number(choice: str, converter: callable, lower: float, upper: float) -> bool: try: return lower <= converter(choice) <= upper except: return False def v_int(choice: str, lower: int=float('-inf'), upper: int=float('inf')) -> bool: return v_number(choice, int, lower, upper) def v_float(choice: str, lower: int=float('-inf'), upper: int=float('inf')) -> bool: return v_number(choice, float, lower, upper) def v_bool(choice: str, strict: bool=False) -> bool: choice = choice.lower() return (not strict) or (v_nonempty(choice) and (choice in (YES, NO))) def v_level(choice: str) -> bool: return levels.is_valid_level(choice) def v_grade(choice: str) -> bool: choice = choice.strip('%') return v_float(choice) and levels.is_valid_grade(float(choice)) # ============================================================================== # PROMPTS # ============================================================================== def p(p: str='Input', indent: int=0, validators: list=[], inv: str='', allow_blank: bool=False, args: list=[], kwargs: dict={}): choice = in_prompt(p, indent) while (not (allow_blank and (not choice.strip()))) and (not all(v(choice, *args, **kwargs) for v in validators)): invalid(inv, indent) choice = in_prompt(p, indent) return choice.strip() def p_bool(prompt: str='Yes or no', indent: int=0, strict: bool=False, default: bool=True, allow_blank: bool=False) -> bool: """ Prompt yes/no and return a bool. If a default is given, only give the non-default if it's explicitly input. In strict mode, only return True/False; None is not possible. If not strict and no default, any input besides yes/no returns None. """ choice = p(f'{prompt}? {YES}/{NO}', indent, [v_bool], f'{YES} or {NO}', [strict]) choice = choice.lower() if allow_blank and (not choice.strip()): return default if default is True: return choice != NO elif default is False: return choice == YES else: return True if choice == YES else False if choice == NO else None def p_name(prompt: str='Name', indent: int=0, allow_blank: bool=False) -> str: choice = p(prompt, indent, [v_nonempty, v_name], f'letters + {NAME_CHARS}', allow_blank=allow_blank) return choice def p_str(prompt: str='String', indent: int=0, lower: int=1, upper: int=float('inf'), allow_blank: bool=False) -> str: choice = p(prompt, indent, [v_str], f'between {lower} and {upper} characters', allow_blank=allow_blank, args=[lower, upper]) return choice def p_int(prompt: str='Integer', indent: int=0, lower: int=float('-inf'), upper: int=float('inf'), allow_blank: bool=False) -> int: inv = f'integer between {lower} and {upper} (inclusive)' choice = p(prompt, indent, [v_int], inv, allow_blank=allow_blank, args=[lower, upper]) return int(choice) if choice else None def p_float(prompt: str='Number', indent: int=0, lower: float=float('-inf'), upper: float=float('inf'), allow_blank: bool=False) -> float: inv = f'number between {lower} and {upper} (inclusive)' choice = p(prompt, indent, [v_float], inv, allow_blank=allow_blank, args=[lower, upper]) return float(choice) if choice else None def p_level(prompt: str='Level', indent: int=0, allow_blank: bool=False) -> str: choice = p(prompt, indent, [v_level], 'level in Growing Success', allow_blank=allow_blank).upper() return choice def p_grade(prompt: str='Grade', indent: int=0, allow_blank: bool=False) -> float: choice = p(prompt, indent, [v_grade], '% from 0 to 120', allow_blank=allow_blank).strip('%') return float(choice) if choice else None def p_choice(prompt: str='Options', choices=[], indent: int=0, allow_blank: bool=False) -> int: if not choices: raise Exception max_cols = len(str(len(choices))) choice_strs = [] for (i, choice) in enumerate(choices): choice_strs.append(f'{str(i + 1).ljust(max_cols)}: {choice}') prompt = f'{prompt}:\n\n' + '\n'.join(choice_strs) + '\n\nChoice' return p_int(prompt, indent=indent, lower=1, upper=len(choices), allow_blank=allow_blank) # ============================================================================== # FORMATTING # ============================================================================== def f_float(f: float) -> str: truncated = f'{f:.1f}' rounded = f'{round(f, 1)}' return truncated if truncated == rounded else f'{truncated} or {rounded}' # ============================================================================== # OPERATIONS # ============================================================================== def loop(routine: callable, args: list=[], kwargs: dict={}, blank_before: bool=True, blank_after: bool=True): responses = [] go = p_bool('Start') while go: responses.append(routine(*args, **kwargs)) if blank_before: print() go = p_bool('Continue') if blank_after: print() return responses
yes = 'y' no = 'n' indent = ' ' name_chars = (' ', ',', '-', '.') def in_print(s: str, indent: int=0): print(f'{INDENT * indent}{s}') def in_prompt(s: str, indent: int=0): return input(f'{INDENT * indent}{s}: ').strip() def invalid(s: str, indent: int=0): in_print(f'Invalid: {s}\n', indent) def v_nonempty(choice: str) -> bool: return choice.strip() != '' def v_name(choice: str) -> bool: """Return True if the given str is alphabetic besides OKAY characters.""" sanitized = choice for char in NAME_CHARS: sanitized = sanitized.replace(char, '') return sanitized.isalpha() def v_str(choice: str, lower: int=1, upper: int=float('inf')) -> bool: return lower <= len(choice) <= upper def v_number(choice: str, converter: callable, lower: float, upper: float) -> bool: try: return lower <= converter(choice) <= upper except: return False def v_int(choice: str, lower: int=float('-inf'), upper: int=float('inf')) -> bool: return v_number(choice, int, lower, upper) def v_float(choice: str, lower: int=float('-inf'), upper: int=float('inf')) -> bool: return v_number(choice, float, lower, upper) def v_bool(choice: str, strict: bool=False) -> bool: choice = choice.lower() return not strict or (v_nonempty(choice) and choice in (YES, NO)) def v_level(choice: str) -> bool: return levels.is_valid_level(choice) def v_grade(choice: str) -> bool: choice = choice.strip('%') return v_float(choice) and levels.is_valid_grade(float(choice)) def p(p: str='Input', indent: int=0, validators: list=[], inv: str='', allow_blank: bool=False, args: list=[], kwargs: dict={}): choice = in_prompt(p, indent) while not (allow_blank and (not choice.strip())) and (not all((v(choice, *args, **kwargs) for v in validators))): invalid(inv, indent) choice = in_prompt(p, indent) return choice.strip() def p_bool(prompt: str='Yes or no', indent: int=0, strict: bool=False, default: bool=True, allow_blank: bool=False) -> bool: """ Prompt yes/no and return a bool. If a default is given, only give the non-default if it's explicitly input. In strict mode, only return True/False; None is not possible. If not strict and no default, any input besides yes/no returns None. """ choice = p(f'{prompt}? {YES}/{NO}', indent, [v_bool], f'{YES} or {NO}', [strict]) choice = choice.lower() if allow_blank and (not choice.strip()): return default if default is True: return choice != NO elif default is False: return choice == YES else: return True if choice == YES else False if choice == NO else None def p_name(prompt: str='Name', indent: int=0, allow_blank: bool=False) -> str: choice = p(prompt, indent, [v_nonempty, v_name], f'letters + {NAME_CHARS}', allow_blank=allow_blank) return choice def p_str(prompt: str='String', indent: int=0, lower: int=1, upper: int=float('inf'), allow_blank: bool=False) -> str: choice = p(prompt, indent, [v_str], f'between {lower} and {upper} characters', allow_blank=allow_blank, args=[lower, upper]) return choice def p_int(prompt: str='Integer', indent: int=0, lower: int=float('-inf'), upper: int=float('inf'), allow_blank: bool=False) -> int: inv = f'integer between {lower} and {upper} (inclusive)' choice = p(prompt, indent, [v_int], inv, allow_blank=allow_blank, args=[lower, upper]) return int(choice) if choice else None def p_float(prompt: str='Number', indent: int=0, lower: float=float('-inf'), upper: float=float('inf'), allow_blank: bool=False) -> float: inv = f'number between {lower} and {upper} (inclusive)' choice = p(prompt, indent, [v_float], inv, allow_blank=allow_blank, args=[lower, upper]) return float(choice) if choice else None def p_level(prompt: str='Level', indent: int=0, allow_blank: bool=False) -> str: choice = p(prompt, indent, [v_level], 'level in Growing Success', allow_blank=allow_blank).upper() return choice def p_grade(prompt: str='Grade', indent: int=0, allow_blank: bool=False) -> float: choice = p(prompt, indent, [v_grade], '% from 0 to 120', allow_blank=allow_blank).strip('%') return float(choice) if choice else None def p_choice(prompt: str='Options', choices=[], indent: int=0, allow_blank: bool=False) -> int: if not choices: raise Exception max_cols = len(str(len(choices))) choice_strs = [] for (i, choice) in enumerate(choices): choice_strs.append(f'{str(i + 1).ljust(max_cols)}: {choice}') prompt = f'{prompt}:\n\n' + '\n'.join(choice_strs) + '\n\nChoice' return p_int(prompt, indent=indent, lower=1, upper=len(choices), allow_blank=allow_blank) def f_float(f: float) -> str: truncated = f'{f:.1f}' rounded = f'{round(f, 1)}' return truncated if truncated == rounded else f'{truncated} or {rounded}' def loop(routine: callable, args: list=[], kwargs: dict={}, blank_before: bool=True, blank_after: bool=True): responses = [] go = p_bool('Start') while go: responses.append(routine(*args, **kwargs)) if blank_before: print() go = p_bool('Continue') if blank_after: print() return responses
def isPalindrome (input): input = [int(i) for i in str(input)] length = int(len(input)) if length % 2 == 0: part1 = (input[0: int(length / 2)]) part2 = (input[int(length / 2):]) part2 = list(reversed(part2)) else: part1 = (input[0: int(length // 2)]) part2 = (input[int(length // 2) + 1:]) part2 = list(reversed(part2)) return (part1 == part2) curVal = 0 maxVal = 0 for i in range(999, 0, -1): for j in range (999, 0, -1): curVal = i * j if (curVal > maxVal) and (isPalindrome(curVal)): maxVal = curVal print(maxVal)
def is_palindrome(input): input = [int(i) for i in str(input)] length = int(len(input)) if length % 2 == 0: part1 = input[0:int(length / 2)] part2 = input[int(length / 2):] part2 = list(reversed(part2)) else: part1 = input[0:int(length // 2)] part2 = input[int(length // 2) + 1:] part2 = list(reversed(part2)) return part1 == part2 cur_val = 0 max_val = 0 for i in range(999, 0, -1): for j in range(999, 0, -1): cur_val = i * j if curVal > maxVal and is_palindrome(curVal): max_val = curVal print(maxVal)
source_urls = { "2014": [ "https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2014/javascript.json", "https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2014/ruby.json", "https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2014/ux.json", ], "2015": [ "https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2015/ruby.json", "https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2015/ux.json", ], "2016": [ "https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2016/ruby.json", "https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2016/ux.json", ], "2017": [ "https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2017/javascript.json", "https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2017/android.json", "https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2017/css.json", "https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2017/data.json", "https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2017/devops.json", "https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2017/general.json", "https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2017/ios.json", "https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2017/php.json", "https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2017/ruby.json", "https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2017/tech-comm.json", "https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2017/ux.json", ], "2018": [ "https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2018/javascript.json", "https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2018/android.json", "https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2018/css.json", "https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2018/data.json", "https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2018/devops.json", "https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2018/dotnet.json", "https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2018/elixir.json", "https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2018/general.json", "https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2018/golang.json", "https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2018/ios.json", "https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2018/php.json", "https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2018/python.json", "https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2018/ruby.json", "https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2018/rust.json", "https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2018/scala.json", "https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2018/security.json", "https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2018/tech-comm.json", "https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2018/ux.json", ], "2019": [ "https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2019/javascript.json", "https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2019/android.json", "https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2019/css.json", "https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2019/data.json", "https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2019/devops.json", "https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2019/elixir.json", "https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2019/general.json", "https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2019/golang.json", "https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2019/ios.json", "https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2019/php.json", "https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2019/python.json", "https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2019/ruby.json", "https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2019/rust.json", "https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2019/security.json", "https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2019/tech-comm.json", "https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2019/ux.json", ] } source_urls_javascript = { }
source_urls = {'2014': ['https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2014/javascript.json', 'https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2014/ruby.json', 'https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2014/ux.json'], '2015': ['https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2015/ruby.json', 'https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2015/ux.json'], '2016': ['https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2016/ruby.json', 'https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2016/ux.json'], '2017': ['https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2017/javascript.json', 'https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2017/android.json', 'https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2017/css.json', 'https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2017/data.json', 'https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2017/devops.json', 'https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2017/general.json', 'https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2017/ios.json', 'https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2017/php.json', 'https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2017/ruby.json', 'https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2017/tech-comm.json', 'https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2017/ux.json'], '2018': ['https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2018/javascript.json', 'https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2018/android.json', 'https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2018/css.json', 'https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2018/data.json', 'https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2018/devops.json', 'https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2018/dotnet.json', 'https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2018/elixir.json', 'https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2018/general.json', 'https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2018/golang.json', 'https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2018/ios.json', 'https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2018/php.json', 'https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2018/python.json', 'https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2018/ruby.json', 'https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2018/rust.json', 'https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2018/scala.json', 'https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2018/security.json', 'https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2018/tech-comm.json', 'https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2018/ux.json'], '2019': ['https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2019/javascript.json', 'https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2019/android.json', 'https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2019/css.json', 'https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2019/data.json', 'https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2019/devops.json', 'https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2019/elixir.json', 'https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2019/general.json', 'https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2019/golang.json', 'https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2019/ios.json', 'https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2019/php.json', 'https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2019/python.json', 'https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2019/ruby.json', 'https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2019/rust.json', 'https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2019/security.json', 'https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2019/tech-comm.json', 'https://raw.githubusercontent.com/tech-conferences/conference-data/master/conferences/2019/ux.json']} source_urls_javascript = {}
""" day 8 of Advent of Code 2018 by Stefan Kruger """ class DataProvider: def __init__(self, data): self.cursor = 0 self.data = data @classmethod def read_file(cls, filename="data/input8.data"): with open(filename) as f: return cls([int(item) for item in f.read().split(" ")]) def next(self): self.cursor += 1 return self.data[self.cursor - 1] class Node: def __init__(self, children, metadata): self.children = children self.metadata = metadata @classmethod def make_node(cls, data): node_count = data.next() meta_count = data.next() children = [] metadata = [] for _ in range(node_count): children.append(cls.make_node(data)) for _ in range(meta_count): metadata.append(data.next()) return cls(children, metadata) def meta_sum(self): s = sum(self.metadata) for c in self.children: s += c.meta_sum() return s def value(self): """ If a node has no child nodes, its value is the sum of its metadata entries. However, if a node does have child nodes, the metadata entries become indexes which refer to those child nodes. A metadata entry of 1 refers to the first child node, 2 to the second, 3 to the third, and so on. The value of this node is the sum of the values of the child nodes referenced by the metadata entries. If a referenced child node does not exist, that reference is skipped. A child node can be referenced multiple time and counts each time it is referenced. A metadata entry of 0 does not refer to any child node. """ if not self.children: return sum(self.metadata) v = 0 for index in self.metadata: child = index - 1 if child < 0 or child >= len(self.children): continue v += self.children[child].value() return v if __name__ == "__main__": data = DataProvider.read_file() # data = DataProvider([2, 3, 0, 3, 10, 11, 12, 1, 1, 0, 1, 99, 2, 1, 1, 2]) tree = Node.make_node(data) print(f'Part1: {tree.meta_sum()}') print(f'Part2: {tree.value()}')
""" day 8 of Advent of Code 2018 by Stefan Kruger """ class Dataprovider: def __init__(self, data): self.cursor = 0 self.data = data @classmethod def read_file(cls, filename='data/input8.data'): with open(filename) as f: return cls([int(item) for item in f.read().split(' ')]) def next(self): self.cursor += 1 return self.data[self.cursor - 1] class Node: def __init__(self, children, metadata): self.children = children self.metadata = metadata @classmethod def make_node(cls, data): node_count = data.next() meta_count = data.next() children = [] metadata = [] for _ in range(node_count): children.append(cls.make_node(data)) for _ in range(meta_count): metadata.append(data.next()) return cls(children, metadata) def meta_sum(self): s = sum(self.metadata) for c in self.children: s += c.meta_sum() return s def value(self): """ If a node has no child nodes, its value is the sum of its metadata entries. However, if a node does have child nodes, the metadata entries become indexes which refer to those child nodes. A metadata entry of 1 refers to the first child node, 2 to the second, 3 to the third, and so on. The value of this node is the sum of the values of the child nodes referenced by the metadata entries. If a referenced child node does not exist, that reference is skipped. A child node can be referenced multiple time and counts each time it is referenced. A metadata entry of 0 does not refer to any child node. """ if not self.children: return sum(self.metadata) v = 0 for index in self.metadata: child = index - 1 if child < 0 or child >= len(self.children): continue v += self.children[child].value() return v if __name__ == '__main__': data = DataProvider.read_file() tree = Node.make_node(data) print(f'Part1: {tree.meta_sum()}') print(f'Part2: {tree.value()}')
class Solution: def maxValue(self, events: List[List[int]], k: int) -> int: e = sorted(events) @lru_cache(None) def dp(i, k): if k == 0 or i == len(e): return 0 # binary search events to find the first index j s.t. e[j][0] > e[i][1] j = bisect.bisect(e, [e[i][1], math.inf, math.inf], i + 1) return max(dp(i + 1, k), e[i][2] + dp(j, k - 1)) return dp(0, k)
class Solution: def max_value(self, events: List[List[int]], k: int) -> int: e = sorted(events) @lru_cache(None) def dp(i, k): if k == 0 or i == len(e): return 0 j = bisect.bisect(e, [e[i][1], math.inf, math.inf], i + 1) return max(dp(i + 1, k), e[i][2] + dp(j, k - 1)) return dp(0, k)
l,r = input().split() l,r = int(l), int(r) if l == 0 and r == 0: print("Not a moose") elif l == r: print("Even", l+r) elif l != r: mx = max(l,r) print("Odd", mx*2)
(l, r) = input().split() (l, r) = (int(l), int(r)) if l == 0 and r == 0: print('Not a moose') elif l == r: print('Even', l + r) elif l != r: mx = max(l, r) print('Odd', mx * 2)
bot_fav_color = "blue" # Creating a parent class to use for various games class Player: def __init__(self, name, fav_color): self.name = name self.fav_color = fav_color def __str__(self): if self.fav_color == "blue": return f"Hi {self.name}! My favorite color is also blue!" return f"Hi {self.name}! {self.fav_color} is an awesome color!" # Forming a repeatable stack structure class Stack: def __init__(self, abc): self.height = 4 self.abc = abc def move_piece(self): coordinates = input("Please tell the host your move in row#,col# format.") self.height -= 1 def __str__(self): return "l" * self.height # To give the player 3 stacks of 4 pieces and identify whether they are playing as white or black class GobletPlayer(Player): def __init__(self, name, fav_color, wb): self.color = wb self.stack_a = Stack(name + '_a') self.stack_b = Stack(name + '_b') self.stack_c = Stack(name + '_c') super.__init__(name, fav_color) def choose_stack(self): print(f"Stack A: {self.stack_a}, Stack B: {self.stack_b}, Stack C: {self.stack_c}") stack = input("Please enter which stack you will take the piece from (a, b, or c).") if stack == 'a': self.stack_a.move_piece() elif stack == 'b': self.stack_b.move_piece() else: self.stack_c.move_piece()
bot_fav_color = 'blue' class Player: def __init__(self, name, fav_color): self.name = name self.fav_color = fav_color def __str__(self): if self.fav_color == 'blue': return f'Hi {self.name}! My favorite color is also blue!' return f'Hi {self.name}! {self.fav_color} is an awesome color!' class Stack: def __init__(self, abc): self.height = 4 self.abc = abc def move_piece(self): coordinates = input('Please tell the host your move in row#,col# format.') self.height -= 1 def __str__(self): return 'l' * self.height class Gobletplayer(Player): def __init__(self, name, fav_color, wb): self.color = wb self.stack_a = stack(name + '_a') self.stack_b = stack(name + '_b') self.stack_c = stack(name + '_c') super.__init__(name, fav_color) def choose_stack(self): print(f'Stack A: {self.stack_a}, Stack B: {self.stack_b}, Stack C: {self.stack_c}') stack = input('Please enter which stack you will take the piece from (a, b, or c).') if stack == 'a': self.stack_a.move_piece() elif stack == 'b': self.stack_b.move_piece() else: self.stack_c.move_piece()
# subtraction with two number with user input a = int(input("Enter The First Value:")) b = int(input("Enter The Seceond Value:")) if a>b: Subtraction = a - b # In capital letters print("subtraction OF:",Subtraction) else: subtraction = b - a # Small Latter print("Substraction OF: -",subtraction)
a = int(input('Enter The First Value:')) b = int(input('Enter The Seceond Value:')) if a > b: subtraction = a - b print('subtraction OF:', Subtraction) else: subtraction = b - a print('Substraction OF: -', subtraction)
# Copyright 2020 The Elekto Authors # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # # Author(s): Manish Sahani <rec.manish.sahani@gmail.com> # Application's CSRF Security CSRF_STATE = 'state' AUTH_STATE = 'authentication' # Github Endpoints GITHUB_AUTHORIZE = 'https://github.com/login/oauth/authorize' GITHUB_ACCESS = 'https://github.com/login/oauth/access_token' GITHUB_PROFILE = 'https://api.github.com/user' # Election attributes related constants ELEC_STAT_COMPLETED = 'completed' ELEC_STAT_RUNNING = 'running' ELEC_STAT_UPCOMING = 'upcoming' # Candidates attribiutes related constants CAND_START_DEL = '--n' CAND_END_DEL = '---'
csrf_state = 'state' auth_state = 'authentication' github_authorize = 'https://github.com/login/oauth/authorize' github_access = 'https://github.com/login/oauth/access_token' github_profile = 'https://api.github.com/user' elec_stat_completed = 'completed' elec_stat_running = 'running' elec_stat_upcoming = 'upcoming' cand_start_del = '--n' cand_end_del = '---'
# # PySNMP MIB module SPAGENT-MIB (http://snmplabs.com/pysmi) # ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/SPAGENT-MIB # Produced by pysmi-0.3.4 at Mon Apr 29 21:02:25 2019 # On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4 # Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15) # Integer, ObjectIdentifier, OctetString = mibBuilder.importSymbols("ASN1", "Integer", "ObjectIdentifier", "OctetString") NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues") ConstraintsIntersection, ValueSizeConstraint, ConstraintsUnion, SingleValueConstraint, ValueRangeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsIntersection", "ValueSizeConstraint", "ConstraintsUnion", "SingleValueConstraint", "ValueRangeConstraint") NotificationGroup, ModuleCompliance = mibBuilder.importSymbols("SNMPv2-CONF", "NotificationGroup", "ModuleCompliance") Gauge32, MibScalar, MibTable, MibTableRow, MibTableColumn, MibIdentifier, IpAddress, ModuleIdentity, Unsigned32, Counter64, Bits, NotificationType, iso, Integer32, enterprises, ObjectIdentity, TimeTicks, NotificationType, Counter32 = mibBuilder.importSymbols("SNMPv2-SMI", "Gauge32", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "MibIdentifier", "IpAddress", "ModuleIdentity", "Unsigned32", "Counter64", "Bits", "NotificationType", "iso", "Integer32", "enterprises", "ObjectIdentity", "TimeTicks", "NotificationType", "Counter32") TextualConvention, DisplayString = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "DisplayString") akcp = MibIdentifier((1, 3, 6, 1, 4, 1, 3854)) sensorProbe = MibIdentifier((1, 3, 6, 1, 4, 1, 3854, 1)) spSummary = MibIdentifier((1, 3, 6, 1, 4, 1, 3854, 1, 1)) spStatus = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("noStatus", 1), ("normal", 2), ("warning", 3), ("critical", 4), ("sensorError", 5)))).setMaxAccess("readonly") if mibBuilder.loadTexts: spStatus.setStatus('mandatory') spManufName = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 1, 6), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: spManufName.setStatus('mandatory') spHelpUrl = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 1, 7), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: spHelpUrl.setStatus('mandatory') spProductName = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 1, 8), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: spProductName.setStatus('mandatory') spHostName = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 1, 9), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: spHostName.setStatus('mandatory') spSensor = MibIdentifier((1, 3, 6, 1, 4, 1, 3854, 1, 2)) sensorProbeDetail = MibIdentifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2)) sensorProbeEntry = MibIdentifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1)) sensorProbeHost = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 1), IpAddress()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeHost.setStatus('mandatory') sensorProbeUseDHCP = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("yes", 1), ("no", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeUseDHCP.setStatus('mandatory') sensorProbeMAC = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 3), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeMAC.setStatus('mandatory') sensorProbeSetCommunity = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 4), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSetCommunity.setStatus('mandatory') sensorProbeGetCommunity = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 5), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeGetCommunity.setStatus('mandatory') sensorProbeTempTable = MibTable((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16), ) if mibBuilder.loadTexts: sensorProbeTempTable.setStatus('mandatory') sensorProbeTempEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1), ).setIndexNames((0, "SPAGENT-MIB", "sensorProbeTempIndex")) if mibBuilder.loadTexts: sensorProbeTempEntry.setStatus('mandatory') sensorProbeTempDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 1), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTempDescription.setStatus('mandatory') sensorProbeTempLocation = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 2), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTempLocation.setStatus('mandatory') sensorProbeTempDegree = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 3), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeTempDegree.setStatus('mandatory') sensorProbeTempStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("noStatus", 1), ("normal", 2), ("highWarning", 3), ("highCritical", 4), ("lowWarning", 5), ("lowCritical", 6), ("sensorError", 7)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeTempStatus.setStatus('mandatory') sensorProbeTempOnline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("online", 1), ("offline", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeTempOnline.setStatus('mandatory') sensorProbeTempGoOnline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("goOnline", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTempGoOnline.setStatus('mandatory') sensorProbeTempHighWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 7), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTempHighWarning.setStatus('mandatory') sensorProbeTempHighCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 8), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTempHighCritical.setStatus('mandatory') sensorProbeTempLowWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 9), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTempLowWarning.setStatus('mandatory') sensorProbeTempLowCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 10), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTempLowCritical.setStatus('mandatory') sensorProbeTempRearm = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 11), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTempRearm.setStatus('mandatory') sensorProbeTempDegreeType = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("fahr", 0), ("celsius", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTempDegreeType.setStatus('mandatory') sensorProbeTempSensorType = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("type1", 0), ("type2", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTempSensorType.setStatus('mandatory') sensorProbeTempDegreeRaw = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 14), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeTempDegreeRaw.setStatus('mandatory') sensorProbeTempEmailTrapLimit = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 16), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disable", 0), ("enable", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTempEmailTrapLimit.setStatus('mandatory') sensorProbeTempEmailTrapSchedule = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 17), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTempEmailTrapSchedule.setStatus('mandatory') sensorProbeTempEmailTrapInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 18), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 60))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTempEmailTrapInterval.setStatus('mandatory') sensorProbeTempSendNormalTrap = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 19), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disable", 0), ("enable", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTempSendNormalTrap.setStatus('mandatory') sensorProbeTempDelayError = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 20), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTempDelayError.setStatus('mandatory') sensorProbeTempDelayNormal = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 21), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTempDelayNormal.setStatus('mandatory') sensorProbeTempIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 22), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 7))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeTempIndex.setStatus('mandatory') sensorProbeTempRelayCycleTime = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 23), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTempRelayCycleTime.setStatus('mandatory') sensorProbeTempRelayOnPort = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 24), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTempRelayOnPort.setStatus('mandatory') sensorProbeTempRelayActiveStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 25), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("highWarning", 3), ("highCritical", 4), ("lowWarning", 5), ("lowCritical", 6), ("anyError", 7)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTempRelayActiveStatus.setStatus('mandatory') sensorProbeTempRelayAction = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 26), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3, 4))).clone(namedValues=NamedValues(("cycle", 2), ("turn-on", 3), ("turn-off", 4)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTempRelayAction.setStatus('mandatory') sensorProbeTempEmailInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 27), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 60))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTempEmailInterval.setStatus('mandatory') sensorProbeTempIndexCount = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 28), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeTempIndexCount.setStatus('mandatory') sensorProbeTempOffset = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 29), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTempOffset.setStatus('mandatory') sensorProbeTempSirenCycleTime = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 30), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTempSirenCycleTime.setStatus('mandatory') sensorProbeTempSirenOnPort = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 31), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTempSirenOnPort.setStatus('mandatory') sensorProbeTempSirenActiveStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 32), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("highWarning", 3), ("highCritical", 4), ("lowWarning", 5), ("lowCritical", 6), ("anyError", 7)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTempSirenActiveStatus.setStatus('mandatory') sensorProbeTempSirenAction = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 33), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3, 4))).clone(namedValues=NamedValues(("cycle", 2), ("turn-on", 3), ("turn-off", 4)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTempSirenAction.setStatus('mandatory') sensorProbeTempAcknowledgement = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 34), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1))).clone(namedValues=NamedValues(("ack", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTempAcknowledgement.setStatus('mandatory') sensorProbeTempSirenDelayAlarm = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 35), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTempSirenDelayAlarm.setStatus('mandatory') sensorProbeTempURL = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 36), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTempURL.setStatus('mandatory') sensorProbeTempOpenURL = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 37), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 2))).clone(namedValues=NamedValues(("cur-window", 0), ("new-window", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTempOpenURL.setStatus('mandatory') sensorProbeTempDatacollectType = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 38), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("average", 1), ("highest", 2), ("lowest", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTempDatacollectType.setStatus('mandatory') sensorProbeTempContTimeHighCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 39), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTempContTimeHighCritical.setStatus('mandatory') sensorProbeTempContTimeHighWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 40), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTempContTimeHighWarning.setStatus('mandatory') sensorProbeTempContTimeNormal = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 41), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTempContTimeNormal.setStatus('mandatory') sensorProbeTempContTimeLowWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 42), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTempContTimeLowWarning.setStatus('mandatory') sensorProbeTempContTimeLowCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 43), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTempContTimeLowCritical.setStatus('mandatory') sensorProbeTempContTimeSensorError = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 44), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTempContTimeSensorError.setStatus('mandatory') sensorProbeTempCalendar = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 45), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disable", 0), ("enable", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTempCalendar.setStatus('mandatory') sensorProbeThermostatIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 46), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeThermostatIndex.setStatus('mandatory') sensorProbeThermostatDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 47), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatDescription.setStatus('mandatory') sensorProbeThermostatValue = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 48), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeThermostatValue.setStatus('mandatory') sensorProbeThermostatOnline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 49), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("online", 1), ("offline", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeThermostatOnline.setStatus('mandatory') sensorProbeThermostatGoOnline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 50), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("goOnline", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatGoOnline.setStatus('mandatory') sensorProbeThermostatMode = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 51), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("normal", 0), ("time-bases", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatMode.setStatus('mandatory') sensorProbeThermostatRelayControlPort = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 52), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatRelayControlPort.setStatus('mandatory') sensorProbeThermostatNormalAction1 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 53), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("turn-on", 0), ("turn-off", 1), ("no-change", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatNormalAction1.setStatus('mandatory') sensorProbeThermostatHighLimit1 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 54), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-40, 167))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatHighLimit1.setStatus('mandatory') sensorProbeThermostatHighLimitAction1 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 55), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("turn-on", 0), ("turn-off", 1), ("no-change", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatHighLimitAction1.setStatus('mandatory') sensorProbeThermostatLowLimit1 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 56), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-40, 167))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatLowLimit1.setStatus('mandatory') sensorProbeThermostatLowLimitAction1 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 57), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("turn-on", 0), ("turn-off", 1), ("no-change", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatLowLimitAction1.setStatus('mandatory') sensorProbeThermostatNormalAction2 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 58), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("turn-on", 0), ("turn-off", 1), ("no-change", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatNormalAction2.setStatus('mandatory') sensorProbeThermostatHighLimit2 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 59), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-40, 167))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatHighLimit2.setStatus('mandatory') sensorProbeThermostatHighLimitAction2 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 60), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("turn-on", 0), ("turn-off", 1), ("no-change", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatHighLimitAction2.setStatus('mandatory') sensorProbeThermostatLowLimit2 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 61), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-40, 167))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatLowLimit2.setStatus('mandatory') sensorProbeThermostatLowLimitAction2 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 62), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("turn-on", 0), ("turn-off", 1), ("no-change", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatLowLimitAction2.setStatus('mandatory') sensorProbeThermostatEnableTime = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 63), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatEnableTime.setStatus('mandatory') sensorProbeTempSendNormalMail = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 64), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disable", 0), ("enable", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTempSendNormalMail.setStatus('mandatory') sensorProbeTempSendTrap = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 65), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disable", 0), ("enable", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTempSendTrap.setStatus('mandatory') sensorProbeTempSendMail = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 66), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disable", 0), ("enable", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTempSendMail.setStatus('mandatory') sensorProbeHumidityTable = MibTable((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17), ) if mibBuilder.loadTexts: sensorProbeHumidityTable.setStatus('mandatory') sensorProbeHumidityEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1), ).setIndexNames((0, "SPAGENT-MIB", "sensorProbeHumidityIndex")) if mibBuilder.loadTexts: sensorProbeHumidityEntry.setStatus('mandatory') sensorProbeHumidityDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 1), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeHumidityDescription.setStatus('mandatory') sensorProbeHumidityLocation = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 2), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeHumidityLocation.setStatus('mandatory') sensorProbeHumidityPercent = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-32768, 32767))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeHumidityPercent.setStatus('mandatory') sensorProbeHumidityStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("noStatus", 1), ("normal", 2), ("highWarning", 3), ("highCritical", 4), ("lowWarning", 5), ("lowCritical", 6), ("sensorError", 7)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeHumidityStatus.setStatus('mandatory') sensorProbeHumidityOnline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("online", 1), ("offline", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeHumidityOnline.setStatus('mandatory') sensorProbeHumidityGoOnline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("goOnline", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeHumidityGoOnline.setStatus('mandatory') sensorProbeHumidityHighWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 7), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeHumidityHighWarning.setStatus('mandatory') sensorProbeHumidityHighCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 8), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeHumidityHighCritical.setStatus('mandatory') sensorProbeHumidityLowWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 9), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeHumidityLowWarning.setStatus('mandatory') sensorProbeHumidityLowCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 10), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeHumidityLowCritical.setStatus('mandatory') sensorProbeHumidityRearm = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 11), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeHumidityRearm.setStatus('mandatory') sensorProbeHumidityRaw = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 13), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeHumidityRaw.setStatus('mandatory') sensorProbeHumidityLowVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 14), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeHumidityLowVoltage.setStatus('mandatory') sensorProbeHumidityHighVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 15), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeHumidityHighVoltage.setStatus('mandatory') sensorProbeHumidityEmailTrapLimit = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 17), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disable", 0), ("enable", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeHumidityEmailTrapLimit.setStatus('mandatory') sensorProbeHumidityEmailTrapSchedule = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 18), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeHumidityEmailTrapSchedule.setStatus('mandatory') sensorProbeHumidityEmailTrapInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 19), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 60))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeHumidityEmailTrapInterval.setStatus('mandatory') sensorProbeHumiditySendNormalTrap = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 20), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disable", 0), ("enable", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeHumiditySendNormalTrap.setStatus('mandatory') sensorProbeHumidityDelayError = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 21), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeHumidityDelayError.setStatus('mandatory') sensorProbeHumidityDelayNormal = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 22), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeHumidityDelayNormal.setStatus('mandatory') sensorProbeHumidityIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 23), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 7))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeHumidityIndex.setStatus('mandatory') sensorProbeHumidityAtoDAmountMaxVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 24), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeHumidityAtoDAmountMaxVoltage.setStatus('mandatory') sensorProbeHumidityAtoDAmountBaseVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 25), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeHumidityAtoDAmountBaseVoltage.setStatus('mandatory') sensorProbeHumidityAtoDTypeUnit = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 26), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("absolute", 1), ("percent", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeHumidityAtoDTypeUnit.setStatus('mandatory') sensorProbeHumidityDcUnit = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 27), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeHumidityDcUnit.setStatus('mandatory') sensorProbeHumidityAtoDJumper = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 28), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(-600, -400, -300, -200, -100, 100, 200, 300, 400, 600))).clone(namedValues=NamedValues(("jumperAt-60", -600), ("jumperAt-40", -400), ("jumperAt-30", -300), ("jumperAt-20", -200), ("jumperAt-10", -100), ("jumperAt10", 100), ("jumperAt20", 200), ("jumperAt30", 300), ("jumperAt40", 400), ("jumperAt60", 600)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeHumidityAtoDJumper.setStatus('mandatory') sensorProbeHumidityRelayCycleTime = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 29), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeHumidityRelayCycleTime.setStatus('mandatory') sensorProbeHumidityRelayOnPort = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 30), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeHumidityRelayOnPort.setStatus('mandatory') sensorProbeHumidityRelayActiveStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 31), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("highWarning", 3), ("highCritical", 4), ("lowWarning", 5), ("lowCritical", 6), ("anyError", 7)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeHumidityRelayActiveStatus.setStatus('mandatory') sensorProbeHumidityRelayAction = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 32), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3, 4))).clone(namedValues=NamedValues(("cycle", 2), ("turn-on", 3), ("turn-off", 4)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeHumidityRelayAction.setStatus('mandatory') sensorProbeHumidityEmailInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 33), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 60))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeHumidityEmailInterval.setStatus('mandatory') sensorProbeHumidity4to20mAUnit = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 34), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeHumidity4to20mAUnit.setStatus('mandatory') sensorProbeHumidityIndexCount = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 35), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeHumidityIndexCount.setStatus('mandatory') sensorProbeHumidityOffset = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 36), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeHumidityOffset.setStatus('mandatory') sensorProbeHumiditySirenCycleTime = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 37), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeHumiditySirenCycleTime.setStatus('mandatory') sensorProbeHumiditySirenOnPort = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 38), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeHumiditySirenOnPort.setStatus('mandatory') sensorProbeHumiditySirenActiveStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 39), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("highWarning", 3), ("highCritical", 4), ("lowWarning", 5), ("lowCritical", 6), ("anyError", 7)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeHumiditySirenActiveStatus.setStatus('mandatory') sensorProbeHumiditySirenAction = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 40), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3, 4))).clone(namedValues=NamedValues(("cycle", 2), ("turn-on", 3), ("turn-off", 4)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeHumiditySirenAction.setStatus('mandatory') sensorProbeHumidityAcknowledgement = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 41), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1))).clone(namedValues=NamedValues(("ack", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeHumidityAcknowledgement.setStatus('mandatory') sensorProbeHumiditySirenDelayAlarm = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 42), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeHumiditySirenDelayAlarm.setStatus('mandatory') sensorProbeHumidityURL = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 43), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeHumidityURL.setStatus('mandatory') sensorProbeHumidityOpenURL = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 44), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 2))).clone(namedValues=NamedValues(("cur-window", 0), ("new-window", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeHumidityOpenURL.setStatus('mandatory') sensorProbeHumidityDatacollectType = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 45), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("average", 1), ("highest", 2), ("lowest", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeHumidityDatacollectType.setStatus('mandatory') sensorProbeHumidityContTimeHighCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 46), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeHumidityContTimeHighCritical.setStatus('mandatory') sensorProbeHumidityContTimeHighWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 47), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeHumidityContTimeHighWarning.setStatus('mandatory') sensorProbeHumidityContTimeNormal = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 48), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeHumidityContTimeNormal.setStatus('mandatory') sensorProbeHumidityContTimeLowWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 49), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeHumidityContTimeLowWarning.setStatus('mandatory') sensorProbeHumidityContTimeLowCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 50), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeHumidityContTimeLowCritical.setStatus('mandatory') sensorProbeHumidityContTimeSensorError = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 51), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeHumidityContTimeSensorError.setStatus('mandatory') sensorProbeHumidityCalendar = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 52), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disable", 0), ("enable", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeHumidityCalendar.setStatus('mandatory') sensorProbeHumiditySendNormalMail = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 53), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disable", 0), ("enable", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeHumiditySendNormalMail.setStatus('mandatory') sensorProbeHumiditySendTrap = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 54), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disable", 0), ("enable", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeHumiditySendTrap.setStatus('mandatory') sensorProbeHumiditySendMail = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 55), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disable", 0), ("enable", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeHumiditySendMail.setStatus('mandatory') sensorProbeSwitchTable = MibTable((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18), ) if mibBuilder.loadTexts: sensorProbeSwitchTable.setStatus('mandatory') sensorProbeSwitchEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1), ).setIndexNames((0, "SPAGENT-MIB", "sensorProbeSwitchIndex")) if mibBuilder.loadTexts: sensorProbeSwitchEntry.setStatus('mandatory') sensorProbeSwitchDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 1), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSwitchDescription.setStatus('mandatory') sensorProbeSwitchLocation = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 2), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSwitchLocation.setStatus('mandatory') sensorProbeSwitchStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 4, 6, 7, 8, 9))).clone(namedValues=NamedValues(("noStatus", 1), ("normal", 2), ("highCritical", 4), ("lowCritical", 6), ("sensorError", 7), ("relayOn", 8), ("relayOff", 9)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeSwitchStatus.setStatus('mandatory') sensorProbeSwitchOnline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("online", 1), ("offline", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeSwitchOnline.setStatus('mandatory') sensorProbeSwitchGoOnline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("goOnline", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSwitchGoOnline.setStatus('mandatory') sensorProbeSwitchDirection = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("input", 0), ("output", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSwitchDirection.setStatus('mandatory') sensorProbeSwitchNormalState = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("closed", 0), ("open", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSwitchNormalState.setStatus('mandatory') sensorProbeSwitchOutputLevel = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("low", 0), ("high", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSwitchOutputLevel.setStatus('mandatory') sensorProbeSensorType = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 8, 9, 10, 12, 13, 14))).clone(namedValues=NamedValues(("temperature", 1), ("fourTo20mA", 2), ("humidity", 3), ("water", 4), ("atod", 5), ("security", 6), ("airflow", 8), ("siren", 9), ("dryContact", 10), ("voltage", 12), ("relay", 13), ("motion", 14)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSensorType.setStatus('mandatory') sensorProbeSwitchEmailTrapLimit = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disable", 0), ("enable", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSwitchEmailTrapLimit.setStatus('mandatory') sensorProbeSwitchEmailTrapSchedule = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 12), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSwitchEmailTrapSchedule.setStatus('mandatory') sensorProbeSwitchEmailTrapInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 13), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 60))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSwitchEmailTrapInterval.setStatus('mandatory') sensorProbeSwitchSendNormalTrap = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disable", 0), ("enable", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSwitchSendNormalTrap.setStatus('mandatory') sensorProbeSwitchDelayError = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 15), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSwitchDelayError.setStatus('mandatory') sensorProbeSwitchDelayNormal = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 16), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSwitchDelayNormal.setStatus('mandatory') sensorProbeSwitchIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 17), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 67))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeSwitchIndex.setStatus('mandatory') sensorProbeSwitchRelayCycleTime = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 18), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSwitchRelayCycleTime.setStatus('mandatory') sensorProbeSwitchRelayOnPort = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 19), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSwitchRelayOnPort.setStatus('mandatory') sensorProbeSwitchRelayActiveStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 20), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("highWarning", 3), ("highCritical", 4), ("lowWarning", 5), ("lowCritical", 6), ("anyError", 7)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSwitchRelayActiveStatus.setStatus('mandatory') sensorProbeSwitchRelayAction = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 21), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3, 4))).clone(namedValues=NamedValues(("cycle", 2), ("turn-on", 3), ("turn-off", 4)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSwitchRelayAction.setStatus('mandatory') sensorProbeSwitchEmailInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 22), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 60))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSwitchEmailInterval.setStatus('mandatory') sensorProbeSwitchRelayOutputVoltStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 23), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(7, 10, 11))).clone(namedValues=NamedValues(("sensorError", 7), ("noVoltagePresent", 10), ("voltagePresent", 11)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeSwitchRelayOutputVoltStatus.setStatus('mandatory') sensorProbeSwitchManualRelayCycleTime = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 24), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSwitchManualRelayCycleTime.setStatus('mandatory') sensorProbeSwitchManualRelayAction = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 25), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 3, 4, 7, 8))).clone(namedValues=NamedValues(("allow-sensor-control", 1), ("turn-on", 3), ("turn-off", 4), ("cycle-Off-On-Off", 7), ("cycle-On-Off-On", 8)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSwitchManualRelayAction.setStatus('mandatory') sensorProbeSwitchRelayDescOn = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 26), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSwitchRelayDescOn.setStatus('mandatory') sensorProbeSwitchRelayDescOff = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 27), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSwitchRelayDescOff.setStatus('mandatory') sensorProbeSwitchIndexCount = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 28), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeSwitchIndexCount.setStatus('mandatory') sensorProbeSwitchSirenCycleTime = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 29), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSwitchSirenCycleTime.setStatus('mandatory') sensorProbeSwitchSirenOnPort = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 30), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSwitchSirenOnPort.setStatus('mandatory') sensorProbeSwitchSirenActiveStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 31), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("highWarning", 3), ("highCritical", 4), ("lowWarning", 5), ("lowCritical", 6), ("anyError", 7)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSwitchSirenActiveStatus.setStatus('mandatory') sensorProbeSwitchSirenAction = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 32), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3, 4))).clone(namedValues=NamedValues(("cycle", 2), ("turn-on", 3), ("turn-off", 4)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSwitchSirenAction.setStatus('mandatory') sensorProbeSwitchAcknowledgement = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 33), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1))).clone(namedValues=NamedValues(("ack", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSwitchAcknowledgement.setStatus('mandatory') sensorProbeSwitchSirenDelayAlarm = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 34), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSwitchSirenDelayAlarm.setStatus('mandatory') sensorProbeSwitchURL = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 35), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSwitchURL.setStatus('mandatory') sensorProbeSwitchOpenURL = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 36), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 2))).clone(namedValues=NamedValues(("cur-window", 0), ("new-window", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSwitchOpenURL.setStatus('mandatory') sensorProbeSwitchContTimeHighCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 37), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSwitchContTimeHighCritical.setStatus('mandatory') sensorProbeSwitchContTimeNormal = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 39), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSwitchContTimeNormal.setStatus('mandatory') sensorProbeSwitchCalendar = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 43), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disable", 0), ("enable", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSwitchCalendar.setStatus('mandatory') sensorProbeSwitchRelayControlMode = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 44), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("manual-control", 0), ("notification-control", 1), ("time-control", 2), ("thermostat-control", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSwitchRelayControlMode.setStatus('mandatory') sensorProbeSwitchSirenControlMode = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 45), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("manual-control", 0), ("notification-control", 1), ("time-control", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSwitchSirenControlMode.setStatus('mandatory') sensorProbeSwitchSendNormalMail = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 46), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disable", 0), ("enable", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSwitchSendNormalMail.setStatus('mandatory') sensorProbeSwitchSendTrap = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 47), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disable", 0), ("enable", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSwitchSendTrap.setStatus('mandatory') sensorProbeSwitchSendMail = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 48), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disable", 0), ("enable", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSwitchSendMail.setStatus('mandatory') sensorProbeSwitchWaterRopeLeakLocation = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 49), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeSwitchWaterRopeLeakLocation.setStatus('mandatory') sensorProbeSwitchWaterRopeLength = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 50), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeSwitchWaterRopeLength.setStatus('mandatory') sensorProbeSwitchWaterRopeUnit = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 51), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("meters", 0), ("feet", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSwitchWaterRopeUnit.setStatus('mandatory') sensorProbeSwitchWaterRopeImpedance = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 52), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSwitchWaterRopeImpedance.setStatus('mandatory') sensorProbeSwitchWaterRopeRaw = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 53), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeSwitchWaterRopeRaw.setStatus('mandatory') sensorProbeSwitchWaterRopeType = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 55), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("custom", 0), ("water", 1), ("fuel", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSwitchWaterRopeType.setStatus('mandatory') sensorProbeOtherSensor = MibIdentifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19)) sensorProbeIRMSSensor = MibIdentifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 26)) sensorProbeIRMSSensorNumber = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 26, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeIRMSSensorNumber.setStatus('mandatory') sensorProbeIRMSSensorTable = MibTable((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 26, 2), ) if mibBuilder.loadTexts: sensorProbeIRMSSensorTable.setStatus('mandatory') sensorProbeIRMSSensorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 26, 2, 1), ).setIndexNames((0, "SPAGENT-MIB", "sensorProbeIRMSSensorIndex")) if mibBuilder.loadTexts: sensorProbeIRMSSensorEntry.setStatus('mandatory') sensorProbeIRMSSensorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 26, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 7))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeIRMSSensorIndex.setStatus('mandatory') sensorProbeIRMSDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 26, 2, 1, 2), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeIRMSDescription.setStatus('mandatory') sensorProbeIRMSPercent = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 26, 2, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-32768, 32767))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeIRMSPercent.setStatus('mandatory') sensorProbeIRMSStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 26, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("noStatus", 1), ("normal", 2), ("highWarning", 3), ("highCritical", 4), ("lowWarning", 5), ("lowCritical", 6), ("sensorError", 7)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeIRMSStatus.setStatus('mandatory') sensorProbeIRMSOnline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 26, 2, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("online", 1), ("offline", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeIRMSOnline.setStatus('mandatory') sensorProbeIRMSGoOnline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 26, 2, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("goOnline", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeIRMSGoOnline.setStatus('mandatory') sensorProbeIRMSHighWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 26, 2, 1, 7), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeIRMSHighWarning.setStatus('mandatory') sensorProbeIRMSHighCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 26, 2, 1, 8), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeIRMSHighCritical.setStatus('mandatory') sensorProbeIRMSLowWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 26, 2, 1, 9), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeIRMSLowWarning.setStatus('mandatory') sensorProbeIRMSLowCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 26, 2, 1, 10), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeIRMSLowCritical.setStatus('mandatory') sensorProbeIRMSRearm = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 26, 2, 1, 11), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeIRMSRearm.setStatus('mandatory') sensorProbeIRMSRaw = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 26, 2, 1, 13), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeIRMSRaw.setStatus('mandatory') sensorProbeIRMSEmailTrapLimit = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 26, 2, 1, 17), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disable", 0), ("enable", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeIRMSEmailTrapLimit.setStatus('mandatory') sensorProbeIRMSDelayError = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 26, 2, 1, 21), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeIRMSDelayError.setStatus('mandatory') sensorProbeIRMSDelayNormal = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 26, 2, 1, 22), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeIRMSDelayNormal.setStatus('mandatory') sensorProbeIRMSRelayCycleTime = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 26, 2, 1, 29), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeIRMSRelayCycleTime.setStatus('mandatory') sensorProbeIRMSRelayOnPort = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 26, 2, 1, 30), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeIRMSRelayOnPort.setStatus('mandatory') sensorProbeIRMSRelayActiveStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 26, 2, 1, 31), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("highWarning", 3), ("highCritical", 4), ("lowWarning", 5), ("lowCritical", 6), ("anyError", 7)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeIRMSRelayActiveStatus.setStatus('mandatory') sensorProbeIRMSRelayAction = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 26, 2, 1, 32), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3, 4))).clone(namedValues=NamedValues(("cycle", 2), ("turn-on", 3), ("turn-off", 4)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeIRMSRelayAction.setStatus('mandatory') sensorProbeIRMSSirenCycleTime = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 26, 2, 1, 37), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeIRMSSirenCycleTime.setStatus('mandatory') sensorProbeIRMSSirenOnPort = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 26, 2, 1, 38), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeIRMSSirenOnPort.setStatus('mandatory') sensorProbeIRMSSirenActiveStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 26, 2, 1, 39), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("highWarning", 3), ("highCritical", 4), ("lowWarning", 5), ("lowCritical", 6), ("anyError", 7)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeIRMSSirenActiveStatus.setStatus('mandatory') sensorProbeIRMSSirenAction = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 26, 2, 1, 40), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3, 4))).clone(namedValues=NamedValues(("cycle", 2), ("turn-on", 3), ("turn-off", 4)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeIRMSSirenAction.setStatus('mandatory') sensorProbeIRMSAcknowledgement = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 26, 2, 1, 41), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1))).clone(namedValues=NamedValues(("ack", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeIRMSAcknowledgement.setStatus('mandatory') sensorProbeIRMSSirenDelayAlarm = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 26, 2, 1, 42), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeIRMSSirenDelayAlarm.setStatus('mandatory') sensorProbeIRMSURL = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 26, 2, 1, 43), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeIRMSURL.setStatus('mandatory') sensorProbeIRMSOpenURL = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 26, 2, 1, 44), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 2))).clone(namedValues=NamedValues(("cur-window", 0), ("new-window", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeIRMSOpenURL.setStatus('mandatory') sensorProbeIRMSDatacollectType = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 26, 2, 1, 45), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("average", 1), ("highest", 2), ("lowest", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeIRMSDatacollectType.setStatus('mandatory') sensorProbeIRMSContTimeHighCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 26, 2, 1, 46), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeIRMSContTimeHighCritical.setStatus('mandatory') sensorProbeIRMSContTimeHighWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 26, 2, 1, 47), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeIRMSContTimeHighWarning.setStatus('mandatory') sensorProbeIRMSContTimeNormal = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 26, 2, 1, 48), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeIRMSContTimeNormal.setStatus('mandatory') sensorProbeIRMSContTimeLowWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 26, 2, 1, 49), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeIRMSContTimeLowWarning.setStatus('mandatory') sensorProbeIRMSContTimeLowCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 26, 2, 1, 50), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeIRMSContTimeLowCritical.setStatus('mandatory') sensorProbeIRMSContTimeSensorError = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 26, 2, 1, 51), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeIRMSContTimeSensorError.setStatus('mandatory') sensorProbeIRMSCalendar = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 26, 2, 1, 52), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disable", 0), ("enable", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeIRMSCalendar.setStatus('mandatory') sensorProbeVRMSSensor = MibIdentifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 27)) sensorProbeVRMSSensorNumber = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 27, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeVRMSSensorNumber.setStatus('mandatory') sensorProbeVRMSSensorTable = MibTable((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 27, 2), ) if mibBuilder.loadTexts: sensorProbeVRMSSensorTable.setStatus('mandatory') sensorProbeVRMSSensorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 27, 2, 1), ).setIndexNames((0, "SPAGENT-MIB", "sensorProbeVRMSSensorIndex")) if mibBuilder.loadTexts: sensorProbeVRMSSensorEntry.setStatus('mandatory') sensorProbeVRMSSensorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 27, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 7))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeVRMSSensorIndex.setStatus('mandatory') sensorProbeVRMSDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 27, 2, 1, 2), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeVRMSDescription.setStatus('mandatory') sensorProbeVRMSPercent = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 27, 2, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-32768, 32767))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeVRMSPercent.setStatus('mandatory') sensorProbeVRMSStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 27, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("noStatus", 1), ("normal", 2), ("highWarning", 3), ("highCritical", 4), ("lowWarning", 5), ("lowCritical", 6), ("sensorError", 7)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeVRMSStatus.setStatus('mandatory') sensorProbeVRMSOnline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 27, 2, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("online", 1), ("offline", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeVRMSOnline.setStatus('mandatory') sensorProbeVRMSGoOnline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 27, 2, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("goOnline", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeVRMSGoOnline.setStatus('mandatory') sensorProbeVRMSHighWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 27, 2, 1, 7), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeVRMSHighWarning.setStatus('mandatory') sensorProbeVRMSHighCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 27, 2, 1, 8), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeVRMSHighCritical.setStatus('mandatory') sensorProbeVRMSLowWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 27, 2, 1, 9), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeVRMSLowWarning.setStatus('mandatory') sensorProbeVRMSLowCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 27, 2, 1, 10), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeVRMSLowCritical.setStatus('mandatory') sensorProbeVRMSRearm = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 27, 2, 1, 11), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeVRMSRearm.setStatus('mandatory') sensorProbeVRMSRaw = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 27, 2, 1, 13), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeVRMSRaw.setStatus('mandatory') sensorProbeVRMSEmailTrapLimit = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 27, 2, 1, 17), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disable", 0), ("enable", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeVRMSEmailTrapLimit.setStatus('mandatory') sensorProbeVRMSDelayError = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 27, 2, 1, 21), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeVRMSDelayError.setStatus('mandatory') sensorProbeVRMSDelayNormal = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 27, 2, 1, 22), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeVRMSDelayNormal.setStatus('mandatory') sensorProbeVRMSRelayCycleTime = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 27, 2, 1, 29), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeVRMSRelayCycleTime.setStatus('mandatory') sensorProbeVRMSRelayOnPort = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 27, 2, 1, 30), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeVRMSRelayOnPort.setStatus('mandatory') sensorProbeVRMSRelayActiveStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 27, 2, 1, 31), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("highWarning", 3), ("highCritical", 4), ("lowWarning", 5), ("lowCritical", 6), ("anyError", 7)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeVRMSRelayActiveStatus.setStatus('mandatory') sensorProbeVRMSRelayAction = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 27, 2, 1, 32), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3, 4))).clone(namedValues=NamedValues(("cycle", 2), ("turn-on", 3), ("turn-off", 4)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeVRMSRelayAction.setStatus('mandatory') sensorProbeVRMSSirenCycleTime = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 27, 2, 1, 37), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeVRMSSirenCycleTime.setStatus('mandatory') sensorProbeVRMSSirenOnPort = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 27, 2, 1, 38), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeVRMSSirenOnPort.setStatus('mandatory') sensorProbeVRMSSirenActiveStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 27, 2, 1, 39), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("highWarning", 3), ("highCritical", 4), ("lowWarning", 5), ("lowCritical", 6), ("anyError", 7)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeVRMSSirenActiveStatus.setStatus('mandatory') sensorProbeVRMSSirenAction = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 27, 2, 1, 40), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3, 4))).clone(namedValues=NamedValues(("cycle", 2), ("turn-on", 3), ("turn-off", 4)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeVRMSSirenAction.setStatus('mandatory') sensorProbeVRMSAcknowledgement = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 27, 2, 1, 41), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1))).clone(namedValues=NamedValues(("ack", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeVRMSAcknowledgement.setStatus('mandatory') sensorProbeVRMSSirenDelayAlarm = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 27, 2, 1, 42), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeVRMSSirenDelayAlarm.setStatus('mandatory') sensorProbeVRMSvoltageMode = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 27, 2, 1, 43), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(110, 220))).clone(namedValues=NamedValues(("ac-110", 110), ("ac-220", 220)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeVRMSvoltageMode.setStatus('mandatory') sensorProbeVRMSURL = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 27, 2, 1, 44), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeVRMSURL.setStatus('mandatory') sensorProbeVRMSOpenURL = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 27, 2, 1, 45), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 2))).clone(namedValues=NamedValues(("cur-window", 0), ("new-window", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeVRMSOpenURL.setStatus('mandatory') sensorProbeVRMSDatacollectType = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 27, 2, 1, 46), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("average", 1), ("highest", 2), ("lowest", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeVRMSDatacollectType.setStatus('mandatory') sensorProbeVRMSContTimeHighCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 27, 2, 1, 47), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeVRMSContTimeHighCritical.setStatus('mandatory') sensorProbeVRMSContTimeHighWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 27, 2, 1, 48), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeVRMSContTimeHighWarning.setStatus('mandatory') sensorProbeVRMSContTimeNormal = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 27, 2, 1, 49), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeVRMSContTimeNormal.setStatus('mandatory') sensorProbeVRMSContTimeLowWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 27, 2, 1, 50), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeVRMSContTimeLowWarning.setStatus('mandatory') sensorProbeVRMSContTimeLowCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 27, 2, 1, 51), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeVRMSContTimeLowCritical.setStatus('mandatory') sensorProbeVRMSContTimeSensorError = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 27, 2, 1, 52), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeVRMSContTimeSensorError.setStatus('mandatory') sensorProbeVRMSCalendar = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 27, 2, 1, 53), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disable", 0), ("enable", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeVRMSCalendar.setStatus('mandatory') sensorProbeEnergySensor = MibIdentifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 28)) sensorProbeEnergySensorNumber = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 28, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeEnergySensorNumber.setStatus('mandatory') sensorProbeEnergySensorTable = MibTable((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 28, 2), ) if mibBuilder.loadTexts: sensorProbeEnergySensorTable.setStatus('mandatory') sensorProbeEnergySensorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 28, 2, 1), ).setIndexNames((0, "SPAGENT-MIB", "sensorProbeEnergySensorIndex")) if mibBuilder.loadTexts: sensorProbeEnergySensorEntry.setStatus('mandatory') sensorProbeEnergySensorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 28, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 7))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeEnergySensorIndex.setStatus('mandatory') sensorProbeEnergyDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 28, 2, 1, 2), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeEnergyDescription.setStatus('mandatory') sensorProbeEnergyPercent = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 28, 2, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-32768, 32767))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeEnergyPercent.setStatus('mandatory') sensorProbeEnergyStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 28, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("noStatus", 1), ("normal", 2), ("highWarning", 3), ("highCritical", 4), ("lowWarning", 5), ("lowCritical", 6), ("sensorError", 7)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeEnergyStatus.setStatus('mandatory') sensorProbeEnergyOnline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 28, 2, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("online", 1), ("offline", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeEnergyOnline.setStatus('mandatory') sensorProbeEnergyGoOnline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 28, 2, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("goOnline", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeEnergyGoOnline.setStatus('mandatory') sensorProbeEnergyHighWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 28, 2, 1, 7), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeEnergyHighWarning.setStatus('mandatory') sensorProbeEnergyHighCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 28, 2, 1, 8), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeEnergyHighCritical.setStatus('mandatory') sensorProbeEnergyLowWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 28, 2, 1, 9), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeEnergyLowWarning.setStatus('mandatory') sensorProbeEnergyLowCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 28, 2, 1, 10), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeEnergyLowCritical.setStatus('mandatory') sensorProbeEnergyRearm = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 28, 2, 1, 11), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeEnergyRearm.setStatus('mandatory') sensorProbeEnergyRaw = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 28, 2, 1, 13), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeEnergyRaw.setStatus('mandatory') sensorProbeEnergyEmailTrapLimit = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 28, 2, 1, 17), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disable", 0), ("enable", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeEnergyEmailTrapLimit.setStatus('mandatory') sensorProbeEnergyDelayError = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 28, 2, 1, 21), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeEnergyDelayError.setStatus('mandatory') sensorProbeEnergyDelayNormal = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 28, 2, 1, 22), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeEnergyDelayNormal.setStatus('mandatory') sensorProbeEnergyRelayCycleTime = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 28, 2, 1, 29), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeEnergyRelayCycleTime.setStatus('mandatory') sensorProbeEnergyRelayOnPort = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 28, 2, 1, 30), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeEnergyRelayOnPort.setStatus('mandatory') sensorProbeEnergyRelayActiveStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 28, 2, 1, 31), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("highWarning", 3), ("highCritical", 4), ("lowWarning", 5), ("lowCritical", 6), ("anyError", 7)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeEnergyRelayActiveStatus.setStatus('mandatory') sensorProbeEnergyRelayAction = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 28, 2, 1, 32), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3, 4))).clone(namedValues=NamedValues(("cycle", 2), ("turn-on", 3), ("turn-off", 4)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeEnergyRelayAction.setStatus('mandatory') sensorProbeEnergySirenCycleTime = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 28, 2, 1, 37), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeEnergySirenCycleTime.setStatus('mandatory') sensorProbeEnergySirenOnPort = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 28, 2, 1, 38), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeEnergySirenOnPort.setStatus('mandatory') sensorProbeEnergySirenActiveStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 28, 2, 1, 39), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("highWarning", 3), ("highCritical", 4), ("lowWarning", 5), ("lowCritical", 6), ("anyError", 7)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeEnergySirenActiveStatus.setStatus('mandatory') sensorProbeEnergySirenAction = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 28, 2, 1, 40), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3, 4))).clone(namedValues=NamedValues(("cycle", 2), ("turn-on", 3), ("turn-off", 4)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeEnergySirenAction.setStatus('mandatory') sensorProbeEnergyAcknowledgement = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 28, 2, 1, 41), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1))).clone(namedValues=NamedValues(("ack", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeEnergyAcknowledgement.setStatus('mandatory') sensorProbeEnergySirenDelayAlarm = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 28, 2, 1, 42), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeEnergySirenDelayAlarm.setStatus('mandatory') sensorProbeEnergyReadingMode = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 28, 2, 1, 43), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("active", 0), ("apparent", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeEnergyReadingMode.setStatus('mandatory') sensorProbeEnergyURL = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 28, 2, 1, 44), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeEnergyURL.setStatus('mandatory') sensorProbeEnergyOpenURL = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 28, 2, 1, 45), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 2))).clone(namedValues=NamedValues(("cur-window", 0), ("new-window", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeEnergyOpenURL.setStatus('mandatory') sensorProbeEnergyDatacollectType = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 28, 2, 1, 46), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("average", 1), ("highest", 2), ("lowest", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeEnergyDatacollectType.setStatus('mandatory') sensorProbeEnergyContTimeHighCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 28, 2, 1, 47), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeEnergyContTimeHighCritical.setStatus('mandatory') sensorProbeEnergyContTimeHighWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 28, 2, 1, 48), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeEnergyContTimeHighWarning.setStatus('mandatory') sensorProbeEnergyContTimeNormal = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 28, 2, 1, 49), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeEnergyContTimeNormal.setStatus('mandatory') sensorProbeEnergyContTimeLowWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 28, 2, 1, 50), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeEnergyContTimeLowWarning.setStatus('mandatory') sensorProbeEnergyContTimeLowCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 28, 2, 1, 51), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeEnergyContTimeLowCritical.setStatus('mandatory') sensorProbeEnergyContTimeSensorError = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 28, 2, 1, 52), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeEnergyContTimeSensorError.setStatus('mandatory') sensorProbeEnergyCalendar = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 28, 2, 1, 53), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disable", 0), ("enable", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeEnergyCalendar.setStatus('mandatory') sensorProbeRelayArraySensor = MibIdentifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29)) sensorProbeRelayArrayPort1 = MibIdentifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 1)) sensorProbeRelayArrayPort1Number = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeRelayArrayPort1Number.setStatus('mandatory') sensorProbeRelayArrayPort1Table = MibTable((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 1, 2), ) if mibBuilder.loadTexts: sensorProbeRelayArrayPort1Table.setStatus('mandatory') sensorProbeRelayArrayPort1Entry = MibTableRow((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 1, 2, 1), ).setIndexNames((0, "SPAGENT-MIB", "sensorProbeRelayArrayPort1Index")) if mibBuilder.loadTexts: sensorProbeRelayArrayPort1Entry.setStatus('mandatory') sensorProbeRelayArrayPort1Index = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 1, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 7))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeRelayArrayPort1Index.setStatus('mandatory') sensorProbeRelayArrayPort1Description = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 1, 2, 1, 2), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort1Description.setStatus('mandatory') sensorProbeRelayArrayPort1Status = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 1, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 4, 6, 7, 8, 9))).clone(namedValues=NamedValues(("noStatus", 1), ("normal", 2), ("highCritical", 4), ("lowCritical", 6), ("sensorError", 7), ("relayOn", 8), ("relayOff", 9)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeRelayArrayPort1Status.setStatus('mandatory') sensorProbeRelayArrayPort1Online = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 1, 2, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("online", 1), ("offline", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeRelayArrayPort1Online.setStatus('mandatory') sensorProbeRelayArrayPort1GoOnline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 1, 2, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("goOnline", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort1GoOnline.setStatus('mandatory') sensorProbeRelayArrayPort1NormalState = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 1, 2, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("closed", 0), ("open", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort1NormalState.setStatus('mandatory') sensorProbeRelayArrayPort1RelayCycleTime = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 1, 2, 1, 18), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort1RelayCycleTime.setStatus('mandatory') sensorProbeRelayArrayPort1RelayAction = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 1, 2, 1, 21), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3, 4))).clone(namedValues=NamedValues(("cycle", 2), ("turn-on", 3), ("turn-off", 4)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort1RelayAction.setStatus('mandatory') sensorProbeRelayArrayPort1ManualRelayCycleTime = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 1, 2, 1, 24), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort1ManualRelayCycleTime.setStatus('mandatory') sensorProbeRelayArrayPort1ManualRelayAction = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 1, 2, 1, 25), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 3, 4, 7, 8))).clone(namedValues=NamedValues(("allow-sensor-control", 1), ("turn-on", 3), ("turn-off", 4), ("cycle-Off-On-Off", 7), ("cycle-On-Off-On", 8)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort1ManualRelayAction.setStatus('mandatory') sensorProbeRelayArrayPort1RelayDescOn = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 1, 2, 1, 26), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort1RelayDescOn.setStatus('mandatory') sensorProbeRelayArrayPort1RelayDescOff = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 1, 2, 1, 27), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort1RelayDescOff.setStatus('mandatory') sensorProbeRelayArrayPort1URL = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 1, 2, 1, 28), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort1URL.setStatus('mandatory') sensorProbeRelayArrayPort1OpenURL = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 1, 2, 1, 29), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 2))).clone(namedValues=NamedValues(("cur-window", 0), ("new-window", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort1OpenURL.setStatus('mandatory') sensorProbeRelayArrayPort1ControlMode = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 1, 2, 1, 30), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("manual-control", 0), ("notification-control", 1), ("time-control", 2), ("thermostat-control", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort1ControlMode.setStatus('mandatory') sensorProbeRelayArrayPort2 = MibIdentifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 2)) sensorProbeRelayArrayPort2Number = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 2, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeRelayArrayPort2Number.setStatus('mandatory') sensorProbeRelayArrayPort2Table = MibTable((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 2, 2), ) if mibBuilder.loadTexts: sensorProbeRelayArrayPort2Table.setStatus('mandatory') sensorProbeRelayArrayPort2Entry = MibTableRow((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 2, 2, 1), ).setIndexNames((0, "SPAGENT-MIB", "sensorProbeRelayArrayPort2Index")) if mibBuilder.loadTexts: sensorProbeRelayArrayPort2Entry.setStatus('mandatory') sensorProbeRelayArrayPort2Index = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 2, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 7))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeRelayArrayPort2Index.setStatus('mandatory') sensorProbeRelayArrayPort2Description = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 2, 2, 1, 2), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort2Description.setStatus('mandatory') sensorProbeRelayArrayPort2Status = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 2, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 4, 6, 7, 8, 9))).clone(namedValues=NamedValues(("noStatus", 1), ("normal", 2), ("highCritical", 4), ("lowCritical", 6), ("sensorError", 7), ("relayOn", 8), ("relayOff", 9)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeRelayArrayPort2Status.setStatus('mandatory') sensorProbeRelayArrayPort2Online = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 2, 2, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("online", 1), ("offline", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeRelayArrayPort2Online.setStatus('mandatory') sensorProbeRelayArrayPort2GoOnline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 2, 2, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("goOnline", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort2GoOnline.setStatus('mandatory') sensorProbeRelayArrayPort2NormalState = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 2, 2, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("closed", 0), ("open", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort2NormalState.setStatus('mandatory') sensorProbeRelayArrayPort2RelayCycleTime = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 2, 2, 1, 18), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort2RelayCycleTime.setStatus('mandatory') sensorProbeRelayArrayPort2RelayAction = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 2, 2, 1, 21), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3, 4))).clone(namedValues=NamedValues(("cycle", 2), ("turn-on", 3), ("turn-off", 4)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort2RelayAction.setStatus('mandatory') sensorProbeRelayArrayPort2ManualRelayCycleTime = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 2, 2, 1, 24), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort2ManualRelayCycleTime.setStatus('mandatory') sensorProbeRelayArrayPort2ManualRelayAction = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 2, 2, 1, 25), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 3, 4, 7, 8))).clone(namedValues=NamedValues(("allow-sensor-control", 1), ("turn-on", 3), ("turn-off", 4), ("cycle-Off-On-Off", 7), ("cycle-On-Off-On", 8)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort2ManualRelayAction.setStatus('mandatory') sensorProbeRelayArrayPort2RelayDescOn = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 2, 2, 1, 26), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort2RelayDescOn.setStatus('mandatory') sensorProbeRelayArrayPort2RelayDescOff = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 2, 2, 1, 27), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort2RelayDescOff.setStatus('mandatory') sensorProbeRelayArrayPort2URL = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 2, 2, 1, 28), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort2URL.setStatus('mandatory') sensorProbeRelayArrayPort2OpenURL = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 2, 2, 1, 29), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 2))).clone(namedValues=NamedValues(("cur-window", 0), ("new-window", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort2OpenURL.setStatus('mandatory') sensorProbeRelayArrayPort2ControlMode = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 2, 2, 1, 30), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("manual-control", 0), ("notification-control", 1), ("time-control", 2), ("thermostat-control", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort2ControlMode.setStatus('mandatory') sensorProbeRelayArrayPort3 = MibIdentifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 3)) sensorProbeRelayArrayPort3Number = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 3, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeRelayArrayPort3Number.setStatus('mandatory') sensorProbeRelayArrayPort3Table = MibTable((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 3, 2), ) if mibBuilder.loadTexts: sensorProbeRelayArrayPort3Table.setStatus('mandatory') sensorProbeRelayArrayPort3Entry = MibTableRow((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 3, 2, 1), ).setIndexNames((0, "SPAGENT-MIB", "sensorProbeRelayArrayPort3Index")) if mibBuilder.loadTexts: sensorProbeRelayArrayPort3Entry.setStatus('mandatory') sensorProbeRelayArrayPort3Index = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 3, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 7))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeRelayArrayPort3Index.setStatus('mandatory') sensorProbeRelayArrayPort3Description = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 3, 2, 1, 2), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort3Description.setStatus('mandatory') sensorProbeRelayArrayPort3Status = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 3, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 4, 6, 7, 8, 9))).clone(namedValues=NamedValues(("noStatus", 1), ("normal", 2), ("highCritical", 4), ("lowCritical", 6), ("sensorError", 7), ("relayOn", 8), ("relayOff", 9)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeRelayArrayPort3Status.setStatus('mandatory') sensorProbeRelayArrayPort3Online = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 3, 2, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("online", 1), ("offline", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeRelayArrayPort3Online.setStatus('mandatory') sensorProbeRelayArrayPort3GoOnline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 3, 2, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("goOnline", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort3GoOnline.setStatus('mandatory') sensorProbeRelayArrayPort3NormalState = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 3, 2, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("closed", 0), ("open", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort3NormalState.setStatus('mandatory') sensorProbeRelayArrayPort3RelayCycleTime = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 3, 2, 1, 18), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort3RelayCycleTime.setStatus('mandatory') sensorProbeRelayArrayPort3RelayAction = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 3, 2, 1, 21), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3, 4))).clone(namedValues=NamedValues(("cycle", 2), ("turn-on", 3), ("turn-off", 4)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort3RelayAction.setStatus('mandatory') sensorProbeRelayArrayPort3ManualRelayCycleTime = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 3, 2, 1, 24), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort3ManualRelayCycleTime.setStatus('mandatory') sensorProbeRelayArrayPort3ManualRelayAction = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 3, 2, 1, 25), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 3, 4, 7, 8))).clone(namedValues=NamedValues(("allow-sensor-control", 1), ("turn-on", 3), ("turn-off", 4), ("cycle-Off-On-Off", 7), ("cycle-On-Off-On", 8)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort3ManualRelayAction.setStatus('mandatory') sensorProbeRelayArrayPort3RelayDescOn = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 3, 2, 1, 26), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort3RelayDescOn.setStatus('mandatory') sensorProbeRelayArrayPort3RelayDescOff = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 3, 2, 1, 27), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort3RelayDescOff.setStatus('mandatory') sensorProbeRelayArrayPort3URL = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 3, 2, 1, 28), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort3URL.setStatus('mandatory') sensorProbeRelayArrayPort3OpenURL = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 3, 2, 1, 29), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 2))).clone(namedValues=NamedValues(("cur-window", 0), ("new-window", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort3OpenURL.setStatus('mandatory') sensorProbeRelayArrayPort3ControlMode = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 3, 2, 1, 30), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("manual-control", 0), ("notification-control", 1), ("time-control", 2), ("thermostat-control", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort3ControlMode.setStatus('mandatory') sensorProbeRelayArrayPort4 = MibIdentifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 4)) sensorProbeRelayArrayPort4Number = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 4, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeRelayArrayPort4Number.setStatus('mandatory') sensorProbeRelayArrayPort4Table = MibTable((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 4, 2), ) if mibBuilder.loadTexts: sensorProbeRelayArrayPort4Table.setStatus('mandatory') sensorProbeRelayArrayPort4Entry = MibTableRow((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 4, 2, 1), ).setIndexNames((0, "SPAGENT-MIB", "sensorProbeRelayArrayPort4Index")) if mibBuilder.loadTexts: sensorProbeRelayArrayPort4Entry.setStatus('mandatory') sensorProbeRelayArrayPort4Index = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 4, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 7))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeRelayArrayPort4Index.setStatus('mandatory') sensorProbeRelayArrayPort4Description = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 4, 2, 1, 2), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort4Description.setStatus('mandatory') sensorProbeRelayArrayPort4Status = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 4, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 4, 6, 7, 8, 9))).clone(namedValues=NamedValues(("noStatus", 1), ("normal", 2), ("highCritical", 4), ("lowCritical", 6), ("sensorError", 7), ("relayOn", 8), ("relayOff", 9)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeRelayArrayPort4Status.setStatus('mandatory') sensorProbeRelayArrayPort4Online = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 4, 2, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("online", 1), ("offline", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeRelayArrayPort4Online.setStatus('mandatory') sensorProbeRelayArrayPort4GoOnline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 4, 2, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("goOnline", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort4GoOnline.setStatus('mandatory') sensorProbeRelayArrayPort4NormalState = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 4, 2, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("closed", 0), ("open", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort4NormalState.setStatus('mandatory') sensorProbeRelayArrayPort4RelayCycleTime = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 4, 2, 1, 18), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort4RelayCycleTime.setStatus('mandatory') sensorProbeRelayArrayPort4RelayAction = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 4, 2, 1, 21), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3, 4))).clone(namedValues=NamedValues(("cycle", 2), ("turn-on", 3), ("turn-off", 4)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort4RelayAction.setStatus('mandatory') sensorProbeRelayArrayPort4ManualRelayCycleTime = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 4, 2, 1, 24), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort4ManualRelayCycleTime.setStatus('mandatory') sensorProbeRelayArrayPort4ManualRelayAction = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 4, 2, 1, 25), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 3, 4, 7, 8))).clone(namedValues=NamedValues(("allow-sensor-control", 1), ("turn-on", 3), ("turn-off", 4), ("cycle-Off-On-Off", 7), ("cycle-On-Off-On", 8)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort4ManualRelayAction.setStatus('mandatory') sensorProbeRelayArrayPort4RelayDescOn = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 4, 2, 1, 26), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort4RelayDescOn.setStatus('mandatory') sensorProbeRelayArrayPort4RelayDescOff = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 4, 2, 1, 27), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort4RelayDescOff.setStatus('mandatory') sensorProbeRelayArrayPort4URL = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 4, 2, 1, 28), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort4URL.setStatus('mandatory') sensorProbeRelayArrayPort4OpenURL = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 4, 2, 1, 29), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 2))).clone(namedValues=NamedValues(("cur-window", 0), ("new-window", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort4OpenURL.setStatus('mandatory') sensorProbeRelayArrayPort4ControlMode = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 4, 2, 1, 30), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("manual-control", 0), ("notification-control", 1), ("time-control", 2), ("thermostat-control", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort4ControlMode.setStatus('mandatory') sensorProbeRelayArrayPort5 = MibIdentifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 5)) sensorProbeRelayArrayPort5Number = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 5, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeRelayArrayPort5Number.setStatus('mandatory') sensorProbeRelayArrayPort5Table = MibTable((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 5, 2), ) if mibBuilder.loadTexts: sensorProbeRelayArrayPort5Table.setStatus('mandatory') sensorProbeRelayArrayPort5Entry = MibTableRow((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 5, 2, 1), ).setIndexNames((0, "SPAGENT-MIB", "sensorProbeRelayArrayPort5Index")) if mibBuilder.loadTexts: sensorProbeRelayArrayPort5Entry.setStatus('mandatory') sensorProbeRelayArrayPort5Index = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 5, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 7))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeRelayArrayPort5Index.setStatus('mandatory') sensorProbeRelayArrayPort5Description = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 5, 2, 1, 2), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort5Description.setStatus('mandatory') sensorProbeRelayArrayPort5Status = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 5, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 4, 6, 7, 8, 9))).clone(namedValues=NamedValues(("noStatus", 1), ("normal", 2), ("highCritical", 4), ("lowCritical", 6), ("sensorError", 7), ("relayOn", 8), ("relayOff", 9)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeRelayArrayPort5Status.setStatus('mandatory') sensorProbeRelayArrayPort5Online = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 5, 2, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("online", 1), ("offline", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeRelayArrayPort5Online.setStatus('mandatory') sensorProbeRelayArrayPort5GoOnline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 5, 2, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("goOnline", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort5GoOnline.setStatus('mandatory') sensorProbeRelayArrayPort5NormalState = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 5, 2, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("closed", 0), ("open", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort5NormalState.setStatus('mandatory') sensorProbeRelayArrayPort5RelayCycleTime = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 5, 2, 1, 18), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort5RelayCycleTime.setStatus('mandatory') sensorProbeRelayArrayPort5RelayAction = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 5, 2, 1, 21), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3, 4))).clone(namedValues=NamedValues(("cycle", 2), ("turn-on", 3), ("turn-off", 4)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort5RelayAction.setStatus('mandatory') sensorProbeRelayArrayPort5ManualRelayCycleTime = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 5, 2, 1, 24), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort5ManualRelayCycleTime.setStatus('mandatory') sensorProbeRelayArrayPort5ManualRelayAction = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 5, 2, 1, 25), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 3, 4, 7, 8))).clone(namedValues=NamedValues(("allow-sensor-control", 1), ("turn-on", 3), ("turn-off", 4), ("cycle-Off-On-Off", 7), ("cycle-On-Off-On", 8)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort5ManualRelayAction.setStatus('mandatory') sensorProbeRelayArrayPort5RelayDescOn = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 5, 2, 1, 26), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort5RelayDescOn.setStatus('mandatory') sensorProbeRelayArrayPort5RelayDescOff = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 5, 2, 1, 27), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort5RelayDescOff.setStatus('mandatory') sensorProbeRelayArrayPort5URL = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 5, 2, 1, 28), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort5URL.setStatus('mandatory') sensorProbeRelayArrayPort5OpenURL = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 5, 2, 1, 29), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 2))).clone(namedValues=NamedValues(("cur-window", 0), ("new-window", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort5OpenURL.setStatus('mandatory') sensorProbeRelayArrayPort5ControlMode = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 5, 2, 1, 30), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("manual-control", 0), ("notification-control", 1), ("time-control", 2), ("thermostat-control", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort5ControlMode.setStatus('mandatory') sensorProbeRelayArrayPort6 = MibIdentifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 6)) sensorProbeRelayArrayPort6Number = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 6, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeRelayArrayPort6Number.setStatus('mandatory') sensorProbeRelayArrayPort6Table = MibTable((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 6, 2), ) if mibBuilder.loadTexts: sensorProbeRelayArrayPort6Table.setStatus('mandatory') sensorProbeRelayArrayPort6Entry = MibTableRow((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 6, 2, 1), ).setIndexNames((0, "SPAGENT-MIB", "sensorProbeRelayArrayPort6Index")) if mibBuilder.loadTexts: sensorProbeRelayArrayPort6Entry.setStatus('mandatory') sensorProbeRelayArrayPort6Index = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 6, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 7))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeRelayArrayPort6Index.setStatus('mandatory') sensorProbeRelayArrayPort6Description = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 6, 2, 1, 2), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort6Description.setStatus('mandatory') sensorProbeRelayArrayPort6Status = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 6, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 4, 6, 7, 8, 9))).clone(namedValues=NamedValues(("noStatus", 1), ("normal", 2), ("highCritical", 4), ("lowCritical", 6), ("sensorError", 7), ("relayOn", 8), ("relayOff", 9)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeRelayArrayPort6Status.setStatus('mandatory') sensorProbeRelayArrayPort6Online = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 6, 2, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("online", 1), ("offline", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeRelayArrayPort6Online.setStatus('mandatory') sensorProbeRelayArrayPort6GoOnline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 6, 2, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("goOnline", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort6GoOnline.setStatus('mandatory') sensorProbeRelayArrayPort6NormalState = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 6, 2, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("closed", 0), ("open", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort6NormalState.setStatus('mandatory') sensorProbeRelayArrayPort6RelayCycleTime = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 6, 2, 1, 18), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort6RelayCycleTime.setStatus('mandatory') sensorProbeRelayArrayPort6RelayAction = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 6, 2, 1, 21), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3, 4))).clone(namedValues=NamedValues(("cycle", 2), ("turn-on", 3), ("turn-off", 4)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort6RelayAction.setStatus('mandatory') sensorProbeRelayArrayPort6ManualRelayCycleTime = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 6, 2, 1, 24), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort6ManualRelayCycleTime.setStatus('mandatory') sensorProbeRelayArrayPort6ManualRelayAction = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 6, 2, 1, 25), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 3, 4, 7, 8))).clone(namedValues=NamedValues(("allow-sensor-control", 1), ("turn-on", 3), ("turn-off", 4), ("cycle-Off-On-Off", 7), ("cycle-On-Off-On", 8)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort6ManualRelayAction.setStatus('mandatory') sensorProbeRelayArrayPort6RelayDescOn = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 6, 2, 1, 26), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort6RelayDescOn.setStatus('mandatory') sensorProbeRelayArrayPort6RelayDescOff = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 6, 2, 1, 27), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort6RelayDescOff.setStatus('mandatory') sensorProbeRelayArrayPort6URL = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 6, 2, 1, 28), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort6URL.setStatus('mandatory') sensorProbeRelayArrayPort6OpenURL = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 6, 2, 1, 29), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 2))).clone(namedValues=NamedValues(("cur-window", 0), ("new-window", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort6OpenURL.setStatus('mandatory') sensorProbeRelayArrayPort6ControlMode = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 6, 2, 1, 30), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("manual-control", 0), ("notification-control", 1), ("time-control", 2), ("thermostat-control", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort6ControlMode.setStatus('mandatory') sensorProbeRelayArrayPort7 = MibIdentifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 7)) sensorProbeRelayArrayPort7Number = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 7, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeRelayArrayPort7Number.setStatus('mandatory') sensorProbeRelayArrayPort7Table = MibTable((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 7, 2), ) if mibBuilder.loadTexts: sensorProbeRelayArrayPort7Table.setStatus('mandatory') sensorProbeRelayArrayPort7Entry = MibTableRow((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 7, 2, 1), ).setIndexNames((0, "SPAGENT-MIB", "sensorProbeRelayArrayPort7Index")) if mibBuilder.loadTexts: sensorProbeRelayArrayPort7Entry.setStatus('mandatory') sensorProbeRelayArrayPort7Index = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 7, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 7))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeRelayArrayPort7Index.setStatus('mandatory') sensorProbeRelayArrayPort7Description = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 7, 2, 1, 2), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort7Description.setStatus('mandatory') sensorProbeRelayArrayPort7Status = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 7, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 4, 6, 7, 8, 9))).clone(namedValues=NamedValues(("noStatus", 1), ("normal", 2), ("highCritical", 4), ("lowCritical", 6), ("sensorError", 7), ("relayOn", 8), ("relayOff", 9)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeRelayArrayPort7Status.setStatus('mandatory') sensorProbeRelayArrayPort7Online = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 7, 2, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("online", 1), ("offline", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeRelayArrayPort7Online.setStatus('mandatory') sensorProbeRelayArrayPort7GoOnline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 7, 2, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("goOnline", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort7GoOnline.setStatus('mandatory') sensorProbeRelayArrayPort7NormalState = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 7, 2, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("closed", 0), ("open", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort7NormalState.setStatus('mandatory') sensorProbeRelayArrayPort7RelayCycleTime = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 7, 2, 1, 18), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort7RelayCycleTime.setStatus('mandatory') sensorProbeRelayArrayPort7RelayAction = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 7, 2, 1, 21), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3, 4))).clone(namedValues=NamedValues(("cycle", 2), ("turn-on", 3), ("turn-off", 4)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort7RelayAction.setStatus('mandatory') sensorProbeRelayArrayPort7ManualRelayCycleTime = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 7, 2, 1, 24), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort7ManualRelayCycleTime.setStatus('mandatory') sensorProbeRelayArrayPort7ManualRelayAction = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 7, 2, 1, 25), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 3, 4, 7, 8))).clone(namedValues=NamedValues(("allow-sensor-control", 1), ("turn-on", 3), ("turn-off", 4), ("cycle-Off-On-Off", 7), ("cycle-On-Off-On", 8)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort7ManualRelayAction.setStatus('mandatory') sensorProbeRelayArrayPort7RelayDescOn = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 7, 2, 1, 26), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort7RelayDescOn.setStatus('mandatory') sensorProbeRelayArrayPort7RelayDescOff = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 7, 2, 1, 27), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort7RelayDescOff.setStatus('mandatory') sensorProbeRelayArrayPort7URL = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 7, 2, 1, 28), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort7URL.setStatus('mandatory') sensorProbeRelayArrayPort7OpenURL = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 7, 2, 1, 29), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 2))).clone(namedValues=NamedValues(("cur-window", 0), ("new-window", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort7OpenURL.setStatus('mandatory') sensorProbeRelayArrayPort7ControlMode = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 7, 2, 1, 30), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("manual-control", 0), ("notification-control", 1), ("time-control", 2), ("thermostat-control", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort7ControlMode.setStatus('mandatory') sensorProbeRelayArrayPort8 = MibIdentifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 8)) sensorProbeRelayArrayPort8Number = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 8, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeRelayArrayPort8Number.setStatus('mandatory') sensorProbeRelayArrayPort8Table = MibTable((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 8, 2), ) if mibBuilder.loadTexts: sensorProbeRelayArrayPort8Table.setStatus('mandatory') sensorProbeRelayArrayPort8Entry = MibTableRow((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 8, 2, 1), ).setIndexNames((0, "SPAGENT-MIB", "sensorProbeRelayArrayPort8Index")) if mibBuilder.loadTexts: sensorProbeRelayArrayPort8Entry.setStatus('mandatory') sensorProbeRelayArrayPort8Index = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 8, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 7))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeRelayArrayPort8Index.setStatus('mandatory') sensorProbeRelayArrayPort8Description = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 8, 2, 1, 2), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort8Description.setStatus('mandatory') sensorProbeRelayArrayPort8Status = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 8, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 4, 6, 7, 8, 9))).clone(namedValues=NamedValues(("noStatus", 1), ("normal", 2), ("highCritical", 4), ("lowCritical", 6), ("sensorError", 7), ("relayOn", 8), ("relayOff", 9)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeRelayArrayPort8Status.setStatus('mandatory') sensorProbeRelayArrayPort8Online = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 8, 2, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("online", 1), ("offline", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeRelayArrayPort8Online.setStatus('mandatory') sensorProbeRelayArrayPort8GoOnline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 8, 2, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("goOnline", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort8GoOnline.setStatus('mandatory') sensorProbeRelayArrayPort8NormalState = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 8, 2, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("closed", 0), ("open", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort8NormalState.setStatus('mandatory') sensorProbeRelayArrayPort8RelayCycleTime = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 8, 2, 1, 18), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort8RelayCycleTime.setStatus('mandatory') sensorProbeRelayArrayPort8RelayAction = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 8, 2, 1, 21), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3, 4))).clone(namedValues=NamedValues(("cycle", 2), ("turn-on", 3), ("turn-off", 4)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort8RelayAction.setStatus('mandatory') sensorProbeRelayArrayPort8ManualRelayCycleTime = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 8, 2, 1, 24), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort8ManualRelayCycleTime.setStatus('mandatory') sensorProbeRelayArrayPort8ManualRelayAction = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 8, 2, 1, 25), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 3, 4, 7, 8))).clone(namedValues=NamedValues(("allow-sensor-control", 1), ("turn-on", 3), ("turn-off", 4), ("cycle-Off-On-Off", 7), ("cycle-On-Off-On", 8)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort8ManualRelayAction.setStatus('mandatory') sensorProbeRelayArrayPort8RelayDescOn = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 8, 2, 1, 26), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort8RelayDescOn.setStatus('mandatory') sensorProbeRelayArrayPort8RelayDescOff = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 8, 2, 1, 27), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort8RelayDescOff.setStatus('mandatory') sensorProbeRelayArrayPort8URL = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 8, 2, 1, 28), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort8URL.setStatus('mandatory') sensorProbeRelayArrayPort8OpenURL = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 8, 2, 1, 29), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 2))).clone(namedValues=NamedValues(("cur-window", 0), ("new-window", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort8OpenURL.setStatus('mandatory') sensorProbeRelayArrayPort8ControlMode = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 8, 2, 1, 30), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("manual-control", 0), ("notification-control", 1), ("time-control", 2), ("thermostat-control", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRelayArrayPort8ControlMode.setStatus('mandatory') sensorProbeVirtualAnalogSensor = MibIdentifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 30)) sensorProbeVirtualAnalogSensorNumber = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 30, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeVirtualAnalogSensorNumber.setStatus('mandatory') sensorProbeVirtualAnalogSensorTable = MibTable((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 30, 2), ) if mibBuilder.loadTexts: sensorProbeVirtualAnalogSensorTable.setStatus('mandatory') sensorProbeVirtualAnalogSensorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 30, 2, 1), ).setIndexNames((0, "SPAGENT-MIB", "sensorProbeVirtualAnalogSensorIndex")) if mibBuilder.loadTexts: sensorProbeVirtualAnalogSensorEntry.setStatus('mandatory') sensorProbeVirtualAnalogSensorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 30, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 67))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeVirtualAnalogSensorIndex.setStatus('mandatory') sensorProbeVirtualAnalogDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 30, 2, 1, 2), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeVirtualAnalogDescription.setStatus('mandatory') sensorProbeVirtualAnalogStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 30, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("noStatus", 1), ("normal", 2), ("highWarning", 3), ("highCritical", 4), ("lowWarning", 5), ("lowCritical", 6), ("sensorError", 7)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeVirtualAnalogStatus.setStatus('mandatory') sensorProbeVirtualAnalogOnline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 30, 2, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("online", 1), ("offline", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeVirtualAnalogOnline.setStatus('mandatory') sensorProbeVirtualAnalogGoOnline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 30, 2, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("goOnline", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeVirtualAnalogGoOnline.setStatus('mandatory') sensorProbeVirtualAnalogHighWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 30, 2, 1, 7), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeVirtualAnalogHighWarning.setStatus('mandatory') sensorProbeVirtualAnalogHighCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 30, 2, 1, 8), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeVirtualAnalogHighCritical.setStatus('mandatory') sensorProbeVirtualAnalogLowWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 30, 2, 1, 9), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeVirtualAnalogLowWarning.setStatus('mandatory') sensorProbeVirtualAnalogLowCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 30, 2, 1, 10), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeVirtualAnalogLowCritical.setStatus('mandatory') sensorProbeVirtualAnalogRearm = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 30, 2, 1, 11), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeVirtualAnalogRearm.setStatus('mandatory') sensorProbeVirtualAnalogRaw = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 30, 2, 1, 13), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeVirtualAnalogRaw.setStatus('mandatory') sensorProbeVirtualAnalogEmailTrapLimit = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 30, 2, 1, 17), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disable", 0), ("enable", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeVirtualAnalogEmailTrapLimit.setStatus('mandatory') sensorProbeVirtualAnalogDelayError = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 30, 2, 1, 21), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeVirtualAnalogDelayError.setStatus('mandatory') sensorProbeVirtualAnalogDelayNormal = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 30, 2, 1, 22), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeVirtualAnalogDelayNormal.setStatus('mandatory') sensorProbeVirtualAnalogUnit = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 30, 2, 1, 27), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeVirtualAnalogUnit.setStatus('mandatory') sensorProbeVirtualAnalogAcknowledgement = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 30, 2, 1, 41), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1))).clone(namedValues=NamedValues(("ack", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeVirtualAnalogAcknowledgement.setStatus('mandatory') sensorProbeVirtualAnalogURL = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 30, 2, 1, 43), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeVirtualAnalogURL.setStatus('mandatory') sensorProbeVirtualAnalogOpenURL = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 30, 2, 1, 44), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 2))).clone(namedValues=NamedValues(("cur-window", 0), ("new-window", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeVirtualAnalogOpenURL.setStatus('mandatory') sensorProbeVirtualAnalogContTimeHighCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 30, 2, 1, 45), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeVirtualAnalogContTimeHighCritical.setStatus('mandatory') sensorProbeVirtualAnalogContTimeHighWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 30, 2, 1, 46), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeVirtualAnalogContTimeHighWarning.setStatus('mandatory') sensorProbeVirtualAnalogContTimeNormal = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 30, 2, 1, 47), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeVirtualAnalogContTimeNormal.setStatus('mandatory') sensorProbeVirtualAnalogContTimeLowWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 30, 2, 1, 48), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeVirtualAnalogContTimeLowWarning.setStatus('mandatory') sensorProbeVirtualAnalogContTimeLowCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 30, 2, 1, 49), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeVirtualAnalogContTimeLowCritical.setStatus('mandatory') sensorProbeVirtualAnalogContTimeSensorError = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 30, 2, 1, 50), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeVirtualAnalogContTimeSensorError.setStatus('mandatory') sensorProbeVirtualAnalogCalendar = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 30, 2, 1, 51), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disable", 0), ("enable", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeVirtualAnalogCalendar.setStatus('mandatory') sensorProbeVirtualAnalogValueFactor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 30, 2, 1, 52), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 10, 100, 1000))).clone(namedValues=NamedValues(("x1", 1), ("x0-1", 10), ("x0-01", 100), ("x0-001", 1000)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeVirtualAnalogValueFactor.setStatus('mandatory') sensorProbeVirtualSwitchSensor = MibIdentifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 31)) sensorProbeVirtualSwitchSensorNumber = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 31, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeVirtualSwitchSensorNumber.setStatus('mandatory') sensorProbeVirtualSwitchSensorTable = MibTable((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 31, 2), ) if mibBuilder.loadTexts: sensorProbeVirtualSwitchSensorTable.setStatus('mandatory') sensorProbeVirtualSwitchSensorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 31, 2, 1), ).setIndexNames((0, "SPAGENT-MIB", "sensorProbeVirtualSwitchSensorIndex")) if mibBuilder.loadTexts: sensorProbeVirtualSwitchSensorEntry.setStatus('mandatory') sensorProbeVirtualSwitchSensorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 31, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 67))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeVirtualSwitchSensorIndex.setStatus('mandatory') sensorProbeVirtualSwitchDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 31, 2, 1, 2), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeVirtualSwitchDescription.setStatus('mandatory') sensorProbeVirtualSwitchStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 31, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("noStatus", 1), ("normal", 2), ("highWarning", 3), ("highCritical", 4), ("lowWarning", 5), ("lowCritical", 6), ("sensorError", 7)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeVirtualSwitchStatus.setStatus('mandatory') sensorProbeVirtualSwitchOnline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 31, 2, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("online", 1), ("offline", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeVirtualSwitchOnline.setStatus('mandatory') sensorProbeVirtualSwitchGoOnline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 31, 2, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("goOnline", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeVirtualSwitchGoOnline.setStatus('mandatory') sensorProbeVirtualSwitchEmailTrapLimit = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 31, 2, 1, 17), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disable", 0), ("enable", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeVirtualSwitchEmailTrapLimit.setStatus('mandatory') sensorProbeVirtualSwitchContTimeHighCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 31, 2, 1, 21), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeVirtualSwitchContTimeHighCritical.setStatus('mandatory') sensorProbeVirtualSwitchContTimeNormal = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 31, 2, 1, 22), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeVirtualSwitchContTimeNormal.setStatus('mandatory') sensorProbeVirtualSwitchDescriptionCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 31, 2, 1, 26), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeVirtualSwitchDescriptionCritical.setStatus('mandatory') sensorProbeVirtualSwitchDescriptionNormal = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 31, 2, 1, 27), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeVirtualSwitchDescriptionNormal.setStatus('mandatory') sensorProbeVirtualSwitchAcknowledgement = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 31, 2, 1, 41), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1))).clone(namedValues=NamedValues(("ack", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeVirtualSwitchAcknowledgement.setStatus('mandatory') sensorProbeVirtualSwitchURL = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 31, 2, 1, 43), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeVirtualSwitchURL.setStatus('mandatory') sensorProbeVirtualSwitchOpenURL = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 31, 2, 1, 44), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 2))).clone(namedValues=NamedValues(("cur-window", 0), ("new-window", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeVirtualSwitchOpenURL.setStatus('mandatory') sensorProbeVirtualSwitchCalendar = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 31, 2, 1, 45), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disable", 0), ("enable", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeVirtualSwitchCalendar.setStatus('mandatory') sensorProbeVirtualSwitchNormalState = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 31, 2, 1, 46), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeVirtualSwitchNormalState.setStatus('mandatory') sensorProbeWattHoursSensor = MibIdentifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 32)) sensorProbeWattHoursSensorNumber = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 32, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeWattHoursSensorNumber.setStatus('mandatory') sensorProbeWattHoursSensorTable = MibTable((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 32, 2), ) if mibBuilder.loadTexts: sensorProbeWattHoursSensorTable.setStatus('mandatory') sensorProbeWattHoursSensorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 32, 2, 1), ).setIndexNames((0, "SPAGENT-MIB", "sensorProbeWattHoursSensorIndex")) if mibBuilder.loadTexts: sensorProbeWattHoursSensorEntry.setStatus('mandatory') sensorProbeWattHoursSensorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 32, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 7))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeWattHoursSensorIndex.setStatus('mandatory') sensorProbeWattHoursDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 32, 2, 1, 2), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeWattHoursDescription.setStatus('mandatory') sensorProbeWattHoursPercent = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 32, 2, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-32768, 32767))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeWattHoursPercent.setStatus('mandatory') sensorProbeWattHoursReset = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 32, 2, 1, 43), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeWattHoursReset.setStatus('mandatory') sensorProbeTemperatureArraySensor = MibIdentifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33)) sensorProbeTemperatureArrayPort1 = MibIdentifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1)) sensorProbeTemperatureArrayPort1Number = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort1Number.setStatus('mandatory') sensorProbeTemperatureArrayPort1Table = MibTable((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2), ) if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort1Table.setStatus('mandatory') sensorProbeTemperatureArrayPort1Entry = MibTableRow((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1), ).setIndexNames((0, "SPAGENT-MIB", "sensorProbeTemperatureArrayPort1Index")) if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort1Entry.setStatus('mandatory') sensorProbeTemperatureArrayPort1Index = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 7))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort1Index.setStatus('mandatory') sensorProbeTemperatureArrayPort1Description = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 2), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort1Description.setStatus('mandatory') sensorProbeTemperatureArrayPort1Value = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 3), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort1Value.setStatus('mandatory') sensorProbeTemperatureArrayPort1Status = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("noStatus", 1), ("normal", 2), ("highWarning", 3), ("highCritical", 4), ("lowWarning", 5), ("lowCritical", 6), ("sensorError", 7)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort1Status.setStatus('mandatory') sensorProbeTemperatureArrayPort1Online = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("online", 1), ("offline", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort1Online.setStatus('mandatory') sensorProbeTemperatureArrayPort1GoOnline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("goOnline", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort1GoOnline.setStatus('mandatory') sensorProbeTemperatureArrayPort1HighWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 7), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort1HighWarning.setStatus('mandatory') sensorProbeTemperatureArrayPort1HighCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 8), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort1HighCritical.setStatus('mandatory') sensorProbeTemperatureArrayPort1LowWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 9), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort1LowWarning.setStatus('mandatory') sensorProbeTemperatureArrayPort1LowCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 10), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort1LowCritical.setStatus('mandatory') sensorProbeTemperatureArrayPort1Rearm = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 11), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort1Rearm.setStatus('mandatory') sensorProbeTemperatureArrayPort1DegreeType = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("fahr", 0), ("celsius", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort1DegreeType.setStatus('mandatory') sensorProbeTemperatureArrayPort1DegreeRaw = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 14), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort1DegreeRaw.setStatus('mandatory') sensorProbeTemperatureArrayPort1Offset = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 15), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort1Offset.setStatus('mandatory') sensorProbeTemperatureArrayPort1URL = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 16), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort1URL.setStatus('mandatory') sensorProbeTemperatureArrayPort1OpenURL = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 17), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 2))).clone(namedValues=NamedValues(("cur-window", 0), ("new-window", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort1OpenURL.setStatus('mandatory') sensorProbeTemperatureArrayPort1DatacollectType = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 18), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("average", 1), ("highest", 2), ("lowest", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort1DatacollectType.setStatus('mandatory') sensorProbeTemperatureArrayPort1ContTimeHighCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 19), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort1ContTimeHighCritical.setStatus('mandatory') sensorProbeTemperatureArrayPort1ContTimeHighWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 20), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort1ContTimeHighWarning.setStatus('mandatory') sensorProbeTemperatureArrayPort1ContTimeNormal = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 21), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort1ContTimeNormal.setStatus('mandatory') sensorProbeTemperatureArrayPort1ContTimeLowWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 22), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort1ContTimeLowWarning.setStatus('mandatory') sensorProbeTemperatureArrayPort1ContTimeLowCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 23), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort1ContTimeLowCritical.setStatus('mandatory') sensorProbeTemperatureArrayPort1ContTimeSensorError = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 24), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort1ContTimeSensorError.setStatus('mandatory') sensorProbeTemperatureArrayPort1Calendar = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 25), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disable", 0), ("enable", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort1Calendar.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort1Index = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 26), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort1Index.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort1Description = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 27), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort1Description.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort1Value = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 28), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort1Value.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort1Online = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 29), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("online", 1), ("offline", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort1Online.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort1GoOnline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 30), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("goOnline", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort1GoOnline.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort1Mode = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 31), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("normal", 0), ("time-bases", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort1Mode.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort1RelayControlPort = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 32), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort1RelayControlPort.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort1NormalAction1 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 33), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("turn-on", 0), ("turn-off", 1), ("no-change", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort1NormalAction1.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort1HighLimit1 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 34), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-40, 167))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort1HighLimit1.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort1HighLimitAction1 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 35), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("turn-on", 0), ("turn-off", 1), ("no-change", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort1HighLimitAction1.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort1LowLimit1 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 36), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-40, 167))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort1LowLimit1.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort1LowLimitAction1 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 37), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("turn-on", 0), ("turn-off", 1), ("no-change", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort1LowLimitAction1.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort1NormalAction2 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 38), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("turn-on", 0), ("turn-off", 1), ("no-change", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort1NormalAction2.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort1HighLimit2 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 39), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-40, 167))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort1HighLimit2.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort1HighLimitAction2 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 40), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("turn-on", 0), ("turn-off", 1), ("no-change", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort1HighLimitAction2.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort1LowLimit2 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 41), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-40, 167))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort1LowLimit2.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort1LowLimitAction2 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 42), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("turn-on", 0), ("turn-off", 1), ("no-change", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort1LowLimitAction2.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort1EnableTime = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 43), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort1EnableTime.setStatus('mandatory') sensorProbeTemperatureArrayPort2 = MibIdentifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2)) sensorProbeTemperatureArrayPort2Number = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort2Number.setStatus('mandatory') sensorProbeTemperatureArrayPort2Table = MibTable((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2), ) if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort2Table.setStatus('mandatory') sensorProbeTemperatureArrayPort2Entry = MibTableRow((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1), ).setIndexNames((0, "SPAGENT-MIB", "sensorProbeTemperatureArrayPort2Index")) if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort2Entry.setStatus('mandatory') sensorProbeTemperatureArrayPort2Index = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 7))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort2Index.setStatus('mandatory') sensorProbeTemperatureArrayPort2Description = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 2), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort2Description.setStatus('mandatory') sensorProbeTemperatureArrayPort2Value = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 3), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort2Value.setStatus('mandatory') sensorProbeTemperatureArrayPort2Status = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("noStatus", 1), ("normal", 2), ("highWarning", 3), ("highCritical", 4), ("lowWarning", 5), ("lowCritical", 6), ("sensorError", 7)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort2Status.setStatus('mandatory') sensorProbeTemperatureArrayPort2Online = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("online", 1), ("offline", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort2Online.setStatus('mandatory') sensorProbeTemperatureArrayPort2GoOnline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("goOnline", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort2GoOnline.setStatus('mandatory') sensorProbeTemperatureArrayPort2HighWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 7), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort2HighWarning.setStatus('mandatory') sensorProbeTemperatureArrayPort2HighCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 8), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort2HighCritical.setStatus('mandatory') sensorProbeTemperatureArrayPort2LowWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 9), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort2LowWarning.setStatus('mandatory') sensorProbeTemperatureArrayPort2LowCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 10), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort2LowCritical.setStatus('mandatory') sensorProbeTemperatureArrayPort2Rearm = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 11), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort2Rearm.setStatus('mandatory') sensorProbeTemperatureArrayPort2DegreeType = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("fahr", 0), ("celsius", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort2DegreeType.setStatus('mandatory') sensorProbeTemperatureArrayPort2DegreeRaw = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 14), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort2DegreeRaw.setStatus('mandatory') sensorProbeTemperatureArrayPort2Offset = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 15), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort2Offset.setStatus('mandatory') sensorProbeTemperatureArrayPort2URL = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 16), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort2URL.setStatus('mandatory') sensorProbeTemperatureArrayPort2OpenURL = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 17), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 2))).clone(namedValues=NamedValues(("cur-window", 0), ("new-window", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort2OpenURL.setStatus('mandatory') sensorProbeTemperatureArrayPort2DatacollectType = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 18), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("average", 1), ("highest", 2), ("lowest", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort2DatacollectType.setStatus('mandatory') sensorProbeTemperatureArrayPort2ContTimeHighCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 19), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort2ContTimeHighCritical.setStatus('mandatory') sensorProbeTemperatureArrayPort2ContTimeHighWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 20), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort2ContTimeHighWarning.setStatus('mandatory') sensorProbeTemperatureArrayPort2ContTimeNormal = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 21), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort2ContTimeNormal.setStatus('mandatory') sensorProbeTemperatureArrayPort2ContTimeLowWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 22), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort2ContTimeLowWarning.setStatus('mandatory') sensorProbeTemperatureArrayPort2ContTimeLowCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 23), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort2ContTimeLowCritical.setStatus('mandatory') sensorProbeTemperatureArrayPort2ContTimeSensorError = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 24), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort2ContTimeSensorError.setStatus('mandatory') sensorProbeTemperatureArrayPort2Calendar = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 25), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disable", 0), ("enable", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort2Calendar.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort2Index = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 26), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort2Index.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort2Description = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 27), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort2Description.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort2Value = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 28), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort2Value.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort2Online = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 29), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("online", 1), ("offline", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort2Online.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort2GoOnline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 30), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("goOnline", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort2GoOnline.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort2Mode = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 31), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("normal", 0), ("time-bases", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort2Mode.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort2RelayControlPort = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 32), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort2RelayControlPort.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort2NormalAction1 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 33), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("turn-on", 0), ("turn-off", 1), ("no-change", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort2NormalAction1.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort2HighLimit1 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 34), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-40, 167))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort2HighLimit1.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort2HighLimitAction1 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 35), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("turn-on", 0), ("turn-off", 1), ("no-change", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort2HighLimitAction1.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort2LowLimit1 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 36), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-40, 167))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort2LowLimit1.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort2LowLimitAction1 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 37), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("turn-on", 0), ("turn-off", 1), ("no-change", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort2LowLimitAction1.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort2NormalAction2 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 38), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("turn-on", 0), ("turn-off", 1), ("no-change", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort2NormalAction2.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort2HighLimit2 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 39), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-40, 167))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort2HighLimit2.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort2HighLimitAction2 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 40), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("turn-on", 0), ("turn-off", 1), ("no-change", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort2HighLimitAction2.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort2LowLimit2 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 41), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-40, 167))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort2LowLimit2.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort2LowLimitAction2 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 42), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("turn-on", 0), ("turn-off", 1), ("no-change", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort2LowLimitAction2.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort2EnableTime = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 43), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort2EnableTime.setStatus('mandatory') sensorProbeTemperatureArrayPort3 = MibIdentifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3)) sensorProbeTemperatureArrayPort3Number = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort3Number.setStatus('mandatory') sensorProbeTemperatureArrayPort3Table = MibTable((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2), ) if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort3Table.setStatus('mandatory') sensorProbeTemperatureArrayPort3Entry = MibTableRow((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1), ).setIndexNames((0, "SPAGENT-MIB", "sensorProbeTemperatureArrayPort3Index")) if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort3Entry.setStatus('mandatory') sensorProbeTemperatureArrayPort3Index = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 7))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort3Index.setStatus('mandatory') sensorProbeTemperatureArrayPort3Description = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 2), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort3Description.setStatus('mandatory') sensorProbeTemperatureArrayPort3Value = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 3), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort3Value.setStatus('mandatory') sensorProbeTemperatureArrayPort3Status = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("noStatus", 1), ("normal", 2), ("highWarning", 3), ("highCritical", 4), ("lowWarning", 5), ("lowCritical", 6), ("sensorError", 7)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort3Status.setStatus('mandatory') sensorProbeTemperatureArrayPort3Online = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("online", 1), ("offline", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort3Online.setStatus('mandatory') sensorProbeTemperatureArrayPort3GoOnline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("goOnline", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort3GoOnline.setStatus('mandatory') sensorProbeTemperatureArrayPort3HighWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 7), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort3HighWarning.setStatus('mandatory') sensorProbeTemperatureArrayPort3HighCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 8), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort3HighCritical.setStatus('mandatory') sensorProbeTemperatureArrayPort3LowWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 9), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort3LowWarning.setStatus('mandatory') sensorProbeTemperatureArrayPort3LowCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 10), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort3LowCritical.setStatus('mandatory') sensorProbeTemperatureArrayPort3Rearm = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 11), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort3Rearm.setStatus('mandatory') sensorProbeTemperatureArrayPort3DegreeType = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("fahr", 0), ("celsius", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort3DegreeType.setStatus('mandatory') sensorProbeTemperatureArrayPort3DegreeRaw = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 14), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort3DegreeRaw.setStatus('mandatory') sensorProbeTemperatureArrayPort3Offset = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 15), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort3Offset.setStatus('mandatory') sensorProbeTemperatureArrayPort3URL = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 16), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort3URL.setStatus('mandatory') sensorProbeTemperatureArrayPort3OpenURL = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 17), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 2))).clone(namedValues=NamedValues(("cur-window", 0), ("new-window", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort3OpenURL.setStatus('mandatory') sensorProbeTemperatureArrayPort3DatacollectType = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 18), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("average", 1), ("highest", 2), ("lowest", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort3DatacollectType.setStatus('mandatory') sensorProbeTemperatureArrayPort3ContTimeHighCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 19), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort3ContTimeHighCritical.setStatus('mandatory') sensorProbeTemperatureArrayPort3ContTimeHighWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 20), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort3ContTimeHighWarning.setStatus('mandatory') sensorProbeTemperatureArrayPort3ContTimeNormal = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 21), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort3ContTimeNormal.setStatus('mandatory') sensorProbeTemperatureArrayPort3ContTimeLowWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 22), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort3ContTimeLowWarning.setStatus('mandatory') sensorProbeTemperatureArrayPort3ContTimeLowCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 23), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort3ContTimeLowCritical.setStatus('mandatory') sensorProbeTemperatureArrayPort3ContTimeSensorError = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 24), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort3ContTimeSensorError.setStatus('mandatory') sensorProbeTemperatureArrayPort3Calendar = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 25), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disable", 0), ("enable", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort3Calendar.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort3Index = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 26), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort3Index.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort3Description = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 27), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort3Description.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort3Value = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 28), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort3Value.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort3Online = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 29), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("online", 1), ("offline", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort3Online.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort3GoOnline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 30), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("goOnline", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort3GoOnline.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort3Mode = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 31), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("normal", 0), ("time-bases", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort3Mode.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort3RelayControlPort = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 32), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort3RelayControlPort.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort3NormalAction1 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 33), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("turn-on", 0), ("turn-off", 1), ("no-change", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort3NormalAction1.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort3HighLimit1 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 34), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-40, 167))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort3HighLimit1.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort3HighLimitAction1 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 35), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("turn-on", 0), ("turn-off", 1), ("no-change", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort3HighLimitAction1.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort3LowLimit1 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 36), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-40, 167))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort3LowLimit1.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort3LowLimitAction1 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 37), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("turn-on", 0), ("turn-off", 1), ("no-change", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort3LowLimitAction1.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort3NormalAction2 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 38), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("turn-on", 0), ("turn-off", 1), ("no-change", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort3NormalAction2.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort3HighLimit2 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 39), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-40, 167))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort3HighLimit2.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort3HighLimitAction2 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 40), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("turn-on", 0), ("turn-off", 1), ("no-change", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort3HighLimitAction2.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort3LowLimit2 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 41), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-40, 167))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort3LowLimit2.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort3LowLimitAction2 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 42), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("turn-on", 0), ("turn-off", 1), ("no-change", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort3LowLimitAction2.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort3EnableTime = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 43), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort3EnableTime.setStatus('mandatory') sensorProbeTemperatureArrayPort4 = MibIdentifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4)) sensorProbeTemperatureArrayPort4Number = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort4Number.setStatus('mandatory') sensorProbeTemperatureArrayPort4Table = MibTable((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2), ) if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort4Table.setStatus('mandatory') sensorProbeTemperatureArrayPort4Entry = MibTableRow((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1), ).setIndexNames((0, "SPAGENT-MIB", "sensorProbeTemperatureArrayPort4Index")) if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort4Entry.setStatus('mandatory') sensorProbeTemperatureArrayPort4Index = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 7))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort4Index.setStatus('mandatory') sensorProbeTemperatureArrayPort4Description = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 2), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort4Description.setStatus('mandatory') sensorProbeTemperatureArrayPort4Value = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 3), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort4Value.setStatus('mandatory') sensorProbeTemperatureArrayPort4Status = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("noStatus", 1), ("normal", 2), ("highWarning", 3), ("highCritical", 4), ("lowWarning", 5), ("lowCritical", 6), ("sensorError", 7)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort4Status.setStatus('mandatory') sensorProbeTemperatureArrayPort4Online = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("online", 1), ("offline", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort4Online.setStatus('mandatory') sensorProbeTemperatureArrayPort4GoOnline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("goOnline", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort4GoOnline.setStatus('mandatory') sensorProbeTemperatureArrayPort4HighWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 7), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort4HighWarning.setStatus('mandatory') sensorProbeTemperatureArrayPort4HighCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 8), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort4HighCritical.setStatus('mandatory') sensorProbeTemperatureArrayPort4LowWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 9), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort4LowWarning.setStatus('mandatory') sensorProbeTemperatureArrayPort4LowCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 10), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort4LowCritical.setStatus('mandatory') sensorProbeTemperatureArrayPort4Rearm = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 11), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort4Rearm.setStatus('mandatory') sensorProbeTemperatureArrayPort4DegreeType = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("fahr", 0), ("celsius", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort4DegreeType.setStatus('mandatory') sensorProbeTemperatureArrayPort4DegreeRaw = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 14), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort4DegreeRaw.setStatus('mandatory') sensorProbeTemperatureArrayPort4Offset = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 15), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort4Offset.setStatus('mandatory') sensorProbeTemperatureArrayPort4URL = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 16), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort4URL.setStatus('mandatory') sensorProbeTemperatureArrayPort4OpenURL = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 17), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 2))).clone(namedValues=NamedValues(("cur-window", 0), ("new-window", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort4OpenURL.setStatus('mandatory') sensorProbeTemperatureArrayPort4DatacollectType = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 18), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("average", 1), ("highest", 2), ("lowest", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort4DatacollectType.setStatus('mandatory') sensorProbeTemperatureArrayPort4ContTimeHighCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 19), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort4ContTimeHighCritical.setStatus('mandatory') sensorProbeTemperatureArrayPort4ContTimeHighWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 20), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort4ContTimeHighWarning.setStatus('mandatory') sensorProbeTemperatureArrayPort4ContTimeNormal = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 21), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort4ContTimeNormal.setStatus('mandatory') sensorProbeTemperatureArrayPort4ContTimeLowWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 22), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort4ContTimeLowWarning.setStatus('mandatory') sensorProbeTemperatureArrayPort4ContTimeLowCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 23), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort4ContTimeLowCritical.setStatus('mandatory') sensorProbeTemperatureArrayPort4ContTimeSensorError = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 24), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort4ContTimeSensorError.setStatus('mandatory') sensorProbeTemperatureArrayPort4Calendar = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 25), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disable", 0), ("enable", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort4Calendar.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort4Index = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 26), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort4Index.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort4Description = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 27), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort4Description.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort4Value = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 28), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort4Value.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort4Online = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 29), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("online", 1), ("offline", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort4Online.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort4GoOnline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 30), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("goOnline", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort4GoOnline.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort4Mode = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 31), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("normal", 0), ("time-bases", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort4Mode.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort4RelayControlPort = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 32), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort4RelayControlPort.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort4NormalAction1 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 33), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("turn-on", 0), ("turn-off", 1), ("no-change", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort4NormalAction1.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort4HighLimit1 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 34), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-40, 167))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort4HighLimit1.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort4HighLimitAction1 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 35), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("turn-on", 0), ("turn-off", 1), ("no-change", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort4HighLimitAction1.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort4LowLimit1 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 36), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-40, 167))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort4LowLimit1.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort4LowLimitAction1 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 37), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("turn-on", 0), ("turn-off", 1), ("no-change", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort4LowLimitAction1.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort4NormalAction2 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 38), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("turn-on", 0), ("turn-off", 1), ("no-change", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort4NormalAction2.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort4HighLimit2 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 39), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-40, 167))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort4HighLimit2.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort4HighLimitAction2 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 40), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("turn-on", 0), ("turn-off", 1), ("no-change", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort4HighLimitAction2.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort4LowLimit2 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 41), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-40, 167))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort4LowLimit2.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort4LowLimitAction2 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 42), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("turn-on", 0), ("turn-off", 1), ("no-change", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort4LowLimitAction2.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort4EnableTime = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 43), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort4EnableTime.setStatus('mandatory') sensorProbeTemperatureArrayPort5 = MibIdentifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5)) sensorProbeTemperatureArrayPort5Number = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort5Number.setStatus('mandatory') sensorProbeTemperatureArrayPort5Table = MibTable((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2), ) if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort5Table.setStatus('mandatory') sensorProbeTemperatureArrayPort5Entry = MibTableRow((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1), ).setIndexNames((0, "SPAGENT-MIB", "sensorProbeTemperatureArrayPort5Index")) if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort5Entry.setStatus('mandatory') sensorProbeTemperatureArrayPort5Index = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 7))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort5Index.setStatus('mandatory') sensorProbeTemperatureArrayPort5Description = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 2), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort5Description.setStatus('mandatory') sensorProbeTemperatureArrayPort5Value = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 3), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort5Value.setStatus('mandatory') sensorProbeTemperatureArrayPort5Status = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("noStatus", 1), ("normal", 2), ("highWarning", 3), ("highCritical", 4), ("lowWarning", 5), ("lowCritical", 6), ("sensorError", 7)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort5Status.setStatus('mandatory') sensorProbeTemperatureArrayPort5Online = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("online", 1), ("offline", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort5Online.setStatus('mandatory') sensorProbeTemperatureArrayPort5GoOnline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("goOnline", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort5GoOnline.setStatus('mandatory') sensorProbeTemperatureArrayPort5HighWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 7), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort5HighWarning.setStatus('mandatory') sensorProbeTemperatureArrayPort5HighCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 8), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort5HighCritical.setStatus('mandatory') sensorProbeTemperatureArrayPort5LowWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 9), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort5LowWarning.setStatus('mandatory') sensorProbeTemperatureArrayPort5LowCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 10), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort5LowCritical.setStatus('mandatory') sensorProbeTemperatureArrayPort5Rearm = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 11), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort5Rearm.setStatus('mandatory') sensorProbeTemperatureArrayPort5DegreeType = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("fahr", 0), ("celsius", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort5DegreeType.setStatus('mandatory') sensorProbeTemperatureArrayPort5DegreeRaw = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 14), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort5DegreeRaw.setStatus('mandatory') sensorProbeTemperatureArrayPort5Offset = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 15), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort5Offset.setStatus('mandatory') sensorProbeTemperatureArrayPort5URL = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 16), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort5URL.setStatus('mandatory') sensorProbeTemperatureArrayPort5OpenURL = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 17), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 2))).clone(namedValues=NamedValues(("cur-window", 0), ("new-window", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort5OpenURL.setStatus('mandatory') sensorProbeTemperatureArrayPort5DatacollectType = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 18), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("average", 1), ("highest", 2), ("lowest", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort5DatacollectType.setStatus('mandatory') sensorProbeTemperatureArrayPort5ContTimeHighCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 19), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort5ContTimeHighCritical.setStatus('mandatory') sensorProbeTemperatureArrayPort5ContTimeHighWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 20), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort5ContTimeHighWarning.setStatus('mandatory') sensorProbeTemperatureArrayPort5ContTimeNormal = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 21), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort5ContTimeNormal.setStatus('mandatory') sensorProbeTemperatureArrayPort5ContTimeLowWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 22), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort5ContTimeLowWarning.setStatus('mandatory') sensorProbeTemperatureArrayPort5ContTimeLowCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 23), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort5ContTimeLowCritical.setStatus('mandatory') sensorProbeTemperatureArrayPort5ContTimeSensorError = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 24), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort5ContTimeSensorError.setStatus('mandatory') sensorProbeTemperatureArrayPort5Calendar = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 25), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disable", 0), ("enable", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort5Calendar.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort5Index = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 26), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort5Index.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort5Description = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 27), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort5Description.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort5Value = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 28), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort5Value.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort5Online = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 29), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("online", 1), ("offline", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort5Online.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort5GoOnline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 30), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("goOnline", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort5GoOnline.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort5Mode = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 31), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("normal", 0), ("time-bases", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort5Mode.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort5RelayControlPort = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 32), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort5RelayControlPort.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort5NormalAction1 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 33), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("turn-on", 0), ("turn-off", 1), ("no-change", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort5NormalAction1.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort5HighLimit1 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 34), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-40, 167))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort5HighLimit1.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort5HighLimitAction1 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 35), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("turn-on", 0), ("turn-off", 1), ("no-change", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort5HighLimitAction1.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort5LowLimit1 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 36), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-40, 167))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort5LowLimit1.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort5LowLimitAction1 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 37), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("turn-on", 0), ("turn-off", 1), ("no-change", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort5LowLimitAction1.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort5NormalAction2 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 38), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("turn-on", 0), ("turn-off", 1), ("no-change", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort5NormalAction2.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort5HighLimit2 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 39), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-40, 167))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort5HighLimit2.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort5HighLimitAction2 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 40), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("turn-on", 0), ("turn-off", 1), ("no-change", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort5HighLimitAction2.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort5LowLimit2 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 41), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-40, 167))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort5LowLimit2.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort5LowLimitAction2 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 42), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("turn-on", 0), ("turn-off", 1), ("no-change", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort5LowLimitAction2.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort5EnableTime = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 43), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort5EnableTime.setStatus('mandatory') sensorProbeTemperatureArrayPort6 = MibIdentifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6)) sensorProbeTemperatureArrayPort6Number = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort6Number.setStatus('mandatory') sensorProbeTemperatureArrayPort6Table = MibTable((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2), ) if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort6Table.setStatus('mandatory') sensorProbeTemperatureArrayPort6Entry = MibTableRow((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1), ).setIndexNames((0, "SPAGENT-MIB", "sensorProbeTemperatureArrayPort6Index")) if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort6Entry.setStatus('mandatory') sensorProbeTemperatureArrayPort6Index = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 7))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort6Index.setStatus('mandatory') sensorProbeTemperatureArrayPort6Description = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 2), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort6Description.setStatus('mandatory') sensorProbeTemperatureArrayPort6Value = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 3), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort6Value.setStatus('mandatory') sensorProbeTemperatureArrayPort6Status = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("noStatus", 1), ("normal", 2), ("highWarning", 3), ("highCritical", 4), ("lowWarning", 5), ("lowCritical", 6), ("sensorError", 7)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort6Status.setStatus('mandatory') sensorProbeTemperatureArrayPort6Online = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("online", 1), ("offline", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort6Online.setStatus('mandatory') sensorProbeTemperatureArrayPort6GoOnline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("goOnline", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort6GoOnline.setStatus('mandatory') sensorProbeTemperatureArrayPort6HighWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 7), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort6HighWarning.setStatus('mandatory') sensorProbeTemperatureArrayPort6HighCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 8), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort6HighCritical.setStatus('mandatory') sensorProbeTemperatureArrayPort6LowWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 9), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort6LowWarning.setStatus('mandatory') sensorProbeTemperatureArrayPort6LowCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 10), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort6LowCritical.setStatus('mandatory') sensorProbeTemperatureArrayPort6Rearm = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 11), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort6Rearm.setStatus('mandatory') sensorProbeTemperatureArrayPort6DegreeType = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("fahr", 0), ("celsius", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort6DegreeType.setStatus('mandatory') sensorProbeTemperatureArrayPort6DegreeRaw = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 14), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort6DegreeRaw.setStatus('mandatory') sensorProbeTemperatureArrayPort6Offset = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 15), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort6Offset.setStatus('mandatory') sensorProbeTemperatureArrayPort6URL = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 16), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort6URL.setStatus('mandatory') sensorProbeTemperatureArrayPort6OpenURL = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 17), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 2))).clone(namedValues=NamedValues(("cur-window", 0), ("new-window", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort6OpenURL.setStatus('mandatory') sensorProbeTemperatureArrayPort6DatacollectType = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 18), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("average", 1), ("highest", 2), ("lowest", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort6DatacollectType.setStatus('mandatory') sensorProbeTemperatureArrayPort6ContTimeHighCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 19), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort6ContTimeHighCritical.setStatus('mandatory') sensorProbeTemperatureArrayPort6ContTimeHighWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 20), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort6ContTimeHighWarning.setStatus('mandatory') sensorProbeTemperatureArrayPort6ContTimeNormal = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 21), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort6ContTimeNormal.setStatus('mandatory') sensorProbeTemperatureArrayPort6ContTimeLowWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 22), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort6ContTimeLowWarning.setStatus('mandatory') sensorProbeTemperatureArrayPort6ContTimeLowCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 23), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort6ContTimeLowCritical.setStatus('mandatory') sensorProbeTemperatureArrayPort6ContTimeSensorError = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 24), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort6ContTimeSensorError.setStatus('mandatory') sensorProbeTemperatureArrayPort6Calendar = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 25), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disable", 0), ("enable", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort6Calendar.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort6Index = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 26), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort6Index.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort6Description = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 27), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort6Description.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort6Value = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 28), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort6Value.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort6Online = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 29), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("online", 1), ("offline", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort6Online.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort6GoOnline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 30), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("goOnline", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort6GoOnline.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort6Mode = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 31), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("normal", 0), ("time-bases", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort6Mode.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort6RelayControlPort = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 32), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort6RelayControlPort.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort6NormalAction1 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 33), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("turn-on", 0), ("turn-off", 1), ("no-change", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort6NormalAction1.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort6HighLimit1 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 34), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-40, 167))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort6HighLimit1.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort6HighLimitAction1 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 35), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("turn-on", 0), ("turn-off", 1), ("no-change", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort6HighLimitAction1.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort6LowLimit1 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 36), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-40, 167))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort6LowLimit1.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort6LowLimitAction1 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 37), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("turn-on", 0), ("turn-off", 1), ("no-change", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort6LowLimitAction1.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort6NormalAction2 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 38), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("turn-on", 0), ("turn-off", 1), ("no-change", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort6NormalAction2.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort6HighLimit2 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 39), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-40, 167))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort6HighLimit2.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort6HighLimitAction2 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 40), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("turn-on", 0), ("turn-off", 1), ("no-change", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort6HighLimitAction2.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort6LowLimit2 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 41), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-40, 167))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort6LowLimit2.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort6LowLimitAction2 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 42), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("turn-on", 0), ("turn-off", 1), ("no-change", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort6LowLimitAction2.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort6EnableTime = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 43), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort6EnableTime.setStatus('mandatory') sensorProbeTemperatureArrayPort7 = MibIdentifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7)) sensorProbeTemperatureArrayPort7Number = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort7Number.setStatus('mandatory') sensorProbeTemperatureArrayPort7Table = MibTable((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2), ) if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort7Table.setStatus('mandatory') sensorProbeTemperatureArrayPort7Entry = MibTableRow((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1), ).setIndexNames((0, "SPAGENT-MIB", "sensorProbeTemperatureArrayPort7Index")) if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort7Entry.setStatus('mandatory') sensorProbeTemperatureArrayPort7Index = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 7))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort7Index.setStatus('mandatory') sensorProbeTemperatureArrayPort7Description = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 2), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort7Description.setStatus('mandatory') sensorProbeTemperatureArrayPort7Value = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 3), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort7Value.setStatus('mandatory') sensorProbeTemperatureArrayPort7Status = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("noStatus", 1), ("normal", 2), ("highWarning", 3), ("highCritical", 4), ("lowWarning", 5), ("lowCritical", 6), ("sensorError", 7)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort7Status.setStatus('mandatory') sensorProbeTemperatureArrayPort7Online = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("online", 1), ("offline", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort7Online.setStatus('mandatory') sensorProbeTemperatureArrayPort7GoOnline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("goOnline", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort7GoOnline.setStatus('mandatory') sensorProbeTemperatureArrayPort7HighWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 7), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort7HighWarning.setStatus('mandatory') sensorProbeTemperatureArrayPort7HighCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 8), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort7HighCritical.setStatus('mandatory') sensorProbeTemperatureArrayPort7LowWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 9), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort7LowWarning.setStatus('mandatory') sensorProbeTemperatureArrayPort7LowCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 10), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort7LowCritical.setStatus('mandatory') sensorProbeTemperatureArrayPort7Rearm = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 11), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort7Rearm.setStatus('mandatory') sensorProbeTemperatureArrayPort7DegreeType = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("fahr", 0), ("celsius", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort7DegreeType.setStatus('mandatory') sensorProbeTemperatureArrayPort7DegreeRaw = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 14), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort7DegreeRaw.setStatus('mandatory') sensorProbeTemperatureArrayPort7Offset = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 15), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort7Offset.setStatus('mandatory') sensorProbeTemperatureArrayPort7URL = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 16), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort7URL.setStatus('mandatory') sensorProbeTemperatureArrayPort7OpenURL = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 17), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 2))).clone(namedValues=NamedValues(("cur-window", 0), ("new-window", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort7OpenURL.setStatus('mandatory') sensorProbeTemperatureArrayPort7DatacollectType = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 18), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("average", 1), ("highest", 2), ("lowest", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort7DatacollectType.setStatus('mandatory') sensorProbeTemperatureArrayPort7ContTimeHighCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 19), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort7ContTimeHighCritical.setStatus('mandatory') sensorProbeTemperatureArrayPort7ContTimeHighWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 20), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort7ContTimeHighWarning.setStatus('mandatory') sensorProbeTemperatureArrayPort7ContTimeNormal = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 21), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort7ContTimeNormal.setStatus('mandatory') sensorProbeTemperatureArrayPort7ContTimeLowWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 22), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort7ContTimeLowWarning.setStatus('mandatory') sensorProbeTemperatureArrayPort7ContTimeLowCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 23), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort7ContTimeLowCritical.setStatus('mandatory') sensorProbeTemperatureArrayPort7ContTimeSensorError = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 24), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort7ContTimeSensorError.setStatus('mandatory') sensorProbeTemperatureArrayPort7Calendar = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 25), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disable", 0), ("enable", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort7Calendar.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort7Index = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 26), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort7Index.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort7Description = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 27), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort7Description.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort7Value = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 28), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort7Value.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort7Online = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 29), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("online", 1), ("offline", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort7Online.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort7GoOnline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 30), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("goOnline", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort7GoOnline.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort7Mode = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 31), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("normal", 0), ("time-bases", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort7Mode.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort7RelayControlPort = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 32), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort7RelayControlPort.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort7NormalAction1 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 33), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("turn-on", 0), ("turn-off", 1), ("no-change", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort7NormalAction1.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort7HighLimit1 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 34), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-40, 167))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort7HighLimit1.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort7HighLimitAction1 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 35), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("turn-on", 0), ("turn-off", 1), ("no-change", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort7HighLimitAction1.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort7LowLimit1 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 36), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-40, 167))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort7LowLimit1.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort7LowLimitAction1 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 37), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("turn-on", 0), ("turn-off", 1), ("no-change", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort7LowLimitAction1.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort7NormalAction2 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 38), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("turn-on", 0), ("turn-off", 1), ("no-change", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort7NormalAction2.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort7HighLimit2 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 39), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-40, 167))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort7HighLimit2.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort7HighLimitAction2 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 40), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("turn-on", 0), ("turn-off", 1), ("no-change", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort7HighLimitAction2.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort7LowLimit2 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 41), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-40, 167))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort7LowLimit2.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort7LowLimitAction2 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 42), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("turn-on", 0), ("turn-off", 1), ("no-change", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort7LowLimitAction2.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort7EnableTime = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 43), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort7EnableTime.setStatus('mandatory') sensorProbeTemperatureArrayPort8 = MibIdentifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8)) sensorProbeTemperatureArrayPort8Number = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort8Number.setStatus('mandatory') sensorProbeTemperatureArrayPort8Table = MibTable((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2), ) if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort8Table.setStatus('mandatory') sensorProbeTemperatureArrayPort8Entry = MibTableRow((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1), ).setIndexNames((0, "SPAGENT-MIB", "sensorProbeTemperatureArrayPort8Index")) if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort8Entry.setStatus('mandatory') sensorProbeTemperatureArrayPort8Index = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 7))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort8Index.setStatus('mandatory') sensorProbeTemperatureArrayPort8Description = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 2), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort8Description.setStatus('mandatory') sensorProbeTemperatureArrayPort8Value = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 3), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort8Value.setStatus('mandatory') sensorProbeTemperatureArrayPort8Status = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("noStatus", 1), ("normal", 2), ("highWarning", 3), ("highCritical", 4), ("lowWarning", 5), ("lowCritical", 6), ("sensorError", 7)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort8Status.setStatus('mandatory') sensorProbeTemperatureArrayPort8Online = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("online", 1), ("offline", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort8Online.setStatus('mandatory') sensorProbeTemperatureArrayPort8GoOnline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("goOnline", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort8GoOnline.setStatus('mandatory') sensorProbeTemperatureArrayPort8HighWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 7), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort8HighWarning.setStatus('mandatory') sensorProbeTemperatureArrayPort8HighCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 8), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort8HighCritical.setStatus('mandatory') sensorProbeTemperatureArrayPort8LowWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 9), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort8LowWarning.setStatus('mandatory') sensorProbeTemperatureArrayPort8LowCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 10), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort8LowCritical.setStatus('mandatory') sensorProbeTemperatureArrayPort8Rearm = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 11), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort8Rearm.setStatus('mandatory') sensorProbeTemperatureArrayPort8DegreeType = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("fahr", 0), ("celsius", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort8DegreeType.setStatus('mandatory') sensorProbeTemperatureArrayPort8DegreeRaw = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 14), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort8DegreeRaw.setStatus('mandatory') sensorProbeTemperatureArrayPort8Offset = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 15), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort8Offset.setStatus('mandatory') sensorProbeTemperatureArrayPort8URL = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 16), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort8URL.setStatus('mandatory') sensorProbeTemperatureArrayPort8OpenURL = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 17), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 2))).clone(namedValues=NamedValues(("cur-window", 0), ("new-window", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort8OpenURL.setStatus('mandatory') sensorProbeTemperatureArrayPort8DatacollectType = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 18), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("average", 1), ("highest", 2), ("lowest", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort8DatacollectType.setStatus('mandatory') sensorProbeTemperatureArrayPort8ContTimeHighCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 19), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort8ContTimeHighCritical.setStatus('mandatory') sensorProbeTemperatureArrayPort8ContTimeHighWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 20), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort8ContTimeHighWarning.setStatus('mandatory') sensorProbeTemperatureArrayPort8ContTimeNormal = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 21), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort8ContTimeNormal.setStatus('mandatory') sensorProbeTemperatureArrayPort8ContTimeLowWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 22), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort8ContTimeLowWarning.setStatus('mandatory') sensorProbeTemperatureArrayPort8ContTimeLowCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 23), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort8ContTimeLowCritical.setStatus('mandatory') sensorProbeTemperatureArrayPort8ContTimeSensorError = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 24), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort8ContTimeSensorError.setStatus('mandatory') sensorProbeTemperatureArrayPort8Calendar = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 25), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disable", 0), ("enable", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort8Calendar.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort8Index = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 26), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort8Index.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort8Description = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 27), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort8Description.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort8Value = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 28), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort8Value.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort8Online = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 29), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("online", 1), ("offline", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort8Online.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort8GoOnline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 30), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("goOnline", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort8GoOnline.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort8Mode = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 31), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("normal", 0), ("time-bases", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort8Mode.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort8RelayControlPort = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 32), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort8RelayControlPort.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort8NormalAction1 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 33), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("turn-on", 0), ("turn-off", 1), ("no-change", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort8NormalAction1.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort8HighLimit1 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 34), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-40, 167))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort8HighLimit1.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort8HighLimitAction1 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 35), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("turn-on", 0), ("turn-off", 1), ("no-change", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort8HighLimitAction1.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort8LowLimit1 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 36), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-40, 167))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort8LowLimit1.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort8LowLimitAction1 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 37), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("turn-on", 0), ("turn-off", 1), ("no-change", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort8LowLimitAction1.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort8NormalAction2 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 38), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("turn-on", 0), ("turn-off", 1), ("no-change", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort8NormalAction2.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort8HighLimit2 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 39), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-40, 167))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort8HighLimit2.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort8HighLimitAction2 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 40), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("turn-on", 0), ("turn-off", 1), ("no-change", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort8HighLimitAction2.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort8LowLimit2 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 41), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-40, 167))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort8LowLimit2.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort8LowLimitAction2 = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 42), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("turn-on", 0), ("turn-off", 1), ("no-change", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort8LowLimitAction2.setStatus('mandatory') sensorProbeThermostatTemperatureArrayPort8EnableTime = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 43), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort8EnableTime.setStatus('mandatory') sensorProbeNoCameraSensor = MibIdentifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 34)) sensorProbeNoCameraSensorNumber = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 34, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeNoCameraSensorNumber.setStatus('mandatory') sensorProbeNoCameraSensorTable = MibTable((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 34, 2), ) if mibBuilder.loadTexts: sensorProbeNoCameraSensorTable.setStatus('mandatory') sensorProbeNoCameraSensorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 34, 2, 1), ).setIndexNames((0, "SPAGENT-MIB", "sensorProbeNoCameraSensorIndex")) if mibBuilder.loadTexts: sensorProbeNoCameraSensorEntry.setStatus('mandatory') sensorProbeNoCameraSensorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 34, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeNoCameraSensorIndex.setStatus('mandatory') sensorProbeNoCameraDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 34, 2, 1, 2), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeNoCameraDescription.setStatus('mandatory') sensorProbeNoCameraStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 34, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 4, 6, 7, 8, 9))).clone(namedValues=NamedValues(("noStatus", 1), ("normal", 2), ("highCritical", 4), ("lowCritical", 6), ("sensorError", 7), ("relayOn", 8), ("relayOff", 9)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeNoCameraStatus.setStatus('mandatory') sensorProbeNoCameraOnline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 34, 2, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("online", 1), ("offline", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeNoCameraOnline.setStatus('mandatory') sensorProbeNoCameraGoOnline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 34, 2, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("goOnline", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeNoCameraGoOnline.setStatus('mandatory') sensorProbeNoCameraContTimeHighCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 34, 2, 1, 7), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeNoCameraContTimeHighCritical.setStatus('mandatory') sensorProbeNoCameraContTimeNormal = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 34, 2, 1, 8), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeNoCameraContTimeNormal.setStatus('mandatory') sensorProbeNoCameraCalendar = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 34, 2, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disable", 0), ("enable", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeNoCameraCalendar.setStatus('mandatory') sensorProbeSoftMotionSensor = MibIdentifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 35)) sensorProbeSoftMotionSensorNumber = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 35, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeSoftMotionSensorNumber.setStatus('mandatory') sensorProbeSoftMotionSensorTable = MibTable((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 35, 2), ) if mibBuilder.loadTexts: sensorProbeSoftMotionSensorTable.setStatus('mandatory') sensorProbeSoftMotionSensorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 35, 2, 1), ).setIndexNames((0, "SPAGENT-MIB", "sensorProbeSoftMotionSensorIndex")) if mibBuilder.loadTexts: sensorProbeSoftMotionSensorEntry.setStatus('mandatory') sensorProbeSoftMotionSensorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 35, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeSoftMotionSensorIndex.setStatus('mandatory') sensorProbeSoftMotionDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 35, 2, 1, 2), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSoftMotionDescription.setStatus('mandatory') sensorProbeSoftMotionStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 35, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 4, 6, 7, 8, 9))).clone(namedValues=NamedValues(("noStatus", 1), ("normal", 2), ("highCritical", 4), ("lowCritical", 6), ("sensorError", 7), ("relayOn", 8), ("relayOff", 9)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeSoftMotionStatus.setStatus('mandatory') sensorProbeSoftMotionOnline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 35, 2, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("online", 1), ("offline", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeSoftMotionOnline.setStatus('mandatory') sensorProbeSoftMotionGoOnline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 35, 2, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("goOnline", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSoftMotionGoOnline.setStatus('mandatory') sensorProbeSoftMotionPercentSensitivity = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 35, 2, 1, 7), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSoftMotionPercentSensitivity.setStatus('mandatory') sensorProbeSoftMotionURL = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 35, 2, 1, 8), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSoftMotionURL.setStatus('mandatory') sensorProbeSoftMotionOpenURL = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 35, 2, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 2))).clone(namedValues=NamedValues(("cur-window", 0), ("new-window", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSoftMotionOpenURL.setStatus('mandatory') sensorProbeSoftMotionContTimeHighCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 35, 2, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSoftMotionContTimeHighCritical.setStatus('mandatory') sensorProbeSoftMotionContTimeNormal = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 35, 2, 1, 11), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSoftMotionContTimeNormal.setStatus('mandatory') sensorProbeSoftMotionCalendar = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 35, 2, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disable", 0), ("enable", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSoftMotionCalendar.setStatus('mandatory') sensorProbeSoftMotionMask = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 35, 2, 1, 13), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 33554431))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSoftMotionMask.setStatus('mandatory') sensorProbeSoundDetectorSensor = MibIdentifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 36)) sensorProbeSoundDetectorSensorNumber = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 36, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeSoundDetectorSensorNumber.setStatus('mandatory') sensorProbeSoundDetectorSensorTable = MibTable((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 36, 2), ) if mibBuilder.loadTexts: sensorProbeSoundDetectorSensorTable.setStatus('mandatory') sensorProbeSoundDetectorSensorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 36, 2, 1), ).setIndexNames((0, "SPAGENT-MIB", "sensorProbeSoundDetectorIndex")) if mibBuilder.loadTexts: sensorProbeSoundDetectorSensorEntry.setStatus('mandatory') sensorProbeSoundDetectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 36, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 0))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeSoundDetectorIndex.setStatus('mandatory') sensorProbeSoundDetectorDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 36, 2, 1, 2), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSoundDetectorDescription.setStatus('mandatory') sensorProbeSoundDetectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 36, 2, 1, 3), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeSoundDetectorValue.setStatus('mandatory') sensorProbeSoundDetectorStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 36, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("noStatus", 1), ("normal", 2), ("highWarning", 3), ("highCritical", 4), ("lowWarning", 5), ("lowCritical", 6), ("sensorError", 7)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeSoundDetectorStatus.setStatus('mandatory') sensorProbeSoundDetectorOnline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 36, 2, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("online", 1), ("offline", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeSoundDetectorOnline.setStatus('mandatory') sensorProbeSoundDetectorGoOnline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 36, 2, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("goOnline", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSoundDetectorGoOnline.setStatus('mandatory') sensorProbeSoundDetectorHighWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 36, 2, 1, 7), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSoundDetectorHighWarning.setStatus('mandatory') sensorProbeSoundDetectorHighCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 36, 2, 1, 8), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSoundDetectorHighCritical.setStatus('mandatory') sensorProbeSoundDetectorLowWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 36, 2, 1, 9), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSoundDetectorLowWarning.setStatus('mandatory') sensorProbeSoundDetectorLowCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 36, 2, 1, 10), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSoundDetectorLowCritical.setStatus('mandatory') sensorProbeSoundDetectorRearm = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 36, 2, 1, 11), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSoundDetectorRearm.setStatus('mandatory') sensorProbeSoundDetectorRecordingSource = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 36, 2, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("internal-mic", 0), ("line-in", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSoundDetectorRecordingSource.setStatus('mandatory') sensorProbeSoundDetectorMicBoost = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 36, 2, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("off", 0), ("on", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSoundDetectorMicBoost.setStatus('mandatory') sensorProbeSoundDetectorMicSensitivity = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 36, 2, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 20, 40, 60, 80, 100))).clone(namedValues=NamedValues(("i0", 0), ("i20", 20), ("i40", 40), ("i60", 60), ("i80", 80), ("i100", 100)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSoundDetectorMicSensitivity.setStatus('mandatory') sensorProbeSoundDetectorPulseLength = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 36, 2, 1, 15), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSoundDetectorPulseLength.setStatus('mandatory') sensorProbeSoundDetectorURL = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 36, 2, 1, 16), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSoundDetectorURL.setStatus('mandatory') sensorProbeSoundDetectorOpenURL = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 36, 2, 1, 17), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 2))).clone(namedValues=NamedValues(("cur-window", 0), ("new-window", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSoundDetectorOpenURL.setStatus('mandatory') sensorProbeSoundDetectorDatacollectType = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 36, 2, 1, 18), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("average", 1), ("highest", 2), ("lowest", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSoundDetectorDatacollectType.setStatus('mandatory') sensorProbeSoundDetectorContTimeHighCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 36, 2, 1, 19), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSoundDetectorContTimeHighCritical.setStatus('mandatory') sensorProbeSoundDetectorContTimeHighWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 36, 2, 1, 20), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSoundDetectorContTimeHighWarning.setStatus('mandatory') sensorProbeSoundDetectorContTimeNormal = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 36, 2, 1, 21), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSoundDetectorContTimeNormal.setStatus('mandatory') sensorProbeSoundDetectorContTimeLowWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 36, 2, 1, 22), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSoundDetectorContTimeLowWarning.setStatus('mandatory') sensorProbeSoundDetectorContTimeLowCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 36, 2, 1, 23), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSoundDetectorContTimeLowCritical.setStatus('mandatory') sensorProbeSoundDetectorContTimeSensorError = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 36, 2, 1, 24), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSoundDetectorContTimeSensorError.setStatus('mandatory') sensorProbeSoundDetectorCalendar = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 36, 2, 1, 25), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disable", 0), ("enable", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSoundDetectorCalendar.setStatus('mandatory') sensorProbeDrycontactArraySensor = MibIdentifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37)) sensorProbeDrycontactArrayPort1 = MibIdentifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 1)) sensorProbeDrycontactArrayPort1Number = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort1Number.setStatus('mandatory') sensorProbeDrycontactArrayPort1Table = MibTable((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 1, 2), ) if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort1Table.setStatus('mandatory') sensorProbeDrycontactArrayPort1Entry = MibTableRow((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 1, 2, 1), ).setIndexNames((0, "SPAGENT-MIB", "sensorProbeDrycontactArrayPort1Index")) if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort1Entry.setStatus('mandatory') sensorProbeDrycontactArrayPort1Index = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 1, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 7))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort1Index.setStatus('mandatory') sensorProbeDrycontactArrayPort1Description = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 1, 2, 1, 2), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort1Description.setStatus('mandatory') sensorProbeDrycontactArrayPort1Status = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 1, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 4, 6, 7, 8, 9))).clone(namedValues=NamedValues(("noStatus", 1), ("normal", 2), ("highCritical", 4), ("lowCritical", 6), ("sensorError", 7), ("relayOn", 8), ("relayOff", 9)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort1Status.setStatus('mandatory') sensorProbeDrycontactArrayPort1Online = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 1, 2, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("online", 1), ("offline", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort1Online.setStatus('mandatory') sensorProbeDrycontactArrayPort1GoOnline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 1, 2, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("goOnline", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort1GoOnline.setStatus('mandatory') sensorProbeDrycontactArrayPort1NormalState = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 1, 2, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("closed", 0), ("open", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort1NormalState.setStatus('mandatory') sensorProbeDrycontactArrayPort1Direction = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 1, 2, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("input", 0), ("output", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort1Direction.setStatus('mandatory') sensorProbeDrycontactArrayPort1ContTimeCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 1, 2, 1, 9), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort1ContTimeCritical.setStatus('mandatory') sensorProbeDrycontactArrayPort1ContTimeNormal = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 1, 2, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort1ContTimeNormal.setStatus('mandatory') sensorProbeDrycontactArrayPort1ManualOutputCycleTime = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 1, 2, 1, 24), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort1ManualOutputCycleTime.setStatus('mandatory') sensorProbeDrycontactArrayPort1ManualOutputAction = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 1, 2, 1, 25), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 3, 4, 7, 8))).clone(namedValues=NamedValues(("allow-sensor-control", 1), ("turn-on", 3), ("turn-off", 4), ("cycle-Off-On-Off", 7), ("cycle-On-Off-On", 8)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort1ManualOutputAction.setStatus('mandatory') sensorProbeDrycontactArrayPort1OutputDescOn = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 1, 2, 1, 26), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort1OutputDescOn.setStatus('mandatory') sensorProbeDrycontactArrayPort1OutputDescOff = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 1, 2, 1, 27), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort1OutputDescOff.setStatus('mandatory') sensorProbeDrycontactArrayPort1URL = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 1, 2, 1, 28), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort1URL.setStatus('mandatory') sensorProbeDrycontactArrayPort1OpenURL = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 1, 2, 1, 29), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 2))).clone(namedValues=NamedValues(("cur-window", 0), ("new-window", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort1OpenURL.setStatus('mandatory') sensorProbeDrycontactArrayPort1ControlMode = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 1, 2, 1, 30), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("manual-control", 0), ("notification-control", 1), ("time-control", 2), ("thermostat-control", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort1ControlMode.setStatus('mandatory') sensorProbeDrycontactArrayPort2 = MibIdentifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 2)) sensorProbeDrycontactArrayPort2Number = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 2, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort2Number.setStatus('mandatory') sensorProbeDrycontactArrayPort2Table = MibTable((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 2, 2), ) if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort2Table.setStatus('mandatory') sensorProbeDrycontactArrayPort2Entry = MibTableRow((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 2, 2, 1), ).setIndexNames((0, "SPAGENT-MIB", "sensorProbeDrycontactArrayPort2Index")) if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort2Entry.setStatus('mandatory') sensorProbeDrycontactArrayPort2Index = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 2, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 7))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort2Index.setStatus('mandatory') sensorProbeDrycontactArrayPort2Description = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 2, 2, 1, 2), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort2Description.setStatus('mandatory') sensorProbeDrycontactArrayPort2Status = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 2, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 4, 6, 7, 8, 9))).clone(namedValues=NamedValues(("noStatus", 1), ("normal", 2), ("highCritical", 4), ("lowCritical", 6), ("sensorError", 7), ("relayOn", 8), ("relayOff", 9)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort2Status.setStatus('mandatory') sensorProbeDrycontactArrayPort2Online = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 2, 2, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("online", 1), ("offline", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort2Online.setStatus('mandatory') sensorProbeDrycontactArrayPort2GoOnline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 2, 2, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("goOnline", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort2GoOnline.setStatus('mandatory') sensorProbeDrycontactArrayPort2NormalState = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 2, 2, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("closed", 0), ("open", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort2NormalState.setStatus('mandatory') sensorProbeDrycontactArrayPort2Direction = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 2, 2, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("input", 0), ("output", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort2Direction.setStatus('mandatory') sensorProbeDrycontactArrayPort2ContTimeCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 2, 2, 1, 9), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort2ContTimeCritical.setStatus('mandatory') sensorProbeDrycontactArrayPort2ContTimeNormal = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 2, 2, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort2ContTimeNormal.setStatus('mandatory') sensorProbeDrycontactArrayPort2ManualOutputCycleTime = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 2, 2, 1, 24), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort2ManualOutputCycleTime.setStatus('mandatory') sensorProbeDrycontactArrayPort2ManualOutputAction = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 2, 2, 1, 25), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 3, 4, 7, 8))).clone(namedValues=NamedValues(("allow-sensor-control", 1), ("turn-on", 3), ("turn-off", 4), ("cycle-Off-On-Off", 7), ("cycle-On-Off-On", 8)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort2ManualOutputAction.setStatus('mandatory') sensorProbeDrycontactArrayPort2OutputDescOn = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 2, 2, 1, 26), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort2OutputDescOn.setStatus('mandatory') sensorProbeDrycontactArrayPort2OutputDescOff = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 2, 2, 1, 27), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort2OutputDescOff.setStatus('mandatory') sensorProbeDrycontactArrayPort2URL = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 2, 2, 1, 28), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort2URL.setStatus('mandatory') sensorProbeDrycontactArrayPort2OpenURL = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 2, 2, 1, 29), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 2))).clone(namedValues=NamedValues(("cur-window", 0), ("new-window", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort2OpenURL.setStatus('mandatory') sensorProbeDrycontactArrayPort2ControlMode = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 2, 2, 1, 30), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("manual-control", 0), ("notification-control", 1), ("time-control", 2), ("thermostat-control", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort2ControlMode.setStatus('mandatory') sensorProbeDrycontactArrayPort3 = MibIdentifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 3)) sensorProbeDrycontactArrayPort3Number = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 3, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort3Number.setStatus('mandatory') sensorProbeDrycontactArrayPort3Table = MibTable((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 3, 2), ) if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort3Table.setStatus('mandatory') sensorProbeDrycontactArrayPort3Entry = MibTableRow((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 3, 2, 1), ).setIndexNames((0, "SPAGENT-MIB", "sensorProbeDrycontactArrayPort3Index")) if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort3Entry.setStatus('mandatory') sensorProbeDrycontactArrayPort3Index = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 3, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 7))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort3Index.setStatus('mandatory') sensorProbeDrycontactArrayPort3Description = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 3, 2, 1, 2), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort3Description.setStatus('mandatory') sensorProbeDrycontactArrayPort3Status = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 3, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 4, 6, 7, 8, 9))).clone(namedValues=NamedValues(("noStatus", 1), ("normal", 2), ("highCritical", 4), ("lowCritical", 6), ("sensorError", 7), ("relayOn", 8), ("relayOff", 9)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort3Status.setStatus('mandatory') sensorProbeDrycontactArrayPort3Online = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 3, 2, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("online", 1), ("offline", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort3Online.setStatus('mandatory') sensorProbeDrycontactArrayPort3GoOnline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 3, 2, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("goOnline", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort3GoOnline.setStatus('mandatory') sensorProbeDrycontactArrayPort3NormalState = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 3, 2, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("closed", 0), ("open", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort3NormalState.setStatus('mandatory') sensorProbeDrycontactArrayPort3Direction = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 3, 2, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("input", 0), ("output", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort3Direction.setStatus('mandatory') sensorProbeDrycontactArrayPort3ContTimeCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 3, 2, 1, 9), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort3ContTimeCritical.setStatus('mandatory') sensorProbeDrycontactArrayPort3ContTimeNormal = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 3, 2, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort3ContTimeNormal.setStatus('mandatory') sensorProbeDrycontactArrayPort3ManualOutputCycleTime = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 3, 2, 1, 24), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort3ManualOutputCycleTime.setStatus('mandatory') sensorProbeDrycontactArrayPort3ManualOutputAction = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 3, 2, 1, 25), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 3, 4, 7, 8))).clone(namedValues=NamedValues(("allow-sensor-control", 1), ("turn-on", 3), ("turn-off", 4), ("cycle-Off-On-Off", 7), ("cycle-On-Off-On", 8)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort3ManualOutputAction.setStatus('mandatory') sensorProbeDrycontactArrayPort3OutputDescOn = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 3, 2, 1, 26), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort3OutputDescOn.setStatus('mandatory') sensorProbeDrycontactArrayPort3OutputDescOff = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 3, 2, 1, 27), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort3OutputDescOff.setStatus('mandatory') sensorProbeDrycontactArrayPort3URL = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 3, 2, 1, 28), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort3URL.setStatus('mandatory') sensorProbeDrycontactArrayPort3OpenURL = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 3, 2, 1, 29), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 2))).clone(namedValues=NamedValues(("cur-window", 0), ("new-window", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort3OpenURL.setStatus('mandatory') sensorProbeDrycontactArrayPort3ControlMode = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 3, 2, 1, 30), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("manual-control", 0), ("notification-control", 1), ("time-control", 2), ("thermostat-control", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort3ControlMode.setStatus('mandatory') sensorProbeDrycontactArrayPort4 = MibIdentifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 4)) sensorProbeDrycontactArrayPort4Number = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 4, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort4Number.setStatus('mandatory') sensorProbeDrycontactArrayPort4Table = MibTable((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 4, 2), ) if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort4Table.setStatus('mandatory') sensorProbeDrycontactArrayPort4Entry = MibTableRow((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 4, 2, 1), ).setIndexNames((0, "SPAGENT-MIB", "sensorProbeDrycontactArrayPort4Index")) if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort4Entry.setStatus('mandatory') sensorProbeDrycontactArrayPort4Index = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 4, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 7))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort4Index.setStatus('mandatory') sensorProbeDrycontactArrayPort4Description = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 4, 2, 1, 2), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort4Description.setStatus('mandatory') sensorProbeDrycontactArrayPort4Status = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 4, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 4, 6, 7, 8, 9))).clone(namedValues=NamedValues(("noStatus", 1), ("normal", 2), ("highCritical", 4), ("lowCritical", 6), ("sensorError", 7), ("relayOn", 8), ("relayOff", 9)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort4Status.setStatus('mandatory') sensorProbeDrycontactArrayPort4Online = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 4, 2, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("online", 1), ("offline", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort4Online.setStatus('mandatory') sensorProbeDrycontactArrayPort4GoOnline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 4, 2, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("goOnline", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort4GoOnline.setStatus('mandatory') sensorProbeDrycontactArrayPort4NormalState = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 4, 2, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("closed", 0), ("open", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort4NormalState.setStatus('mandatory') sensorProbeDrycontactArrayPort4Direction = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 4, 2, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("input", 0), ("output", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort4Direction.setStatus('mandatory') sensorProbeDrycontactArrayPort4ContTimeCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 4, 2, 1, 9), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort4ContTimeCritical.setStatus('mandatory') sensorProbeDrycontactArrayPort4ContTimeNormal = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 4, 2, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort4ContTimeNormal.setStatus('mandatory') sensorProbeDrycontactArrayPort4ManualOutputCycleTime = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 4, 2, 1, 24), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort4ManualOutputCycleTime.setStatus('mandatory') sensorProbeDrycontactArrayPort4ManualOutputAction = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 4, 2, 1, 25), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 3, 4, 7, 8))).clone(namedValues=NamedValues(("allow-sensor-control", 1), ("turn-on", 3), ("turn-off", 4), ("cycle-Off-On-Off", 7), ("cycle-On-Off-On", 8)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort4ManualOutputAction.setStatus('mandatory') sensorProbeDrycontactArrayPort4OutputDescOn = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 4, 2, 1, 26), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort4OutputDescOn.setStatus('mandatory') sensorProbeDrycontactArrayPort4OutputDescOff = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 4, 2, 1, 27), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort4OutputDescOff.setStatus('mandatory') sensorProbeDrycontactArrayPort4URL = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 4, 2, 1, 28), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort4URL.setStatus('mandatory') sensorProbeDrycontactArrayPort4OpenURL = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 4, 2, 1, 29), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 2))).clone(namedValues=NamedValues(("cur-window", 0), ("new-window", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort4OpenURL.setStatus('mandatory') sensorProbeDrycontactArrayPort4ControlMode = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 4, 2, 1, 30), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("manual-control", 0), ("notification-control", 1), ("time-control", 2), ("thermostat-control", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort4ControlMode.setStatus('mandatory') sensorProbeDrycontactArrayPort5 = MibIdentifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 5)) sensorProbeDrycontactArrayPort5Number = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 5, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort5Number.setStatus('mandatory') sensorProbeDrycontactArrayPort5Table = MibTable((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 5, 2), ) if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort5Table.setStatus('mandatory') sensorProbeDrycontactArrayPort5Entry = MibTableRow((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 5, 2, 1), ).setIndexNames((0, "SPAGENT-MIB", "sensorProbeDrycontactArrayPort5Index")) if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort5Entry.setStatus('mandatory') sensorProbeDrycontactArrayPort5Index = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 5, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 7))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort5Index.setStatus('mandatory') sensorProbeDrycontactArrayPort5Description = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 5, 2, 1, 2), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort5Description.setStatus('mandatory') sensorProbeDrycontactArrayPort5Status = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 5, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 4, 6, 7, 8, 9))).clone(namedValues=NamedValues(("noStatus", 1), ("normal", 2), ("highCritical", 4), ("lowCritical", 6), ("sensorError", 7), ("relayOn", 8), ("relayOff", 9)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort5Status.setStatus('mandatory') sensorProbeDrycontactArrayPort5Online = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 5, 2, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("online", 1), ("offline", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort5Online.setStatus('mandatory') sensorProbeDrycontactArrayPort5GoOnline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 5, 2, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("goOnline", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort5GoOnline.setStatus('mandatory') sensorProbeDrycontactArrayPort5NormalState = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 5, 2, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("closed", 0), ("open", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort5NormalState.setStatus('mandatory') sensorProbeDrycontactArrayPort5Direction = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 5, 2, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("input", 0), ("output", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort5Direction.setStatus('mandatory') sensorProbeDrycontactArrayPort5ContTimeCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 5, 2, 1, 9), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort5ContTimeCritical.setStatus('mandatory') sensorProbeDrycontactArrayPort5ContTimeNormal = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 5, 2, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort5ContTimeNormal.setStatus('mandatory') sensorProbeDrycontactArrayPort5ManualOutputCycleTime = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 5, 2, 1, 24), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort5ManualOutputCycleTime.setStatus('mandatory') sensorProbeDrycontactArrayPort5ManualOutputAction = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 5, 2, 1, 25), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 3, 4, 7, 8))).clone(namedValues=NamedValues(("allow-sensor-control", 1), ("turn-on", 3), ("turn-off", 4), ("cycle-Off-On-Off", 7), ("cycle-On-Off-On", 8)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort5ManualOutputAction.setStatus('mandatory') sensorProbeDrycontactArrayPort5OutputDescOn = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 5, 2, 1, 26), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort5OutputDescOn.setStatus('mandatory') sensorProbeDrycontactArrayPort5OutputDescOff = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 5, 2, 1, 27), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort5OutputDescOff.setStatus('mandatory') sensorProbeDrycontactArrayPort5URL = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 5, 2, 1, 28), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort5URL.setStatus('mandatory') sensorProbeDrycontactArrayPort5OpenURL = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 5, 2, 1, 29), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 2))).clone(namedValues=NamedValues(("cur-window", 0), ("new-window", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort5OpenURL.setStatus('mandatory') sensorProbeDrycontactArrayPort5ControlMode = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 5, 2, 1, 30), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("manual-control", 0), ("notification-control", 1), ("time-control", 2), ("thermostat-control", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort5ControlMode.setStatus('mandatory') sensorProbeDrycontactArrayPort6 = MibIdentifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 6)) sensorProbeDrycontactArrayPort6Number = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 6, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort6Number.setStatus('mandatory') sensorProbeDrycontactArrayPort6Table = MibTable((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 6, 2), ) if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort6Table.setStatus('mandatory') sensorProbeDrycontactArrayPort6Entry = MibTableRow((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 6, 2, 1), ).setIndexNames((0, "SPAGENT-MIB", "sensorProbeDrycontactArrayPort6Index")) if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort6Entry.setStatus('mandatory') sensorProbeDrycontactArrayPort6Index = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 6, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 7))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort6Index.setStatus('mandatory') sensorProbeDrycontactArrayPort6Description = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 6, 2, 1, 2), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort6Description.setStatus('mandatory') sensorProbeDrycontactArrayPort6Status = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 6, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 4, 6, 7, 8, 9))).clone(namedValues=NamedValues(("noStatus", 1), ("normal", 2), ("highCritical", 4), ("lowCritical", 6), ("sensorError", 7), ("relayOn", 8), ("relayOff", 9)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort6Status.setStatus('mandatory') sensorProbeDrycontactArrayPort6Online = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 6, 2, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("online", 1), ("offline", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort6Online.setStatus('mandatory') sensorProbeDrycontactArrayPort6GoOnline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 6, 2, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("goOnline", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort6GoOnline.setStatus('mandatory') sensorProbeDrycontactArrayPort6NormalState = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 6, 2, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("closed", 0), ("open", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort6NormalState.setStatus('mandatory') sensorProbeDrycontactArrayPort6Direction = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 6, 2, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("input", 0), ("output", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort6Direction.setStatus('mandatory') sensorProbeDrycontactArrayPort6ContTimeCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 6, 2, 1, 9), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort6ContTimeCritical.setStatus('mandatory') sensorProbeDrycontactArrayPort6ContTimeNormal = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 6, 2, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort6ContTimeNormal.setStatus('mandatory') sensorProbeDrycontactArrayPort6ManualOutputCycleTime = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 6, 2, 1, 24), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort6ManualOutputCycleTime.setStatus('mandatory') sensorProbeDrycontactArrayPort6ManualOutputAction = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 6, 2, 1, 25), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 3, 4, 7, 8))).clone(namedValues=NamedValues(("allow-sensor-control", 1), ("turn-on", 3), ("turn-off", 4), ("cycle-Off-On-Off", 7), ("cycle-On-Off-On", 8)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort6ManualOutputAction.setStatus('mandatory') sensorProbeDrycontactArrayPort6OutputDescOn = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 6, 2, 1, 26), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort6OutputDescOn.setStatus('mandatory') sensorProbeDrycontactArrayPort6OutputDescOff = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 6, 2, 1, 27), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort6OutputDescOff.setStatus('mandatory') sensorProbeDrycontactArrayPort6URL = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 6, 2, 1, 28), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort6URL.setStatus('mandatory') sensorProbeDrycontactArrayPort6OpenURL = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 6, 2, 1, 29), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 2))).clone(namedValues=NamedValues(("cur-window", 0), ("new-window", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort6OpenURL.setStatus('mandatory') sensorProbeDrycontactArrayPort6ControlMode = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 6, 2, 1, 30), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("manual-control", 0), ("notification-control", 1), ("time-control", 2), ("thermostat-control", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort6ControlMode.setStatus('mandatory') sensorProbeDrycontactArrayPort7 = MibIdentifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 7)) sensorProbeDrycontactArrayPort7Number = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 7, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort7Number.setStatus('mandatory') sensorProbeDrycontactArrayPort7Table = MibTable((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 7, 2), ) if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort7Table.setStatus('mandatory') sensorProbeDrycontactArrayPort7Entry = MibTableRow((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 7, 2, 1), ).setIndexNames((0, "SPAGENT-MIB", "sensorProbeDrycontactArrayPort7Index")) if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort7Entry.setStatus('mandatory') sensorProbeDrycontactArrayPort7Index = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 7, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 7))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort7Index.setStatus('mandatory') sensorProbeDrycontactArrayPort7Description = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 7, 2, 1, 2), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort7Description.setStatus('mandatory') sensorProbeDrycontactArrayPort7Status = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 7, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 4, 6, 7, 8, 9))).clone(namedValues=NamedValues(("noStatus", 1), ("normal", 2), ("highCritical", 4), ("lowCritical", 6), ("sensorError", 7), ("relayOn", 8), ("relayOff", 9)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort7Status.setStatus('mandatory') sensorProbeDrycontactArrayPort7Online = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 7, 2, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("online", 1), ("offline", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort7Online.setStatus('mandatory') sensorProbeDrycontactArrayPort7GoOnline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 7, 2, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("goOnline", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort7GoOnline.setStatus('mandatory') sensorProbeDrycontactArrayPort7NormalState = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 7, 2, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("closed", 0), ("open", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort7NormalState.setStatus('mandatory') sensorProbeDrycontactArrayPort7Direction = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 7, 2, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("input", 0), ("output", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort7Direction.setStatus('mandatory') sensorProbeDrycontactArrayPort7ContTimeCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 7, 2, 1, 9), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort7ContTimeCritical.setStatus('mandatory') sensorProbeDrycontactArrayPort7ContTimeNormal = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 7, 2, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort7ContTimeNormal.setStatus('mandatory') sensorProbeDrycontactArrayPort7ManualOutputCycleTime = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 7, 2, 1, 24), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort7ManualOutputCycleTime.setStatus('mandatory') sensorProbeDrycontactArrayPort7ManualOutputAction = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 7, 2, 1, 25), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 3, 4, 7, 8))).clone(namedValues=NamedValues(("allow-sensor-control", 1), ("turn-on", 3), ("turn-off", 4), ("cycle-Off-On-Off", 7), ("cycle-On-Off-On", 8)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort7ManualOutputAction.setStatus('mandatory') sensorProbeDrycontactArrayPort7OutputDescOn = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 7, 2, 1, 26), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort7OutputDescOn.setStatus('mandatory') sensorProbeDrycontactArrayPort7OutputDescOff = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 7, 2, 1, 27), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort7OutputDescOff.setStatus('mandatory') sensorProbeDrycontactArrayPort7URL = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 7, 2, 1, 28), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort7URL.setStatus('mandatory') sensorProbeDrycontactArrayPort7OpenURL = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 7, 2, 1, 29), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 2))).clone(namedValues=NamedValues(("cur-window", 0), ("new-window", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort7OpenURL.setStatus('mandatory') sensorProbeDrycontactArrayPort7ControlMode = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 7, 2, 1, 30), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("manual-control", 0), ("notification-control", 1), ("time-control", 2), ("thermostat-control", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort7ControlMode.setStatus('mandatory') sensorProbeDrycontactArrayPort8 = MibIdentifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 8)) sensorProbeDrycontactArrayPort8Number = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 8, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort8Number.setStatus('mandatory') sensorProbeDrycontactArrayPort8Table = MibTable((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 8, 2), ) if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort8Table.setStatus('mandatory') sensorProbeDrycontactArrayPort8Entry = MibTableRow((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 8, 2, 1), ).setIndexNames((0, "SPAGENT-MIB", "sensorProbeDrycontactArrayPort8Index")) if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort8Entry.setStatus('mandatory') sensorProbeDrycontactArrayPort8Index = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 8, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 7))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort8Index.setStatus('mandatory') sensorProbeDrycontactArrayPort8Description = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 8, 2, 1, 2), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort8Description.setStatus('mandatory') sensorProbeDrycontactArrayPort8Status = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 8, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 4, 6, 7, 8, 9))).clone(namedValues=NamedValues(("noStatus", 1), ("normal", 2), ("highCritical", 4), ("lowCritical", 6), ("sensorError", 7), ("relayOn", 8), ("relayOff", 9)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort8Status.setStatus('mandatory') sensorProbeDrycontactArrayPort8Online = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 8, 2, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("online", 1), ("offline", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort8Online.setStatus('mandatory') sensorProbeDrycontactArrayPort8GoOnline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 8, 2, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("goOnline", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort8GoOnline.setStatus('mandatory') sensorProbeDrycontactArrayPort8NormalState = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 8, 2, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("closed", 0), ("open", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort8NormalState.setStatus('mandatory') sensorProbeDrycontactArrayPort8Direction = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 8, 2, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("input", 0), ("output", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort8Direction.setStatus('mandatory') sensorProbeDrycontactArrayPort8ContTimeCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 8, 2, 1, 9), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort8ContTimeCritical.setStatus('mandatory') sensorProbeDrycontactArrayPort8ContTimeNormal = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 8, 2, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort8ContTimeNormal.setStatus('mandatory') sensorProbeDrycontactArrayPort8ManualOutputCycleTime = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 8, 2, 1, 24), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort8ManualOutputCycleTime.setStatus('mandatory') sensorProbeDrycontactArrayPort8ManualOutputAction = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 8, 2, 1, 25), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 3, 4, 7, 8))).clone(namedValues=NamedValues(("allow-sensor-control", 1), ("turn-on", 3), ("turn-off", 4), ("cycle-Off-On-Off", 7), ("cycle-On-Off-On", 8)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort8ManualOutputAction.setStatus('mandatory') sensorProbeDrycontactArrayPort8OutputDescOn = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 8, 2, 1, 26), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort8OutputDescOn.setStatus('mandatory') sensorProbeDrycontactArrayPort8OutputDescOff = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 8, 2, 1, 27), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort8OutputDescOff.setStatus('mandatory') sensorProbeDrycontactArrayPort8URL = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 8, 2, 1, 28), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort8URL.setStatus('mandatory') sensorProbeDrycontactArrayPort8OpenURL = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 8, 2, 1, 29), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 2))).clone(namedValues=NamedValues(("cur-window", 0), ("new-window", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort8OpenURL.setStatus('mandatory') sensorProbeDrycontactArrayPort8ControlMode = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 8, 2, 1, 30), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("manual-control", 0), ("notification-control", 1), ("time-control", 2), ("thermostat-control", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort8ControlMode.setStatus('mandatory') sensorProbeDebug = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 20), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("off", 0), ("on", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDebug.setStatus('mandatory') sensorProbeTrapResend = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 22), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("off", 0), ("on", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTrapResend.setStatus('mandatory') sensorProbeTrapResendInterval = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 23), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTrapResendInterval.setStatus('mandatory') sensorProbeSendTraps = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 24), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("on", 1), ("off", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSendTraps.setStatus('mandatory') sensorProbeTrapDestination = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 25), IpAddress()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTrapDestination.setStatus('mandatory') sensorProbeTrapCommunity = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 26), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTrapCommunity.setStatus('mandatory') sensorProbeDefaultGateway = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 27), IpAddress()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDefaultGateway.setStatus('mandatory') sensorProbeSubnetMask = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 28), IpAddress()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSubnetMask.setStatus('mandatory') sensorProbeRouteAdd = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 29), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRouteAdd.setStatus('mandatory') sensorProbeSendMail = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 30), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("on", 1), ("off", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSendMail.setStatus('mandatory') sensorProbeMailRecpt = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 31), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeMailRecpt.setStatus('mandatory') sensorProbeMailFrom = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 32), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeMailFrom.setStatus('mandatory') sensorProbeMailSMTP = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 33), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeMailSMTP.setStatus('mandatory') sensorProbeMailJpgInline = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 34), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("inline", 1), ("link", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeMailJpgInline.setStatus('mandatory') sensorProbeMailResendInterval = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 36), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeMailResendInterval.setStatus('mandatory') sensorProbeMailMaxResend = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 37), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeMailMaxResend.setStatus('mandatory') sensorProbeMailLastStatus = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 39), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeMailLastStatus.setStatus('mandatory') sensorProbeSupportMailRcpt = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 40), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSupportMailRcpt.setStatus('mandatory') sensorProbeCameraServerTable = MibTable((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 42), ) if mibBuilder.loadTexts: sensorProbeCameraServerTable.setStatus('mandatory') sensorProbeCameraServerEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 42, 1), ).setIndexNames((0, "SPAGENT-MIB", "sensorProbeCameraServerIndex")) if mibBuilder.loadTexts: sensorProbeCameraServerEntry.setStatus('mandatory') sensorProbeCameraServerClientOnline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 42, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("online", 1), ("offline", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeCameraServerClientOnline.setStatus('mandatory') sensorProbeCameraServerClientGoOnline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 42, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("goOnline", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeCameraServerClientGoOnline.setStatus('mandatory') sensorProbeCameraServerClientIP = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 42, 1, 3), IpAddress()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeCameraServerClientIP.setStatus('mandatory') sensorProbeCameraServerClientSetPassword = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 42, 1, 4), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeCameraServerClientSetPassword.setStatus('mandatory') sensorProbeCameraServerIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 42, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeCameraServerIndex.setStatus('mandatory') sensorProbeJavaTimeOut = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 42, 1, 6), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeJavaTimeOut.setStatus('mandatory') sensorProbeJpegQualityFactor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 42, 1, 7), Integer32().subtype(subtypeSpec=ValueRangeConstraint(5, 95))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeJpegQualityFactor.setStatus('mandatory') sensorProbeCameraDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 42, 1, 8), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeCameraDescription.setStatus('mandatory') sensorProbeCameraRotate = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 42, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("nonRotate", 0), ("rotate", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeCameraRotate.setStatus('mandatory') sensorProbeCameraResolution = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 42, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("resolution320x240", 0), ("resolution640x480", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeCameraResolution.setStatus('mandatory') sensorProbePTZRotateRelative = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 42, 1, 11), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbePTZRotateRelative.setStatus('mandatory') sensorProbePTZRotateAbsolute = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 42, 1, 12), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbePTZRotateAbsolute.setStatus('mandatory') sensorProbeAudioAttachChannel = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 42, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("notAttachAudio", 0), ("attachAudio", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeAudioAttachChannel.setStatus('mandatory') sensorProbePTZEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 42, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("disable", 0), ("enableInternal", 1), ("enableExternal", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbePTZEnable.setStatus('mandatory') sensorProbePTZBrand = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 42, 1, 15), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("generalBrand", 0), ("akcpBrand", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbePTZBrand.setStatus('mandatory') sensorProbePTZPanTiltUntilEnd = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 42, 1, 16), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8))).clone(namedValues=NamedValues(("stop", 0), ("right", 1), ("left", 2), ("up", 3), ("down", 4), ("right-up", 5), ("right-down", 6), ("left-up", 7), ("left-down", 8)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbePTZPanTiltUntilEnd.setStatus('mandatory') sensorProbeTrapMailPollInterval = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 50), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTrapMailPollInterval.setStatus('mandatory') sensorProbeSendTestMail = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 51), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSendTestMail.setStatus('mandatory') sensorProbeLastSystemError = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 52), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeLastSystemError.setStatus('mandatory') sensorProbeDataCollectionPeriod = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 53), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDataCollectionPeriod.setStatus('mandatory') sensorProbeMailTimeout = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 54), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeMailTimeout.setStatus('mandatory') sensorProbeAutoSense = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 55), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disable", 0), ("enable", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeAutoSense.setStatus('mandatory') sensorProbeChecksum = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 56), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeChecksum.setStatus('mandatory') sensorProbeUsePassword = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 57), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("usePassword", 0), ("doNotUsePassword", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeUsePassword.setStatus('mandatory') sensorProbeDisplayLogo = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 59), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disable", 0), ("enable", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDisplayLogo.setStatus('mandatory') sensorProbeTrapType = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 60), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("specificTypeTrap", 1), ("generalTypeTrap", 2), ("bothTypeTraps", 3), ("statusTypeTraps", 4)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTrapType.setStatus('mandatory') sensorProbeMailCC = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 61), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeMailCC.setStatus('mandatory') sensorProbeAllowIPChange = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 62), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeAllowIPChange.setStatus('mandatory') sensorProbeTimeOfDay = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 65), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTimeOfDay.setStatus('mandatory') sensorProbeEnableSysLog = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 66), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("enableLogToFlash", 1), ("enableLogToNetAndFlash", 2), ("disable", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeEnableSysLog.setStatus('mandatory') sensorProbeReadSysLog = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 67), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("lastMessage", 1), ("allMessages", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeReadSysLog.setStatus('mandatory') sensorProbeClearSysLog = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 68), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2))).clone(namedValues=NamedValues(("allMessages", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeClearSysLog.setStatus('mandatory') sensorProbeSyslogDestIP = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 69), IpAddress()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSyslogDestIP.setStatus('mandatory') sensorProbeSyslogPort = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 70), Gauge32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSyslogPort.setStatus('mandatory') sensorProbeSetSyslogMsgPrefix = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 71), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSetSyslogMsgPrefix.setStatus('mandatory') sensorProbeTimeZone = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 81), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTimeZone.setStatus('mandatory') sensorProbeMegaVersion = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 83), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeMegaVersion.setStatus('mandatory') sensorProbeNtpMode = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 84), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("notUse", 0), ("oneTime", 1), ("onSystemStartUp", 2), ("onceAMounth", 3), ("onceAWeek", 4), ("onceADay", 5), ("onceAnHour", 6), ("continuous", 7)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeNtpMode.setStatus('mandatory') sensorProbeNtpServer = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 85), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeNtpServer.setStatus('mandatory') sensorProbeSMTPAuth = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 87), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSMTPAuth.setStatus('mandatory') sensorProbeSMTPLogin = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 88), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSMTPLogin.setStatus('mandatory') sensorProbeSMTPPassword = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 89), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSMTPPassword.setStatus('mandatory') sensorProbeDNSServer = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 90), IpAddress()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDNSServer.setStatus('mandatory') sensorProbeAltWebPort = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 91), Gauge32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeAltWebPort.setStatus('mandatory') sensorProbeNumberOfSensorPort = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 92), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeNumberOfSensorPort.setStatus('mandatory') sensorProbeSendTrapsAlive = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 93), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("on", 1), ("off", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSendTrapsAlive.setStatus('mandatory') sensorProbeTrapReIntervalAlive = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 94), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTrapReIntervalAlive.setStatus('mandatory') sensorProbeUseCamera = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 95), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("off", 0), ("on", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeUseCamera.setStatus('mandatory') sensorProbeAdcCalibratePort = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 96), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeAdcCalibratePort.setStatus('mandatory') sensorProbeMailSubject = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 98), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeMailSubject.setStatus('mandatory') sensorProbeSnmpPort = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 99), Gauge32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSnmpPort.setStatus('mandatory') sensorProbeSnmpTrapPort = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 100), Gauge32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSnmpTrapPort.setStatus('mandatory') sensorProbeSnmpIndexingMode = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 101), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("index0", 0), ("index1", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSnmpIndexingMode.setStatus('mandatory') sensorProbeNotifyBoot = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 103), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeNotifyBoot.setStatus('mandatory') sensorProbeDelayNotifyBoot = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 104), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeDelayNotifyBoot.setStatus('mandatory') sensorProbeSmtpPort = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 105), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSmtpPort.setStatus('mandatory') sensorProbeReboot = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 106), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeReboot.setStatus('mandatory') sensorProbeServerEnable = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 107), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disable", 0), ("enable", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeServerEnable.setStatus('mandatory') sensorProbeFirmwareVersion = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 108), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeFirmwareVersion.setStatus('mandatory') sensorProbeProductType = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 109), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("sensorProbe2", 1), ("sensorProbe8", 2), ("sensorProbeLinuxWithoutUSB", 3), ("sensorProbeLinuxWithUSB", 4), ("securityProbe", 5)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeProductType.setStatus('mandatory') sensorProbeRequestResendTrap = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 110), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeRequestResendTrap.setStatus('mandatory') sensorProbeSeparateEmail = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 112), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("notSeparate", 0), ("separate", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeSeparateEmail.setStatus('mandatory') sensorProbeMailCustom = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 113), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("normal", 0), ("custom", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeMailCustom.setStatus('mandatory') sensorProbeUntidePassword = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 114), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("tidePassword", 0), ("untidePassword", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeUntidePassword.setStatus('mandatory') sensorProbeWebPassword = MibIdentifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 115)) sensorProbeWebAdminPassword = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 115, 1), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeWebAdminPassword.setStatus('mandatory') sensorProbeWebUserPassword = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 115, 2), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeWebUserPassword.setStatus('mandatory') sensorProbeReloadNetwork = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 116), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1))).clone(namedValues=NamedValues(("reload", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeReloadNetwork.setStatus('mandatory') sensorProbeStatusNumber = MibIdentifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 117)) sensorProbeStatusNumberNotNormal = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 117, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeStatusNumberNotNormal.setStatus('mandatory') sensorProbeStatusNumberCriticalAndError = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 117, 2), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeStatusNumberCriticalAndError.setStatus('mandatory') sensorProbeStatusNumberError = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 117, 3), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeStatusNumberError.setStatus('mandatory') sensorProbeTypeName = MibIdentifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 118)) sensorProbeTypeTemperatureName = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 118, 1), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTypeTemperatureName.setStatus('mandatory') sensorProbeTypeSHT11HumidityName = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 118, 2), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTypeSHT11HumidityName.setStatus('mandatory') sensorProbeTypeSHT11TempName = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 118, 3), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTypeSHT11TempName.setStatus('mandatory') sensorProbeType4to20MAName = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 118, 4), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeType4to20MAName.setStatus('mandatory') sensorProbeTypeDCvoltageName = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 118, 5), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTypeDCvoltageName.setStatus('mandatory') sensorProbeTypeAirflowName = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 118, 6), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTypeAirflowName.setStatus('mandatory') sensorProbeTypeDrycontactInoutName = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 118, 7), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTypeDrycontactInoutName.setStatus('mandatory') sensorProbeTypeDrycontactInputName = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 118, 8), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTypeDrycontactInputName.setStatus('mandatory') sensorProbeTypeMotionName = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 118, 9), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTypeMotionName.setStatus('mandatory') sensorProbeTypeWaterName = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 118, 10), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTypeWaterName.setStatus('mandatory') sensorProbeTypeSecurityName = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 118, 11), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTypeSecurityName.setStatus('mandatory') sensorProbeTypeSirenName = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 118, 12), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTypeSirenName.setStatus('mandatory') sensorProbeTypeRelayName = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 118, 13), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTypeRelayName.setStatus('mandatory') sensorProbeTypeACvoltageName = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 118, 14), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTypeACvoltageName.setStatus('mandatory') sensorProbeTypeADE7763VRMSName = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 118, 15), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTypeADE7763VRMSName.setStatus('mandatory') sensorProbeTypeADE7763IRMSName = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 118, 16), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTypeADE7763IRMSName.setStatus('mandatory') sensorProbeTypeADE7763WattName = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 118, 17), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTypeADE7763WattName.setStatus('mandatory') sensorProbeTypeADE7763WatthourName = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 118, 18), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTypeADE7763WatthourName.setStatus('mandatory') sensorProbeTypePCF8574XRelayName = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 118, 19), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTypePCF8574XRelayName.setStatus('mandatory') sensorProbeTypeThermocoupleName = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 118, 20), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTypeThermocoupleName.setStatus('mandatory') sensorProbeTypeSmokeName = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 118, 21), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTypeSmokeName.setStatus('mandatory') sensorProbeTypeXDryName = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 118, 22), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTypeXDryName.setStatus('mandatory') sensorProbeTypeTemperatureArrayName = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 118, 23), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTypeTemperatureArrayName.setStatus('mandatory') sensorProbeTypeWaterRopeName = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 118, 24), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTypeWaterRopeName.setStatus('mandatory') sensorProbeTypeFuelLevelName = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 118, 25), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTypeFuelLevelName.setStatus('mandatory') sensorProbeTypeTankSenderName = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 118, 26), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTypeTankSenderName.setStatus('mandatory') sensorProbeTypeThurmostatName = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 118, 128), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTypeThurmostatName.setStatus('mandatory') sensorProbeTypeVirtualName = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 118, 129), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTypeVirtualName.setStatus('mandatory') sensorProbeTypeSoundName = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 118, 130), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTypeSoundName.setStatus('mandatory') sensorProbeTypeSoftMotionName = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 118, 131), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTypeSoftMotionName.setStatus('mandatory') sensorProbeTypeNoSignalName = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 118, 132), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTypeNoSignalName.setStatus('mandatory') sensorProbeTypePowerMeterName = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 118, 134), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTypePowerMeterName.setStatus('mandatory') sensorProbeTypeSHT11Name = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 118, 135), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTypeSHT11Name.setStatus('mandatory') sensorProbeTypeADE7763Name = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 118, 136), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorProbeTypeADE7763Name.setStatus('mandatory') sensorProbeProductRevision = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 119), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorProbeProductRevision.setStatus('mandatory') securityProbe = MibIdentifier((1, 3, 6, 1, 4, 1, 3854, 2)) secSummary = MibIdentifier((1, 3, 6, 1, 4, 1, 3854, 2, 1)) secDevice = MibIdentifier((1, 3, 6, 1, 4, 1, 3854, 2, 2)) deviceTable = MibTable((1, 3, 6, 1, 4, 1, 3854, 2, 2, 1), ) if mibBuilder.loadTexts: deviceTable.setStatus('mandatory') deviceEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3854, 2, 2, 1, 1), ).setIndexNames((0, "SPAGENT-MIB", "deviceIndex")) if mibBuilder.loadTexts: deviceEntry.setStatus('mandatory') deviceIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 2, 1, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 184549375))).setMaxAccess("readonly") if mibBuilder.loadTexts: deviceIndex.setStatus('mandatory') deviceDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 2, 1, 1, 2), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: deviceDescription.setStatus('mandatory') deviceType = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 2, 1, 1, 3), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: deviceType.setStatus('mandatory') deviceInfo = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 2, 1, 1, 4), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: deviceInfo.setStatus('mandatory') deviceStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 2, 1, 1, 5), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: deviceStatus.setStatus('mandatory') deviceIntelligentTable = MibTable((1, 3, 6, 1, 4, 1, 3854, 2, 2, 2), ) if mibBuilder.loadTexts: deviceIntelligentTable.setStatus('mandatory') deviceIntelligentEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3854, 2, 2, 2, 1), ).setIndexNames((0, "SPAGENT-MIB", "deviceIntelligentIndex")) if mibBuilder.loadTexts: deviceIntelligentEntry.setStatus('mandatory') deviceIntelligentIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 2, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly") if mibBuilder.loadTexts: deviceIntelligentIndex.setStatus('mandatory') deviceIntelligentDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 2, 2, 1, 2), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: deviceIntelligentDescription.setStatus('mandatory') deviceIntelligentInfo = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 2, 2, 1, 4), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: deviceIntelligentInfo.setStatus('mandatory') deviceIntelligentStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 2, 2, 1, 5), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: deviceIntelligentStatus.setStatus('mandatory') sensorIntelligentTypeSelected = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 2, 2, 1, 6), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorIntelligentTypeSelected.setStatus('mandatory') sensorIntelligentPort1GoOnline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 2, 2, 1, 100), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("goOnline", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorIntelligentPort1GoOnline.setStatus('mandatory') sensorIntelligentPort2GoOnline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 2, 2, 1, 101), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("goOnline", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorIntelligentPort2GoOnline.setStatus('mandatory') sensorIntelligentPort3GoOnline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 2, 2, 1, 102), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("goOnline", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorIntelligentPort3GoOnline.setStatus('mandatory') sensorIntelligentPort4GoOnline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 2, 2, 1, 103), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("goOnline", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorIntelligentPort4GoOnline.setStatus('mandatory') sensorIntelligentPort5GoOnline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 2, 2, 1, 104), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("goOnline", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorIntelligentPort5GoOnline.setStatus('mandatory') sensorIntelligentPort6GoOnline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 2, 2, 1, 105), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("goOnline", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorIntelligentPort6GoOnline.setStatus('mandatory') sensorIntelligentPort7GoOnline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 2, 2, 1, 106), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("goOnline", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorIntelligentPort7GoOnline.setStatus('mandatory') sensorIntelligentPort8GoOnline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 2, 2, 1, 107), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("goOnline", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorIntelligentPort8GoOnline.setStatus('mandatory') deviceDryContactTable = MibTable((1, 3, 6, 1, 4, 1, 3854, 2, 2, 3), ) if mibBuilder.loadTexts: deviceDryContactTable.setStatus('mandatory') deviceDryContactEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3854, 2, 2, 3, 1), ).setIndexNames((0, "SPAGENT-MIB", "deviceDryContactIndex")) if mibBuilder.loadTexts: deviceDryContactEntry.setStatus('mandatory') deviceDryContactIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 2, 3, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly") if mibBuilder.loadTexts: deviceDryContactIndex.setStatus('mandatory') deviceDryContactDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 2, 3, 1, 2), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: deviceDryContactDescription.setStatus('mandatory') deviceDryContactInfo = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 2, 3, 1, 4), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: deviceDryContactInfo.setStatus('mandatory') deviceDryContactStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 2, 3, 1, 5), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: deviceDryContactStatus.setStatus('mandatory') sensorDryContactPort1GoOnline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 2, 3, 1, 100), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("goOnline", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorDryContactPort1GoOnline.setStatus('mandatory') sensorDryContactPort2GoOnline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 2, 3, 1, 101), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("goOnline", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorDryContactPort2GoOnline.setStatus('mandatory') sensorDryContactPort3GoOnline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 2, 3, 1, 102), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("goOnline", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorDryContactPort3GoOnline.setStatus('mandatory') sensorDryContactPort4GoOnline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 2, 3, 1, 103), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("goOnline", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorDryContactPort4GoOnline.setStatus('mandatory') sensorDryContactPort5GoOnline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 2, 3, 1, 104), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("goOnline", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorDryContactPort5GoOnline.setStatus('mandatory') sensorDryContactPort6GoOnline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 2, 3, 1, 105), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("goOnline", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorDryContactPort6GoOnline.setStatus('mandatory') sensorDryContactPort7GoOnline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 2, 3, 1, 106), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("goOnline", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorDryContactPort7GoOnline.setStatus('mandatory') sensorDryContactPort8GoOnline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 2, 3, 1, 107), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("goOnline", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorDryContactPort8GoOnline.setStatus('mandatory') sensorDryContactPort9GoOnline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 2, 3, 1, 108), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("goOnline", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorDryContactPort9GoOnline.setStatus('mandatory') sensorDryContactPort10GoOnline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 2, 3, 1, 109), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("goOnline", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorDryContactPort10GoOnline.setStatus('mandatory') sensorDryContactPort11GoOnline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 2, 3, 1, 110), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("goOnline", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorDryContactPort11GoOnline.setStatus('mandatory') sensorDryContactPort12GoOnline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 2, 3, 1, 111), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("goOnline", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorDryContactPort12GoOnline.setStatus('mandatory') sensorDryContactPort13GoOnline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 2, 3, 1, 112), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("goOnline", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorDryContactPort13GoOnline.setStatus('mandatory') sensorDryContactPort14GoOnline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 2, 3, 1, 113), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("goOnline", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorDryContactPort14GoOnline.setStatus('mandatory') sensorDryContactPort15GoOnline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 2, 3, 1, 114), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("goOnline", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorDryContactPort15GoOnline.setStatus('mandatory') sensorDryContactPort16GoOnline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 2, 3, 1, 115), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("goOnline", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorDryContactPort16GoOnline.setStatus('mandatory') secSensor = MibIdentifier((1, 3, 6, 1, 4, 1, 3854, 2, 3)) sensorTable = MibTable((1, 3, 6, 1, 4, 1, 3854, 2, 3, 1), ) if mibBuilder.loadTexts: sensorTable.setStatus('mandatory') sensorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3854, 2, 3, 1, 1), ).setIndexNames((0, "SPAGENT-MIB", "sensorIndex")) if mibBuilder.loadTexts: sensorEntry.setStatus('mandatory') sensorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 1, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorIndex.setStatus('mandatory') sensorDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 1, 1, 2), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorDescription.setStatus('mandatory') sensorType = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 128, 129, 130, 131, 132, 133, 224, 255))).clone(namedValues=NamedValues(("temperature", 1), ("humidity", 2), ("temperature2", 3), ("four-20mA", 4), ("dcvoltage", 5), ("airflow", 6), ("io", 7), ("drycontact", 8), ("motion", 9), ("water", 10), ("security", 11), ("siren", 12), ("relay", 13), ("acvoltage", 14), ("vrms", 15), ("irms", 16), ("watt", 17), ("watthour", 18), ("xrelay", 19), ("thermocouple", 20), ("smoke", 21), ("drycontact-array", 22), ("temperature-array", 23), ("thermostat", 128), ("virtual", 129), ("sound", 130), ("softmotion", 131), ("camera-dummy", 132), ("board-state", 133), ("nosignal", 224), ("test", 255)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorType.setStatus('mandatory') sensorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 1, 1, 4), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorValue.setStatus('mandatory') sensorUnit = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 1, 1, 5), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorUnit.setStatus('mandatory') sensorStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("noStatus", 1), ("normal", 2), ("highWarning", 3), ("highCritical", 4), ("lowWarning", 5), ("lowCritical", 6), ("sensorError", 7)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorStatus.setStatus('mandatory') sensorGoOffline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 1, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("online", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorGoOffline.setStatus('mandatory') sensorPort = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 1, 1, 35), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorPort.setStatus('mandatory') sensorSubPort = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 1, 1, 36), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorSubPort.setStatus('mandatory') sensorDeviceIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 1, 1, 37), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorDeviceIndex.setStatus('mandatory') sensorDisplayStyle = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 1, 1, 45), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("basic", 0), ("gauge", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorDisplayStyle.setStatus('mandatory') sensorHighCriticalDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 1, 1, 46), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorHighCriticalDescription.setStatus('mandatory') sensorLowCriticalDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 1, 1, 47), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorLowCriticalDescription.setStatus('mandatory') sensorNormalDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 1, 1, 48), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorNormalDescription.setStatus('mandatory') sensorLowWarningDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 1, 1, 49), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorLowWarningDescription.setStatus('mandatory') sensorHighWarningDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 1, 1, 50), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorHighWarningDescription.setStatus('mandatory') sensorErrorDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 1, 1, 51), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorErrorDescription.setStatus('mandatory') sensorOnDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 1, 1, 52), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorOnDescription.setStatus('mandatory') sensorOffDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 1, 1, 53), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorOffDescription.setStatus('mandatory') sensorHighCriticalColor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 1, 1, 54), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorHighCriticalColor.setStatus('mandatory') sensorLowCriticalColor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 1, 1, 55), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorLowCriticalColor.setStatus('mandatory') sensorNormalColor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 1, 1, 56), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorNormalColor.setStatus('mandatory') sensorLowWarningColor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 1, 1, 57), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorLowWarningColor.setStatus('mandatory') sensorHighWarningColor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 1, 1, 58), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorHighWarningColor.setStatus('mandatory') sensorErrorColor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 1, 1, 59), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorErrorColor.setStatus('mandatory') sensorOnColor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 1, 1, 60), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorOnColor.setStatus('mandatory') sensorOffColor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 1, 1, 61), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorOffColor.setStatus('mandatory') sensorTemperatureTable = MibTable((1, 3, 6, 1, 4, 1, 3854, 2, 3, 2), ) if mibBuilder.loadTexts: sensorTemperatureTable.setStatus('mandatory') sensorTemperatureEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3854, 2, 3, 2, 1), ).setIndexNames((0, "SPAGENT-MIB", "sensorTemperatureIndex")) if mibBuilder.loadTexts: sensorTemperatureEntry.setStatus('mandatory') sensorTemperatureIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorTemperatureIndex.setStatus('mandatory') sensorTemperatureDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 2, 1, 2), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorTemperatureDescription.setStatus('mandatory') sensorTemperatureType = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 2, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 3, 20))).clone(namedValues=NamedValues(("temperature", 1), ("dualsensor", 3), ("thermocouple", 20)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorTemperatureType.setStatus('mandatory') sensorTemperatureDegree = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 2, 1, 4), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorTemperatureDegree.setStatus('mandatory') sensorTemperatureUnit = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 2, 1, 5), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorTemperatureUnit.setStatus('mandatory') sensorTemperatureStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 2, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("noStatus", 1), ("normal", 2), ("highWarning", 3), ("highCritical", 4), ("lowWarning", 5), ("lowCritical", 6), ("sensorError", 7)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorTemperatureStatus.setStatus('mandatory') sensorTemperatureGoOffline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 2, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("online", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorTemperatureGoOffline.setStatus('mandatory') sensorTemperatureLowCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 2, 1, 9), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorTemperatureLowCritical.setStatus('mandatory') sensorTemperatureLowWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 2, 1, 10), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorTemperatureLowWarning.setStatus('mandatory') sensorTemperatureHighWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 2, 1, 11), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorTemperatureHighWarning.setStatus('mandatory') sensorTemperatureHighCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 2, 1, 12), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorTemperatureHighCritical.setStatus('mandatory') sensorTemperatureRearm = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 2, 1, 13), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorTemperatureRearm.setStatus('mandatory') sensorTemperatureDelayError = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 2, 1, 14), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorTemperatureDelayError.setStatus('mandatory') sensorTemperatureDelayNormal = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 2, 1, 15), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorTemperatureDelayNormal.setStatus('mandatory') sensorTemperatureDelayLowCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 2, 1, 16), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorTemperatureDelayLowCritical.setStatus('mandatory') sensorTemperatureDelayLowWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 2, 1, 17), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorTemperatureDelayLowWarning.setStatus('mandatory') sensorTemperatureDelayHighWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 2, 1, 18), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorTemperatureDelayHighWarning.setStatus('mandatory') sensorTemperatureDelayHighCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 2, 1, 19), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorTemperatureDelayHighCritical.setStatus('mandatory') sensorTemperatureRaw = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 2, 1, 20), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorTemperatureRaw.setStatus('mandatory') sensorTemperatureOffset = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 2, 1, 21), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorTemperatureOffset.setStatus('mandatory') sensorTemperaturePort = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 2, 1, 35), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorTemperaturePort.setStatus('mandatory') sensorTemperatureSubPort = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 2, 1, 36), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorTemperatureSubPort.setStatus('mandatory') sensorTemperatureDeviceIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 2, 1, 37), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorTemperatureDeviceIndex.setStatus('mandatory') sensorTemperatureDisplayStyle = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 2, 1, 45), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("basic", 0), ("gauge", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorTemperatureDisplayStyle.setStatus('mandatory') sensorTemperatureHighCriticalDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 2, 1, 46), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorTemperatureHighCriticalDesc.setStatus('mandatory') sensorTemperatureLowCriticalDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 2, 1, 47), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorTemperatureLowCriticalDesc.setStatus('mandatory') sensorTemperatureNormalDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 2, 1, 48), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorTemperatureNormalDesc.setStatus('mandatory') sensorTemperatureLowWarningDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 2, 1, 49), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorTemperatureLowWarningDesc.setStatus('mandatory') sensorTemperatureHighWarningDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 2, 1, 50), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorTemperatureHighWarningDesc.setStatus('mandatory') sensorTemperatureSensorErrorDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 2, 1, 51), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorTemperatureSensorErrorDesc.setStatus('mandatory') sensorTemperatureHighCriticalColor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 2, 1, 54), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorTemperatureHighCriticalColor.setStatus('mandatory') sensorTemperatureLowCriticalColor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 2, 1, 55), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorTemperatureLowCriticalColor.setStatus('mandatory') sensorTemperatureNormalColor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 2, 1, 56), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorTemperatureNormalColor.setStatus('mandatory') sensorTemperatureLowWarningColor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 2, 1, 57), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorTemperatureLowWarningColor.setStatus('mandatory') sensorTemperatureHighWarningColor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 2, 1, 58), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorTemperatureHighWarningColor.setStatus('mandatory') sensorTemperatureSensorErrorColor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 2, 1, 59), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorTemperatureSensorErrorColor.setStatus('mandatory') sensorHumidityTable = MibTable((1, 3, 6, 1, 4, 1, 3854, 2, 3, 3), ) if mibBuilder.loadTexts: sensorHumidityTable.setStatus('mandatory') sensorHumidityEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3854, 2, 3, 3, 1), ).setIndexNames((0, "SPAGENT-MIB", "sensorHumidityIndex")) if mibBuilder.loadTexts: sensorHumidityEntry.setStatus('mandatory') sensorHumidityIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 3, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorHumidityIndex.setStatus('mandatory') sensorHumidityDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 3, 1, 2), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorHumidityDescription.setStatus('mandatory') sensorHumidityPercent = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 3, 1, 4), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorHumidityPercent.setStatus('mandatory') sensorHumidityUnit = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 3, 1, 5), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorHumidityUnit.setStatus('mandatory') sensorHumidityStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 3, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("noStatus", 1), ("normal", 2), ("highWarning", 3), ("highCritical", 4), ("lowWarning", 5), ("lowCritical", 6), ("sensorError", 7)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorHumidityStatus.setStatus('mandatory') sensorHumidityGoOffline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 3, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("online", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorHumidityGoOffline.setStatus('mandatory') sensorHumidityLowCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 3, 1, 9), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorHumidityLowCritical.setStatus('mandatory') sensorHumidityLowWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 3, 1, 10), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorHumidityLowWarning.setStatus('mandatory') sensorHumidityHighWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 3, 1, 11), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorHumidityHighWarning.setStatus('mandatory') sensorHumidityHighCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 3, 1, 12), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorHumidityHighCritical.setStatus('mandatory') sensorHumidityRearm = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 3, 1, 13), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorHumidityRearm.setStatus('mandatory') sensorHumidityDelayError = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 3, 1, 14), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorHumidityDelayError.setStatus('mandatory') sensorHumidityDelayNormal = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 3, 1, 15), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorHumidityDelayNormal.setStatus('mandatory') sensorHumidityDelayLowCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 3, 1, 16), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorHumidityDelayLowCritical.setStatus('mandatory') sensorHumidityDelayLowWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 3, 1, 17), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorHumidityDelayLowWarning.setStatus('mandatory') sensorHumidityDelayHighWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 3, 1, 18), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorHumidityDelayHighWarning.setStatus('mandatory') sensorHumidityDelayHighCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 3, 1, 19), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorHumidityDelayHighCritical.setStatus('mandatory') sensorHumidityRaw = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 3, 1, 20), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorHumidityRaw.setStatus('mandatory') sensorHumidityOffset = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 3, 1, 21), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorHumidityOffset.setStatus('mandatory') sensorHumidityPort = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 3, 1, 35), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorHumidityPort.setStatus('mandatory') sensorHumiditySubPort = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 3, 1, 36), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorHumiditySubPort.setStatus('mandatory') sensorHumidityDeviceIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 3, 1, 37), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorHumidityDeviceIndex.setStatus('mandatory') sensorHumidityDisplayStyle = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 3, 1, 45), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("basic", 0), ("gauge", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorHumidityDisplayStyle.setStatus('mandatory') sensorHumidityHighCriticalDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 3, 1, 46), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorHumidityHighCriticalDesc.setStatus('mandatory') sensorHumidityLowCriticalDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 3, 1, 47), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorHumidityLowCriticalDesc.setStatus('mandatory') sensorHumidityNormalDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 3, 1, 48), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorHumidityNormalDesc.setStatus('mandatory') sensorHumidityLowWarningDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 3, 1, 49), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorHumidityLowWarningDesc.setStatus('mandatory') sensorHumidityHighWarningDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 3, 1, 50), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorHumidityHighWarningDesc.setStatus('mandatory') sensorHumiditySensorErrorDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 3, 1, 51), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorHumiditySensorErrorDesc.setStatus('mandatory') sensorHumidityHighCriticalColor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 3, 1, 54), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorHumidityHighCriticalColor.setStatus('mandatory') sensorHumidityLowCriticalColor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 3, 1, 55), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorHumidityLowCriticalColor.setStatus('mandatory') sensorHumidityNormalColor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 3, 1, 56), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorHumidityNormalColor.setStatus('mandatory') sensorHumidityLowWarningColor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 3, 1, 57), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorHumidityLowWarningColor.setStatus('mandatory') sensorHumidityHighWarningColor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 3, 1, 58), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorHumidityHighWarningColor.setStatus('mandatory') sensorHumiditySensorErrorColor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 3, 1, 59), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorHumiditySensorErrorColor.setStatus('mandatory') sensorDryContactTable = MibTable((1, 3, 6, 1, 4, 1, 3854, 2, 3, 4), ) if mibBuilder.loadTexts: sensorDryContactTable.setStatus('mandatory') sensorDryContactEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3854, 2, 3, 4, 1), ).setIndexNames((0, "SPAGENT-MIB", "sensorDryContactIndex")) if mibBuilder.loadTexts: sensorDryContactEntry.setStatus('mandatory') sensorDryContactIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 4, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorDryContactIndex.setStatus('mandatory') sensorDryContactDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 4, 1, 2), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorDryContactDescription.setStatus('mandatory') sensorDryContactType = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 4, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(7, 8, 22))).clone(namedValues=NamedValues(("drycontact-inout", 7), ("drycontact-input", 8), ("drycontact-array", 22)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorDryContactType.setStatus('mandatory') sensorDryContactStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 4, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 4, 6, 7, 8, 9))).clone(namedValues=NamedValues(("noStatus", 1), ("normal", 2), ("highCritical", 4), ("lowCritical", 6), ("sensorError", 7), ("outputLow", 8), ("outputHigh", 9)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorDryContactStatus.setStatus('mandatory') sensorDryContactGoOffline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 4, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("online", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorDryContactGoOffline.setStatus('mandatory') sensorDryContactDirection = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 4, 1, 22), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("input", 0), ("output", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorDryContactDirection.setStatus('mandatory') sensorDryContactNormalState = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 4, 1, 23), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("closed", 0), ("open", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorDryContactNormalState.setStatus('mandatory') sensorDryContactControlMode = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 4, 1, 24), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("manual-control", 0), ("sensor-control", 1), ("time-control", 2), ("thermostat-control", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorDryContactControlMode.setStatus('mandatory') sensorDryContactOutputManualCycleTime = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 4, 1, 25), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorDryContactOutputManualCycleTime.setStatus('mandatory') sensorDryContactOutputManualAction = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 4, 1, 26), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("low", 0), ("high", 1), ("cycle-Low-High-Low", 2), ("cycle-High-Low-High", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorDryContactOutputManualAction.setStatus('mandatory') sensorDryContactPort = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 4, 1, 35), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorDryContactPort.setStatus('mandatory') sensorDryContactSubPort = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 4, 1, 36), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorDryContactSubPort.setStatus('mandatory') sensorDryContactDeviceIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 4, 1, 37), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorDryContactDeviceIndex.setStatus('mandatory') sensorDryContactCriticalDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 4, 1, 46), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorDryContactCriticalDesc.setStatus('mandatory') sensorDryContactNormalDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 4, 1, 48), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorDryContactNormalDesc.setStatus('mandatory') sensorDryContactOnDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 4, 1, 52), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorDryContactOnDesc.setStatus('mandatory') sensorDryContactOffDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 4, 1, 53), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorDryContactOffDesc.setStatus('mandatory') sensorDryContactCriticalColor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 4, 1, 54), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorDryContactCriticalColor.setStatus('mandatory') sensorDryContactNormalColor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 4, 1, 56), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorDryContactNormalColor.setStatus('mandatory') sensorDryContactOnColor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 4, 1, 60), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorDryContactOnColor.setStatus('mandatory') sensorDryContactOffColor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 4, 1, 61), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorDryContactOffColor.setStatus('mandatory') sensor4to20mATable = MibTable((1, 3, 6, 1, 4, 1, 3854, 2, 3, 5), ) if mibBuilder.loadTexts: sensor4to20mATable.setStatus('mandatory') sensor4to20mAEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3854, 2, 3, 5, 1), ).setIndexNames((0, "SPAGENT-MIB", "sensor4to20mAIndex")) if mibBuilder.loadTexts: sensor4to20mAEntry.setStatus('mandatory') sensor4to20mAIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 5, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensor4to20mAIndex.setStatus('mandatory') sensor4to20mADescription = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 5, 1, 2), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensor4to20mADescription.setStatus('mandatory') sensor4to20mAValue = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 5, 1, 4), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensor4to20mAValue.setStatus('mandatory') sensor4to20mAUnit = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 5, 1, 5), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensor4to20mAUnit.setStatus('mandatory') sensor4to20mAStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 5, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("noStatus", 1), ("normal", 2), ("highWarning", 3), ("highCritical", 4), ("lowWarning", 5), ("lowCritical", 6), ("sensorError", 7)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensor4to20mAStatus.setStatus('mandatory') sensor4to20mAGoOffline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 5, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("online", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensor4to20mAGoOffline.setStatus('mandatory') sensor4to20mALowCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 5, 1, 9), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensor4to20mALowCritical.setStatus('mandatory') sensor4to20mALowWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 5, 1, 10), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensor4to20mALowWarning.setStatus('mandatory') sensor4to20mAHighWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 5, 1, 11), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensor4to20mAHighWarning.setStatus('mandatory') sensor4to20mAHighCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 5, 1, 12), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensor4to20mAHighCritical.setStatus('mandatory') sensor4to20mARearm = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 5, 1, 13), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensor4to20mARearm.setStatus('mandatory') sensor4to20mADelayError = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 5, 1, 14), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensor4to20mADelayError.setStatus('mandatory') sensor4to20mADelayNormal = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 5, 1, 15), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensor4to20mADelayNormal.setStatus('mandatory') sensor4to20mADelayLowCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 5, 1, 16), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensor4to20mADelayLowCritical.setStatus('mandatory') sensor4to20mADelayLowWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 5, 1, 17), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensor4to20mADelayLowWarning.setStatus('mandatory') sensor4to20mADelayHighWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 5, 1, 18), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensor4to20mADelayHighWarning.setStatus('mandatory') sensor4to20mADelayHighCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 5, 1, 19), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensor4to20mADelayHighCritical.setStatus('mandatory') sensor4to20mARaw = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 5, 1, 20), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensor4to20mARaw.setStatus('mandatory') sensor4to20mAOffset = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 5, 1, 21), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensor4to20mAOffset.setStatus('mandatory') sensor4to20mAAmountMaxVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 5, 1, 33), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensor4to20mAAmountMaxVoltage.setStatus('mandatory') sensor4to20mAAmountBaseVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 5, 1, 34), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensor4to20mAAmountBaseVoltage.setStatus('mandatory') sensor4to20mAPort = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 5, 1, 35), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensor4to20mAPort.setStatus('mandatory') sensor4to20mASubPort = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 5, 1, 36), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensor4to20mASubPort.setStatus('mandatory') sensor4to20mADeviceIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 5, 1, 37), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensor4to20mADeviceIndex.setStatus('mandatory') sensor4to20mAMaxVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 5, 1, 43), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensor4to20mAMaxVoltage.setStatus('mandatory') sensor4to20mABaseVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 5, 1, 44), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensor4to20mABaseVoltage.setStatus('mandatory') sensor4to20mADisplayStyle = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 5, 1, 45), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("basic", 0), ("gauge", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensor4to20mADisplayStyle.setStatus('mandatory') sensor4to20mAHighCriticalDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 5, 1, 46), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensor4to20mAHighCriticalDesc.setStatus('mandatory') sensor4to20mALowCriticalDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 5, 1, 47), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensor4to20mALowCriticalDesc.setStatus('mandatory') sensor4to20mANormalDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 5, 1, 48), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensor4to20mANormalDesc.setStatus('mandatory') sensor4to20mALowWarningDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 5, 1, 49), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensor4to20mALowWarningDesc.setStatus('mandatory') sensor4to20mAHighWarningDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 5, 1, 50), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensor4to20mAHighWarningDesc.setStatus('mandatory') sensor4to20mASensorErrorDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 5, 1, 51), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensor4to20mASensorErrorDesc.setStatus('mandatory') sensor4to20mAHighCriticalColor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 5, 1, 54), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensor4to20mAHighCriticalColor.setStatus('mandatory') sensor4to20mALowCriticalColor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 5, 1, 55), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensor4to20mALowCriticalColor.setStatus('mandatory') sensor4to20mANormalColor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 5, 1, 56), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensor4to20mANormalColor.setStatus('mandatory') sensor4to20mALowWarningColor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 5, 1, 57), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensor4to20mALowWarningColor.setStatus('mandatory') sensor4to20mAHighWarningColor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 5, 1, 58), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensor4to20mAHighWarningColor.setStatus('mandatory') sensor4to20mASensorErrorColor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 5, 1, 59), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensor4to20mASensorErrorColor.setStatus('mandatory') sensorDCvoltageTable = MibTable((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6), ) if mibBuilder.loadTexts: sensorDCvoltageTable.setStatus('mandatory') sensorDCvoltageEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6, 1), ).setIndexNames((0, "SPAGENT-MIB", "sensorDCvoltageIndex")) if mibBuilder.loadTexts: sensorDCvoltageEntry.setStatus('mandatory') sensorDCvoltageIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorDCvoltageIndex.setStatus('mandatory') sensorDCvoltageDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6, 1, 2), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorDCvoltageDescription.setStatus('mandatory') sensorDCvoltageValue = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6, 1, 4), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorDCvoltageValue.setStatus('mandatory') sensorDCvoltageUnit = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6, 1, 5), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorDCvoltageUnit.setStatus('mandatory') sensorDCvoltageStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("noStatus", 1), ("normal", 2), ("highWarning", 3), ("highCritical", 4), ("lowWarning", 5), ("lowCritical", 6), ("sensorError", 7)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorDCvoltageStatus.setStatus('mandatory') sensorDCvoltageGoOffline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("online", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorDCvoltageGoOffline.setStatus('mandatory') sensorDCvoltageLowCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6, 1, 9), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorDCvoltageLowCritical.setStatus('mandatory') sensorDCvoltageLowWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6, 1, 10), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorDCvoltageLowWarning.setStatus('mandatory') sensorDCvoltageHighWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6, 1, 11), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorDCvoltageHighWarning.setStatus('mandatory') sensorDCvoltageHighCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6, 1, 12), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorDCvoltageHighCritical.setStatus('mandatory') sensorDCvoltageRearm = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6, 1, 13), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorDCvoltageRearm.setStatus('mandatory') sensorDCvoltageDelayError = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6, 1, 14), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorDCvoltageDelayError.setStatus('mandatory') sensorDCvoltageDelayNormal = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6, 1, 15), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorDCvoltageDelayNormal.setStatus('mandatory') sensorDCvoltageDelayLowCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6, 1, 16), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorDCvoltageDelayLowCritical.setStatus('mandatory') sensorDCvoltageDelayLowWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6, 1, 17), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorDCvoltageDelayLowWarning.setStatus('mandatory') sensorDCvoltageDelayHighWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6, 1, 18), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorDCvoltageDelayHighWarning.setStatus('mandatory') sensorDCvoltageDelayHighCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6, 1, 19), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorDCvoltageDelayHighCritical.setStatus('mandatory') sensorDCvoltageRaw = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6, 1, 20), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorDCvoltageRaw.setStatus('mandatory') sensorDCvoltageOffset = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6, 1, 21), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorDCvoltageOffset.setStatus('mandatory') sensorDCvoltageJumper = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6, 1, 32), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(-600, -400, -300, -200, -100, 100, 200, 300, 400, 600))).clone(namedValues=NamedValues(("jumperAt-60", -600), ("jumperAt-40", -400), ("jumperAt-30", -300), ("jumperAt-20", -200), ("jumperAt-10", -100), ("jumperAt10", 100), ("jumperAt20", 200), ("jumperAt30", 300), ("jumperAt40", 400), ("jumperAt60", 600)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorDCvoltageJumper.setStatus('mandatory') sensorDCvoltageAmountMaxVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6, 1, 33), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorDCvoltageAmountMaxVoltage.setStatus('mandatory') sensorDCvoltageAmountBaseVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6, 1, 34), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorDCvoltageAmountBaseVoltage.setStatus('mandatory') sensorDCvoltagePort = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6, 1, 35), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorDCvoltagePort.setStatus('mandatory') sensorDCvoltageSubPort = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6, 1, 36), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorDCvoltageSubPort.setStatus('mandatory') sensorDCvoltageDeviceIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6, 1, 37), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorDCvoltageDeviceIndex.setStatus('mandatory') sensorDCvoltageMaxVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6, 1, 43), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorDCvoltageMaxVoltage.setStatus('mandatory') sensorDCvoltageBaseVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6, 1, 44), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorDCvoltageBaseVoltage.setStatus('mandatory') sensorDCvoltageDisplayStyle = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6, 1, 45), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("basic", 0), ("gauge", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorDCvoltageDisplayStyle.setStatus('mandatory') sensorDCvoltageHighCriticalDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6, 1, 46), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorDCvoltageHighCriticalDesc.setStatus('mandatory') sensorDCvoltageLowCriticalDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6, 1, 47), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorDCvoltageLowCriticalDesc.setStatus('mandatory') sensorDCvoltageNormalDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6, 1, 48), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorDCvoltageNormalDesc.setStatus('mandatory') sensorDCvoltageLowWarningDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6, 1, 49), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorDCvoltageLowWarningDesc.setStatus('mandatory') sensorDCvoltageHighWarningDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6, 1, 50), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorDCvoltageHighWarningDesc.setStatus('mandatory') sensorDCvoltageSensorErrorDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6, 1, 51), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorDCvoltageSensorErrorDesc.setStatus('mandatory') sensorDCvoltageHighCriticalColor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6, 1, 54), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorDCvoltageHighCriticalColor.setStatus('mandatory') sensorDCvoltageLowCriticalColor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6, 1, 55), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorDCvoltageLowCriticalColor.setStatus('mandatory') sensorDCvoltageNormalColor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6, 1, 56), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorDCvoltageNormalColor.setStatus('mandatory') sensorDCvoltageLowWarningColor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6, 1, 57), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorDCvoltageLowWarningColor.setStatus('mandatory') sensorDCvoltageHighWarningColor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6, 1, 58), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorDCvoltageHighWarningColor.setStatus('mandatory') sensorDCvoltageSensorErrorColor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6, 1, 59), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorDCvoltageSensorErrorColor.setStatus('mandatory') sensorAirflowTable = MibTable((1, 3, 6, 1, 4, 1, 3854, 2, 3, 7), ) if mibBuilder.loadTexts: sensorAirflowTable.setStatus('mandatory') sensorAirflowEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3854, 2, 3, 7, 1), ).setIndexNames((0, "SPAGENT-MIB", "sensorAirflowIndex")) if mibBuilder.loadTexts: sensorAirflowEntry.setStatus('mandatory') sensorAirflowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 7, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorAirflowIndex.setStatus('mandatory') sensorAirflowDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 7, 1, 2), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorAirflowDescription.setStatus('mandatory') sensorAirflowValue = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 7, 1, 4), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorAirflowValue.setStatus('mandatory') sensorAirflowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 7, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 4, 6, 7, 8, 9))).clone(namedValues=NamedValues(("noStatus", 1), ("normal", 2), ("highCritical", 4), ("lowCritical", 6), ("sensorError", 7), ("relayOn", 8), ("relayOff", 9)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorAirflowStatus.setStatus('mandatory') sensorAirflowGoOffline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 7, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("online", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorAirflowGoOffline.setStatus('mandatory') sensorAirflowLowCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 7, 1, 9), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorAirflowLowCritical.setStatus('mandatory') sensorAirflowLowWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 7, 1, 10), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorAirflowLowWarning.setStatus('mandatory') sensorAirflowHighWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 7, 1, 11), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorAirflowHighWarning.setStatus('mandatory') sensorAirflowHighCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 7, 1, 12), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorAirflowHighCritical.setStatus('mandatory') sensorAirflowRearm = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 7, 1, 13), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorAirflowRearm.setStatus('mandatory') sensorAirflowDelayError = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 7, 1, 14), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorAirflowDelayError.setStatus('mandatory') sensorAirflowDelayNormal = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 7, 1, 15), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorAirflowDelayNormal.setStatus('mandatory') sensorAirflowDelayLowCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 7, 1, 16), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorAirflowDelayLowCritical.setStatus('mandatory') sensorAirflowDelayLowWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 7, 1, 17), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorAirflowDelayLowWarning.setStatus('mandatory') sensorAirflowDelayHighWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 7, 1, 18), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorAirflowDelayHighWarning.setStatus('mandatory') sensorAirflowDelayHighCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 7, 1, 19), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorAirflowDelayHighCritical.setStatus('mandatory') sensorAirflowRaw = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 7, 1, 20), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorAirflowRaw.setStatus('mandatory') sensorAirflowPort = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 7, 1, 35), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorAirflowPort.setStatus('mandatory') sensorAirflowSubPort = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 7, 1, 36), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorAirflowSubPort.setStatus('mandatory') sensorAirflowDeviceIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 7, 1, 37), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorAirflowDeviceIndex.setStatus('mandatory') sensorAirflowDisplayStyle = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 7, 1, 45), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("basic", 0), ("gauge", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorAirflowDisplayStyle.setStatus('mandatory') sensorAirflowHighCriticalDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 7, 1, 46), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorAirflowHighCriticalDesc.setStatus('mandatory') sensorAirflowLowCriticalDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 7, 1, 47), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorAirflowLowCriticalDesc.setStatus('mandatory') sensorAirflowNormalDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 7, 1, 48), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorAirflowNormalDesc.setStatus('mandatory') sensorAirflowLowWarningDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 7, 1, 49), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorAirflowLowWarningDesc.setStatus('mandatory') sensorAirflowHighWarningDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 7, 1, 50), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorAirflowHighWarningDesc.setStatus('mandatory') sensorAirflowSensorErrorDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 7, 1, 51), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorAirflowSensorErrorDesc.setStatus('mandatory') sensorAirflowHighCriticalColor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 7, 1, 54), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorAirflowHighCriticalColor.setStatus('mandatory') sensorAirflowLowCriticalColor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 7, 1, 55), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorAirflowLowCriticalColor.setStatus('mandatory') sensorAirflowNormalColor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 7, 1, 56), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorAirflowNormalColor.setStatus('mandatory') sensorAirflowLowWarningColor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 7, 1, 57), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorAirflowLowWarningColor.setStatus('mandatory') sensorAirflowHighWarningColor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 7, 1, 58), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorAirflowHighWarningColor.setStatus('mandatory') sensorAirflowSensorErrorColor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 7, 1, 59), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorAirflowSensorErrorColor.setStatus('mandatory') sensorMotionTable = MibTable((1, 3, 6, 1, 4, 1, 3854, 2, 3, 8), ) if mibBuilder.loadTexts: sensorMotionTable.setStatus('mandatory') sensorMotionEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3854, 2, 3, 8, 1), ).setIndexNames((0, "SPAGENT-MIB", "sensorMotionIndex")) if mibBuilder.loadTexts: sensorMotionEntry.setStatus('mandatory') sensorMotionIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 8, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorMotionIndex.setStatus('mandatory') sensorMotionDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 8, 1, 2), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorMotionDescription.setStatus('mandatory') sensorMotionStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 8, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 4, 6, 7, 8, 9))).clone(namedValues=NamedValues(("noStatus", 1), ("normal", 2), ("highCritical", 4), ("lowCritical", 6), ("sensorError", 7), ("relayOn", 8), ("relayOff", 9)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorMotionStatus.setStatus('mandatory') sensorMotionGoOffline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 8, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("online", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorMotionGoOffline.setStatus('mandatory') sensorMotionPort = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 8, 1, 35), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorMotionPort.setStatus('mandatory') sensorMotionSubPort = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 8, 1, 36), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorMotionSubPort.setStatus('mandatory') sensorMotionDeviceIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 8, 1, 37), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorMotionDeviceIndex.setStatus('mandatory') sensorMotionCriticalDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 8, 1, 46), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorMotionCriticalDesc.setStatus('mandatory') sensorMotionNormalDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 8, 1, 48), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorMotionNormalDesc.setStatus('mandatory') sensorMotionCriticalColor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 8, 1, 54), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorMotionCriticalColor.setStatus('mandatory') sensorMotionNormalColor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 8, 1, 56), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorMotionNormalColor.setStatus('mandatory') sensorWaterTable = MibTable((1, 3, 6, 1, 4, 1, 3854, 2, 3, 9), ) if mibBuilder.loadTexts: sensorWaterTable.setStatus('mandatory') sensorWaterEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3854, 2, 3, 9, 1), ).setIndexNames((0, "SPAGENT-MIB", "sensorWaterIndex")) if mibBuilder.loadTexts: sensorWaterEntry.setStatus('mandatory') sensorWaterIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 9, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorWaterIndex.setStatus('mandatory') sensorWaterDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 9, 1, 2), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorWaterDescription.setStatus('mandatory') sensorWaterStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 9, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 4, 6, 7, 8, 9))).clone(namedValues=NamedValues(("noStatus", 1), ("normal", 2), ("highCritical", 4), ("lowCritical", 6), ("sensorError", 7), ("relayOn", 8), ("relayOff", 9)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorWaterStatus.setStatus('mandatory') sensorWaterGoOffline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 9, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("online", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorWaterGoOffline.setStatus('mandatory') sensorWaterPort = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 9, 1, 35), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorWaterPort.setStatus('mandatory') sensorWaterSubPort = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 9, 1, 36), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorWaterSubPort.setStatus('mandatory') sensorWaterDeviceIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 9, 1, 37), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorWaterDeviceIndex.setStatus('mandatory') sensorWaterCriticalDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 9, 1, 46), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorWaterCriticalDesc.setStatus('mandatory') sensorWaterNormalDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 9, 1, 48), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorWaterNormalDesc.setStatus('mandatory') sensorWaterCriticalColor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 9, 1, 54), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorWaterCriticalColor.setStatus('mandatory') sensorWaterNormalColor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 9, 1, 56), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorWaterNormalColor.setStatus('mandatory') sensorSecurityTable = MibTable((1, 3, 6, 1, 4, 1, 3854, 2, 3, 10), ) if mibBuilder.loadTexts: sensorSecurityTable.setStatus('mandatory') sensorSecurityEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3854, 2, 3, 10, 1), ).setIndexNames((0, "SPAGENT-MIB", "sensorSecurityIndex")) if mibBuilder.loadTexts: sensorSecurityEntry.setStatus('mandatory') sensorSecurityIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 10, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorSecurityIndex.setStatus('mandatory') sensorSecurityDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 10, 1, 2), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorSecurityDescription.setStatus('mandatory') sensorSecurityStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 10, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 4, 6, 7, 8, 9))).clone(namedValues=NamedValues(("noStatus", 1), ("normal", 2), ("highCritical", 4), ("lowCritical", 6), ("sensorError", 7), ("relayOn", 8), ("relayOff", 9)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorSecurityStatus.setStatus('mandatory') sensorSecurityGoOffline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 10, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("online", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorSecurityGoOffline.setStatus('mandatory') sensorSecurityPort = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 10, 1, 35), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorSecurityPort.setStatus('mandatory') sensorSecuritySubPort = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 10, 1, 36), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorSecuritySubPort.setStatus('mandatory') sensorSecurityDeviceIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 10, 1, 37), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorSecurityDeviceIndex.setStatus('mandatory') sensorSecurityCriticalDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 10, 1, 46), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorSecurityCriticalDesc.setStatus('mandatory') sensorSecurityNormalDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 10, 1, 48), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorSecurityNormalDesc.setStatus('mandatory') sensorSecurityCriticalColor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 10, 1, 54), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorSecurityCriticalColor.setStatus('mandatory') sensorSecurityNormalColor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 10, 1, 56), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorSecurityNormalColor.setStatus('mandatory') sensorSirenTable = MibTable((1, 3, 6, 1, 4, 1, 3854, 2, 3, 11), ) if mibBuilder.loadTexts: sensorSirenTable.setStatus('mandatory') sensorSirenEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3854, 2, 3, 11, 1), ).setIndexNames((0, "SPAGENT-MIB", "sensorSirenIndex")) if mibBuilder.loadTexts: sensorSirenEntry.setStatus('mandatory') sensorSirenIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 11, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorSirenIndex.setStatus('mandatory') sensorSirenDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 11, 1, 2), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorSirenDescription.setStatus('mandatory') sensorSirenStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 11, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 4, 6, 7, 8, 9))).clone(namedValues=NamedValues(("noStatus", 1), ("normal", 2), ("highCritical", 4), ("lowCritical", 6), ("sensorError", 7), ("relayOn", 8), ("relayOff", 9)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorSirenStatus.setStatus('mandatory') sensorSirenGoOffline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 11, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("online", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorSirenGoOffline.setStatus('mandatory') sensorSirenControlMode = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 11, 1, 24), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("manual-control", 0), ("sensor-control", 1), ("time-control", 2), ("thermostat-control", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorSirenControlMode.setStatus('mandatory') sensorSirenManualCycleTime = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 11, 1, 25), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorSirenManualCycleTime.setStatus('mandatory') sensorSirenManualAction = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 11, 1, 26), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("turn-On", 0), ("turn-Off", 1), ("cycle-On-Off-On", 2), ("cycle-Off-On-Off", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorSirenManualAction.setStatus('mandatory') sensorSirenPort = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 11, 1, 35), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorSirenPort.setStatus('mandatory') sensorSirenSubPort = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 11, 1, 36), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorSirenSubPort.setStatus('mandatory') sensorSirenDeviceIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 11, 1, 37), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorSirenDeviceIndex.setStatus('mandatory') sensorSirenOnDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 11, 1, 52), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorSirenOnDesc.setStatus('mandatory') sensorSirenOffDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 11, 1, 53), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorSirenOffDesc.setStatus('mandatory') sensorSirenOnColor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 11, 1, 60), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorSirenOnColor.setStatus('mandatory') sensorSirenOffColor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 11, 1, 61), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorSirenOffColor.setStatus('mandatory') sensorRelayTable = MibTable((1, 3, 6, 1, 4, 1, 3854, 2, 3, 12), ) if mibBuilder.loadTexts: sensorRelayTable.setStatus('mandatory') sensorRelayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3854, 2, 3, 12, 1), ).setIndexNames((0, "SPAGENT-MIB", "sensorRelayIndex")) if mibBuilder.loadTexts: sensorRelayEntry.setStatus('mandatory') sensorRelayIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 12, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorRelayIndex.setStatus('mandatory') sensorRelayDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 12, 1, 2), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorRelayDescription.setStatus('mandatory') sensorRelayType = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 12, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(13, 19))).clone(namedValues=NamedValues(("relay", 13), ("xrelay", 19)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorRelayType.setStatus('mandatory') sensorRelayStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 12, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 4, 6, 7, 8, 9))).clone(namedValues=NamedValues(("noStatus", 1), ("normal", 2), ("highCritical", 4), ("lowCritical", 6), ("sensorError", 7), ("relayOn", 8), ("relayOff", 9)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorRelayStatus.setStatus('mandatory') sensorRelayGoOffline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 12, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("online", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorRelayGoOffline.setStatus('mandatory') sensorRelayControlMode = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 12, 1, 24), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("manual-control", 0), ("sensor-control", 1), ("time-control", 2), ("thermostat-control", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorRelayControlMode.setStatus('mandatory') sensorRelayManualCycleTime = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 12, 1, 25), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorRelayManualCycleTime.setStatus('mandatory') sensorRelayManualAction = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 12, 1, 26), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("turn-On", 0), ("turn-Off", 1), ("cycle-On-Off-On", 2), ("cycle-Off-On-Off", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorRelayManualAction.setStatus('mandatory') sensorRelayPort = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 12, 1, 35), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorRelayPort.setStatus('mandatory') sensorRelaySubPort = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 12, 1, 36), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorRelaySubPort.setStatus('mandatory') sensorRelayDeviceIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 12, 1, 37), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorRelayDeviceIndex.setStatus('mandatory') sensorRelayOnDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 12, 1, 52), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorRelayOnDesc.setStatus('mandatory') sensorRelayOffDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 12, 1, 53), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorRelayOffDesc.setStatus('mandatory') sensorRelayOnColor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 12, 1, 60), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorRelayOnColor.setStatus('mandatory') sensorRelayOffColor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 12, 1, 61), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorRelayOffColor.setStatus('mandatory') sensorACvoltageTable = MibTable((1, 3, 6, 1, 4, 1, 3854, 2, 3, 13), ) if mibBuilder.loadTexts: sensorACvoltageTable.setStatus('mandatory') sensorACvoltageEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3854, 2, 3, 13, 1), ).setIndexNames((0, "SPAGENT-MIB", "sensorACvoltageIndex")) if mibBuilder.loadTexts: sensorACvoltageEntry.setStatus('mandatory') sensorACvoltageIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 13, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorACvoltageIndex.setStatus('mandatory') sensorACvoltageDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 13, 1, 2), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorACvoltageDescription.setStatus('mandatory') sensorACvoltageStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 13, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 4, 6, 7, 8, 9))).clone(namedValues=NamedValues(("noStatus", 1), ("normal", 2), ("highCritical", 4), ("lowCritical", 6), ("sensorError", 7), ("relayOn", 8), ("relayOff", 9)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorACvoltageStatus.setStatus('mandatory') sensorACvoltageGoOffline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 13, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("online", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorACvoltageGoOffline.setStatus('mandatory') sensorACvoltagePort = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 13, 1, 35), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorACvoltagePort.setStatus('mandatory') sensorACvoltageSubPort = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 13, 1, 36), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorACvoltageSubPort.setStatus('mandatory') sensorACvoltageDeviceIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 13, 1, 37), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorACvoltageDeviceIndex.setStatus('mandatory') sensorACvoltageCriticalDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 13, 1, 46), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorACvoltageCriticalDesc.setStatus('mandatory') sensorACvoltageNormalDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 13, 1, 48), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorACvoltageNormalDesc.setStatus('mandatory') sensorACvoltageCriticalColor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 13, 1, 54), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorACvoltageCriticalColor.setStatus('mandatory') sensorACvoltageNormalColor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 13, 1, 56), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorACvoltageNormalColor.setStatus('mandatory') sensorSmokeTable = MibTable((1, 3, 6, 1, 4, 1, 3854, 2, 3, 14), ) if mibBuilder.loadTexts: sensorSmokeTable.setStatus('mandatory') sensorSmokeEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3854, 2, 3, 14, 1), ).setIndexNames((0, "SPAGENT-MIB", "sensorSmokeIndex")) if mibBuilder.loadTexts: sensorSmokeEntry.setStatus('mandatory') sensorSmokeIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 14, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorSmokeIndex.setStatus('mandatory') sensorSmokeDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 14, 1, 2), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorSmokeDescription.setStatus('mandatory') sensorSmokeStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 14, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 4, 6, 7, 8, 9))).clone(namedValues=NamedValues(("noStatus", 1), ("normal", 2), ("highCritical", 4), ("lowCritical", 6), ("sensorError", 7), ("relayOn", 8), ("relayOff", 9)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorSmokeStatus.setStatus('mandatory') sensorSmokeGoOffline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 14, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("online", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorSmokeGoOffline.setStatus('mandatory') sensorSmokePort = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 14, 1, 35), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorSmokePort.setStatus('mandatory') sensorSmokeSubPort = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 14, 1, 36), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorSmokeSubPort.setStatus('mandatory') sensorSmokeDeviceIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 14, 1, 37), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorSmokeDeviceIndex.setStatus('mandatory') sensorSmokeCriticalDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 14, 1, 46), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorSmokeCriticalDesc.setStatus('mandatory') sensorSmokeNormalDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 14, 1, 48), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorSmokeNormalDesc.setStatus('mandatory') sensorSmokeCriticalColor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 14, 1, 54), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorSmokeCriticalColor.setStatus('mandatory') sensorSmokeNormalColor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 14, 1, 56), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorSmokeNormalColor.setStatus('mandatory') sensorThermostatTable = MibTable((1, 3, 6, 1, 4, 1, 3854, 2, 3, 20), ) if mibBuilder.loadTexts: sensorThermostatTable.setStatus('mandatory') sensorThermostatEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3854, 2, 3, 20, 1), ).setIndexNames((0, "SPAGENT-MIB", "sensorThermostatIndex")) if mibBuilder.loadTexts: sensorThermostatEntry.setStatus('mandatory') sensorThermostatIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 20, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorThermostatIndex.setStatus('mandatory') sensorThermostatDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 20, 1, 2), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorThermostatDescription.setStatus('mandatory') sensorThermostatDegree = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 20, 1, 4), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorThermostatDegree.setStatus('mandatory') sensorThermostatStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 20, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("noStatus", 1), ("normal", 2), ("highWarning", 3), ("highCritical", 4), ("lowWarning", 5), ("lowCritical", 6), ("sensorError", 7)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorThermostatStatus.setStatus('mandatory') sensorThermostatGoOffline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 20, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("online", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorThermostatGoOffline.setStatus('mandatory') sensorThermostatLowCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 20, 1, 9), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorThermostatLowCritical.setStatus('mandatory') sensorThermostatLowWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 20, 1, 10), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorThermostatLowWarning.setStatus('mandatory') sensorThermostatHighWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 20, 1, 11), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorThermostatHighWarning.setStatus('mandatory') sensorThermostatHighCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 20, 1, 12), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorThermostatHighCritical.setStatus('mandatory') sensorThermostatRearm = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 20, 1, 13), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorThermostatRearm.setStatus('mandatory') sensorThermostatDelayError = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 20, 1, 14), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorThermostatDelayError.setStatus('mandatory') sensorThermostatDelayNormal = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 20, 1, 15), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorThermostatDelayNormal.setStatus('mandatory') sensorThermostatDelayLowCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 20, 1, 16), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorThermostatDelayLowCritical.setStatus('mandatory') sensorThermostatDelayLowWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 20, 1, 17), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorThermostatDelayLowWarning.setStatus('mandatory') sensorThermostatDelayHighWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 20, 1, 18), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorThermostatDelayHighWarning.setStatus('mandatory') sensorThermostatDelayHighCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 20, 1, 19), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorThermostatDelayHighCritical.setStatus('mandatory') sensorThermostatPort = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 20, 1, 35), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorThermostatPort.setStatus('mandatory') sensorThermostatSubPort = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 20, 1, 36), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorThermostatSubPort.setStatus('mandatory') sensorThermostatDeviceIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 20, 1, 37), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorThermostatDeviceIndex.setStatus('mandatory') sensorThermostatDisplayStyle = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 20, 1, 45), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("basic", 0), ("gauge", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorThermostatDisplayStyle.setStatus('mandatory') sensorThermostatHighCriticalDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 20, 1, 46), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorThermostatHighCriticalDesc.setStatus('mandatory') sensorThermostatLowCriticalDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 20, 1, 47), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorThermostatLowCriticalDesc.setStatus('mandatory') sensorThermostatNormalDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 20, 1, 48), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorThermostatNormalDesc.setStatus('mandatory') sensorThermostatLowWarningDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 20, 1, 49), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorThermostatLowWarningDesc.setStatus('mandatory') sensorThermostatHighWarningDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 20, 1, 50), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorThermostatHighWarningDesc.setStatus('mandatory') sensorThermostatSensorErrorDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 20, 1, 51), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorThermostatSensorErrorDesc.setStatus('mandatory') sensorThermostatHighCriticalColor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 20, 1, 54), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorThermostatHighCriticalColor.setStatus('mandatory') sensorThermostatLowCriticalColor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 20, 1, 55), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorThermostatLowCriticalColor.setStatus('mandatory') sensorThermostatNormalColor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 20, 1, 56), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorThermostatNormalColor.setStatus('mandatory') sensorThermostatLowWarningColor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 20, 1, 57), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorThermostatLowWarningColor.setStatus('mandatory') sensorThermostatHighWarningColor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 20, 1, 58), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorThermostatHighWarningColor.setStatus('mandatory') sensorThermostatSensorErrorColor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 20, 1, 59), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorThermostatSensorErrorColor.setStatus('mandatory') sensorWaterRopeTable = MibTable((1, 3, 6, 1, 4, 1, 3854, 2, 3, 21), ) if mibBuilder.loadTexts: sensorWaterRopeTable.setStatus('mandatory') sensorWaterRopeEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3854, 2, 3, 21, 1), ).setIndexNames((0, "SPAGENT-MIB", "sensorWaterRopeIndex")) if mibBuilder.loadTexts: sensorWaterRopeEntry.setStatus('mandatory') sensorWaterRopeIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 21, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorWaterRopeIndex.setStatus('mandatory') sensorWaterRopeDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 21, 1, 2), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorWaterRopeDescription.setStatus('mandatory') sensorWaterRopeLeakLocation = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 21, 1, 4), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorWaterRopeLeakLocation.setStatus('mandatory') sensorWaterRopeUnit = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 21, 1, 5), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorWaterRopeUnit.setStatus('mandatory') sensorWaterRopeStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 21, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 4, 7))).clone(namedValues=NamedValues(("noStatus", 1), ("normal", 2), ("highCritical", 4), ("sensorError", 7)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorWaterRopeStatus.setStatus('mandatory') sensorWaterRopeGoOffline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 21, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("online", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorWaterRopeGoOffline.setStatus('mandatory') sensorWaterRopeRaw = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 21, 1, 20), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorWaterRopeRaw.setStatus('mandatory') sensorWaterRopeDeviceIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 21, 1, 37), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorWaterRopeDeviceIndex.setStatus('mandatory') sensorWaterRopeCriticalDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 21, 1, 46), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorWaterRopeCriticalDesc.setStatus('mandatory') sensorWaterRopeNormalDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 21, 1, 48), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorWaterRopeNormalDesc.setStatus('mandatory') sensorWaterRopeSensorErrorDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 21, 1, 51), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorWaterRopeSensorErrorDesc.setStatus('mandatory') sensorWaterRopeCriticalColor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 21, 1, 54), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorWaterRopeCriticalColor.setStatus('mandatory') sensorWaterRopeNormalColor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 21, 1, 56), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorWaterRopeNormalColor.setStatus('mandatory') sensorWaterRopeSensorErrorColor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 21, 1, 59), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorWaterRopeSensorErrorColor.setStatus('mandatory') sensorWaterRopeLength = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 21, 1, 100), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorWaterRopeLength.setStatus('mandatory') sensorWaterRopeImpedance = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 21, 1, 101), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorWaterRopeImpedance.setStatus('mandatory') sensorWaterRopeType = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 21, 1, 103), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("custom", 0), ("water", 1), ("fuel", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorWaterRopeType.setStatus('mandatory') sensorPowerTable = MibTable((1, 3, 6, 1, 4, 1, 3854, 2, 3, 22), ) if mibBuilder.loadTexts: sensorPowerTable.setStatus('mandatory') sensorPowerEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3854, 2, 3, 22, 1), ).setIndexNames((0, "SPAGENT-MIB", "sensorPowerIndex")) if mibBuilder.loadTexts: sensorPowerEntry.setStatus('mandatory') sensorPowerIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 22, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorPowerIndex.setStatus('mandatory') sensorPowerDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 22, 1, 2), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorPowerDescription.setStatus('mandatory') sensorPowerValue = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 22, 1, 4), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorPowerValue.setStatus('mandatory') sensorPowerUnit = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 22, 1, 5), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorPowerUnit.setStatus('mandatory') sensorPowerStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 22, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 4, 6, 7))).clone(namedValues=NamedValues(("noStatus", 1), ("normal", 2), ("highCritical", 4), ("lowCritical", 6), ("sensorError", 7)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorPowerStatus.setStatus('mandatory') sensorPowerGoOffline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 22, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("online", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorPowerGoOffline.setStatus('mandatory') sensorPowerLowCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 22, 1, 9), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorPowerLowCritical.setStatus('mandatory') sensorPowerLowWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 22, 1, 10), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorPowerLowWarning.setStatus('mandatory') sensorPowerHighWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 22, 1, 11), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorPowerHighWarning.setStatus('mandatory') sensorPowerHighCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 22, 1, 12), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorPowerHighCritical.setStatus('mandatory') sensorPowerRearm = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 22, 1, 13), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorPowerRearm.setStatus('mandatory') sensorPowerDelayError = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 22, 1, 14), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorPowerDelayError.setStatus('mandatory') sensorPowerDelayNormal = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 22, 1, 15), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorPowerDelayNormal.setStatus('mandatory') sensorPowerDelayLowCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 22, 1, 16), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorPowerDelayLowCritical.setStatus('mandatory') sensorPowerDelayLowWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 22, 1, 17), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorPowerDelayLowWarning.setStatus('mandatory') sensorPowerDelayHighWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 22, 1, 18), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorPowerDelayHighWarning.setStatus('mandatory') sensorPowerDelayHighCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 22, 1, 19), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorPowerDelayHighCritical.setStatus('mandatory') sensorPowerPort = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 22, 1, 35), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorPowerPort.setStatus('mandatory') sensorPowerSubPort = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 22, 1, 36), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorPowerSubPort.setStatus('mandatory') sensorPowerDeviceIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 22, 1, 37), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorPowerDeviceIndex.setStatus('mandatory') sensorPowerTimeOut = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 22, 1, 38), Integer32().subtype(subtypeSpec=ValueRangeConstraint(5, 30))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorPowerTimeOut.setStatus('mandatory') sensorPowerInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 22, 1, 39), Integer32().subtype(subtypeSpec=ValueRangeConstraint(5, 720))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorPowerInterval.setStatus('mandatory') sensorPowerErrorRetryNum = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 22, 1, 40), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorPowerErrorRetryNum.setStatus('mandatory') sensorPowerMaxValue = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 22, 1, 41), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorPowerMaxValue.setStatus('mandatory') sensorPowerMinValue = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 22, 1, 42), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorPowerMinValue.setStatus('mandatory') sensorPowerDisplayStyle = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 22, 1, 45), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("basic", 0), ("gauge", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorPowerDisplayStyle.setStatus('mandatory') sensorPowerHighCriticalDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 22, 1, 46), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorPowerHighCriticalDesc.setStatus('mandatory') sensorPowerLowCriticalDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 22, 1, 47), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorPowerLowCriticalDesc.setStatus('mandatory') sensorPowerNormalDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 22, 1, 48), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorPowerNormalDesc.setStatus('mandatory') sensorPowerLowWarningDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 22, 1, 49), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorPowerLowWarningDesc.setStatus('mandatory') sensorPowerHighWarningDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 22, 1, 50), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorPowerHighWarningDesc.setStatus('mandatory') sensorPowerSensorErrorDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 22, 1, 51), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorPowerSensorErrorDesc.setStatus('mandatory') sensorPowerHighCriticalColor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 22, 1, 54), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorPowerHighCriticalColor.setStatus('mandatory') sensorPowerLowCriticalColor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 22, 1, 55), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorPowerLowCriticalColor.setStatus('mandatory') sensorPowerNormalColor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 22, 1, 56), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorPowerNormalColor.setStatus('mandatory') sensorPowerLowWarningColor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 22, 1, 57), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorPowerLowWarningColor.setStatus('mandatory') sensorPowerHighWarningColor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 22, 1, 58), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorPowerHighWarningColor.setStatus('mandatory') sensorPowerSensorErrorColor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 22, 1, 59), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorPowerSensorErrorColor.setStatus('mandatory') sensorFuelTable = MibTable((1, 3, 6, 1, 4, 1, 3854, 2, 3, 24), ) if mibBuilder.loadTexts: sensorFuelTable.setStatus('mandatory') sensorFuelEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3854, 2, 3, 24, 1), ).setIndexNames((0, "SPAGENT-MIB", "sensorFuelIndex")) if mibBuilder.loadTexts: sensorFuelEntry.setStatus('mandatory') sensorFuelIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 24, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorFuelIndex.setStatus('mandatory') sensorFuelDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 24, 1, 2), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorFuelDescription.setStatus('mandatory') sensorFuelValue = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 24, 1, 4), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorFuelValue.setStatus('mandatory') sensorFuelUnit = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 24, 1, 5), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorFuelUnit.setStatus('mandatory') sensorFuelStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 24, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("noStatus", 1), ("normal", 2), ("highWarning", 3), ("highCritical", 4), ("lowWarning", 5), ("lowCritical", 6), ("sensorError", 7)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorFuelStatus.setStatus('mandatory') sensorFuelGoOffline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 24, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("online", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorFuelGoOffline.setStatus('mandatory') sensorFuelLowCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 24, 1, 9), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorFuelLowCritical.setStatus('mandatory') sensorFuelLowWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 24, 1, 10), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorFuelLowWarning.setStatus('mandatory') sensorFuelHighWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 24, 1, 11), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorFuelHighWarning.setStatus('mandatory') sensorFuelHighCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 24, 1, 12), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorFuelHighCritical.setStatus('mandatory') sensorFuelRearm = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 24, 1, 13), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorFuelRearm.setStatus('mandatory') sensorFuelDelayError = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 24, 1, 14), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorFuelDelayError.setStatus('mandatory') sensorFuelDelayNormal = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 24, 1, 15), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorFuelDelayNormal.setStatus('mandatory') sensorFuelDelayLowCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 24, 1, 16), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorFuelDelayLowCritical.setStatus('mandatory') sensorFuelDelayLowWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 24, 1, 17), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorFuelDelayLowWarning.setStatus('mandatory') sensorFuelDelayHighWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 24, 1, 18), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorFuelDelayHighWarning.setStatus('mandatory') sensorFuelDelayHighCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 24, 1, 19), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorFuelDelayHighCritical.setStatus('mandatory') sensorFuelRaw = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 24, 1, 20), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorFuelRaw.setStatus('mandatory') sensorFuelAmountMaxValue = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 24, 1, 33), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorFuelAmountMaxValue.setStatus('mandatory') sensorFuelAmountBaseValue = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 24, 1, 34), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorFuelAmountBaseValue.setStatus('mandatory') sensorFuelDeviceIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 24, 1, 37), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorFuelDeviceIndex.setStatus('mandatory') sensorFuelDisplayStyle = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 24, 1, 45), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("basic", 0), ("gauge", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorFuelDisplayStyle.setStatus('mandatory') sensorFuelHighCriticalDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 24, 1, 46), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorFuelHighCriticalDesc.setStatus('mandatory') sensorFuelLowCriticalDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 24, 1, 47), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorFuelLowCriticalDesc.setStatus('mandatory') sensorFuelNormalDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 24, 1, 48), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorFuelNormalDesc.setStatus('mandatory') sensorFuelLowWarningDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 24, 1, 49), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorFuelLowWarningDesc.setStatus('mandatory') sensorFuelHighWarningDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 24, 1, 50), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorFuelHighWarningDesc.setStatus('mandatory') sensorFuelSensorErrorDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 24, 1, 51), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorFuelSensorErrorDesc.setStatus('mandatory') sensorFuelHighCriticalColor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 24, 1, 54), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorFuelHighCriticalColor.setStatus('mandatory') sensorFuelLowCriticalColor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 24, 1, 55), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorFuelLowCriticalColor.setStatus('mandatory') sensorFuelNormalColor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 24, 1, 56), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorFuelNormalColor.setStatus('mandatory') sensorFuelLowWarningColor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 24, 1, 57), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorFuelLowWarningColor.setStatus('mandatory') sensorFuelHighWarningColor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 24, 1, 58), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorFuelHighWarningColor.setStatus('mandatory') sensorFuelSensorErrorColor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 24, 1, 59), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorFuelSensorErrorColor.setStatus('mandatory') sensorTankSenderTable = MibTable((1, 3, 6, 1, 4, 1, 3854, 2, 3, 26), ) if mibBuilder.loadTexts: sensorTankSenderTable.setStatus('mandatory') sensorTankSenderEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3854, 2, 3, 26, 1), ).setIndexNames((0, "SPAGENT-MIB", "sensorTankSenderIndex")) if mibBuilder.loadTexts: sensorTankSenderEntry.setStatus('mandatory') sensorTankSenderIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 26, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorTankSenderIndex.setStatus('mandatory') sensorTankSenderDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 26, 1, 2), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorTankSenderDescription.setStatus('mandatory') sensorTankSenderValue = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 26, 1, 4), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorTankSenderValue.setStatus('mandatory') sensorTankSenderUnit = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 26, 1, 5), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorTankSenderUnit.setStatus('mandatory') sensorTankSenderStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 26, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("noStatus", 1), ("normal", 2), ("highWarning", 3), ("highCritical", 4), ("lowWarning", 5), ("lowCritical", 6), ("sensorError", 7)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorTankSenderStatus.setStatus('mandatory') sensorTankSenderGoOffline = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 26, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("online", 1), ("goOffline", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorTankSenderGoOffline.setStatus('mandatory') sensorTankSenderLowCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 26, 1, 9), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorTankSenderLowCritical.setStatus('mandatory') sensorTankSenderLowWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 26, 1, 10), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorTankSenderLowWarning.setStatus('mandatory') sensorTankSenderHighWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 26, 1, 11), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorTankSenderHighWarning.setStatus('mandatory') sensorTankSenderHighCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 26, 1, 12), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorTankSenderHighCritical.setStatus('mandatory') sensorTankSenderRearm = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 26, 1, 13), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorTankSenderRearm.setStatus('mandatory') sensorTankSenderDelayError = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 26, 1, 14), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorTankSenderDelayError.setStatus('mandatory') sensorTankSenderDelayNormal = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 26, 1, 15), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorTankSenderDelayNormal.setStatus('mandatory') sensorTankSenderDelayLowCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 26, 1, 16), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorTankSenderDelayLowCritical.setStatus('mandatory') sensorTankSenderDelayLowWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 26, 1, 17), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorTankSenderDelayLowWarning.setStatus('mandatory') sensorTankSenderDelayHighWarning = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 26, 1, 18), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorTankSenderDelayHighWarning.setStatus('mandatory') sensorTankSenderDelayHighCritical = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 26, 1, 19), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorTankSenderDelayHighCritical.setStatus('mandatory') sensorTankSenderRaw = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 26, 1, 20), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorTankSenderRaw.setStatus('mandatory') sensorTankSenderDeviceIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 26, 1, 37), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534))).setMaxAccess("readonly") if mibBuilder.loadTexts: sensorTankSenderDeviceIndex.setStatus('mandatory') sensorTankSenderDisplayStyle = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 26, 1, 45), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("basic", 0), ("gauge", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorTankSenderDisplayStyle.setStatus('mandatory') sensorTankSenderHighCriticalDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 26, 1, 46), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorTankSenderHighCriticalDesc.setStatus('mandatory') sensorTankSenderLowCriticalDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 26, 1, 47), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorTankSenderLowCriticalDesc.setStatus('mandatory') sensorTankSenderNormalDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 26, 1, 48), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorTankSenderNormalDesc.setStatus('mandatory') sensorTankSenderLowWarningDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 26, 1, 49), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorTankSenderLowWarningDesc.setStatus('mandatory') sensorTankSenderHighWarningDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 26, 1, 50), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorTankSenderHighWarningDesc.setStatus('mandatory') sensorTankSenderSensorErrorDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 26, 1, 51), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorTankSenderSensorErrorDesc.setStatus('mandatory') sensorTankSenderHighCriticalColor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 26, 1, 54), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorTankSenderHighCriticalColor.setStatus('mandatory') sensorTankSenderLowCriticalColor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 26, 1, 55), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorTankSenderLowCriticalColor.setStatus('mandatory') sensorTankSenderNormalColor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 26, 1, 56), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorTankSenderNormalColor.setStatus('mandatory') sensorTankSenderLowWarningColor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 26, 1, 57), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorTankSenderLowWarningColor.setStatus('mandatory') sensorTankSenderHighWarningColor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 26, 1, 58), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorTankSenderHighWarningColor.setStatus('mandatory') sensorTankSenderSensorErrorColor = MibTableColumn((1, 3, 6, 1, 4, 1, 3854, 2, 3, 26, 1, 59), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sensorTankSenderSensorErrorColor.setStatus('mandatory') sensorProbeTraps = MibIdentifier((1, 3, 6, 1, 4, 1, 3854, 1, 7)) spSensorStatus = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 7, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9))).clone(namedValues=NamedValues(("noStatus", 1), ("normal", 2), ("highWarning", 3), ("highCritical", 4), ("lowWarning", 5), ("lowCritical", 6), ("sensorError", 7), ("turnOn", 8), ("turnOff", 9)))).setMaxAccess("readonly") if mibBuilder.loadTexts: spSensorStatus.setStatus('mandatory') spSensorValue = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 7, 2), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: spSensorValue.setStatus('mandatory') spSensorLevelExceeded = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 7, 3), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: spSensorLevelExceeded.setStatus('mandatory') spSensorIndex = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 7, 4), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: spSensorIndex.setStatus('mandatory') spSensorName = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 7, 5), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: spSensorName.setStatus('mandatory') spSensorDescription = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 7, 6), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: spSensorDescription.setStatus('mandatory') spSensorProbeKeepAlive = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 7, 7), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: spSensorProbeKeepAlive.setStatus('mandatory') spSensorType = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 7, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 8, 9, 10, 12, 13, 14, 16, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 128, 129, 132, 134))).clone(namedValues=NamedValues(("temperature", 1), ("fourTo20mA", 2), ("humidity", 3), ("water", 4), ("atod", 5), ("security", 6), ("airflow", 8), ("siren", 9), ("dryContact", 10), ("voltage", 12), ("relay", 13), ("motion", 14), ("extradrycontact", 16), ("thermostat", 23), ("smoke", 24), ("power", 25), ("irms", 26), ("vrms", 27), ("watt", 28), ("relayarray", 29), ("virtual", 30), ("watthour", 32), ("temperaturearray", 33), ("waterrope", 34), ("fuellevel", 35), ("tanksender", 36), ("sound", 128), ("softwaremotion", 129), ("nosignal", 132), ("powermeter", 134)))).setMaxAccess("readonly") if mibBuilder.loadTexts: spSensorType.setStatus('mandatory') spSensorStatusName = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 7, 9), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: spSensorStatusName.setStatus('mandatory') spSensorSubIndex = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 7, 10), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: spSensorSubIndex.setStatus('mandatory') spBoardIndex = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 7, 11), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: spBoardIndex.setStatus('mandatory') spBoardDescription = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 7, 12), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: spBoardDescription.setStatus('mandatory') spEventTimeStamp = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 7, 13), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: spEventTimeStamp.setStatus('mandatory') spEventClassNumber = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 7, 14), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: spEventClassNumber.setStatus('mandatory') spEventClassName = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 7, 15), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: spEventClassName.setStatus('mandatory') spSensorDecimalValue = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 7, 16), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: spSensorDecimalValue.setStatus('mandatory') spSensorAliveHigh = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 7, 17), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: spSensorAliveHigh.setStatus('mandatory') spSensorAliveLow = MibScalar((1, 3, 6, 1, 4, 1, 3854, 1, 7, 18), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: spSensorAliveLow.setStatus('mandatory') spNormalStatus = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,1)) spWarningStatus = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,2)) spCriticalStatus = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,3)) spDownStatus = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,4)) spKeepAliveTrap = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,5)) spUnknownStatus = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,7)) spTemperatureStatus = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,10)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spTemperatureArray1Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,11)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spTemperatureArray2Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,12)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spTemperatureArray3Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,13)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spTemperatureArray4Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,14)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spTemperatureArray5Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,15)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spTemperatureArray6Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,16)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spTemperatureArray7Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,17)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spTemperatureArray8Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,18)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spAnalogueStatus = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,20)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spSwitchStatus = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,30)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spIRMSStatus = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,40)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spVRMSStatus = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,50)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spWattStatus = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,60)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spRelayArray1Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,71)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spRelayArray2Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,72)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spRelayArray3Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,73)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spRelayArray4Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,74)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spRelayArray5Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,75)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spRelayArray6Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,77)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spRelayArray8Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,78)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spVirtualStatus = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,80)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spSenUnknownStatus = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,51)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spSenNormalStatus = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,52)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spSenWarningStatus = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,53)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spSenCriticalStatus = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,54)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spSenDownStatus = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,55)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spTemperature1Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,101)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spTemperature2Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,102)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spTemperature3Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,103)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spTemperature4Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,104)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spTemperature5Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,105)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spTemperature6Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,106)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spTemperature7Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,107)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spTemperature8Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,108)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spTemperatureArray1_1Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,111)).setLabel("spTemperatureArray1-1Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spTemperatureArray1_2Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,112)).setLabel("spTemperatureArray1-2Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spTemperatureArray1_3Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,113)).setLabel("spTemperatureArray1-3Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spTemperatureArray1_4Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,114)).setLabel("spTemperatureArray1-4Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spTemperatureArray1_5Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,115)).setLabel("spTemperatureArray1-5Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spTemperatureArray1_6Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,116)).setLabel("spTemperatureArray1-6Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spTemperatureArray1_7Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,117)).setLabel("spTemperatureArray1-7Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spTemperatureArray1_8Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,118)).setLabel("spTemperatureArray1-8Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spTemperatureArray2_1Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,121)).setLabel("spTemperatureArray2-1Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spTemperatureArray2_2Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,122)).setLabel("spTemperatureArray2-2Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spTemperatureArray2_3Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,123)).setLabel("spTemperatureArray2-3Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spTemperatureArray2_4Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,124)).setLabel("spTemperatureArray2-4Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spTemperatureArray2_5Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,125)).setLabel("spTemperatureArray2-5Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spTemperatureArray2_6Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,126)).setLabel("spTemperatureArray2-6Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spTemperatureArray2_7Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,127)).setLabel("spTemperatureArray2-7Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spTemperatureArray2_8Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,128)).setLabel("spTemperatureArray2-8Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spTemperatureArray3_1Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,131)).setLabel("spTemperatureArray3-1Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spTemperatureArray3_2Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,132)).setLabel("spTemperatureArray3-2Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spTemperatureArray3_3Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,133)).setLabel("spTemperatureArray3-3Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spTemperatureArray3_4Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,134)).setLabel("spTemperatureArray3-4Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spTemperatureArray3_5Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,135)).setLabel("spTemperatureArray3-5Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spTemperatureArray3_6Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,136)).setLabel("spTemperatureArray3-6Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spTemperatureArray3_7Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,137)).setLabel("spTemperatureArray3-7Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spTemperatureArray3_8Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,138)).setLabel("spTemperatureArray3-8Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spTemperatureArray4_1Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,141)).setLabel("spTemperatureArray4-1Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spTemperatureArray4_2Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,142)).setLabel("spTemperatureArray4-2Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spTemperatureArray4_3Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,143)).setLabel("spTemperatureArray4-3Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spTemperatureArray4_4Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,144)).setLabel("spTemperatureArray4-4Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spTemperatureArray4_5Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,145)).setLabel("spTemperatureArray4-5Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spTemperatureArray4_6Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,146)).setLabel("spTemperatureArray4-6Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spTemperatureArray4_7Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,147)).setLabel("spTemperatureArray4-7Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spTemperatureArray4_8Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,148)).setLabel("spTemperatureArray4-8Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spTemperatureArray5_1Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,151)).setLabel("spTemperatureArray5-1Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spTemperatureArray5_2Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,152)).setLabel("spTemperatureArray5-2Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spTemperatureArray5_3Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,153)).setLabel("spTemperatureArray5-3Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spTemperatureArray5_4Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,154)).setLabel("spTemperatureArray5-4Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spTemperatureArray5_5Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,155)).setLabel("spTemperatureArray5-5Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spTemperatureArray5_6Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,156)).setLabel("spTemperatureArray5-6Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spTemperatureArray5_7Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,157)).setLabel("spTemperatureArray5-7Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spTemperatureArray5_8Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,158)).setLabel("spTemperatureArray5-8Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spTemperatureArray6_1Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,161)).setLabel("spTemperatureArray6-1Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spTemperatureArray6_2Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,162)).setLabel("spTemperatureArray6-2Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spTemperatureArray6_3Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,163)).setLabel("spTemperatureArray6-3Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spTemperatureArray6_4Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,164)).setLabel("spTemperatureArray6-4Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spTemperatureArray6_5Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,165)).setLabel("spTemperatureArray6-5Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spTemperatureArray6_6Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,166)).setLabel("spTemperatureArray6-6Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spTemperatureArray6_7Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,167)).setLabel("spTemperatureArray6-7Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spTemperatureArray6_8Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,168)).setLabel("spTemperatureArray6-8Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spTemperatureArray7_1Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,171)).setLabel("spTemperatureArray7-1Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spTemperatureArray7_2Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,172)).setLabel("spTemperatureArray7-2Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spTemperatureArray7_3Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,173)).setLabel("spTemperatureArray7-3Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spTemperatureArray7_4Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,174)).setLabel("spTemperatureArray7-4Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spTemperatureArray7_5Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,175)).setLabel("spTemperatureArray7-5Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spTemperatureArray7_6Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,176)).setLabel("spTemperatureArray7-6Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spTemperatureArray7_7Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,177)).setLabel("spTemperatureArray7-7Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spTemperatureArray7_8Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,178)).setLabel("spTemperatureArray7-8Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spTemperatureArray8_1Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,181)).setLabel("spTemperatureArray8-1Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spTemperatureArray8_2Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,182)).setLabel("spTemperatureArray8-2Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spTemperatureArray8_3Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,183)).setLabel("spTemperatureArray8-3Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spTemperatureArray8_4Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,184)).setLabel("spTemperatureArray8-4Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spTemperatureArray8_5Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,185)).setLabel("spTemperatureArray8-5Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spTemperatureArray8_6Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,186)).setLabel("spTemperatureArray8-6Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spTemperatureArray8_7Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,187)).setLabel("spTemperatureArray8-7Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spTemperatureArray8_8Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,188)).setLabel("spTemperatureArray8-8Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spAnalogue1Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,201)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spAnalogue2Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,202)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spAnalogue3Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,203)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spAnalogue4Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,204)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spAnalogue5Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,205)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spAnalogue6Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,206)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spAnalogue7Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,207)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spAnalogue8Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,208)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spSwitch1Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,301)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spSwitch2Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,302)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spSwitch3Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,303)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spSwitch4Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,304)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spSwitch5Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,305)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spSwitch6Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,306)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spSwitch7Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,307)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spSwitch8Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,308)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spSwitch9Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,309)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spSwitch10Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,310)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spSwitch11Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,311)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spSwitch12Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,312)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spSwitch13Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,313)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spSwitch14Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,314)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spSwitch15Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,315)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spSwitch16Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,316)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spSwitch17Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,317)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spSwitch18Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,318)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spSwitch19Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,319)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spSwitch20Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,320)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spSwitch21Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,321)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spSwitch22Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,322)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spSwitch23Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,323)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spSwitch24Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,324)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spSwitch25Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,325)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spSwitch26Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,326)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spSwitch27Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,327)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spSwitch28Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,328)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spSwitch29Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,329)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spSwitch30Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,330)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spSwitch31Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,331)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spSwitch32Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,332)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spSwitch33Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,333)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spSwitch34Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,334)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spSwitch35Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,335)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spSwitch36Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,336)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spSwitch37Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,337)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spSwitch38Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,338)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spSwitch39Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,339)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spSwitch40Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,340)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spSwitch41Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,341)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spSwitch42Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,342)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spSwitch43Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,343)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spSwitch44Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,344)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spSwitch45Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,345)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spSwitch46Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,346)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spSwitch47Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,347)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spSwitch48Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,348)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spSwitch49Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,349)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spSwitch50Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,350)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spSwitch51Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,351)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spSwitch52Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,352)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spSwitch53Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,353)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spSwitch54Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,354)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spSwitch55Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,355)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spSwitch56Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,356)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spSwitch57Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,357)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spSwitch58Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,358)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spSwitch59Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,359)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spSwitch60Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,360)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spSwitch61Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,361)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spSwitch62Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,362)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spSwitch63Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,363)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spSwitch64Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,364)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spSwitch65Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,365)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spSwitch66Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,366)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spSwitch67Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,367)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spSwitch68Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,368)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spIRMS1Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,401)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spIRMS2Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,402)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spIRMS3Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,403)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spIRMS4Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,404)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spIRMS5Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,405)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spIRMS6Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,406)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spIRMS7Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,407)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spIRMS8Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,408)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spVRMS1Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,501)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spVRMS2Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,502)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spVRMS3Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,503)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spVRMS4Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,504)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spVRMS5Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,505)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spVRMS6Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,506)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spVRMS7Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,507)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spVRMS8Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,508)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spEnergy1Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,601)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spEnergy2Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,602)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spEnergy3Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,603)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spEnergy4Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,604)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spEnergy5Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,605)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spEnergy6Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,606)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spEnergy7Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,607)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spEnergy8Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,608)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spRelayArray1_1Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,711)).setLabel("spRelayArray1-1Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spRelayArray1_2Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,712)).setLabel("spRelayArray1-2Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spRelayArray1_3Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,713)).setLabel("spRelayArray1-3Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spRelayArray1_4Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,714)).setLabel("spRelayArray1-4Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spRelayArray1_5Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,715)).setLabel("spRelayArray1-5Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spRelayArray1_6Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,716)).setLabel("spRelayArray1-6Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spRelayArray1_7Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,717)).setLabel("spRelayArray1-7Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spRelayArray1_8Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,718)).setLabel("spRelayArray1-8Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spRelayArray2_1Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,721)).setLabel("spRelayArray2-1Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spRelayArray2_2Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,722)).setLabel("spRelayArray2-2Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spRelayArray2_3Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,723)).setLabel("spRelayArray2-3Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spRelayArray2_4Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,724)).setLabel("spRelayArray2-4Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spRelayArray2_5Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,725)).setLabel("spRelayArray2-5Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spRelayArray2_6Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,726)).setLabel("spRelayArray2-6Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spRelayArray2_7Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,727)).setLabel("spRelayArray2-7Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spRelayArray2_8Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,728)).setLabel("spRelayArray2-8Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spRelayArray3_1Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,731)).setLabel("spRelayArray3-1Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spRelayArray3_2Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,732)).setLabel("spRelayArray3-2Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spRelayArray3_3Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,733)).setLabel("spRelayArray3-3Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spRelayArray3_4Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,734)).setLabel("spRelayArray3-4Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spRelayArray3_5Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,735)).setLabel("spRelayArray3-5Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spRelayArray3_6Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,736)).setLabel("spRelayArray3-6Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spRelayArray3_7Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,737)).setLabel("spRelayArray3-7Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spRelayArray3_8Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,738)).setLabel("spRelayArray3-8Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spRelayArray4_1Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,741)).setLabel("spRelayArray4-1Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spRelayArray4_2Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,742)).setLabel("spRelayArray4-2Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spRelayArray4_3Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,743)).setLabel("spRelayArray4-3Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spRelayArray4_4Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,744)).setLabel("spRelayArray4-4Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spRelayArray4_5Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,745)).setLabel("spRelayArray4-5Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spRelayArray4_6Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,746)).setLabel("spRelayArray4-6Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spRelayArray4_7Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,747)).setLabel("spRelayArray4-7Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spRelayArray4_8Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,748)).setLabel("spRelayArray4-8Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spRelayArray5_1Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,751)).setLabel("spRelayArray5-1Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spRelayArray5_2Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,752)).setLabel("spRelayArray5-2Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spRelayArray5_3Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,753)).setLabel("spRelayArray5-3Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spRelayArray5_4Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,754)).setLabel("spRelayArray5-4Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spRelayArray5_5Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,755)).setLabel("spRelayArray5-5Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spRelayArray5_6Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,756)).setLabel("spRelayArray5-6Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spRelayArray5_7Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,757)).setLabel("spRelayArray5-7Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spRelayArray5_8Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,758)).setLabel("spRelayArray5-8Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spRelayArray6_1Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,761)).setLabel("spRelayArray6-1Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spRelayArray6_2Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,762)).setLabel("spRelayArray6-2Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spRelayArray6_3Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,763)).setLabel("spRelayArray6-3Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spRelayArray6_4Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,764)).setLabel("spRelayArray6-4Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spRelayArray6_5Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,765)).setLabel("spRelayArray6-5Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spRelayArray6_6Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,766)).setLabel("spRelayArray6-6Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spRelayArray6_7Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,767)).setLabel("spRelayArray6-7Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spRelayArray6_8Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,768)).setLabel("spRelayArray6-8Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spRelayArray7_1Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,771)).setLabel("spRelayArray7-1Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spRelayArray7_2Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,772)).setLabel("spRelayArray7-2Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spRelayArray7_3Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,773)).setLabel("spRelayArray7-3Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spRelayArray7_4Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,774)).setLabel("spRelayArray7-4Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spRelayArray7_5Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,775)).setLabel("spRelayArray7-5Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spRelayArray7_6Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,776)).setLabel("spRelayArray7-6Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spRelayArray7_7Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,777)).setLabel("spRelayArray7-7Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spRelayArray7_8Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,778)).setLabel("spRelayArray7-8Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spRelayArray8_1Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,781)).setLabel("spRelayArray8-1Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spRelayArray8_2Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,782)).setLabel("spRelayArray8-2Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spRelayArray8_3Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,783)).setLabel("spRelayArray8-3Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spRelayArray8_4Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,784)).setLabel("spRelayArray8-4Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spRelayArray8_5Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,785)).setLabel("spRelayArray8-5Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spRelayArray8_6Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,786)).setLabel("spRelayArray8-6Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spRelayArray8_7Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,787)).setLabel("spRelayArray8-7Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spRelayArray8_8Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,788)).setLabel("spRelayArray8-8Status").setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spVirtual1Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,801)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spVirtual2Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,802)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spVirtual3Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,803)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spVirtual4Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,804)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spVirtual5Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,805)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spVirtual6Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,806)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spVirtual7Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,807)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spVirtual8Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,808)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spVirtual9Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,809)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spVirtual10Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,810)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spVirtual11Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,811)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spVirtual12Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,812)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spVirtual13Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,813)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spVirtual14Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,814)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spVirtual15Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,815)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spVirtual16Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,816)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spVirtual17Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,817)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spVirtual18Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,818)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spVirtual19Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,819)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spVirtual20Status = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,820)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription")) spCustomStatus = NotificationType((1, 3, 6, 1, 4, 1, 3854, 1) + (0,1000)).setObjects(("SPAGENT-MIB", "spSensorStatus"), ("SPAGENT-MIB", "spSensorValue"), ("SPAGENT-MIB", "spSensorLevelExceeded"), ("SPAGENT-MIB", "spSensorIndex"), ("SPAGENT-MIB", "spSensorName"), ("SPAGENT-MIB", "spSensorDescription"), ("SPAGENT-MIB", "spSensorType"), ("SPAGENT-MIB", "spSensorStatusName"), ("SPAGENT-MIB", "spSensorSubIndex"), ("SPAGENT-MIB", "spBoardIndex"), ("SPAGENT-MIB", "spBoardDescription"), ("SPAGENT-MIB", "spEventTimeStamp"), ("SPAGENT-MIB", "spEventClassNumber"), ("SPAGENT-MIB", "spEventClassName")) mibBuilder.exportSymbols("SPAGENT-MIB", sensorProbeDrycontactArrayPort4NormalState=sensorProbeDrycontactArrayPort4NormalState, sensorTankSenderNormalColor=sensorTankSenderNormalColor, sensorPowerRearm=sensorPowerRearm, sensorProbeDrycontactArrayPort8ManualOutputCycleTime=sensorProbeDrycontactArrayPort8ManualOutputCycleTime, spSensorIndex=spSensorIndex, sensorProbeTypeName=sensorProbeTypeName, spSensor=spSensor, sensorProbeWattHoursSensorNumber=sensorProbeWattHoursSensorNumber, spHostName=spHostName, spAnalogue6Status=spAnalogue6Status, sensor4to20mAGoOffline=sensor4to20mAGoOffline, sensorProbeTemperatureArrayPort5Calendar=sensorProbeTemperatureArrayPort5Calendar, sensorProbeEnergyRelayCycleTime=sensorProbeEnergyRelayCycleTime, spProductName=spProductName, sensorProbeThermostatDescription=sensorProbeThermostatDescription, sensorProbeSwitchTable=sensorProbeSwitchTable, sensorProbeIRMSSensorNumber=sensorProbeIRMSSensorNumber, sensorProbeThermostatTemperatureArrayPort1LowLimitAction2=sensorProbeThermostatTemperatureArrayPort1LowLimitAction2, sensorProbeDrycontactArrayPort1ContTimeCritical=sensorProbeDrycontactArrayPort1ContTimeCritical, spEnergy3Status=spEnergy3Status, sensorAirflowNormalColor=sensorAirflowNormalColor, sensorProbeRelayArrayPort5Status=sensorProbeRelayArrayPort5Status, spSensorSubIndex=spSensorSubIndex, spSwitch57Status=spSwitch57Status, sensorProbeMailCC=sensorProbeMailCC, sensorThermostatHighWarning=sensorThermostatHighWarning, sensorAirflowDelayError=sensorAirflowDelayError, sensorDCvoltageHighWarningDesc=sensorDCvoltageHighWarningDesc, sensorProbeDrycontactArrayPort8Direction=sensorProbeDrycontactArrayPort8Direction, sensorProbeDrycontactArrayPort2ManualOutputAction=sensorProbeDrycontactArrayPort2ManualOutputAction, sensorProbeUseCamera=sensorProbeUseCamera, sensorHumidityHighWarning=sensorHumidityHighWarning, sensorProbeTemperatureArrayPort4Table=sensorProbeTemperatureArrayPort4Table, sensorWaterRopeRaw=sensorWaterRopeRaw, sensorProbeThermostatTemperatureArrayPort8LowLimit2=sensorProbeThermostatTemperatureArrayPort8LowLimit2, sensorWaterRopeLength=sensorWaterRopeLength, spVRMS4Status=spVRMS4Status, sensorProbeRelayArrayPort3URL=sensorProbeRelayArrayPort3URL, sensorProbeTempRelayAction=sensorProbeTempRelayAction, sensorProbeTemperatureArrayPort1ContTimeHighWarning=sensorProbeTemperatureArrayPort1ContTimeHighWarning, sensorProbeDrycontactArrayPort8OpenURL=sensorProbeDrycontactArrayPort8OpenURL, sensorProbeDrycontactArrayPort6ContTimeCritical=sensorProbeDrycontactArrayPort6ContTimeCritical, spTemperatureArray8_6Status=spTemperatureArray8_6Status, sensorProbeTempContTimeHighWarning=sensorProbeTempContTimeHighWarning, sensorTemperatureLowWarningDesc=sensorTemperatureLowWarningDesc, sensorProbeTemperatureArrayPort6LowWarning=sensorProbeTemperatureArrayPort6LowWarning, sensorProbeSendTraps=sensorProbeSendTraps, sensorProbeTemperatureArrayPort2LowCritical=sensorProbeTemperatureArrayPort2LowCritical, spVirtual3Status=spVirtual3Status, spVirtual16Status=spVirtual16Status, sensorProbeDrycontactArrayPort4Status=sensorProbeDrycontactArrayPort4Status, sensorAirflowStatus=sensorAirflowStatus, sensorProbeDisplayLogo=sensorProbeDisplayLogo, sensorProbeThermostatTemperatureArrayPort4RelayControlPort=sensorProbeThermostatTemperatureArrayPort4RelayControlPort, sensorProbeRelayArrayPort8RelayAction=sensorProbeRelayArrayPort8RelayAction, spVirtual10Status=spVirtual10Status, spSenDownStatus=spSenDownStatus, sensorProbeThermostatTemperatureArrayPort8RelayControlPort=sensorProbeThermostatTemperatureArrayPort8RelayControlPort, sensorMotionNormalColor=sensorMotionNormalColor, sensorProbeDetail=sensorProbeDetail, sensorProbeVRMSSensorIndex=sensorProbeVRMSSensorIndex, sensorAirflowValue=sensorAirflowValue, sensorHumidityRearm=sensorHumidityRearm, sensorOnColor=sensorOnColor, sensorSirenGoOffline=sensorSirenGoOffline, sensorSecurityNormalColor=sensorSecurityNormalColor, sensorSmokePort=sensorSmokePort, sensorProbeTemperatureArrayPort1ContTimeHighCritical=sensorProbeTemperatureArrayPort1ContTimeHighCritical, sensorProbeVRMSDatacollectType=sensorProbeVRMSDatacollectType, sensorProbeThermostatTemperatureArrayPort7Online=sensorProbeThermostatTemperatureArrayPort7Online, sensorProbeVRMSContTimeHighWarning=sensorProbeVRMSContTimeHighWarning, sensorProbeReloadNetwork=sensorProbeReloadNetwork, sensorDCvoltageDelayLowWarning=sensorDCvoltageDelayLowWarning, sensorProbeThermostatTemperatureArrayPort4LowLimit2=sensorProbeThermostatTemperatureArrayPort4LowLimit2, sensorRelayOnColor=sensorRelayOnColor, sensorTankSenderLowWarningColor=sensorTankSenderLowWarningColor, sensorPowerNormalColor=sensorPowerNormalColor, sensorProbeDrycontactArrayPort5OpenURL=sensorProbeDrycontactArrayPort5OpenURL, sensorProbeTemperatureArrayPort5Value=sensorProbeTemperatureArrayPort5Value, sensorProbeDrycontactArrayPort4Entry=sensorProbeDrycontactArrayPort4Entry, sensorFuelHighWarningDesc=sensorFuelHighWarningDesc, spVRMS8Status=spVRMS8Status, spSwitch64Status=spSwitch64Status, sensorTemperatureDelayError=sensorTemperatureDelayError, sensorProbeHumiditySirenAction=sensorProbeHumiditySirenAction, spSwitch65Status=spSwitch65Status, sensorProbeMegaVersion=sensorProbeMegaVersion, sensorProbeHumidityRelayOnPort=sensorProbeHumidityRelayOnPort, sensorProbeTemperatureArrayPort6Number=sensorProbeTemperatureArrayPort6Number, sensorProbeTemperatureArrayPort6Status=sensorProbeTemperatureArrayPort6Status, sensorDCvoltageDelayError=sensorDCvoltageDelayError, sensorProbeHumiditySirenOnPort=sensorProbeHumiditySirenOnPort, sensorThermostatLowCriticalDesc=sensorThermostatLowCriticalDesc, sensorFuelHighCriticalDesc=sensorFuelHighCriticalDesc, spWattStatus=spWattStatus, sensorProbeSwitchRelayOnPort=sensorProbeSwitchRelayOnPort, sensorDryContactPort6GoOnline=sensorDryContactPort6GoOnline, sensorProbeTempContTimeSensorError=sensorProbeTempContTimeSensorError, sensorRelayControlMode=sensorRelayControlMode, sensorProbeCameraServerClientSetPassword=sensorProbeCameraServerClientSetPassword, sensorProbeVirtualSwitchSensorTable=sensorProbeVirtualSwitchSensorTable, spAnalogue2Status=spAnalogue2Status, sensorDryContactTable=sensorDryContactTable, spDownStatus=spDownStatus, sensorProbeHumidityLowVoltage=sensorProbeHumidityLowVoltage, sensorProbeVRMSRelayActiveStatus=sensorProbeVRMSRelayActiveStatus, sensorProbeTempLowWarning=sensorProbeTempLowWarning, sensorSecurityGoOffline=sensorSecurityGoOffline, sensorIntelligentPort5GoOnline=sensorIntelligentPort5GoOnline, deviceDryContactTable=deviceDryContactTable, spTemperatureArray3_7Status=spTemperatureArray3_7Status, sensorProbe=sensorProbe, sensorProbeThermostatTemperatureArrayPort7EnableTime=sensorProbeThermostatTemperatureArrayPort7EnableTime, spTemperatureArray3_5Status=spTemperatureArray3_5Status, sensorProbeSwitchWaterRopeImpedance=sensorProbeSwitchWaterRopeImpedance, sensorProbeSMTPAuth=sensorProbeSMTPAuth, spRelayArray2_6Status=spRelayArray2_6Status, sensorProbeHumidityGoOnline=sensorProbeHumidityGoOnline, sensorAirflowSubPort=sensorAirflowSubPort, sensorProbeRelayArrayPort7NormalState=sensorProbeRelayArrayPort7NormalState, sensorTankSenderNormalDesc=sensorTankSenderNormalDesc, sensorProbeRelayArrayPort4RelayDescOn=sensorProbeRelayArrayPort4RelayDescOn, sensorProbeDrycontactArrayPort4OpenURL=sensorProbeDrycontactArrayPort4OpenURL, spSwitch24Status=spSwitch24Status, sensorProbeSoundDetectorMicBoost=sensorProbeSoundDetectorMicBoost, sensorWaterPort=sensorWaterPort, sensorProbeRelayArrayPort6Status=sensorProbeRelayArrayPort6Status, deviceDryContactInfo=deviceDryContactInfo, sensorProbeSwitchIndexCount=sensorProbeSwitchIndexCount, sensorWaterRopeUnit=sensorWaterRopeUnit, spSwitch49Status=spSwitch49Status, sensorProbeLastSystemError=sensorProbeLastSystemError, sensor4to20mATable=sensor4to20mATable, sensorHumidityLowCriticalDesc=sensorHumidityLowCriticalDesc, spRelayArray1_8Status=spRelayArray1_8Status, sensorDCvoltageLowWarning=sensorDCvoltageLowWarning, sensor4to20mASensorErrorColor=sensor4to20mASensorErrorColor, sensorProbeNoCameraSensorTable=sensorProbeNoCameraSensorTable, sensorPowerLowWarningDesc=sensorPowerLowWarningDesc, sensorTankSenderIndex=sensorTankSenderIndex, sensorProbeDrycontactArrayPort7Entry=sensorProbeDrycontactArrayPort7Entry, sensorProbeRelayArrayPort7ManualRelayAction=sensorProbeRelayArrayPort7ManualRelayAction, sensorProbeDrycontactArrayPort8Index=sensorProbeDrycontactArrayPort8Index, sensorProbeDrycontactArrayPort7NormalState=sensorProbeDrycontactArrayPort7NormalState, sensorProbeTemperatureArrayPort6DegreeType=sensorProbeTemperatureArrayPort6DegreeType, sensorProbeVirtualAnalogSensorEntry=sensorProbeVirtualAnalogSensorEntry, sensorProbeVirtualAnalogDelayError=sensorProbeVirtualAnalogDelayError, sensorProbeTypeDrycontactInputName=sensorProbeTypeDrycontactInputName, sensorProbeEnergyReadingMode=sensorProbeEnergyReadingMode, sensorDCvoltageUnit=sensorDCvoltageUnit, sensorProbeIRMSURL=sensorProbeIRMSURL, sensorFuelLowCritical=sensorFuelLowCritical, sensorProbeHumidityContTimeNormal=sensorProbeHumidityContTimeNormal, sensorPowerHighCritical=sensorPowerHighCritical, spVirtual19Status=spVirtual19Status, spSwitch23Status=spSwitch23Status, sensorProbeRelayArrayPort7Status=sensorProbeRelayArrayPort7Status, sensorFuelHighCriticalColor=sensorFuelHighCriticalColor, sensorProbeTemperatureArrayPort8ContTimeSensorError=sensorProbeTemperatureArrayPort8ContTimeSensorError, sensorProbeTypeTankSenderName=sensorProbeTypeTankSenderName, sensorProbeDrycontactArrayPort8ContTimeCritical=sensorProbeDrycontactArrayPort8ContTimeCritical, spVirtual5Status=spVirtual5Status, sensorProbeDrycontactArrayPort4ManualOutputCycleTime=sensorProbeDrycontactArrayPort4ManualOutputCycleTime, sensorProbeReadSysLog=sensorProbeReadSysLog, sensorProbeVRMSLowCritical=sensorProbeVRMSLowCritical, sensorProbeTemperatureArrayPort1ContTimeSensorError=sensorProbeTemperatureArrayPort1ContTimeSensorError, spSwitch63Status=spSwitch63Status, spTemperatureArray4_3Status=spTemperatureArray4_3Status, sensorProbeIRMSContTimeHighWarning=sensorProbeIRMSContTimeHighWarning, sensorProbeHumidityAtoDJumper=sensorProbeHumidityAtoDJumper, sensorAirflowDisplayStyle=sensorAirflowDisplayStyle, sensorProbeThermostatTemperatureArrayPort8EnableTime=sensorProbeThermostatTemperatureArrayPort8EnableTime, sensorProbeType4to20MAName=sensorProbeType4to20MAName, sensor4to20mADescription=sensor4to20mADescription, sensorPowerEntry=sensorPowerEntry, sensorProbeDrycontactArrayPort8Status=sensorProbeDrycontactArrayPort8Status, sensor4to20mADelayLowWarning=sensor4to20mADelayLowWarning, sensorProbeTypeTemperatureName=sensorProbeTypeTemperatureName, sensorProbeVirtualAnalogContTimeHighWarning=sensorProbeVirtualAnalogContTimeHighWarning, sensorProbeSupportMailRcpt=sensorProbeSupportMailRcpt, sensorProbeTemperatureArrayPort2Entry=sensorProbeTemperatureArrayPort2Entry, spRelayArray5_1Status=spRelayArray5_1Status, sensorProbeRelayArrayPort3Number=sensorProbeRelayArrayPort3Number, sensorProbeThermostatTemperatureArrayPort1HighLimitAction2=sensorProbeThermostatTemperatureArrayPort1HighLimitAction2, sensorProbeVRMSHighCritical=sensorProbeVRMSHighCritical, sensorThermostatDelayLowWarning=sensorThermostatDelayLowWarning, sensorProbeSwitchRelayCycleTime=sensorProbeSwitchRelayCycleTime, sensorProbeRelayArrayPort7Online=sensorProbeRelayArrayPort7Online, sensorProbeCameraServerClientGoOnline=sensorProbeCameraServerClientGoOnline, sensorProbeThermostatTemperatureArrayPort6HighLimit2=sensorProbeThermostatTemperatureArrayPort6HighLimit2, sensorProbeTemperatureArrayPort1ContTimeLowCritical=sensorProbeTemperatureArrayPort1ContTimeLowCritical, sensorPowerDelayLowWarning=sensorPowerDelayLowWarning, spIRMS1Status=spIRMS1Status, sensorProbeTemperatureArrayPort4Value=sensorProbeTemperatureArrayPort4Value, sensorSecuritySubPort=sensorSecuritySubPort, sensorFuelDelayLowWarning=sensorFuelDelayLowWarning, sensorProbeRelayArrayPort3ManualRelayCycleTime=sensorProbeRelayArrayPort3ManualRelayCycleTime, sensorProbeDrycontactArrayPort2Index=sensorProbeDrycontactArrayPort2Index, spTemperatureArray7Status=spTemperatureArray7Status, sensorProbeTempEmailTrapSchedule=sensorProbeTempEmailTrapSchedule, sensorProbeRelayArrayPort6RelayAction=sensorProbeRelayArrayPort6RelayAction, sensorProbeSoundDetectorSensorNumber=sensorProbeSoundDetectorSensorNumber, spTemperatureArray4Status=spTemperatureArray4Status, sensorProbeThermostatIndex=sensorProbeThermostatIndex, sensorProbeIRMSDescription=sensorProbeIRMSDescription, sensor4to20mALowCriticalDesc=sensor4to20mALowCriticalDesc, deviceIndex=deviceIndex, sensorProbeThermostatTemperatureArrayPort5Description=sensorProbeThermostatTemperatureArrayPort5Description, sensorFuelHighWarning=sensorFuelHighWarning, sensorProbeDebug=sensorProbeDebug, sensorProbeNoCameraSensorNumber=sensorProbeNoCameraSensorNumber, sensorProbeDrycontactArrayPort3Online=sensorProbeDrycontactArrayPort3Online, sensorProbeSwitchSirenDelayAlarm=sensorProbeSwitchSirenDelayAlarm, sensorProbeVRMSLowWarning=sensorProbeVRMSLowWarning, sensorProbeTemperatureArrayPort5Table=sensorProbeTemperatureArrayPort5Table, sensorProbeRelayArrayPort5=sensorProbeRelayArrayPort5, spTemperatureArray6_6Status=spTemperatureArray6_6Status, sensorHighCriticalDescription=sensorHighCriticalDescription, spSwitch1Status=spSwitch1Status, spSwitch62Status=spSwitch62Status, sensorTemperatureSensorErrorColor=sensorTemperatureSensorErrorColor, sensorHumidityDescription=sensorHumidityDescription, sensorProbeTemperatureArrayPort3Calendar=sensorProbeTemperatureArrayPort3Calendar, sensorFuelDelayLowCritical=sensorFuelDelayLowCritical, sensorProbeTypeACvoltageName=sensorProbeTypeACvoltageName, sensorProbeDrycontactArrayPort7OpenURL=sensorProbeDrycontactArrayPort7OpenURL, sensorProbeSwitchRelayDescOn=sensorProbeSwitchRelayDescOn, sensorSirenOnColor=sensorSirenOnColor, sensorProbeRelayArrayPort4=sensorProbeRelayArrayPort4, sensorProbeTempOnline=sensorProbeTempOnline, sensorProbeRelayArrayPort5RelayDescOn=sensorProbeRelayArrayPort5RelayDescOn, spRelayArray4_2Status=spRelayArray4_2Status, spIRMSStatus=spIRMSStatus, sensorProbeTemperatureArrayPort2ContTimeHighWarning=sensorProbeTemperatureArrayPort2ContTimeHighWarning, sensorTankSenderEntry=sensorTankSenderEntry, spRelayArray6_6Status=spRelayArray6_6Status, sensorACvoltageNormalColor=sensorACvoltageNormalColor, sensorProbeTemperatureArrayPort6URL=sensorProbeTemperatureArrayPort6URL, sensorHumidityHighCriticalColor=sensorHumidityHighCriticalColor, sensorProbeTemperatureArrayPort8HighWarning=sensorProbeTemperatureArrayPort8HighWarning, spTemperatureArray5_1Status=spTemperatureArray5_1Status, sensorProbeHumidityHighCritical=sensorProbeHumidityHighCritical, sensorProbeTemperatureArrayPort4Calendar=sensorProbeTemperatureArrayPort4Calendar, spTemperatureArray4_8Status=spTemperatureArray4_8Status, sensorHumidityLowCritical=sensorHumidityLowCritical, sensorPowerHighCriticalColor=sensorPowerHighCriticalColor, sensorProbeVirtualAnalogEmailTrapLimit=sensorProbeVirtualAnalogEmailTrapLimit, spSensorLevelExceeded=spSensorLevelExceeded, sensorProbeDrycontactArrayPort7ContTimeNormal=sensorProbeDrycontactArrayPort7ContTimeNormal, sensorProbeTemperatureArrayPort6Calendar=sensorProbeTemperatureArrayPort6Calendar, spSwitch11Status=spSwitch11Status, spSwitch37Status=spSwitch37Status, sensorTankSenderHighWarningColor=sensorTankSenderHighWarningColor, sensorProbeSetCommunity=sensorProbeSetCommunity) mibBuilder.exportSymbols("SPAGENT-MIB", sensorProbeTemperatureArrayPort7Entry=sensorProbeTemperatureArrayPort7Entry, sensorTemperatureHighCriticalDesc=sensorTemperatureHighCriticalDesc, sensorProbeRelayArrayPort3ControlMode=sensorProbeRelayArrayPort3ControlMode, spTemperatureArray1_1Status=spTemperatureArray1_1Status, spTemperature1Status=spTemperature1Status, sensorAirflowSensorErrorDesc=sensorAirflowSensorErrorDesc, sensor4to20mAHighCriticalColor=sensor4to20mAHighCriticalColor, sensorSmokeDeviceIndex=sensorSmokeDeviceIndex, sensorTemperatureDelayHighWarning=sensorTemperatureDelayHighWarning, sensorProbeIRMSSensorIndex=sensorProbeIRMSSensorIndex, sensorAirflowPort=sensorAirflowPort, sensorProbeDrycontactArrayPort6Status=sensorProbeDrycontactArrayPort6Status, sensorProbeVirtualSwitchAcknowledgement=sensorProbeVirtualSwitchAcknowledgement, sensor4to20mARearm=sensor4to20mARearm, spTemperatureArray6_5Status=spTemperatureArray6_5Status, sensorProbeDrycontactArrayPort3NormalState=sensorProbeDrycontactArrayPort3NormalState, spRelayArray3_2Status=spRelayArray3_2Status, sensorProbeTypeADE7763IRMSName=sensorProbeTypeADE7763IRMSName, spRelayArray8_3Status=spRelayArray8_3Status, sensorProbeEnergyLowCritical=sensorProbeEnergyLowCritical, sensorProbeDrycontactArrayPort8GoOnline=sensorProbeDrycontactArrayPort8GoOnline, sensorProbeSoundDetectorGoOnline=sensorProbeSoundDetectorGoOnline, sensorDeviceIndex=sensorDeviceIndex, sensorProbeDrycontactArrayPort2URL=sensorProbeDrycontactArrayPort2URL, sensorProbeTemperatureArrayPort5ContTimeHighWarning=sensorProbeTemperatureArrayPort5ContTimeHighWarning, sensorProbeRelayArrayPort2=sensorProbeRelayArrayPort2, sensorProbeEnergyContTimeLowWarning=sensorProbeEnergyContTimeLowWarning, sensorProbeDrycontactArrayPort3OutputDescOff=sensorProbeDrycontactArrayPort3OutputDescOff, sensorDCvoltageMaxVoltage=sensorDCvoltageMaxVoltage, sensorProbeSoftMotionGoOnline=sensorProbeSoftMotionGoOnline, sensorProbeThermostatTemperatureArrayPort7Description=sensorProbeThermostatTemperatureArrayPort7Description, sensorACvoltageTable=sensorACvoltageTable, sensorProbeTemperatureArrayPort4ContTimeHighCritical=sensorProbeTemperatureArrayPort4ContTimeHighCritical, sensorProbeTemperatureArrayPort8ContTimeHighWarning=sensorProbeTemperatureArrayPort8ContTimeHighWarning, sensorAirflowTable=sensorAirflowTable, sensorProbeDrycontactArrayPort1OpenURL=sensorProbeDrycontactArrayPort1OpenURL, sensorProbeVRMSGoOnline=sensorProbeVRMSGoOnline, sensorProbeHumidityContTimeLowCritical=sensorProbeHumidityContTimeLowCritical, spTemperatureArray4_6Status=spTemperatureArray4_6Status, sensorProbePTZEnable=sensorProbePTZEnable, sensorProbeTemperatureArrayPort3Status=sensorProbeTemperatureArrayPort3Status, sensorProbeVRMSContTimeNormal=sensorProbeVRMSContTimeNormal, sensorProbeTemperatureArrayPort4Status=sensorProbeTemperatureArrayPort4Status, sensorProbeNoCameraOnline=sensorProbeNoCameraOnline, sensorProbeSoftMotionSensorIndex=sensorProbeSoftMotionSensorIndex, sensorProbeIRMSHighCritical=sensorProbeIRMSHighCritical, sensorProbeSnmpPort=sensorProbeSnmpPort, sensorIndex=sensorIndex, sensorDCvoltageNormalColor=sensorDCvoltageNormalColor, sensorProbeVirtualSwitchSensorIndex=sensorProbeVirtualSwitchSensorIndex, akcp=akcp, sensor4to20mAHighCritical=sensor4to20mAHighCritical, sensorProbeThermostatTemperatureArrayPort1RelayControlPort=sensorProbeThermostatTemperatureArrayPort1RelayControlPort, sensorTankSenderHighCritical=sensorTankSenderHighCritical, sensorHumidityDeviceIndex=sensorHumidityDeviceIndex, sensorProbeSendMail=sensorProbeSendMail, sensorProbeThermostatTemperatureArrayPort2Index=sensorProbeThermostatTemperatureArrayPort2Index, sensorThermostatPort=sensorThermostatPort, sensorProbeRelayArrayPort2URL=sensorProbeRelayArrayPort2URL, sensorProbeDrycontactArrayPort3Index=sensorProbeDrycontactArrayPort3Index, deviceIntelligentDescription=deviceIntelligentDescription, sensorProbeRelayArrayPort2OpenURL=sensorProbeRelayArrayPort2OpenURL, sensorOffColor=sensorOffColor, deviceTable=deviceTable, sensorWaterCriticalDesc=sensorWaterCriticalDesc, sensorProbeRelayArrayPort1ManualRelayAction=sensorProbeRelayArrayPort1ManualRelayAction, sensorProbeRelayArrayPort7Table=sensorProbeRelayArrayPort7Table, sensorProbeSoftMotionSensorTable=sensorProbeSoftMotionSensorTable, sensorProbeHumidityHighWarning=sensorProbeHumidityHighWarning, sensorDCvoltageEntry=sensorDCvoltageEntry, sensorProbeTrapResendInterval=sensorProbeTrapResendInterval, sensorProbeTemperatureArrayPort7OpenURL=sensorProbeTemperatureArrayPort7OpenURL, sensorProbeDrycontactArrayPort6Description=sensorProbeDrycontactArrayPort6Description, sensorProbeCameraServerTable=sensorProbeCameraServerTable, sensorACvoltageCriticalDesc=sensorACvoltageCriticalDesc, sensorSmokeNormalDesc=sensorSmokeNormalDesc, sensorProbeRelayArrayPort2Status=sensorProbeRelayArrayPort2Status, sensorProbeDrycontactArrayPort6OutputDescOff=sensorProbeDrycontactArrayPort6OutputDescOff, sensorProbeDrycontactArrayPort6Online=sensorProbeDrycontactArrayPort6Online, sensorProbeTemperatureArrayPort1Description=sensorProbeTemperatureArrayPort1Description, spSwitch20Status=spSwitch20Status, spVirtual9Status=spVirtual9Status, sensorProbeTemperatureArrayPort1HighCritical=sensorProbeTemperatureArrayPort1HighCritical, deviceDryContactIndex=deviceDryContactIndex, sensorHumidityOffset=sensorHumidityOffset, sensorProbeVRMSHighWarning=sensorProbeVRMSHighWarning, sensorProbeThermostatTemperatureArrayPort1HighLimitAction1=sensorProbeThermostatTemperatureArrayPort1HighLimitAction1, sensorTankSenderDisplayStyle=sensorTankSenderDisplayStyle, sensorProbeTemperatureArrayPort8Online=sensorProbeTemperatureArrayPort8Online, sensorProbeTemperatureArrayPort8ContTimeLowCritical=sensorProbeTemperatureArrayPort8ContTimeLowCritical, sensorProbeThermostatTemperatureArrayPort8Value=sensorProbeThermostatTemperatureArrayPort8Value, sensorProbeTemperatureArrayPort6HighWarning=sensorProbeTemperatureArrayPort6HighWarning, sensorProbeHumiditySirenActiveStatus=sensorProbeHumiditySirenActiveStatus, sensorProbeTemperatureArrayPort6ContTimeNormal=sensorProbeTemperatureArrayPort6ContTimeNormal, sensorOnDescription=sensorOnDescription, sensorProbeDrycontactArrayPort5Description=sensorProbeDrycontactArrayPort5Description, sensorProbeThermostatTemperatureArrayPort4HighLimit1=sensorProbeThermostatTemperatureArrayPort4HighLimit1, sensorProbeTemperatureArrayPort7HighCritical=sensorProbeTemperatureArrayPort7HighCritical, sensorProbeDrycontactArrayPort2=sensorProbeDrycontactArrayPort2, spRelayArray7_7Status=spRelayArray7_7Status, sensorProbeEnergyDatacollectType=sensorProbeEnergyDatacollectType, sensorProbeRelayArrayPort3RelayDescOff=sensorProbeRelayArrayPort3RelayDescOff, sensorProbeWattHoursSensorIndex=sensorProbeWattHoursSensorIndex, spRelayArray7_8Status=spRelayArray7_8Status, sensor4to20mAHighWarningDesc=sensor4to20mAHighWarningDesc, sensorProbeThermostatTemperatureArrayPort3Online=sensorProbeThermostatTemperatureArrayPort3Online, sensorPowerPort=sensorPowerPort, sensorProbeTemperatureArrayPort3Value=sensorProbeTemperatureArrayPort3Value, sensorHumidityGoOffline=sensorHumidityGoOffline, sensorProbeRelayArrayPort3RelayCycleTime=sensorProbeRelayArrayPort3RelayCycleTime, sensorFuelLowWarningDesc=sensorFuelLowWarningDesc, sensorProbeEnergyRelayOnPort=sensorProbeEnergyRelayOnPort, sensorProbeThermostatTemperatureArrayPort6RelayControlPort=sensorProbeThermostatTemperatureArrayPort6RelayControlPort, sensorSecurityDeviceIndex=sensorSecurityDeviceIndex, sensorProbeThermostatTemperatureArrayPort5Online=sensorProbeThermostatTemperatureArrayPort5Online, spTemperatureArray2_3Status=spTemperatureArray2_3Status, spSwitch6Status=spSwitch6Status, sensorProbeRelayArrayPort7ManualRelayCycleTime=sensorProbeRelayArrayPort7ManualRelayCycleTime, sensorRelayGoOffline=sensorRelayGoOffline, sensorPowerDeviceIndex=sensorPowerDeviceIndex, sensorProbeTempSendNormalMail=sensorProbeTempSendNormalMail, sensorProbeSoftMotionStatus=sensorProbeSoftMotionStatus, sensorProbeHumiditySendMail=sensorProbeHumiditySendMail, sensorProbeSoundDetectorSensorTable=sensorProbeSoundDetectorSensorTable, sensorDCvoltageOffset=sensorDCvoltageOffset, sensorWaterRopeDescription=sensorWaterRopeDescription, sensorRelayDeviceIndex=sensorRelayDeviceIndex, sensorProbeTemperatureArrayPort8Status=sensorProbeTemperatureArrayPort8Status, sensorProbeSoundDetectorDescription=sensorProbeSoundDetectorDescription, sensorACvoltageDescription=sensorACvoltageDescription, sensorProbeDrycontactArrayPort4OutputDescOff=sensorProbeDrycontactArrayPort4OutputDescOff, sensorProbeTemperatureArrayPort2Rearm=sensorProbeTemperatureArrayPort2Rearm, sensorDryContactPort13GoOnline=sensorDryContactPort13GoOnline, sensorProbeRelayArrayPort6Index=sensorProbeRelayArrayPort6Index, sensorFuelDeviceIndex=sensorFuelDeviceIndex, sensorProbeTypeSHT11Name=sensorProbeTypeSHT11Name, sensorWaterDeviceIndex=sensorWaterDeviceIndex, spTemperatureArray5_3Status=spTemperatureArray5_3Status, spSwitch7Status=spSwitch7Status, sensorThermostatLowCritical=sensorThermostatLowCritical, sensorProbeTypeSmokeName=sensorProbeTypeSmokeName, sensorProbeThermostatTemperatureArrayPort5HighLimitAction1=sensorProbeThermostatTemperatureArrayPort5HighLimitAction1, sensorProbeDrycontactArrayPort8ControlMode=sensorProbeDrycontactArrayPort8ControlMode, sensorProbeThermostatTemperatureArrayPort6Online=sensorProbeThermostatTemperatureArrayPort6Online, sensorProbeDrycontactArrayPort6GoOnline=sensorProbeDrycontactArrayPort6GoOnline, sensorDCvoltageHighWarningColor=sensorDCvoltageHighWarningColor, sensorProbeSoundDetectorContTimeHighCritical=sensorProbeSoundDetectorContTimeHighCritical, spRelayArray4_5Status=spRelayArray4_5Status, sensorDCvoltageLowCritical=sensorDCvoltageLowCritical, sensorProbeDrycontactArrayPort4Table=sensorProbeDrycontactArrayPort4Table, spRelayArray5_5Status=spRelayArray5_5Status, spSwitch14Status=spSwitch14Status, sensorProbeRelayArrayPort8Table=sensorProbeRelayArrayPort8Table, spSwitch46Status=spSwitch46Status, sensorProbeEnergySensorEntry=sensorProbeEnergySensorEntry, spSwitch35Status=spSwitch35Status, sensorProbeTempEmailTrapInterval=sensorProbeTempEmailTrapInterval, sensorDCvoltageLowWarningColor=sensorDCvoltageLowWarningColor, spSwitch47Status=spSwitch47Status, sensorProbeIRMSSirenOnPort=sensorProbeIRMSSirenOnPort, sensorHumidityLowCriticalColor=sensorHumidityLowCriticalColor, sensorWaterRopeCriticalColor=sensorWaterRopeCriticalColor, sensorProbeTemperatureArrayPort4Rearm=sensorProbeTemperatureArrayPort4Rearm, spVRMS3Status=spVRMS3Status, spTemperatureArray5_5Status=spTemperatureArray5_5Status, sensorProbeEnergySensorNumber=sensorProbeEnergySensorNumber, sensorProbeRelayArrayPort7Description=sensorProbeRelayArrayPort7Description, sensorProbeTrapType=sensorProbeTrapType, sensorProbeRelayArrayPort4ControlMode=sensorProbeRelayArrayPort4ControlMode, spTemperatureArray1_6Status=spTemperatureArray1_6Status, sensorMotionIndex=sensorMotionIndex, sensorWaterRopeIndex=sensorWaterRopeIndex, sensorProbeVirtualSwitchCalendar=sensorProbeVirtualSwitchCalendar, sensorTemperatureDegree=sensorTemperatureDegree, sensorProbeThermostatTemperatureArrayPort1NormalAction2=sensorProbeThermostatTemperatureArrayPort1NormalAction2, sensorProbeDrycontactArrayPort3GoOnline=sensorProbeDrycontactArrayPort3GoOnline, sensorProbeTempRelayOnPort=sensorProbeTempRelayOnPort, sensorProbeRelayArrayPort3Index=sensorProbeRelayArrayPort3Index, sensorProbeRelayArrayPort4Number=sensorProbeRelayArrayPort4Number, sensorProbeRelayArrayPort5GoOnline=sensorProbeRelayArrayPort5GoOnline, sensorProbeHumidityEmailTrapLimit=sensorProbeHumidityEmailTrapLimit, sensorProbeVirtualAnalogSensor=sensorProbeVirtualAnalogSensor, spTemperatureArray2_4Status=spTemperatureArray2_4Status, sensorProbeThermostatTemperatureArrayPort3GoOnline=sensorProbeThermostatTemperatureArrayPort3GoOnline, sensorProbeSMTPPassword=sensorProbeSMTPPassword, sensorProbeVRMSSirenActiveStatus=sensorProbeVRMSSirenActiveStatus, sensorProbeSoftMotionSensorEntry=sensorProbeSoftMotionSensorEntry, sensorProbeDrycontactArrayPort2Number=sensorProbeDrycontactArrayPort2Number, sensorProbeTypeRelayName=sensorProbeTypeRelayName, sensorProbeSensorType=sensorProbeSensorType, sensor4to20mABaseVoltage=sensor4to20mABaseVoltage, sensorProbeRelayArrayPort8RelayDescOff=sensorProbeRelayArrayPort8RelayDescOff, sensorProbeTrapResend=sensorProbeTrapResend, sensorTankSenderDescription=sensorTankSenderDescription, spTemperature2Status=spTemperature2Status, sensorProbeRelayArrayPort2Online=sensorProbeRelayArrayPort2Online, sensorProbeSoundDetectorURL=sensorProbeSoundDetectorURL, sensorProbeSeparateEmail=sensorProbeSeparateEmail, sensorProbeTemperatureArrayPort1Number=sensorProbeTemperatureArrayPort1Number, sensorProbeSwitchSendNormalMail=sensorProbeSwitchSendNormalMail, sensorHumidityTable=sensorHumidityTable, sensorProbeRelayArrayPort5NormalState=sensorProbeRelayArrayPort5NormalState, sensor4to20mAHighWarning=sensor4to20mAHighWarning, sensorThermostatLowWarningDesc=sensorThermostatLowWarningDesc, sensorProbeTemperatureArrayPort3=sensorProbeTemperatureArrayPort3, sensorProbeDrycontactArrayPort5Table=sensorProbeDrycontactArrayPort5Table, sensorProbeVRMSSirenCycleTime=sensorProbeVRMSSirenCycleTime, sensorProbeThermostatTemperatureArrayPort3EnableTime=sensorProbeThermostatTemperatureArrayPort3EnableTime, sensorProbeThermostatTemperatureArrayPort5Index=sensorProbeThermostatTemperatureArrayPort5Index, spSwitch2Status=spSwitch2Status, sensorProbeVirtualAnalogURL=sensorProbeVirtualAnalogURL, sensorProbeTemperatureArrayPort4DegreeType=sensorProbeTemperatureArrayPort4DegreeType, sensorTankSenderLowWarningDesc=sensorTankSenderLowWarningDesc, sensorProbeSoftMotionPercentSensitivity=sensorProbeSoftMotionPercentSensitivity, sensorDCvoltageAmountMaxVoltage=sensorDCvoltageAmountMaxVoltage, sensorAirflowLowWarningColor=sensorAirflowLowWarningColor, sensorProbeSMTPLogin=sensorProbeSMTPLogin, spSwitch55Status=spSwitch55Status, sensorProbeThermostatTemperatureArrayPort7NormalAction1=sensorProbeThermostatTemperatureArrayPort7NormalAction1, sensorProbeDrycontactArrayPort6URL=sensorProbeDrycontactArrayPort6URL, sensorSecurityPort=sensorSecurityPort, sensorProbeThermostatLowLimitAction1=sensorProbeThermostatLowLimitAction1, sensorProbeRelayArrayPort6Entry=sensorProbeRelayArrayPort6Entry, sensorProbeSwitchWaterRopeUnit=sensorProbeSwitchWaterRopeUnit, sensorProbeThermostatTemperatureArrayPort1LowLimitAction1=sensorProbeThermostatTemperatureArrayPort1LowLimitAction1, sensorHumiditySensorErrorDesc=sensorHumiditySensorErrorDesc, spRelayArray1_3Status=spRelayArray1_3Status, sensorProbeThermostatTemperatureArrayPort8LowLimit1=sensorProbeThermostatTemperatureArrayPort8LowLimit1, sensorProbeRelayArrayPort2RelayDescOn=sensorProbeRelayArrayPort2RelayDescOn, sensorProbeUseDHCP=sensorProbeUseDHCP, sensorProbeDrycontactArrayPort1ContTimeNormal=sensorProbeDrycontactArrayPort1ContTimeNormal, sensorTemperatureUnit=sensorTemperatureUnit, sensorFuelDescription=sensorFuelDescription, sensorProbeThermostatTemperatureArrayPort6GoOnline=sensorProbeThermostatTemperatureArrayPort6GoOnline, sensorProbeMailJpgInline=sensorProbeMailJpgInline, sensorProbeTemperatureArrayPort3ContTimeLowCritical=sensorProbeTemperatureArrayPort3ContTimeLowCritical, sensorProbeThermostatTemperatureArrayPort5LowLimitAction2=sensorProbeThermostatTemperatureArrayPort5LowLimitAction2, sensorFuelNormalColor=sensorFuelNormalColor, sensorProbeThermostatTemperatureArrayPort7LowLimitAction1=sensorProbeThermostatTemperatureArrayPort7LowLimitAction1, sensorRelayManualAction=sensorRelayManualAction, sensorProbeDrycontactArrayPort4Direction=sensorProbeDrycontactArrayPort4Direction, sensorProbeDrycontactArrayPort5ContTimeNormal=sensorProbeDrycontactArrayPort5ContTimeNormal, sensorProbeThermostatTemperatureArrayPort7RelayControlPort=sensorProbeThermostatTemperatureArrayPort7RelayControlPort, sensorProbeSwitchEntry=sensorProbeSwitchEntry, sensorWaterGoOffline=sensorWaterGoOffline, spTemperatureArray3_4Status=spTemperatureArray3_4Status, sensorProbeRelayArrayPort2Index=sensorProbeRelayArrayPort2Index, sensorProbeTimeZone=sensorProbeTimeZone, sensorProbeRelayArrayPort3Entry=sensorProbeRelayArrayPort3Entry, sensorProbeThermostatTemperatureArrayPort5HighLimit1=sensorProbeThermostatTemperatureArrayPort5HighLimit1, sensorProbeThermostatTemperatureArrayPort2NormalAction1=sensorProbeThermostatTemperatureArrayPort2NormalAction1, sensorProbeHumidityDelayNormal=sensorProbeHumidityDelayNormal, sensorProbeTemperatureArrayPort6Table=sensorProbeTemperatureArrayPort6Table, sensorProbeRelayArrayPort7OpenURL=sensorProbeRelayArrayPort7OpenURL) mibBuilder.exportSymbols("SPAGENT-MIB", sensorProbeSoundDetectorContTimeLowCritical=sensorProbeSoundDetectorContTimeLowCritical, sensorHumidityNormalColor=sensorHumidityNormalColor, sensorProbeIRMSSensorTable=sensorProbeIRMSSensorTable, sensorWaterIndex=sensorWaterIndex, sensorProbeRelayArrayPort3RelayDescOn=sensorProbeRelayArrayPort3RelayDescOn, sensorProbeRelayArrayPort4GoOnline=sensorProbeRelayArrayPort4GoOnline, sensorTankSenderHighWarningDesc=sensorTankSenderHighWarningDesc, sensorProbeTemperatureArrayPort6GoOnline=sensorProbeTemperatureArrayPort6GoOnline, sensorWaterRopeType=sensorWaterRopeType, sensorRelayOnDesc=sensorRelayOnDesc, sensorProbeNoCameraDescription=sensorProbeNoCameraDescription, sensorProbeDrycontactArrayPort4ContTimeNormal=sensorProbeDrycontactArrayPort4ContTimeNormal, sensorProbeTypeADE7763Name=sensorProbeTypeADE7763Name, sensorProbeThermostatTemperatureArrayPort8HighLimit1=sensorProbeThermostatTemperatureArrayPort8HighLimit1, sensorProbeDrycontactArrayPort2ManualOutputCycleTime=sensorProbeDrycontactArrayPort2ManualOutputCycleTime, sensorProbeTypeNoSignalName=sensorProbeTypeNoSignalName, spSensorProbeKeepAlive=spSensorProbeKeepAlive, sensorProbeThermostatTemperatureArrayPort2LowLimit1=sensorProbeThermostatTemperatureArrayPort2LowLimit1, sensorProbeSoundDetectorSensorEntry=sensorProbeSoundDetectorSensorEntry, sensorProbeSoundDetectorContTimeNormal=sensorProbeSoundDetectorContTimeNormal, sensorProbeThermostatTemperatureArrayPort5LowLimitAction1=sensorProbeThermostatTemperatureArrayPort5LowLimitAction1, sensorProbeDrycontactArrayPort6Direction=sensorProbeDrycontactArrayPort6Direction, sensorProbeThermostatNormalAction2=sensorProbeThermostatNormalAction2, sensorProbeStatusNumberCriticalAndError=sensorProbeStatusNumberCriticalAndError, spVirtual18Status=spVirtual18Status, spRelayArray4_7Status=spRelayArray4_7Status, sensorAirflowLowWarning=sensorAirflowLowWarning, sensorProbeTempDelayNormal=sensorProbeTempDelayNormal, sensorDryContactPort7GoOnline=sensorDryContactPort7GoOnline, sensor4to20mADelayError=sensor4to20mADelayError, sensorProbeIRMSLowCritical=sensorProbeIRMSLowCritical, spSwitch34Status=spSwitch34Status, sensorProbeDrycontactArrayPort7Direction=sensorProbeDrycontactArrayPort7Direction, sensorProbeTypeTemperatureArrayName=sensorProbeTypeTemperatureArrayName, sensorProbeTemperatureArrayPort6=sensorProbeTemperatureArrayPort6, sensorAirflowHighCriticalColor=sensorAirflowHighCriticalColor, spTemperature8Status=spTemperature8Status, sensorProbeThermostatTemperatureArrayPort1EnableTime=sensorProbeThermostatTemperatureArrayPort1EnableTime, sensorProbeDefaultGateway=sensorProbeDefaultGateway, spSwitch44Status=spSwitch44Status, sensorProbeVirtualAnalogCalendar=sensorProbeVirtualAnalogCalendar, sensorProbeReboot=sensorProbeReboot, sensorProbeVirtualSwitchContTimeHighCritical=sensorProbeVirtualSwitchContTimeHighCritical, sensorProbeDrycontactArrayPort3Number=sensorProbeDrycontactArrayPort3Number, sensorProbeDrycontactArrayPort6ManualOutputCycleTime=sensorProbeDrycontactArrayPort6ManualOutputCycleTime, sensorRelayType=sensorRelayType, sensorProbeTemperatureArrayPort4DegreeRaw=sensorProbeTemperatureArrayPort4DegreeRaw, sensor4to20mAIndex=sensor4to20mAIndex, sensorAirflowGoOffline=sensorAirflowGoOffline, sensorProbeTemperatureArrayPort7Number=sensorProbeTemperatureArrayPort7Number, sensorProbeRelayArrayPort8=sensorProbeRelayArrayPort8, sensorProbeTemperatureArrayPort8DegreeRaw=sensorProbeTemperatureArrayPort8DegreeRaw, sensorProbeVirtualAnalogValueFactor=sensorProbeVirtualAnalogValueFactor, deviceDryContactStatus=deviceDryContactStatus, sensorProbeDrycontactArrayPort3ControlMode=sensorProbeDrycontactArrayPort3ControlMode, sensorProbeTempGoOnline=sensorProbeTempGoOnline, sensorACvoltageStatus=sensorACvoltageStatus, sensorProbeVirtualAnalogContTimeLowCritical=sensorProbeVirtualAnalogContTimeLowCritical, sensorProbeRelayArrayPort5RelayCycleTime=sensorProbeRelayArrayPort5RelayCycleTime, sensorProbeDrycontactArrayPort3Entry=sensorProbeDrycontactArrayPort3Entry, spRelayArray8_8Status=spRelayArray8_8Status, sensorMotionNormalDesc=sensorMotionNormalDesc, sensorProbeVirtualSwitchGoOnline=sensorProbeVirtualSwitchGoOnline, sensorLowWarningColor=sensorLowWarningColor, sensorProbeRelayArrayPort5Entry=sensorProbeRelayArrayPort5Entry, sensorProbeDrycontactArrayPort4ManualOutputAction=sensorProbeDrycontactArrayPort4ManualOutputAction, sensorProbeRelayArrayPort8NormalState=sensorProbeRelayArrayPort8NormalState, sensorProbeVirtualSwitchEmailTrapLimit=sensorProbeVirtualSwitchEmailTrapLimit, sensorProbeSwitchSirenCycleTime=sensorProbeSwitchSirenCycleTime, sensorProbeThermostatTemperatureArrayPort5RelayControlPort=sensorProbeThermostatTemperatureArrayPort5RelayControlPort, spRelayArray5Status=spRelayArray5Status, sensorTemperaturePort=sensorTemperaturePort, sensorProbeSendTestMail=sensorProbeSendTestMail, sensorProbeTempHighWarning=sensorProbeTempHighWarning, sensor4to20mADelayHighCritical=sensor4to20mADelayHighCritical, sensorProbeSwitchGoOnline=sensorProbeSwitchGoOnline, sensorProbeVirtualAnalogContTimeNormal=sensorProbeVirtualAnalogContTimeNormal, securityProbe=securityProbe, sensorDCvoltageHighWarning=sensorDCvoltageHighWarning, sensorProbeDrycontactArrayPort5Entry=sensorProbeDrycontactArrayPort5Entry, sensorDCvoltageDelayHighCritical=sensorDCvoltageDelayHighCritical, sensorProbeThermostatMode=sensorProbeThermostatMode, sensorProbeTemperatureArrayPort1DegreeType=sensorProbeTemperatureArrayPort1DegreeType, sensorProbeDrycontactArrayPort3ContTimeNormal=sensorProbeDrycontactArrayPort3ContTimeNormal, sensorProbeTemperatureArrayPort3ContTimeLowWarning=sensorProbeTemperatureArrayPort3ContTimeLowWarning, spVirtual12Status=spVirtual12Status, sensorProbeDrycontactArrayPort7=sensorProbeDrycontactArrayPort7, sensorFuelIndex=sensorFuelIndex, sensorTemperatureRearm=sensorTemperatureRearm, sensorFuelLowWarning=sensorFuelLowWarning, sensorSecurityCriticalDesc=sensorSecurityCriticalDesc, sensorAirflowHighWarningDesc=sensorAirflowHighWarningDesc, spRelayArray4_3Status=spRelayArray4_3Status, sensorProbeVirtualSwitchOpenURL=sensorProbeVirtualSwitchOpenURL, sensorProbeTemperatureArrayPort4HighCritical=sensorProbeTemperatureArrayPort4HighCritical, sensorProbeSoundDetectorHighCritical=sensorProbeSoundDetectorHighCritical, sensorProbeHumidityEmailTrapSchedule=sensorProbeHumidityEmailTrapSchedule, sensorProbeTemperatureArrayPort1DegreeRaw=sensorProbeTemperatureArrayPort1DegreeRaw, sensorProbeThermostatTemperatureArrayPort1GoOnline=sensorProbeThermostatTemperatureArrayPort1GoOnline, sensorThermostatStatus=sensorThermostatStatus, sensorTankSenderLowCritical=sensorTankSenderLowCritical, spSenUnknownStatus=spSenUnknownStatus, sensorProbeRelayArrayPort2Entry=sensorProbeRelayArrayPort2Entry, sensorProbeTemperatureArrayPort4Offset=sensorProbeTemperatureArrayPort4Offset, sensorProbeTemperatureArrayPort2Status=sensorProbeTemperatureArrayPort2Status, sensorProbeSwitchWaterRopeLeakLocation=sensorProbeSwitchWaterRopeLeakLocation, sensorProbeTempDescription=sensorProbeTempDescription, sensorProbeSwitchContTimeNormal=sensorProbeSwitchContTimeNormal, spSwitch10Status=spSwitch10Status, sensorProbeSoftMotionDescription=sensorProbeSoftMotionDescription, sensorProbeDrycontactArrayPort1Description=sensorProbeDrycontactArrayPort1Description, sensorProbeDrycontactArrayPort4Index=sensorProbeDrycontactArrayPort4Index, sensor4to20mAPort=sensor4to20mAPort, sensorProbeTemperatureArrayPort7LowCritical=sensorProbeTemperatureArrayPort7LowCritical, sensorProbeThermostatTemperatureArrayPort5HighLimit2=sensorProbeThermostatTemperatureArrayPort5HighLimit2, sensorHumiditySensorErrorColor=sensorHumiditySensorErrorColor, sensorProbeTempAcknowledgement=sensorProbeTempAcknowledgement, sensorPowerNormalDesc=sensorPowerNormalDesc, sensorProbeSoundDetectorCalendar=sensorProbeSoundDetectorCalendar, sensorProbeDrycontactArrayPort1Online=sensorProbeDrycontactArrayPort1Online, sensorProbeRelayArrayPort7URL=sensorProbeRelayArrayPort7URL, sensorProbeTrapReIntervalAlive=sensorProbeTrapReIntervalAlive, sensorProbeThermostatTemperatureArrayPort3LowLimitAction2=sensorProbeThermostatTemperatureArrayPort3LowLimitAction2, sensorProbeTemperatureArrayPort7=sensorProbeTemperatureArrayPort7, sensorProbeTemperatureArrayPort8GoOnline=sensorProbeTemperatureArrayPort8GoOnline, sensorTankSenderRaw=sensorTankSenderRaw, sensorProbeVRMSContTimeSensorError=sensorProbeVRMSContTimeSensorError, spTemperature6Status=spTemperature6Status, sensorDisplayStyle=sensorDisplayStyle, spRelayArray7_3Status=spRelayArray7_3Status, sensorSirenDescription=sensorSirenDescription, sensorProbeEnergyStatus=sensorProbeEnergyStatus, sensorProbeTrapMailPollInterval=sensorProbeTrapMailPollInterval, sensorProbeTypePCF8574XRelayName=sensorProbeTypePCF8574XRelayName, sensorProbeHumidityLocation=sensorProbeHumidityLocation, sensorProbeNoCameraContTimeHighCritical=sensorProbeNoCameraContTimeHighCritical, sensorTemperatureNormalDesc=sensorTemperatureNormalDesc, sensor4to20mANormalColor=sensor4to20mANormalColor, sensorPowerDelayHighWarning=sensorPowerDelayHighWarning, spSwitch29Status=spSwitch29Status, spSwitch52Status=spSwitch52Status, sensorProbeIRMSDatacollectType=sensorProbeIRMSDatacollectType, sensorThermostatSubPort=sensorThermostatSubPort, sensorProbeMailLastStatus=sensorProbeMailLastStatus, sensorProbeVRMSOnline=sensorProbeVRMSOnline, spRelayArray6_3Status=spRelayArray6_3Status, sensorProbeTemperatureArrayPort2Offset=sensorProbeTemperatureArrayPort2Offset, sensorProbeTypeADE7763VRMSName=sensorProbeTypeADE7763VRMSName, spRelayArray2_3Status=spRelayArray2_3Status, sensorMotionCriticalDesc=sensorMotionCriticalDesc, sensorDryContactPort9GoOnline=sensorDryContactPort9GoOnline, sensorProbeThermostatTemperatureArrayPort2LowLimitAction2=sensorProbeThermostatTemperatureArrayPort2LowLimitAction2, sensorProbeEnergyCalendar=sensorProbeEnergyCalendar, sensorProbeDrycontactArrayPort1=sensorProbeDrycontactArrayPort1, sensorProbeDrycontactArrayPort7Number=sensorProbeDrycontactArrayPort7Number, sensorProbeHumiditySendTrap=sensorProbeHumiditySendTrap, sensorProbeDrycontactArrayPort7Description=sensorProbeDrycontactArrayPort7Description, sensorTemperatureLowCritical=sensorTemperatureLowCritical, sensorTemperatureDelayLowCritical=sensorTemperatureDelayLowCritical, spTemperatureArray5_2Status=spTemperatureArray5_2Status, sensorProbeTemperatureArrayPort3LowCritical=sensorProbeTemperatureArrayPort3LowCritical, sensorSecurityTable=sensorSecurityTable, sensorTemperatureHighCriticalColor=sensorTemperatureHighCriticalColor, sensorProbeSwitchLocation=sensorProbeSwitchLocation, sensorProbeSwitchRelayAction=sensorProbeSwitchRelayAction, sensorProbeVRMSContTimeLowCritical=sensorProbeVRMSContTimeLowCritical, sensorProbeTrapCommunity=sensorProbeTrapCommunity, sensorProbeThermostatTemperatureArrayPort3RelayControlPort=sensorProbeThermostatTemperatureArrayPort3RelayControlPort, sensorPowerMinValue=sensorPowerMinValue, sensorProbeEntry=sensorProbeEntry, sensorProbeSwitchRelayControlMode=sensorProbeSwitchRelayControlMode, sensorHumidityPort=sensorHumidityPort, sensorProbeWattHoursDescription=sensorProbeWattHoursDescription, sensorProbeVirtualAnalogLowWarning=sensorProbeVirtualAnalogLowWarning, sensorSmokeCriticalColor=sensorSmokeCriticalColor, sensorProbeNoCameraSensorEntry=sensorProbeNoCameraSensorEntry, spRelayArray3_5Status=spRelayArray3_5Status, sensorProbeVirtualAnalogStatus=sensorProbeVirtualAnalogStatus, sensorProbeTemperatureArrayPort8Rearm=sensorProbeTemperatureArrayPort8Rearm, sensorProbeEnergySensorIndex=sensorProbeEnergySensorIndex, sensorProbeSwitchSirenControlMode=sensorProbeSwitchSirenControlMode, sensorNormalColor=sensorNormalColor, sensorTankSenderSensorErrorDesc=sensorTankSenderSensorErrorDesc, sensorProbeDrycontactArrayPort3=sensorProbeDrycontactArrayPort3, sensorSecurityStatus=sensorSecurityStatus, sensorProbeThermostatTemperatureArrayPort6HighLimitAction2=sensorProbeThermostatTemperatureArrayPort6HighLimitAction2, sensorIntelligentPort7GoOnline=sensorIntelligentPort7GoOnline, sensorTemperatureTable=sensorTemperatureTable, spEnergy6Status=spEnergy6Status, sensorProbeTemperatureArrayPort1URL=sensorProbeTemperatureArrayPort1URL, sensorProbeTrapDestination=sensorProbeTrapDestination, sensorProbeTemperatureArrayPort8ContTimeLowWarning=sensorProbeTemperatureArrayPort8ContTimeLowWarning, sensorFuelStatus=sensorFuelStatus, sensorProbeSoftMotionSensorNumber=sensorProbeSoftMotionSensorNumber, spEnergy1Status=spEnergy1Status, sensorProbeTemperatureArrayPort3Description=sensorProbeTemperatureArrayPort3Description, sensorProbeSoundDetectorIndex=sensorProbeSoundDetectorIndex, sensorProbeTemperatureArrayPort1LowCritical=sensorProbeTemperatureArrayPort1LowCritical, sensorThermostatLowWarningColor=sensorThermostatLowWarningColor, spVirtual6Status=spVirtual6Status, sensorProbeNumberOfSensorPort=sensorProbeNumberOfSensorPort, sensorProbeThermostatTemperatureArrayPort3Value=sensorProbeThermostatTemperatureArrayPort3Value, sensorProbeNoCameraContTimeNormal=sensorProbeNoCameraContTimeNormal, sensorTankSenderValue=sensorTankSenderValue, sensorProbeFirmwareVersion=sensorProbeFirmwareVersion, sensorProbeTemperatureArrayPort4Online=sensorProbeTemperatureArrayPort4Online, sensorProbeThermostatTemperatureArrayPort2Description=sensorProbeThermostatTemperatureArrayPort2Description, spRelayArray1_5Status=spRelayArray1_5Status, spVirtual13Status=spVirtual13Status, sensorProbeTemperatureArrayPort6Description=sensorProbeTemperatureArrayPort6Description, spRelayArray8_2Status=spRelayArray8_2Status, sensorProbeRelayArrayPort7Number=sensorProbeRelayArrayPort7Number, secSensor=secSensor, sensorProbeTemperatureArrayPort5HighWarning=sensorProbeTemperatureArrayPort5HighWarning, spRelayArray4_1Status=spRelayArray4_1Status, sensorTemperatureDisplayStyle=sensorTemperatureDisplayStyle, sensorProbeTemperatureArrayPort6ContTimeHighWarning=sensorProbeTemperatureArrayPort6ContTimeHighWarning, sensor4to20mADisplayStyle=sensor4to20mADisplayStyle, sensorProbeIRMSRelayActiveStatus=sensorProbeIRMSRelayActiveStatus, sensorProbeTemperatureArrayPort5DatacollectType=sensorProbeTemperatureArrayPort5DatacollectType, sensorPowerLowWarning=sensorPowerLowWarning, sensorProbeIRMSAcknowledgement=sensorProbeIRMSAcknowledgement, sensorProbeTempEmailInterval=sensorProbeTempEmailInterval, sensorProbeSubnetMask=sensorProbeSubnetMask, spRelayArray6_8Status=spRelayArray6_8Status, spIRMS6Status=spIRMS6Status, sensorProbeThermostatTemperatureArrayPort1Description=sensorProbeThermostatTemperatureArrayPort1Description, spRelayArray7_6Status=spRelayArray7_6Status, sensorProbeTemperatureArrayPort2DegreeType=sensorProbeTemperatureArrayPort2DegreeType, sensorProbeRelayArrayPort3Status=sensorProbeRelayArrayPort3Status, spRelayArray2_5Status=spRelayArray2_5Status, sensorProbeVirtualSwitchDescription=sensorProbeVirtualSwitchDescription, sensorProbeTemperatureArrayPort3HighWarning=sensorProbeTemperatureArrayPort3HighWarning, sensorProbeHumidityRelayActiveStatus=sensorProbeHumidityRelayActiveStatus, sensorProbeSoftMotionContTimeHighCritical=sensorProbeSoftMotionContTimeHighCritical, sensorTemperatureGoOffline=sensorTemperatureGoOffline, sensorProbeTemperatureArrayPort1Online=sensorProbeTemperatureArrayPort1Online, sensorProbeRelayArrayPort4ManualRelayCycleTime=sensorProbeRelayArrayPort4ManualRelayCycleTime, sensorProbeDrycontactArrayPort5GoOnline=sensorProbeDrycontactArrayPort5GoOnline, sensorThermostatDelayHighCritical=sensorThermostatDelayHighCritical, sensorFuelLowCriticalDesc=sensorFuelLowCriticalDesc, sensorProbeSetSyslogMsgPrefix=sensorProbeSetSyslogMsgPrefix, sensorProbeTypePowerMeterName=sensorProbeTypePowerMeterName, sensorProbeRelayArrayPort8URL=sensorProbeRelayArrayPort8URL, sensorProbeDrycontactArrayPort7OutputDescOn=sensorProbeDrycontactArrayPort7OutputDescOn, sensorProbeMailSMTP=sensorProbeMailSMTP, sensorProbeTempSirenOnPort=sensorProbeTempSirenOnPort, sensorProbeRelayArrayPort1Online=sensorProbeRelayArrayPort1Online, sensorSmokeStatus=sensorSmokeStatus, sensorProbeThermostatTemperatureArrayPort4Description=sensorProbeThermostatTemperatureArrayPort4Description, spTemperature5Status=spTemperature5Status, sensorProbeRelayArrayPort1NormalState=sensorProbeRelayArrayPort1NormalState, sensorProbeTypeDrycontactInoutName=sensorProbeTypeDrycontactInoutName, sensorEntry=sensorEntry) mibBuilder.exportSymbols("SPAGENT-MIB", sensorSecurityEntry=sensorSecurityEntry, sensorProbeTraps=sensorProbeTraps, sensorProbeDrycontactArrayPort1Direction=sensorProbeDrycontactArrayPort1Direction, spEnergy2Status=spEnergy2Status, sensorProbeSwitchOnline=sensorProbeSwitchOnline, sensorThermostatHighCriticalDesc=sensorThermostatHighCriticalDesc, sensorProbeDrycontactArrayPort3ContTimeCritical=sensorProbeDrycontactArrayPort3ContTimeCritical, sensorProbeThermostatHighLimitAction2=sensorProbeThermostatHighLimitAction2, sensorProbeSwitchManualRelayCycleTime=sensorProbeSwitchManualRelayCycleTime, spCriticalStatus=spCriticalStatus, sensorProbeDrycontactArrayPort4=sensorProbeDrycontactArrayPort4, sensor4to20mALowCritical=sensor4to20mALowCritical, sensorRelayManualCycleTime=sensorRelayManualCycleTime, sensorProbeVRMSContTimeLowWarning=sensorProbeVRMSContTimeLowWarning, sensorProbeTempEmailTrapLimit=sensorProbeTempEmailTrapLimit, sensorHumidityDisplayStyle=sensorHumidityDisplayStyle, sensorProbeDrycontactArrayPort8OutputDescOff=sensorProbeDrycontactArrayPort8OutputDescOff, spRelayArray3_4Status=spRelayArray3_4Status, sensorProbeEnergyGoOnline=sensorProbeEnergyGoOnline, sensorLowWarningDescription=sensorLowWarningDescription, spTemperatureStatus=spTemperatureStatus, sensorProbeThermostatTemperatureArrayPort7NormalAction2=sensorProbeThermostatTemperatureArrayPort7NormalAction2, sensorDryContactSubPort=sensorDryContactSubPort, sensorDryContactPort14GoOnline=sensorDryContactPort14GoOnline, sensorProbeRouteAdd=sensorProbeRouteAdd, sensorProbeSwitchAcknowledgement=sensorProbeSwitchAcknowledgement, sensorProbeTemperatureArrayPort7Online=sensorProbeTemperatureArrayPort7Online, sensorProbeTemperatureArrayPort3Entry=sensorProbeTemperatureArrayPort3Entry, deviceInfo=deviceInfo, spRelayArray2_8Status=spRelayArray2_8Status, sensorProbeRelayArrayPort7Index=sensorProbeRelayArrayPort7Index, sensorProbeIRMSHighWarning=sensorProbeIRMSHighWarning, sensorHumidityRaw=sensorHumidityRaw, sensorProbeAutoSense=sensorProbeAutoSense, spVirtual15Status=spVirtual15Status, spRelayArray7_4Status=spRelayArray7_4Status, spVRMS1Status=spVRMS1Status, sensorProbeThermostatTemperatureArrayPort5EnableTime=sensorProbeThermostatTemperatureArrayPort5EnableTime, spSwitch54Status=spSwitch54Status, spStatus=spStatus, sensorProbeIRMSSirenActiveStatus=sensorProbeIRMSSirenActiveStatus, sensorProbeSwitchDescription=sensorProbeSwitchDescription, sensorProbeThermostatTemperatureArrayPort8LowLimitAction2=sensorProbeThermostatTemperatureArrayPort8LowLimitAction2, sensorSirenDeviceIndex=sensorSirenDeviceIndex, spSwitch67Status=spSwitch67Status, sensorThermostatGoOffline=sensorThermostatGoOffline, sensorProbeHumidityCalendar=sensorProbeHumidityCalendar, spAnalogueStatus=spAnalogueStatus, sensorProbeRelayArrayPort8GoOnline=sensorProbeRelayArrayPort8GoOnline, sensorProbeVirtualSwitchContTimeNormal=sensorProbeVirtualSwitchContTimeNormal, sensorPowerInterval=sensorPowerInterval, sensorWaterRopeNormalDesc=sensorWaterRopeNormalDesc, spSwitch56Status=spSwitch56Status, sensorProbeTemperatureArrayPort8ContTimeHighCritical=sensorProbeTemperatureArrayPort8ContTimeHighCritical, sensorDCvoltageHighCritical=sensorDCvoltageHighCritical, sensorDCvoltageDisplayStyle=sensorDCvoltageDisplayStyle, spRelayArray5_6Status=spRelayArray5_6Status, sensorProbeSnmpTrapPort=sensorProbeSnmpTrapPort, sensorProbeTemperatureArrayPort1Entry=sensorProbeTemperatureArrayPort1Entry, sensorProbeDrycontactArrayPort1Status=sensorProbeDrycontactArrayPort1Status, sensorProbeDrycontactArrayPort2Online=sensorProbeDrycontactArrayPort2Online, spIRMS4Status=spIRMS4Status, sensorProbeTemperatureArrayPort4ContTimeLowWarning=sensorProbeTemperatureArrayPort4ContTimeLowWarning, sensorProbeUsePassword=sensorProbeUsePassword, sensorProbeTemperatureArrayPort7Calendar=sensorProbeTemperatureArrayPort7Calendar, sensorProbeRequestResendTrap=sensorProbeRequestResendTrap, sensorProbeTemperatureArrayPort5URL=sensorProbeTemperatureArrayPort5URL, sensorProbeTemperatureArrayPort8Calendar=sensorProbeTemperatureArrayPort8Calendar, sensorProbeTemperatureArrayPort2URL=sensorProbeTemperatureArrayPort2URL, sensorProbeTemperatureArrayPort4URL=sensorProbeTemperatureArrayPort4URL, sensorTankSenderUnit=sensorTankSenderUnit, sensorProbeRelayArrayPort3ManualRelayAction=sensorProbeRelayArrayPort3ManualRelayAction, sensorTankSenderLowWarning=sensorTankSenderLowWarning, spSwitch36Status=spSwitch36Status, spTemperatureArray6Status=spTemperatureArray6Status, sensorMotionPort=sensorMotionPort, sensorProbeClearSysLog=sensorProbeClearSysLog, sensorProbeDrycontactArrayPort2Table=sensorProbeDrycontactArrayPort2Table, spTemperatureArray5Status=spTemperatureArray5Status, sensorProbeEnergyHighCritical=sensorProbeEnergyHighCritical, sensorProbeTemperatureArrayPort5ContTimeHighCritical=sensorProbeTemperatureArrayPort5ContTimeHighCritical, sensorProbeThermostatTemperatureArrayPort5NormalAction2=sensorProbeThermostatTemperatureArrayPort5NormalAction2, sensorPowerValue=sensorPowerValue, sensorProbeThermostatTemperatureArrayPort5LowLimit1=sensorProbeThermostatTemperatureArrayPort5LowLimit1, sensorHumiditySubPort=sensorHumiditySubPort, sensorTemperatureStatus=sensorTemperatureStatus, sensorProbeThermostatTemperatureArrayPort6Value=sensorProbeThermostatTemperatureArrayPort6Value, sensorProbeTemperatureArrayPort2ContTimeNormal=sensorProbeTemperatureArrayPort2ContTimeNormal, sensorProbeHumidityEmailInterval=sensorProbeHumidityEmailInterval, sensorProbeTemperatureArrayPort3DegreeRaw=sensorProbeTemperatureArrayPort3DegreeRaw, sensorDryContactIndex=sensorDryContactIndex, sensor4to20mALowCriticalColor=sensor4to20mALowCriticalColor, sensorProbeDrycontactArrayPort5OutputDescOn=sensorProbeDrycontactArrayPort5OutputDescOn, sensorProbeTemperatureArrayPort4HighWarning=sensorProbeTemperatureArrayPort4HighWarning, sensorProbeSwitchNormalState=sensorProbeSwitchNormalState, sensorProbeProductRevision=sensorProbeProductRevision, spTemperature7Status=spTemperature7Status, sensorProbeTempDegreeRaw=sensorProbeTempDegreeRaw, sensorProbePTZBrand=sensorProbePTZBrand, sensorProbeDrycontactArrayPort3Direction=sensorProbeDrycontactArrayPort3Direction, sensorAirflowRaw=sensorAirflowRaw, sensorProbeDrycontactArrayPort3ManualOutputAction=sensorProbeDrycontactArrayPort3ManualOutputAction, sensorTemperatureHighWarningDesc=sensorTemperatureHighWarningDesc, sensorDryContactDirection=sensorDryContactDirection, sensorProbeDrycontactArrayPort5URL=sensorProbeDrycontactArrayPort5URL, sensorWaterDescription=sensorWaterDescription, sensorProbeVRMSRaw=sensorProbeVRMSRaw, sensorProbeTemperatureArrayPort4ContTimeSensorError=sensorProbeTemperatureArrayPort4ContTimeSensorError, sensorProbeTemperatureArrayPort6HighCritical=sensorProbeTemperatureArrayPort6HighCritical, sensorProbeSoundDetectorContTimeSensorError=sensorProbeSoundDetectorContTimeSensorError, sensorIntelligentPort8GoOnline=sensorIntelligentPort8GoOnline, sensorProbeThermostatTemperatureArrayPort1NormalAction1=sensorProbeThermostatTemperatureArrayPort1NormalAction1, sensorProbeTypeAirflowName=sensorProbeTypeAirflowName, sensorDCvoltageJumper=sensorDCvoltageJumper, sensorSmokeIndex=sensorSmokeIndex, sensorProbeRelayArrayPort1Table=sensorProbeRelayArrayPort1Table, sensorProbeRelayArrayPort6RelayCycleTime=sensorProbeRelayArrayPort6RelayCycleTime, sensorProbeRelayArrayPort3=sensorProbeRelayArrayPort3, sensorProbeThermostatTemperatureArrayPort7GoOnline=sensorProbeThermostatTemperatureArrayPort7GoOnline, spRelayArray8Status=spRelayArray8Status, spSwitch45Status=spSwitch45Status, sensorDryContactPort10GoOnline=sensorDryContactPort10GoOnline, sensorProbeThermostatTemperatureArrayPort4LowLimitAction1=sensorProbeThermostatTemperatureArrayPort4LowLimitAction1, spTemperatureArray3_6Status=spTemperatureArray3_6Status, sensorProbeHumidity4to20mAUnit=sensorProbeHumidity4to20mAUnit, sensorProbeVRMSSirenAction=sensorProbeVRMSSirenAction, spSwitch19Status=spSwitch19Status, spTemperatureArray4_7Status=spTemperatureArray4_7Status, sensorProbeTypeXDryName=sensorProbeTypeXDryName, sensorFuelLowCriticalColor=sensorFuelLowCriticalColor, sensorProbeProductType=sensorProbeProductType, sensorProbeTemperatureArrayPort6DatacollectType=sensorProbeTemperatureArrayPort6DatacollectType, sensorProbeIRMSSirenAction=sensorProbeIRMSSirenAction, sensorProbeTemperatureArrayPort8URL=sensorProbeTemperatureArrayPort8URL, sensorProbeDrycontactArrayPort4Number=sensorProbeDrycontactArrayPort4Number, sensorProbeTypeSHT11HumidityName=sensorProbeTypeSHT11HumidityName, sensorTemperatureLowWarning=sensorTemperatureLowWarning, sensorMotionSubPort=sensorMotionSubPort, spRelayArray5_3Status=spRelayArray5_3Status, sensorHumidityPercent=sensorHumidityPercent, spSwitch30Status=spSwitch30Status, sensorProbeIRMSCalendar=sensorProbeIRMSCalendar, spUnknownStatus=spUnknownStatus, sensorProbeRelayArrayPort8Online=sensorProbeRelayArrayPort8Online, sensorProbeThermostatLowLimit1=sensorProbeThermostatLowLimit1, spRelayArray3Status=spRelayArray3Status, sensorProbeThermostatTemperatureArrayPort6LowLimit2=sensorProbeThermostatTemperatureArrayPort6LowLimit2, sensorProbeTimeOfDay=sensorProbeTimeOfDay, sensorProbeIRMSContTimeLowWarning=sensorProbeIRMSContTimeLowWarning, sensorPowerStatus=sensorPowerStatus, sensorProbeTemperatureArrayPort5Description=sensorProbeTemperatureArrayPort5Description, sensorProbeDNSServer=sensorProbeDNSServer, sensorProbeEnergyRearm=sensorProbeEnergyRearm, sensorProbeDrycontactArrayPort2OpenURL=sensorProbeDrycontactArrayPort2OpenURL, sensorDCvoltageGoOffline=sensorDCvoltageGoOffline, sensorProbeRelayArrayPort5ManualRelayAction=sensorProbeRelayArrayPort5ManualRelayAction, sensorProbeThermostatTemperatureArrayPort3HighLimit2=sensorProbeThermostatTemperatureArrayPort3HighLimit2, sensorDCvoltageDeviceIndex=sensorDCvoltageDeviceIndex, sensorProbeDrycontactArrayPort3Description=sensorProbeDrycontactArrayPort3Description, sensorProbeThermostatTemperatureArrayPort5Value=sensorProbeThermostatTemperatureArrayPort5Value, sensorProbeTemperatureArraySensor=sensorProbeTemperatureArraySensor, sensorProbeTemperatureArrayPort3ContTimeNormal=sensorProbeTemperatureArrayPort3ContTimeNormal, sensorProbeTemperatureArrayPort3ContTimeHighWarning=sensorProbeTemperatureArrayPort3ContTimeHighWarning, sensorNormalDescription=sensorNormalDescription, sensorProbeHumidityTable=sensorProbeHumidityTable, sensorFuelTable=sensorFuelTable, sensorProbeThermostatTemperatureArrayPort4Index=sensorProbeThermostatTemperatureArrayPort4Index, sensorProbeIRMSContTimeLowCritical=sensorProbeIRMSContTimeLowCritical, sensorTankSenderHighWarning=sensorTankSenderHighWarning, sensor4to20mASensorErrorDesc=sensor4to20mASensorErrorDesc, sensor4to20mALowWarning=sensor4to20mALowWarning, sensorProbeSwitchOutputLevel=sensorProbeSwitchOutputLevel, sensorProbeVirtualAnalogRearm=sensorProbeVirtualAnalogRearm, sensorProbeEnergySirenCycleTime=sensorProbeEnergySirenCycleTime, sensorThermostatEntry=sensorThermostatEntry, sensorDCvoltageLowCriticalDesc=sensorDCvoltageLowCriticalDesc, sensorHumidityDelayNormal=sensorHumidityDelayNormal, sensorProbeRelayArrayPort8ManualRelayAction=sensorProbeRelayArrayPort8ManualRelayAction, sensorProbeTemperatureArrayPort6Online=sensorProbeTemperatureArrayPort6Online, sensorPowerDelayLowCritical=sensorPowerDelayLowCritical, sensorProbeThermostatTemperatureArrayPort3HighLimit1=sensorProbeThermostatTemperatureArrayPort3HighLimit1, sensorTemperatureIndex=sensorTemperatureIndex, sensorProbeDrycontactArrayPort1Index=sensorProbeDrycontactArrayPort1Index, sensorProbeSoftMotionContTimeNormal=sensorProbeSoftMotionContTimeNormal, sensorProbeDrycontactArrayPort1Table=sensorProbeDrycontactArrayPort1Table, sensorDCvoltageStatus=sensorDCvoltageStatus, sensorProbeRelayArrayPort5Table=sensorProbeRelayArrayPort5Table, sensorProbeTempDegreeType=sensorProbeTempDegreeType, spAnalogue7Status=spAnalogue7Status, spSwitch53Status=spSwitch53Status, sensorProbeSwitchOpenURL=sensorProbeSwitchOpenURL, sensorProbeThermostatTemperatureArrayPort2NormalAction2=sensorProbeThermostatTemperatureArrayPort2NormalAction2, sensorProbeDrycontactArrayPort6Number=sensorProbeDrycontactArrayPort6Number, spManufName=spManufName, sensorProbeEnergyOpenURL=sensorProbeEnergyOpenURL, sensorProbeThermostatTemperatureArrayPort1HighLimit2=sensorProbeThermostatTemperatureArrayPort1HighLimit2, spSwitch28Status=spSwitch28Status, sensorProbeSwitchSendMail=sensorProbeSwitchSendMail, sensorProbeMailRecpt=sensorProbeMailRecpt, sensorProbeDrycontactArrayPort3Status=sensorProbeDrycontactArrayPort3Status, sensorProbeRelayArrayPort1Entry=sensorProbeRelayArrayPort1Entry, sensorProbeThermostatTemperatureArrayPort7HighLimitAction2=sensorProbeThermostatTemperatureArrayPort7HighLimitAction2, sensorProbeRelayArrayPort6GoOnline=sensorProbeRelayArrayPort6GoOnline, sensorProbeThermostatTemperatureArrayPort6Index=sensorProbeThermostatTemperatureArrayPort6Index, spTemperatureArray3_8Status=spTemperatureArray3_8Status, spVirtual7Status=spVirtual7Status, sensorProbeNtpMode=sensorProbeNtpMode, spTemperatureArray4_1Status=spTemperatureArray4_1Status, sensorProbeThermostatTemperatureArrayPort4EnableTime=sensorProbeThermostatTemperatureArrayPort4EnableTime, spRelayArray7_1Status=spRelayArray7_1Status, sensorProbeRelayArrayPort6Description=sensorProbeRelayArrayPort6Description, sensorTankSenderDelayHighWarning=sensorTankSenderDelayHighWarning, spSensorType=spSensorType, sensorProbeRelayArrayPort1URL=sensorProbeRelayArrayPort1URL, sensorAirflowDelayHighCritical=sensorAirflowDelayHighCritical, sensorProbeThermostatTemperatureArrayPort6EnableTime=sensorProbeThermostatTemperatureArrayPort6EnableTime, sensorTemperatureDescription=sensorTemperatureDescription, sensorProbeVirtualSwitchNormalState=sensorProbeVirtualSwitchNormalState, sensorProbeRelayArrayPort3Table=sensorProbeRelayArrayPort3Table, sensorProbeTemperatureArrayPort7LowWarning=sensorProbeTemperatureArrayPort7LowWarning, spTemperatureArray2Status=spTemperatureArray2Status, sensorProbeIRMSOnline=sensorProbeIRMSOnline, sensorProbeCameraRotate=sensorProbeCameraRotate, sensorProbeVirtualAnalogUnit=sensorProbeVirtualAnalogUnit, sensorHumidityLowWarning=sensorHumidityLowWarning, sensorProbeVirtualAnalogOnline=sensorProbeVirtualAnalogOnline, sensorProbeHumidityDelayError=sensorProbeHumidityDelayError, sensorProbeRelayArrayPort2Number=sensorProbeRelayArrayPort2Number, deviceIntelligentInfo=deviceIntelligentInfo, sensorProbeDrycontactArrayPort2ContTimeNormal=sensorProbeDrycontactArrayPort2ContTimeNormal, sensorProbeRelayArrayPort2Table=sensorProbeRelayArrayPort2Table, sensorProbeHumidityStatus=sensorProbeHumidityStatus, sensorProbeIRMSRelayOnPort=sensorProbeIRMSRelayOnPort, sensorProbeTempSirenActiveStatus=sensorProbeTempSirenActiveStatus, sensorProbeTemperatureArrayPort7DegreeType=sensorProbeTemperatureArrayPort7DegreeType, sensorProbeThermostatTemperatureArrayPort6LowLimit1=sensorProbeThermostatTemperatureArrayPort6LowLimit1, sensorSirenStatus=sensorSirenStatus, sensorProbeTemperatureArrayPort5ContTimeNormal=sensorProbeTemperatureArrayPort5ContTimeNormal, spTemperatureArray2_7Status=spTemperatureArray2_7Status, spBoardDescription=spBoardDescription, sensorProbeRelayArrayPort5URL=sensorProbeRelayArrayPort5URL, sensorProbeIRMSEmailTrapLimit=sensorProbeIRMSEmailTrapLimit, sensorProbeTemperatureArrayPort3Rearm=sensorProbeTemperatureArrayPort3Rearm, sensorTankSenderDelayNormal=sensorTankSenderDelayNormal, sensorProbeDrycontactArrayPort7ManualOutputAction=sensorProbeDrycontactArrayPort7ManualOutputAction, sensorProbeTemperatureArrayPort1Index=sensorProbeTemperatureArrayPort1Index, sensorProbeThermostatTemperatureArrayPort6Description=sensorProbeThermostatTemperatureArrayPort6Description, sensorProbeTemperatureArrayPort8Number=sensorProbeTemperatureArrayPort8Number, sensorProbeDrycontactArrayPort7Table=sensorProbeDrycontactArrayPort7Table, sensorProbeRelayArrayPort4URL=sensorProbeRelayArrayPort4URL, sensorWaterRopeDeviceIndex=sensorWaterRopeDeviceIndex, sensorProbeTemperatureArrayPort6ContTimeSensorError=sensorProbeTemperatureArrayPort6ContTimeSensorError, sensorDCvoltageHighCriticalColor=sensorDCvoltageHighCriticalColor, sensorThermostatDisplayStyle=sensorThermostatDisplayStyle) mibBuilder.exportSymbols("SPAGENT-MIB", sensorLowCriticalDescription=sensorLowCriticalDescription, sensorFuelAmountMaxValue=sensorFuelAmountMaxValue, sensorRelayDescription=sensorRelayDescription, sensorDryContactNormalState=sensorDryContactNormalState, sensorProbeThermostatTemperatureArrayPort8Online=sensorProbeThermostatTemperatureArrayPort8Online, sensorThermostatTable=sensorThermostatTable, spTemperatureArray2_1Status=spTemperatureArray2_1Status, sensorFuelDelayNormal=sensorFuelDelayNormal, sensorProbeHumidityURL=sensorProbeHumidityURL, sensorProbeHumidityEmailTrapInterval=sensorProbeHumidityEmailTrapInterval, sensorProbeDrycontactArrayPort6ManualOutputAction=sensorProbeDrycontactArrayPort6ManualOutputAction, deviceIntelligentIndex=deviceIntelligentIndex, sensorProbeTempSirenCycleTime=sensorProbeTempSirenCycleTime, sensorACvoltageGoOffline=sensorACvoltageGoOffline, sensorProbeSwitchManualRelayAction=sensorProbeSwitchManualRelayAction, sensorProbeVirtualAnalogGoOnline=sensorProbeVirtualAnalogGoOnline, sensorProbeTempLocation=sensorProbeTempLocation, sensorProbeTemperatureArrayPort2ContTimeSensorError=sensorProbeTemperatureArrayPort2ContTimeSensorError, sensorProbeTemperatureArrayPort5Index=sensorProbeTemperatureArrayPort5Index, spSwitch18Status=spSwitch18Status, sensorProbeSoftMotionCalendar=sensorProbeSoftMotionCalendar, sensorProbeThermostatTemperatureArrayPort2Value=sensorProbeThermostatTemperatureArrayPort2Value, sensorProbeIRMSRelayAction=sensorProbeIRMSRelayAction, sensorProbeTemperatureArrayPort7Rearm=sensorProbeTemperatureArrayPort7Rearm, sensorProbeTemperatureArrayPort8LowCritical=sensorProbeTemperatureArrayPort8LowCritical, sensorProbeVirtualAnalogDescription=sensorProbeVirtualAnalogDescription, sensorDCvoltageValue=sensorDCvoltageValue, sensorProbeTemperatureArrayPort6ContTimeHighCritical=sensorProbeTemperatureArrayPort6ContTimeHighCritical, deviceDescription=deviceDescription, sensorProbeSoundDetectorPulseLength=sensorProbeSoundDetectorPulseLength, sensorProbeTemperatureArrayPort7Value=sensorProbeTemperatureArrayPort7Value, sensorProbeDrycontactArrayPort4Online=sensorProbeDrycontactArrayPort4Online, sensorProbeDrycontactArrayPort6Index=sensorProbeDrycontactArrayPort6Index, sensorHumidityHighCritical=sensorHumidityHighCritical, sensorProbeEnergyRelayAction=sensorProbeEnergyRelayAction, sensorProbeThermostatTemperatureArrayPort3LowLimit2=sensorProbeThermostatTemperatureArrayPort3LowLimit2, sensorProbeDrycontactArrayPort8OutputDescOn=sensorProbeDrycontactArrayPort8OutputDescOn, sensorDryContactOnDesc=sensorDryContactOnDesc, sensorProbeDrycontactArrayPort7GoOnline=sensorProbeDrycontactArrayPort7GoOnline, sensorProbeThermostatHighLimitAction1=sensorProbeThermostatHighLimitAction1, sensorThermostatHighCritical=sensorThermostatHighCritical, sensorHumidityDelayLowCritical=sensorHumidityDelayLowCritical, sensorProbeDrycontactArrayPort1URL=sensorProbeDrycontactArrayPort1URL, spSwitch39Status=spSwitch39Status, sensorProbeEnergyContTimeNormal=sensorProbeEnergyContTimeNormal, sensorProbeSoundDetectorLowCritical=sensorProbeSoundDetectorLowCritical, sensorProbeRelayArrayPort4OpenURL=sensorProbeRelayArrayPort4OpenURL, spEnergy7Status=spEnergy7Status, sensorProbeTemperatureArrayPort1Calendar=sensorProbeTemperatureArrayPort1Calendar, sensorProbeVRMSRelayOnPort=sensorProbeVRMSRelayOnPort, sensorProbeTemperatureArrayPort8Index=sensorProbeTemperatureArrayPort8Index, sensorProbeHumidityRearm=sensorProbeHumidityRearm, sensorTemperatureNormalColor=sensorTemperatureNormalColor, sensorHumidityNormalDesc=sensorHumidityNormalDesc, sensorProbeIRMSContTimeHighCritical=sensorProbeIRMSContTimeHighCritical, sensorProbeDrycontactArrayPort2Direction=sensorProbeDrycontactArrayPort2Direction, sensorProbeDrycontactArrayPort2ContTimeCritical=sensorProbeDrycontactArrayPort2ContTimeCritical, sensorProbeTempLowCritical=sensorProbeTempLowCritical, sensorWaterRopeSensorErrorColor=sensorWaterRopeSensorErrorColor, sensorProbeEnergySirenOnPort=sensorProbeEnergySirenOnPort, sensorProbeVRMSOpenURL=sensorProbeVRMSOpenURL, sensorProbeHumiditySendNormalTrap=sensorProbeHumiditySendNormalTrap, sensorProbeTemperatureArrayPort2ContTimeHighCritical=sensorProbeTemperatureArrayPort2ContTimeHighCritical, sensorProbeTemperatureArrayPort7ContTimeNormal=sensorProbeTemperatureArrayPort7ContTimeNormal, sensorProbeAltWebPort=sensorProbeAltWebPort, deviceType=deviceType, sensorProbeTemperatureArrayPort5LowWarning=sensorProbeTemperatureArrayPort5LowWarning, sensorProbeDrycontactArrayPort5ControlMode=sensorProbeDrycontactArrayPort5ControlMode, sensorPowerIndex=sensorPowerIndex, sensorProbeDrycontactArrayPort5Status=sensorProbeDrycontactArrayPort5Status, spSensorAliveHigh=spSensorAliveHigh, sensorProbeTemperatureArrayPort1ContTimeNormal=sensorProbeTemperatureArrayPort1ContTimeNormal, spTemperatureArray7_5Status=spTemperatureArray7_5Status, sensorProbeDrycontactArrayPort6Table=sensorProbeDrycontactArrayPort6Table, sensorProbeTemperatureArrayPort2HighCritical=sensorProbeTemperatureArrayPort2HighCritical, sensorRelayOffDesc=sensorRelayOffDesc, sensorProbeRelayArrayPort6URL=sensorProbeRelayArrayPort6URL, sensorProbeThermostatLowLimit2=sensorProbeThermostatLowLimit2, sensorProbeThermostatTemperatureArrayPort3Index=sensorProbeThermostatTemperatureArrayPort3Index, sensorProbeRelayArrayPort4NormalState=sensorProbeRelayArrayPort4NormalState, sensorProbeMailSubject=sensorProbeMailSubject, sensorHumidityDelayHighCritical=sensorHumidityDelayHighCritical, sensorProbeRelayArrayPort4Online=sensorProbeRelayArrayPort4Online, sensorProbeVirtualAnalogRaw=sensorProbeVirtualAnalogRaw, sensorAirflowLowCritical=sensorAirflowLowCritical, spTemperatureArray4_2Status=spTemperatureArray4_2Status, sensorTemperatureRaw=sensorTemperatureRaw, sensorFuelHighCritical=sensorFuelHighCritical, sensorProbeRelayArrayPort8Index=sensorProbeRelayArrayPort8Index, sensorProbeDrycontactArrayPort1NormalState=sensorProbeDrycontactArrayPort1NormalState, sensorProbeGetCommunity=sensorProbeGetCommunity, sensorProbeHumidityRelayAction=sensorProbeHumidityRelayAction, sensorProbeRelayArrayPort5ManualRelayCycleTime=sensorProbeRelayArrayPort5ManualRelayCycleTime, spSwitch60Status=spSwitch60Status, sensorProbeVRMSDelayError=sensorProbeVRMSDelayError, spSwitch9Status=spSwitch9Status, sensorProbeSwitchEmailTrapLimit=sensorProbeSwitchEmailTrapLimit, sensorProbeVRMSDescription=sensorProbeVRMSDescription, sensorProbeHumidityContTimeHighCritical=sensorProbeHumidityContTimeHighCritical, sensorAirflowRearm=sensorAirflowRearm, spVirtual8Status=spVirtual8Status, sensorDryContactPort16GoOnline=sensorDryContactPort16GoOnline, sensorHumidityEntry=sensorHumidityEntry, sensorProbeTempEntry=sensorProbeTempEntry, spTemperatureArray3_2Status=spTemperatureArray3_2Status, sensorProbeTempSensorType=sensorProbeTempSensorType, sensorProbeRelayArrayPort1GoOnline=sensorProbeRelayArrayPort1GoOnline, sensorTankSenderHighCriticalColor=sensorTankSenderHighCriticalColor, sensorProbeMailMaxResend=sensorProbeMailMaxResend, sensorProbeTemperatureArrayPort8DatacollectType=sensorProbeTemperatureArrayPort8DatacollectType, sensorProbeThermostatTemperatureArrayPort1Mode=sensorProbeThermostatTemperatureArrayPort1Mode, sensorProbeDataCollectionPeriod=sensorProbeDataCollectionPeriod, sensorProbeHost=sensorProbeHost, sensorProbeWebUserPassword=sensorProbeWebUserPassword, sensorProbeTemperatureArrayPort8Value=sensorProbeTemperatureArrayPort8Value, sensorDryContactCriticalColor=sensorDryContactCriticalColor, sensorProbeRelayArrayPort8OpenURL=sensorProbeRelayArrayPort8OpenURL, sensorProbeTemperatureArrayPort6Entry=sensorProbeTemperatureArrayPort6Entry, sensorAirflowNormalDesc=sensorAirflowNormalDesc, sensorProbeTemperatureArrayPort7ContTimeHighWarning=sensorProbeTemperatureArrayPort7ContTimeHighWarning, spRelayArray4_4Status=spRelayArray4_4Status, sensorProbeRelayArrayPort2RelayAction=sensorProbeRelayArrayPort2RelayAction, sensorProbeThermostatHighLimit1=sensorProbeThermostatHighLimit1, sensorProbeSoftMotionSensor=sensorProbeSoftMotionSensor, sensorProbeTemperatureArrayPort1HighWarning=sensorProbeTemperatureArrayPort1HighWarning, sensorFuelUnit=sensorFuelUnit, sensorProbeCameraServerIndex=sensorProbeCameraServerIndex, sensorProbeDrycontactArrayPort1GoOnline=sensorProbeDrycontactArrayPort1GoOnline, spIRMS2Status=spIRMS2Status, sensorProbeTemperatureArrayPort7Description=sensorProbeTemperatureArrayPort7Description, sensorProbeRelayArrayPort7GoOnline=sensorProbeRelayArrayPort7GoOnline, sensorSirenManualAction=sensorSirenManualAction, sensorIntelligentPort1GoOnline=sensorIntelligentPort1GoOnline, sensorProbeTypeSHT11TempName=sensorProbeTypeSHT11TempName, sensorProbeTempRearm=sensorProbeTempRearm, sensorProbeHumidityLowCritical=sensorProbeHumidityLowCritical, sensorProbeThermostatTemperatureArrayPort6HighLimitAction1=sensorProbeThermostatTemperatureArrayPort6HighLimitAction1, sensorProbeThermostatTemperatureArrayPort7Index=sensorProbeThermostatTemperatureArrayPort7Index, sensorDryContactPort3GoOnline=sensorDryContactPort3GoOnline, sensorDCvoltageDelayLowCritical=sensorDCvoltageDelayLowCritical, sensorThermostatSensorErrorDesc=sensorThermostatSensorErrorDesc, sensorProbeRelayArrayPort2RelayCycleTime=sensorProbeRelayArrayPort2RelayCycleTime, sensorProbeDrycontactArrayPort2NormalState=sensorProbeDrycontactArrayPort2NormalState, sensorDryContactNormalDesc=sensorDryContactNormalDesc, sensorProbeSwitchWaterRopeRaw=sensorProbeSwitchWaterRopeRaw, sensorProbeThermostatValue=sensorProbeThermostatValue, sensorProbeRelayArrayPort7ControlMode=sensorProbeRelayArrayPort7ControlMode, sensorProbeIRMSContTimeSensorError=sensorProbeIRMSContTimeSensorError, sensorProbeVRMSSirenOnPort=sensorProbeVRMSSirenOnPort, sensorUnit=sensorUnit, deviceIntelligentStatus=deviceIntelligentStatus, sensorProbeRelayArrayPort5RelayDescOff=sensorProbeRelayArrayPort5RelayDescOff, sensorProbeWebPassword=sensorProbeWebPassword, sensorIntelligentPort6GoOnline=sensorIntelligentPort6GoOnline, sensorProbeVRMSRelayCycleTime=sensorProbeVRMSRelayCycleTime, sensorProbeDrycontactArrayPort2Status=sensorProbeDrycontactArrayPort2Status, sensor4to20mAValue=sensor4to20mAValue, sensor4to20mAAmountBaseVoltage=sensor4to20mAAmountBaseVoltage, sensorProbeSoundDetectorRecordingSource=sensorProbeSoundDetectorRecordingSource, sensorTemperatureEntry=sensorTemperatureEntry, sensorWaterRopeEntry=sensorWaterRopeEntry, sensorProbeRelayArrayPort8RelayCycleTime=sensorProbeRelayArrayPort8RelayCycleTime, sensorProbeThermostatTemperatureArrayPort8HighLimit2=sensorProbeThermostatTemperatureArrayPort8HighLimit2, sensorProbeThermostatHighLimit2=sensorProbeThermostatHighLimit2, sensorProbeDrycontactArrayPort1Entry=sensorProbeDrycontactArrayPort1Entry, sensorProbeTemperatureArrayPort6Index=sensorProbeTemperatureArrayPort6Index, sensorProbeRelayArrayPort2RelayDescOff=sensorProbeRelayArrayPort2RelayDescOff, spHelpUrl=spHelpUrl, spAnalogue8Status=spAnalogue8Status, sensorTankSenderSensorErrorColor=sensorTankSenderSensorErrorColor, sensorProbeTemperatureArrayPort5Online=sensorProbeTemperatureArrayPort5Online, spRelayArray6_7Status=spRelayArray6_7Status, sensorProbeDrycontactArrayPort1ControlMode=sensorProbeDrycontactArrayPort1ControlMode, sensorDryContactOffDesc=sensorDryContactOffDesc, sensorProbeRelayArrayPort5ControlMode=sensorProbeRelayArrayPort5ControlMode, sensorSmokeTable=sensorSmokeTable, sensorPowerDelayNormal=sensorPowerDelayNormal, spTemperatureArray3_1Status=spTemperatureArray3_1Status, sensorProbeTemperatureArrayPort3DegreeType=sensorProbeTemperatureArrayPort3DegreeType, sensorProbeRelayArrayPort6Table=sensorProbeRelayArrayPort6Table, sensorHumidityDelayHighWarning=sensorHumidityDelayHighWarning, sensorProbeDelayNotifyBoot=sensorProbeDelayNotifyBoot, sensorProbeTemperatureArrayPort1Offset=sensorProbeTemperatureArrayPort1Offset, spRelayArray2Status=spRelayArray2Status, sensorProbeRelayArrayPort4Index=sensorProbeRelayArrayPort4Index, sensorProbeTemperatureArrayPort8Table=sensorProbeTemperatureArrayPort8Table, sensorTemperatureSensorErrorDesc=sensorTemperatureSensorErrorDesc, sensorAirflowLowCriticalColor=sensorAirflowLowCriticalColor, sensorProbeThermostatTemperatureArrayPort8HighLimitAction2=sensorProbeThermostatTemperatureArrayPort8HighLimitAction2, sensorProbeTemperatureArrayPort4ContTimeLowCritical=sensorProbeTemperatureArrayPort4ContTimeLowCritical, sensorProbeTemperatureArrayPort6ContTimeLowCritical=sensorProbeTemperatureArrayPort6ContTimeLowCritical, sensorProbeTemperatureArrayPort4DatacollectType=sensorProbeTemperatureArrayPort4DatacollectType, sensorProbeSwitchContTimeHighCritical=sensorProbeSwitchContTimeHighCritical, sensorStatus=sensorStatus, sensorProbeThermostatTemperatureArrayPort5NormalAction1=sensorProbeThermostatTemperatureArrayPort5NormalAction1, spSensorName=spSensorName, spVirtual14Status=spVirtual14Status, sensorProbeTempDelayError=sensorProbeTempDelayError, sensorProbeThermostatTemperatureArrayPort4HighLimitAction2=sensorProbeThermostatTemperatureArrayPort4HighLimitAction2, sensorProbeDrycontactArrayPort3ManualOutputCycleTime=sensorProbeDrycontactArrayPort3ManualOutputCycleTime, sensorProbeTemperatureArrayPort2ContTimeLowCritical=sensorProbeTemperatureArrayPort2ContTimeLowCritical, sensorDCvoltageDescription=sensorDCvoltageDescription, sensorTemperatureHighCritical=sensorTemperatureHighCritical, spIRMS3Status=spIRMS3Status, sensorProbeMailTimeout=sensorProbeMailTimeout, sensorProbeDrycontactArrayPort8=sensorProbeDrycontactArrayPort8, spSummary=spSummary, sensorProbeTemperatureArrayPort2HighWarning=sensorProbeTemperatureArrayPort2HighWarning, sensorProbeThermostatNormalAction1=sensorProbeThermostatNormalAction1, sensorProbeThermostatTemperatureArrayPort7HighLimitAction1=sensorProbeThermostatTemperatureArrayPort7HighLimitAction1, sensorProbeRelayArrayPort4Table=sensorProbeRelayArrayPort4Table, spSwitch38Status=spSwitch38Status, sensorProbeRelayArrayPort7RelayAction=sensorProbeRelayArrayPort7RelayAction, sensorSirenOnDesc=sensorSirenOnDesc, sensorProbeEnergySensorTable=sensorProbeEnergySensorTable, spSwitch51Status=spSwitch51Status, sensorProbeVirtualSwitchURL=sensorProbeVirtualSwitchURL, sensorProbeDrycontactArrayPort1OutputDescOn=sensorProbeDrycontactArrayPort1OutputDescOn, sensorProbeTemperatureArrayPort4GoOnline=sensorProbeTemperatureArrayPort4GoOnline, sensorProbeVRMSURL=sensorProbeVRMSURL, sensorProbeTemperatureArrayPort4Entry=sensorProbeTemperatureArrayPort4Entry, sensorProbeDrycontactArrayPort4ControlMode=sensorProbeDrycontactArrayPort4ControlMode, spRelayArray3_7Status=spRelayArray3_7Status, sensorGoOffline=sensorGoOffline, sensorProbeHumidityAtoDTypeUnit=sensorProbeHumidityAtoDTypeUnit, sensorProbeTemperatureArrayPort4ContTimeNormal=sensorProbeTemperatureArrayPort4ContTimeNormal, sensorProbeTemperatureArrayPort7ContTimeLowWarning=sensorProbeTemperatureArrayPort7ContTimeLowWarning, sensorSirenManualCycleTime=sensorSirenManualCycleTime, deviceIntelligentTable=deviceIntelligentTable, spSwitch26Status=spSwitch26Status, sensorSirenTable=sensorSirenTable, sensorProbeThermostatTemperatureArrayPort2Mode=sensorProbeThermostatTemperatureArrayPort2Mode, sensorProbeTemperatureArrayPort6DegreeRaw=sensorProbeTemperatureArrayPort6DegreeRaw, sensorACvoltageCriticalColor=sensorACvoltageCriticalColor, spTemperatureArray3Status=spTemperatureArray3Status, sensorDryContactOutputManualCycleTime=sensorDryContactOutputManualCycleTime, sensorTankSenderDelayError=sensorTankSenderDelayError, sensorProbeVirtualAnalogSensorNumber=sensorProbeVirtualAnalogSensorNumber, sensorProbeTemperatureArrayPort2Index=sensorProbeTemperatureArrayPort2Index, sensorProbeSwitchEmailTrapInterval=sensorProbeSwitchEmailTrapInterval, sensorProbeSoundDetectorRearm=sensorProbeSoundDetectorRearm, sensorProbeAllowIPChange=sensorProbeAllowIPChange, sensorProbeHumidityDescription=sensorProbeHumidityDescription, sensorSecurityCriticalColor=sensorSecurityCriticalColor, sensorProbeThermostatTemperatureArrayPort6NormalAction2=sensorProbeThermostatTemperatureArrayPort6NormalAction2, sensorProbeDrycontactArrayPort2GoOnline=sensorProbeDrycontactArrayPort2GoOnline, sensorProbeDrycontactArrayPort5Number=sensorProbeDrycontactArrayPort5Number, sensorProbeDrycontactArrayPort8NormalState=sensorProbeDrycontactArrayPort8NormalState, sensorPowerGoOffline=sensorPowerGoOffline, sensorThermostatDeviceIndex=sensorThermostatDeviceIndex, sensorProbeTemperatureArrayPort1=sensorProbeTemperatureArrayPort1, sensorThermostatIndex=sensorThermostatIndex, sensorProbeThermostatTemperatureArrayPort2RelayControlPort=sensorProbeThermostatTemperatureArrayPort2RelayControlPort, sensorProbeCameraServerEntry=sensorProbeCameraServerEntry) mibBuilder.exportSymbols("SPAGENT-MIB", sensorProbeRelayArrayPort6RelayDescOn=sensorProbeRelayArrayPort6RelayDescOn, sensorProbeSendTrapsAlive=sensorProbeSendTrapsAlive, sensorProbeTempRelayCycleTime=sensorProbeTempRelayCycleTime, spRelayArray1_2Status=spRelayArray1_2Status, sensorTankSenderGoOffline=sensorTankSenderGoOffline, sensorHumidityHighWarningDesc=sensorHumidityHighWarningDesc, sensorProbeRelayArrayPort6Number=sensorProbeRelayArrayPort6Number, deviceDryContactDescription=deviceDryContactDescription, sensorProbeThermostatTemperatureArrayPort2HighLimitAction2=sensorProbeThermostatTemperatureArrayPort2HighLimitAction2, sensorProbeTypeWaterName=sensorProbeTypeWaterName, sensorRelayIndex=sensorRelayIndex, sensorProbeThermostatTemperatureArrayPort8LowLimitAction1=sensorProbeThermostatTemperatureArrayPort8LowLimitAction1, sensorProbeRelayArrayPort6Online=sensorProbeRelayArrayPort6Online, sensorProbeDrycontactArrayPort8Online=sensorProbeDrycontactArrayPort8Online, sensorProbeVRMSAcknowledgement=sensorProbeVRMSAcknowledgement, sensorProbeRelayArrayPort7Entry=sensorProbeRelayArrayPort7Entry, spAnalogue5Status=spAnalogue5Status, sensorProbeIRMSContTimeNormal=sensorProbeIRMSContTimeNormal, sensorProbeThermostatTemperatureArrayPort4LowLimit1=sensorProbeThermostatTemperatureArrayPort4LowLimit1, sensorProbeThermostatTemperatureArrayPort3NormalAction2=sensorProbeThermostatTemperatureArrayPort3NormalAction2, sensorProbeIRMSStatus=sensorProbeIRMSStatus, sensorProbeTemperatureArrayPort2LowWarning=sensorProbeTemperatureArrayPort2LowWarning, sensor4to20mAAmountMaxVoltage=sensor4to20mAAmountMaxVoltage, sensorDCvoltageNormalDesc=sensorDCvoltageNormalDesc, sensorProbeTemperatureArrayPort5Entry=sensorProbeTemperatureArrayPort5Entry, sensorTemperatureDelayHighCritical=sensorTemperatureDelayHighCritical, sensorDryContactEntry=sensorDryContactEntry, sensorProbeVirtualSwitchDescriptionNormal=sensorProbeVirtualSwitchDescriptionNormal, sensorProbeVirtualSwitchSensor=sensorProbeVirtualSwitchSensor, sensorProbeTypeADE7763WattName=sensorProbeTypeADE7763WattName, sensorProbeDrycontactArrayPort7Online=sensorProbeDrycontactArrayPort7Online, sensorProbeCameraDescription=sensorProbeCameraDescription, spTemperatureArray7_6Status=spTemperatureArray7_6Status, sensorProbeTempContTimeNormal=sensorProbeTempContTimeNormal, spSenWarningStatus=spSenWarningStatus, sensorDCvoltageTable=sensorDCvoltageTable, sensorProbeSwitchRelayActiveStatus=sensorProbeSwitchRelayActiveStatus, sensorProbeHumiditySendNormalMail=sensorProbeHumiditySendNormalMail, sensorProbeTemperatureArrayPort3Offset=sensorProbeTemperatureArrayPort3Offset, sensorProbeTemperatureArrayPort4Number=sensorProbeTemperatureArrayPort4Number, sensorProbeRelayArrayPort4RelayDescOff=sensorProbeRelayArrayPort4RelayDescOff, sensorFuelDelayHighWarning=sensorFuelDelayHighWarning, spSwitch16Status=spSwitch16Status, sensorProbeEnergySirenActiveStatus=sensorProbeEnergySirenActiveStatus, sensorProbeThermostatTemperatureArrayPort3LowLimit1=sensorProbeThermostatTemperatureArrayPort3LowLimit1, sensorProbeTemperatureArrayPort5Number=sensorProbeTemperatureArrayPort5Number, sensorThermostatDelayHighWarning=sensorThermostatDelayHighWarning, spSwitch43Status=spSwitch43Status, sensorWaterStatus=sensorWaterStatus, sensorProbeTemperatureArrayPort7ContTimeLowCritical=sensorProbeTemperatureArrayPort7ContTimeLowCritical, sensorProbeDrycontactArrayPort8Description=sensorProbeDrycontactArrayPort8Description, sensorProbeDrycontactArrayPort1ManualOutputAction=sensorProbeDrycontactArrayPort1ManualOutputAction, sensorProbeRelayArrayPort5RelayAction=sensorProbeRelayArrayPort5RelayAction, sensorProbeIRMSSirenCycleTime=sensorProbeIRMSSirenCycleTime, sensorProbeDrycontactArrayPort6OutputDescOn=sensorProbeDrycontactArrayPort6OutputDescOn, sensorIntelligentTypeSelected=sensorIntelligentTypeSelected, sensorProbeDrycontactArrayPort5Index=sensorProbeDrycontactArrayPort5Index, sensorProbeRelayArrayPort8Entry=sensorProbeRelayArrayPort8Entry, spTemperatureArray8_1Status=spTemperatureArray8_1Status, sensorProbeTemperatureArrayPort2Value=sensorProbeTemperatureArrayPort2Value, sensorProbeHumidityContTimeHighWarning=sensorProbeHumidityContTimeHighWarning, sensorProbeTypeMotionName=sensorProbeTypeMotionName, sensorThermostatDelayNormal=sensorThermostatDelayNormal, sensorProbeEnergySirenAction=sensorProbeEnergySirenAction, sensorProbeVirtualSwitchSensorEntry=sensorProbeVirtualSwitchSensorEntry, sensorProbeTemperatureArrayPort8HighCritical=sensorProbeTemperatureArrayPort8HighCritical, sensorProbeHumidityDcUnit=sensorProbeHumidityDcUnit, spTemperatureArray1Status=spTemperatureArray1Status, sensorProbeNoCameraGoOnline=sensorProbeNoCameraGoOnline, sensorProbeTemperatureArrayPort8Entry=sensorProbeTemperatureArrayPort8Entry, sensorTemperatureDelayNormal=sensorTemperatureDelayNormal, sensorDCvoltageSubPort=sensorDCvoltageSubPort, sensorTemperatureType=sensorTemperatureType, sensorFuelNormalDesc=sensorFuelNormalDesc, sensorProbeTypeSoundName=sensorProbeTypeSoundName, spRelayArray7_5Status=spRelayArray7_5Status, sensorProbeTempTable=sensorProbeTempTable, sensorProbeHumidityEntry=sensorProbeHumidityEntry, sensorProbeTemperatureArrayPort3Index=sensorProbeTemperatureArrayPort3Index, sensorAirflowSensorErrorColor=sensorAirflowSensorErrorColor, sensorDryContactPort8GoOnline=sensorDryContactPort8GoOnline, sensorProbeRelayArrayPort2NormalState=sensorProbeRelayArrayPort2NormalState, sensorProbeDrycontactArrayPort5ManualOutputCycleTime=sensorProbeDrycontactArrayPort5ManualOutputCycleTime, sensorProbeVirtualAnalogContTimeHighCritical=sensorProbeVirtualAnalogContTimeHighCritical, sensorProbeThermostatEnableTime=sensorProbeThermostatEnableTime, sensorProbeServerEnable=sensorProbeServerEnable, spTemperatureArray6_8Status=spTemperatureArray6_8Status, sensorProbeVRMSSensorNumber=sensorProbeVRMSSensorNumber, sensorProbeHumiditySirenDelayAlarm=sensorProbeHumiditySirenDelayAlarm, sensorDryContactCriticalDesc=sensorDryContactCriticalDesc, sensorProbeDrycontactArrayPort8ContTimeNormal=sensorProbeDrycontactArrayPort8ContTimeNormal, sensorACvoltagePort=sensorACvoltagePort, sensor4to20mAHighCriticalDesc=sensor4to20mAHighCriticalDesc, sensorAirflowHighCritical=sensorAirflowHighCritical, sensorDCvoltageRearm=sensorDCvoltageRearm, spRelayArray5_8Status=spRelayArray5_8Status, sensorProbeEnergyOnline=sensorProbeEnergyOnline, sensorProbeIRMSSensorEntry=sensorProbeIRMSSensorEntry, sensorProbeDrycontactArrayPort5Direction=sensorProbeDrycontactArrayPort5Direction, sensorProbeJpegQualityFactor=sensorProbeJpegQualityFactor, spTemperatureArray7_1Status=spTemperatureArray7_1Status, sensorProbeSwitchEmailTrapSchedule=sensorProbeSwitchEmailTrapSchedule, sensorProbeTemperatureArrayPort5Offset=sensorProbeTemperatureArrayPort5Offset, sensorHumidityUnit=sensorHumidityUnit, sensorProbeTemperatureArrayPort3Table=sensorProbeTemperatureArrayPort3Table, sensorProbeTemperatureArrayPort5ContTimeSensorError=sensorProbeTemperatureArrayPort5ContTimeSensorError, sensorTankSenderDeviceIndex=sensorTankSenderDeviceIndex, sensorProbeRelayArrayPort5Index=sensorProbeRelayArrayPort5Index, sensorProbeThermostatTemperatureArrayPort4NormalAction2=sensorProbeThermostatTemperatureArrayPort4NormalAction2, sensorDryContactType=sensorDryContactType, sensorProbeTempIndex=sensorProbeTempIndex, sensorProbeCameraServerClientIP=sensorProbeCameraServerClientIP, sensorProbeTemperatureArrayPort6Rearm=sensorProbeTemperatureArrayPort6Rearm, spTemperatureArray7_4Status=spTemperatureArray7_4Status, sensorProbeVRMSSensorEntry=sensorProbeVRMSSensorEntry, sensorProbeMAC=sensorProbeMAC, sensorProbeDrycontactArrayPort8Entry=sensorProbeDrycontactArrayPort8Entry, spVRMS5Status=spVRMS5Status, spSensorAliveLow=spSensorAliveLow, sensorProbeRelayArrayPort7RelayCycleTime=sensorProbeRelayArrayPort7RelayCycleTime, sensorIntelligentPort4GoOnline=sensorIntelligentPort4GoOnline, sensorProbeThermostatTemperatureArrayPort1LowLimit1=sensorProbeThermostatTemperatureArrayPort1LowLimit1, sensorProbeDrycontactArrayPort4Description=sensorProbeDrycontactArrayPort4Description, sensorProbeRelayArrayPort1RelayDescOn=sensorProbeRelayArrayPort1RelayDescOn, sensorProbeSoundDetectorOnline=sensorProbeSoundDetectorOnline, sensorProbeRelayArrayPort4Description=sensorProbeRelayArrayPort4Description, sensorTemperatureSubPort=sensorTemperatureSubPort, sensorProbeTemperatureArrayPort1LowWarning=sensorProbeTemperatureArrayPort1LowWarning, spVRMSStatus=spVRMSStatus, sensorSmokeSubPort=sensorSmokeSubPort, sensorProbeThermostatTemperatureArrayPort6LowLimitAction2=sensorProbeThermostatTemperatureArrayPort6LowLimitAction2, sensorProbeNoCameraSensor=sensorProbeNoCameraSensor, sensorTankSenderDelayHighCritical=sensorTankSenderDelayHighCritical, sensorProbeTempContTimeHighCritical=sensorProbeTempContTimeHighCritical, sensorThermostatLowCriticalColor=sensorThermostatLowCriticalColor, spSenCriticalStatus=spSenCriticalStatus, spTemperatureArray5_8Status=spTemperatureArray5_8Status, sensorProbeIRMSRaw=sensorProbeIRMSRaw, sensorTemperatureDeviceIndex=sensorTemperatureDeviceIndex, sensorProbeTemperatureArrayPort5OpenURL=sensorProbeTemperatureArrayPort5OpenURL, sensorProbeSoundDetectorMicSensitivity=sensorProbeSoundDetectorMicSensitivity, spRelayArray3_8Status=spRelayArray3_8Status, spTemperatureArray7_2Status=spTemperatureArray7_2Status, sensorDCvoltageHighCriticalDesc=sensorDCvoltageHighCriticalDesc, spRelayArray6_2Status=spRelayArray6_2Status, sensorWaterRopeNormalColor=sensorWaterRopeNormalColor, sensorProbeRelayArrayPort4RelayAction=sensorProbeRelayArrayPort4RelayAction, sensorProbeRelayArrayPort1RelayCycleTime=sensorProbeRelayArrayPort1RelayCycleTime, sensorProbeRelayArrayPort7=sensorProbeRelayArrayPort7, sensorProbeDrycontactArrayPort5=sensorProbeDrycontactArrayPort5, sensorProbeEnergyDescription=sensorProbeEnergyDescription, sensorProbeTempContTimeLowWarning=sensorProbeTempContTimeLowWarning, sensorProbeWebAdminPassword=sensorProbeWebAdminPassword, sensorProbeVirtualAnalogContTimeLowWarning=sensorProbeVirtualAnalogContTimeLowWarning, sensorTemperatureHighWarning=sensorTemperatureHighWarning, spTemperature3Status=spTemperature3Status, sensorTemperatureHighWarningColor=sensorTemperatureHighWarningColor, spCustomStatus=spCustomStatus, spSensorStatusName=spSensorStatusName, spSwitch41Status=spSwitch41Status, sensorWaterRopeCriticalDesc=sensorWaterRopeCriticalDesc, sensorProbeDrycontactArrayPort3Table=sensorProbeDrycontactArrayPort3Table, sensorDryContactDescription=sensorDryContactDescription, sensorProbeRelayArrayPort1Description=sensorProbeRelayArrayPort1Description, spSwitch42Status=spSwitch42Status, sensorProbeRelayArrayPort2GoOnline=sensorProbeRelayArrayPort2GoOnline, spTemperatureArray8_3Status=spTemperatureArray8_3Status, sensorProbeTemperatureArrayPort2Number=sensorProbeTemperatureArrayPort2Number, sensorProbeTemperatureArrayPort5DegreeType=sensorProbeTemperatureArrayPort5DegreeType, sensorProbeSwitchSendNormalTrap=sensorProbeSwitchSendNormalTrap, sensorProbeTemperatureArrayPort8Offset=sensorProbeTemperatureArrayPort8Offset, sensorProbeNoCameraSensorIndex=sensorProbeNoCameraSensorIndex, sensorProbeSwitchDelayError=sensorProbeSwitchDelayError, spSwitch33Status=spSwitch33Status, sensorPowerHighWarningDesc=sensorPowerHighWarningDesc, sensorProbeTemperatureArrayPort1OpenURL=sensorProbeTemperatureArrayPort1OpenURL, spSwitch4Status=spSwitch4Status, sensorProbeStatusNumberNotNormal=sensorProbeStatusNumberNotNormal, sensorProbeTemperatureArrayPort7HighWarning=sensorProbeTemperatureArrayPort7HighWarning, sensorProbeTempStatus=sensorProbeTempStatus, sensorProbeTemperatureArrayPort4OpenURL=sensorProbeTemperatureArrayPort4OpenURL, sensorProbeWattHoursReset=sensorProbeWattHoursReset, sensorAirflowDelayLowCritical=sensorAirflowDelayLowCritical, sensorProbeThermostatTemperatureArrayPort2LowLimitAction1=sensorProbeThermostatTemperatureArrayPort2LowLimitAction1, spSwitch22Status=spSwitch22Status, sensorWaterSubPort=sensorWaterSubPort, sensorProbeTemperatureArrayPort5HighCritical=sensorProbeTemperatureArrayPort5HighCritical, sensorProbeVirtualAnalogHighWarning=sensorProbeVirtualAnalogHighWarning, spRelayArray6_5Status=spRelayArray6_5Status, sensorProbeTemperatureArrayPort1DatacollectType=sensorProbeTemperatureArrayPort1DatacollectType, sensorProbeSoundDetectorDatacollectType=sensorProbeSoundDetectorDatacollectType, sensorValue=sensorValue, sensorProbeDrycontactArrayPort3URL=sensorProbeDrycontactArrayPort3URL, sensorACvoltageNormalDesc=sensorACvoltageNormalDesc, spTemperatureArray2_5Status=spTemperatureArray2_5Status, spTemperatureArray2_6Status=spTemperatureArray2_6Status, sensorProbeVirtualAnalogLowCritical=sensorProbeVirtualAnalogLowCritical, spRelayArray6Status=spRelayArray6Status, sensorPowerDescription=sensorPowerDescription, sensorProbeSoftMotionOnline=sensorProbeSoftMotionOnline, spRelayArray5_4Status=spRelayArray5_4Status, sensorDCvoltageAmountBaseVoltage=sensorDCvoltageAmountBaseVoltage, sensorProbeEnergyContTimeSensorError=sensorProbeEnergyContTimeSensorError, sensorProbeEnergyContTimeHighCritical=sensorProbeEnergyContTimeHighCritical, sensorProbeTypeVirtualName=sensorProbeTypeVirtualName, sensorWaterRopeSensorErrorDesc=sensorWaterRopeSensorErrorDesc, spTemperatureArray8_4Status=spTemperatureArray8_4Status, sensorProbeDrycontactArrayPort3OutputDescOn=sensorProbeDrycontactArrayPort3OutputDescOn, sensorTankSenderHighCriticalDesc=sensorTankSenderHighCriticalDesc, spRelayArray1_4Status=spRelayArray1_4Status, sensorProbeJavaTimeOut=sensorProbeJavaTimeOut, sensorProbeDrycontactArrayPort6ContTimeNormal=sensorProbeDrycontactArrayPort6ContTimeNormal, sensorProbeEnergyHighWarning=sensorProbeEnergyHighWarning, sensorPowerSensorErrorColor=sensorPowerSensorErrorColor, sensor4to20mAUnit=sensor4to20mAUnit, spAnalogue4Status=spAnalogue4Status, sensorProbeTypeADE7763WatthourName=sensorProbeTypeADE7763WatthourName, sensorProbeTemperatureArrayPort2OpenURL=sensorProbeTemperatureArrayPort2OpenURL, sensorPowerErrorRetryNum=sensorPowerErrorRetryNum, sensorProbeEnergyEmailTrapLimit=sensorProbeEnergyEmailTrapLimit, sensorProbeVirtualAnalogSensorIndex=sensorProbeVirtualAnalogSensorIndex, spSwitch31Status=spSwitch31Status, sensorProbeWattHoursSensor=sensorProbeWattHoursSensor, spTemperatureArray6_2Status=spTemperatureArray6_2Status, sensorProbeThermostatGoOnline=sensorProbeThermostatGoOnline, sensorHumidityLowWarningColor=sensorHumidityLowWarningColor, sensorFuelHighWarningColor=sensorFuelHighWarningColor, secDevice=secDevice, sensorProbeThermostatTemperatureArrayPort5Mode=sensorProbeThermostatTemperatureArrayPort5Mode, spSwitch25Status=spSwitch25Status, sensorProbeCameraServerClientOnline=sensorProbeCameraServerClientOnline, sensorDryContactPort12GoOnline=sensorDryContactPort12GoOnline, sensorThermostatNormalColor=sensorThermostatNormalColor, spSwitch58Status=spSwitch58Status, spTemperatureArray6_7Status=spTemperatureArray6_7Status, sensorIntelligentPort3GoOnline=sensorIntelligentPort3GoOnline, sensorProbeThermostatTemperatureArrayPort8HighLimitAction1=sensorProbeThermostatTemperatureArrayPort8HighLimitAction1, spVirtual2Status=spVirtual2Status, sensorSmokeEntry=sensorSmokeEntry, sensorProbeDrycontactArrayPort7ContTimeCritical=sensorProbeDrycontactArrayPort7ContTimeCritical, sensorProbeTemperatureArrayPort1Value=sensorProbeTemperatureArrayPort1Value, spTemperatureArray1_4Status=spTemperatureArray1_4Status, sensorThermostatLowWarning=sensorThermostatLowWarning, sensorACvoltageIndex=sensorACvoltageIndex, sensorProbeTempSirenAction=sensorProbeTempSirenAction, spRelayArray8_1Status=spRelayArray8_1Status, sensorSmokeNormalColor=sensorSmokeNormalColor, sensorWaterNormalDesc=sensorWaterNormalDesc, sensorProbeThermostatTemperatureArrayPort2HighLimit1=sensorProbeThermostatTemperatureArrayPort2HighLimit1, sensorSecurityNormalDesc=sensorSecurityNormalDesc, sensor4to20mALowWarningColor=sensor4to20mALowWarningColor, sensorFuelRearm=sensorFuelRearm, sensorProbeRelayArrayPort1RelayDescOff=sensorProbeRelayArrayPort1RelayDescOff, sensorPort=sensorPort) mibBuilder.exportSymbols("SPAGENT-MIB", sensorProbeRelayArrayPort4Status=sensorProbeRelayArrayPort4Status, sensorProbeSwitchSirenAction=sensorProbeSwitchSirenAction, sensorThermostatHighCriticalColor=sensorThermostatHighCriticalColor, sensorThermostatHighWarningColor=sensorThermostatHighWarningColor, sensorFuelDelayHighCritical=sensorFuelDelayHighCritical, sensorProbeTemperatureArrayPort6Offset=sensorProbeTemperatureArrayPort6Offset, sensorProbeRelayArrayPort8Number=sensorProbeRelayArrayPort8Number, sensorMotionGoOffline=sensorMotionGoOffline, sensorProbeNoCameraCalendar=sensorProbeNoCameraCalendar, sensorProbeDrycontactArrayPort5ManualOutputAction=sensorProbeDrycontactArrayPort5ManualOutputAction, sensorDryContactPort=sensorDryContactPort, spSwitch17Status=spSwitch17Status, spVirtual17Status=spVirtual17Status, sensorProbeTypeFuelLevelName=sensorProbeTypeFuelLevelName, sensorProbeDrycontactArrayPort7Index=sensorProbeDrycontactArrayPort7Index, sensorFuelRaw=sensorFuelRaw, sensorFuelAmountBaseValue=sensorFuelAmountBaseValue, spSwitch61Status=spSwitch61Status, sensorProbeTemperatureArrayPort1GoOnline=sensorProbeTemperatureArrayPort1GoOnline, sensorTankSenderLowCriticalDesc=sensorTankSenderLowCriticalDesc, sensorProbeVRMSSensor=sensorProbeVRMSSensor, spTemperatureArray7_3Status=spTemperatureArray7_3Status, sensorProbeTemperatureArrayPort7Status=sensorProbeTemperatureArrayPort7Status, spRelayArray2_4Status=spRelayArray2_4Status, sensorProbeThermostatTemperatureArrayPort7LowLimit1=sensorProbeThermostatTemperatureArrayPort7LowLimit1, spTemperatureArray5_7Status=spTemperatureArray5_7Status, sensorTemperatureLowCriticalColor=sensorTemperatureLowCriticalColor, sensor4to20mADelayHighWarning=sensor4to20mADelayHighWarning, spRelayArray8_5Status=spRelayArray8_5Status, sensorProbeThermostatTemperatureArrayPort1LowLimit2=sensorProbeThermostatTemperatureArrayPort1LowLimit2, sensorSirenOffColor=sensorSirenOffColor, sensorProbeVRMSEmailTrapLimit=sensorProbeVRMSEmailTrapLimit, sensorProbeHumidityIndexCount=sensorProbeHumidityIndexCount, sensorProbeSnmpIndexingMode=sensorProbeSnmpIndexingMode, sensorProbeTemperatureArrayPort2Description=sensorProbeTemperatureArrayPort2Description, sensorACvoltageSubPort=sensorACvoltageSubPort, sensorProbeRelayArrayPort1Number=sensorProbeRelayArrayPort1Number, spTemperatureArray1_5Status=spTemperatureArray1_5Status, sensorProbeIRMSRearm=sensorProbeIRMSRearm, sensorProbeDrycontactArrayPort1ManualOutputCycleTime=sensorProbeDrycontactArrayPort1ManualOutputCycleTime, sensorProbeVRMSSensorTable=sensorProbeVRMSSensorTable, sensorProbeTemperatureArrayPort6OpenURL=sensorProbeTemperatureArrayPort6OpenURL, spSwitch5Status=spSwitch5Status, sensorSirenIndex=sensorSirenIndex, sensor4to20mADeviceIndex=sensor4to20mADeviceIndex, secSummary=secSummary, spRelayArray1_7Status=spRelayArray1_7Status, sensorProbeTemperatureArrayPort5Rearm=sensorProbeTemperatureArrayPort5Rearm, sensorDCvoltageSensorErrorDesc=sensorDCvoltageSensorErrorDesc, sensorHumidityIndex=sensorHumidityIndex, sensorProbeTempOpenURL=sensorProbeTempOpenURL, sensorFuelGoOffline=sensorFuelGoOffline, spIRMS8Status=spIRMS8Status, sensorProbeDrycontactArrayPort8ManualOutputAction=sensorProbeDrycontactArrayPort8ManualOutputAction, sensorProbeSyslogPort=sensorProbeSyslogPort, sensorDryContactGoOffline=sensorDryContactGoOffline, sensorSubPort=sensorSubPort, sensorProbeDrycontactArrayPort7ManualOutputCycleTime=sensorProbeDrycontactArrayPort7ManualOutputCycleTime, sensorProbeDrycontactArrayPort7ControlMode=sensorProbeDrycontactArrayPort7ControlMode, sensor4to20mADelayNormal=sensor4to20mADelayNormal, sensorProbeTemperatureArrayPort3OpenURL=sensorProbeTemperatureArrayPort3OpenURL, sensorHighCriticalColor=sensorHighCriticalColor, spSwitch3Status=spSwitch3Status, sensorDCvoltageIndex=sensorDCvoltageIndex, spSenNormalStatus=spSenNormalStatus, sensorProbeTemperatureArrayPort3Number=sensorProbeTemperatureArrayPort3Number, spTemperatureArray3_3Status=spTemperatureArray3_3Status, sensorProbeRelayArrayPort3Online=sensorProbeRelayArrayPort3Online, sensorProbeThermostatTemperatureArrayPort4Mode=sensorProbeThermostatTemperatureArrayPort4Mode, sensorProbeThermostatTemperatureArrayPort4HighLimit2=sensorProbeThermostatTemperatureArrayPort4HighLimit2, sensorTemperatureLowCriticalDesc=sensorTemperatureLowCriticalDesc, sensorProbeThermostatTemperatureArrayPort2EnableTime=sensorProbeThermostatTemperatureArrayPort2EnableTime, sensorProbeHumidityDatacollectType=sensorProbeHumidityDatacollectType, spBoardIndex=spBoardIndex, sensorProbeVRMSContTimeHighCritical=sensorProbeVRMSContTimeHighCritical, sensorProbeAdcCalibratePort=sensorProbeAdcCalibratePort, sensorHumidityHighWarningColor=sensorHumidityHighWarningColor, sensorSmokeGoOffline=sensorSmokeGoOffline, spRelayArray3_1Status=spRelayArray3_1Status, sensorAirflowHighWarning=sensorAirflowHighWarning, sensorProbeEnableSysLog=sensorProbeEnableSysLog, sensorAirflowDelayNormal=sensorAirflowDelayNormal, sensorProbeTempRelayActiveStatus=sensorProbeTempRelayActiveStatus, sensorProbeRelayArrayPort1=sensorProbeRelayArrayPort1, sensorDryContactOffColor=sensorDryContactOffColor, sensorProbeTemperatureArrayPort7GoOnline=sensorProbeTemperatureArrayPort7GoOnline, sensorProbeTypeDCvoltageName=sensorProbeTypeDCvoltageName, sensorHumidityHighCriticalDesc=sensorHumidityHighCriticalDesc, sensorWaterCriticalColor=sensorWaterCriticalColor, sensorDCvoltageLowCriticalColor=sensorDCvoltageLowCriticalColor, sensorProbeDrycontactArrayPort8Number=sensorProbeDrycontactArrayPort8Number, sensorProbeThermostatTemperatureArrayPort4NormalAction1=sensorProbeThermostatTemperatureArrayPort4NormalAction1, sensorDryContactDeviceIndex=sensorDryContactDeviceIndex, spKeepAliveTrap=spKeepAliveTrap, sensorProbeVRMSSirenDelayAlarm=sensorProbeVRMSSirenDelayAlarm, sensorProbeTypeSoftMotionName=sensorProbeTypeSoftMotionName, spVirtualStatus=spVirtualStatus, sensorWaterEntry=sensorWaterEntry, sensorTemperatureOffset=sensorTemperatureOffset, sensorProbeTempHighCritical=sensorProbeTempHighCritical, sensorProbeTemperatureArrayPort5DegreeRaw=sensorProbeTemperatureArrayPort5DegreeRaw, sensorSirenPort=sensorSirenPort, sensorProbeThermostatTemperatureArrayPort3Mode=sensorProbeThermostatTemperatureArrayPort3Mode, sensorPowerDelayError=sensorPowerDelayError, spVirtual11Status=spVirtual11Status, spSwitch13Status=spSwitch13Status, sensorProbeRelayArrayPort6RelayDescOff=sensorProbeRelayArrayPort6RelayDescOff, sensorProbeTempCalendar=sensorProbeTempCalendar, sensorThermostatNormalDesc=sensorThermostatNormalDesc, spSensorStatus=spSensorStatus, sensorProbeSwitchCalendar=sensorProbeSwitchCalendar, sensorDescription=sensorDescription, spRelayArray8_4Status=spRelayArray8_4Status, sensorProbeSoundDetectorHighWarning=sensorProbeSoundDetectorHighWarning, sensor4to20mAHighWarningColor=sensor4to20mAHighWarningColor, sensorProbeTemperatureArrayPort7URL=sensorProbeTemperatureArrayPort7URL, sensorProbeRelayArrayPort1ControlMode=sensorProbeRelayArrayPort1ControlMode, sensorProbeTemperatureArrayPort8=sensorProbeTemperatureArrayPort8, sensorRelayEntry=sensorRelayEntry, sensorProbeTemperatureArrayPort1Rearm=sensorProbeTemperatureArrayPort1Rearm, spVirtual1Status=spVirtual1Status, sensorProbeRelayArrayPort3NormalState=sensorProbeRelayArrayPort3NormalState, sensorProbeRelayArrayPort7RelayDescOn=sensorProbeRelayArrayPort7RelayDescOn, sensorProbeThermostatTemperatureArrayPort6HighLimit1=sensorProbeThermostatTemperatureArrayPort6HighLimit1, sensorProbeDrycontactArrayPort2Entry=sensorProbeDrycontactArrayPort2Entry, sensorProbeMailCustom=sensorProbeMailCustom, sensorProbeCameraResolution=sensorProbeCameraResolution, sensor4to20mAMaxVoltage=sensor4to20mAMaxVoltage, spEventTimeStamp=spEventTimeStamp, sensorProbeVRMSRelayAction=sensorProbeVRMSRelayAction, sensorProbeSwitchSendTrap=sensorProbeSwitchSendTrap, sensorPowerLowCritical=sensorPowerLowCritical, sensorDryContactPort5GoOnline=sensorDryContactPort5GoOnline, sensorProbeHumidityContTimeLowWarning=sensorProbeHumidityContTimeLowWarning, sensorProbeSwitchSirenOnPort=sensorProbeSwitchSirenOnPort, sensorDryContactPort2GoOnline=sensorDryContactPort2GoOnline, sensorProbeIRMSOpenURL=sensorProbeIRMSOpenURL, sensorProbeDrycontactArrayPort6ControlMode=sensorProbeDrycontactArrayPort6ControlMode, sensorType=sensorType, sensorProbeTemperatureArrayPort1ContTimeLowWarning=sensorProbeTemperatureArrayPort1ContTimeLowWarning, sensorProbeSwitchDirection=sensorProbeSwitchDirection, spTemperatureArray2_8Status=spTemperatureArray2_8Status, sensorSirenControlMode=sensorSirenControlMode, sensorProbeHumidityOpenURL=sensorProbeHumidityOpenURL, sensorHumidityDelayError=sensorHumidityDelayError, sensorProbeThermostatTemperatureArrayPort2GoOnline=sensorProbeThermostatTemperatureArrayPort2GoOnline, spWarningStatus=spWarningStatus, sensorTable=sensorTable, sensorProbeEnergyContTimeHighWarning=sensorProbeEnergyContTimeHighWarning, sensorAirflowLowWarningDesc=sensorAirflowLowWarningDesc, sensorProbeWattHoursSensorTable=sensorProbeWattHoursSensorTable, sensorProbeThermostatTemperatureArrayPort4Value=sensorProbeThermostatTemperatureArrayPort4Value, sensorProbeThermostatTemperatureArrayPort5HighLimitAction2=sensorProbeThermostatTemperatureArrayPort5HighLimitAction2, sensorProbeSoundDetectorContTimeHighWarning=sensorProbeSoundDetectorContTimeHighWarning, sensorThermostatRearm=sensorThermostatRearm, sensorProbePTZPanTiltUntilEnd=sensorProbePTZPanTiltUntilEnd, spTemperatureArray8_2Status=spTemperatureArray8_2Status, sensorWaterNormalColor=sensorWaterNormalColor, sensorProbeTemperatureArrayPort8Description=sensorProbeTemperatureArrayPort8Description, sensorProbeTempDegree=sensorProbeTempDegree, sensorProbeTemperatureArrayPort2Table=sensorProbeTemperatureArrayPort2Table, sensorProbeThermostatTemperatureArrayPort8NormalAction2=sensorProbeThermostatTemperatureArrayPort8NormalAction2, spTemperatureArray7_8Status=spTemperatureArray7_8Status, sensorDryContactNormalColor=sensorDryContactNormalColor, spTemperatureArray5_4Status=spTemperatureArray5_4Status, sensorWaterRopeGoOffline=sensorWaterRopeGoOffline, sensorHumidityLowWarningDesc=sensorHumidityLowWarningDesc, sensorAirflowLowCriticalDesc=sensorAirflowLowCriticalDesc, sensorProbeVRMSStatus=sensorProbeVRMSStatus, sensorWaterRopeLeakLocation=sensorWaterRopeLeakLocation, spVRMS2Status=spVRMS2Status, sensorProbeTempIndexCount=sensorProbeTempIndexCount, spTemperatureArray4_5Status=spTemperatureArray4_5Status, sensorHumidityDelayLowWarning=sensorHumidityDelayLowWarning, sensorAirflowHighWarningColor=sensorAirflowHighWarningColor, sensorPowerDisplayStyle=sensorPowerDisplayStyle, sensorProbeDrycontactArrayPort7OutputDescOff=sensorProbeDrycontactArrayPort7OutputDescOff, sensorDryContactPort4GoOnline=sensorDryContactPort4GoOnline, sensorProbeDrycontactArrayPort3OpenURL=sensorProbeDrycontactArrayPort3OpenURL, spTemperatureArray8Status=spTemperatureArray8Status, spSwitch15Status=spSwitch15Status, sensorProbeTempOffset=sensorProbeTempOffset, sensorProbeVirtualSwitchOnline=sensorProbeVirtualSwitchOnline, sensorProbeSwitchEmailInterval=sensorProbeSwitchEmailInterval, sensorProbeEnergyPercent=sensorProbeEnergyPercent, sensorProbeTemperatureArrayPort2GoOnline=sensorProbeTemperatureArrayPort2GoOnline, sensorProbeThermostatTemperatureArrayPort2HighLimit2=sensorProbeThermostatTemperatureArrayPort2HighLimit2, sensorProbeRelayArrayPort3Description=sensorProbeRelayArrayPort3Description, sensorProbeHumidityRaw=sensorProbeHumidityRaw, sensorProbeTemperatureArrayPort6LowCritical=sensorProbeTemperatureArrayPort6LowCritical, sensorProbeVRMSDelayNormal=sensorProbeVRMSDelayNormal, sensorMotionDeviceIndex=sensorMotionDeviceIndex, sensorProbeTemperatureArrayPort3DatacollectType=sensorProbeTemperatureArrayPort3DatacollectType, sensorProbeChecksum=sensorProbeChecksum, sensorPowerTimeOut=sensorPowerTimeOut, sensorTankSenderDelayLowWarning=sensorTankSenderDelayLowWarning, sensorDryContactPort1GoOnline=sensorDryContactPort1GoOnline, sensorProbeThermostatTemperatureArrayPort8Mode=sensorProbeThermostatTemperatureArrayPort8Mode, sensorProbeDrycontactArrayPort4GoOnline=sensorProbeDrycontactArrayPort4GoOnline, sensorProbeHumidityHighVoltage=sensorProbeHumidityHighVoltage, sensorProbeDrycontactArrayPort2Description=sensorProbeDrycontactArrayPort2Description, spNormalStatus=spNormalStatus, sensorProbeThermostatTemperatureArrayPort2LowLimit2=sensorProbeThermostatTemperatureArrayPort2LowLimit2, sensorProbeRelayArraySensor=sensorProbeRelayArraySensor, sensorDCvoltageDelayHighWarning=sensorDCvoltageDelayHighWarning, sensorProbeSoftMotionURL=sensorProbeSoftMotionURL, spTemperatureArray7_7Status=spTemperatureArray7_7Status, sensorProbeRelayArrayPort8ControlMode=sensorProbeRelayArrayPort8ControlMode, sensorProbeDrycontactArrayPort6NormalState=sensorProbeDrycontactArrayPort6NormalState, sensorProbeTemperatureArrayPort4LowCritical=sensorProbeTemperatureArrayPort4LowCritical, sensorProbeTemperatureArrayPort7Index=sensorProbeTemperatureArrayPort7Index, sensorProbeNotifyBoot=sensorProbeNotifyBoot, sensorThermostatHighWarningDesc=sensorThermostatHighWarningDesc, sensorThermostatDelayLowCritical=sensorThermostatDelayLowCritical, sensorProbeTemperatureArrayPort4Description=sensorProbeTemperatureArrayPort4Description, spEventClassNumber=spEventClassNumber, sensorProbeThermostatTemperatureArrayPort8GoOnline=sensorProbeThermostatTemperatureArrayPort8GoOnline, sensorProbeDrycontactArrayPort6=sensorProbeDrycontactArrayPort6, sensorProbeDrycontactArrayPort6OpenURL=sensorProbeDrycontactArrayPort6OpenURL, spRelayArray5_7Status=spRelayArray5_7Status, spRelayArray8_6Status=spRelayArray8_6Status, sensorProbeTemperatureArrayPort2Online=sensorProbeTemperatureArrayPort2Online, spRelayArray6_4Status=spRelayArray6_4Status, sensorHumidityStatus=sensorHumidityStatus, sensorProbeRelayArrayPort8Description=sensorProbeRelayArrayPort8Description, spVirtual4Status=spVirtual4Status, sensorDCvoltageDelayNormal=sensorDCvoltageDelayNormal, sensorTankSenderStatus=sensorTankSenderStatus, sensorProbeTemperatureArrayPort5Status=sensorProbeTemperatureArrayPort5Status, sensorProbeTemperatureArrayPort6Value=sensorProbeTemperatureArrayPort6Value, spSwitch12Status=spSwitch12Status, sensorProbeDrycontactArrayPort2ControlMode=sensorProbeDrycontactArrayPort2ControlMode, sensorProbeSoundDetectorContTimeLowWarning=sensorProbeSoundDetectorContTimeLowWarning, sensorWaterTable=sensorWaterTable, sensorProbeDrycontactArrayPort4URL=sensorProbeDrycontactArrayPort4URL, spRelayArray2_1Status=spRelayArray2_1Status, sensorProbeRelayArrayPort3GoOnline=sensorProbeRelayArrayPort3GoOnline, spSwitch8Status=spSwitch8Status, spRelayArray3_3Status=spRelayArray3_3Status, sensorProbeTemperatureArrayPort3HighCritical=sensorProbeTemperatureArrayPort3HighCritical, sensorPowerHighCriticalDesc=sensorPowerHighCriticalDesc, sensorProbeDrycontactArrayPort8Table=sensorProbeDrycontactArrayPort8Table, sensorDCvoltageSensorErrorColor=sensorDCvoltageSensorErrorColor, sensorProbeSoundDetectorOpenURL=sensorProbeSoundDetectorOpenURL, sensor4to20mARaw=sensor4to20mARaw, sensorProbeThermostatTemperatureArrayPort7Mode=sensorProbeThermostatTemperatureArrayPort7Mode, spRelayArray2_7Status=spRelayArray2_7Status, sensorProbeEnergyAcknowledgement=sensorProbeEnergyAcknowledgement, sensorProbeTemperatureArrayPort1Table=sensorProbeTemperatureArrayPort1Table, sensorProbeTypeThurmostatName=sensorProbeTypeThurmostatName, spTemperatureArray6_1Status=spTemperatureArray6_1Status, sensorProbeVirtualSwitchDescriptionCritical=sensorProbeVirtualSwitchDescriptionCritical, sensorACvoltageDeviceIndex=sensorACvoltageDeviceIndex, sensorProbeThermostatTemperatureArrayPort2HighLimitAction1=sensorProbeThermostatTemperatureArrayPort2HighLimitAction1) mibBuilder.exportSymbols("SPAGENT-MIB", sensorProbeHumidityLowWarning=sensorProbeHumidityLowWarning, sensorFuelEntry=sensorFuelEntry, spRelayArray4_6Status=spRelayArray4_6Status, sensorProbeHumiditySirenCycleTime=sensorProbeHumiditySirenCycleTime, sensorProbeSoundDetectorValue=sensorProbeSoundDetectorValue, sensorProbeRelayArrayPort6OpenURL=sensorProbeRelayArrayPort6OpenURL, sensorAirflowDescription=sensorAirflowDescription, sensorIntelligentPort2GoOnline=sensorIntelligentPort2GoOnline, sensorProbeThermostatTemperatureArrayPort1Value=sensorProbeThermostatTemperatureArrayPort1Value, sensorLowCriticalColor=sensorLowCriticalColor, sensorProbeSoundDetectorLowWarning=sensorProbeSoundDetectorLowWarning, sensorMotionDescription=sensorMotionDescription, sensorProbeThermostatTemperatureArrayPort4HighLimitAction1=sensorProbeThermostatTemperatureArrayPort4HighLimitAction1, sensorProbeSwitchDelayNormal=sensorProbeSwitchDelayNormal, sensorProbeNoCameraStatus=sensorProbeNoCameraStatus, sensorProbeMailFrom=sensorProbeMailFrom, spRelayArray4_8Status=spRelayArray4_8Status, sensorProbeTemperatureArrayPort4ContTimeHighWarning=sensorProbeTemperatureArrayPort4ContTimeHighWarning, sensorProbeTemperatureArrayPort7DatacollectType=sensorProbeTemperatureArrayPort7DatacollectType, spSwitchStatus=spSwitchStatus, sensorProbeThermostatTemperatureArrayPort5LowLimit2=sensorProbeThermostatTemperatureArrayPort5LowLimit2, spTemperatureArray6_3Status=spTemperatureArray6_3Status, sensorProbeVirtualAnalogDelayNormal=sensorProbeVirtualAnalogDelayNormal, sensorProbeSwitchWaterRopeLength=sensorProbeSwitchWaterRopeLength, sensorProbeEnergyURL=sensorProbeEnergyURL, sensorSecurityDescription=sensorSecurityDescription, sensorOffDescription=sensorOffDescription, spSwitch48Status=spSwitch48Status, sensorProbeIRMSSensor=sensorProbeIRMSSensor, spRelayArray1_1Status=spRelayArray1_1Status, sensorProbeThermostatTemperatureArrayPort7HighLimit2=sensorProbeThermostatTemperatureArrayPort7HighLimit2, sensorProbeThermostatTemperatureArrayPort5GoOnline=sensorProbeThermostatTemperatureArrayPort5GoOnline, sensorProbeRelayArrayPort6=sensorProbeRelayArrayPort6, sensorThermostatDescription=sensorThermostatDescription, sensorProbeOtherSensor=sensorProbeOtherSensor, sensorFuelDisplayStyle=sensorFuelDisplayStyle, spSensorDecimalValue=spSensorDecimalValue, spTemperatureArray5_6Status=spTemperatureArray5_6Status, sensorProbeTemperatureArrayPort5ContTimeLowWarning=sensorProbeTemperatureArrayPort5ContTimeLowWarning, spRelayArray5_2Status=spRelayArray5_2Status, sensorMotionCriticalColor=sensorMotionCriticalColor, spTemperatureArray1_7Status=spTemperatureArray1_7Status, sensorProbeRelayArrayPort8Status=sensorProbeRelayArrayPort8Status, sensorProbeThermostatTemperatureArrayPort1Index=sensorProbeThermostatTemperatureArrayPort1Index, sensorProbeSoftMotionOpenURL=sensorProbeSoftMotionOpenURL, sensorProbeRelayArrayPort8ManualRelayCycleTime=sensorProbeRelayArrayPort8ManualRelayCycleTime, sensorProbeTemperatureArrayPort3ContTimeHighCritical=sensorProbeTemperatureArrayPort3ContTimeHighCritical, sensorProbeUntidePassword=sensorProbeUntidePassword, sensorProbeSwitchRelayDescOff=sensorProbeSwitchRelayDescOff, sensorProbeTemperatureArrayPort7Offset=sensorProbeTemperatureArrayPort7Offset, sensorProbeVirtualAnalogHighCritical=sensorProbeVirtualAnalogHighCritical, sensorAirflowDeviceIndex=sensorAirflowDeviceIndex, sensorFuelValue=sensorFuelValue, sensorProbeDrycontactArrayPort4ContTimeCritical=sensorProbeDrycontactArrayPort4ContTimeCritical, sensorProbeVirtualSwitchSensorNumber=sensorProbeVirtualSwitchSensorNumber, sensor4to20mALowWarningDesc=sensor4to20mALowWarningDesc, sensorProbeTemperatureArrayPort7Table=sensorProbeTemperatureArrayPort7Table, sensorProbeTemperatureArrayPort3Online=sensorProbeTemperatureArrayPort3Online, sensorProbeSoftMotionMask=sensorProbeSoftMotionMask, sensorProbeDrycontactArrayPort5ContTimeCritical=sensorProbeDrycontactArrayPort5ContTimeCritical, sensorAirflowIndex=sensorAirflowIndex, sensorFuelSensorErrorDesc=sensorFuelSensorErrorDesc, sensorTankSenderDelayLowCritical=sensorTankSenderDelayLowCritical, sensorDryContactPort15GoOnline=sensorDryContactPort15GoOnline, sensorProbeTempSendNormalTrap=sensorProbeTempSendNormalTrap, sensorProbeTemperatureArrayPort1Status=sensorProbeTemperatureArrayPort1Status, sensorPowerSubPort=sensorPowerSubPort, sensorProbeRelayArrayPort4ManualRelayAction=sensorProbeRelayArrayPort4ManualRelayAction, sensorProbeEnergyDelayError=sensorProbeEnergyDelayError, sensor4to20mASubPort=sensor4to20mASubPort, spTemperatureArray8_5Status=spTemperatureArray8_5Status, sensorProbeTemperatureArrayPort3ContTimeSensorError=sensorProbeTemperatureArrayPort3ContTimeSensorError, spSensorDescription=spSensorDescription, sensorProbeDrycontactArrayPort2OutputDescOff=sensorProbeDrycontactArrayPort2OutputDescOff, sensorPowerLowCriticalColor=sensorPowerLowCriticalColor, spRelayArray2_2Status=spRelayArray2_2Status, sensorProbeTemperatureArrayPort4LowWarning=sensorProbeTemperatureArrayPort4LowWarning, sensorRelayOffColor=sensorRelayOffColor, sensorSirenSubPort=sensorSirenSubPort, sensorProbeTempSirenDelayAlarm=sensorProbeTempSirenDelayAlarm, sensorHighWarningColor=sensorHighWarningColor, sensorDryContactOutputManualAction=sensorDryContactOutputManualAction, sensorProbeTypeWaterRopeName=sensorProbeTypeWaterRopeName, sensorProbeStatusNumber=sensorProbeStatusNumber, sensorProbeVirtualAnalogSensorTable=sensorProbeVirtualAnalogSensorTable, sensorProbeThermostatTemperatureArrayPort7LowLimitAction2=sensorProbeThermostatTemperatureArrayPort7LowLimitAction2, spSwitch40Status=spSwitch40Status, sensorProbeRelayArrayPort1RelayAction=sensorProbeRelayArrayPort1RelayAction, sensorTankSenderTable=sensorTankSenderTable, sensorDCvoltageRaw=sensorDCvoltageRaw, spAnalogue1Status=spAnalogue1Status, sensorProbeTemperatureArrayPort2Calendar=sensorProbeTemperatureArrayPort2Calendar, sensorProbeTemperatureArrayPort6ContTimeLowWarning=sensorProbeTemperatureArrayPort6ContTimeLowWarning, sensorProbeTemperatureArrayPort8DegreeType=sensorProbeTemperatureArrayPort8DegreeType, sensorProbeEnergySensor=sensorProbeEnergySensor, spEnergy8Status=spEnergy8Status, spTemperatureArray8_8Status=spTemperatureArray8_8Status, sensorMotionTable=sensorMotionTable, sensorProbeRelayArrayPort7RelayDescOff=sensorProbeRelayArrayPort7RelayDescOff, sensorProbeDrycontactArrayPort7URL=sensorProbeDrycontactArrayPort7URL, spTemperatureArray6_4Status=spTemperatureArray6_4Status, sensorProbeTempDatacollectType=sensorProbeTempDatacollectType, spSwitch66Status=spSwitch66Status, sensorProbeTemperatureArrayPort2DegreeRaw=sensorProbeTemperatureArrayPort2DegreeRaw, spRelayArray3_6Status=spRelayArray3_6Status, sensorProbeRelayArrayPort6ManualRelayCycleTime=sensorProbeRelayArrayPort6ManualRelayCycleTime, sensorProbeTemperatureArrayPort5LowCritical=sensorProbeTemperatureArrayPort5LowCritical, sensorProbeIRMSRelayCycleTime=sensorProbeIRMSRelayCycleTime, sensorProbeTypeSirenName=sensorProbeTypeSirenName, sensorPowerUnit=sensorPowerUnit, sensorSmokeCriticalDesc=sensorSmokeCriticalDesc, sensorDryContactOnColor=sensorDryContactOnColor, sensorProbeHumidityIndex=sensorProbeHumidityIndex, sensorProbeVRMSPercent=sensorProbeVRMSPercent, deviceDryContactEntry=deviceDryContactEntry, sensorProbeThermostatTemperatureArrayPort1HighLimit1=sensorProbeThermostatTemperatureArrayPort1HighLimit1, sensorProbeVirtualSwitchStatus=sensorProbeVirtualSwitchStatus, sensorProbeTempSendTrap=sensorProbeTempSendTrap, sensorProbeThermostatTemperatureArrayPort8Index=sensorProbeThermostatTemperatureArrayPort8Index, spIRMS5Status=spIRMS5Status, sensorProbeRelayArrayPort5Description=sensorProbeRelayArrayPort5Description, sensorProbeWattHoursPercent=sensorProbeWattHoursPercent, sensorProbeEnergyRelayActiveStatus=sensorProbeEnergyRelayActiveStatus, sensorProbeTemperatureArrayPort2=sensorProbeTemperatureArrayPort2, sensorProbeTemperatureArrayPort8LowWarning=sensorProbeTemperatureArrayPort8LowWarning, sensorProbeTempSendMail=sensorProbeTempSendMail, sensorProbeHumidityAtoDAmountBaseVoltage=sensorProbeHumidityAtoDAmountBaseVoltage, sensorProbeRelayArrayPort3OpenURL=sensorProbeRelayArrayPort3OpenURL, sensorProbeIRMSDelayError=sensorProbeIRMSDelayError, sensor4to20mAStatus=sensor4to20mAStatus, sensorProbeSwitchURL=sensorProbeSwitchURL, sensorProbeThermostatTemperatureArrayPort7LowLimit2=sensorProbeThermostatTemperatureArrayPort7LowLimit2, sensorProbeTemperatureArrayPort4=sensorProbeTemperatureArrayPort4, sensorProbePTZRotateAbsolute=sensorProbePTZRotateAbsolute, sensorDryContactControlMode=sensorDryContactControlMode, sensorProbeHumidityOffset=sensorProbeHumidityOffset, sensorProbeThermostatTemperatureArrayPort2Online=sensorProbeThermostatTemperatureArrayPort2Online, sensorProbeTypeSecurityName=sensorProbeTypeSecurityName, spSwitch32Status=spSwitch32Status, spVRMS6Status=spVRMS6Status, sensorProbeTemperatureArrayPort7ContTimeSensorError=sensorProbeTemperatureArrayPort7ContTimeSensorError, sensor4to20mADelayLowCritical=sensor4to20mADelayLowCritical, sensorPowerHighWarning=sensorPowerHighWarning, sensorProbeHumidityAcknowledgement=sensorProbeHumidityAcknowledgement, sensorProbeVRMSCalendar=sensorProbeVRMSCalendar, sensorProbeTemperatureArrayPort8ContTimeNormal=sensorProbeTemperatureArrayPort8ContTimeNormal, sensorDCvoltagePort=sensorDCvoltagePort, sensorFuelLowWarningColor=sensorFuelLowWarningColor, sensorProbeTemperatureArrayPort7ContTimeHighCritical=sensorProbeTemperatureArrayPort7ContTimeHighCritical, sensorPowerLowCriticalDesc=sensorPowerLowCriticalDesc, sensorProbeEnergyContTimeLowCritical=sensorProbeEnergyContTimeLowCritical, sensorHighWarningDescription=sensorHighWarningDescription, sensorProbeVRMSvoltageMode=sensorProbeVRMSvoltageMode, sensorRelayTable=sensorRelayTable, sensorProbeRelayArrayPort8RelayDescOn=sensorProbeRelayArrayPort8RelayDescOn, sensorProbeIRMSDelayNormal=sensorProbeIRMSDelayNormal, sensorPowerSensorErrorDesc=sensorPowerSensorErrorDesc, sensorMotionEntry=sensorMotionEntry, spSwitch59Status=spSwitch59Status, sensorTemperatureLowWarningColor=sensorTemperatureLowWarningColor, spAnalogue3Status=spAnalogue3Status, sensorProbeTemperatureArrayPort4Index=sensorProbeTemperatureArrayPort4Index, spRelayArray7_2Status=spRelayArray7_2Status, sensorProbeTemperatureArrayPort5=sensorProbeTemperatureArrayPort5, sensorProbeRelayArrayPort2Description=sensorProbeRelayArrayPort2Description, sensor4to20mAEntry=sensor4to20mAEntry, sensorSecurityIndex=sensorSecurityIndex, sensorRelayStatus=sensorRelayStatus, spSwitch68Status=spSwitch68Status, spRelayArray8_7Status=spRelayArray8_7Status, sensorProbeTempURL=sensorProbeTempURL, sensorProbeWattHoursSensorEntry=sensorProbeWattHoursSensorEntry, sensorProbeThermostatTemperatureArrayPort3Description=sensorProbeThermostatTemperatureArrayPort3Description, spSwitch27Status=spSwitch27Status, sensorProbeThermostatOnline=sensorProbeThermostatOnline, sensorProbeIRMSSirenDelayAlarm=sensorProbeIRMSSirenDelayAlarm, sensorProbeSwitchSirenActiveStatus=sensorProbeSwitchSirenActiveStatus, sensorThermostatSensorErrorColor=sensorThermostatSensorErrorColor, sensorProbeSoundDetectorSensor=sensorProbeSoundDetectorSensor, sensorProbeRelayArrayPort1ManualRelayCycleTime=sensorProbeRelayArrayPort1ManualRelayCycleTime, sensorPowerMaxValue=sensorPowerMaxValue, sensorPowerDelayHighCritical=sensorPowerDelayHighCritical, sensorProbeEnergySirenDelayAlarm=sensorProbeEnergySirenDelayAlarm, sensorProbeDrycontactArrayPort5OutputDescOff=sensorProbeDrycontactArrayPort5OutputDescOff, sensorProbeSwitchRelayOutputVoltStatus=sensorProbeSwitchRelayOutputVoltStatus, sensorProbeEnergyDelayNormal=sensorProbeEnergyDelayNormal, sensorProbeRelayArrayPort4RelayCycleTime=sensorProbeRelayArrayPort4RelayCycleTime, sensorProbeHumidityAtoDAmountMaxVoltage=sensorProbeHumidityAtoDAmountMaxVoltage, sensorProbeRelayArrayPort2ControlMode=sensorProbeRelayArrayPort2ControlMode, sensorFuelDelayError=sensorFuelDelayError, sensorRelaySubPort=sensorRelaySubPort, sensorProbeTypeThermocoupleName=sensorProbeTypeThermocoupleName, sensorProbeDrycontactArrayPort1Number=sensorProbeDrycontactArrayPort1Number, sensorProbeSwitchIndex=sensorProbeSwitchIndex, sensorProbeRelayArrayPort1Status=sensorProbeRelayArrayPort1Status, sensorProbeEnergyLowWarning=sensorProbeEnergyLowWarning, sensorWaterRopeStatus=sensorWaterRopeStatus, spRelayArray6_1Status=spRelayArray6_1Status, sensorProbeTemperatureArrayPort2ContTimeLowWarning=sensorProbeTemperatureArrayPort2ContTimeLowWarning, sensorProbeDrycontactArrayPort6Entry=sensorProbeDrycontactArrayPort6Entry, spTemperatureArray8_7Status=spTemperatureArray8_7Status, sensorProbeSwitchStatus=sensorProbeSwitchStatus, sensorFuelSensorErrorColor=sensorFuelSensorErrorColor, sensorProbeNtpServer=sensorProbeNtpServer, sensorSirenEntry=sensorSirenEntry, sensorProbeRelayArrayPort5Number=sensorProbeRelayArrayPort5Number, spEnergy5Status=spEnergy5Status, sensorProbeThermostatTemperatureArrayPort4Online=sensorProbeThermostatTemperatureArrayPort4Online, sensorProbeSmtpPort=sensorProbeSmtpPort, sensorPowerLowWarningColor=sensorPowerLowWarningColor, spVirtual20Status=spVirtual20Status, spRelayArray1_6Status=spRelayArray1_6Status, sensorProbeStatusNumberError=sensorProbeStatusNumberError, spTemperatureArray4_4Status=spTemperatureArray4_4Status, sensorProbeDrycontactArrayPort4OutputDescOn=sensorProbeDrycontactArrayPort4OutputDescOn, sensorDryContactStatus=sensorDryContactStatus, sensorWaterRopeTable=sensorWaterRopeTable, sensorProbeDrycontactArrayPort7Status=sensorProbeDrycontactArrayPort7Status, sensorProbeRelayArrayPort4Entry=sensorProbeRelayArrayPort4Entry, sensorProbeRelayArrayPort1Index=sensorProbeRelayArrayPort1Index, sensorProbeHumidityOnline=sensorProbeHumidityOnline, spIRMS7Status=spIRMS7Status, sensorProbeSwitchWaterRopeType=sensorProbeSwitchWaterRopeType, spTemperatureArray1_8Status=spTemperatureArray1_8Status, spTemperatureArray2_2Status=spTemperatureArray2_2Status, sensorProbeTemperatureArrayPort7DegreeRaw=sensorProbeTemperatureArrayPort7DegreeRaw, sensorProbeTemperatureArrayPort3LowWarning=sensorProbeTemperatureArrayPort3LowWarning, sensorProbeThermostatTemperatureArrayPort8NormalAction1=sensorProbeThermostatTemperatureArrayPort8NormalAction1, spRelayArray4Status=spRelayArray4Status, sensorErrorColor=sensorErrorColor, sensorProbeRelayArrayPort3RelayAction=sensorProbeRelayArrayPort3RelayAction, sensorProbeRelayArrayPort5OpenURL=sensorProbeRelayArrayPort5OpenURL, sensorProbeVirtualAnalogContTimeSensorError=sensorProbeVirtualAnalogContTimeSensorError, sensorProbeHumidityContTimeSensorError=sensorProbeHumidityContTimeSensorError, sensorProbeThermostatTemperatureArrayPort4GoOnline=sensorProbeThermostatTemperatureArrayPort4GoOnline, sensorProbeThermostatTemperatureArrayPort3HighLimitAction2=sensorProbeThermostatTemperatureArrayPort3HighLimitAction2, sensorProbeSyslogDestIP=sensorProbeSyslogDestIP, sensorProbeTemperatureArrayPort8OpenURL=sensorProbeTemperatureArrayPort8OpenURL, sensorProbeRelayArrayPort2ManualRelayCycleTime=sensorProbeRelayArrayPort2ManualRelayCycleTime, sensorProbeIRMSGoOnline=sensorProbeIRMSGoOnline, deviceStatus=deviceStatus, sensor4to20mAOffset=sensor4to20mAOffset, sensorProbeTemperatureArrayPort5ContTimeLowCritical=sensorProbeTemperatureArrayPort5ContTimeLowCritical, sensorProbeVirtualAnalogOpenURL=sensorProbeVirtualAnalogOpenURL, sensorThermostatDelayError=sensorThermostatDelayError, sensorProbeRelayArrayPort1OpenURL=sensorProbeRelayArrayPort1OpenURL, sensorAirflowEntry=sensorAirflowEntry, sensorAirflowHighCriticalDesc=sensorAirflowHighCriticalDesc, sensorProbeThermostatTemperatureArrayPort7HighLimit1=sensorProbeThermostatTemperatureArrayPort7HighLimit1, sensorACvoltageEntry=sensorACvoltageEntry, sensorProbeIRMSLowWarning=sensorProbeIRMSLowWarning, spSensorValue=spSensorValue, sensorProbeVRMSRearm=sensorProbeVRMSRearm, spTemperature4Status=spTemperature4Status) mibBuilder.exportSymbols("SPAGENT-MIB", sensorTankSenderLowCriticalColor=sensorTankSenderLowCriticalColor, sensorProbeTemperatureArrayPort2DatacollectType=sensorProbeTemperatureArrayPort2DatacollectType, sensorProbeThermostatTemperatureArrayPort1Online=sensorProbeThermostatTemperatureArrayPort1Online, sensorTankSenderRearm=sensorTankSenderRearm, sensorProbeThermostatTemperatureArrayPort3LowLimitAction1=sensorProbeThermostatTemperatureArrayPort3LowLimitAction1, sensorProbeHumidityRelayCycleTime=sensorProbeHumidityRelayCycleTime, sensorProbeRelayArrayPort6ManualRelayAction=sensorProbeRelayArrayPort6ManualRelayAction, sensorProbeRelayArrayPort6NormalState=sensorProbeRelayArrayPort6NormalState, sensorWaterRopeImpedance=sensorWaterRopeImpedance, spSwitch21Status=spSwitch21Status, sensorProbeTemperatureArrayPort3URL=sensorProbeTemperatureArrayPort3URL, sensorProbeTemperatureArrayPort5GoOnline=sensorProbeTemperatureArrayPort5GoOnline, sensorProbeThermostatTemperatureArrayPort6LowLimitAction1=sensorProbeThermostatTemperatureArrayPort6LowLimitAction1, spRelayArray1Status=spRelayArray1Status, sensorProbeIRMSPercent=sensorProbeIRMSPercent, sensorProbeThermostatRelayControlPort=sensorProbeThermostatRelayControlPort, sensorMotionStatus=sensorMotionStatus, sensorPowerHighWarningColor=sensorPowerHighWarningColor, sensorProbeThermostatTemperatureArrayPort3NormalAction1=sensorProbeThermostatTemperatureArrayPort3NormalAction1, sensorRelayPort=sensorRelayPort, spTemperatureArray1_2Status=spTemperatureArray1_2Status, sensorProbeDrycontactArrayPort1OutputDescOff=sensorProbeDrycontactArrayPort1OutputDescOff, sensorProbeDrycontactArrayPort2OutputDescOn=sensorProbeDrycontactArrayPort2OutputDescOn, sensorProbeRelayArrayPort5Online=sensorProbeRelayArrayPort5Online, sensorProbeVirtualAnalogAcknowledgement=sensorProbeVirtualAnalogAcknowledgement, sensorProbeAudioAttachChannel=sensorProbeAudioAttachChannel, sensorProbeThermostatTemperatureArrayPort6Mode=sensorProbeThermostatTemperatureArrayPort6Mode, sensorProbeThermostatTemperatureArrayPort8Description=sensorProbeThermostatTemperatureArrayPort8Description, sensorSirenOffDesc=sensorSirenOffDesc, sensorThermostatDegree=sensorThermostatDegree, sensorProbeThermostatTemperatureArrayPort6NormalAction1=sensorProbeThermostatTemperatureArrayPort6NormalAction1, spVRMS7Status=spVRMS7Status, deviceEntry=deviceEntry, sensorProbeThermostatLowLimitAction2=sensorProbeThermostatLowLimitAction2, sensorProbeDrycontactArraySensor=sensorProbeDrycontactArraySensor, deviceIntelligentEntry=deviceIntelligentEntry, sensorProbeDrycontactArrayPort5Online=sensorProbeDrycontactArrayPort5Online, sensorProbeDrycontactArrayPort8URL=sensorProbeDrycontactArrayPort8URL, sensorProbeMailResendInterval=sensorProbeMailResendInterval, sensorProbeThermostatTemperatureArrayPort4LowLimitAction2=sensorProbeThermostatTemperatureArrayPort4LowLimitAction2, sensorProbeHumidityPercent=sensorProbeHumidityPercent, sensorProbeDrycontactArrayPort5NormalState=sensorProbeDrycontactArrayPort5NormalState, sensorProbeSoundDetectorStatus=sensorProbeSoundDetectorStatus, spEventClassName=spEventClassName, sensorAirflowDelayHighWarning=sensorAirflowDelayHighWarning, sensorProbeRelayArrayPort2ManualRelayAction=sensorProbeRelayArrayPort2ManualRelayAction, sensorDryContactPort11GoOnline=sensorDryContactPort11GoOnline, spSwitch50Status=spSwitch50Status, spTemperatureArray1_3Status=spTemperatureArray1_3Status, sensorProbeThermostatTemperatureArrayPort3HighLimitAction1=sensorProbeThermostatTemperatureArrayPort3HighLimitAction1, sensorDCvoltageLowWarningDesc=sensorDCvoltageLowWarningDesc, sensorAirflowDelayLowWarning=sensorAirflowDelayLowWarning, sensorSmokeDescription=sensorSmokeDescription, sensorProbePTZRotateRelative=sensorProbePTZRotateRelative, sensorProbeTempContTimeLowCritical=sensorProbeTempContTimeLowCritical, sensorDCvoltageBaseVoltage=sensorDCvoltageBaseVoltage, sensorPowerTable=sensorPowerTable, sensorErrorDescription=sensorErrorDescription, sensorProbeThermostatTemperatureArrayPort7Value=sensorProbeThermostatTemperatureArrayPort7Value, sensor4to20mANormalDesc=sensor4to20mANormalDesc, sensorTemperatureDelayLowWarning=sensorTemperatureDelayLowWarning, sensorProbeRelayArrayPort6ControlMode=sensorProbeRelayArrayPort6ControlMode, sensorProbeEnergyRaw=sensorProbeEnergyRaw, spEnergy4Status=spEnergy4Status, sensorProbeTemperatureArrayPort3GoOnline=sensorProbeTemperatureArrayPort3GoOnline)
(integer, object_identifier, octet_string) = mibBuilder.importSymbols('ASN1', 'Integer', 'ObjectIdentifier', 'OctetString') (named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues') (constraints_intersection, value_size_constraint, constraints_union, single_value_constraint, value_range_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ConstraintsIntersection', 'ValueSizeConstraint', 'ConstraintsUnion', 'SingleValueConstraint', 'ValueRangeConstraint') (notification_group, module_compliance) = mibBuilder.importSymbols('SNMPv2-CONF', 'NotificationGroup', 'ModuleCompliance') (gauge32, mib_scalar, mib_table, mib_table_row, mib_table_column, mib_identifier, ip_address, module_identity, unsigned32, counter64, bits, notification_type, iso, integer32, enterprises, object_identity, time_ticks, notification_type, counter32) = mibBuilder.importSymbols('SNMPv2-SMI', 'Gauge32', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'MibIdentifier', 'IpAddress', 'ModuleIdentity', 'Unsigned32', 'Counter64', 'Bits', 'NotificationType', 'iso', 'Integer32', 'enterprises', 'ObjectIdentity', 'TimeTicks', 'NotificationType', 'Counter32') (textual_convention, display_string) = mibBuilder.importSymbols('SNMPv2-TC', 'TextualConvention', 'DisplayString') akcp = mib_identifier((1, 3, 6, 1, 4, 1, 3854)) sensor_probe = mib_identifier((1, 3, 6, 1, 4, 1, 3854, 1)) sp_summary = mib_identifier((1, 3, 6, 1, 4, 1, 3854, 1, 1)) sp_status = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('noStatus', 1), ('normal', 2), ('warning', 3), ('critical', 4), ('sensorError', 5)))).setMaxAccess('readonly') if mibBuilder.loadTexts: spStatus.setStatus('mandatory') sp_manuf_name = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 1, 6), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: spManufName.setStatus('mandatory') sp_help_url = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 1, 7), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: spHelpUrl.setStatus('mandatory') sp_product_name = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 1, 8), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: spProductName.setStatus('mandatory') sp_host_name = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 1, 9), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: spHostName.setStatus('mandatory') sp_sensor = mib_identifier((1, 3, 6, 1, 4, 1, 3854, 1, 2)) sensor_probe_detail = mib_identifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2)) sensor_probe_entry = mib_identifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1)) sensor_probe_host = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 1), ip_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeHost.setStatus('mandatory') sensor_probe_use_dhcp = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('yes', 1), ('no', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeUseDHCP.setStatus('mandatory') sensor_probe_mac = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 3), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeMAC.setStatus('mandatory') sensor_probe_set_community = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 4), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSetCommunity.setStatus('mandatory') sensor_probe_get_community = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 5), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeGetCommunity.setStatus('mandatory') sensor_probe_temp_table = mib_table((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16)) if mibBuilder.loadTexts: sensorProbeTempTable.setStatus('mandatory') sensor_probe_temp_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1)).setIndexNames((0, 'SPAGENT-MIB', 'sensorProbeTempIndex')) if mibBuilder.loadTexts: sensorProbeTempEntry.setStatus('mandatory') sensor_probe_temp_description = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 1), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTempDescription.setStatus('mandatory') sensor_probe_temp_location = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 2), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTempLocation.setStatus('mandatory') sensor_probe_temp_degree = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 3), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeTempDegree.setStatus('mandatory') sensor_probe_temp_status = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('noStatus', 1), ('normal', 2), ('highWarning', 3), ('highCritical', 4), ('lowWarning', 5), ('lowCritical', 6), ('sensorError', 7)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeTempStatus.setStatus('mandatory') sensor_probe_temp_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('online', 1), ('offline', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeTempOnline.setStatus('mandatory') sensor_probe_temp_go_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('goOnline', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTempGoOnline.setStatus('mandatory') sensor_probe_temp_high_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 7), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTempHighWarning.setStatus('mandatory') sensor_probe_temp_high_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 8), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTempHighCritical.setStatus('mandatory') sensor_probe_temp_low_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 9), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTempLowWarning.setStatus('mandatory') sensor_probe_temp_low_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 10), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTempLowCritical.setStatus('mandatory') sensor_probe_temp_rearm = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 11), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTempRearm.setStatus('mandatory') sensor_probe_temp_degree_type = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('fahr', 0), ('celsius', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTempDegreeType.setStatus('mandatory') sensor_probe_temp_sensor_type = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('type1', 0), ('type2', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTempSensorType.setStatus('mandatory') sensor_probe_temp_degree_raw = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 14), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeTempDegreeRaw.setStatus('mandatory') sensor_probe_temp_email_trap_limit = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 16), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disable', 0), ('enable', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTempEmailTrapLimit.setStatus('mandatory') sensor_probe_temp_email_trap_schedule = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 17), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTempEmailTrapSchedule.setStatus('mandatory') sensor_probe_temp_email_trap_interval = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 18), integer32().subtype(subtypeSpec=value_range_constraint(0, 60))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTempEmailTrapInterval.setStatus('mandatory') sensor_probe_temp_send_normal_trap = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 19), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disable', 0), ('enable', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTempSendNormalTrap.setStatus('mandatory') sensor_probe_temp_delay_error = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 20), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTempDelayError.setStatus('mandatory') sensor_probe_temp_delay_normal = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 21), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTempDelayNormal.setStatus('mandatory') sensor_probe_temp_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 22), integer32().subtype(subtypeSpec=value_range_constraint(0, 7))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeTempIndex.setStatus('mandatory') sensor_probe_temp_relay_cycle_time = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 23), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTempRelayCycleTime.setStatus('mandatory') sensor_probe_temp_relay_on_port = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 24), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTempRelayOnPort.setStatus('mandatory') sensor_probe_temp_relay_active_status = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 25), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(3, 4, 5, 6, 7))).clone(namedValues=named_values(('highWarning', 3), ('highCritical', 4), ('lowWarning', 5), ('lowCritical', 6), ('anyError', 7)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTempRelayActiveStatus.setStatus('mandatory') sensor_probe_temp_relay_action = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 26), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3, 4))).clone(namedValues=named_values(('cycle', 2), ('turn-on', 3), ('turn-off', 4)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTempRelayAction.setStatus('mandatory') sensor_probe_temp_email_interval = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 27), integer32().subtype(subtypeSpec=value_range_constraint(0, 60))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTempEmailInterval.setStatus('mandatory') sensor_probe_temp_index_count = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 28), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeTempIndexCount.setStatus('mandatory') sensor_probe_temp_offset = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 29), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTempOffset.setStatus('mandatory') sensor_probe_temp_siren_cycle_time = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 30), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTempSirenCycleTime.setStatus('mandatory') sensor_probe_temp_siren_on_port = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 31), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTempSirenOnPort.setStatus('mandatory') sensor_probe_temp_siren_active_status = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 32), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(3, 4, 5, 6, 7))).clone(namedValues=named_values(('highWarning', 3), ('highCritical', 4), ('lowWarning', 5), ('lowCritical', 6), ('anyError', 7)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTempSirenActiveStatus.setStatus('mandatory') sensor_probe_temp_siren_action = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 33), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3, 4))).clone(namedValues=named_values(('cycle', 2), ('turn-on', 3), ('turn-off', 4)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTempSirenAction.setStatus('mandatory') sensor_probe_temp_acknowledgement = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 34), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1))).clone(namedValues=named_values(('ack', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTempAcknowledgement.setStatus('mandatory') sensor_probe_temp_siren_delay_alarm = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 35), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTempSirenDelayAlarm.setStatus('mandatory') sensor_probe_temp_url = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 36), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTempURL.setStatus('mandatory') sensor_probe_temp_open_url = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 37), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 2))).clone(namedValues=named_values(('cur-window', 0), ('new-window', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTempOpenURL.setStatus('mandatory') sensor_probe_temp_datacollect_type = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 38), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('average', 1), ('highest', 2), ('lowest', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTempDatacollectType.setStatus('mandatory') sensor_probe_temp_cont_time_high_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 39), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTempContTimeHighCritical.setStatus('mandatory') sensor_probe_temp_cont_time_high_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 40), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTempContTimeHighWarning.setStatus('mandatory') sensor_probe_temp_cont_time_normal = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 41), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTempContTimeNormal.setStatus('mandatory') sensor_probe_temp_cont_time_low_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 42), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTempContTimeLowWarning.setStatus('mandatory') sensor_probe_temp_cont_time_low_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 43), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTempContTimeLowCritical.setStatus('mandatory') sensor_probe_temp_cont_time_sensor_error = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 44), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTempContTimeSensorError.setStatus('mandatory') sensor_probe_temp_calendar = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 45), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disable', 0), ('enable', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTempCalendar.setStatus('mandatory') sensor_probe_thermostat_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 46), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeThermostatIndex.setStatus('mandatory') sensor_probe_thermostat_description = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 47), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatDescription.setStatus('mandatory') sensor_probe_thermostat_value = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 48), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeThermostatValue.setStatus('mandatory') sensor_probe_thermostat_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 49), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('online', 1), ('offline', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeThermostatOnline.setStatus('mandatory') sensor_probe_thermostat_go_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 50), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('goOnline', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatGoOnline.setStatus('mandatory') sensor_probe_thermostat_mode = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 51), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('normal', 0), ('time-bases', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatMode.setStatus('mandatory') sensor_probe_thermostat_relay_control_port = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 52), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatRelayControlPort.setStatus('mandatory') sensor_probe_thermostat_normal_action1 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 53), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('turn-on', 0), ('turn-off', 1), ('no-change', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatNormalAction1.setStatus('mandatory') sensor_probe_thermostat_high_limit1 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 54), integer32().subtype(subtypeSpec=value_range_constraint(-40, 167))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatHighLimit1.setStatus('mandatory') sensor_probe_thermostat_high_limit_action1 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 55), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('turn-on', 0), ('turn-off', 1), ('no-change', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatHighLimitAction1.setStatus('mandatory') sensor_probe_thermostat_low_limit1 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 56), integer32().subtype(subtypeSpec=value_range_constraint(-40, 167))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatLowLimit1.setStatus('mandatory') sensor_probe_thermostat_low_limit_action1 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 57), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('turn-on', 0), ('turn-off', 1), ('no-change', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatLowLimitAction1.setStatus('mandatory') sensor_probe_thermostat_normal_action2 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 58), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('turn-on', 0), ('turn-off', 1), ('no-change', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatNormalAction2.setStatus('mandatory') sensor_probe_thermostat_high_limit2 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 59), integer32().subtype(subtypeSpec=value_range_constraint(-40, 167))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatHighLimit2.setStatus('mandatory') sensor_probe_thermostat_high_limit_action2 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 60), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('turn-on', 0), ('turn-off', 1), ('no-change', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatHighLimitAction2.setStatus('mandatory') sensor_probe_thermostat_low_limit2 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 61), integer32().subtype(subtypeSpec=value_range_constraint(-40, 167))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatLowLimit2.setStatus('mandatory') sensor_probe_thermostat_low_limit_action2 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 62), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('turn-on', 0), ('turn-off', 1), ('no-change', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatLowLimitAction2.setStatus('mandatory') sensor_probe_thermostat_enable_time = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 63), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatEnableTime.setStatus('mandatory') sensor_probe_temp_send_normal_mail = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 64), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disable', 0), ('enable', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTempSendNormalMail.setStatus('mandatory') sensor_probe_temp_send_trap = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 65), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disable', 0), ('enable', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTempSendTrap.setStatus('mandatory') sensor_probe_temp_send_mail = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 16, 1, 66), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disable', 0), ('enable', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTempSendMail.setStatus('mandatory') sensor_probe_humidity_table = mib_table((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17)) if mibBuilder.loadTexts: sensorProbeHumidityTable.setStatus('mandatory') sensor_probe_humidity_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1)).setIndexNames((0, 'SPAGENT-MIB', 'sensorProbeHumidityIndex')) if mibBuilder.loadTexts: sensorProbeHumidityEntry.setStatus('mandatory') sensor_probe_humidity_description = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 1), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeHumidityDescription.setStatus('mandatory') sensor_probe_humidity_location = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 2), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeHumidityLocation.setStatus('mandatory') sensor_probe_humidity_percent = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(-32768, 32767))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeHumidityPercent.setStatus('mandatory') sensor_probe_humidity_status = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('noStatus', 1), ('normal', 2), ('highWarning', 3), ('highCritical', 4), ('lowWarning', 5), ('lowCritical', 6), ('sensorError', 7)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeHumidityStatus.setStatus('mandatory') sensor_probe_humidity_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('online', 1), ('offline', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeHumidityOnline.setStatus('mandatory') sensor_probe_humidity_go_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('goOnline', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeHumidityGoOnline.setStatus('mandatory') sensor_probe_humidity_high_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 7), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeHumidityHighWarning.setStatus('mandatory') sensor_probe_humidity_high_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 8), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeHumidityHighCritical.setStatus('mandatory') sensor_probe_humidity_low_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 9), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeHumidityLowWarning.setStatus('mandatory') sensor_probe_humidity_low_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 10), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeHumidityLowCritical.setStatus('mandatory') sensor_probe_humidity_rearm = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 11), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeHumidityRearm.setStatus('mandatory') sensor_probe_humidity_raw = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 13), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeHumidityRaw.setStatus('mandatory') sensor_probe_humidity_low_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 14), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeHumidityLowVoltage.setStatus('mandatory') sensor_probe_humidity_high_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 15), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeHumidityHighVoltage.setStatus('mandatory') sensor_probe_humidity_email_trap_limit = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 17), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disable', 0), ('enable', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeHumidityEmailTrapLimit.setStatus('mandatory') sensor_probe_humidity_email_trap_schedule = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 18), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeHumidityEmailTrapSchedule.setStatus('mandatory') sensor_probe_humidity_email_trap_interval = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 19), integer32().subtype(subtypeSpec=value_range_constraint(0, 60))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeHumidityEmailTrapInterval.setStatus('mandatory') sensor_probe_humidity_send_normal_trap = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 20), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disable', 0), ('enable', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeHumiditySendNormalTrap.setStatus('mandatory') sensor_probe_humidity_delay_error = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 21), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeHumidityDelayError.setStatus('mandatory') sensor_probe_humidity_delay_normal = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 22), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeHumidityDelayNormal.setStatus('mandatory') sensor_probe_humidity_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 23), integer32().subtype(subtypeSpec=value_range_constraint(0, 7))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeHumidityIndex.setStatus('mandatory') sensor_probe_humidity_ato_d_amount_max_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 24), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeHumidityAtoDAmountMaxVoltage.setStatus('mandatory') sensor_probe_humidity_ato_d_amount_base_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 25), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeHumidityAtoDAmountBaseVoltage.setStatus('mandatory') sensor_probe_humidity_ato_d_type_unit = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 26), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('absolute', 1), ('percent', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeHumidityAtoDTypeUnit.setStatus('mandatory') sensor_probe_humidity_dc_unit = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 27), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeHumidityDcUnit.setStatus('mandatory') sensor_probe_humidity_ato_d_jumper = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 28), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(-600, -400, -300, -200, -100, 100, 200, 300, 400, 600))).clone(namedValues=named_values(('jumperAt-60', -600), ('jumperAt-40', -400), ('jumperAt-30', -300), ('jumperAt-20', -200), ('jumperAt-10', -100), ('jumperAt10', 100), ('jumperAt20', 200), ('jumperAt30', 300), ('jumperAt40', 400), ('jumperAt60', 600)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeHumidityAtoDJumper.setStatus('mandatory') sensor_probe_humidity_relay_cycle_time = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 29), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeHumidityRelayCycleTime.setStatus('mandatory') sensor_probe_humidity_relay_on_port = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 30), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeHumidityRelayOnPort.setStatus('mandatory') sensor_probe_humidity_relay_active_status = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 31), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(3, 4, 5, 6, 7))).clone(namedValues=named_values(('highWarning', 3), ('highCritical', 4), ('lowWarning', 5), ('lowCritical', 6), ('anyError', 7)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeHumidityRelayActiveStatus.setStatus('mandatory') sensor_probe_humidity_relay_action = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 32), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3, 4))).clone(namedValues=named_values(('cycle', 2), ('turn-on', 3), ('turn-off', 4)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeHumidityRelayAction.setStatus('mandatory') sensor_probe_humidity_email_interval = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 33), integer32().subtype(subtypeSpec=value_range_constraint(0, 60))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeHumidityEmailInterval.setStatus('mandatory') sensor_probe_humidity4to20m_a_unit = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 34), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeHumidity4to20mAUnit.setStatus('mandatory') sensor_probe_humidity_index_count = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 35), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeHumidityIndexCount.setStatus('mandatory') sensor_probe_humidity_offset = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 36), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeHumidityOffset.setStatus('mandatory') sensor_probe_humidity_siren_cycle_time = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 37), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeHumiditySirenCycleTime.setStatus('mandatory') sensor_probe_humidity_siren_on_port = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 38), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeHumiditySirenOnPort.setStatus('mandatory') sensor_probe_humidity_siren_active_status = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 39), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(3, 4, 5, 6, 7))).clone(namedValues=named_values(('highWarning', 3), ('highCritical', 4), ('lowWarning', 5), ('lowCritical', 6), ('anyError', 7)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeHumiditySirenActiveStatus.setStatus('mandatory') sensor_probe_humidity_siren_action = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 40), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3, 4))).clone(namedValues=named_values(('cycle', 2), ('turn-on', 3), ('turn-off', 4)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeHumiditySirenAction.setStatus('mandatory') sensor_probe_humidity_acknowledgement = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 41), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1))).clone(namedValues=named_values(('ack', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeHumidityAcknowledgement.setStatus('mandatory') sensor_probe_humidity_siren_delay_alarm = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 42), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeHumiditySirenDelayAlarm.setStatus('mandatory') sensor_probe_humidity_url = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 43), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeHumidityURL.setStatus('mandatory') sensor_probe_humidity_open_url = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 44), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 2))).clone(namedValues=named_values(('cur-window', 0), ('new-window', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeHumidityOpenURL.setStatus('mandatory') sensor_probe_humidity_datacollect_type = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 45), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('average', 1), ('highest', 2), ('lowest', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeHumidityDatacollectType.setStatus('mandatory') sensor_probe_humidity_cont_time_high_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 46), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeHumidityContTimeHighCritical.setStatus('mandatory') sensor_probe_humidity_cont_time_high_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 47), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeHumidityContTimeHighWarning.setStatus('mandatory') sensor_probe_humidity_cont_time_normal = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 48), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeHumidityContTimeNormal.setStatus('mandatory') sensor_probe_humidity_cont_time_low_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 49), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeHumidityContTimeLowWarning.setStatus('mandatory') sensor_probe_humidity_cont_time_low_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 50), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeHumidityContTimeLowCritical.setStatus('mandatory') sensor_probe_humidity_cont_time_sensor_error = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 51), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeHumidityContTimeSensorError.setStatus('mandatory') sensor_probe_humidity_calendar = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 52), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disable', 0), ('enable', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeHumidityCalendar.setStatus('mandatory') sensor_probe_humidity_send_normal_mail = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 53), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disable', 0), ('enable', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeHumiditySendNormalMail.setStatus('mandatory') sensor_probe_humidity_send_trap = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 54), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disable', 0), ('enable', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeHumiditySendTrap.setStatus('mandatory') sensor_probe_humidity_send_mail = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 17, 1, 55), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disable', 0), ('enable', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeHumiditySendMail.setStatus('mandatory') sensor_probe_switch_table = mib_table((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18)) if mibBuilder.loadTexts: sensorProbeSwitchTable.setStatus('mandatory') sensor_probe_switch_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1)).setIndexNames((0, 'SPAGENT-MIB', 'sensorProbeSwitchIndex')) if mibBuilder.loadTexts: sensorProbeSwitchEntry.setStatus('mandatory') sensor_probe_switch_description = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 1), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSwitchDescription.setStatus('mandatory') sensor_probe_switch_location = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 2), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSwitchLocation.setStatus('mandatory') sensor_probe_switch_status = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 4, 6, 7, 8, 9))).clone(namedValues=named_values(('noStatus', 1), ('normal', 2), ('highCritical', 4), ('lowCritical', 6), ('sensorError', 7), ('relayOn', 8), ('relayOff', 9)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeSwitchStatus.setStatus('mandatory') sensor_probe_switch_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('online', 1), ('offline', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeSwitchOnline.setStatus('mandatory') sensor_probe_switch_go_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('goOnline', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSwitchGoOnline.setStatus('mandatory') sensor_probe_switch_direction = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('input', 0), ('output', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSwitchDirection.setStatus('mandatory') sensor_probe_switch_normal_state = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('closed', 0), ('open', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSwitchNormalState.setStatus('mandatory') sensor_probe_switch_output_level = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('low', 0), ('high', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSwitchOutputLevel.setStatus('mandatory') sensor_probe_sensor_type = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 8, 9, 10, 12, 13, 14))).clone(namedValues=named_values(('temperature', 1), ('fourTo20mA', 2), ('humidity', 3), ('water', 4), ('atod', 5), ('security', 6), ('airflow', 8), ('siren', 9), ('dryContact', 10), ('voltage', 12), ('relay', 13), ('motion', 14)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSensorType.setStatus('mandatory') sensor_probe_switch_email_trap_limit = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disable', 0), ('enable', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSwitchEmailTrapLimit.setStatus('mandatory') sensor_probe_switch_email_trap_schedule = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 12), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSwitchEmailTrapSchedule.setStatus('mandatory') sensor_probe_switch_email_trap_interval = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 13), integer32().subtype(subtypeSpec=value_range_constraint(0, 60))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSwitchEmailTrapInterval.setStatus('mandatory') sensor_probe_switch_send_normal_trap = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 14), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disable', 0), ('enable', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSwitchSendNormalTrap.setStatus('mandatory') sensor_probe_switch_delay_error = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 15), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSwitchDelayError.setStatus('mandatory') sensor_probe_switch_delay_normal = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 16), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSwitchDelayNormal.setStatus('mandatory') sensor_probe_switch_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 17), integer32().subtype(subtypeSpec=value_range_constraint(0, 67))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeSwitchIndex.setStatus('mandatory') sensor_probe_switch_relay_cycle_time = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 18), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSwitchRelayCycleTime.setStatus('mandatory') sensor_probe_switch_relay_on_port = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 19), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSwitchRelayOnPort.setStatus('mandatory') sensor_probe_switch_relay_active_status = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 20), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(3, 4, 5, 6, 7))).clone(namedValues=named_values(('highWarning', 3), ('highCritical', 4), ('lowWarning', 5), ('lowCritical', 6), ('anyError', 7)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSwitchRelayActiveStatus.setStatus('mandatory') sensor_probe_switch_relay_action = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 21), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3, 4))).clone(namedValues=named_values(('cycle', 2), ('turn-on', 3), ('turn-off', 4)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSwitchRelayAction.setStatus('mandatory') sensor_probe_switch_email_interval = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 22), integer32().subtype(subtypeSpec=value_range_constraint(0, 60))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSwitchEmailInterval.setStatus('mandatory') sensor_probe_switch_relay_output_volt_status = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 23), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(7, 10, 11))).clone(namedValues=named_values(('sensorError', 7), ('noVoltagePresent', 10), ('voltagePresent', 11)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeSwitchRelayOutputVoltStatus.setStatus('mandatory') sensor_probe_switch_manual_relay_cycle_time = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 24), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSwitchManualRelayCycleTime.setStatus('mandatory') sensor_probe_switch_manual_relay_action = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 25), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 3, 4, 7, 8))).clone(namedValues=named_values(('allow-sensor-control', 1), ('turn-on', 3), ('turn-off', 4), ('cycle-Off-On-Off', 7), ('cycle-On-Off-On', 8)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSwitchManualRelayAction.setStatus('mandatory') sensor_probe_switch_relay_desc_on = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 26), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSwitchRelayDescOn.setStatus('mandatory') sensor_probe_switch_relay_desc_off = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 27), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSwitchRelayDescOff.setStatus('mandatory') sensor_probe_switch_index_count = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 28), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeSwitchIndexCount.setStatus('mandatory') sensor_probe_switch_siren_cycle_time = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 29), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSwitchSirenCycleTime.setStatus('mandatory') sensor_probe_switch_siren_on_port = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 30), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSwitchSirenOnPort.setStatus('mandatory') sensor_probe_switch_siren_active_status = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 31), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(3, 4, 5, 6, 7))).clone(namedValues=named_values(('highWarning', 3), ('highCritical', 4), ('lowWarning', 5), ('lowCritical', 6), ('anyError', 7)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSwitchSirenActiveStatus.setStatus('mandatory') sensor_probe_switch_siren_action = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 32), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3, 4))).clone(namedValues=named_values(('cycle', 2), ('turn-on', 3), ('turn-off', 4)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSwitchSirenAction.setStatus('mandatory') sensor_probe_switch_acknowledgement = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 33), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1))).clone(namedValues=named_values(('ack', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSwitchAcknowledgement.setStatus('mandatory') sensor_probe_switch_siren_delay_alarm = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 34), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSwitchSirenDelayAlarm.setStatus('mandatory') sensor_probe_switch_url = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 35), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSwitchURL.setStatus('mandatory') sensor_probe_switch_open_url = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 36), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 2))).clone(namedValues=named_values(('cur-window', 0), ('new-window', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSwitchOpenURL.setStatus('mandatory') sensor_probe_switch_cont_time_high_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 37), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSwitchContTimeHighCritical.setStatus('mandatory') sensor_probe_switch_cont_time_normal = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 39), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSwitchContTimeNormal.setStatus('mandatory') sensor_probe_switch_calendar = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 43), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disable', 0), ('enable', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSwitchCalendar.setStatus('mandatory') sensor_probe_switch_relay_control_mode = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 44), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('manual-control', 0), ('notification-control', 1), ('time-control', 2), ('thermostat-control', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSwitchRelayControlMode.setStatus('mandatory') sensor_probe_switch_siren_control_mode = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 45), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('manual-control', 0), ('notification-control', 1), ('time-control', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSwitchSirenControlMode.setStatus('mandatory') sensor_probe_switch_send_normal_mail = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 46), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disable', 0), ('enable', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSwitchSendNormalMail.setStatus('mandatory') sensor_probe_switch_send_trap = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 47), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disable', 0), ('enable', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSwitchSendTrap.setStatus('mandatory') sensor_probe_switch_send_mail = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 48), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disable', 0), ('enable', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSwitchSendMail.setStatus('mandatory') sensor_probe_switch_water_rope_leak_location = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 49), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeSwitchWaterRopeLeakLocation.setStatus('mandatory') sensor_probe_switch_water_rope_length = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 50), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeSwitchWaterRopeLength.setStatus('mandatory') sensor_probe_switch_water_rope_unit = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 51), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('meters', 0), ('feet', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSwitchWaterRopeUnit.setStatus('mandatory') sensor_probe_switch_water_rope_impedance = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 52), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSwitchWaterRopeImpedance.setStatus('mandatory') sensor_probe_switch_water_rope_raw = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 53), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeSwitchWaterRopeRaw.setStatus('mandatory') sensor_probe_switch_water_rope_type = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 18, 1, 55), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('custom', 0), ('water', 1), ('fuel', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSwitchWaterRopeType.setStatus('mandatory') sensor_probe_other_sensor = mib_identifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19)) sensor_probe_irms_sensor = mib_identifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 26)) sensor_probe_irms_sensor_number = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 26, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeIRMSSensorNumber.setStatus('mandatory') sensor_probe_irms_sensor_table = mib_table((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 26, 2)) if mibBuilder.loadTexts: sensorProbeIRMSSensorTable.setStatus('mandatory') sensor_probe_irms_sensor_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 26, 2, 1)).setIndexNames((0, 'SPAGENT-MIB', 'sensorProbeIRMSSensorIndex')) if mibBuilder.loadTexts: sensorProbeIRMSSensorEntry.setStatus('mandatory') sensor_probe_irms_sensor_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 26, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 7))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeIRMSSensorIndex.setStatus('mandatory') sensor_probe_irms_description = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 26, 2, 1, 2), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeIRMSDescription.setStatus('mandatory') sensor_probe_irms_percent = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 26, 2, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(-32768, 32767))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeIRMSPercent.setStatus('mandatory') sensor_probe_irms_status = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 26, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('noStatus', 1), ('normal', 2), ('highWarning', 3), ('highCritical', 4), ('lowWarning', 5), ('lowCritical', 6), ('sensorError', 7)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeIRMSStatus.setStatus('mandatory') sensor_probe_irms_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 26, 2, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('online', 1), ('offline', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeIRMSOnline.setStatus('mandatory') sensor_probe_irms_go_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 26, 2, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('goOnline', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeIRMSGoOnline.setStatus('mandatory') sensor_probe_irms_high_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 26, 2, 1, 7), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeIRMSHighWarning.setStatus('mandatory') sensor_probe_irms_high_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 26, 2, 1, 8), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeIRMSHighCritical.setStatus('mandatory') sensor_probe_irms_low_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 26, 2, 1, 9), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeIRMSLowWarning.setStatus('mandatory') sensor_probe_irms_low_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 26, 2, 1, 10), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeIRMSLowCritical.setStatus('mandatory') sensor_probe_irms_rearm = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 26, 2, 1, 11), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeIRMSRearm.setStatus('mandatory') sensor_probe_irms_raw = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 26, 2, 1, 13), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeIRMSRaw.setStatus('mandatory') sensor_probe_irms_email_trap_limit = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 26, 2, 1, 17), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disable', 0), ('enable', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeIRMSEmailTrapLimit.setStatus('mandatory') sensor_probe_irms_delay_error = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 26, 2, 1, 21), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeIRMSDelayError.setStatus('mandatory') sensor_probe_irms_delay_normal = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 26, 2, 1, 22), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeIRMSDelayNormal.setStatus('mandatory') sensor_probe_irms_relay_cycle_time = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 26, 2, 1, 29), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeIRMSRelayCycleTime.setStatus('mandatory') sensor_probe_irms_relay_on_port = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 26, 2, 1, 30), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeIRMSRelayOnPort.setStatus('mandatory') sensor_probe_irms_relay_active_status = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 26, 2, 1, 31), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(3, 4, 5, 6, 7))).clone(namedValues=named_values(('highWarning', 3), ('highCritical', 4), ('lowWarning', 5), ('lowCritical', 6), ('anyError', 7)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeIRMSRelayActiveStatus.setStatus('mandatory') sensor_probe_irms_relay_action = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 26, 2, 1, 32), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3, 4))).clone(namedValues=named_values(('cycle', 2), ('turn-on', 3), ('turn-off', 4)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeIRMSRelayAction.setStatus('mandatory') sensor_probe_irms_siren_cycle_time = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 26, 2, 1, 37), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeIRMSSirenCycleTime.setStatus('mandatory') sensor_probe_irms_siren_on_port = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 26, 2, 1, 38), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeIRMSSirenOnPort.setStatus('mandatory') sensor_probe_irms_siren_active_status = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 26, 2, 1, 39), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(3, 4, 5, 6, 7))).clone(namedValues=named_values(('highWarning', 3), ('highCritical', 4), ('lowWarning', 5), ('lowCritical', 6), ('anyError', 7)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeIRMSSirenActiveStatus.setStatus('mandatory') sensor_probe_irms_siren_action = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 26, 2, 1, 40), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3, 4))).clone(namedValues=named_values(('cycle', 2), ('turn-on', 3), ('turn-off', 4)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeIRMSSirenAction.setStatus('mandatory') sensor_probe_irms_acknowledgement = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 26, 2, 1, 41), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1))).clone(namedValues=named_values(('ack', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeIRMSAcknowledgement.setStatus('mandatory') sensor_probe_irms_siren_delay_alarm = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 26, 2, 1, 42), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeIRMSSirenDelayAlarm.setStatus('mandatory') sensor_probe_irmsurl = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 26, 2, 1, 43), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeIRMSURL.setStatus('mandatory') sensor_probe_irms_open_url = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 26, 2, 1, 44), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 2))).clone(namedValues=named_values(('cur-window', 0), ('new-window', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeIRMSOpenURL.setStatus('mandatory') sensor_probe_irms_datacollect_type = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 26, 2, 1, 45), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('average', 1), ('highest', 2), ('lowest', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeIRMSDatacollectType.setStatus('mandatory') sensor_probe_irms_cont_time_high_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 26, 2, 1, 46), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeIRMSContTimeHighCritical.setStatus('mandatory') sensor_probe_irms_cont_time_high_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 26, 2, 1, 47), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeIRMSContTimeHighWarning.setStatus('mandatory') sensor_probe_irms_cont_time_normal = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 26, 2, 1, 48), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeIRMSContTimeNormal.setStatus('mandatory') sensor_probe_irms_cont_time_low_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 26, 2, 1, 49), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeIRMSContTimeLowWarning.setStatus('mandatory') sensor_probe_irms_cont_time_low_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 26, 2, 1, 50), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeIRMSContTimeLowCritical.setStatus('mandatory') sensor_probe_irms_cont_time_sensor_error = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 26, 2, 1, 51), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeIRMSContTimeSensorError.setStatus('mandatory') sensor_probe_irms_calendar = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 26, 2, 1, 52), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disable', 0), ('enable', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeIRMSCalendar.setStatus('mandatory') sensor_probe_vrms_sensor = mib_identifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 27)) sensor_probe_vrms_sensor_number = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 27, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeVRMSSensorNumber.setStatus('mandatory') sensor_probe_vrms_sensor_table = mib_table((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 27, 2)) if mibBuilder.loadTexts: sensorProbeVRMSSensorTable.setStatus('mandatory') sensor_probe_vrms_sensor_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 27, 2, 1)).setIndexNames((0, 'SPAGENT-MIB', 'sensorProbeVRMSSensorIndex')) if mibBuilder.loadTexts: sensorProbeVRMSSensorEntry.setStatus('mandatory') sensor_probe_vrms_sensor_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 27, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 7))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeVRMSSensorIndex.setStatus('mandatory') sensor_probe_vrms_description = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 27, 2, 1, 2), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeVRMSDescription.setStatus('mandatory') sensor_probe_vrms_percent = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 27, 2, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(-32768, 32767))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeVRMSPercent.setStatus('mandatory') sensor_probe_vrms_status = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 27, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('noStatus', 1), ('normal', 2), ('highWarning', 3), ('highCritical', 4), ('lowWarning', 5), ('lowCritical', 6), ('sensorError', 7)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeVRMSStatus.setStatus('mandatory') sensor_probe_vrms_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 27, 2, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('online', 1), ('offline', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeVRMSOnline.setStatus('mandatory') sensor_probe_vrms_go_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 27, 2, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('goOnline', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeVRMSGoOnline.setStatus('mandatory') sensor_probe_vrms_high_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 27, 2, 1, 7), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeVRMSHighWarning.setStatus('mandatory') sensor_probe_vrms_high_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 27, 2, 1, 8), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeVRMSHighCritical.setStatus('mandatory') sensor_probe_vrms_low_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 27, 2, 1, 9), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeVRMSLowWarning.setStatus('mandatory') sensor_probe_vrms_low_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 27, 2, 1, 10), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeVRMSLowCritical.setStatus('mandatory') sensor_probe_vrms_rearm = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 27, 2, 1, 11), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeVRMSRearm.setStatus('mandatory') sensor_probe_vrms_raw = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 27, 2, 1, 13), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeVRMSRaw.setStatus('mandatory') sensor_probe_vrms_email_trap_limit = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 27, 2, 1, 17), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disable', 0), ('enable', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeVRMSEmailTrapLimit.setStatus('mandatory') sensor_probe_vrms_delay_error = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 27, 2, 1, 21), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeVRMSDelayError.setStatus('mandatory') sensor_probe_vrms_delay_normal = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 27, 2, 1, 22), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeVRMSDelayNormal.setStatus('mandatory') sensor_probe_vrms_relay_cycle_time = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 27, 2, 1, 29), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeVRMSRelayCycleTime.setStatus('mandatory') sensor_probe_vrms_relay_on_port = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 27, 2, 1, 30), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeVRMSRelayOnPort.setStatus('mandatory') sensor_probe_vrms_relay_active_status = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 27, 2, 1, 31), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(3, 4, 5, 6, 7))).clone(namedValues=named_values(('highWarning', 3), ('highCritical', 4), ('lowWarning', 5), ('lowCritical', 6), ('anyError', 7)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeVRMSRelayActiveStatus.setStatus('mandatory') sensor_probe_vrms_relay_action = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 27, 2, 1, 32), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3, 4))).clone(namedValues=named_values(('cycle', 2), ('turn-on', 3), ('turn-off', 4)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeVRMSRelayAction.setStatus('mandatory') sensor_probe_vrms_siren_cycle_time = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 27, 2, 1, 37), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeVRMSSirenCycleTime.setStatus('mandatory') sensor_probe_vrms_siren_on_port = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 27, 2, 1, 38), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeVRMSSirenOnPort.setStatus('mandatory') sensor_probe_vrms_siren_active_status = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 27, 2, 1, 39), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(3, 4, 5, 6, 7))).clone(namedValues=named_values(('highWarning', 3), ('highCritical', 4), ('lowWarning', 5), ('lowCritical', 6), ('anyError', 7)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeVRMSSirenActiveStatus.setStatus('mandatory') sensor_probe_vrms_siren_action = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 27, 2, 1, 40), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3, 4))).clone(namedValues=named_values(('cycle', 2), ('turn-on', 3), ('turn-off', 4)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeVRMSSirenAction.setStatus('mandatory') sensor_probe_vrms_acknowledgement = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 27, 2, 1, 41), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1))).clone(namedValues=named_values(('ack', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeVRMSAcknowledgement.setStatus('mandatory') sensor_probe_vrms_siren_delay_alarm = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 27, 2, 1, 42), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeVRMSSirenDelayAlarm.setStatus('mandatory') sensor_probe_vrm_svoltage_mode = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 27, 2, 1, 43), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(110, 220))).clone(namedValues=named_values(('ac-110', 110), ('ac-220', 220)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeVRMSvoltageMode.setStatus('mandatory') sensor_probe_vrmsurl = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 27, 2, 1, 44), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeVRMSURL.setStatus('mandatory') sensor_probe_vrms_open_url = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 27, 2, 1, 45), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 2))).clone(namedValues=named_values(('cur-window', 0), ('new-window', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeVRMSOpenURL.setStatus('mandatory') sensor_probe_vrms_datacollect_type = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 27, 2, 1, 46), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('average', 1), ('highest', 2), ('lowest', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeVRMSDatacollectType.setStatus('mandatory') sensor_probe_vrms_cont_time_high_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 27, 2, 1, 47), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeVRMSContTimeHighCritical.setStatus('mandatory') sensor_probe_vrms_cont_time_high_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 27, 2, 1, 48), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeVRMSContTimeHighWarning.setStatus('mandatory') sensor_probe_vrms_cont_time_normal = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 27, 2, 1, 49), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeVRMSContTimeNormal.setStatus('mandatory') sensor_probe_vrms_cont_time_low_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 27, 2, 1, 50), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeVRMSContTimeLowWarning.setStatus('mandatory') sensor_probe_vrms_cont_time_low_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 27, 2, 1, 51), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeVRMSContTimeLowCritical.setStatus('mandatory') sensor_probe_vrms_cont_time_sensor_error = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 27, 2, 1, 52), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeVRMSContTimeSensorError.setStatus('mandatory') sensor_probe_vrms_calendar = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 27, 2, 1, 53), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disable', 0), ('enable', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeVRMSCalendar.setStatus('mandatory') sensor_probe_energy_sensor = mib_identifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 28)) sensor_probe_energy_sensor_number = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 28, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeEnergySensorNumber.setStatus('mandatory') sensor_probe_energy_sensor_table = mib_table((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 28, 2)) if mibBuilder.loadTexts: sensorProbeEnergySensorTable.setStatus('mandatory') sensor_probe_energy_sensor_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 28, 2, 1)).setIndexNames((0, 'SPAGENT-MIB', 'sensorProbeEnergySensorIndex')) if mibBuilder.loadTexts: sensorProbeEnergySensorEntry.setStatus('mandatory') sensor_probe_energy_sensor_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 28, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 7))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeEnergySensorIndex.setStatus('mandatory') sensor_probe_energy_description = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 28, 2, 1, 2), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeEnergyDescription.setStatus('mandatory') sensor_probe_energy_percent = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 28, 2, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(-32768, 32767))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeEnergyPercent.setStatus('mandatory') sensor_probe_energy_status = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 28, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('noStatus', 1), ('normal', 2), ('highWarning', 3), ('highCritical', 4), ('lowWarning', 5), ('lowCritical', 6), ('sensorError', 7)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeEnergyStatus.setStatus('mandatory') sensor_probe_energy_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 28, 2, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('online', 1), ('offline', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeEnergyOnline.setStatus('mandatory') sensor_probe_energy_go_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 28, 2, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('goOnline', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeEnergyGoOnline.setStatus('mandatory') sensor_probe_energy_high_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 28, 2, 1, 7), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeEnergyHighWarning.setStatus('mandatory') sensor_probe_energy_high_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 28, 2, 1, 8), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeEnergyHighCritical.setStatus('mandatory') sensor_probe_energy_low_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 28, 2, 1, 9), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeEnergyLowWarning.setStatus('mandatory') sensor_probe_energy_low_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 28, 2, 1, 10), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeEnergyLowCritical.setStatus('mandatory') sensor_probe_energy_rearm = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 28, 2, 1, 11), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeEnergyRearm.setStatus('mandatory') sensor_probe_energy_raw = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 28, 2, 1, 13), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeEnergyRaw.setStatus('mandatory') sensor_probe_energy_email_trap_limit = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 28, 2, 1, 17), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disable', 0), ('enable', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeEnergyEmailTrapLimit.setStatus('mandatory') sensor_probe_energy_delay_error = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 28, 2, 1, 21), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeEnergyDelayError.setStatus('mandatory') sensor_probe_energy_delay_normal = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 28, 2, 1, 22), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeEnergyDelayNormal.setStatus('mandatory') sensor_probe_energy_relay_cycle_time = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 28, 2, 1, 29), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeEnergyRelayCycleTime.setStatus('mandatory') sensor_probe_energy_relay_on_port = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 28, 2, 1, 30), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeEnergyRelayOnPort.setStatus('mandatory') sensor_probe_energy_relay_active_status = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 28, 2, 1, 31), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(3, 4, 5, 6, 7))).clone(namedValues=named_values(('highWarning', 3), ('highCritical', 4), ('lowWarning', 5), ('lowCritical', 6), ('anyError', 7)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeEnergyRelayActiveStatus.setStatus('mandatory') sensor_probe_energy_relay_action = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 28, 2, 1, 32), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3, 4))).clone(namedValues=named_values(('cycle', 2), ('turn-on', 3), ('turn-off', 4)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeEnergyRelayAction.setStatus('mandatory') sensor_probe_energy_siren_cycle_time = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 28, 2, 1, 37), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeEnergySirenCycleTime.setStatus('mandatory') sensor_probe_energy_siren_on_port = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 28, 2, 1, 38), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeEnergySirenOnPort.setStatus('mandatory') sensor_probe_energy_siren_active_status = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 28, 2, 1, 39), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(3, 4, 5, 6, 7))).clone(namedValues=named_values(('highWarning', 3), ('highCritical', 4), ('lowWarning', 5), ('lowCritical', 6), ('anyError', 7)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeEnergySirenActiveStatus.setStatus('mandatory') sensor_probe_energy_siren_action = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 28, 2, 1, 40), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3, 4))).clone(namedValues=named_values(('cycle', 2), ('turn-on', 3), ('turn-off', 4)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeEnergySirenAction.setStatus('mandatory') sensor_probe_energy_acknowledgement = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 28, 2, 1, 41), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1))).clone(namedValues=named_values(('ack', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeEnergyAcknowledgement.setStatus('mandatory') sensor_probe_energy_siren_delay_alarm = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 28, 2, 1, 42), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeEnergySirenDelayAlarm.setStatus('mandatory') sensor_probe_energy_reading_mode = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 28, 2, 1, 43), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('active', 0), ('apparent', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeEnergyReadingMode.setStatus('mandatory') sensor_probe_energy_url = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 28, 2, 1, 44), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeEnergyURL.setStatus('mandatory') sensor_probe_energy_open_url = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 28, 2, 1, 45), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 2))).clone(namedValues=named_values(('cur-window', 0), ('new-window', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeEnergyOpenURL.setStatus('mandatory') sensor_probe_energy_datacollect_type = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 28, 2, 1, 46), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('average', 1), ('highest', 2), ('lowest', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeEnergyDatacollectType.setStatus('mandatory') sensor_probe_energy_cont_time_high_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 28, 2, 1, 47), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeEnergyContTimeHighCritical.setStatus('mandatory') sensor_probe_energy_cont_time_high_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 28, 2, 1, 48), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeEnergyContTimeHighWarning.setStatus('mandatory') sensor_probe_energy_cont_time_normal = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 28, 2, 1, 49), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeEnergyContTimeNormal.setStatus('mandatory') sensor_probe_energy_cont_time_low_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 28, 2, 1, 50), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeEnergyContTimeLowWarning.setStatus('mandatory') sensor_probe_energy_cont_time_low_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 28, 2, 1, 51), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeEnergyContTimeLowCritical.setStatus('mandatory') sensor_probe_energy_cont_time_sensor_error = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 28, 2, 1, 52), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeEnergyContTimeSensorError.setStatus('mandatory') sensor_probe_energy_calendar = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 28, 2, 1, 53), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disable', 0), ('enable', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeEnergyCalendar.setStatus('mandatory') sensor_probe_relay_array_sensor = mib_identifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29)) sensor_probe_relay_array_port1 = mib_identifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 1)) sensor_probe_relay_array_port1_number = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeRelayArrayPort1Number.setStatus('mandatory') sensor_probe_relay_array_port1_table = mib_table((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 1, 2)) if mibBuilder.loadTexts: sensorProbeRelayArrayPort1Table.setStatus('mandatory') sensor_probe_relay_array_port1_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 1, 2, 1)).setIndexNames((0, 'SPAGENT-MIB', 'sensorProbeRelayArrayPort1Index')) if mibBuilder.loadTexts: sensorProbeRelayArrayPort1Entry.setStatus('mandatory') sensor_probe_relay_array_port1_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 1, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 7))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeRelayArrayPort1Index.setStatus('mandatory') sensor_probe_relay_array_port1_description = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 1, 2, 1, 2), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort1Description.setStatus('mandatory') sensor_probe_relay_array_port1_status = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 1, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 4, 6, 7, 8, 9))).clone(namedValues=named_values(('noStatus', 1), ('normal', 2), ('highCritical', 4), ('lowCritical', 6), ('sensorError', 7), ('relayOn', 8), ('relayOff', 9)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeRelayArrayPort1Status.setStatus('mandatory') sensor_probe_relay_array_port1_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 1, 2, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('online', 1), ('offline', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeRelayArrayPort1Online.setStatus('mandatory') sensor_probe_relay_array_port1_go_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 1, 2, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('goOnline', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort1GoOnline.setStatus('mandatory') sensor_probe_relay_array_port1_normal_state = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 1, 2, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('closed', 0), ('open', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort1NormalState.setStatus('mandatory') sensor_probe_relay_array_port1_relay_cycle_time = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 1, 2, 1, 18), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort1RelayCycleTime.setStatus('mandatory') sensor_probe_relay_array_port1_relay_action = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 1, 2, 1, 21), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3, 4))).clone(namedValues=named_values(('cycle', 2), ('turn-on', 3), ('turn-off', 4)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort1RelayAction.setStatus('mandatory') sensor_probe_relay_array_port1_manual_relay_cycle_time = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 1, 2, 1, 24), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort1ManualRelayCycleTime.setStatus('mandatory') sensor_probe_relay_array_port1_manual_relay_action = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 1, 2, 1, 25), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 3, 4, 7, 8))).clone(namedValues=named_values(('allow-sensor-control', 1), ('turn-on', 3), ('turn-off', 4), ('cycle-Off-On-Off', 7), ('cycle-On-Off-On', 8)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort1ManualRelayAction.setStatus('mandatory') sensor_probe_relay_array_port1_relay_desc_on = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 1, 2, 1, 26), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort1RelayDescOn.setStatus('mandatory') sensor_probe_relay_array_port1_relay_desc_off = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 1, 2, 1, 27), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort1RelayDescOff.setStatus('mandatory') sensor_probe_relay_array_port1_url = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 1, 2, 1, 28), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort1URL.setStatus('mandatory') sensor_probe_relay_array_port1_open_url = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 1, 2, 1, 29), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 2))).clone(namedValues=named_values(('cur-window', 0), ('new-window', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort1OpenURL.setStatus('mandatory') sensor_probe_relay_array_port1_control_mode = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 1, 2, 1, 30), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('manual-control', 0), ('notification-control', 1), ('time-control', 2), ('thermostat-control', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort1ControlMode.setStatus('mandatory') sensor_probe_relay_array_port2 = mib_identifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 2)) sensor_probe_relay_array_port2_number = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 2, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeRelayArrayPort2Number.setStatus('mandatory') sensor_probe_relay_array_port2_table = mib_table((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 2, 2)) if mibBuilder.loadTexts: sensorProbeRelayArrayPort2Table.setStatus('mandatory') sensor_probe_relay_array_port2_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 2, 2, 1)).setIndexNames((0, 'SPAGENT-MIB', 'sensorProbeRelayArrayPort2Index')) if mibBuilder.loadTexts: sensorProbeRelayArrayPort2Entry.setStatus('mandatory') sensor_probe_relay_array_port2_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 2, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 7))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeRelayArrayPort2Index.setStatus('mandatory') sensor_probe_relay_array_port2_description = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 2, 2, 1, 2), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort2Description.setStatus('mandatory') sensor_probe_relay_array_port2_status = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 2, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 4, 6, 7, 8, 9))).clone(namedValues=named_values(('noStatus', 1), ('normal', 2), ('highCritical', 4), ('lowCritical', 6), ('sensorError', 7), ('relayOn', 8), ('relayOff', 9)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeRelayArrayPort2Status.setStatus('mandatory') sensor_probe_relay_array_port2_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 2, 2, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('online', 1), ('offline', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeRelayArrayPort2Online.setStatus('mandatory') sensor_probe_relay_array_port2_go_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 2, 2, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('goOnline', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort2GoOnline.setStatus('mandatory') sensor_probe_relay_array_port2_normal_state = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 2, 2, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('closed', 0), ('open', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort2NormalState.setStatus('mandatory') sensor_probe_relay_array_port2_relay_cycle_time = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 2, 2, 1, 18), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort2RelayCycleTime.setStatus('mandatory') sensor_probe_relay_array_port2_relay_action = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 2, 2, 1, 21), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3, 4))).clone(namedValues=named_values(('cycle', 2), ('turn-on', 3), ('turn-off', 4)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort2RelayAction.setStatus('mandatory') sensor_probe_relay_array_port2_manual_relay_cycle_time = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 2, 2, 1, 24), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort2ManualRelayCycleTime.setStatus('mandatory') sensor_probe_relay_array_port2_manual_relay_action = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 2, 2, 1, 25), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 3, 4, 7, 8))).clone(namedValues=named_values(('allow-sensor-control', 1), ('turn-on', 3), ('turn-off', 4), ('cycle-Off-On-Off', 7), ('cycle-On-Off-On', 8)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort2ManualRelayAction.setStatus('mandatory') sensor_probe_relay_array_port2_relay_desc_on = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 2, 2, 1, 26), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort2RelayDescOn.setStatus('mandatory') sensor_probe_relay_array_port2_relay_desc_off = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 2, 2, 1, 27), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort2RelayDescOff.setStatus('mandatory') sensor_probe_relay_array_port2_url = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 2, 2, 1, 28), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort2URL.setStatus('mandatory') sensor_probe_relay_array_port2_open_url = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 2, 2, 1, 29), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 2))).clone(namedValues=named_values(('cur-window', 0), ('new-window', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort2OpenURL.setStatus('mandatory') sensor_probe_relay_array_port2_control_mode = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 2, 2, 1, 30), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('manual-control', 0), ('notification-control', 1), ('time-control', 2), ('thermostat-control', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort2ControlMode.setStatus('mandatory') sensor_probe_relay_array_port3 = mib_identifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 3)) sensor_probe_relay_array_port3_number = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 3, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeRelayArrayPort3Number.setStatus('mandatory') sensor_probe_relay_array_port3_table = mib_table((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 3, 2)) if mibBuilder.loadTexts: sensorProbeRelayArrayPort3Table.setStatus('mandatory') sensor_probe_relay_array_port3_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 3, 2, 1)).setIndexNames((0, 'SPAGENT-MIB', 'sensorProbeRelayArrayPort3Index')) if mibBuilder.loadTexts: sensorProbeRelayArrayPort3Entry.setStatus('mandatory') sensor_probe_relay_array_port3_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 3, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 7))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeRelayArrayPort3Index.setStatus('mandatory') sensor_probe_relay_array_port3_description = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 3, 2, 1, 2), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort3Description.setStatus('mandatory') sensor_probe_relay_array_port3_status = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 3, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 4, 6, 7, 8, 9))).clone(namedValues=named_values(('noStatus', 1), ('normal', 2), ('highCritical', 4), ('lowCritical', 6), ('sensorError', 7), ('relayOn', 8), ('relayOff', 9)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeRelayArrayPort3Status.setStatus('mandatory') sensor_probe_relay_array_port3_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 3, 2, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('online', 1), ('offline', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeRelayArrayPort3Online.setStatus('mandatory') sensor_probe_relay_array_port3_go_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 3, 2, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('goOnline', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort3GoOnline.setStatus('mandatory') sensor_probe_relay_array_port3_normal_state = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 3, 2, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('closed', 0), ('open', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort3NormalState.setStatus('mandatory') sensor_probe_relay_array_port3_relay_cycle_time = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 3, 2, 1, 18), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort3RelayCycleTime.setStatus('mandatory') sensor_probe_relay_array_port3_relay_action = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 3, 2, 1, 21), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3, 4))).clone(namedValues=named_values(('cycle', 2), ('turn-on', 3), ('turn-off', 4)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort3RelayAction.setStatus('mandatory') sensor_probe_relay_array_port3_manual_relay_cycle_time = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 3, 2, 1, 24), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort3ManualRelayCycleTime.setStatus('mandatory') sensor_probe_relay_array_port3_manual_relay_action = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 3, 2, 1, 25), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 3, 4, 7, 8))).clone(namedValues=named_values(('allow-sensor-control', 1), ('turn-on', 3), ('turn-off', 4), ('cycle-Off-On-Off', 7), ('cycle-On-Off-On', 8)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort3ManualRelayAction.setStatus('mandatory') sensor_probe_relay_array_port3_relay_desc_on = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 3, 2, 1, 26), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort3RelayDescOn.setStatus('mandatory') sensor_probe_relay_array_port3_relay_desc_off = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 3, 2, 1, 27), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort3RelayDescOff.setStatus('mandatory') sensor_probe_relay_array_port3_url = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 3, 2, 1, 28), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort3URL.setStatus('mandatory') sensor_probe_relay_array_port3_open_url = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 3, 2, 1, 29), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 2))).clone(namedValues=named_values(('cur-window', 0), ('new-window', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort3OpenURL.setStatus('mandatory') sensor_probe_relay_array_port3_control_mode = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 3, 2, 1, 30), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('manual-control', 0), ('notification-control', 1), ('time-control', 2), ('thermostat-control', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort3ControlMode.setStatus('mandatory') sensor_probe_relay_array_port4 = mib_identifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 4)) sensor_probe_relay_array_port4_number = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 4, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeRelayArrayPort4Number.setStatus('mandatory') sensor_probe_relay_array_port4_table = mib_table((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 4, 2)) if mibBuilder.loadTexts: sensorProbeRelayArrayPort4Table.setStatus('mandatory') sensor_probe_relay_array_port4_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 4, 2, 1)).setIndexNames((0, 'SPAGENT-MIB', 'sensorProbeRelayArrayPort4Index')) if mibBuilder.loadTexts: sensorProbeRelayArrayPort4Entry.setStatus('mandatory') sensor_probe_relay_array_port4_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 4, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 7))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeRelayArrayPort4Index.setStatus('mandatory') sensor_probe_relay_array_port4_description = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 4, 2, 1, 2), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort4Description.setStatus('mandatory') sensor_probe_relay_array_port4_status = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 4, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 4, 6, 7, 8, 9))).clone(namedValues=named_values(('noStatus', 1), ('normal', 2), ('highCritical', 4), ('lowCritical', 6), ('sensorError', 7), ('relayOn', 8), ('relayOff', 9)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeRelayArrayPort4Status.setStatus('mandatory') sensor_probe_relay_array_port4_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 4, 2, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('online', 1), ('offline', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeRelayArrayPort4Online.setStatus('mandatory') sensor_probe_relay_array_port4_go_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 4, 2, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('goOnline', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort4GoOnline.setStatus('mandatory') sensor_probe_relay_array_port4_normal_state = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 4, 2, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('closed', 0), ('open', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort4NormalState.setStatus('mandatory') sensor_probe_relay_array_port4_relay_cycle_time = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 4, 2, 1, 18), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort4RelayCycleTime.setStatus('mandatory') sensor_probe_relay_array_port4_relay_action = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 4, 2, 1, 21), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3, 4))).clone(namedValues=named_values(('cycle', 2), ('turn-on', 3), ('turn-off', 4)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort4RelayAction.setStatus('mandatory') sensor_probe_relay_array_port4_manual_relay_cycle_time = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 4, 2, 1, 24), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort4ManualRelayCycleTime.setStatus('mandatory') sensor_probe_relay_array_port4_manual_relay_action = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 4, 2, 1, 25), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 3, 4, 7, 8))).clone(namedValues=named_values(('allow-sensor-control', 1), ('turn-on', 3), ('turn-off', 4), ('cycle-Off-On-Off', 7), ('cycle-On-Off-On', 8)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort4ManualRelayAction.setStatus('mandatory') sensor_probe_relay_array_port4_relay_desc_on = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 4, 2, 1, 26), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort4RelayDescOn.setStatus('mandatory') sensor_probe_relay_array_port4_relay_desc_off = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 4, 2, 1, 27), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort4RelayDescOff.setStatus('mandatory') sensor_probe_relay_array_port4_url = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 4, 2, 1, 28), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort4URL.setStatus('mandatory') sensor_probe_relay_array_port4_open_url = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 4, 2, 1, 29), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 2))).clone(namedValues=named_values(('cur-window', 0), ('new-window', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort4OpenURL.setStatus('mandatory') sensor_probe_relay_array_port4_control_mode = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 4, 2, 1, 30), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('manual-control', 0), ('notification-control', 1), ('time-control', 2), ('thermostat-control', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort4ControlMode.setStatus('mandatory') sensor_probe_relay_array_port5 = mib_identifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 5)) sensor_probe_relay_array_port5_number = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 5, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeRelayArrayPort5Number.setStatus('mandatory') sensor_probe_relay_array_port5_table = mib_table((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 5, 2)) if mibBuilder.loadTexts: sensorProbeRelayArrayPort5Table.setStatus('mandatory') sensor_probe_relay_array_port5_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 5, 2, 1)).setIndexNames((0, 'SPAGENT-MIB', 'sensorProbeRelayArrayPort5Index')) if mibBuilder.loadTexts: sensorProbeRelayArrayPort5Entry.setStatus('mandatory') sensor_probe_relay_array_port5_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 5, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 7))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeRelayArrayPort5Index.setStatus('mandatory') sensor_probe_relay_array_port5_description = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 5, 2, 1, 2), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort5Description.setStatus('mandatory') sensor_probe_relay_array_port5_status = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 5, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 4, 6, 7, 8, 9))).clone(namedValues=named_values(('noStatus', 1), ('normal', 2), ('highCritical', 4), ('lowCritical', 6), ('sensorError', 7), ('relayOn', 8), ('relayOff', 9)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeRelayArrayPort5Status.setStatus('mandatory') sensor_probe_relay_array_port5_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 5, 2, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('online', 1), ('offline', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeRelayArrayPort5Online.setStatus('mandatory') sensor_probe_relay_array_port5_go_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 5, 2, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('goOnline', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort5GoOnline.setStatus('mandatory') sensor_probe_relay_array_port5_normal_state = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 5, 2, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('closed', 0), ('open', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort5NormalState.setStatus('mandatory') sensor_probe_relay_array_port5_relay_cycle_time = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 5, 2, 1, 18), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort5RelayCycleTime.setStatus('mandatory') sensor_probe_relay_array_port5_relay_action = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 5, 2, 1, 21), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3, 4))).clone(namedValues=named_values(('cycle', 2), ('turn-on', 3), ('turn-off', 4)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort5RelayAction.setStatus('mandatory') sensor_probe_relay_array_port5_manual_relay_cycle_time = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 5, 2, 1, 24), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort5ManualRelayCycleTime.setStatus('mandatory') sensor_probe_relay_array_port5_manual_relay_action = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 5, 2, 1, 25), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 3, 4, 7, 8))).clone(namedValues=named_values(('allow-sensor-control', 1), ('turn-on', 3), ('turn-off', 4), ('cycle-Off-On-Off', 7), ('cycle-On-Off-On', 8)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort5ManualRelayAction.setStatus('mandatory') sensor_probe_relay_array_port5_relay_desc_on = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 5, 2, 1, 26), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort5RelayDescOn.setStatus('mandatory') sensor_probe_relay_array_port5_relay_desc_off = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 5, 2, 1, 27), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort5RelayDescOff.setStatus('mandatory') sensor_probe_relay_array_port5_url = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 5, 2, 1, 28), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort5URL.setStatus('mandatory') sensor_probe_relay_array_port5_open_url = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 5, 2, 1, 29), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 2))).clone(namedValues=named_values(('cur-window', 0), ('new-window', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort5OpenURL.setStatus('mandatory') sensor_probe_relay_array_port5_control_mode = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 5, 2, 1, 30), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('manual-control', 0), ('notification-control', 1), ('time-control', 2), ('thermostat-control', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort5ControlMode.setStatus('mandatory') sensor_probe_relay_array_port6 = mib_identifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 6)) sensor_probe_relay_array_port6_number = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 6, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeRelayArrayPort6Number.setStatus('mandatory') sensor_probe_relay_array_port6_table = mib_table((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 6, 2)) if mibBuilder.loadTexts: sensorProbeRelayArrayPort6Table.setStatus('mandatory') sensor_probe_relay_array_port6_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 6, 2, 1)).setIndexNames((0, 'SPAGENT-MIB', 'sensorProbeRelayArrayPort6Index')) if mibBuilder.loadTexts: sensorProbeRelayArrayPort6Entry.setStatus('mandatory') sensor_probe_relay_array_port6_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 6, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 7))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeRelayArrayPort6Index.setStatus('mandatory') sensor_probe_relay_array_port6_description = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 6, 2, 1, 2), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort6Description.setStatus('mandatory') sensor_probe_relay_array_port6_status = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 6, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 4, 6, 7, 8, 9))).clone(namedValues=named_values(('noStatus', 1), ('normal', 2), ('highCritical', 4), ('lowCritical', 6), ('sensorError', 7), ('relayOn', 8), ('relayOff', 9)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeRelayArrayPort6Status.setStatus('mandatory') sensor_probe_relay_array_port6_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 6, 2, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('online', 1), ('offline', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeRelayArrayPort6Online.setStatus('mandatory') sensor_probe_relay_array_port6_go_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 6, 2, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('goOnline', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort6GoOnline.setStatus('mandatory') sensor_probe_relay_array_port6_normal_state = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 6, 2, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('closed', 0), ('open', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort6NormalState.setStatus('mandatory') sensor_probe_relay_array_port6_relay_cycle_time = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 6, 2, 1, 18), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort6RelayCycleTime.setStatus('mandatory') sensor_probe_relay_array_port6_relay_action = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 6, 2, 1, 21), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3, 4))).clone(namedValues=named_values(('cycle', 2), ('turn-on', 3), ('turn-off', 4)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort6RelayAction.setStatus('mandatory') sensor_probe_relay_array_port6_manual_relay_cycle_time = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 6, 2, 1, 24), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort6ManualRelayCycleTime.setStatus('mandatory') sensor_probe_relay_array_port6_manual_relay_action = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 6, 2, 1, 25), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 3, 4, 7, 8))).clone(namedValues=named_values(('allow-sensor-control', 1), ('turn-on', 3), ('turn-off', 4), ('cycle-Off-On-Off', 7), ('cycle-On-Off-On', 8)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort6ManualRelayAction.setStatus('mandatory') sensor_probe_relay_array_port6_relay_desc_on = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 6, 2, 1, 26), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort6RelayDescOn.setStatus('mandatory') sensor_probe_relay_array_port6_relay_desc_off = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 6, 2, 1, 27), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort6RelayDescOff.setStatus('mandatory') sensor_probe_relay_array_port6_url = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 6, 2, 1, 28), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort6URL.setStatus('mandatory') sensor_probe_relay_array_port6_open_url = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 6, 2, 1, 29), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 2))).clone(namedValues=named_values(('cur-window', 0), ('new-window', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort6OpenURL.setStatus('mandatory') sensor_probe_relay_array_port6_control_mode = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 6, 2, 1, 30), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('manual-control', 0), ('notification-control', 1), ('time-control', 2), ('thermostat-control', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort6ControlMode.setStatus('mandatory') sensor_probe_relay_array_port7 = mib_identifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 7)) sensor_probe_relay_array_port7_number = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 7, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeRelayArrayPort7Number.setStatus('mandatory') sensor_probe_relay_array_port7_table = mib_table((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 7, 2)) if mibBuilder.loadTexts: sensorProbeRelayArrayPort7Table.setStatus('mandatory') sensor_probe_relay_array_port7_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 7, 2, 1)).setIndexNames((0, 'SPAGENT-MIB', 'sensorProbeRelayArrayPort7Index')) if mibBuilder.loadTexts: sensorProbeRelayArrayPort7Entry.setStatus('mandatory') sensor_probe_relay_array_port7_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 7, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 7))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeRelayArrayPort7Index.setStatus('mandatory') sensor_probe_relay_array_port7_description = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 7, 2, 1, 2), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort7Description.setStatus('mandatory') sensor_probe_relay_array_port7_status = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 7, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 4, 6, 7, 8, 9))).clone(namedValues=named_values(('noStatus', 1), ('normal', 2), ('highCritical', 4), ('lowCritical', 6), ('sensorError', 7), ('relayOn', 8), ('relayOff', 9)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeRelayArrayPort7Status.setStatus('mandatory') sensor_probe_relay_array_port7_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 7, 2, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('online', 1), ('offline', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeRelayArrayPort7Online.setStatus('mandatory') sensor_probe_relay_array_port7_go_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 7, 2, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('goOnline', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort7GoOnline.setStatus('mandatory') sensor_probe_relay_array_port7_normal_state = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 7, 2, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('closed', 0), ('open', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort7NormalState.setStatus('mandatory') sensor_probe_relay_array_port7_relay_cycle_time = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 7, 2, 1, 18), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort7RelayCycleTime.setStatus('mandatory') sensor_probe_relay_array_port7_relay_action = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 7, 2, 1, 21), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3, 4))).clone(namedValues=named_values(('cycle', 2), ('turn-on', 3), ('turn-off', 4)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort7RelayAction.setStatus('mandatory') sensor_probe_relay_array_port7_manual_relay_cycle_time = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 7, 2, 1, 24), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort7ManualRelayCycleTime.setStatus('mandatory') sensor_probe_relay_array_port7_manual_relay_action = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 7, 2, 1, 25), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 3, 4, 7, 8))).clone(namedValues=named_values(('allow-sensor-control', 1), ('turn-on', 3), ('turn-off', 4), ('cycle-Off-On-Off', 7), ('cycle-On-Off-On', 8)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort7ManualRelayAction.setStatus('mandatory') sensor_probe_relay_array_port7_relay_desc_on = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 7, 2, 1, 26), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort7RelayDescOn.setStatus('mandatory') sensor_probe_relay_array_port7_relay_desc_off = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 7, 2, 1, 27), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort7RelayDescOff.setStatus('mandatory') sensor_probe_relay_array_port7_url = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 7, 2, 1, 28), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort7URL.setStatus('mandatory') sensor_probe_relay_array_port7_open_url = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 7, 2, 1, 29), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 2))).clone(namedValues=named_values(('cur-window', 0), ('new-window', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort7OpenURL.setStatus('mandatory') sensor_probe_relay_array_port7_control_mode = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 7, 2, 1, 30), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('manual-control', 0), ('notification-control', 1), ('time-control', 2), ('thermostat-control', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort7ControlMode.setStatus('mandatory') sensor_probe_relay_array_port8 = mib_identifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 8)) sensor_probe_relay_array_port8_number = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 8, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeRelayArrayPort8Number.setStatus('mandatory') sensor_probe_relay_array_port8_table = mib_table((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 8, 2)) if mibBuilder.loadTexts: sensorProbeRelayArrayPort8Table.setStatus('mandatory') sensor_probe_relay_array_port8_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 8, 2, 1)).setIndexNames((0, 'SPAGENT-MIB', 'sensorProbeRelayArrayPort8Index')) if mibBuilder.loadTexts: sensorProbeRelayArrayPort8Entry.setStatus('mandatory') sensor_probe_relay_array_port8_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 8, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 7))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeRelayArrayPort8Index.setStatus('mandatory') sensor_probe_relay_array_port8_description = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 8, 2, 1, 2), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort8Description.setStatus('mandatory') sensor_probe_relay_array_port8_status = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 8, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 4, 6, 7, 8, 9))).clone(namedValues=named_values(('noStatus', 1), ('normal', 2), ('highCritical', 4), ('lowCritical', 6), ('sensorError', 7), ('relayOn', 8), ('relayOff', 9)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeRelayArrayPort8Status.setStatus('mandatory') sensor_probe_relay_array_port8_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 8, 2, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('online', 1), ('offline', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeRelayArrayPort8Online.setStatus('mandatory') sensor_probe_relay_array_port8_go_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 8, 2, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('goOnline', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort8GoOnline.setStatus('mandatory') sensor_probe_relay_array_port8_normal_state = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 8, 2, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('closed', 0), ('open', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort8NormalState.setStatus('mandatory') sensor_probe_relay_array_port8_relay_cycle_time = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 8, 2, 1, 18), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort8RelayCycleTime.setStatus('mandatory') sensor_probe_relay_array_port8_relay_action = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 8, 2, 1, 21), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3, 4))).clone(namedValues=named_values(('cycle', 2), ('turn-on', 3), ('turn-off', 4)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort8RelayAction.setStatus('mandatory') sensor_probe_relay_array_port8_manual_relay_cycle_time = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 8, 2, 1, 24), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort8ManualRelayCycleTime.setStatus('mandatory') sensor_probe_relay_array_port8_manual_relay_action = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 8, 2, 1, 25), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 3, 4, 7, 8))).clone(namedValues=named_values(('allow-sensor-control', 1), ('turn-on', 3), ('turn-off', 4), ('cycle-Off-On-Off', 7), ('cycle-On-Off-On', 8)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort8ManualRelayAction.setStatus('mandatory') sensor_probe_relay_array_port8_relay_desc_on = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 8, 2, 1, 26), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort8RelayDescOn.setStatus('mandatory') sensor_probe_relay_array_port8_relay_desc_off = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 8, 2, 1, 27), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort8RelayDescOff.setStatus('mandatory') sensor_probe_relay_array_port8_url = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 8, 2, 1, 28), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort8URL.setStatus('mandatory') sensor_probe_relay_array_port8_open_url = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 8, 2, 1, 29), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 2))).clone(namedValues=named_values(('cur-window', 0), ('new-window', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort8OpenURL.setStatus('mandatory') sensor_probe_relay_array_port8_control_mode = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 29, 8, 2, 1, 30), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('manual-control', 0), ('notification-control', 1), ('time-control', 2), ('thermostat-control', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRelayArrayPort8ControlMode.setStatus('mandatory') sensor_probe_virtual_analog_sensor = mib_identifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 30)) sensor_probe_virtual_analog_sensor_number = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 30, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeVirtualAnalogSensorNumber.setStatus('mandatory') sensor_probe_virtual_analog_sensor_table = mib_table((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 30, 2)) if mibBuilder.loadTexts: sensorProbeVirtualAnalogSensorTable.setStatus('mandatory') sensor_probe_virtual_analog_sensor_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 30, 2, 1)).setIndexNames((0, 'SPAGENT-MIB', 'sensorProbeVirtualAnalogSensorIndex')) if mibBuilder.loadTexts: sensorProbeVirtualAnalogSensorEntry.setStatus('mandatory') sensor_probe_virtual_analog_sensor_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 30, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 67))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeVirtualAnalogSensorIndex.setStatus('mandatory') sensor_probe_virtual_analog_description = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 30, 2, 1, 2), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeVirtualAnalogDescription.setStatus('mandatory') sensor_probe_virtual_analog_status = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 30, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('noStatus', 1), ('normal', 2), ('highWarning', 3), ('highCritical', 4), ('lowWarning', 5), ('lowCritical', 6), ('sensorError', 7)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeVirtualAnalogStatus.setStatus('mandatory') sensor_probe_virtual_analog_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 30, 2, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('online', 1), ('offline', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeVirtualAnalogOnline.setStatus('mandatory') sensor_probe_virtual_analog_go_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 30, 2, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('goOnline', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeVirtualAnalogGoOnline.setStatus('mandatory') sensor_probe_virtual_analog_high_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 30, 2, 1, 7), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeVirtualAnalogHighWarning.setStatus('mandatory') sensor_probe_virtual_analog_high_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 30, 2, 1, 8), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeVirtualAnalogHighCritical.setStatus('mandatory') sensor_probe_virtual_analog_low_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 30, 2, 1, 9), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeVirtualAnalogLowWarning.setStatus('mandatory') sensor_probe_virtual_analog_low_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 30, 2, 1, 10), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeVirtualAnalogLowCritical.setStatus('mandatory') sensor_probe_virtual_analog_rearm = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 30, 2, 1, 11), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeVirtualAnalogRearm.setStatus('mandatory') sensor_probe_virtual_analog_raw = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 30, 2, 1, 13), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeVirtualAnalogRaw.setStatus('mandatory') sensor_probe_virtual_analog_email_trap_limit = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 30, 2, 1, 17), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disable', 0), ('enable', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeVirtualAnalogEmailTrapLimit.setStatus('mandatory') sensor_probe_virtual_analog_delay_error = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 30, 2, 1, 21), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeVirtualAnalogDelayError.setStatus('mandatory') sensor_probe_virtual_analog_delay_normal = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 30, 2, 1, 22), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeVirtualAnalogDelayNormal.setStatus('mandatory') sensor_probe_virtual_analog_unit = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 30, 2, 1, 27), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeVirtualAnalogUnit.setStatus('mandatory') sensor_probe_virtual_analog_acknowledgement = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 30, 2, 1, 41), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1))).clone(namedValues=named_values(('ack', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeVirtualAnalogAcknowledgement.setStatus('mandatory') sensor_probe_virtual_analog_url = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 30, 2, 1, 43), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeVirtualAnalogURL.setStatus('mandatory') sensor_probe_virtual_analog_open_url = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 30, 2, 1, 44), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 2))).clone(namedValues=named_values(('cur-window', 0), ('new-window', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeVirtualAnalogOpenURL.setStatus('mandatory') sensor_probe_virtual_analog_cont_time_high_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 30, 2, 1, 45), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeVirtualAnalogContTimeHighCritical.setStatus('mandatory') sensor_probe_virtual_analog_cont_time_high_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 30, 2, 1, 46), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeVirtualAnalogContTimeHighWarning.setStatus('mandatory') sensor_probe_virtual_analog_cont_time_normal = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 30, 2, 1, 47), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeVirtualAnalogContTimeNormal.setStatus('mandatory') sensor_probe_virtual_analog_cont_time_low_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 30, 2, 1, 48), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeVirtualAnalogContTimeLowWarning.setStatus('mandatory') sensor_probe_virtual_analog_cont_time_low_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 30, 2, 1, 49), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeVirtualAnalogContTimeLowCritical.setStatus('mandatory') sensor_probe_virtual_analog_cont_time_sensor_error = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 30, 2, 1, 50), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeVirtualAnalogContTimeSensorError.setStatus('mandatory') sensor_probe_virtual_analog_calendar = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 30, 2, 1, 51), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disable', 0), ('enable', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeVirtualAnalogCalendar.setStatus('mandatory') sensor_probe_virtual_analog_value_factor = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 30, 2, 1, 52), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 10, 100, 1000))).clone(namedValues=named_values(('x1', 1), ('x0-1', 10), ('x0-01', 100), ('x0-001', 1000)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeVirtualAnalogValueFactor.setStatus('mandatory') sensor_probe_virtual_switch_sensor = mib_identifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 31)) sensor_probe_virtual_switch_sensor_number = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 31, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeVirtualSwitchSensorNumber.setStatus('mandatory') sensor_probe_virtual_switch_sensor_table = mib_table((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 31, 2)) if mibBuilder.loadTexts: sensorProbeVirtualSwitchSensorTable.setStatus('mandatory') sensor_probe_virtual_switch_sensor_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 31, 2, 1)).setIndexNames((0, 'SPAGENT-MIB', 'sensorProbeVirtualSwitchSensorIndex')) if mibBuilder.loadTexts: sensorProbeVirtualSwitchSensorEntry.setStatus('mandatory') sensor_probe_virtual_switch_sensor_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 31, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 67))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeVirtualSwitchSensorIndex.setStatus('mandatory') sensor_probe_virtual_switch_description = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 31, 2, 1, 2), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeVirtualSwitchDescription.setStatus('mandatory') sensor_probe_virtual_switch_status = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 31, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('noStatus', 1), ('normal', 2), ('highWarning', 3), ('highCritical', 4), ('lowWarning', 5), ('lowCritical', 6), ('sensorError', 7)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeVirtualSwitchStatus.setStatus('mandatory') sensor_probe_virtual_switch_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 31, 2, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('online', 1), ('offline', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeVirtualSwitchOnline.setStatus('mandatory') sensor_probe_virtual_switch_go_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 31, 2, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('goOnline', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeVirtualSwitchGoOnline.setStatus('mandatory') sensor_probe_virtual_switch_email_trap_limit = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 31, 2, 1, 17), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disable', 0), ('enable', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeVirtualSwitchEmailTrapLimit.setStatus('mandatory') sensor_probe_virtual_switch_cont_time_high_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 31, 2, 1, 21), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeVirtualSwitchContTimeHighCritical.setStatus('mandatory') sensor_probe_virtual_switch_cont_time_normal = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 31, 2, 1, 22), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeVirtualSwitchContTimeNormal.setStatus('mandatory') sensor_probe_virtual_switch_description_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 31, 2, 1, 26), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeVirtualSwitchDescriptionCritical.setStatus('mandatory') sensor_probe_virtual_switch_description_normal = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 31, 2, 1, 27), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeVirtualSwitchDescriptionNormal.setStatus('mandatory') sensor_probe_virtual_switch_acknowledgement = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 31, 2, 1, 41), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1))).clone(namedValues=named_values(('ack', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeVirtualSwitchAcknowledgement.setStatus('mandatory') sensor_probe_virtual_switch_url = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 31, 2, 1, 43), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeVirtualSwitchURL.setStatus('mandatory') sensor_probe_virtual_switch_open_url = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 31, 2, 1, 44), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 2))).clone(namedValues=named_values(('cur-window', 0), ('new-window', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeVirtualSwitchOpenURL.setStatus('mandatory') sensor_probe_virtual_switch_calendar = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 31, 2, 1, 45), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disable', 0), ('enable', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeVirtualSwitchCalendar.setStatus('mandatory') sensor_probe_virtual_switch_normal_state = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 31, 2, 1, 46), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeVirtualSwitchNormalState.setStatus('mandatory') sensor_probe_watt_hours_sensor = mib_identifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 32)) sensor_probe_watt_hours_sensor_number = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 32, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeWattHoursSensorNumber.setStatus('mandatory') sensor_probe_watt_hours_sensor_table = mib_table((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 32, 2)) if mibBuilder.loadTexts: sensorProbeWattHoursSensorTable.setStatus('mandatory') sensor_probe_watt_hours_sensor_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 32, 2, 1)).setIndexNames((0, 'SPAGENT-MIB', 'sensorProbeWattHoursSensorIndex')) if mibBuilder.loadTexts: sensorProbeWattHoursSensorEntry.setStatus('mandatory') sensor_probe_watt_hours_sensor_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 32, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 7))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeWattHoursSensorIndex.setStatus('mandatory') sensor_probe_watt_hours_description = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 32, 2, 1, 2), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeWattHoursDescription.setStatus('mandatory') sensor_probe_watt_hours_percent = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 32, 2, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(-32768, 32767))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeWattHoursPercent.setStatus('mandatory') sensor_probe_watt_hours_reset = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 32, 2, 1, 43), integer32().subtype(subtypeSpec=value_range_constraint(1, 1))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeWattHoursReset.setStatus('mandatory') sensor_probe_temperature_array_sensor = mib_identifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33)) sensor_probe_temperature_array_port1 = mib_identifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1)) sensor_probe_temperature_array_port1_number = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort1Number.setStatus('mandatory') sensor_probe_temperature_array_port1_table = mib_table((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2)) if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort1Table.setStatus('mandatory') sensor_probe_temperature_array_port1_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1)).setIndexNames((0, 'SPAGENT-MIB', 'sensorProbeTemperatureArrayPort1Index')) if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort1Entry.setStatus('mandatory') sensor_probe_temperature_array_port1_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 7))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort1Index.setStatus('mandatory') sensor_probe_temperature_array_port1_description = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 2), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort1Description.setStatus('mandatory') sensor_probe_temperature_array_port1_value = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 3), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort1Value.setStatus('mandatory') sensor_probe_temperature_array_port1_status = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('noStatus', 1), ('normal', 2), ('highWarning', 3), ('highCritical', 4), ('lowWarning', 5), ('lowCritical', 6), ('sensorError', 7)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort1Status.setStatus('mandatory') sensor_probe_temperature_array_port1_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('online', 1), ('offline', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort1Online.setStatus('mandatory') sensor_probe_temperature_array_port1_go_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('goOnline', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort1GoOnline.setStatus('mandatory') sensor_probe_temperature_array_port1_high_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 7), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort1HighWarning.setStatus('mandatory') sensor_probe_temperature_array_port1_high_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 8), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort1HighCritical.setStatus('mandatory') sensor_probe_temperature_array_port1_low_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 9), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort1LowWarning.setStatus('mandatory') sensor_probe_temperature_array_port1_low_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 10), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort1LowCritical.setStatus('mandatory') sensor_probe_temperature_array_port1_rearm = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 11), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort1Rearm.setStatus('mandatory') sensor_probe_temperature_array_port1_degree_type = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('fahr', 0), ('celsius', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort1DegreeType.setStatus('mandatory') sensor_probe_temperature_array_port1_degree_raw = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 14), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort1DegreeRaw.setStatus('mandatory') sensor_probe_temperature_array_port1_offset = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 15), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort1Offset.setStatus('mandatory') sensor_probe_temperature_array_port1_url = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 16), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort1URL.setStatus('mandatory') sensor_probe_temperature_array_port1_open_url = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 17), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 2))).clone(namedValues=named_values(('cur-window', 0), ('new-window', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort1OpenURL.setStatus('mandatory') sensor_probe_temperature_array_port1_datacollect_type = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 18), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('average', 1), ('highest', 2), ('lowest', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort1DatacollectType.setStatus('mandatory') sensor_probe_temperature_array_port1_cont_time_high_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 19), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort1ContTimeHighCritical.setStatus('mandatory') sensor_probe_temperature_array_port1_cont_time_high_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 20), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort1ContTimeHighWarning.setStatus('mandatory') sensor_probe_temperature_array_port1_cont_time_normal = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 21), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort1ContTimeNormal.setStatus('mandatory') sensor_probe_temperature_array_port1_cont_time_low_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 22), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort1ContTimeLowWarning.setStatus('mandatory') sensor_probe_temperature_array_port1_cont_time_low_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 23), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort1ContTimeLowCritical.setStatus('mandatory') sensor_probe_temperature_array_port1_cont_time_sensor_error = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 24), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort1ContTimeSensorError.setStatus('mandatory') sensor_probe_temperature_array_port1_calendar = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 25), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disable', 0), ('enable', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort1Calendar.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port1_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 26), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort1Index.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port1_description = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 27), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort1Description.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port1_value = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 28), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort1Value.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port1_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 29), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('online', 1), ('offline', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort1Online.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port1_go_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 30), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('goOnline', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort1GoOnline.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port1_mode = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 31), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('normal', 0), ('time-bases', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort1Mode.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port1_relay_control_port = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 32), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort1RelayControlPort.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port1_normal_action1 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 33), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('turn-on', 0), ('turn-off', 1), ('no-change', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort1NormalAction1.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port1_high_limit1 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 34), integer32().subtype(subtypeSpec=value_range_constraint(-40, 167))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort1HighLimit1.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port1_high_limit_action1 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 35), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('turn-on', 0), ('turn-off', 1), ('no-change', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort1HighLimitAction1.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port1_low_limit1 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 36), integer32().subtype(subtypeSpec=value_range_constraint(-40, 167))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort1LowLimit1.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port1_low_limit_action1 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 37), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('turn-on', 0), ('turn-off', 1), ('no-change', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort1LowLimitAction1.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port1_normal_action2 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 38), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('turn-on', 0), ('turn-off', 1), ('no-change', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort1NormalAction2.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port1_high_limit2 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 39), integer32().subtype(subtypeSpec=value_range_constraint(-40, 167))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort1HighLimit2.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port1_high_limit_action2 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 40), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('turn-on', 0), ('turn-off', 1), ('no-change', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort1HighLimitAction2.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port1_low_limit2 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 41), integer32().subtype(subtypeSpec=value_range_constraint(-40, 167))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort1LowLimit2.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port1_low_limit_action2 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 42), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('turn-on', 0), ('turn-off', 1), ('no-change', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort1LowLimitAction2.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port1_enable_time = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 1, 2, 1, 43), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort1EnableTime.setStatus('mandatory') sensor_probe_temperature_array_port2 = mib_identifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2)) sensor_probe_temperature_array_port2_number = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort2Number.setStatus('mandatory') sensor_probe_temperature_array_port2_table = mib_table((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2)) if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort2Table.setStatus('mandatory') sensor_probe_temperature_array_port2_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1)).setIndexNames((0, 'SPAGENT-MIB', 'sensorProbeTemperatureArrayPort2Index')) if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort2Entry.setStatus('mandatory') sensor_probe_temperature_array_port2_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 7))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort2Index.setStatus('mandatory') sensor_probe_temperature_array_port2_description = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 2), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort2Description.setStatus('mandatory') sensor_probe_temperature_array_port2_value = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 3), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort2Value.setStatus('mandatory') sensor_probe_temperature_array_port2_status = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('noStatus', 1), ('normal', 2), ('highWarning', 3), ('highCritical', 4), ('lowWarning', 5), ('lowCritical', 6), ('sensorError', 7)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort2Status.setStatus('mandatory') sensor_probe_temperature_array_port2_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('online', 1), ('offline', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort2Online.setStatus('mandatory') sensor_probe_temperature_array_port2_go_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('goOnline', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort2GoOnline.setStatus('mandatory') sensor_probe_temperature_array_port2_high_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 7), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort2HighWarning.setStatus('mandatory') sensor_probe_temperature_array_port2_high_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 8), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort2HighCritical.setStatus('mandatory') sensor_probe_temperature_array_port2_low_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 9), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort2LowWarning.setStatus('mandatory') sensor_probe_temperature_array_port2_low_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 10), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort2LowCritical.setStatus('mandatory') sensor_probe_temperature_array_port2_rearm = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 11), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort2Rearm.setStatus('mandatory') sensor_probe_temperature_array_port2_degree_type = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('fahr', 0), ('celsius', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort2DegreeType.setStatus('mandatory') sensor_probe_temperature_array_port2_degree_raw = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 14), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort2DegreeRaw.setStatus('mandatory') sensor_probe_temperature_array_port2_offset = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 15), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort2Offset.setStatus('mandatory') sensor_probe_temperature_array_port2_url = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 16), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort2URL.setStatus('mandatory') sensor_probe_temperature_array_port2_open_url = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 17), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 2))).clone(namedValues=named_values(('cur-window', 0), ('new-window', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort2OpenURL.setStatus('mandatory') sensor_probe_temperature_array_port2_datacollect_type = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 18), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('average', 1), ('highest', 2), ('lowest', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort2DatacollectType.setStatus('mandatory') sensor_probe_temperature_array_port2_cont_time_high_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 19), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort2ContTimeHighCritical.setStatus('mandatory') sensor_probe_temperature_array_port2_cont_time_high_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 20), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort2ContTimeHighWarning.setStatus('mandatory') sensor_probe_temperature_array_port2_cont_time_normal = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 21), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort2ContTimeNormal.setStatus('mandatory') sensor_probe_temperature_array_port2_cont_time_low_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 22), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort2ContTimeLowWarning.setStatus('mandatory') sensor_probe_temperature_array_port2_cont_time_low_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 23), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort2ContTimeLowCritical.setStatus('mandatory') sensor_probe_temperature_array_port2_cont_time_sensor_error = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 24), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort2ContTimeSensorError.setStatus('mandatory') sensor_probe_temperature_array_port2_calendar = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 25), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disable', 0), ('enable', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort2Calendar.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port2_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 26), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort2Index.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port2_description = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 27), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort2Description.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port2_value = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 28), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort2Value.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port2_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 29), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('online', 1), ('offline', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort2Online.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port2_go_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 30), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('goOnline', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort2GoOnline.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port2_mode = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 31), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('normal', 0), ('time-bases', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort2Mode.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port2_relay_control_port = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 32), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort2RelayControlPort.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port2_normal_action1 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 33), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('turn-on', 0), ('turn-off', 1), ('no-change', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort2NormalAction1.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port2_high_limit1 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 34), integer32().subtype(subtypeSpec=value_range_constraint(-40, 167))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort2HighLimit1.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port2_high_limit_action1 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 35), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('turn-on', 0), ('turn-off', 1), ('no-change', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort2HighLimitAction1.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port2_low_limit1 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 36), integer32().subtype(subtypeSpec=value_range_constraint(-40, 167))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort2LowLimit1.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port2_low_limit_action1 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 37), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('turn-on', 0), ('turn-off', 1), ('no-change', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort2LowLimitAction1.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port2_normal_action2 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 38), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('turn-on', 0), ('turn-off', 1), ('no-change', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort2NormalAction2.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port2_high_limit2 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 39), integer32().subtype(subtypeSpec=value_range_constraint(-40, 167))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort2HighLimit2.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port2_high_limit_action2 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 40), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('turn-on', 0), ('turn-off', 1), ('no-change', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort2HighLimitAction2.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port2_low_limit2 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 41), integer32().subtype(subtypeSpec=value_range_constraint(-40, 167))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort2LowLimit2.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port2_low_limit_action2 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 42), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('turn-on', 0), ('turn-off', 1), ('no-change', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort2LowLimitAction2.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port2_enable_time = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 2, 2, 1, 43), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort2EnableTime.setStatus('mandatory') sensor_probe_temperature_array_port3 = mib_identifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3)) sensor_probe_temperature_array_port3_number = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort3Number.setStatus('mandatory') sensor_probe_temperature_array_port3_table = mib_table((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2)) if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort3Table.setStatus('mandatory') sensor_probe_temperature_array_port3_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1)).setIndexNames((0, 'SPAGENT-MIB', 'sensorProbeTemperatureArrayPort3Index')) if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort3Entry.setStatus('mandatory') sensor_probe_temperature_array_port3_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 7))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort3Index.setStatus('mandatory') sensor_probe_temperature_array_port3_description = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 2), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort3Description.setStatus('mandatory') sensor_probe_temperature_array_port3_value = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 3), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort3Value.setStatus('mandatory') sensor_probe_temperature_array_port3_status = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('noStatus', 1), ('normal', 2), ('highWarning', 3), ('highCritical', 4), ('lowWarning', 5), ('lowCritical', 6), ('sensorError', 7)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort3Status.setStatus('mandatory') sensor_probe_temperature_array_port3_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('online', 1), ('offline', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort3Online.setStatus('mandatory') sensor_probe_temperature_array_port3_go_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('goOnline', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort3GoOnline.setStatus('mandatory') sensor_probe_temperature_array_port3_high_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 7), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort3HighWarning.setStatus('mandatory') sensor_probe_temperature_array_port3_high_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 8), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort3HighCritical.setStatus('mandatory') sensor_probe_temperature_array_port3_low_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 9), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort3LowWarning.setStatus('mandatory') sensor_probe_temperature_array_port3_low_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 10), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort3LowCritical.setStatus('mandatory') sensor_probe_temperature_array_port3_rearm = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 11), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort3Rearm.setStatus('mandatory') sensor_probe_temperature_array_port3_degree_type = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('fahr', 0), ('celsius', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort3DegreeType.setStatus('mandatory') sensor_probe_temperature_array_port3_degree_raw = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 14), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort3DegreeRaw.setStatus('mandatory') sensor_probe_temperature_array_port3_offset = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 15), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort3Offset.setStatus('mandatory') sensor_probe_temperature_array_port3_url = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 16), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort3URL.setStatus('mandatory') sensor_probe_temperature_array_port3_open_url = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 17), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 2))).clone(namedValues=named_values(('cur-window', 0), ('new-window', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort3OpenURL.setStatus('mandatory') sensor_probe_temperature_array_port3_datacollect_type = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 18), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('average', 1), ('highest', 2), ('lowest', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort3DatacollectType.setStatus('mandatory') sensor_probe_temperature_array_port3_cont_time_high_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 19), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort3ContTimeHighCritical.setStatus('mandatory') sensor_probe_temperature_array_port3_cont_time_high_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 20), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort3ContTimeHighWarning.setStatus('mandatory') sensor_probe_temperature_array_port3_cont_time_normal = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 21), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort3ContTimeNormal.setStatus('mandatory') sensor_probe_temperature_array_port3_cont_time_low_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 22), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort3ContTimeLowWarning.setStatus('mandatory') sensor_probe_temperature_array_port3_cont_time_low_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 23), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort3ContTimeLowCritical.setStatus('mandatory') sensor_probe_temperature_array_port3_cont_time_sensor_error = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 24), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort3ContTimeSensorError.setStatus('mandatory') sensor_probe_temperature_array_port3_calendar = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 25), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disable', 0), ('enable', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort3Calendar.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port3_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 26), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort3Index.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port3_description = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 27), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort3Description.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port3_value = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 28), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort3Value.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port3_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 29), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('online', 1), ('offline', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort3Online.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port3_go_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 30), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('goOnline', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort3GoOnline.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port3_mode = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 31), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('normal', 0), ('time-bases', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort3Mode.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port3_relay_control_port = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 32), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort3RelayControlPort.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port3_normal_action1 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 33), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('turn-on', 0), ('turn-off', 1), ('no-change', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort3NormalAction1.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port3_high_limit1 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 34), integer32().subtype(subtypeSpec=value_range_constraint(-40, 167))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort3HighLimit1.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port3_high_limit_action1 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 35), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('turn-on', 0), ('turn-off', 1), ('no-change', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort3HighLimitAction1.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port3_low_limit1 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 36), integer32().subtype(subtypeSpec=value_range_constraint(-40, 167))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort3LowLimit1.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port3_low_limit_action1 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 37), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('turn-on', 0), ('turn-off', 1), ('no-change', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort3LowLimitAction1.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port3_normal_action2 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 38), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('turn-on', 0), ('turn-off', 1), ('no-change', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort3NormalAction2.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port3_high_limit2 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 39), integer32().subtype(subtypeSpec=value_range_constraint(-40, 167))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort3HighLimit2.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port3_high_limit_action2 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 40), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('turn-on', 0), ('turn-off', 1), ('no-change', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort3HighLimitAction2.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port3_low_limit2 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 41), integer32().subtype(subtypeSpec=value_range_constraint(-40, 167))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort3LowLimit2.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port3_low_limit_action2 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 42), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('turn-on', 0), ('turn-off', 1), ('no-change', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort3LowLimitAction2.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port3_enable_time = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 3, 2, 1, 43), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort3EnableTime.setStatus('mandatory') sensor_probe_temperature_array_port4 = mib_identifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4)) sensor_probe_temperature_array_port4_number = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort4Number.setStatus('mandatory') sensor_probe_temperature_array_port4_table = mib_table((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2)) if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort4Table.setStatus('mandatory') sensor_probe_temperature_array_port4_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1)).setIndexNames((0, 'SPAGENT-MIB', 'sensorProbeTemperatureArrayPort4Index')) if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort4Entry.setStatus('mandatory') sensor_probe_temperature_array_port4_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 7))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort4Index.setStatus('mandatory') sensor_probe_temperature_array_port4_description = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 2), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort4Description.setStatus('mandatory') sensor_probe_temperature_array_port4_value = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 3), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort4Value.setStatus('mandatory') sensor_probe_temperature_array_port4_status = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('noStatus', 1), ('normal', 2), ('highWarning', 3), ('highCritical', 4), ('lowWarning', 5), ('lowCritical', 6), ('sensorError', 7)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort4Status.setStatus('mandatory') sensor_probe_temperature_array_port4_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('online', 1), ('offline', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort4Online.setStatus('mandatory') sensor_probe_temperature_array_port4_go_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('goOnline', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort4GoOnline.setStatus('mandatory') sensor_probe_temperature_array_port4_high_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 7), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort4HighWarning.setStatus('mandatory') sensor_probe_temperature_array_port4_high_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 8), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort4HighCritical.setStatus('mandatory') sensor_probe_temperature_array_port4_low_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 9), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort4LowWarning.setStatus('mandatory') sensor_probe_temperature_array_port4_low_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 10), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort4LowCritical.setStatus('mandatory') sensor_probe_temperature_array_port4_rearm = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 11), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort4Rearm.setStatus('mandatory') sensor_probe_temperature_array_port4_degree_type = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('fahr', 0), ('celsius', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort4DegreeType.setStatus('mandatory') sensor_probe_temperature_array_port4_degree_raw = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 14), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort4DegreeRaw.setStatus('mandatory') sensor_probe_temperature_array_port4_offset = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 15), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort4Offset.setStatus('mandatory') sensor_probe_temperature_array_port4_url = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 16), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort4URL.setStatus('mandatory') sensor_probe_temperature_array_port4_open_url = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 17), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 2))).clone(namedValues=named_values(('cur-window', 0), ('new-window', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort4OpenURL.setStatus('mandatory') sensor_probe_temperature_array_port4_datacollect_type = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 18), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('average', 1), ('highest', 2), ('lowest', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort4DatacollectType.setStatus('mandatory') sensor_probe_temperature_array_port4_cont_time_high_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 19), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort4ContTimeHighCritical.setStatus('mandatory') sensor_probe_temperature_array_port4_cont_time_high_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 20), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort4ContTimeHighWarning.setStatus('mandatory') sensor_probe_temperature_array_port4_cont_time_normal = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 21), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort4ContTimeNormal.setStatus('mandatory') sensor_probe_temperature_array_port4_cont_time_low_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 22), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort4ContTimeLowWarning.setStatus('mandatory') sensor_probe_temperature_array_port4_cont_time_low_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 23), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort4ContTimeLowCritical.setStatus('mandatory') sensor_probe_temperature_array_port4_cont_time_sensor_error = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 24), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort4ContTimeSensorError.setStatus('mandatory') sensor_probe_temperature_array_port4_calendar = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 25), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disable', 0), ('enable', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort4Calendar.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port4_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 26), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort4Index.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port4_description = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 27), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort4Description.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port4_value = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 28), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort4Value.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port4_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 29), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('online', 1), ('offline', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort4Online.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port4_go_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 30), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('goOnline', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort4GoOnline.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port4_mode = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 31), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('normal', 0), ('time-bases', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort4Mode.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port4_relay_control_port = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 32), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort4RelayControlPort.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port4_normal_action1 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 33), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('turn-on', 0), ('turn-off', 1), ('no-change', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort4NormalAction1.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port4_high_limit1 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 34), integer32().subtype(subtypeSpec=value_range_constraint(-40, 167))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort4HighLimit1.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port4_high_limit_action1 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 35), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('turn-on', 0), ('turn-off', 1), ('no-change', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort4HighLimitAction1.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port4_low_limit1 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 36), integer32().subtype(subtypeSpec=value_range_constraint(-40, 167))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort4LowLimit1.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port4_low_limit_action1 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 37), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('turn-on', 0), ('turn-off', 1), ('no-change', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort4LowLimitAction1.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port4_normal_action2 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 38), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('turn-on', 0), ('turn-off', 1), ('no-change', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort4NormalAction2.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port4_high_limit2 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 39), integer32().subtype(subtypeSpec=value_range_constraint(-40, 167))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort4HighLimit2.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port4_high_limit_action2 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 40), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('turn-on', 0), ('turn-off', 1), ('no-change', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort4HighLimitAction2.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port4_low_limit2 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 41), integer32().subtype(subtypeSpec=value_range_constraint(-40, 167))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort4LowLimit2.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port4_low_limit_action2 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 42), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('turn-on', 0), ('turn-off', 1), ('no-change', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort4LowLimitAction2.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port4_enable_time = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 4, 2, 1, 43), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort4EnableTime.setStatus('mandatory') sensor_probe_temperature_array_port5 = mib_identifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5)) sensor_probe_temperature_array_port5_number = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort5Number.setStatus('mandatory') sensor_probe_temperature_array_port5_table = mib_table((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2)) if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort5Table.setStatus('mandatory') sensor_probe_temperature_array_port5_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1)).setIndexNames((0, 'SPAGENT-MIB', 'sensorProbeTemperatureArrayPort5Index')) if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort5Entry.setStatus('mandatory') sensor_probe_temperature_array_port5_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 7))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort5Index.setStatus('mandatory') sensor_probe_temperature_array_port5_description = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 2), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort5Description.setStatus('mandatory') sensor_probe_temperature_array_port5_value = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 3), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort5Value.setStatus('mandatory') sensor_probe_temperature_array_port5_status = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('noStatus', 1), ('normal', 2), ('highWarning', 3), ('highCritical', 4), ('lowWarning', 5), ('lowCritical', 6), ('sensorError', 7)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort5Status.setStatus('mandatory') sensor_probe_temperature_array_port5_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('online', 1), ('offline', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort5Online.setStatus('mandatory') sensor_probe_temperature_array_port5_go_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('goOnline', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort5GoOnline.setStatus('mandatory') sensor_probe_temperature_array_port5_high_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 7), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort5HighWarning.setStatus('mandatory') sensor_probe_temperature_array_port5_high_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 8), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort5HighCritical.setStatus('mandatory') sensor_probe_temperature_array_port5_low_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 9), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort5LowWarning.setStatus('mandatory') sensor_probe_temperature_array_port5_low_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 10), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort5LowCritical.setStatus('mandatory') sensor_probe_temperature_array_port5_rearm = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 11), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort5Rearm.setStatus('mandatory') sensor_probe_temperature_array_port5_degree_type = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('fahr', 0), ('celsius', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort5DegreeType.setStatus('mandatory') sensor_probe_temperature_array_port5_degree_raw = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 14), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort5DegreeRaw.setStatus('mandatory') sensor_probe_temperature_array_port5_offset = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 15), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort5Offset.setStatus('mandatory') sensor_probe_temperature_array_port5_url = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 16), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort5URL.setStatus('mandatory') sensor_probe_temperature_array_port5_open_url = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 17), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 2))).clone(namedValues=named_values(('cur-window', 0), ('new-window', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort5OpenURL.setStatus('mandatory') sensor_probe_temperature_array_port5_datacollect_type = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 18), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('average', 1), ('highest', 2), ('lowest', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort5DatacollectType.setStatus('mandatory') sensor_probe_temperature_array_port5_cont_time_high_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 19), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort5ContTimeHighCritical.setStatus('mandatory') sensor_probe_temperature_array_port5_cont_time_high_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 20), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort5ContTimeHighWarning.setStatus('mandatory') sensor_probe_temperature_array_port5_cont_time_normal = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 21), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort5ContTimeNormal.setStatus('mandatory') sensor_probe_temperature_array_port5_cont_time_low_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 22), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort5ContTimeLowWarning.setStatus('mandatory') sensor_probe_temperature_array_port5_cont_time_low_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 23), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort5ContTimeLowCritical.setStatus('mandatory') sensor_probe_temperature_array_port5_cont_time_sensor_error = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 24), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort5ContTimeSensorError.setStatus('mandatory') sensor_probe_temperature_array_port5_calendar = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 25), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disable', 0), ('enable', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort5Calendar.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port5_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 26), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort5Index.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port5_description = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 27), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort5Description.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port5_value = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 28), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort5Value.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port5_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 29), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('online', 1), ('offline', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort5Online.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port5_go_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 30), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('goOnline', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort5GoOnline.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port5_mode = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 31), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('normal', 0), ('time-bases', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort5Mode.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port5_relay_control_port = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 32), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort5RelayControlPort.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port5_normal_action1 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 33), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('turn-on', 0), ('turn-off', 1), ('no-change', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort5NormalAction1.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port5_high_limit1 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 34), integer32().subtype(subtypeSpec=value_range_constraint(-40, 167))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort5HighLimit1.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port5_high_limit_action1 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 35), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('turn-on', 0), ('turn-off', 1), ('no-change', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort5HighLimitAction1.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port5_low_limit1 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 36), integer32().subtype(subtypeSpec=value_range_constraint(-40, 167))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort5LowLimit1.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port5_low_limit_action1 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 37), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('turn-on', 0), ('turn-off', 1), ('no-change', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort5LowLimitAction1.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port5_normal_action2 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 38), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('turn-on', 0), ('turn-off', 1), ('no-change', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort5NormalAction2.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port5_high_limit2 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 39), integer32().subtype(subtypeSpec=value_range_constraint(-40, 167))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort5HighLimit2.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port5_high_limit_action2 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 40), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('turn-on', 0), ('turn-off', 1), ('no-change', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort5HighLimitAction2.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port5_low_limit2 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 41), integer32().subtype(subtypeSpec=value_range_constraint(-40, 167))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort5LowLimit2.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port5_low_limit_action2 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 42), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('turn-on', 0), ('turn-off', 1), ('no-change', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort5LowLimitAction2.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port5_enable_time = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 5, 2, 1, 43), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort5EnableTime.setStatus('mandatory') sensor_probe_temperature_array_port6 = mib_identifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6)) sensor_probe_temperature_array_port6_number = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort6Number.setStatus('mandatory') sensor_probe_temperature_array_port6_table = mib_table((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2)) if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort6Table.setStatus('mandatory') sensor_probe_temperature_array_port6_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1)).setIndexNames((0, 'SPAGENT-MIB', 'sensorProbeTemperatureArrayPort6Index')) if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort6Entry.setStatus('mandatory') sensor_probe_temperature_array_port6_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 7))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort6Index.setStatus('mandatory') sensor_probe_temperature_array_port6_description = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 2), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort6Description.setStatus('mandatory') sensor_probe_temperature_array_port6_value = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 3), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort6Value.setStatus('mandatory') sensor_probe_temperature_array_port6_status = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('noStatus', 1), ('normal', 2), ('highWarning', 3), ('highCritical', 4), ('lowWarning', 5), ('lowCritical', 6), ('sensorError', 7)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort6Status.setStatus('mandatory') sensor_probe_temperature_array_port6_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('online', 1), ('offline', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort6Online.setStatus('mandatory') sensor_probe_temperature_array_port6_go_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('goOnline', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort6GoOnline.setStatus('mandatory') sensor_probe_temperature_array_port6_high_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 7), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort6HighWarning.setStatus('mandatory') sensor_probe_temperature_array_port6_high_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 8), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort6HighCritical.setStatus('mandatory') sensor_probe_temperature_array_port6_low_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 9), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort6LowWarning.setStatus('mandatory') sensor_probe_temperature_array_port6_low_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 10), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort6LowCritical.setStatus('mandatory') sensor_probe_temperature_array_port6_rearm = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 11), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort6Rearm.setStatus('mandatory') sensor_probe_temperature_array_port6_degree_type = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('fahr', 0), ('celsius', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort6DegreeType.setStatus('mandatory') sensor_probe_temperature_array_port6_degree_raw = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 14), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort6DegreeRaw.setStatus('mandatory') sensor_probe_temperature_array_port6_offset = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 15), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort6Offset.setStatus('mandatory') sensor_probe_temperature_array_port6_url = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 16), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort6URL.setStatus('mandatory') sensor_probe_temperature_array_port6_open_url = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 17), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 2))).clone(namedValues=named_values(('cur-window', 0), ('new-window', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort6OpenURL.setStatus('mandatory') sensor_probe_temperature_array_port6_datacollect_type = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 18), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('average', 1), ('highest', 2), ('lowest', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort6DatacollectType.setStatus('mandatory') sensor_probe_temperature_array_port6_cont_time_high_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 19), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort6ContTimeHighCritical.setStatus('mandatory') sensor_probe_temperature_array_port6_cont_time_high_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 20), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort6ContTimeHighWarning.setStatus('mandatory') sensor_probe_temperature_array_port6_cont_time_normal = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 21), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort6ContTimeNormal.setStatus('mandatory') sensor_probe_temperature_array_port6_cont_time_low_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 22), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort6ContTimeLowWarning.setStatus('mandatory') sensor_probe_temperature_array_port6_cont_time_low_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 23), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort6ContTimeLowCritical.setStatus('mandatory') sensor_probe_temperature_array_port6_cont_time_sensor_error = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 24), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort6ContTimeSensorError.setStatus('mandatory') sensor_probe_temperature_array_port6_calendar = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 25), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disable', 0), ('enable', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort6Calendar.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port6_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 26), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort6Index.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port6_description = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 27), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort6Description.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port6_value = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 28), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort6Value.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port6_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 29), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('online', 1), ('offline', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort6Online.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port6_go_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 30), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('goOnline', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort6GoOnline.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port6_mode = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 31), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('normal', 0), ('time-bases', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort6Mode.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port6_relay_control_port = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 32), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort6RelayControlPort.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port6_normal_action1 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 33), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('turn-on', 0), ('turn-off', 1), ('no-change', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort6NormalAction1.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port6_high_limit1 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 34), integer32().subtype(subtypeSpec=value_range_constraint(-40, 167))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort6HighLimit1.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port6_high_limit_action1 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 35), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('turn-on', 0), ('turn-off', 1), ('no-change', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort6HighLimitAction1.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port6_low_limit1 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 36), integer32().subtype(subtypeSpec=value_range_constraint(-40, 167))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort6LowLimit1.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port6_low_limit_action1 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 37), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('turn-on', 0), ('turn-off', 1), ('no-change', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort6LowLimitAction1.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port6_normal_action2 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 38), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('turn-on', 0), ('turn-off', 1), ('no-change', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort6NormalAction2.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port6_high_limit2 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 39), integer32().subtype(subtypeSpec=value_range_constraint(-40, 167))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort6HighLimit2.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port6_high_limit_action2 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 40), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('turn-on', 0), ('turn-off', 1), ('no-change', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort6HighLimitAction2.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port6_low_limit2 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 41), integer32().subtype(subtypeSpec=value_range_constraint(-40, 167))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort6LowLimit2.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port6_low_limit_action2 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 42), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('turn-on', 0), ('turn-off', 1), ('no-change', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort6LowLimitAction2.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port6_enable_time = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 6, 2, 1, 43), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort6EnableTime.setStatus('mandatory') sensor_probe_temperature_array_port7 = mib_identifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7)) sensor_probe_temperature_array_port7_number = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort7Number.setStatus('mandatory') sensor_probe_temperature_array_port7_table = mib_table((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2)) if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort7Table.setStatus('mandatory') sensor_probe_temperature_array_port7_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1)).setIndexNames((0, 'SPAGENT-MIB', 'sensorProbeTemperatureArrayPort7Index')) if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort7Entry.setStatus('mandatory') sensor_probe_temperature_array_port7_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 7))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort7Index.setStatus('mandatory') sensor_probe_temperature_array_port7_description = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 2), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort7Description.setStatus('mandatory') sensor_probe_temperature_array_port7_value = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 3), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort7Value.setStatus('mandatory') sensor_probe_temperature_array_port7_status = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('noStatus', 1), ('normal', 2), ('highWarning', 3), ('highCritical', 4), ('lowWarning', 5), ('lowCritical', 6), ('sensorError', 7)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort7Status.setStatus('mandatory') sensor_probe_temperature_array_port7_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('online', 1), ('offline', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort7Online.setStatus('mandatory') sensor_probe_temperature_array_port7_go_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('goOnline', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort7GoOnline.setStatus('mandatory') sensor_probe_temperature_array_port7_high_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 7), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort7HighWarning.setStatus('mandatory') sensor_probe_temperature_array_port7_high_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 8), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort7HighCritical.setStatus('mandatory') sensor_probe_temperature_array_port7_low_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 9), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort7LowWarning.setStatus('mandatory') sensor_probe_temperature_array_port7_low_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 10), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort7LowCritical.setStatus('mandatory') sensor_probe_temperature_array_port7_rearm = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 11), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort7Rearm.setStatus('mandatory') sensor_probe_temperature_array_port7_degree_type = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('fahr', 0), ('celsius', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort7DegreeType.setStatus('mandatory') sensor_probe_temperature_array_port7_degree_raw = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 14), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort7DegreeRaw.setStatus('mandatory') sensor_probe_temperature_array_port7_offset = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 15), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort7Offset.setStatus('mandatory') sensor_probe_temperature_array_port7_url = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 16), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort7URL.setStatus('mandatory') sensor_probe_temperature_array_port7_open_url = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 17), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 2))).clone(namedValues=named_values(('cur-window', 0), ('new-window', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort7OpenURL.setStatus('mandatory') sensor_probe_temperature_array_port7_datacollect_type = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 18), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('average', 1), ('highest', 2), ('lowest', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort7DatacollectType.setStatus('mandatory') sensor_probe_temperature_array_port7_cont_time_high_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 19), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort7ContTimeHighCritical.setStatus('mandatory') sensor_probe_temperature_array_port7_cont_time_high_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 20), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort7ContTimeHighWarning.setStatus('mandatory') sensor_probe_temperature_array_port7_cont_time_normal = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 21), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort7ContTimeNormal.setStatus('mandatory') sensor_probe_temperature_array_port7_cont_time_low_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 22), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort7ContTimeLowWarning.setStatus('mandatory') sensor_probe_temperature_array_port7_cont_time_low_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 23), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort7ContTimeLowCritical.setStatus('mandatory') sensor_probe_temperature_array_port7_cont_time_sensor_error = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 24), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort7ContTimeSensorError.setStatus('mandatory') sensor_probe_temperature_array_port7_calendar = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 25), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disable', 0), ('enable', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort7Calendar.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port7_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 26), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort7Index.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port7_description = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 27), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort7Description.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port7_value = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 28), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort7Value.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port7_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 29), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('online', 1), ('offline', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort7Online.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port7_go_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 30), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('goOnline', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort7GoOnline.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port7_mode = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 31), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('normal', 0), ('time-bases', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort7Mode.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port7_relay_control_port = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 32), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort7RelayControlPort.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port7_normal_action1 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 33), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('turn-on', 0), ('turn-off', 1), ('no-change', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort7NormalAction1.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port7_high_limit1 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 34), integer32().subtype(subtypeSpec=value_range_constraint(-40, 167))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort7HighLimit1.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port7_high_limit_action1 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 35), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('turn-on', 0), ('turn-off', 1), ('no-change', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort7HighLimitAction1.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port7_low_limit1 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 36), integer32().subtype(subtypeSpec=value_range_constraint(-40, 167))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort7LowLimit1.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port7_low_limit_action1 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 37), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('turn-on', 0), ('turn-off', 1), ('no-change', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort7LowLimitAction1.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port7_normal_action2 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 38), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('turn-on', 0), ('turn-off', 1), ('no-change', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort7NormalAction2.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port7_high_limit2 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 39), integer32().subtype(subtypeSpec=value_range_constraint(-40, 167))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort7HighLimit2.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port7_high_limit_action2 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 40), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('turn-on', 0), ('turn-off', 1), ('no-change', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort7HighLimitAction2.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port7_low_limit2 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 41), integer32().subtype(subtypeSpec=value_range_constraint(-40, 167))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort7LowLimit2.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port7_low_limit_action2 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 42), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('turn-on', 0), ('turn-off', 1), ('no-change', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort7LowLimitAction2.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port7_enable_time = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 7, 2, 1, 43), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort7EnableTime.setStatus('mandatory') sensor_probe_temperature_array_port8 = mib_identifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8)) sensor_probe_temperature_array_port8_number = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort8Number.setStatus('mandatory') sensor_probe_temperature_array_port8_table = mib_table((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2)) if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort8Table.setStatus('mandatory') sensor_probe_temperature_array_port8_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1)).setIndexNames((0, 'SPAGENT-MIB', 'sensorProbeTemperatureArrayPort8Index')) if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort8Entry.setStatus('mandatory') sensor_probe_temperature_array_port8_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 7))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort8Index.setStatus('mandatory') sensor_probe_temperature_array_port8_description = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 2), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort8Description.setStatus('mandatory') sensor_probe_temperature_array_port8_value = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 3), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort8Value.setStatus('mandatory') sensor_probe_temperature_array_port8_status = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('noStatus', 1), ('normal', 2), ('highWarning', 3), ('highCritical', 4), ('lowWarning', 5), ('lowCritical', 6), ('sensorError', 7)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort8Status.setStatus('mandatory') sensor_probe_temperature_array_port8_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('online', 1), ('offline', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort8Online.setStatus('mandatory') sensor_probe_temperature_array_port8_go_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('goOnline', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort8GoOnline.setStatus('mandatory') sensor_probe_temperature_array_port8_high_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 7), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort8HighWarning.setStatus('mandatory') sensor_probe_temperature_array_port8_high_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 8), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort8HighCritical.setStatus('mandatory') sensor_probe_temperature_array_port8_low_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 9), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort8LowWarning.setStatus('mandatory') sensor_probe_temperature_array_port8_low_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 10), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort8LowCritical.setStatus('mandatory') sensor_probe_temperature_array_port8_rearm = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 11), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort8Rearm.setStatus('mandatory') sensor_probe_temperature_array_port8_degree_type = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('fahr', 0), ('celsius', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort8DegreeType.setStatus('mandatory') sensor_probe_temperature_array_port8_degree_raw = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 14), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort8DegreeRaw.setStatus('mandatory') sensor_probe_temperature_array_port8_offset = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 15), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort8Offset.setStatus('mandatory') sensor_probe_temperature_array_port8_url = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 16), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort8URL.setStatus('mandatory') sensor_probe_temperature_array_port8_open_url = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 17), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 2))).clone(namedValues=named_values(('cur-window', 0), ('new-window', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort8OpenURL.setStatus('mandatory') sensor_probe_temperature_array_port8_datacollect_type = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 18), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('average', 1), ('highest', 2), ('lowest', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort8DatacollectType.setStatus('mandatory') sensor_probe_temperature_array_port8_cont_time_high_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 19), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort8ContTimeHighCritical.setStatus('mandatory') sensor_probe_temperature_array_port8_cont_time_high_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 20), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort8ContTimeHighWarning.setStatus('mandatory') sensor_probe_temperature_array_port8_cont_time_normal = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 21), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort8ContTimeNormal.setStatus('mandatory') sensor_probe_temperature_array_port8_cont_time_low_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 22), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort8ContTimeLowWarning.setStatus('mandatory') sensor_probe_temperature_array_port8_cont_time_low_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 23), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort8ContTimeLowCritical.setStatus('mandatory') sensor_probe_temperature_array_port8_cont_time_sensor_error = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 24), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort8ContTimeSensorError.setStatus('mandatory') sensor_probe_temperature_array_port8_calendar = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 25), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disable', 0), ('enable', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTemperatureArrayPort8Calendar.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port8_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 26), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort8Index.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port8_description = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 27), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort8Description.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port8_value = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 28), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort8Value.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port8_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 29), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('online', 1), ('offline', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort8Online.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port8_go_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 30), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('goOnline', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort8GoOnline.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port8_mode = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 31), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('normal', 0), ('time-bases', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort8Mode.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port8_relay_control_port = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 32), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort8RelayControlPort.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port8_normal_action1 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 33), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('turn-on', 0), ('turn-off', 1), ('no-change', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort8NormalAction1.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port8_high_limit1 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 34), integer32().subtype(subtypeSpec=value_range_constraint(-40, 167))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort8HighLimit1.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port8_high_limit_action1 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 35), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('turn-on', 0), ('turn-off', 1), ('no-change', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort8HighLimitAction1.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port8_low_limit1 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 36), integer32().subtype(subtypeSpec=value_range_constraint(-40, 167))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort8LowLimit1.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port8_low_limit_action1 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 37), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('turn-on', 0), ('turn-off', 1), ('no-change', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort8LowLimitAction1.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port8_normal_action2 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 38), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('turn-on', 0), ('turn-off', 1), ('no-change', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort8NormalAction2.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port8_high_limit2 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 39), integer32().subtype(subtypeSpec=value_range_constraint(-40, 167))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort8HighLimit2.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port8_high_limit_action2 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 40), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('turn-on', 0), ('turn-off', 1), ('no-change', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort8HighLimitAction2.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port8_low_limit2 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 41), integer32().subtype(subtypeSpec=value_range_constraint(-40, 167))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort8LowLimit2.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port8_low_limit_action2 = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 42), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('turn-on', 0), ('turn-off', 1), ('no-change', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort8LowLimitAction2.setStatus('mandatory') sensor_probe_thermostat_temperature_array_port8_enable_time = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 33, 8, 2, 1, 43), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeThermostatTemperatureArrayPort8EnableTime.setStatus('mandatory') sensor_probe_no_camera_sensor = mib_identifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 34)) sensor_probe_no_camera_sensor_number = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 34, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeNoCameraSensorNumber.setStatus('mandatory') sensor_probe_no_camera_sensor_table = mib_table((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 34, 2)) if mibBuilder.loadTexts: sensorProbeNoCameraSensorTable.setStatus('mandatory') sensor_probe_no_camera_sensor_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 34, 2, 1)).setIndexNames((0, 'SPAGENT-MIB', 'sensorProbeNoCameraSensorIndex')) if mibBuilder.loadTexts: sensorProbeNoCameraSensorEntry.setStatus('mandatory') sensor_probe_no_camera_sensor_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 34, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeNoCameraSensorIndex.setStatus('mandatory') sensor_probe_no_camera_description = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 34, 2, 1, 2), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeNoCameraDescription.setStatus('mandatory') sensor_probe_no_camera_status = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 34, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 4, 6, 7, 8, 9))).clone(namedValues=named_values(('noStatus', 1), ('normal', 2), ('highCritical', 4), ('lowCritical', 6), ('sensorError', 7), ('relayOn', 8), ('relayOff', 9)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeNoCameraStatus.setStatus('mandatory') sensor_probe_no_camera_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 34, 2, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('online', 1), ('offline', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeNoCameraOnline.setStatus('mandatory') sensor_probe_no_camera_go_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 34, 2, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('goOnline', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeNoCameraGoOnline.setStatus('mandatory') sensor_probe_no_camera_cont_time_high_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 34, 2, 1, 7), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeNoCameraContTimeHighCritical.setStatus('mandatory') sensor_probe_no_camera_cont_time_normal = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 34, 2, 1, 8), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeNoCameraContTimeNormal.setStatus('mandatory') sensor_probe_no_camera_calendar = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 34, 2, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disable', 0), ('enable', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeNoCameraCalendar.setStatus('mandatory') sensor_probe_soft_motion_sensor = mib_identifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 35)) sensor_probe_soft_motion_sensor_number = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 35, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeSoftMotionSensorNumber.setStatus('mandatory') sensor_probe_soft_motion_sensor_table = mib_table((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 35, 2)) if mibBuilder.loadTexts: sensorProbeSoftMotionSensorTable.setStatus('mandatory') sensor_probe_soft_motion_sensor_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 35, 2, 1)).setIndexNames((0, 'SPAGENT-MIB', 'sensorProbeSoftMotionSensorIndex')) if mibBuilder.loadTexts: sensorProbeSoftMotionSensorEntry.setStatus('mandatory') sensor_probe_soft_motion_sensor_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 35, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeSoftMotionSensorIndex.setStatus('mandatory') sensor_probe_soft_motion_description = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 35, 2, 1, 2), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSoftMotionDescription.setStatus('mandatory') sensor_probe_soft_motion_status = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 35, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 4, 6, 7, 8, 9))).clone(namedValues=named_values(('noStatus', 1), ('normal', 2), ('highCritical', 4), ('lowCritical', 6), ('sensorError', 7), ('relayOn', 8), ('relayOff', 9)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeSoftMotionStatus.setStatus('mandatory') sensor_probe_soft_motion_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 35, 2, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('online', 1), ('offline', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeSoftMotionOnline.setStatus('mandatory') sensor_probe_soft_motion_go_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 35, 2, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('goOnline', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSoftMotionGoOnline.setStatus('mandatory') sensor_probe_soft_motion_percent_sensitivity = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 35, 2, 1, 7), integer32().subtype(subtypeSpec=value_range_constraint(0, 100))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSoftMotionPercentSensitivity.setStatus('mandatory') sensor_probe_soft_motion_url = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 35, 2, 1, 8), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSoftMotionURL.setStatus('mandatory') sensor_probe_soft_motion_open_url = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 35, 2, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 2))).clone(namedValues=named_values(('cur-window', 0), ('new-window', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSoftMotionOpenURL.setStatus('mandatory') sensor_probe_soft_motion_cont_time_high_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 35, 2, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSoftMotionContTimeHighCritical.setStatus('mandatory') sensor_probe_soft_motion_cont_time_normal = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 35, 2, 1, 11), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSoftMotionContTimeNormal.setStatus('mandatory') sensor_probe_soft_motion_calendar = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 35, 2, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disable', 0), ('enable', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSoftMotionCalendar.setStatus('mandatory') sensor_probe_soft_motion_mask = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 35, 2, 1, 13), integer32().subtype(subtypeSpec=value_range_constraint(0, 33554431))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSoftMotionMask.setStatus('mandatory') sensor_probe_sound_detector_sensor = mib_identifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 36)) sensor_probe_sound_detector_sensor_number = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 36, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeSoundDetectorSensorNumber.setStatus('mandatory') sensor_probe_sound_detector_sensor_table = mib_table((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 36, 2)) if mibBuilder.loadTexts: sensorProbeSoundDetectorSensorTable.setStatus('mandatory') sensor_probe_sound_detector_sensor_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 36, 2, 1)).setIndexNames((0, 'SPAGENT-MIB', 'sensorProbeSoundDetectorIndex')) if mibBuilder.loadTexts: sensorProbeSoundDetectorSensorEntry.setStatus('mandatory') sensor_probe_sound_detector_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 36, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 0))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeSoundDetectorIndex.setStatus('mandatory') sensor_probe_sound_detector_description = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 36, 2, 1, 2), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSoundDetectorDescription.setStatus('mandatory') sensor_probe_sound_detector_value = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 36, 2, 1, 3), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeSoundDetectorValue.setStatus('mandatory') sensor_probe_sound_detector_status = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 36, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('noStatus', 1), ('normal', 2), ('highWarning', 3), ('highCritical', 4), ('lowWarning', 5), ('lowCritical', 6), ('sensorError', 7)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeSoundDetectorStatus.setStatus('mandatory') sensor_probe_sound_detector_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 36, 2, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('online', 1), ('offline', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeSoundDetectorOnline.setStatus('mandatory') sensor_probe_sound_detector_go_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 36, 2, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('goOnline', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSoundDetectorGoOnline.setStatus('mandatory') sensor_probe_sound_detector_high_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 36, 2, 1, 7), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSoundDetectorHighWarning.setStatus('mandatory') sensor_probe_sound_detector_high_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 36, 2, 1, 8), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSoundDetectorHighCritical.setStatus('mandatory') sensor_probe_sound_detector_low_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 36, 2, 1, 9), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSoundDetectorLowWarning.setStatus('mandatory') sensor_probe_sound_detector_low_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 36, 2, 1, 10), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSoundDetectorLowCritical.setStatus('mandatory') sensor_probe_sound_detector_rearm = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 36, 2, 1, 11), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSoundDetectorRearm.setStatus('mandatory') sensor_probe_sound_detector_recording_source = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 36, 2, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('internal-mic', 0), ('line-in', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSoundDetectorRecordingSource.setStatus('mandatory') sensor_probe_sound_detector_mic_boost = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 36, 2, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('off', 0), ('on', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSoundDetectorMicBoost.setStatus('mandatory') sensor_probe_sound_detector_mic_sensitivity = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 36, 2, 1, 14), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 20, 40, 60, 80, 100))).clone(namedValues=named_values(('i0', 0), ('i20', 20), ('i40', 40), ('i60', 60), ('i80', 80), ('i100', 100)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSoundDetectorMicSensitivity.setStatus('mandatory') sensor_probe_sound_detector_pulse_length = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 36, 2, 1, 15), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSoundDetectorPulseLength.setStatus('mandatory') sensor_probe_sound_detector_url = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 36, 2, 1, 16), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSoundDetectorURL.setStatus('mandatory') sensor_probe_sound_detector_open_url = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 36, 2, 1, 17), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 2))).clone(namedValues=named_values(('cur-window', 0), ('new-window', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSoundDetectorOpenURL.setStatus('mandatory') sensor_probe_sound_detector_datacollect_type = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 36, 2, 1, 18), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('average', 1), ('highest', 2), ('lowest', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSoundDetectorDatacollectType.setStatus('mandatory') sensor_probe_sound_detector_cont_time_high_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 36, 2, 1, 19), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSoundDetectorContTimeHighCritical.setStatus('mandatory') sensor_probe_sound_detector_cont_time_high_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 36, 2, 1, 20), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSoundDetectorContTimeHighWarning.setStatus('mandatory') sensor_probe_sound_detector_cont_time_normal = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 36, 2, 1, 21), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSoundDetectorContTimeNormal.setStatus('mandatory') sensor_probe_sound_detector_cont_time_low_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 36, 2, 1, 22), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSoundDetectorContTimeLowWarning.setStatus('mandatory') sensor_probe_sound_detector_cont_time_low_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 36, 2, 1, 23), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSoundDetectorContTimeLowCritical.setStatus('mandatory') sensor_probe_sound_detector_cont_time_sensor_error = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 36, 2, 1, 24), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSoundDetectorContTimeSensorError.setStatus('mandatory') sensor_probe_sound_detector_calendar = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 36, 2, 1, 25), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disable', 0), ('enable', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSoundDetectorCalendar.setStatus('mandatory') sensor_probe_drycontact_array_sensor = mib_identifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37)) sensor_probe_drycontact_array_port1 = mib_identifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 1)) sensor_probe_drycontact_array_port1_number = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort1Number.setStatus('mandatory') sensor_probe_drycontact_array_port1_table = mib_table((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 1, 2)) if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort1Table.setStatus('mandatory') sensor_probe_drycontact_array_port1_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 1, 2, 1)).setIndexNames((0, 'SPAGENT-MIB', 'sensorProbeDrycontactArrayPort1Index')) if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort1Entry.setStatus('mandatory') sensor_probe_drycontact_array_port1_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 1, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 7))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort1Index.setStatus('mandatory') sensor_probe_drycontact_array_port1_description = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 1, 2, 1, 2), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort1Description.setStatus('mandatory') sensor_probe_drycontact_array_port1_status = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 1, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 4, 6, 7, 8, 9))).clone(namedValues=named_values(('noStatus', 1), ('normal', 2), ('highCritical', 4), ('lowCritical', 6), ('sensorError', 7), ('relayOn', 8), ('relayOff', 9)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort1Status.setStatus('mandatory') sensor_probe_drycontact_array_port1_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 1, 2, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('online', 1), ('offline', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort1Online.setStatus('mandatory') sensor_probe_drycontact_array_port1_go_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 1, 2, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('goOnline', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort1GoOnline.setStatus('mandatory') sensor_probe_drycontact_array_port1_normal_state = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 1, 2, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('closed', 0), ('open', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort1NormalState.setStatus('mandatory') sensor_probe_drycontact_array_port1_direction = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 1, 2, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('input', 0), ('output', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort1Direction.setStatus('mandatory') sensor_probe_drycontact_array_port1_cont_time_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 1, 2, 1, 9), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort1ContTimeCritical.setStatus('mandatory') sensor_probe_drycontact_array_port1_cont_time_normal = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 1, 2, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort1ContTimeNormal.setStatus('mandatory') sensor_probe_drycontact_array_port1_manual_output_cycle_time = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 1, 2, 1, 24), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort1ManualOutputCycleTime.setStatus('mandatory') sensor_probe_drycontact_array_port1_manual_output_action = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 1, 2, 1, 25), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 3, 4, 7, 8))).clone(namedValues=named_values(('allow-sensor-control', 1), ('turn-on', 3), ('turn-off', 4), ('cycle-Off-On-Off', 7), ('cycle-On-Off-On', 8)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort1ManualOutputAction.setStatus('mandatory') sensor_probe_drycontact_array_port1_output_desc_on = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 1, 2, 1, 26), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort1OutputDescOn.setStatus('mandatory') sensor_probe_drycontact_array_port1_output_desc_off = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 1, 2, 1, 27), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort1OutputDescOff.setStatus('mandatory') sensor_probe_drycontact_array_port1_url = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 1, 2, 1, 28), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort1URL.setStatus('mandatory') sensor_probe_drycontact_array_port1_open_url = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 1, 2, 1, 29), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 2))).clone(namedValues=named_values(('cur-window', 0), ('new-window', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort1OpenURL.setStatus('mandatory') sensor_probe_drycontact_array_port1_control_mode = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 1, 2, 1, 30), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('manual-control', 0), ('notification-control', 1), ('time-control', 2), ('thermostat-control', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort1ControlMode.setStatus('mandatory') sensor_probe_drycontact_array_port2 = mib_identifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 2)) sensor_probe_drycontact_array_port2_number = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 2, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort2Number.setStatus('mandatory') sensor_probe_drycontact_array_port2_table = mib_table((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 2, 2)) if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort2Table.setStatus('mandatory') sensor_probe_drycontact_array_port2_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 2, 2, 1)).setIndexNames((0, 'SPAGENT-MIB', 'sensorProbeDrycontactArrayPort2Index')) if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort2Entry.setStatus('mandatory') sensor_probe_drycontact_array_port2_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 2, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 7))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort2Index.setStatus('mandatory') sensor_probe_drycontact_array_port2_description = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 2, 2, 1, 2), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort2Description.setStatus('mandatory') sensor_probe_drycontact_array_port2_status = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 2, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 4, 6, 7, 8, 9))).clone(namedValues=named_values(('noStatus', 1), ('normal', 2), ('highCritical', 4), ('lowCritical', 6), ('sensorError', 7), ('relayOn', 8), ('relayOff', 9)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort2Status.setStatus('mandatory') sensor_probe_drycontact_array_port2_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 2, 2, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('online', 1), ('offline', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort2Online.setStatus('mandatory') sensor_probe_drycontact_array_port2_go_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 2, 2, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('goOnline', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort2GoOnline.setStatus('mandatory') sensor_probe_drycontact_array_port2_normal_state = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 2, 2, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('closed', 0), ('open', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort2NormalState.setStatus('mandatory') sensor_probe_drycontact_array_port2_direction = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 2, 2, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('input', 0), ('output', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort2Direction.setStatus('mandatory') sensor_probe_drycontact_array_port2_cont_time_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 2, 2, 1, 9), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort2ContTimeCritical.setStatus('mandatory') sensor_probe_drycontact_array_port2_cont_time_normal = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 2, 2, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort2ContTimeNormal.setStatus('mandatory') sensor_probe_drycontact_array_port2_manual_output_cycle_time = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 2, 2, 1, 24), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort2ManualOutputCycleTime.setStatus('mandatory') sensor_probe_drycontact_array_port2_manual_output_action = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 2, 2, 1, 25), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 3, 4, 7, 8))).clone(namedValues=named_values(('allow-sensor-control', 1), ('turn-on', 3), ('turn-off', 4), ('cycle-Off-On-Off', 7), ('cycle-On-Off-On', 8)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort2ManualOutputAction.setStatus('mandatory') sensor_probe_drycontact_array_port2_output_desc_on = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 2, 2, 1, 26), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort2OutputDescOn.setStatus('mandatory') sensor_probe_drycontact_array_port2_output_desc_off = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 2, 2, 1, 27), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort2OutputDescOff.setStatus('mandatory') sensor_probe_drycontact_array_port2_url = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 2, 2, 1, 28), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort2URL.setStatus('mandatory') sensor_probe_drycontact_array_port2_open_url = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 2, 2, 1, 29), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 2))).clone(namedValues=named_values(('cur-window', 0), ('new-window', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort2OpenURL.setStatus('mandatory') sensor_probe_drycontact_array_port2_control_mode = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 2, 2, 1, 30), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('manual-control', 0), ('notification-control', 1), ('time-control', 2), ('thermostat-control', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort2ControlMode.setStatus('mandatory') sensor_probe_drycontact_array_port3 = mib_identifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 3)) sensor_probe_drycontact_array_port3_number = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 3, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort3Number.setStatus('mandatory') sensor_probe_drycontact_array_port3_table = mib_table((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 3, 2)) if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort3Table.setStatus('mandatory') sensor_probe_drycontact_array_port3_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 3, 2, 1)).setIndexNames((0, 'SPAGENT-MIB', 'sensorProbeDrycontactArrayPort3Index')) if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort3Entry.setStatus('mandatory') sensor_probe_drycontact_array_port3_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 3, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 7))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort3Index.setStatus('mandatory') sensor_probe_drycontact_array_port3_description = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 3, 2, 1, 2), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort3Description.setStatus('mandatory') sensor_probe_drycontact_array_port3_status = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 3, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 4, 6, 7, 8, 9))).clone(namedValues=named_values(('noStatus', 1), ('normal', 2), ('highCritical', 4), ('lowCritical', 6), ('sensorError', 7), ('relayOn', 8), ('relayOff', 9)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort3Status.setStatus('mandatory') sensor_probe_drycontact_array_port3_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 3, 2, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('online', 1), ('offline', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort3Online.setStatus('mandatory') sensor_probe_drycontact_array_port3_go_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 3, 2, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('goOnline', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort3GoOnline.setStatus('mandatory') sensor_probe_drycontact_array_port3_normal_state = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 3, 2, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('closed', 0), ('open', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort3NormalState.setStatus('mandatory') sensor_probe_drycontact_array_port3_direction = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 3, 2, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('input', 0), ('output', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort3Direction.setStatus('mandatory') sensor_probe_drycontact_array_port3_cont_time_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 3, 2, 1, 9), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort3ContTimeCritical.setStatus('mandatory') sensor_probe_drycontact_array_port3_cont_time_normal = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 3, 2, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort3ContTimeNormal.setStatus('mandatory') sensor_probe_drycontact_array_port3_manual_output_cycle_time = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 3, 2, 1, 24), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort3ManualOutputCycleTime.setStatus('mandatory') sensor_probe_drycontact_array_port3_manual_output_action = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 3, 2, 1, 25), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 3, 4, 7, 8))).clone(namedValues=named_values(('allow-sensor-control', 1), ('turn-on', 3), ('turn-off', 4), ('cycle-Off-On-Off', 7), ('cycle-On-Off-On', 8)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort3ManualOutputAction.setStatus('mandatory') sensor_probe_drycontact_array_port3_output_desc_on = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 3, 2, 1, 26), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort3OutputDescOn.setStatus('mandatory') sensor_probe_drycontact_array_port3_output_desc_off = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 3, 2, 1, 27), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort3OutputDescOff.setStatus('mandatory') sensor_probe_drycontact_array_port3_url = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 3, 2, 1, 28), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort3URL.setStatus('mandatory') sensor_probe_drycontact_array_port3_open_url = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 3, 2, 1, 29), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 2))).clone(namedValues=named_values(('cur-window', 0), ('new-window', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort3OpenURL.setStatus('mandatory') sensor_probe_drycontact_array_port3_control_mode = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 3, 2, 1, 30), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('manual-control', 0), ('notification-control', 1), ('time-control', 2), ('thermostat-control', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort3ControlMode.setStatus('mandatory') sensor_probe_drycontact_array_port4 = mib_identifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 4)) sensor_probe_drycontact_array_port4_number = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 4, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort4Number.setStatus('mandatory') sensor_probe_drycontact_array_port4_table = mib_table((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 4, 2)) if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort4Table.setStatus('mandatory') sensor_probe_drycontact_array_port4_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 4, 2, 1)).setIndexNames((0, 'SPAGENT-MIB', 'sensorProbeDrycontactArrayPort4Index')) if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort4Entry.setStatus('mandatory') sensor_probe_drycontact_array_port4_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 4, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 7))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort4Index.setStatus('mandatory') sensor_probe_drycontact_array_port4_description = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 4, 2, 1, 2), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort4Description.setStatus('mandatory') sensor_probe_drycontact_array_port4_status = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 4, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 4, 6, 7, 8, 9))).clone(namedValues=named_values(('noStatus', 1), ('normal', 2), ('highCritical', 4), ('lowCritical', 6), ('sensorError', 7), ('relayOn', 8), ('relayOff', 9)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort4Status.setStatus('mandatory') sensor_probe_drycontact_array_port4_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 4, 2, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('online', 1), ('offline', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort4Online.setStatus('mandatory') sensor_probe_drycontact_array_port4_go_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 4, 2, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('goOnline', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort4GoOnline.setStatus('mandatory') sensor_probe_drycontact_array_port4_normal_state = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 4, 2, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('closed', 0), ('open', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort4NormalState.setStatus('mandatory') sensor_probe_drycontact_array_port4_direction = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 4, 2, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('input', 0), ('output', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort4Direction.setStatus('mandatory') sensor_probe_drycontact_array_port4_cont_time_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 4, 2, 1, 9), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort4ContTimeCritical.setStatus('mandatory') sensor_probe_drycontact_array_port4_cont_time_normal = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 4, 2, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort4ContTimeNormal.setStatus('mandatory') sensor_probe_drycontact_array_port4_manual_output_cycle_time = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 4, 2, 1, 24), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort4ManualOutputCycleTime.setStatus('mandatory') sensor_probe_drycontact_array_port4_manual_output_action = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 4, 2, 1, 25), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 3, 4, 7, 8))).clone(namedValues=named_values(('allow-sensor-control', 1), ('turn-on', 3), ('turn-off', 4), ('cycle-Off-On-Off', 7), ('cycle-On-Off-On', 8)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort4ManualOutputAction.setStatus('mandatory') sensor_probe_drycontact_array_port4_output_desc_on = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 4, 2, 1, 26), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort4OutputDescOn.setStatus('mandatory') sensor_probe_drycontact_array_port4_output_desc_off = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 4, 2, 1, 27), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort4OutputDescOff.setStatus('mandatory') sensor_probe_drycontact_array_port4_url = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 4, 2, 1, 28), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort4URL.setStatus('mandatory') sensor_probe_drycontact_array_port4_open_url = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 4, 2, 1, 29), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 2))).clone(namedValues=named_values(('cur-window', 0), ('new-window', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort4OpenURL.setStatus('mandatory') sensor_probe_drycontact_array_port4_control_mode = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 4, 2, 1, 30), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('manual-control', 0), ('notification-control', 1), ('time-control', 2), ('thermostat-control', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort4ControlMode.setStatus('mandatory') sensor_probe_drycontact_array_port5 = mib_identifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 5)) sensor_probe_drycontact_array_port5_number = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 5, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort5Number.setStatus('mandatory') sensor_probe_drycontact_array_port5_table = mib_table((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 5, 2)) if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort5Table.setStatus('mandatory') sensor_probe_drycontact_array_port5_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 5, 2, 1)).setIndexNames((0, 'SPAGENT-MIB', 'sensorProbeDrycontactArrayPort5Index')) if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort5Entry.setStatus('mandatory') sensor_probe_drycontact_array_port5_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 5, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 7))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort5Index.setStatus('mandatory') sensor_probe_drycontact_array_port5_description = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 5, 2, 1, 2), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort5Description.setStatus('mandatory') sensor_probe_drycontact_array_port5_status = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 5, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 4, 6, 7, 8, 9))).clone(namedValues=named_values(('noStatus', 1), ('normal', 2), ('highCritical', 4), ('lowCritical', 6), ('sensorError', 7), ('relayOn', 8), ('relayOff', 9)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort5Status.setStatus('mandatory') sensor_probe_drycontact_array_port5_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 5, 2, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('online', 1), ('offline', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort5Online.setStatus('mandatory') sensor_probe_drycontact_array_port5_go_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 5, 2, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('goOnline', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort5GoOnline.setStatus('mandatory') sensor_probe_drycontact_array_port5_normal_state = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 5, 2, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('closed', 0), ('open', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort5NormalState.setStatus('mandatory') sensor_probe_drycontact_array_port5_direction = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 5, 2, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('input', 0), ('output', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort5Direction.setStatus('mandatory') sensor_probe_drycontact_array_port5_cont_time_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 5, 2, 1, 9), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort5ContTimeCritical.setStatus('mandatory') sensor_probe_drycontact_array_port5_cont_time_normal = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 5, 2, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort5ContTimeNormal.setStatus('mandatory') sensor_probe_drycontact_array_port5_manual_output_cycle_time = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 5, 2, 1, 24), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort5ManualOutputCycleTime.setStatus('mandatory') sensor_probe_drycontact_array_port5_manual_output_action = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 5, 2, 1, 25), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 3, 4, 7, 8))).clone(namedValues=named_values(('allow-sensor-control', 1), ('turn-on', 3), ('turn-off', 4), ('cycle-Off-On-Off', 7), ('cycle-On-Off-On', 8)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort5ManualOutputAction.setStatus('mandatory') sensor_probe_drycontact_array_port5_output_desc_on = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 5, 2, 1, 26), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort5OutputDescOn.setStatus('mandatory') sensor_probe_drycontact_array_port5_output_desc_off = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 5, 2, 1, 27), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort5OutputDescOff.setStatus('mandatory') sensor_probe_drycontact_array_port5_url = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 5, 2, 1, 28), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort5URL.setStatus('mandatory') sensor_probe_drycontact_array_port5_open_url = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 5, 2, 1, 29), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 2))).clone(namedValues=named_values(('cur-window', 0), ('new-window', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort5OpenURL.setStatus('mandatory') sensor_probe_drycontact_array_port5_control_mode = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 5, 2, 1, 30), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('manual-control', 0), ('notification-control', 1), ('time-control', 2), ('thermostat-control', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort5ControlMode.setStatus('mandatory') sensor_probe_drycontact_array_port6 = mib_identifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 6)) sensor_probe_drycontact_array_port6_number = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 6, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort6Number.setStatus('mandatory') sensor_probe_drycontact_array_port6_table = mib_table((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 6, 2)) if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort6Table.setStatus('mandatory') sensor_probe_drycontact_array_port6_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 6, 2, 1)).setIndexNames((0, 'SPAGENT-MIB', 'sensorProbeDrycontactArrayPort6Index')) if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort6Entry.setStatus('mandatory') sensor_probe_drycontact_array_port6_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 6, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 7))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort6Index.setStatus('mandatory') sensor_probe_drycontact_array_port6_description = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 6, 2, 1, 2), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort6Description.setStatus('mandatory') sensor_probe_drycontact_array_port6_status = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 6, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 4, 6, 7, 8, 9))).clone(namedValues=named_values(('noStatus', 1), ('normal', 2), ('highCritical', 4), ('lowCritical', 6), ('sensorError', 7), ('relayOn', 8), ('relayOff', 9)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort6Status.setStatus('mandatory') sensor_probe_drycontact_array_port6_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 6, 2, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('online', 1), ('offline', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort6Online.setStatus('mandatory') sensor_probe_drycontact_array_port6_go_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 6, 2, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('goOnline', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort6GoOnline.setStatus('mandatory') sensor_probe_drycontact_array_port6_normal_state = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 6, 2, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('closed', 0), ('open', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort6NormalState.setStatus('mandatory') sensor_probe_drycontact_array_port6_direction = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 6, 2, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('input', 0), ('output', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort6Direction.setStatus('mandatory') sensor_probe_drycontact_array_port6_cont_time_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 6, 2, 1, 9), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort6ContTimeCritical.setStatus('mandatory') sensor_probe_drycontact_array_port6_cont_time_normal = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 6, 2, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort6ContTimeNormal.setStatus('mandatory') sensor_probe_drycontact_array_port6_manual_output_cycle_time = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 6, 2, 1, 24), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort6ManualOutputCycleTime.setStatus('mandatory') sensor_probe_drycontact_array_port6_manual_output_action = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 6, 2, 1, 25), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 3, 4, 7, 8))).clone(namedValues=named_values(('allow-sensor-control', 1), ('turn-on', 3), ('turn-off', 4), ('cycle-Off-On-Off', 7), ('cycle-On-Off-On', 8)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort6ManualOutputAction.setStatus('mandatory') sensor_probe_drycontact_array_port6_output_desc_on = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 6, 2, 1, 26), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort6OutputDescOn.setStatus('mandatory') sensor_probe_drycontact_array_port6_output_desc_off = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 6, 2, 1, 27), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort6OutputDescOff.setStatus('mandatory') sensor_probe_drycontact_array_port6_url = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 6, 2, 1, 28), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort6URL.setStatus('mandatory') sensor_probe_drycontact_array_port6_open_url = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 6, 2, 1, 29), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 2))).clone(namedValues=named_values(('cur-window', 0), ('new-window', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort6OpenURL.setStatus('mandatory') sensor_probe_drycontact_array_port6_control_mode = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 6, 2, 1, 30), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('manual-control', 0), ('notification-control', 1), ('time-control', 2), ('thermostat-control', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort6ControlMode.setStatus('mandatory') sensor_probe_drycontact_array_port7 = mib_identifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 7)) sensor_probe_drycontact_array_port7_number = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 7, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort7Number.setStatus('mandatory') sensor_probe_drycontact_array_port7_table = mib_table((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 7, 2)) if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort7Table.setStatus('mandatory') sensor_probe_drycontact_array_port7_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 7, 2, 1)).setIndexNames((0, 'SPAGENT-MIB', 'sensorProbeDrycontactArrayPort7Index')) if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort7Entry.setStatus('mandatory') sensor_probe_drycontact_array_port7_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 7, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 7))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort7Index.setStatus('mandatory') sensor_probe_drycontact_array_port7_description = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 7, 2, 1, 2), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort7Description.setStatus('mandatory') sensor_probe_drycontact_array_port7_status = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 7, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 4, 6, 7, 8, 9))).clone(namedValues=named_values(('noStatus', 1), ('normal', 2), ('highCritical', 4), ('lowCritical', 6), ('sensorError', 7), ('relayOn', 8), ('relayOff', 9)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort7Status.setStatus('mandatory') sensor_probe_drycontact_array_port7_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 7, 2, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('online', 1), ('offline', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort7Online.setStatus('mandatory') sensor_probe_drycontact_array_port7_go_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 7, 2, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('goOnline', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort7GoOnline.setStatus('mandatory') sensor_probe_drycontact_array_port7_normal_state = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 7, 2, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('closed', 0), ('open', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort7NormalState.setStatus('mandatory') sensor_probe_drycontact_array_port7_direction = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 7, 2, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('input', 0), ('output', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort7Direction.setStatus('mandatory') sensor_probe_drycontact_array_port7_cont_time_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 7, 2, 1, 9), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort7ContTimeCritical.setStatus('mandatory') sensor_probe_drycontact_array_port7_cont_time_normal = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 7, 2, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort7ContTimeNormal.setStatus('mandatory') sensor_probe_drycontact_array_port7_manual_output_cycle_time = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 7, 2, 1, 24), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort7ManualOutputCycleTime.setStatus('mandatory') sensor_probe_drycontact_array_port7_manual_output_action = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 7, 2, 1, 25), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 3, 4, 7, 8))).clone(namedValues=named_values(('allow-sensor-control', 1), ('turn-on', 3), ('turn-off', 4), ('cycle-Off-On-Off', 7), ('cycle-On-Off-On', 8)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort7ManualOutputAction.setStatus('mandatory') sensor_probe_drycontact_array_port7_output_desc_on = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 7, 2, 1, 26), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort7OutputDescOn.setStatus('mandatory') sensor_probe_drycontact_array_port7_output_desc_off = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 7, 2, 1, 27), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort7OutputDescOff.setStatus('mandatory') sensor_probe_drycontact_array_port7_url = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 7, 2, 1, 28), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort7URL.setStatus('mandatory') sensor_probe_drycontact_array_port7_open_url = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 7, 2, 1, 29), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 2))).clone(namedValues=named_values(('cur-window', 0), ('new-window', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort7OpenURL.setStatus('mandatory') sensor_probe_drycontact_array_port7_control_mode = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 7, 2, 1, 30), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('manual-control', 0), ('notification-control', 1), ('time-control', 2), ('thermostat-control', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort7ControlMode.setStatus('mandatory') sensor_probe_drycontact_array_port8 = mib_identifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 8)) sensor_probe_drycontact_array_port8_number = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 8, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort8Number.setStatus('mandatory') sensor_probe_drycontact_array_port8_table = mib_table((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 8, 2)) if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort8Table.setStatus('mandatory') sensor_probe_drycontact_array_port8_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 8, 2, 1)).setIndexNames((0, 'SPAGENT-MIB', 'sensorProbeDrycontactArrayPort8Index')) if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort8Entry.setStatus('mandatory') sensor_probe_drycontact_array_port8_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 8, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 7))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort8Index.setStatus('mandatory') sensor_probe_drycontact_array_port8_description = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 8, 2, 1, 2), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort8Description.setStatus('mandatory') sensor_probe_drycontact_array_port8_status = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 8, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 4, 6, 7, 8, 9))).clone(namedValues=named_values(('noStatus', 1), ('normal', 2), ('highCritical', 4), ('lowCritical', 6), ('sensorError', 7), ('relayOn', 8), ('relayOff', 9)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort8Status.setStatus('mandatory') sensor_probe_drycontact_array_port8_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 8, 2, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('online', 1), ('offline', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort8Online.setStatus('mandatory') sensor_probe_drycontact_array_port8_go_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 8, 2, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('goOnline', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort8GoOnline.setStatus('mandatory') sensor_probe_drycontact_array_port8_normal_state = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 8, 2, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('closed', 0), ('open', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort8NormalState.setStatus('mandatory') sensor_probe_drycontact_array_port8_direction = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 8, 2, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('input', 0), ('output', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort8Direction.setStatus('mandatory') sensor_probe_drycontact_array_port8_cont_time_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 8, 2, 1, 9), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort8ContTimeCritical.setStatus('mandatory') sensor_probe_drycontact_array_port8_cont_time_normal = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 8, 2, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort8ContTimeNormal.setStatus('mandatory') sensor_probe_drycontact_array_port8_manual_output_cycle_time = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 8, 2, 1, 24), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort8ManualOutputCycleTime.setStatus('mandatory') sensor_probe_drycontact_array_port8_manual_output_action = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 8, 2, 1, 25), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 3, 4, 7, 8))).clone(namedValues=named_values(('allow-sensor-control', 1), ('turn-on', 3), ('turn-off', 4), ('cycle-Off-On-Off', 7), ('cycle-On-Off-On', 8)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort8ManualOutputAction.setStatus('mandatory') sensor_probe_drycontact_array_port8_output_desc_on = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 8, 2, 1, 26), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort8OutputDescOn.setStatus('mandatory') sensor_probe_drycontact_array_port8_output_desc_off = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 8, 2, 1, 27), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort8OutputDescOff.setStatus('mandatory') sensor_probe_drycontact_array_port8_url = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 8, 2, 1, 28), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort8URL.setStatus('mandatory') sensor_probe_drycontact_array_port8_open_url = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 8, 2, 1, 29), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 2))).clone(namedValues=named_values(('cur-window', 0), ('new-window', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort8OpenURL.setStatus('mandatory') sensor_probe_drycontact_array_port8_control_mode = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 19, 37, 8, 2, 1, 30), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('manual-control', 0), ('notification-control', 1), ('time-control', 2), ('thermostat-control', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDrycontactArrayPort8ControlMode.setStatus('mandatory') sensor_probe_debug = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 20), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('off', 0), ('on', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDebug.setStatus('mandatory') sensor_probe_trap_resend = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 22), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('off', 0), ('on', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTrapResend.setStatus('mandatory') sensor_probe_trap_resend_interval = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 23), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTrapResendInterval.setStatus('mandatory') sensor_probe_send_traps = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 24), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('on', 1), ('off', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSendTraps.setStatus('mandatory') sensor_probe_trap_destination = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 25), ip_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTrapDestination.setStatus('mandatory') sensor_probe_trap_community = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 26), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTrapCommunity.setStatus('mandatory') sensor_probe_default_gateway = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 27), ip_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDefaultGateway.setStatus('mandatory') sensor_probe_subnet_mask = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 28), ip_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSubnetMask.setStatus('mandatory') sensor_probe_route_add = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 29), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRouteAdd.setStatus('mandatory') sensor_probe_send_mail = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 30), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('on', 1), ('off', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSendMail.setStatus('mandatory') sensor_probe_mail_recpt = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 31), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeMailRecpt.setStatus('mandatory') sensor_probe_mail_from = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 32), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeMailFrom.setStatus('mandatory') sensor_probe_mail_smtp = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 33), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeMailSMTP.setStatus('mandatory') sensor_probe_mail_jpg_inline = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 34), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('inline', 1), ('link', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeMailJpgInline.setStatus('mandatory') sensor_probe_mail_resend_interval = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 36), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeMailResendInterval.setStatus('mandatory') sensor_probe_mail_max_resend = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 37), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeMailMaxResend.setStatus('mandatory') sensor_probe_mail_last_status = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 39), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeMailLastStatus.setStatus('mandatory') sensor_probe_support_mail_rcpt = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 40), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSupportMailRcpt.setStatus('mandatory') sensor_probe_camera_server_table = mib_table((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 42)) if mibBuilder.loadTexts: sensorProbeCameraServerTable.setStatus('mandatory') sensor_probe_camera_server_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 42, 1)).setIndexNames((0, 'SPAGENT-MIB', 'sensorProbeCameraServerIndex')) if mibBuilder.loadTexts: sensorProbeCameraServerEntry.setStatus('mandatory') sensor_probe_camera_server_client_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 42, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('online', 1), ('offline', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeCameraServerClientOnline.setStatus('mandatory') sensor_probe_camera_server_client_go_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 42, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('goOnline', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeCameraServerClientGoOnline.setStatus('mandatory') sensor_probe_camera_server_client_ip = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 42, 1, 3), ip_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeCameraServerClientIP.setStatus('mandatory') sensor_probe_camera_server_client_set_password = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 42, 1, 4), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeCameraServerClientSetPassword.setStatus('mandatory') sensor_probe_camera_server_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 42, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeCameraServerIndex.setStatus('mandatory') sensor_probe_java_time_out = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 42, 1, 6), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeJavaTimeOut.setStatus('mandatory') sensor_probe_jpeg_quality_factor = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 42, 1, 7), integer32().subtype(subtypeSpec=value_range_constraint(5, 95))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeJpegQualityFactor.setStatus('mandatory') sensor_probe_camera_description = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 42, 1, 8), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeCameraDescription.setStatus('mandatory') sensor_probe_camera_rotate = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 42, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('nonRotate', 0), ('rotate', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeCameraRotate.setStatus('mandatory') sensor_probe_camera_resolution = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 42, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('resolution320x240', 0), ('resolution640x480', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeCameraResolution.setStatus('mandatory') sensor_probe_ptz_rotate_relative = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 42, 1, 11), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbePTZRotateRelative.setStatus('mandatory') sensor_probe_ptz_rotate_absolute = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 42, 1, 12), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbePTZRotateAbsolute.setStatus('mandatory') sensor_probe_audio_attach_channel = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 42, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('notAttachAudio', 0), ('attachAudio', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeAudioAttachChannel.setStatus('mandatory') sensor_probe_ptz_enable = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 42, 1, 14), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('disable', 0), ('enableInternal', 1), ('enableExternal', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbePTZEnable.setStatus('mandatory') sensor_probe_ptz_brand = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 42, 1, 15), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('generalBrand', 0), ('akcpBrand', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbePTZBrand.setStatus('mandatory') sensor_probe_ptz_pan_tilt_until_end = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 42, 1, 16), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8))).clone(namedValues=named_values(('stop', 0), ('right', 1), ('left', 2), ('up', 3), ('down', 4), ('right-up', 5), ('right-down', 6), ('left-up', 7), ('left-down', 8)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbePTZPanTiltUntilEnd.setStatus('mandatory') sensor_probe_trap_mail_poll_interval = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 50), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTrapMailPollInterval.setStatus('mandatory') sensor_probe_send_test_mail = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 51), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSendTestMail.setStatus('mandatory') sensor_probe_last_system_error = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 52), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeLastSystemError.setStatus('mandatory') sensor_probe_data_collection_period = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 53), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDataCollectionPeriod.setStatus('mandatory') sensor_probe_mail_timeout = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 54), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeMailTimeout.setStatus('mandatory') sensor_probe_auto_sense = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 55), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disable', 0), ('enable', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeAutoSense.setStatus('mandatory') sensor_probe_checksum = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 56), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeChecksum.setStatus('mandatory') sensor_probe_use_password = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 57), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('usePassword', 0), ('doNotUsePassword', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeUsePassword.setStatus('mandatory') sensor_probe_display_logo = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 59), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disable', 0), ('enable', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDisplayLogo.setStatus('mandatory') sensor_probe_trap_type = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 60), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('specificTypeTrap', 1), ('generalTypeTrap', 2), ('bothTypeTraps', 3), ('statusTypeTraps', 4)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTrapType.setStatus('mandatory') sensor_probe_mail_cc = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 61), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeMailCC.setStatus('mandatory') sensor_probe_allow_ip_change = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 62), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enable', 1), ('disable', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeAllowIPChange.setStatus('mandatory') sensor_probe_time_of_day = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 65), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTimeOfDay.setStatus('mandatory') sensor_probe_enable_sys_log = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 66), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('enableLogToFlash', 1), ('enableLogToNetAndFlash', 2), ('disable', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeEnableSysLog.setStatus('mandatory') sensor_probe_read_sys_log = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 67), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('lastMessage', 1), ('allMessages', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeReadSysLog.setStatus('mandatory') sensor_probe_clear_sys_log = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 68), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2))).clone(namedValues=named_values(('allMessages', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeClearSysLog.setStatus('mandatory') sensor_probe_syslog_dest_ip = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 69), ip_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSyslogDestIP.setStatus('mandatory') sensor_probe_syslog_port = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 70), gauge32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSyslogPort.setStatus('mandatory') sensor_probe_set_syslog_msg_prefix = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 71), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSetSyslogMsgPrefix.setStatus('mandatory') sensor_probe_time_zone = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 81), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTimeZone.setStatus('mandatory') sensor_probe_mega_version = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 83), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeMegaVersion.setStatus('mandatory') sensor_probe_ntp_mode = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 84), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('notUse', 0), ('oneTime', 1), ('onSystemStartUp', 2), ('onceAMounth', 3), ('onceAWeek', 4), ('onceADay', 5), ('onceAnHour', 6), ('continuous', 7)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeNtpMode.setStatus('mandatory') sensor_probe_ntp_server = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 85), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeNtpServer.setStatus('mandatory') sensor_probe_smtp_auth = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 87), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enable', 1), ('disable', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSMTPAuth.setStatus('mandatory') sensor_probe_smtp_login = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 88), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSMTPLogin.setStatus('mandatory') sensor_probe_smtp_password = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 89), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSMTPPassword.setStatus('mandatory') sensor_probe_dns_server = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 90), ip_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDNSServer.setStatus('mandatory') sensor_probe_alt_web_port = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 91), gauge32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeAltWebPort.setStatus('mandatory') sensor_probe_number_of_sensor_port = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 92), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeNumberOfSensorPort.setStatus('mandatory') sensor_probe_send_traps_alive = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 93), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('on', 1), ('off', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSendTrapsAlive.setStatus('mandatory') sensor_probe_trap_re_interval_alive = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 94), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTrapReIntervalAlive.setStatus('mandatory') sensor_probe_use_camera = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 95), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('off', 0), ('on', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeUseCamera.setStatus('mandatory') sensor_probe_adc_calibrate_port = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 96), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeAdcCalibratePort.setStatus('mandatory') sensor_probe_mail_subject = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 98), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeMailSubject.setStatus('mandatory') sensor_probe_snmp_port = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 99), gauge32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSnmpPort.setStatus('mandatory') sensor_probe_snmp_trap_port = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 100), gauge32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSnmpTrapPort.setStatus('mandatory') sensor_probe_snmp_indexing_mode = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 101), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('index0', 0), ('index1', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSnmpIndexingMode.setStatus('mandatory') sensor_probe_notify_boot = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 103), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeNotifyBoot.setStatus('mandatory') sensor_probe_delay_notify_boot = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 104), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeDelayNotifyBoot.setStatus('mandatory') sensor_probe_smtp_port = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 105), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSmtpPort.setStatus('mandatory') sensor_probe_reboot = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 106), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeReboot.setStatus('mandatory') sensor_probe_server_enable = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 107), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disable', 0), ('enable', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeServerEnable.setStatus('mandatory') sensor_probe_firmware_version = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 108), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeFirmwareVersion.setStatus('mandatory') sensor_probe_product_type = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 109), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('sensorProbe2', 1), ('sensorProbe8', 2), ('sensorProbeLinuxWithoutUSB', 3), ('sensorProbeLinuxWithUSB', 4), ('securityProbe', 5)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeProductType.setStatus('mandatory') sensor_probe_request_resend_trap = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 110), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeRequestResendTrap.setStatus('mandatory') sensor_probe_separate_email = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 112), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('notSeparate', 0), ('separate', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeSeparateEmail.setStatus('mandatory') sensor_probe_mail_custom = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 113), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('normal', 0), ('custom', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeMailCustom.setStatus('mandatory') sensor_probe_untide_password = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 114), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('tidePassword', 0), ('untidePassword', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeUntidePassword.setStatus('mandatory') sensor_probe_web_password = mib_identifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 115)) sensor_probe_web_admin_password = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 115, 1), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeWebAdminPassword.setStatus('mandatory') sensor_probe_web_user_password = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 115, 2), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeWebUserPassword.setStatus('mandatory') sensor_probe_reload_network = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 116), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1))).clone(namedValues=named_values(('reload', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeReloadNetwork.setStatus('mandatory') sensor_probe_status_number = mib_identifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 117)) sensor_probe_status_number_not_normal = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 117, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeStatusNumberNotNormal.setStatus('mandatory') sensor_probe_status_number_critical_and_error = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 117, 2), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeStatusNumberCriticalAndError.setStatus('mandatory') sensor_probe_status_number_error = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 117, 3), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeStatusNumberError.setStatus('mandatory') sensor_probe_type_name = mib_identifier((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 118)) sensor_probe_type_temperature_name = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 118, 1), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTypeTemperatureName.setStatus('mandatory') sensor_probe_type_sht11_humidity_name = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 118, 2), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTypeSHT11HumidityName.setStatus('mandatory') sensor_probe_type_sht11_temp_name = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 118, 3), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTypeSHT11TempName.setStatus('mandatory') sensor_probe_type4to20_ma_name = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 118, 4), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeType4to20MAName.setStatus('mandatory') sensor_probe_type_d_cvoltage_name = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 118, 5), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTypeDCvoltageName.setStatus('mandatory') sensor_probe_type_airflow_name = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 118, 6), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTypeAirflowName.setStatus('mandatory') sensor_probe_type_drycontact_inout_name = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 118, 7), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTypeDrycontactInoutName.setStatus('mandatory') sensor_probe_type_drycontact_input_name = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 118, 8), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTypeDrycontactInputName.setStatus('mandatory') sensor_probe_type_motion_name = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 118, 9), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTypeMotionName.setStatus('mandatory') sensor_probe_type_water_name = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 118, 10), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTypeWaterName.setStatus('mandatory') sensor_probe_type_security_name = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 118, 11), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTypeSecurityName.setStatus('mandatory') sensor_probe_type_siren_name = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 118, 12), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTypeSirenName.setStatus('mandatory') sensor_probe_type_relay_name = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 118, 13), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTypeRelayName.setStatus('mandatory') sensor_probe_type_a_cvoltage_name = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 118, 14), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTypeACvoltageName.setStatus('mandatory') sensor_probe_type_ade7763_vrms_name = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 118, 15), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTypeADE7763VRMSName.setStatus('mandatory') sensor_probe_type_ade7763_irms_name = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 118, 16), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTypeADE7763IRMSName.setStatus('mandatory') sensor_probe_type_ade7763_watt_name = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 118, 17), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTypeADE7763WattName.setStatus('mandatory') sensor_probe_type_ade7763_watthour_name = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 118, 18), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTypeADE7763WatthourName.setStatus('mandatory') sensor_probe_type_pcf8574_x_relay_name = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 118, 19), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTypePCF8574XRelayName.setStatus('mandatory') sensor_probe_type_thermocouple_name = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 118, 20), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTypeThermocoupleName.setStatus('mandatory') sensor_probe_type_smoke_name = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 118, 21), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTypeSmokeName.setStatus('mandatory') sensor_probe_type_x_dry_name = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 118, 22), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTypeXDryName.setStatus('mandatory') sensor_probe_type_temperature_array_name = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 118, 23), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTypeTemperatureArrayName.setStatus('mandatory') sensor_probe_type_water_rope_name = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 118, 24), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTypeWaterRopeName.setStatus('mandatory') sensor_probe_type_fuel_level_name = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 118, 25), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTypeFuelLevelName.setStatus('mandatory') sensor_probe_type_tank_sender_name = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 118, 26), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTypeTankSenderName.setStatus('mandatory') sensor_probe_type_thurmostat_name = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 118, 128), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTypeThurmostatName.setStatus('mandatory') sensor_probe_type_virtual_name = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 118, 129), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTypeVirtualName.setStatus('mandatory') sensor_probe_type_sound_name = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 118, 130), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTypeSoundName.setStatus('mandatory') sensor_probe_type_soft_motion_name = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 118, 131), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTypeSoftMotionName.setStatus('mandatory') sensor_probe_type_no_signal_name = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 118, 132), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTypeNoSignalName.setStatus('mandatory') sensor_probe_type_power_meter_name = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 118, 134), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTypePowerMeterName.setStatus('mandatory') sensor_probe_type_sht11_name = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 118, 135), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTypeSHT11Name.setStatus('mandatory') sensor_probe_type_ade7763_name = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 118, 136), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorProbeTypeADE7763Name.setStatus('mandatory') sensor_probe_product_revision = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 2, 2, 1, 119), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorProbeProductRevision.setStatus('mandatory') security_probe = mib_identifier((1, 3, 6, 1, 4, 1, 3854, 2)) sec_summary = mib_identifier((1, 3, 6, 1, 4, 1, 3854, 2, 1)) sec_device = mib_identifier((1, 3, 6, 1, 4, 1, 3854, 2, 2)) device_table = mib_table((1, 3, 6, 1, 4, 1, 3854, 2, 2, 1)) if mibBuilder.loadTexts: deviceTable.setStatus('mandatory') device_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3854, 2, 2, 1, 1)).setIndexNames((0, 'SPAGENT-MIB', 'deviceIndex')) if mibBuilder.loadTexts: deviceEntry.setStatus('mandatory') device_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 2, 1, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 184549375))).setMaxAccess('readonly') if mibBuilder.loadTexts: deviceIndex.setStatus('mandatory') device_description = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 2, 1, 1, 2), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: deviceDescription.setStatus('mandatory') device_type = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 2, 1, 1, 3), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: deviceType.setStatus('mandatory') device_info = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 2, 1, 1, 4), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: deviceInfo.setStatus('mandatory') device_status = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 2, 1, 1, 5), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: deviceStatus.setStatus('mandatory') device_intelligent_table = mib_table((1, 3, 6, 1, 4, 1, 3854, 2, 2, 2)) if mibBuilder.loadTexts: deviceIntelligentTable.setStatus('mandatory') device_intelligent_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3854, 2, 2, 2, 1)).setIndexNames((0, 'SPAGENT-MIB', 'deviceIntelligentIndex')) if mibBuilder.loadTexts: deviceIntelligentEntry.setStatus('mandatory') device_intelligent_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 2, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly') if mibBuilder.loadTexts: deviceIntelligentIndex.setStatus('mandatory') device_intelligent_description = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 2, 2, 1, 2), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: deviceIntelligentDescription.setStatus('mandatory') device_intelligent_info = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 2, 2, 1, 4), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: deviceIntelligentInfo.setStatus('mandatory') device_intelligent_status = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 2, 2, 1, 5), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: deviceIntelligentStatus.setStatus('mandatory') sensor_intelligent_type_selected = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 2, 2, 1, 6), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorIntelligentTypeSelected.setStatus('mandatory') sensor_intelligent_port1_go_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 2, 2, 1, 100), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('goOnline', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorIntelligentPort1GoOnline.setStatus('mandatory') sensor_intelligent_port2_go_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 2, 2, 1, 101), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('goOnline', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorIntelligentPort2GoOnline.setStatus('mandatory') sensor_intelligent_port3_go_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 2, 2, 1, 102), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('goOnline', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorIntelligentPort3GoOnline.setStatus('mandatory') sensor_intelligent_port4_go_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 2, 2, 1, 103), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('goOnline', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorIntelligentPort4GoOnline.setStatus('mandatory') sensor_intelligent_port5_go_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 2, 2, 1, 104), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('goOnline', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorIntelligentPort5GoOnline.setStatus('mandatory') sensor_intelligent_port6_go_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 2, 2, 1, 105), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('goOnline', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorIntelligentPort6GoOnline.setStatus('mandatory') sensor_intelligent_port7_go_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 2, 2, 1, 106), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('goOnline', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorIntelligentPort7GoOnline.setStatus('mandatory') sensor_intelligent_port8_go_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 2, 2, 1, 107), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('goOnline', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorIntelligentPort8GoOnline.setStatus('mandatory') device_dry_contact_table = mib_table((1, 3, 6, 1, 4, 1, 3854, 2, 2, 3)) if mibBuilder.loadTexts: deviceDryContactTable.setStatus('mandatory') device_dry_contact_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3854, 2, 2, 3, 1)).setIndexNames((0, 'SPAGENT-MIB', 'deviceDryContactIndex')) if mibBuilder.loadTexts: deviceDryContactEntry.setStatus('mandatory') device_dry_contact_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 2, 3, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly') if mibBuilder.loadTexts: deviceDryContactIndex.setStatus('mandatory') device_dry_contact_description = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 2, 3, 1, 2), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: deviceDryContactDescription.setStatus('mandatory') device_dry_contact_info = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 2, 3, 1, 4), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: deviceDryContactInfo.setStatus('mandatory') device_dry_contact_status = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 2, 3, 1, 5), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: deviceDryContactStatus.setStatus('mandatory') sensor_dry_contact_port1_go_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 2, 3, 1, 100), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('goOnline', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorDryContactPort1GoOnline.setStatus('mandatory') sensor_dry_contact_port2_go_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 2, 3, 1, 101), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('goOnline', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorDryContactPort2GoOnline.setStatus('mandatory') sensor_dry_contact_port3_go_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 2, 3, 1, 102), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('goOnline', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorDryContactPort3GoOnline.setStatus('mandatory') sensor_dry_contact_port4_go_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 2, 3, 1, 103), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('goOnline', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorDryContactPort4GoOnline.setStatus('mandatory') sensor_dry_contact_port5_go_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 2, 3, 1, 104), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('goOnline', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorDryContactPort5GoOnline.setStatus('mandatory') sensor_dry_contact_port6_go_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 2, 3, 1, 105), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('goOnline', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorDryContactPort6GoOnline.setStatus('mandatory') sensor_dry_contact_port7_go_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 2, 3, 1, 106), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('goOnline', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorDryContactPort7GoOnline.setStatus('mandatory') sensor_dry_contact_port8_go_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 2, 3, 1, 107), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('goOnline', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorDryContactPort8GoOnline.setStatus('mandatory') sensor_dry_contact_port9_go_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 2, 3, 1, 108), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('goOnline', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorDryContactPort9GoOnline.setStatus('mandatory') sensor_dry_contact_port10_go_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 2, 3, 1, 109), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('goOnline', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorDryContactPort10GoOnline.setStatus('mandatory') sensor_dry_contact_port11_go_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 2, 3, 1, 110), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('goOnline', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorDryContactPort11GoOnline.setStatus('mandatory') sensor_dry_contact_port12_go_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 2, 3, 1, 111), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('goOnline', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorDryContactPort12GoOnline.setStatus('mandatory') sensor_dry_contact_port13_go_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 2, 3, 1, 112), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('goOnline', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorDryContactPort13GoOnline.setStatus('mandatory') sensor_dry_contact_port14_go_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 2, 3, 1, 113), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('goOnline', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorDryContactPort14GoOnline.setStatus('mandatory') sensor_dry_contact_port15_go_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 2, 3, 1, 114), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('goOnline', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorDryContactPort15GoOnline.setStatus('mandatory') sensor_dry_contact_port16_go_online = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 2, 3, 1, 115), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('goOnline', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorDryContactPort16GoOnline.setStatus('mandatory') sec_sensor = mib_identifier((1, 3, 6, 1, 4, 1, 3854, 2, 3)) sensor_table = mib_table((1, 3, 6, 1, 4, 1, 3854, 2, 3, 1)) if mibBuilder.loadTexts: sensorTable.setStatus('mandatory') sensor_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3854, 2, 3, 1, 1)).setIndexNames((0, 'SPAGENT-MIB', 'sensorIndex')) if mibBuilder.loadTexts: sensorEntry.setStatus('mandatory') sensor_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 1, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorIndex.setStatus('mandatory') sensor_description = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 1, 1, 2), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorDescription.setStatus('mandatory') sensor_type = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 128, 129, 130, 131, 132, 133, 224, 255))).clone(namedValues=named_values(('temperature', 1), ('humidity', 2), ('temperature2', 3), ('four-20mA', 4), ('dcvoltage', 5), ('airflow', 6), ('io', 7), ('drycontact', 8), ('motion', 9), ('water', 10), ('security', 11), ('siren', 12), ('relay', 13), ('acvoltage', 14), ('vrms', 15), ('irms', 16), ('watt', 17), ('watthour', 18), ('xrelay', 19), ('thermocouple', 20), ('smoke', 21), ('drycontact-array', 22), ('temperature-array', 23), ('thermostat', 128), ('virtual', 129), ('sound', 130), ('softmotion', 131), ('camera-dummy', 132), ('board-state', 133), ('nosignal', 224), ('test', 255)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorType.setStatus('mandatory') sensor_value = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 1, 1, 4), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorValue.setStatus('mandatory') sensor_unit = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 1, 1, 5), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorUnit.setStatus('mandatory') sensor_status = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 1, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('noStatus', 1), ('normal', 2), ('highWarning', 3), ('highCritical', 4), ('lowWarning', 5), ('lowCritical', 6), ('sensorError', 7)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorStatus.setStatus('mandatory') sensor_go_offline = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 1, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('online', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorGoOffline.setStatus('mandatory') sensor_port = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 1, 1, 35), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorPort.setStatus('mandatory') sensor_sub_port = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 1, 1, 36), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorSubPort.setStatus('mandatory') sensor_device_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 1, 1, 37), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorDeviceIndex.setStatus('mandatory') sensor_display_style = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 1, 1, 45), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('basic', 0), ('gauge', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorDisplayStyle.setStatus('mandatory') sensor_high_critical_description = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 1, 1, 46), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorHighCriticalDescription.setStatus('mandatory') sensor_low_critical_description = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 1, 1, 47), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorLowCriticalDescription.setStatus('mandatory') sensor_normal_description = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 1, 1, 48), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorNormalDescription.setStatus('mandatory') sensor_low_warning_description = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 1, 1, 49), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorLowWarningDescription.setStatus('mandatory') sensor_high_warning_description = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 1, 1, 50), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorHighWarningDescription.setStatus('mandatory') sensor_error_description = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 1, 1, 51), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorErrorDescription.setStatus('mandatory') sensor_on_description = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 1, 1, 52), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorOnDescription.setStatus('mandatory') sensor_off_description = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 1, 1, 53), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorOffDescription.setStatus('mandatory') sensor_high_critical_color = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 1, 1, 54), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorHighCriticalColor.setStatus('mandatory') sensor_low_critical_color = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 1, 1, 55), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorLowCriticalColor.setStatus('mandatory') sensor_normal_color = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 1, 1, 56), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorNormalColor.setStatus('mandatory') sensor_low_warning_color = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 1, 1, 57), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorLowWarningColor.setStatus('mandatory') sensor_high_warning_color = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 1, 1, 58), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorHighWarningColor.setStatus('mandatory') sensor_error_color = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 1, 1, 59), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorErrorColor.setStatus('mandatory') sensor_on_color = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 1, 1, 60), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorOnColor.setStatus('mandatory') sensor_off_color = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 1, 1, 61), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorOffColor.setStatus('mandatory') sensor_temperature_table = mib_table((1, 3, 6, 1, 4, 1, 3854, 2, 3, 2)) if mibBuilder.loadTexts: sensorTemperatureTable.setStatus('mandatory') sensor_temperature_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3854, 2, 3, 2, 1)).setIndexNames((0, 'SPAGENT-MIB', 'sensorTemperatureIndex')) if mibBuilder.loadTexts: sensorTemperatureEntry.setStatus('mandatory') sensor_temperature_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorTemperatureIndex.setStatus('mandatory') sensor_temperature_description = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 2, 1, 2), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorTemperatureDescription.setStatus('mandatory') sensor_temperature_type = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 2, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 3, 20))).clone(namedValues=named_values(('temperature', 1), ('dualsensor', 3), ('thermocouple', 20)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorTemperatureType.setStatus('mandatory') sensor_temperature_degree = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 2, 1, 4), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorTemperatureDegree.setStatus('mandatory') sensor_temperature_unit = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 2, 1, 5), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorTemperatureUnit.setStatus('mandatory') sensor_temperature_status = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 2, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('noStatus', 1), ('normal', 2), ('highWarning', 3), ('highCritical', 4), ('lowWarning', 5), ('lowCritical', 6), ('sensorError', 7)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorTemperatureStatus.setStatus('mandatory') sensor_temperature_go_offline = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 2, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('online', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorTemperatureGoOffline.setStatus('mandatory') sensor_temperature_low_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 2, 1, 9), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorTemperatureLowCritical.setStatus('mandatory') sensor_temperature_low_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 2, 1, 10), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorTemperatureLowWarning.setStatus('mandatory') sensor_temperature_high_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 2, 1, 11), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorTemperatureHighWarning.setStatus('mandatory') sensor_temperature_high_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 2, 1, 12), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorTemperatureHighCritical.setStatus('mandatory') sensor_temperature_rearm = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 2, 1, 13), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorTemperatureRearm.setStatus('mandatory') sensor_temperature_delay_error = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 2, 1, 14), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorTemperatureDelayError.setStatus('mandatory') sensor_temperature_delay_normal = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 2, 1, 15), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorTemperatureDelayNormal.setStatus('mandatory') sensor_temperature_delay_low_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 2, 1, 16), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorTemperatureDelayLowCritical.setStatus('mandatory') sensor_temperature_delay_low_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 2, 1, 17), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorTemperatureDelayLowWarning.setStatus('mandatory') sensor_temperature_delay_high_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 2, 1, 18), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorTemperatureDelayHighWarning.setStatus('mandatory') sensor_temperature_delay_high_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 2, 1, 19), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorTemperatureDelayHighCritical.setStatus('mandatory') sensor_temperature_raw = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 2, 1, 20), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorTemperatureRaw.setStatus('mandatory') sensor_temperature_offset = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 2, 1, 21), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorTemperatureOffset.setStatus('mandatory') sensor_temperature_port = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 2, 1, 35), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorTemperaturePort.setStatus('mandatory') sensor_temperature_sub_port = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 2, 1, 36), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorTemperatureSubPort.setStatus('mandatory') sensor_temperature_device_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 2, 1, 37), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorTemperatureDeviceIndex.setStatus('mandatory') sensor_temperature_display_style = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 2, 1, 45), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('basic', 0), ('gauge', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorTemperatureDisplayStyle.setStatus('mandatory') sensor_temperature_high_critical_desc = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 2, 1, 46), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorTemperatureHighCriticalDesc.setStatus('mandatory') sensor_temperature_low_critical_desc = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 2, 1, 47), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorTemperatureLowCriticalDesc.setStatus('mandatory') sensor_temperature_normal_desc = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 2, 1, 48), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorTemperatureNormalDesc.setStatus('mandatory') sensor_temperature_low_warning_desc = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 2, 1, 49), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorTemperatureLowWarningDesc.setStatus('mandatory') sensor_temperature_high_warning_desc = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 2, 1, 50), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorTemperatureHighWarningDesc.setStatus('mandatory') sensor_temperature_sensor_error_desc = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 2, 1, 51), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorTemperatureSensorErrorDesc.setStatus('mandatory') sensor_temperature_high_critical_color = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 2, 1, 54), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorTemperatureHighCriticalColor.setStatus('mandatory') sensor_temperature_low_critical_color = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 2, 1, 55), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorTemperatureLowCriticalColor.setStatus('mandatory') sensor_temperature_normal_color = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 2, 1, 56), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorTemperatureNormalColor.setStatus('mandatory') sensor_temperature_low_warning_color = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 2, 1, 57), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorTemperatureLowWarningColor.setStatus('mandatory') sensor_temperature_high_warning_color = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 2, 1, 58), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorTemperatureHighWarningColor.setStatus('mandatory') sensor_temperature_sensor_error_color = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 2, 1, 59), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorTemperatureSensorErrorColor.setStatus('mandatory') sensor_humidity_table = mib_table((1, 3, 6, 1, 4, 1, 3854, 2, 3, 3)) if mibBuilder.loadTexts: sensorHumidityTable.setStatus('mandatory') sensor_humidity_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3854, 2, 3, 3, 1)).setIndexNames((0, 'SPAGENT-MIB', 'sensorHumidityIndex')) if mibBuilder.loadTexts: sensorHumidityEntry.setStatus('mandatory') sensor_humidity_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 3, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorHumidityIndex.setStatus('mandatory') sensor_humidity_description = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 3, 1, 2), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorHumidityDescription.setStatus('mandatory') sensor_humidity_percent = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 3, 1, 4), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorHumidityPercent.setStatus('mandatory') sensor_humidity_unit = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 3, 1, 5), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorHumidityUnit.setStatus('mandatory') sensor_humidity_status = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 3, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('noStatus', 1), ('normal', 2), ('highWarning', 3), ('highCritical', 4), ('lowWarning', 5), ('lowCritical', 6), ('sensorError', 7)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorHumidityStatus.setStatus('mandatory') sensor_humidity_go_offline = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 3, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('online', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorHumidityGoOffline.setStatus('mandatory') sensor_humidity_low_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 3, 1, 9), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorHumidityLowCritical.setStatus('mandatory') sensor_humidity_low_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 3, 1, 10), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorHumidityLowWarning.setStatus('mandatory') sensor_humidity_high_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 3, 1, 11), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorHumidityHighWarning.setStatus('mandatory') sensor_humidity_high_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 3, 1, 12), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorHumidityHighCritical.setStatus('mandatory') sensor_humidity_rearm = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 3, 1, 13), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorHumidityRearm.setStatus('mandatory') sensor_humidity_delay_error = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 3, 1, 14), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorHumidityDelayError.setStatus('mandatory') sensor_humidity_delay_normal = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 3, 1, 15), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorHumidityDelayNormal.setStatus('mandatory') sensor_humidity_delay_low_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 3, 1, 16), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorHumidityDelayLowCritical.setStatus('mandatory') sensor_humidity_delay_low_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 3, 1, 17), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorHumidityDelayLowWarning.setStatus('mandatory') sensor_humidity_delay_high_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 3, 1, 18), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorHumidityDelayHighWarning.setStatus('mandatory') sensor_humidity_delay_high_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 3, 1, 19), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorHumidityDelayHighCritical.setStatus('mandatory') sensor_humidity_raw = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 3, 1, 20), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorHumidityRaw.setStatus('mandatory') sensor_humidity_offset = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 3, 1, 21), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorHumidityOffset.setStatus('mandatory') sensor_humidity_port = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 3, 1, 35), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorHumidityPort.setStatus('mandatory') sensor_humidity_sub_port = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 3, 1, 36), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorHumiditySubPort.setStatus('mandatory') sensor_humidity_device_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 3, 1, 37), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorHumidityDeviceIndex.setStatus('mandatory') sensor_humidity_display_style = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 3, 1, 45), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('basic', 0), ('gauge', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorHumidityDisplayStyle.setStatus('mandatory') sensor_humidity_high_critical_desc = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 3, 1, 46), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorHumidityHighCriticalDesc.setStatus('mandatory') sensor_humidity_low_critical_desc = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 3, 1, 47), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorHumidityLowCriticalDesc.setStatus('mandatory') sensor_humidity_normal_desc = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 3, 1, 48), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorHumidityNormalDesc.setStatus('mandatory') sensor_humidity_low_warning_desc = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 3, 1, 49), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorHumidityLowWarningDesc.setStatus('mandatory') sensor_humidity_high_warning_desc = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 3, 1, 50), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorHumidityHighWarningDesc.setStatus('mandatory') sensor_humidity_sensor_error_desc = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 3, 1, 51), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorHumiditySensorErrorDesc.setStatus('mandatory') sensor_humidity_high_critical_color = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 3, 1, 54), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorHumidityHighCriticalColor.setStatus('mandatory') sensor_humidity_low_critical_color = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 3, 1, 55), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorHumidityLowCriticalColor.setStatus('mandatory') sensor_humidity_normal_color = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 3, 1, 56), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorHumidityNormalColor.setStatus('mandatory') sensor_humidity_low_warning_color = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 3, 1, 57), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorHumidityLowWarningColor.setStatus('mandatory') sensor_humidity_high_warning_color = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 3, 1, 58), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorHumidityHighWarningColor.setStatus('mandatory') sensor_humidity_sensor_error_color = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 3, 1, 59), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorHumiditySensorErrorColor.setStatus('mandatory') sensor_dry_contact_table = mib_table((1, 3, 6, 1, 4, 1, 3854, 2, 3, 4)) if mibBuilder.loadTexts: sensorDryContactTable.setStatus('mandatory') sensor_dry_contact_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3854, 2, 3, 4, 1)).setIndexNames((0, 'SPAGENT-MIB', 'sensorDryContactIndex')) if mibBuilder.loadTexts: sensorDryContactEntry.setStatus('mandatory') sensor_dry_contact_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 4, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorDryContactIndex.setStatus('mandatory') sensor_dry_contact_description = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 4, 1, 2), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorDryContactDescription.setStatus('mandatory') sensor_dry_contact_type = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 4, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(7, 8, 22))).clone(namedValues=named_values(('drycontact-inout', 7), ('drycontact-input', 8), ('drycontact-array', 22)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorDryContactType.setStatus('mandatory') sensor_dry_contact_status = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 4, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 4, 6, 7, 8, 9))).clone(namedValues=named_values(('noStatus', 1), ('normal', 2), ('highCritical', 4), ('lowCritical', 6), ('sensorError', 7), ('outputLow', 8), ('outputHigh', 9)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorDryContactStatus.setStatus('mandatory') sensor_dry_contact_go_offline = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 4, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('online', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorDryContactGoOffline.setStatus('mandatory') sensor_dry_contact_direction = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 4, 1, 22), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('input', 0), ('output', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorDryContactDirection.setStatus('mandatory') sensor_dry_contact_normal_state = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 4, 1, 23), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('closed', 0), ('open', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorDryContactNormalState.setStatus('mandatory') sensor_dry_contact_control_mode = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 4, 1, 24), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('manual-control', 0), ('sensor-control', 1), ('time-control', 2), ('thermostat-control', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorDryContactControlMode.setStatus('mandatory') sensor_dry_contact_output_manual_cycle_time = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 4, 1, 25), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorDryContactOutputManualCycleTime.setStatus('mandatory') sensor_dry_contact_output_manual_action = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 4, 1, 26), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('low', 0), ('high', 1), ('cycle-Low-High-Low', 2), ('cycle-High-Low-High', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorDryContactOutputManualAction.setStatus('mandatory') sensor_dry_contact_port = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 4, 1, 35), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorDryContactPort.setStatus('mandatory') sensor_dry_contact_sub_port = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 4, 1, 36), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorDryContactSubPort.setStatus('mandatory') sensor_dry_contact_device_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 4, 1, 37), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorDryContactDeviceIndex.setStatus('mandatory') sensor_dry_contact_critical_desc = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 4, 1, 46), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorDryContactCriticalDesc.setStatus('mandatory') sensor_dry_contact_normal_desc = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 4, 1, 48), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorDryContactNormalDesc.setStatus('mandatory') sensor_dry_contact_on_desc = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 4, 1, 52), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorDryContactOnDesc.setStatus('mandatory') sensor_dry_contact_off_desc = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 4, 1, 53), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorDryContactOffDesc.setStatus('mandatory') sensor_dry_contact_critical_color = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 4, 1, 54), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorDryContactCriticalColor.setStatus('mandatory') sensor_dry_contact_normal_color = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 4, 1, 56), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorDryContactNormalColor.setStatus('mandatory') sensor_dry_contact_on_color = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 4, 1, 60), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorDryContactOnColor.setStatus('mandatory') sensor_dry_contact_off_color = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 4, 1, 61), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorDryContactOffColor.setStatus('mandatory') sensor4to20m_a_table = mib_table((1, 3, 6, 1, 4, 1, 3854, 2, 3, 5)) if mibBuilder.loadTexts: sensor4to20mATable.setStatus('mandatory') sensor4to20m_a_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3854, 2, 3, 5, 1)).setIndexNames((0, 'SPAGENT-MIB', 'sensor4to20mAIndex')) if mibBuilder.loadTexts: sensor4to20mAEntry.setStatus('mandatory') sensor4to20m_a_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 5, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensor4to20mAIndex.setStatus('mandatory') sensor4to20m_a_description = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 5, 1, 2), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensor4to20mADescription.setStatus('mandatory') sensor4to20m_a_value = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 5, 1, 4), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensor4to20mAValue.setStatus('mandatory') sensor4to20m_a_unit = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 5, 1, 5), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensor4to20mAUnit.setStatus('mandatory') sensor4to20m_a_status = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 5, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('noStatus', 1), ('normal', 2), ('highWarning', 3), ('highCritical', 4), ('lowWarning', 5), ('lowCritical', 6), ('sensorError', 7)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensor4to20mAStatus.setStatus('mandatory') sensor4to20m_a_go_offline = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 5, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('online', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensor4to20mAGoOffline.setStatus('mandatory') sensor4to20m_a_low_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 5, 1, 9), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensor4to20mALowCritical.setStatus('mandatory') sensor4to20m_a_low_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 5, 1, 10), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensor4to20mALowWarning.setStatus('mandatory') sensor4to20m_a_high_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 5, 1, 11), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensor4to20mAHighWarning.setStatus('mandatory') sensor4to20m_a_high_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 5, 1, 12), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensor4to20mAHighCritical.setStatus('mandatory') sensor4to20m_a_rearm = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 5, 1, 13), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensor4to20mARearm.setStatus('mandatory') sensor4to20m_a_delay_error = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 5, 1, 14), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensor4to20mADelayError.setStatus('mandatory') sensor4to20m_a_delay_normal = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 5, 1, 15), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensor4to20mADelayNormal.setStatus('mandatory') sensor4to20m_a_delay_low_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 5, 1, 16), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensor4to20mADelayLowCritical.setStatus('mandatory') sensor4to20m_a_delay_low_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 5, 1, 17), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensor4to20mADelayLowWarning.setStatus('mandatory') sensor4to20m_a_delay_high_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 5, 1, 18), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensor4to20mADelayHighWarning.setStatus('mandatory') sensor4to20m_a_delay_high_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 5, 1, 19), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensor4to20mADelayHighCritical.setStatus('mandatory') sensor4to20m_a_raw = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 5, 1, 20), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensor4to20mARaw.setStatus('mandatory') sensor4to20m_a_offset = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 5, 1, 21), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensor4to20mAOffset.setStatus('mandatory') sensor4to20m_a_amount_max_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 5, 1, 33), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensor4to20mAAmountMaxVoltage.setStatus('mandatory') sensor4to20m_a_amount_base_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 5, 1, 34), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensor4to20mAAmountBaseVoltage.setStatus('mandatory') sensor4to20m_a_port = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 5, 1, 35), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensor4to20mAPort.setStatus('mandatory') sensor4to20m_a_sub_port = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 5, 1, 36), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensor4to20mASubPort.setStatus('mandatory') sensor4to20m_a_device_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 5, 1, 37), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensor4to20mADeviceIndex.setStatus('mandatory') sensor4to20m_a_max_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 5, 1, 43), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensor4to20mAMaxVoltage.setStatus('mandatory') sensor4to20m_a_base_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 5, 1, 44), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensor4to20mABaseVoltage.setStatus('mandatory') sensor4to20m_a_display_style = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 5, 1, 45), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('basic', 0), ('gauge', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensor4to20mADisplayStyle.setStatus('mandatory') sensor4to20m_a_high_critical_desc = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 5, 1, 46), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensor4to20mAHighCriticalDesc.setStatus('mandatory') sensor4to20m_a_low_critical_desc = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 5, 1, 47), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensor4to20mALowCriticalDesc.setStatus('mandatory') sensor4to20m_a_normal_desc = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 5, 1, 48), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensor4to20mANormalDesc.setStatus('mandatory') sensor4to20m_a_low_warning_desc = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 5, 1, 49), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensor4to20mALowWarningDesc.setStatus('mandatory') sensor4to20m_a_high_warning_desc = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 5, 1, 50), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensor4to20mAHighWarningDesc.setStatus('mandatory') sensor4to20m_a_sensor_error_desc = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 5, 1, 51), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensor4to20mASensorErrorDesc.setStatus('mandatory') sensor4to20m_a_high_critical_color = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 5, 1, 54), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensor4to20mAHighCriticalColor.setStatus('mandatory') sensor4to20m_a_low_critical_color = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 5, 1, 55), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensor4to20mALowCriticalColor.setStatus('mandatory') sensor4to20m_a_normal_color = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 5, 1, 56), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensor4to20mANormalColor.setStatus('mandatory') sensor4to20m_a_low_warning_color = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 5, 1, 57), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensor4to20mALowWarningColor.setStatus('mandatory') sensor4to20m_a_high_warning_color = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 5, 1, 58), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensor4to20mAHighWarningColor.setStatus('mandatory') sensor4to20m_a_sensor_error_color = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 5, 1, 59), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensor4to20mASensorErrorColor.setStatus('mandatory') sensor_d_cvoltage_table = mib_table((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6)) if mibBuilder.loadTexts: sensorDCvoltageTable.setStatus('mandatory') sensor_d_cvoltage_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6, 1)).setIndexNames((0, 'SPAGENT-MIB', 'sensorDCvoltageIndex')) if mibBuilder.loadTexts: sensorDCvoltageEntry.setStatus('mandatory') sensor_d_cvoltage_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorDCvoltageIndex.setStatus('mandatory') sensor_d_cvoltage_description = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6, 1, 2), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorDCvoltageDescription.setStatus('mandatory') sensor_d_cvoltage_value = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6, 1, 4), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorDCvoltageValue.setStatus('mandatory') sensor_d_cvoltage_unit = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6, 1, 5), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorDCvoltageUnit.setStatus('mandatory') sensor_d_cvoltage_status = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('noStatus', 1), ('normal', 2), ('highWarning', 3), ('highCritical', 4), ('lowWarning', 5), ('lowCritical', 6), ('sensorError', 7)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorDCvoltageStatus.setStatus('mandatory') sensor_d_cvoltage_go_offline = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('online', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorDCvoltageGoOffline.setStatus('mandatory') sensor_d_cvoltage_low_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6, 1, 9), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorDCvoltageLowCritical.setStatus('mandatory') sensor_d_cvoltage_low_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6, 1, 10), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorDCvoltageLowWarning.setStatus('mandatory') sensor_d_cvoltage_high_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6, 1, 11), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorDCvoltageHighWarning.setStatus('mandatory') sensor_d_cvoltage_high_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6, 1, 12), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorDCvoltageHighCritical.setStatus('mandatory') sensor_d_cvoltage_rearm = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6, 1, 13), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorDCvoltageRearm.setStatus('mandatory') sensor_d_cvoltage_delay_error = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6, 1, 14), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorDCvoltageDelayError.setStatus('mandatory') sensor_d_cvoltage_delay_normal = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6, 1, 15), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorDCvoltageDelayNormal.setStatus('mandatory') sensor_d_cvoltage_delay_low_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6, 1, 16), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorDCvoltageDelayLowCritical.setStatus('mandatory') sensor_d_cvoltage_delay_low_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6, 1, 17), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorDCvoltageDelayLowWarning.setStatus('mandatory') sensor_d_cvoltage_delay_high_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6, 1, 18), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorDCvoltageDelayHighWarning.setStatus('mandatory') sensor_d_cvoltage_delay_high_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6, 1, 19), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorDCvoltageDelayHighCritical.setStatus('mandatory') sensor_d_cvoltage_raw = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6, 1, 20), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorDCvoltageRaw.setStatus('mandatory') sensor_d_cvoltage_offset = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6, 1, 21), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorDCvoltageOffset.setStatus('mandatory') sensor_d_cvoltage_jumper = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6, 1, 32), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(-600, -400, -300, -200, -100, 100, 200, 300, 400, 600))).clone(namedValues=named_values(('jumperAt-60', -600), ('jumperAt-40', -400), ('jumperAt-30', -300), ('jumperAt-20', -200), ('jumperAt-10', -100), ('jumperAt10', 100), ('jumperAt20', 200), ('jumperAt30', 300), ('jumperAt40', 400), ('jumperAt60', 600)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorDCvoltageJumper.setStatus('mandatory') sensor_d_cvoltage_amount_max_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6, 1, 33), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorDCvoltageAmountMaxVoltage.setStatus('mandatory') sensor_d_cvoltage_amount_base_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6, 1, 34), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorDCvoltageAmountBaseVoltage.setStatus('mandatory') sensor_d_cvoltage_port = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6, 1, 35), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorDCvoltagePort.setStatus('mandatory') sensor_d_cvoltage_sub_port = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6, 1, 36), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorDCvoltageSubPort.setStatus('mandatory') sensor_d_cvoltage_device_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6, 1, 37), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorDCvoltageDeviceIndex.setStatus('mandatory') sensor_d_cvoltage_max_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6, 1, 43), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorDCvoltageMaxVoltage.setStatus('mandatory') sensor_d_cvoltage_base_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6, 1, 44), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorDCvoltageBaseVoltage.setStatus('mandatory') sensor_d_cvoltage_display_style = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6, 1, 45), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('basic', 0), ('gauge', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorDCvoltageDisplayStyle.setStatus('mandatory') sensor_d_cvoltage_high_critical_desc = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6, 1, 46), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorDCvoltageHighCriticalDesc.setStatus('mandatory') sensor_d_cvoltage_low_critical_desc = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6, 1, 47), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorDCvoltageLowCriticalDesc.setStatus('mandatory') sensor_d_cvoltage_normal_desc = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6, 1, 48), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorDCvoltageNormalDesc.setStatus('mandatory') sensor_d_cvoltage_low_warning_desc = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6, 1, 49), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorDCvoltageLowWarningDesc.setStatus('mandatory') sensor_d_cvoltage_high_warning_desc = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6, 1, 50), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorDCvoltageHighWarningDesc.setStatus('mandatory') sensor_d_cvoltage_sensor_error_desc = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6, 1, 51), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorDCvoltageSensorErrorDesc.setStatus('mandatory') sensor_d_cvoltage_high_critical_color = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6, 1, 54), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorDCvoltageHighCriticalColor.setStatus('mandatory') sensor_d_cvoltage_low_critical_color = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6, 1, 55), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorDCvoltageLowCriticalColor.setStatus('mandatory') sensor_d_cvoltage_normal_color = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6, 1, 56), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorDCvoltageNormalColor.setStatus('mandatory') sensor_d_cvoltage_low_warning_color = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6, 1, 57), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorDCvoltageLowWarningColor.setStatus('mandatory') sensor_d_cvoltage_high_warning_color = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6, 1, 58), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorDCvoltageHighWarningColor.setStatus('mandatory') sensor_d_cvoltage_sensor_error_color = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 6, 1, 59), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorDCvoltageSensorErrorColor.setStatus('mandatory') sensor_airflow_table = mib_table((1, 3, 6, 1, 4, 1, 3854, 2, 3, 7)) if mibBuilder.loadTexts: sensorAirflowTable.setStatus('mandatory') sensor_airflow_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3854, 2, 3, 7, 1)).setIndexNames((0, 'SPAGENT-MIB', 'sensorAirflowIndex')) if mibBuilder.loadTexts: sensorAirflowEntry.setStatus('mandatory') sensor_airflow_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 7, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorAirflowIndex.setStatus('mandatory') sensor_airflow_description = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 7, 1, 2), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorAirflowDescription.setStatus('mandatory') sensor_airflow_value = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 7, 1, 4), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorAirflowValue.setStatus('mandatory') sensor_airflow_status = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 7, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 4, 6, 7, 8, 9))).clone(namedValues=named_values(('noStatus', 1), ('normal', 2), ('highCritical', 4), ('lowCritical', 6), ('sensorError', 7), ('relayOn', 8), ('relayOff', 9)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorAirflowStatus.setStatus('mandatory') sensor_airflow_go_offline = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 7, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('online', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorAirflowGoOffline.setStatus('mandatory') sensor_airflow_low_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 7, 1, 9), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorAirflowLowCritical.setStatus('mandatory') sensor_airflow_low_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 7, 1, 10), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorAirflowLowWarning.setStatus('mandatory') sensor_airflow_high_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 7, 1, 11), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorAirflowHighWarning.setStatus('mandatory') sensor_airflow_high_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 7, 1, 12), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorAirflowHighCritical.setStatus('mandatory') sensor_airflow_rearm = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 7, 1, 13), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorAirflowRearm.setStatus('mandatory') sensor_airflow_delay_error = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 7, 1, 14), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorAirflowDelayError.setStatus('mandatory') sensor_airflow_delay_normal = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 7, 1, 15), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorAirflowDelayNormal.setStatus('mandatory') sensor_airflow_delay_low_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 7, 1, 16), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorAirflowDelayLowCritical.setStatus('mandatory') sensor_airflow_delay_low_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 7, 1, 17), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorAirflowDelayLowWarning.setStatus('mandatory') sensor_airflow_delay_high_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 7, 1, 18), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorAirflowDelayHighWarning.setStatus('mandatory') sensor_airflow_delay_high_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 7, 1, 19), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorAirflowDelayHighCritical.setStatus('mandatory') sensor_airflow_raw = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 7, 1, 20), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorAirflowRaw.setStatus('mandatory') sensor_airflow_port = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 7, 1, 35), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorAirflowPort.setStatus('mandatory') sensor_airflow_sub_port = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 7, 1, 36), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorAirflowSubPort.setStatus('mandatory') sensor_airflow_device_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 7, 1, 37), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorAirflowDeviceIndex.setStatus('mandatory') sensor_airflow_display_style = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 7, 1, 45), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('basic', 0), ('gauge', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorAirflowDisplayStyle.setStatus('mandatory') sensor_airflow_high_critical_desc = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 7, 1, 46), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorAirflowHighCriticalDesc.setStatus('mandatory') sensor_airflow_low_critical_desc = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 7, 1, 47), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorAirflowLowCriticalDesc.setStatus('mandatory') sensor_airflow_normal_desc = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 7, 1, 48), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorAirflowNormalDesc.setStatus('mandatory') sensor_airflow_low_warning_desc = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 7, 1, 49), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorAirflowLowWarningDesc.setStatus('mandatory') sensor_airflow_high_warning_desc = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 7, 1, 50), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorAirflowHighWarningDesc.setStatus('mandatory') sensor_airflow_sensor_error_desc = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 7, 1, 51), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorAirflowSensorErrorDesc.setStatus('mandatory') sensor_airflow_high_critical_color = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 7, 1, 54), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorAirflowHighCriticalColor.setStatus('mandatory') sensor_airflow_low_critical_color = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 7, 1, 55), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorAirflowLowCriticalColor.setStatus('mandatory') sensor_airflow_normal_color = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 7, 1, 56), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorAirflowNormalColor.setStatus('mandatory') sensor_airflow_low_warning_color = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 7, 1, 57), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorAirflowLowWarningColor.setStatus('mandatory') sensor_airflow_high_warning_color = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 7, 1, 58), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorAirflowHighWarningColor.setStatus('mandatory') sensor_airflow_sensor_error_color = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 7, 1, 59), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorAirflowSensorErrorColor.setStatus('mandatory') sensor_motion_table = mib_table((1, 3, 6, 1, 4, 1, 3854, 2, 3, 8)) if mibBuilder.loadTexts: sensorMotionTable.setStatus('mandatory') sensor_motion_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3854, 2, 3, 8, 1)).setIndexNames((0, 'SPAGENT-MIB', 'sensorMotionIndex')) if mibBuilder.loadTexts: sensorMotionEntry.setStatus('mandatory') sensor_motion_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 8, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorMotionIndex.setStatus('mandatory') sensor_motion_description = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 8, 1, 2), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorMotionDescription.setStatus('mandatory') sensor_motion_status = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 8, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 4, 6, 7, 8, 9))).clone(namedValues=named_values(('noStatus', 1), ('normal', 2), ('highCritical', 4), ('lowCritical', 6), ('sensorError', 7), ('relayOn', 8), ('relayOff', 9)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorMotionStatus.setStatus('mandatory') sensor_motion_go_offline = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 8, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('online', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorMotionGoOffline.setStatus('mandatory') sensor_motion_port = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 8, 1, 35), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorMotionPort.setStatus('mandatory') sensor_motion_sub_port = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 8, 1, 36), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorMotionSubPort.setStatus('mandatory') sensor_motion_device_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 8, 1, 37), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorMotionDeviceIndex.setStatus('mandatory') sensor_motion_critical_desc = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 8, 1, 46), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorMotionCriticalDesc.setStatus('mandatory') sensor_motion_normal_desc = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 8, 1, 48), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorMotionNormalDesc.setStatus('mandatory') sensor_motion_critical_color = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 8, 1, 54), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorMotionCriticalColor.setStatus('mandatory') sensor_motion_normal_color = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 8, 1, 56), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorMotionNormalColor.setStatus('mandatory') sensor_water_table = mib_table((1, 3, 6, 1, 4, 1, 3854, 2, 3, 9)) if mibBuilder.loadTexts: sensorWaterTable.setStatus('mandatory') sensor_water_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3854, 2, 3, 9, 1)).setIndexNames((0, 'SPAGENT-MIB', 'sensorWaterIndex')) if mibBuilder.loadTexts: sensorWaterEntry.setStatus('mandatory') sensor_water_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 9, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorWaterIndex.setStatus('mandatory') sensor_water_description = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 9, 1, 2), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorWaterDescription.setStatus('mandatory') sensor_water_status = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 9, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 4, 6, 7, 8, 9))).clone(namedValues=named_values(('noStatus', 1), ('normal', 2), ('highCritical', 4), ('lowCritical', 6), ('sensorError', 7), ('relayOn', 8), ('relayOff', 9)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorWaterStatus.setStatus('mandatory') sensor_water_go_offline = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 9, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('online', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorWaterGoOffline.setStatus('mandatory') sensor_water_port = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 9, 1, 35), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorWaterPort.setStatus('mandatory') sensor_water_sub_port = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 9, 1, 36), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorWaterSubPort.setStatus('mandatory') sensor_water_device_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 9, 1, 37), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorWaterDeviceIndex.setStatus('mandatory') sensor_water_critical_desc = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 9, 1, 46), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorWaterCriticalDesc.setStatus('mandatory') sensor_water_normal_desc = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 9, 1, 48), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorWaterNormalDesc.setStatus('mandatory') sensor_water_critical_color = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 9, 1, 54), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorWaterCriticalColor.setStatus('mandatory') sensor_water_normal_color = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 9, 1, 56), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorWaterNormalColor.setStatus('mandatory') sensor_security_table = mib_table((1, 3, 6, 1, 4, 1, 3854, 2, 3, 10)) if mibBuilder.loadTexts: sensorSecurityTable.setStatus('mandatory') sensor_security_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3854, 2, 3, 10, 1)).setIndexNames((0, 'SPAGENT-MIB', 'sensorSecurityIndex')) if mibBuilder.loadTexts: sensorSecurityEntry.setStatus('mandatory') sensor_security_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 10, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorSecurityIndex.setStatus('mandatory') sensor_security_description = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 10, 1, 2), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorSecurityDescription.setStatus('mandatory') sensor_security_status = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 10, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 4, 6, 7, 8, 9))).clone(namedValues=named_values(('noStatus', 1), ('normal', 2), ('highCritical', 4), ('lowCritical', 6), ('sensorError', 7), ('relayOn', 8), ('relayOff', 9)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorSecurityStatus.setStatus('mandatory') sensor_security_go_offline = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 10, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('online', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorSecurityGoOffline.setStatus('mandatory') sensor_security_port = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 10, 1, 35), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorSecurityPort.setStatus('mandatory') sensor_security_sub_port = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 10, 1, 36), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorSecuritySubPort.setStatus('mandatory') sensor_security_device_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 10, 1, 37), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorSecurityDeviceIndex.setStatus('mandatory') sensor_security_critical_desc = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 10, 1, 46), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorSecurityCriticalDesc.setStatus('mandatory') sensor_security_normal_desc = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 10, 1, 48), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorSecurityNormalDesc.setStatus('mandatory') sensor_security_critical_color = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 10, 1, 54), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorSecurityCriticalColor.setStatus('mandatory') sensor_security_normal_color = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 10, 1, 56), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorSecurityNormalColor.setStatus('mandatory') sensor_siren_table = mib_table((1, 3, 6, 1, 4, 1, 3854, 2, 3, 11)) if mibBuilder.loadTexts: sensorSirenTable.setStatus('mandatory') sensor_siren_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3854, 2, 3, 11, 1)).setIndexNames((0, 'SPAGENT-MIB', 'sensorSirenIndex')) if mibBuilder.loadTexts: sensorSirenEntry.setStatus('mandatory') sensor_siren_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 11, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorSirenIndex.setStatus('mandatory') sensor_siren_description = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 11, 1, 2), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorSirenDescription.setStatus('mandatory') sensor_siren_status = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 11, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 4, 6, 7, 8, 9))).clone(namedValues=named_values(('noStatus', 1), ('normal', 2), ('highCritical', 4), ('lowCritical', 6), ('sensorError', 7), ('relayOn', 8), ('relayOff', 9)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorSirenStatus.setStatus('mandatory') sensor_siren_go_offline = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 11, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('online', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorSirenGoOffline.setStatus('mandatory') sensor_siren_control_mode = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 11, 1, 24), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('manual-control', 0), ('sensor-control', 1), ('time-control', 2), ('thermostat-control', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorSirenControlMode.setStatus('mandatory') sensor_siren_manual_cycle_time = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 11, 1, 25), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorSirenManualCycleTime.setStatus('mandatory') sensor_siren_manual_action = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 11, 1, 26), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('turn-On', 0), ('turn-Off', 1), ('cycle-On-Off-On', 2), ('cycle-Off-On-Off', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorSirenManualAction.setStatus('mandatory') sensor_siren_port = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 11, 1, 35), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorSirenPort.setStatus('mandatory') sensor_siren_sub_port = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 11, 1, 36), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorSirenSubPort.setStatus('mandatory') sensor_siren_device_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 11, 1, 37), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorSirenDeviceIndex.setStatus('mandatory') sensor_siren_on_desc = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 11, 1, 52), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorSirenOnDesc.setStatus('mandatory') sensor_siren_off_desc = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 11, 1, 53), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorSirenOffDesc.setStatus('mandatory') sensor_siren_on_color = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 11, 1, 60), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorSirenOnColor.setStatus('mandatory') sensor_siren_off_color = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 11, 1, 61), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorSirenOffColor.setStatus('mandatory') sensor_relay_table = mib_table((1, 3, 6, 1, 4, 1, 3854, 2, 3, 12)) if mibBuilder.loadTexts: sensorRelayTable.setStatus('mandatory') sensor_relay_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3854, 2, 3, 12, 1)).setIndexNames((0, 'SPAGENT-MIB', 'sensorRelayIndex')) if mibBuilder.loadTexts: sensorRelayEntry.setStatus('mandatory') sensor_relay_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 12, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorRelayIndex.setStatus('mandatory') sensor_relay_description = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 12, 1, 2), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorRelayDescription.setStatus('mandatory') sensor_relay_type = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 12, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(13, 19))).clone(namedValues=named_values(('relay', 13), ('xrelay', 19)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorRelayType.setStatus('mandatory') sensor_relay_status = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 12, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 4, 6, 7, 8, 9))).clone(namedValues=named_values(('noStatus', 1), ('normal', 2), ('highCritical', 4), ('lowCritical', 6), ('sensorError', 7), ('relayOn', 8), ('relayOff', 9)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorRelayStatus.setStatus('mandatory') sensor_relay_go_offline = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 12, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('online', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorRelayGoOffline.setStatus('mandatory') sensor_relay_control_mode = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 12, 1, 24), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('manual-control', 0), ('sensor-control', 1), ('time-control', 2), ('thermostat-control', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorRelayControlMode.setStatus('mandatory') sensor_relay_manual_cycle_time = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 12, 1, 25), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorRelayManualCycleTime.setStatus('mandatory') sensor_relay_manual_action = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 12, 1, 26), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('turn-On', 0), ('turn-Off', 1), ('cycle-On-Off-On', 2), ('cycle-Off-On-Off', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorRelayManualAction.setStatus('mandatory') sensor_relay_port = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 12, 1, 35), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorRelayPort.setStatus('mandatory') sensor_relay_sub_port = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 12, 1, 36), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorRelaySubPort.setStatus('mandatory') sensor_relay_device_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 12, 1, 37), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorRelayDeviceIndex.setStatus('mandatory') sensor_relay_on_desc = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 12, 1, 52), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorRelayOnDesc.setStatus('mandatory') sensor_relay_off_desc = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 12, 1, 53), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorRelayOffDesc.setStatus('mandatory') sensor_relay_on_color = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 12, 1, 60), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorRelayOnColor.setStatus('mandatory') sensor_relay_off_color = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 12, 1, 61), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorRelayOffColor.setStatus('mandatory') sensor_a_cvoltage_table = mib_table((1, 3, 6, 1, 4, 1, 3854, 2, 3, 13)) if mibBuilder.loadTexts: sensorACvoltageTable.setStatus('mandatory') sensor_a_cvoltage_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3854, 2, 3, 13, 1)).setIndexNames((0, 'SPAGENT-MIB', 'sensorACvoltageIndex')) if mibBuilder.loadTexts: sensorACvoltageEntry.setStatus('mandatory') sensor_a_cvoltage_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 13, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorACvoltageIndex.setStatus('mandatory') sensor_a_cvoltage_description = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 13, 1, 2), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorACvoltageDescription.setStatus('mandatory') sensor_a_cvoltage_status = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 13, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 4, 6, 7, 8, 9))).clone(namedValues=named_values(('noStatus', 1), ('normal', 2), ('highCritical', 4), ('lowCritical', 6), ('sensorError', 7), ('relayOn', 8), ('relayOff', 9)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorACvoltageStatus.setStatus('mandatory') sensor_a_cvoltage_go_offline = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 13, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('online', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorACvoltageGoOffline.setStatus('mandatory') sensor_a_cvoltage_port = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 13, 1, 35), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorACvoltagePort.setStatus('mandatory') sensor_a_cvoltage_sub_port = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 13, 1, 36), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorACvoltageSubPort.setStatus('mandatory') sensor_a_cvoltage_device_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 13, 1, 37), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorACvoltageDeviceIndex.setStatus('mandatory') sensor_a_cvoltage_critical_desc = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 13, 1, 46), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorACvoltageCriticalDesc.setStatus('mandatory') sensor_a_cvoltage_normal_desc = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 13, 1, 48), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorACvoltageNormalDesc.setStatus('mandatory') sensor_a_cvoltage_critical_color = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 13, 1, 54), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorACvoltageCriticalColor.setStatus('mandatory') sensor_a_cvoltage_normal_color = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 13, 1, 56), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorACvoltageNormalColor.setStatus('mandatory') sensor_smoke_table = mib_table((1, 3, 6, 1, 4, 1, 3854, 2, 3, 14)) if mibBuilder.loadTexts: sensorSmokeTable.setStatus('mandatory') sensor_smoke_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3854, 2, 3, 14, 1)).setIndexNames((0, 'SPAGENT-MIB', 'sensorSmokeIndex')) if mibBuilder.loadTexts: sensorSmokeEntry.setStatus('mandatory') sensor_smoke_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 14, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorSmokeIndex.setStatus('mandatory') sensor_smoke_description = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 14, 1, 2), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorSmokeDescription.setStatus('mandatory') sensor_smoke_status = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 14, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 4, 6, 7, 8, 9))).clone(namedValues=named_values(('noStatus', 1), ('normal', 2), ('highCritical', 4), ('lowCritical', 6), ('sensorError', 7), ('relayOn', 8), ('relayOff', 9)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorSmokeStatus.setStatus('mandatory') sensor_smoke_go_offline = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 14, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('online', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorSmokeGoOffline.setStatus('mandatory') sensor_smoke_port = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 14, 1, 35), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorSmokePort.setStatus('mandatory') sensor_smoke_sub_port = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 14, 1, 36), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorSmokeSubPort.setStatus('mandatory') sensor_smoke_device_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 14, 1, 37), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorSmokeDeviceIndex.setStatus('mandatory') sensor_smoke_critical_desc = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 14, 1, 46), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorSmokeCriticalDesc.setStatus('mandatory') sensor_smoke_normal_desc = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 14, 1, 48), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorSmokeNormalDesc.setStatus('mandatory') sensor_smoke_critical_color = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 14, 1, 54), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorSmokeCriticalColor.setStatus('mandatory') sensor_smoke_normal_color = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 14, 1, 56), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorSmokeNormalColor.setStatus('mandatory') sensor_thermostat_table = mib_table((1, 3, 6, 1, 4, 1, 3854, 2, 3, 20)) if mibBuilder.loadTexts: sensorThermostatTable.setStatus('mandatory') sensor_thermostat_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3854, 2, 3, 20, 1)).setIndexNames((0, 'SPAGENT-MIB', 'sensorThermostatIndex')) if mibBuilder.loadTexts: sensorThermostatEntry.setStatus('mandatory') sensor_thermostat_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 20, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorThermostatIndex.setStatus('mandatory') sensor_thermostat_description = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 20, 1, 2), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorThermostatDescription.setStatus('mandatory') sensor_thermostat_degree = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 20, 1, 4), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorThermostatDegree.setStatus('mandatory') sensor_thermostat_status = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 20, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('noStatus', 1), ('normal', 2), ('highWarning', 3), ('highCritical', 4), ('lowWarning', 5), ('lowCritical', 6), ('sensorError', 7)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorThermostatStatus.setStatus('mandatory') sensor_thermostat_go_offline = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 20, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('online', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorThermostatGoOffline.setStatus('mandatory') sensor_thermostat_low_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 20, 1, 9), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorThermostatLowCritical.setStatus('mandatory') sensor_thermostat_low_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 20, 1, 10), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorThermostatLowWarning.setStatus('mandatory') sensor_thermostat_high_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 20, 1, 11), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorThermostatHighWarning.setStatus('mandatory') sensor_thermostat_high_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 20, 1, 12), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorThermostatHighCritical.setStatus('mandatory') sensor_thermostat_rearm = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 20, 1, 13), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorThermostatRearm.setStatus('mandatory') sensor_thermostat_delay_error = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 20, 1, 14), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorThermostatDelayError.setStatus('mandatory') sensor_thermostat_delay_normal = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 20, 1, 15), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorThermostatDelayNormal.setStatus('mandatory') sensor_thermostat_delay_low_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 20, 1, 16), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorThermostatDelayLowCritical.setStatus('mandatory') sensor_thermostat_delay_low_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 20, 1, 17), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorThermostatDelayLowWarning.setStatus('mandatory') sensor_thermostat_delay_high_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 20, 1, 18), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorThermostatDelayHighWarning.setStatus('mandatory') sensor_thermostat_delay_high_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 20, 1, 19), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorThermostatDelayHighCritical.setStatus('mandatory') sensor_thermostat_port = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 20, 1, 35), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorThermostatPort.setStatus('mandatory') sensor_thermostat_sub_port = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 20, 1, 36), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorThermostatSubPort.setStatus('mandatory') sensor_thermostat_device_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 20, 1, 37), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorThermostatDeviceIndex.setStatus('mandatory') sensor_thermostat_display_style = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 20, 1, 45), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('basic', 0), ('gauge', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorThermostatDisplayStyle.setStatus('mandatory') sensor_thermostat_high_critical_desc = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 20, 1, 46), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorThermostatHighCriticalDesc.setStatus('mandatory') sensor_thermostat_low_critical_desc = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 20, 1, 47), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorThermostatLowCriticalDesc.setStatus('mandatory') sensor_thermostat_normal_desc = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 20, 1, 48), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorThermostatNormalDesc.setStatus('mandatory') sensor_thermostat_low_warning_desc = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 20, 1, 49), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorThermostatLowWarningDesc.setStatus('mandatory') sensor_thermostat_high_warning_desc = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 20, 1, 50), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorThermostatHighWarningDesc.setStatus('mandatory') sensor_thermostat_sensor_error_desc = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 20, 1, 51), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorThermostatSensorErrorDesc.setStatus('mandatory') sensor_thermostat_high_critical_color = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 20, 1, 54), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorThermostatHighCriticalColor.setStatus('mandatory') sensor_thermostat_low_critical_color = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 20, 1, 55), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorThermostatLowCriticalColor.setStatus('mandatory') sensor_thermostat_normal_color = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 20, 1, 56), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorThermostatNormalColor.setStatus('mandatory') sensor_thermostat_low_warning_color = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 20, 1, 57), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorThermostatLowWarningColor.setStatus('mandatory') sensor_thermostat_high_warning_color = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 20, 1, 58), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorThermostatHighWarningColor.setStatus('mandatory') sensor_thermostat_sensor_error_color = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 20, 1, 59), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorThermostatSensorErrorColor.setStatus('mandatory') sensor_water_rope_table = mib_table((1, 3, 6, 1, 4, 1, 3854, 2, 3, 21)) if mibBuilder.loadTexts: sensorWaterRopeTable.setStatus('mandatory') sensor_water_rope_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3854, 2, 3, 21, 1)).setIndexNames((0, 'SPAGENT-MIB', 'sensorWaterRopeIndex')) if mibBuilder.loadTexts: sensorWaterRopeEntry.setStatus('mandatory') sensor_water_rope_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 21, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorWaterRopeIndex.setStatus('mandatory') sensor_water_rope_description = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 21, 1, 2), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorWaterRopeDescription.setStatus('mandatory') sensor_water_rope_leak_location = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 21, 1, 4), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorWaterRopeLeakLocation.setStatus('mandatory') sensor_water_rope_unit = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 21, 1, 5), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorWaterRopeUnit.setStatus('mandatory') sensor_water_rope_status = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 21, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 4, 7))).clone(namedValues=named_values(('noStatus', 1), ('normal', 2), ('highCritical', 4), ('sensorError', 7)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorWaterRopeStatus.setStatus('mandatory') sensor_water_rope_go_offline = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 21, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('online', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorWaterRopeGoOffline.setStatus('mandatory') sensor_water_rope_raw = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 21, 1, 20), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorWaterRopeRaw.setStatus('mandatory') sensor_water_rope_device_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 21, 1, 37), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorWaterRopeDeviceIndex.setStatus('mandatory') sensor_water_rope_critical_desc = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 21, 1, 46), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorWaterRopeCriticalDesc.setStatus('mandatory') sensor_water_rope_normal_desc = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 21, 1, 48), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorWaterRopeNormalDesc.setStatus('mandatory') sensor_water_rope_sensor_error_desc = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 21, 1, 51), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorWaterRopeSensorErrorDesc.setStatus('mandatory') sensor_water_rope_critical_color = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 21, 1, 54), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorWaterRopeCriticalColor.setStatus('mandatory') sensor_water_rope_normal_color = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 21, 1, 56), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorWaterRopeNormalColor.setStatus('mandatory') sensor_water_rope_sensor_error_color = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 21, 1, 59), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorWaterRopeSensorErrorColor.setStatus('mandatory') sensor_water_rope_length = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 21, 1, 100), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorWaterRopeLength.setStatus('mandatory') sensor_water_rope_impedance = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 21, 1, 101), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorWaterRopeImpedance.setStatus('mandatory') sensor_water_rope_type = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 21, 1, 103), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('custom', 0), ('water', 1), ('fuel', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorWaterRopeType.setStatus('mandatory') sensor_power_table = mib_table((1, 3, 6, 1, 4, 1, 3854, 2, 3, 22)) if mibBuilder.loadTexts: sensorPowerTable.setStatus('mandatory') sensor_power_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3854, 2, 3, 22, 1)).setIndexNames((0, 'SPAGENT-MIB', 'sensorPowerIndex')) if mibBuilder.loadTexts: sensorPowerEntry.setStatus('mandatory') sensor_power_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 22, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorPowerIndex.setStatus('mandatory') sensor_power_description = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 22, 1, 2), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorPowerDescription.setStatus('mandatory') sensor_power_value = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 22, 1, 4), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorPowerValue.setStatus('mandatory') sensor_power_unit = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 22, 1, 5), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorPowerUnit.setStatus('mandatory') sensor_power_status = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 22, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 4, 6, 7))).clone(namedValues=named_values(('noStatus', 1), ('normal', 2), ('highCritical', 4), ('lowCritical', 6), ('sensorError', 7)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorPowerStatus.setStatus('mandatory') sensor_power_go_offline = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 22, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('online', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorPowerGoOffline.setStatus('mandatory') sensor_power_low_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 22, 1, 9), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorPowerLowCritical.setStatus('mandatory') sensor_power_low_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 22, 1, 10), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorPowerLowWarning.setStatus('mandatory') sensor_power_high_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 22, 1, 11), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorPowerHighWarning.setStatus('mandatory') sensor_power_high_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 22, 1, 12), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorPowerHighCritical.setStatus('mandatory') sensor_power_rearm = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 22, 1, 13), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorPowerRearm.setStatus('mandatory') sensor_power_delay_error = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 22, 1, 14), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorPowerDelayError.setStatus('mandatory') sensor_power_delay_normal = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 22, 1, 15), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorPowerDelayNormal.setStatus('mandatory') sensor_power_delay_low_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 22, 1, 16), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorPowerDelayLowCritical.setStatus('mandatory') sensor_power_delay_low_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 22, 1, 17), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorPowerDelayLowWarning.setStatus('mandatory') sensor_power_delay_high_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 22, 1, 18), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorPowerDelayHighWarning.setStatus('mandatory') sensor_power_delay_high_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 22, 1, 19), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorPowerDelayHighCritical.setStatus('mandatory') sensor_power_port = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 22, 1, 35), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorPowerPort.setStatus('mandatory') sensor_power_sub_port = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 22, 1, 36), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorPowerSubPort.setStatus('mandatory') sensor_power_device_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 22, 1, 37), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorPowerDeviceIndex.setStatus('mandatory') sensor_power_time_out = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 22, 1, 38), integer32().subtype(subtypeSpec=value_range_constraint(5, 30))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorPowerTimeOut.setStatus('mandatory') sensor_power_interval = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 22, 1, 39), integer32().subtype(subtypeSpec=value_range_constraint(5, 720))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorPowerInterval.setStatus('mandatory') sensor_power_error_retry_num = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 22, 1, 40), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorPowerErrorRetryNum.setStatus('mandatory') sensor_power_max_value = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 22, 1, 41), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorPowerMaxValue.setStatus('mandatory') sensor_power_min_value = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 22, 1, 42), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorPowerMinValue.setStatus('mandatory') sensor_power_display_style = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 22, 1, 45), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('basic', 0), ('gauge', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorPowerDisplayStyle.setStatus('mandatory') sensor_power_high_critical_desc = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 22, 1, 46), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorPowerHighCriticalDesc.setStatus('mandatory') sensor_power_low_critical_desc = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 22, 1, 47), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorPowerLowCriticalDesc.setStatus('mandatory') sensor_power_normal_desc = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 22, 1, 48), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorPowerNormalDesc.setStatus('mandatory') sensor_power_low_warning_desc = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 22, 1, 49), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorPowerLowWarningDesc.setStatus('mandatory') sensor_power_high_warning_desc = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 22, 1, 50), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorPowerHighWarningDesc.setStatus('mandatory') sensor_power_sensor_error_desc = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 22, 1, 51), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorPowerSensorErrorDesc.setStatus('mandatory') sensor_power_high_critical_color = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 22, 1, 54), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorPowerHighCriticalColor.setStatus('mandatory') sensor_power_low_critical_color = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 22, 1, 55), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorPowerLowCriticalColor.setStatus('mandatory') sensor_power_normal_color = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 22, 1, 56), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorPowerNormalColor.setStatus('mandatory') sensor_power_low_warning_color = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 22, 1, 57), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorPowerLowWarningColor.setStatus('mandatory') sensor_power_high_warning_color = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 22, 1, 58), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorPowerHighWarningColor.setStatus('mandatory') sensor_power_sensor_error_color = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 22, 1, 59), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorPowerSensorErrorColor.setStatus('mandatory') sensor_fuel_table = mib_table((1, 3, 6, 1, 4, 1, 3854, 2, 3, 24)) if mibBuilder.loadTexts: sensorFuelTable.setStatus('mandatory') sensor_fuel_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3854, 2, 3, 24, 1)).setIndexNames((0, 'SPAGENT-MIB', 'sensorFuelIndex')) if mibBuilder.loadTexts: sensorFuelEntry.setStatus('mandatory') sensor_fuel_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 24, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorFuelIndex.setStatus('mandatory') sensor_fuel_description = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 24, 1, 2), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorFuelDescription.setStatus('mandatory') sensor_fuel_value = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 24, 1, 4), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorFuelValue.setStatus('mandatory') sensor_fuel_unit = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 24, 1, 5), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorFuelUnit.setStatus('mandatory') sensor_fuel_status = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 24, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('noStatus', 1), ('normal', 2), ('highWarning', 3), ('highCritical', 4), ('lowWarning', 5), ('lowCritical', 6), ('sensorError', 7)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorFuelStatus.setStatus('mandatory') sensor_fuel_go_offline = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 24, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('online', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorFuelGoOffline.setStatus('mandatory') sensor_fuel_low_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 24, 1, 9), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorFuelLowCritical.setStatus('mandatory') sensor_fuel_low_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 24, 1, 10), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorFuelLowWarning.setStatus('mandatory') sensor_fuel_high_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 24, 1, 11), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorFuelHighWarning.setStatus('mandatory') sensor_fuel_high_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 24, 1, 12), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorFuelHighCritical.setStatus('mandatory') sensor_fuel_rearm = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 24, 1, 13), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorFuelRearm.setStatus('mandatory') sensor_fuel_delay_error = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 24, 1, 14), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorFuelDelayError.setStatus('mandatory') sensor_fuel_delay_normal = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 24, 1, 15), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorFuelDelayNormal.setStatus('mandatory') sensor_fuel_delay_low_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 24, 1, 16), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorFuelDelayLowCritical.setStatus('mandatory') sensor_fuel_delay_low_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 24, 1, 17), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorFuelDelayLowWarning.setStatus('mandatory') sensor_fuel_delay_high_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 24, 1, 18), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorFuelDelayHighWarning.setStatus('mandatory') sensor_fuel_delay_high_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 24, 1, 19), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorFuelDelayHighCritical.setStatus('mandatory') sensor_fuel_raw = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 24, 1, 20), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorFuelRaw.setStatus('mandatory') sensor_fuel_amount_max_value = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 24, 1, 33), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorFuelAmountMaxValue.setStatus('mandatory') sensor_fuel_amount_base_value = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 24, 1, 34), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorFuelAmountBaseValue.setStatus('mandatory') sensor_fuel_device_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 24, 1, 37), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorFuelDeviceIndex.setStatus('mandatory') sensor_fuel_display_style = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 24, 1, 45), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('basic', 0), ('gauge', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorFuelDisplayStyle.setStatus('mandatory') sensor_fuel_high_critical_desc = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 24, 1, 46), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorFuelHighCriticalDesc.setStatus('mandatory') sensor_fuel_low_critical_desc = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 24, 1, 47), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorFuelLowCriticalDesc.setStatus('mandatory') sensor_fuel_normal_desc = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 24, 1, 48), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorFuelNormalDesc.setStatus('mandatory') sensor_fuel_low_warning_desc = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 24, 1, 49), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorFuelLowWarningDesc.setStatus('mandatory') sensor_fuel_high_warning_desc = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 24, 1, 50), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorFuelHighWarningDesc.setStatus('mandatory') sensor_fuel_sensor_error_desc = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 24, 1, 51), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorFuelSensorErrorDesc.setStatus('mandatory') sensor_fuel_high_critical_color = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 24, 1, 54), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorFuelHighCriticalColor.setStatus('mandatory') sensor_fuel_low_critical_color = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 24, 1, 55), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorFuelLowCriticalColor.setStatus('mandatory') sensor_fuel_normal_color = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 24, 1, 56), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorFuelNormalColor.setStatus('mandatory') sensor_fuel_low_warning_color = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 24, 1, 57), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorFuelLowWarningColor.setStatus('mandatory') sensor_fuel_high_warning_color = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 24, 1, 58), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorFuelHighWarningColor.setStatus('mandatory') sensor_fuel_sensor_error_color = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 24, 1, 59), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorFuelSensorErrorColor.setStatus('mandatory') sensor_tank_sender_table = mib_table((1, 3, 6, 1, 4, 1, 3854, 2, 3, 26)) if mibBuilder.loadTexts: sensorTankSenderTable.setStatus('mandatory') sensor_tank_sender_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3854, 2, 3, 26, 1)).setIndexNames((0, 'SPAGENT-MIB', 'sensorTankSenderIndex')) if mibBuilder.loadTexts: sensorTankSenderEntry.setStatus('mandatory') sensor_tank_sender_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 26, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorTankSenderIndex.setStatus('mandatory') sensor_tank_sender_description = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 26, 1, 2), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorTankSenderDescription.setStatus('mandatory') sensor_tank_sender_value = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 26, 1, 4), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorTankSenderValue.setStatus('mandatory') sensor_tank_sender_unit = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 26, 1, 5), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorTankSenderUnit.setStatus('mandatory') sensor_tank_sender_status = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 26, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('noStatus', 1), ('normal', 2), ('highWarning', 3), ('highCritical', 4), ('lowWarning', 5), ('lowCritical', 6), ('sensorError', 7)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorTankSenderStatus.setStatus('mandatory') sensor_tank_sender_go_offline = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 26, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('online', 1), ('goOffline', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorTankSenderGoOffline.setStatus('mandatory') sensor_tank_sender_low_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 26, 1, 9), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorTankSenderLowCritical.setStatus('mandatory') sensor_tank_sender_low_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 26, 1, 10), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorTankSenderLowWarning.setStatus('mandatory') sensor_tank_sender_high_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 26, 1, 11), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorTankSenderHighWarning.setStatus('mandatory') sensor_tank_sender_high_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 26, 1, 12), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorTankSenderHighCritical.setStatus('mandatory') sensor_tank_sender_rearm = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 26, 1, 13), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorTankSenderRearm.setStatus('mandatory') sensor_tank_sender_delay_error = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 26, 1, 14), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorTankSenderDelayError.setStatus('mandatory') sensor_tank_sender_delay_normal = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 26, 1, 15), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorTankSenderDelayNormal.setStatus('mandatory') sensor_tank_sender_delay_low_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 26, 1, 16), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorTankSenderDelayLowCritical.setStatus('mandatory') sensor_tank_sender_delay_low_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 26, 1, 17), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorTankSenderDelayLowWarning.setStatus('mandatory') sensor_tank_sender_delay_high_warning = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 26, 1, 18), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorTankSenderDelayHighWarning.setStatus('mandatory') sensor_tank_sender_delay_high_critical = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 26, 1, 19), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorTankSenderDelayHighCritical.setStatus('mandatory') sensor_tank_sender_raw = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 26, 1, 20), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorTankSenderRaw.setStatus('mandatory') sensor_tank_sender_device_index = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 26, 1, 37), integer32().subtype(subtypeSpec=value_range_constraint(0, 65534))).setMaxAccess('readonly') if mibBuilder.loadTexts: sensorTankSenderDeviceIndex.setStatus('mandatory') sensor_tank_sender_display_style = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 26, 1, 45), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('basic', 0), ('gauge', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorTankSenderDisplayStyle.setStatus('mandatory') sensor_tank_sender_high_critical_desc = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 26, 1, 46), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorTankSenderHighCriticalDesc.setStatus('mandatory') sensor_tank_sender_low_critical_desc = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 26, 1, 47), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorTankSenderLowCriticalDesc.setStatus('mandatory') sensor_tank_sender_normal_desc = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 26, 1, 48), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorTankSenderNormalDesc.setStatus('mandatory') sensor_tank_sender_low_warning_desc = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 26, 1, 49), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorTankSenderLowWarningDesc.setStatus('mandatory') sensor_tank_sender_high_warning_desc = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 26, 1, 50), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorTankSenderHighWarningDesc.setStatus('mandatory') sensor_tank_sender_sensor_error_desc = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 26, 1, 51), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorTankSenderSensorErrorDesc.setStatus('mandatory') sensor_tank_sender_high_critical_color = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 26, 1, 54), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorTankSenderHighCriticalColor.setStatus('mandatory') sensor_tank_sender_low_critical_color = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 26, 1, 55), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorTankSenderLowCriticalColor.setStatus('mandatory') sensor_tank_sender_normal_color = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 26, 1, 56), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorTankSenderNormalColor.setStatus('mandatory') sensor_tank_sender_low_warning_color = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 26, 1, 57), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorTankSenderLowWarningColor.setStatus('mandatory') sensor_tank_sender_high_warning_color = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 26, 1, 58), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorTankSenderHighWarningColor.setStatus('mandatory') sensor_tank_sender_sensor_error_color = mib_table_column((1, 3, 6, 1, 4, 1, 3854, 2, 3, 26, 1, 59), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sensorTankSenderSensorErrorColor.setStatus('mandatory') sensor_probe_traps = mib_identifier((1, 3, 6, 1, 4, 1, 3854, 1, 7)) sp_sensor_status = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 7, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9))).clone(namedValues=named_values(('noStatus', 1), ('normal', 2), ('highWarning', 3), ('highCritical', 4), ('lowWarning', 5), ('lowCritical', 6), ('sensorError', 7), ('turnOn', 8), ('turnOff', 9)))).setMaxAccess('readonly') if mibBuilder.loadTexts: spSensorStatus.setStatus('mandatory') sp_sensor_value = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 7, 2), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: spSensorValue.setStatus('mandatory') sp_sensor_level_exceeded = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 7, 3), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: spSensorLevelExceeded.setStatus('mandatory') sp_sensor_index = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 7, 4), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: spSensorIndex.setStatus('mandatory') sp_sensor_name = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 7, 5), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: spSensorName.setStatus('mandatory') sp_sensor_description = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 7, 6), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: spSensorDescription.setStatus('mandatory') sp_sensor_probe_keep_alive = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 7, 7), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: spSensorProbeKeepAlive.setStatus('mandatory') sp_sensor_type = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 7, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 8, 9, 10, 12, 13, 14, 16, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 128, 129, 132, 134))).clone(namedValues=named_values(('temperature', 1), ('fourTo20mA', 2), ('humidity', 3), ('water', 4), ('atod', 5), ('security', 6), ('airflow', 8), ('siren', 9), ('dryContact', 10), ('voltage', 12), ('relay', 13), ('motion', 14), ('extradrycontact', 16), ('thermostat', 23), ('smoke', 24), ('power', 25), ('irms', 26), ('vrms', 27), ('watt', 28), ('relayarray', 29), ('virtual', 30), ('watthour', 32), ('temperaturearray', 33), ('waterrope', 34), ('fuellevel', 35), ('tanksender', 36), ('sound', 128), ('softwaremotion', 129), ('nosignal', 132), ('powermeter', 134)))).setMaxAccess('readonly') if mibBuilder.loadTexts: spSensorType.setStatus('mandatory') sp_sensor_status_name = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 7, 9), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: spSensorStatusName.setStatus('mandatory') sp_sensor_sub_index = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 7, 10), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: spSensorSubIndex.setStatus('mandatory') sp_board_index = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 7, 11), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: spBoardIndex.setStatus('mandatory') sp_board_description = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 7, 12), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: spBoardDescription.setStatus('mandatory') sp_event_time_stamp = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 7, 13), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: spEventTimeStamp.setStatus('mandatory') sp_event_class_number = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 7, 14), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: spEventClassNumber.setStatus('mandatory') sp_event_class_name = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 7, 15), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: spEventClassName.setStatus('mandatory') sp_sensor_decimal_value = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 7, 16), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: spSensorDecimalValue.setStatus('mandatory') sp_sensor_alive_high = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 7, 17), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: spSensorAliveHigh.setStatus('mandatory') sp_sensor_alive_low = mib_scalar((1, 3, 6, 1, 4, 1, 3854, 1, 7, 18), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: spSensorAliveLow.setStatus('mandatory') sp_normal_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 1)) sp_warning_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 2)) sp_critical_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 3)) sp_down_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 4)) sp_keep_alive_trap = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 5)) sp_unknown_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 7)) sp_temperature_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 10)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_temperature_array1_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 11)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_temperature_array2_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 12)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_temperature_array3_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 13)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_temperature_array4_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 14)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_temperature_array5_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 15)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_temperature_array6_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 16)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_temperature_array7_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 17)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_temperature_array8_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 18)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_analogue_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 20)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_switch_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 30)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_irms_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 40)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_vrms_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 50)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_watt_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 60)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_relay_array1_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 71)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_relay_array2_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 72)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_relay_array3_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 73)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_relay_array4_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 74)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_relay_array5_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 75)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_relay_array6_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 77)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_relay_array8_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 78)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_virtual_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 80)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_sen_unknown_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 51)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_sen_normal_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 52)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_sen_warning_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 53)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_sen_critical_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 54)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_sen_down_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 55)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_temperature1_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 101)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_temperature2_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 102)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_temperature3_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 103)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_temperature4_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 104)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_temperature5_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 105)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_temperature6_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 106)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_temperature7_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 107)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_temperature8_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 108)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_temperature_array1_1_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 111)).setLabel('spTemperatureArray1-1Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_temperature_array1_2_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 112)).setLabel('spTemperatureArray1-2Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_temperature_array1_3_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 113)).setLabel('spTemperatureArray1-3Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_temperature_array1_4_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 114)).setLabel('spTemperatureArray1-4Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_temperature_array1_5_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 115)).setLabel('spTemperatureArray1-5Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_temperature_array1_6_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 116)).setLabel('spTemperatureArray1-6Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_temperature_array1_7_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 117)).setLabel('spTemperatureArray1-7Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_temperature_array1_8_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 118)).setLabel('spTemperatureArray1-8Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_temperature_array2_1_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 121)).setLabel('spTemperatureArray2-1Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_temperature_array2_2_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 122)).setLabel('spTemperatureArray2-2Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_temperature_array2_3_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 123)).setLabel('spTemperatureArray2-3Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_temperature_array2_4_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 124)).setLabel('spTemperatureArray2-4Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_temperature_array2_5_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 125)).setLabel('spTemperatureArray2-5Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_temperature_array2_6_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 126)).setLabel('spTemperatureArray2-6Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_temperature_array2_7_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 127)).setLabel('spTemperatureArray2-7Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_temperature_array2_8_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 128)).setLabel('spTemperatureArray2-8Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_temperature_array3_1_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 131)).setLabel('spTemperatureArray3-1Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_temperature_array3_2_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 132)).setLabel('spTemperatureArray3-2Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_temperature_array3_3_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 133)).setLabel('spTemperatureArray3-3Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_temperature_array3_4_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 134)).setLabel('spTemperatureArray3-4Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_temperature_array3_5_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 135)).setLabel('spTemperatureArray3-5Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_temperature_array3_6_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 136)).setLabel('spTemperatureArray3-6Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_temperature_array3_7_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 137)).setLabel('spTemperatureArray3-7Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_temperature_array3_8_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 138)).setLabel('spTemperatureArray3-8Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_temperature_array4_1_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 141)).setLabel('spTemperatureArray4-1Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_temperature_array4_2_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 142)).setLabel('spTemperatureArray4-2Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_temperature_array4_3_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 143)).setLabel('spTemperatureArray4-3Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_temperature_array4_4_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 144)).setLabel('spTemperatureArray4-4Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_temperature_array4_5_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 145)).setLabel('spTemperatureArray4-5Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_temperature_array4_6_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 146)).setLabel('spTemperatureArray4-6Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_temperature_array4_7_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 147)).setLabel('spTemperatureArray4-7Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_temperature_array4_8_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 148)).setLabel('spTemperatureArray4-8Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_temperature_array5_1_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 151)).setLabel('spTemperatureArray5-1Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_temperature_array5_2_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 152)).setLabel('spTemperatureArray5-2Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_temperature_array5_3_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 153)).setLabel('spTemperatureArray5-3Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_temperature_array5_4_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 154)).setLabel('spTemperatureArray5-4Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_temperature_array5_5_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 155)).setLabel('spTemperatureArray5-5Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_temperature_array5_6_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 156)).setLabel('spTemperatureArray5-6Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_temperature_array5_7_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 157)).setLabel('spTemperatureArray5-7Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_temperature_array5_8_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 158)).setLabel('spTemperatureArray5-8Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_temperature_array6_1_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 161)).setLabel('spTemperatureArray6-1Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_temperature_array6_2_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 162)).setLabel('spTemperatureArray6-2Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_temperature_array6_3_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 163)).setLabel('spTemperatureArray6-3Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_temperature_array6_4_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 164)).setLabel('spTemperatureArray6-4Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_temperature_array6_5_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 165)).setLabel('spTemperatureArray6-5Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_temperature_array6_6_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 166)).setLabel('spTemperatureArray6-6Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_temperature_array6_7_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 167)).setLabel('spTemperatureArray6-7Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_temperature_array6_8_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 168)).setLabel('spTemperatureArray6-8Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_temperature_array7_1_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 171)).setLabel('spTemperatureArray7-1Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_temperature_array7_2_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 172)).setLabel('spTemperatureArray7-2Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_temperature_array7_3_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 173)).setLabel('spTemperatureArray7-3Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_temperature_array7_4_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 174)).setLabel('spTemperatureArray7-4Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_temperature_array7_5_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 175)).setLabel('spTemperatureArray7-5Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_temperature_array7_6_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 176)).setLabel('spTemperatureArray7-6Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_temperature_array7_7_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 177)).setLabel('spTemperatureArray7-7Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_temperature_array7_8_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 178)).setLabel('spTemperatureArray7-8Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_temperature_array8_1_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 181)).setLabel('spTemperatureArray8-1Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_temperature_array8_2_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 182)).setLabel('spTemperatureArray8-2Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_temperature_array8_3_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 183)).setLabel('spTemperatureArray8-3Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_temperature_array8_4_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 184)).setLabel('spTemperatureArray8-4Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_temperature_array8_5_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 185)).setLabel('spTemperatureArray8-5Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_temperature_array8_6_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 186)).setLabel('spTemperatureArray8-6Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_temperature_array8_7_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 187)).setLabel('spTemperatureArray8-7Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_temperature_array8_8_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 188)).setLabel('spTemperatureArray8-8Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_analogue1_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 201)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_analogue2_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 202)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_analogue3_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 203)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_analogue4_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 204)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_analogue5_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 205)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_analogue6_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 206)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_analogue7_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 207)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_analogue8_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 208)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_switch1_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 301)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_switch2_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 302)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_switch3_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 303)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_switch4_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 304)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_switch5_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 305)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_switch6_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 306)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_switch7_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 307)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_switch8_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 308)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_switch9_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 309)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_switch10_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 310)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_switch11_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 311)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_switch12_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 312)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_switch13_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 313)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_switch14_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 314)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_switch15_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 315)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_switch16_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 316)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_switch17_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 317)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_switch18_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 318)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_switch19_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 319)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_switch20_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 320)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_switch21_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 321)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_switch22_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 322)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_switch23_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 323)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_switch24_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 324)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_switch25_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 325)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_switch26_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 326)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_switch27_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 327)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_switch28_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 328)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_switch29_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 329)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_switch30_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 330)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_switch31_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 331)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_switch32_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 332)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_switch33_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 333)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_switch34_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 334)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_switch35_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 335)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_switch36_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 336)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_switch37_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 337)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_switch38_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 338)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_switch39_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 339)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_switch40_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 340)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_switch41_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 341)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_switch42_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 342)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_switch43_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 343)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_switch44_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 344)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_switch45_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 345)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_switch46_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 346)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_switch47_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 347)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_switch48_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 348)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_switch49_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 349)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_switch50_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 350)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_switch51_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 351)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_switch52_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 352)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_switch53_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 353)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_switch54_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 354)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_switch55_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 355)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_switch56_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 356)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_switch57_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 357)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_switch58_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 358)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_switch59_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 359)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_switch60_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 360)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_switch61_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 361)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_switch62_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 362)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_switch63_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 363)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_switch64_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 364)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_switch65_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 365)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_switch66_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 366)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_switch67_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 367)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_switch68_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 368)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_irms1_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 401)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_irms2_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 402)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_irms3_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 403)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_irms4_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 404)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_irms5_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 405)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_irms6_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 406)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_irms7_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 407)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_irms8_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 408)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_vrms1_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 501)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_vrms2_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 502)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_vrms3_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 503)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_vrms4_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 504)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_vrms5_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 505)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_vrms6_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 506)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_vrms7_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 507)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_vrms8_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 508)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_energy1_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 601)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_energy2_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 602)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_energy3_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 603)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_energy4_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 604)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_energy5_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 605)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_energy6_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 606)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_energy7_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 607)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_energy8_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 608)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_relay_array1_1_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 711)).setLabel('spRelayArray1-1Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_relay_array1_2_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 712)).setLabel('spRelayArray1-2Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_relay_array1_3_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 713)).setLabel('spRelayArray1-3Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_relay_array1_4_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 714)).setLabel('spRelayArray1-4Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_relay_array1_5_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 715)).setLabel('spRelayArray1-5Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_relay_array1_6_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 716)).setLabel('spRelayArray1-6Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_relay_array1_7_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 717)).setLabel('spRelayArray1-7Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_relay_array1_8_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 718)).setLabel('spRelayArray1-8Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_relay_array2_1_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 721)).setLabel('spRelayArray2-1Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_relay_array2_2_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 722)).setLabel('spRelayArray2-2Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_relay_array2_3_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 723)).setLabel('spRelayArray2-3Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_relay_array2_4_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 724)).setLabel('spRelayArray2-4Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_relay_array2_5_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 725)).setLabel('spRelayArray2-5Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_relay_array2_6_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 726)).setLabel('spRelayArray2-6Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_relay_array2_7_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 727)).setLabel('spRelayArray2-7Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_relay_array2_8_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 728)).setLabel('spRelayArray2-8Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_relay_array3_1_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 731)).setLabel('spRelayArray3-1Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_relay_array3_2_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 732)).setLabel('spRelayArray3-2Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_relay_array3_3_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 733)).setLabel('spRelayArray3-3Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_relay_array3_4_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 734)).setLabel('spRelayArray3-4Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_relay_array3_5_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 735)).setLabel('spRelayArray3-5Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_relay_array3_6_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 736)).setLabel('spRelayArray3-6Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_relay_array3_7_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 737)).setLabel('spRelayArray3-7Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_relay_array3_8_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 738)).setLabel('spRelayArray3-8Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_relay_array4_1_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 741)).setLabel('spRelayArray4-1Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_relay_array4_2_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 742)).setLabel('spRelayArray4-2Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_relay_array4_3_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 743)).setLabel('spRelayArray4-3Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_relay_array4_4_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 744)).setLabel('spRelayArray4-4Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_relay_array4_5_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 745)).setLabel('spRelayArray4-5Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_relay_array4_6_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 746)).setLabel('spRelayArray4-6Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_relay_array4_7_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 747)).setLabel('spRelayArray4-7Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_relay_array4_8_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 748)).setLabel('spRelayArray4-8Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_relay_array5_1_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 751)).setLabel('spRelayArray5-1Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_relay_array5_2_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 752)).setLabel('spRelayArray5-2Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_relay_array5_3_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 753)).setLabel('spRelayArray5-3Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_relay_array5_4_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 754)).setLabel('spRelayArray5-4Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_relay_array5_5_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 755)).setLabel('spRelayArray5-5Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_relay_array5_6_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 756)).setLabel('spRelayArray5-6Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_relay_array5_7_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 757)).setLabel('spRelayArray5-7Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_relay_array5_8_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 758)).setLabel('spRelayArray5-8Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_relay_array6_1_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 761)).setLabel('spRelayArray6-1Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_relay_array6_2_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 762)).setLabel('spRelayArray6-2Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_relay_array6_3_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 763)).setLabel('spRelayArray6-3Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_relay_array6_4_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 764)).setLabel('spRelayArray6-4Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_relay_array6_5_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 765)).setLabel('spRelayArray6-5Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_relay_array6_6_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 766)).setLabel('spRelayArray6-6Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_relay_array6_7_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 767)).setLabel('spRelayArray6-7Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_relay_array6_8_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 768)).setLabel('spRelayArray6-8Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_relay_array7_1_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 771)).setLabel('spRelayArray7-1Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_relay_array7_2_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 772)).setLabel('spRelayArray7-2Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_relay_array7_3_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 773)).setLabel('spRelayArray7-3Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_relay_array7_4_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 774)).setLabel('spRelayArray7-4Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_relay_array7_5_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 775)).setLabel('spRelayArray7-5Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_relay_array7_6_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 776)).setLabel('spRelayArray7-6Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_relay_array7_7_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 777)).setLabel('spRelayArray7-7Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_relay_array7_8_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 778)).setLabel('spRelayArray7-8Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_relay_array8_1_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 781)).setLabel('spRelayArray8-1Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_relay_array8_2_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 782)).setLabel('spRelayArray8-2Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_relay_array8_3_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 783)).setLabel('spRelayArray8-3Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_relay_array8_4_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 784)).setLabel('spRelayArray8-4Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_relay_array8_5_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 785)).setLabel('spRelayArray8-5Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_relay_array8_6_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 786)).setLabel('spRelayArray8-6Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_relay_array8_7_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 787)).setLabel('spRelayArray8-7Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_relay_array8_8_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 788)).setLabel('spRelayArray8-8Status').setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_virtual1_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 801)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_virtual2_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 802)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_virtual3_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 803)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_virtual4_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 804)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_virtual5_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 805)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_virtual6_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 806)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_virtual7_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 807)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_virtual8_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 808)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_virtual9_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 809)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_virtual10_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 810)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_virtual11_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 811)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_virtual12_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 812)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_virtual13_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 813)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_virtual14_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 814)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_virtual15_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 815)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_virtual16_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 816)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_virtual17_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 817)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_virtual18_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 818)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_virtual19_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 819)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_virtual20_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 820)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription')) sp_custom_status = notification_type((1, 3, 6, 1, 4, 1, 3854, 1) + (0, 1000)).setObjects(('SPAGENT-MIB', 'spSensorStatus'), ('SPAGENT-MIB', 'spSensorValue'), ('SPAGENT-MIB', 'spSensorLevelExceeded'), ('SPAGENT-MIB', 'spSensorIndex'), ('SPAGENT-MIB', 'spSensorName'), ('SPAGENT-MIB', 'spSensorDescription'), ('SPAGENT-MIB', 'spSensorType'), ('SPAGENT-MIB', 'spSensorStatusName'), ('SPAGENT-MIB', 'spSensorSubIndex'), ('SPAGENT-MIB', 'spBoardIndex'), ('SPAGENT-MIB', 'spBoardDescription'), ('SPAGENT-MIB', 'spEventTimeStamp'), ('SPAGENT-MIB', 'spEventClassNumber'), ('SPAGENT-MIB', 'spEventClassName')) mibBuilder.exportSymbols('SPAGENT-MIB', sensorProbeDrycontactArrayPort4NormalState=sensorProbeDrycontactArrayPort4NormalState, sensorTankSenderNormalColor=sensorTankSenderNormalColor, sensorPowerRearm=sensorPowerRearm, sensorProbeDrycontactArrayPort8ManualOutputCycleTime=sensorProbeDrycontactArrayPort8ManualOutputCycleTime, spSensorIndex=spSensorIndex, sensorProbeTypeName=sensorProbeTypeName, spSensor=spSensor, sensorProbeWattHoursSensorNumber=sensorProbeWattHoursSensorNumber, spHostName=spHostName, spAnalogue6Status=spAnalogue6Status, sensor4to20mAGoOffline=sensor4to20mAGoOffline, sensorProbeTemperatureArrayPort5Calendar=sensorProbeTemperatureArrayPort5Calendar, sensorProbeEnergyRelayCycleTime=sensorProbeEnergyRelayCycleTime, spProductName=spProductName, sensorProbeThermostatDescription=sensorProbeThermostatDescription, sensorProbeSwitchTable=sensorProbeSwitchTable, sensorProbeIRMSSensorNumber=sensorProbeIRMSSensorNumber, sensorProbeThermostatTemperatureArrayPort1LowLimitAction2=sensorProbeThermostatTemperatureArrayPort1LowLimitAction2, sensorProbeDrycontactArrayPort1ContTimeCritical=sensorProbeDrycontactArrayPort1ContTimeCritical, spEnergy3Status=spEnergy3Status, sensorAirflowNormalColor=sensorAirflowNormalColor, sensorProbeRelayArrayPort5Status=sensorProbeRelayArrayPort5Status, spSensorSubIndex=spSensorSubIndex, spSwitch57Status=spSwitch57Status, sensorProbeMailCC=sensorProbeMailCC, sensorThermostatHighWarning=sensorThermostatHighWarning, sensorAirflowDelayError=sensorAirflowDelayError, sensorDCvoltageHighWarningDesc=sensorDCvoltageHighWarningDesc, sensorProbeDrycontactArrayPort8Direction=sensorProbeDrycontactArrayPort8Direction, sensorProbeDrycontactArrayPort2ManualOutputAction=sensorProbeDrycontactArrayPort2ManualOutputAction, sensorProbeUseCamera=sensorProbeUseCamera, sensorHumidityHighWarning=sensorHumidityHighWarning, sensorProbeTemperatureArrayPort4Table=sensorProbeTemperatureArrayPort4Table, sensorWaterRopeRaw=sensorWaterRopeRaw, sensorProbeThermostatTemperatureArrayPort8LowLimit2=sensorProbeThermostatTemperatureArrayPort8LowLimit2, sensorWaterRopeLength=sensorWaterRopeLength, spVRMS4Status=spVRMS4Status, sensorProbeRelayArrayPort3URL=sensorProbeRelayArrayPort3URL, sensorProbeTempRelayAction=sensorProbeTempRelayAction, sensorProbeTemperatureArrayPort1ContTimeHighWarning=sensorProbeTemperatureArrayPort1ContTimeHighWarning, sensorProbeDrycontactArrayPort8OpenURL=sensorProbeDrycontactArrayPort8OpenURL, sensorProbeDrycontactArrayPort6ContTimeCritical=sensorProbeDrycontactArrayPort6ContTimeCritical, spTemperatureArray8_6Status=spTemperatureArray8_6Status, sensorProbeTempContTimeHighWarning=sensorProbeTempContTimeHighWarning, sensorTemperatureLowWarningDesc=sensorTemperatureLowWarningDesc, sensorProbeTemperatureArrayPort6LowWarning=sensorProbeTemperatureArrayPort6LowWarning, sensorProbeSendTraps=sensorProbeSendTraps, sensorProbeTemperatureArrayPort2LowCritical=sensorProbeTemperatureArrayPort2LowCritical, spVirtual3Status=spVirtual3Status, spVirtual16Status=spVirtual16Status, sensorProbeDrycontactArrayPort4Status=sensorProbeDrycontactArrayPort4Status, sensorAirflowStatus=sensorAirflowStatus, sensorProbeDisplayLogo=sensorProbeDisplayLogo, sensorProbeThermostatTemperatureArrayPort4RelayControlPort=sensorProbeThermostatTemperatureArrayPort4RelayControlPort, sensorProbeRelayArrayPort8RelayAction=sensorProbeRelayArrayPort8RelayAction, spVirtual10Status=spVirtual10Status, spSenDownStatus=spSenDownStatus, sensorProbeThermostatTemperatureArrayPort8RelayControlPort=sensorProbeThermostatTemperatureArrayPort8RelayControlPort, sensorMotionNormalColor=sensorMotionNormalColor, sensorProbeDetail=sensorProbeDetail, sensorProbeVRMSSensorIndex=sensorProbeVRMSSensorIndex, sensorAirflowValue=sensorAirflowValue, sensorHumidityRearm=sensorHumidityRearm, sensorOnColor=sensorOnColor, sensorSirenGoOffline=sensorSirenGoOffline, sensorSecurityNormalColor=sensorSecurityNormalColor, sensorSmokePort=sensorSmokePort, sensorProbeTemperatureArrayPort1ContTimeHighCritical=sensorProbeTemperatureArrayPort1ContTimeHighCritical, sensorProbeVRMSDatacollectType=sensorProbeVRMSDatacollectType, sensorProbeThermostatTemperatureArrayPort7Online=sensorProbeThermostatTemperatureArrayPort7Online, sensorProbeVRMSContTimeHighWarning=sensorProbeVRMSContTimeHighWarning, sensorProbeReloadNetwork=sensorProbeReloadNetwork, sensorDCvoltageDelayLowWarning=sensorDCvoltageDelayLowWarning, sensorProbeThermostatTemperatureArrayPort4LowLimit2=sensorProbeThermostatTemperatureArrayPort4LowLimit2, sensorRelayOnColor=sensorRelayOnColor, sensorTankSenderLowWarningColor=sensorTankSenderLowWarningColor, sensorPowerNormalColor=sensorPowerNormalColor, sensorProbeDrycontactArrayPort5OpenURL=sensorProbeDrycontactArrayPort5OpenURL, sensorProbeTemperatureArrayPort5Value=sensorProbeTemperatureArrayPort5Value, sensorProbeDrycontactArrayPort4Entry=sensorProbeDrycontactArrayPort4Entry, sensorFuelHighWarningDesc=sensorFuelHighWarningDesc, spVRMS8Status=spVRMS8Status, spSwitch64Status=spSwitch64Status, sensorTemperatureDelayError=sensorTemperatureDelayError, sensorProbeHumiditySirenAction=sensorProbeHumiditySirenAction, spSwitch65Status=spSwitch65Status, sensorProbeMegaVersion=sensorProbeMegaVersion, sensorProbeHumidityRelayOnPort=sensorProbeHumidityRelayOnPort, sensorProbeTemperatureArrayPort6Number=sensorProbeTemperatureArrayPort6Number, sensorProbeTemperatureArrayPort6Status=sensorProbeTemperatureArrayPort6Status, sensorDCvoltageDelayError=sensorDCvoltageDelayError, sensorProbeHumiditySirenOnPort=sensorProbeHumiditySirenOnPort, sensorThermostatLowCriticalDesc=sensorThermostatLowCriticalDesc, sensorFuelHighCriticalDesc=sensorFuelHighCriticalDesc, spWattStatus=spWattStatus, sensorProbeSwitchRelayOnPort=sensorProbeSwitchRelayOnPort, sensorDryContactPort6GoOnline=sensorDryContactPort6GoOnline, sensorProbeTempContTimeSensorError=sensorProbeTempContTimeSensorError, sensorRelayControlMode=sensorRelayControlMode, sensorProbeCameraServerClientSetPassword=sensorProbeCameraServerClientSetPassword, sensorProbeVirtualSwitchSensorTable=sensorProbeVirtualSwitchSensorTable, spAnalogue2Status=spAnalogue2Status, sensorDryContactTable=sensorDryContactTable, spDownStatus=spDownStatus, sensorProbeHumidityLowVoltage=sensorProbeHumidityLowVoltage, sensorProbeVRMSRelayActiveStatus=sensorProbeVRMSRelayActiveStatus, sensorProbeTempLowWarning=sensorProbeTempLowWarning, sensorSecurityGoOffline=sensorSecurityGoOffline, sensorIntelligentPort5GoOnline=sensorIntelligentPort5GoOnline, deviceDryContactTable=deviceDryContactTable, spTemperatureArray3_7Status=spTemperatureArray3_7Status, sensorProbe=sensorProbe, sensorProbeThermostatTemperatureArrayPort7EnableTime=sensorProbeThermostatTemperatureArrayPort7EnableTime, spTemperatureArray3_5Status=spTemperatureArray3_5Status, sensorProbeSwitchWaterRopeImpedance=sensorProbeSwitchWaterRopeImpedance, sensorProbeSMTPAuth=sensorProbeSMTPAuth, spRelayArray2_6Status=spRelayArray2_6Status, sensorProbeHumidityGoOnline=sensorProbeHumidityGoOnline, sensorAirflowSubPort=sensorAirflowSubPort, sensorProbeRelayArrayPort7NormalState=sensorProbeRelayArrayPort7NormalState, sensorTankSenderNormalDesc=sensorTankSenderNormalDesc, sensorProbeRelayArrayPort4RelayDescOn=sensorProbeRelayArrayPort4RelayDescOn, sensorProbeDrycontactArrayPort4OpenURL=sensorProbeDrycontactArrayPort4OpenURL, spSwitch24Status=spSwitch24Status, sensorProbeSoundDetectorMicBoost=sensorProbeSoundDetectorMicBoost, sensorWaterPort=sensorWaterPort, sensorProbeRelayArrayPort6Status=sensorProbeRelayArrayPort6Status, deviceDryContactInfo=deviceDryContactInfo, sensorProbeSwitchIndexCount=sensorProbeSwitchIndexCount, sensorWaterRopeUnit=sensorWaterRopeUnit, spSwitch49Status=spSwitch49Status, sensorProbeLastSystemError=sensorProbeLastSystemError, sensor4to20mATable=sensor4to20mATable, sensorHumidityLowCriticalDesc=sensorHumidityLowCriticalDesc, spRelayArray1_8Status=spRelayArray1_8Status, sensorDCvoltageLowWarning=sensorDCvoltageLowWarning, sensor4to20mASensorErrorColor=sensor4to20mASensorErrorColor, sensorProbeNoCameraSensorTable=sensorProbeNoCameraSensorTable, sensorPowerLowWarningDesc=sensorPowerLowWarningDesc, sensorTankSenderIndex=sensorTankSenderIndex, sensorProbeDrycontactArrayPort7Entry=sensorProbeDrycontactArrayPort7Entry, sensorProbeRelayArrayPort7ManualRelayAction=sensorProbeRelayArrayPort7ManualRelayAction, sensorProbeDrycontactArrayPort8Index=sensorProbeDrycontactArrayPort8Index, sensorProbeDrycontactArrayPort7NormalState=sensorProbeDrycontactArrayPort7NormalState, sensorProbeTemperatureArrayPort6DegreeType=sensorProbeTemperatureArrayPort6DegreeType, sensorProbeVirtualAnalogSensorEntry=sensorProbeVirtualAnalogSensorEntry, sensorProbeVirtualAnalogDelayError=sensorProbeVirtualAnalogDelayError, sensorProbeTypeDrycontactInputName=sensorProbeTypeDrycontactInputName, sensorProbeEnergyReadingMode=sensorProbeEnergyReadingMode, sensorDCvoltageUnit=sensorDCvoltageUnit, sensorProbeIRMSURL=sensorProbeIRMSURL, sensorFuelLowCritical=sensorFuelLowCritical, sensorProbeHumidityContTimeNormal=sensorProbeHumidityContTimeNormal, sensorPowerHighCritical=sensorPowerHighCritical, spVirtual19Status=spVirtual19Status, spSwitch23Status=spSwitch23Status, sensorProbeRelayArrayPort7Status=sensorProbeRelayArrayPort7Status, sensorFuelHighCriticalColor=sensorFuelHighCriticalColor, sensorProbeTemperatureArrayPort8ContTimeSensorError=sensorProbeTemperatureArrayPort8ContTimeSensorError, sensorProbeTypeTankSenderName=sensorProbeTypeTankSenderName, sensorProbeDrycontactArrayPort8ContTimeCritical=sensorProbeDrycontactArrayPort8ContTimeCritical, spVirtual5Status=spVirtual5Status, sensorProbeDrycontactArrayPort4ManualOutputCycleTime=sensorProbeDrycontactArrayPort4ManualOutputCycleTime, sensorProbeReadSysLog=sensorProbeReadSysLog, sensorProbeVRMSLowCritical=sensorProbeVRMSLowCritical, sensorProbeTemperatureArrayPort1ContTimeSensorError=sensorProbeTemperatureArrayPort1ContTimeSensorError, spSwitch63Status=spSwitch63Status, spTemperatureArray4_3Status=spTemperatureArray4_3Status, sensorProbeIRMSContTimeHighWarning=sensorProbeIRMSContTimeHighWarning, sensorProbeHumidityAtoDJumper=sensorProbeHumidityAtoDJumper, sensorAirflowDisplayStyle=sensorAirflowDisplayStyle, sensorProbeThermostatTemperatureArrayPort8EnableTime=sensorProbeThermostatTemperatureArrayPort8EnableTime, sensorProbeType4to20MAName=sensorProbeType4to20MAName, sensor4to20mADescription=sensor4to20mADescription, sensorPowerEntry=sensorPowerEntry, sensorProbeDrycontactArrayPort8Status=sensorProbeDrycontactArrayPort8Status, sensor4to20mADelayLowWarning=sensor4to20mADelayLowWarning, sensorProbeTypeTemperatureName=sensorProbeTypeTemperatureName, sensorProbeVirtualAnalogContTimeHighWarning=sensorProbeVirtualAnalogContTimeHighWarning, sensorProbeSupportMailRcpt=sensorProbeSupportMailRcpt, sensorProbeTemperatureArrayPort2Entry=sensorProbeTemperatureArrayPort2Entry, spRelayArray5_1Status=spRelayArray5_1Status, sensorProbeRelayArrayPort3Number=sensorProbeRelayArrayPort3Number, sensorProbeThermostatTemperatureArrayPort1HighLimitAction2=sensorProbeThermostatTemperatureArrayPort1HighLimitAction2, sensorProbeVRMSHighCritical=sensorProbeVRMSHighCritical, sensorThermostatDelayLowWarning=sensorThermostatDelayLowWarning, sensorProbeSwitchRelayCycleTime=sensorProbeSwitchRelayCycleTime, sensorProbeRelayArrayPort7Online=sensorProbeRelayArrayPort7Online, sensorProbeCameraServerClientGoOnline=sensorProbeCameraServerClientGoOnline, sensorProbeThermostatTemperatureArrayPort6HighLimit2=sensorProbeThermostatTemperatureArrayPort6HighLimit2, sensorProbeTemperatureArrayPort1ContTimeLowCritical=sensorProbeTemperatureArrayPort1ContTimeLowCritical, sensorPowerDelayLowWarning=sensorPowerDelayLowWarning, spIRMS1Status=spIRMS1Status, sensorProbeTemperatureArrayPort4Value=sensorProbeTemperatureArrayPort4Value, sensorSecuritySubPort=sensorSecuritySubPort, sensorFuelDelayLowWarning=sensorFuelDelayLowWarning, sensorProbeRelayArrayPort3ManualRelayCycleTime=sensorProbeRelayArrayPort3ManualRelayCycleTime, sensorProbeDrycontactArrayPort2Index=sensorProbeDrycontactArrayPort2Index, spTemperatureArray7Status=spTemperatureArray7Status, sensorProbeTempEmailTrapSchedule=sensorProbeTempEmailTrapSchedule, sensorProbeRelayArrayPort6RelayAction=sensorProbeRelayArrayPort6RelayAction, sensorProbeSoundDetectorSensorNumber=sensorProbeSoundDetectorSensorNumber, spTemperatureArray4Status=spTemperatureArray4Status, sensorProbeThermostatIndex=sensorProbeThermostatIndex, sensorProbeIRMSDescription=sensorProbeIRMSDescription, sensor4to20mALowCriticalDesc=sensor4to20mALowCriticalDesc, deviceIndex=deviceIndex, sensorProbeThermostatTemperatureArrayPort5Description=sensorProbeThermostatTemperatureArrayPort5Description, sensorFuelHighWarning=sensorFuelHighWarning, sensorProbeDebug=sensorProbeDebug, sensorProbeNoCameraSensorNumber=sensorProbeNoCameraSensorNumber, sensorProbeDrycontactArrayPort3Online=sensorProbeDrycontactArrayPort3Online, sensorProbeSwitchSirenDelayAlarm=sensorProbeSwitchSirenDelayAlarm, sensorProbeVRMSLowWarning=sensorProbeVRMSLowWarning, sensorProbeTemperatureArrayPort5Table=sensorProbeTemperatureArrayPort5Table, sensorProbeRelayArrayPort5=sensorProbeRelayArrayPort5, spTemperatureArray6_6Status=spTemperatureArray6_6Status, sensorHighCriticalDescription=sensorHighCriticalDescription, spSwitch1Status=spSwitch1Status, spSwitch62Status=spSwitch62Status, sensorTemperatureSensorErrorColor=sensorTemperatureSensorErrorColor, sensorHumidityDescription=sensorHumidityDescription, sensorProbeTemperatureArrayPort3Calendar=sensorProbeTemperatureArrayPort3Calendar, sensorFuelDelayLowCritical=sensorFuelDelayLowCritical, sensorProbeTypeACvoltageName=sensorProbeTypeACvoltageName, sensorProbeDrycontactArrayPort7OpenURL=sensorProbeDrycontactArrayPort7OpenURL, sensorProbeSwitchRelayDescOn=sensorProbeSwitchRelayDescOn, sensorSirenOnColor=sensorSirenOnColor, sensorProbeRelayArrayPort4=sensorProbeRelayArrayPort4, sensorProbeTempOnline=sensorProbeTempOnline, sensorProbeRelayArrayPort5RelayDescOn=sensorProbeRelayArrayPort5RelayDescOn, spRelayArray4_2Status=spRelayArray4_2Status, spIRMSStatus=spIRMSStatus, sensorProbeTemperatureArrayPort2ContTimeHighWarning=sensorProbeTemperatureArrayPort2ContTimeHighWarning, sensorTankSenderEntry=sensorTankSenderEntry, spRelayArray6_6Status=spRelayArray6_6Status, sensorACvoltageNormalColor=sensorACvoltageNormalColor, sensorProbeTemperatureArrayPort6URL=sensorProbeTemperatureArrayPort6URL, sensorHumidityHighCriticalColor=sensorHumidityHighCriticalColor, sensorProbeTemperatureArrayPort8HighWarning=sensorProbeTemperatureArrayPort8HighWarning, spTemperatureArray5_1Status=spTemperatureArray5_1Status, sensorProbeHumidityHighCritical=sensorProbeHumidityHighCritical, sensorProbeTemperatureArrayPort4Calendar=sensorProbeTemperatureArrayPort4Calendar, spTemperatureArray4_8Status=spTemperatureArray4_8Status, sensorHumidityLowCritical=sensorHumidityLowCritical, sensorPowerHighCriticalColor=sensorPowerHighCriticalColor, sensorProbeVirtualAnalogEmailTrapLimit=sensorProbeVirtualAnalogEmailTrapLimit, spSensorLevelExceeded=spSensorLevelExceeded, sensorProbeDrycontactArrayPort7ContTimeNormal=sensorProbeDrycontactArrayPort7ContTimeNormal, sensorProbeTemperatureArrayPort6Calendar=sensorProbeTemperatureArrayPort6Calendar, spSwitch11Status=spSwitch11Status, spSwitch37Status=spSwitch37Status, sensorTankSenderHighWarningColor=sensorTankSenderHighWarningColor, sensorProbeSetCommunity=sensorProbeSetCommunity) mibBuilder.exportSymbols('SPAGENT-MIB', sensorProbeTemperatureArrayPort7Entry=sensorProbeTemperatureArrayPort7Entry, sensorTemperatureHighCriticalDesc=sensorTemperatureHighCriticalDesc, sensorProbeRelayArrayPort3ControlMode=sensorProbeRelayArrayPort3ControlMode, spTemperatureArray1_1Status=spTemperatureArray1_1Status, spTemperature1Status=spTemperature1Status, sensorAirflowSensorErrorDesc=sensorAirflowSensorErrorDesc, sensor4to20mAHighCriticalColor=sensor4to20mAHighCriticalColor, sensorSmokeDeviceIndex=sensorSmokeDeviceIndex, sensorTemperatureDelayHighWarning=sensorTemperatureDelayHighWarning, sensorProbeIRMSSensorIndex=sensorProbeIRMSSensorIndex, sensorAirflowPort=sensorAirflowPort, sensorProbeDrycontactArrayPort6Status=sensorProbeDrycontactArrayPort6Status, sensorProbeVirtualSwitchAcknowledgement=sensorProbeVirtualSwitchAcknowledgement, sensor4to20mARearm=sensor4to20mARearm, spTemperatureArray6_5Status=spTemperatureArray6_5Status, sensorProbeDrycontactArrayPort3NormalState=sensorProbeDrycontactArrayPort3NormalState, spRelayArray3_2Status=spRelayArray3_2Status, sensorProbeTypeADE7763IRMSName=sensorProbeTypeADE7763IRMSName, spRelayArray8_3Status=spRelayArray8_3Status, sensorProbeEnergyLowCritical=sensorProbeEnergyLowCritical, sensorProbeDrycontactArrayPort8GoOnline=sensorProbeDrycontactArrayPort8GoOnline, sensorProbeSoundDetectorGoOnline=sensorProbeSoundDetectorGoOnline, sensorDeviceIndex=sensorDeviceIndex, sensorProbeDrycontactArrayPort2URL=sensorProbeDrycontactArrayPort2URL, sensorProbeTemperatureArrayPort5ContTimeHighWarning=sensorProbeTemperatureArrayPort5ContTimeHighWarning, sensorProbeRelayArrayPort2=sensorProbeRelayArrayPort2, sensorProbeEnergyContTimeLowWarning=sensorProbeEnergyContTimeLowWarning, sensorProbeDrycontactArrayPort3OutputDescOff=sensorProbeDrycontactArrayPort3OutputDescOff, sensorDCvoltageMaxVoltage=sensorDCvoltageMaxVoltage, sensorProbeSoftMotionGoOnline=sensorProbeSoftMotionGoOnline, sensorProbeThermostatTemperatureArrayPort7Description=sensorProbeThermostatTemperatureArrayPort7Description, sensorACvoltageTable=sensorACvoltageTable, sensorProbeTemperatureArrayPort4ContTimeHighCritical=sensorProbeTemperatureArrayPort4ContTimeHighCritical, sensorProbeTemperatureArrayPort8ContTimeHighWarning=sensorProbeTemperatureArrayPort8ContTimeHighWarning, sensorAirflowTable=sensorAirflowTable, sensorProbeDrycontactArrayPort1OpenURL=sensorProbeDrycontactArrayPort1OpenURL, sensorProbeVRMSGoOnline=sensorProbeVRMSGoOnline, sensorProbeHumidityContTimeLowCritical=sensorProbeHumidityContTimeLowCritical, spTemperatureArray4_6Status=spTemperatureArray4_6Status, sensorProbePTZEnable=sensorProbePTZEnable, sensorProbeTemperatureArrayPort3Status=sensorProbeTemperatureArrayPort3Status, sensorProbeVRMSContTimeNormal=sensorProbeVRMSContTimeNormal, sensorProbeTemperatureArrayPort4Status=sensorProbeTemperatureArrayPort4Status, sensorProbeNoCameraOnline=sensorProbeNoCameraOnline, sensorProbeSoftMotionSensorIndex=sensorProbeSoftMotionSensorIndex, sensorProbeIRMSHighCritical=sensorProbeIRMSHighCritical, sensorProbeSnmpPort=sensorProbeSnmpPort, sensorIndex=sensorIndex, sensorDCvoltageNormalColor=sensorDCvoltageNormalColor, sensorProbeVirtualSwitchSensorIndex=sensorProbeVirtualSwitchSensorIndex, akcp=akcp, sensor4to20mAHighCritical=sensor4to20mAHighCritical, sensorProbeThermostatTemperatureArrayPort1RelayControlPort=sensorProbeThermostatTemperatureArrayPort1RelayControlPort, sensorTankSenderHighCritical=sensorTankSenderHighCritical, sensorHumidityDeviceIndex=sensorHumidityDeviceIndex, sensorProbeSendMail=sensorProbeSendMail, sensorProbeThermostatTemperatureArrayPort2Index=sensorProbeThermostatTemperatureArrayPort2Index, sensorThermostatPort=sensorThermostatPort, sensorProbeRelayArrayPort2URL=sensorProbeRelayArrayPort2URL, sensorProbeDrycontactArrayPort3Index=sensorProbeDrycontactArrayPort3Index, deviceIntelligentDescription=deviceIntelligentDescription, sensorProbeRelayArrayPort2OpenURL=sensorProbeRelayArrayPort2OpenURL, sensorOffColor=sensorOffColor, deviceTable=deviceTable, sensorWaterCriticalDesc=sensorWaterCriticalDesc, sensorProbeRelayArrayPort1ManualRelayAction=sensorProbeRelayArrayPort1ManualRelayAction, sensorProbeRelayArrayPort7Table=sensorProbeRelayArrayPort7Table, sensorProbeSoftMotionSensorTable=sensorProbeSoftMotionSensorTable, sensorProbeHumidityHighWarning=sensorProbeHumidityHighWarning, sensorDCvoltageEntry=sensorDCvoltageEntry, sensorProbeTrapResendInterval=sensorProbeTrapResendInterval, sensorProbeTemperatureArrayPort7OpenURL=sensorProbeTemperatureArrayPort7OpenURL, sensorProbeDrycontactArrayPort6Description=sensorProbeDrycontactArrayPort6Description, sensorProbeCameraServerTable=sensorProbeCameraServerTable, sensorACvoltageCriticalDesc=sensorACvoltageCriticalDesc, sensorSmokeNormalDesc=sensorSmokeNormalDesc, sensorProbeRelayArrayPort2Status=sensorProbeRelayArrayPort2Status, sensorProbeDrycontactArrayPort6OutputDescOff=sensorProbeDrycontactArrayPort6OutputDescOff, sensorProbeDrycontactArrayPort6Online=sensorProbeDrycontactArrayPort6Online, sensorProbeTemperatureArrayPort1Description=sensorProbeTemperatureArrayPort1Description, spSwitch20Status=spSwitch20Status, spVirtual9Status=spVirtual9Status, sensorProbeTemperatureArrayPort1HighCritical=sensorProbeTemperatureArrayPort1HighCritical, deviceDryContactIndex=deviceDryContactIndex, sensorHumidityOffset=sensorHumidityOffset, sensorProbeVRMSHighWarning=sensorProbeVRMSHighWarning, sensorProbeThermostatTemperatureArrayPort1HighLimitAction1=sensorProbeThermostatTemperatureArrayPort1HighLimitAction1, sensorTankSenderDisplayStyle=sensorTankSenderDisplayStyle, sensorProbeTemperatureArrayPort8Online=sensorProbeTemperatureArrayPort8Online, sensorProbeTemperatureArrayPort8ContTimeLowCritical=sensorProbeTemperatureArrayPort8ContTimeLowCritical, sensorProbeThermostatTemperatureArrayPort8Value=sensorProbeThermostatTemperatureArrayPort8Value, sensorProbeTemperatureArrayPort6HighWarning=sensorProbeTemperatureArrayPort6HighWarning, sensorProbeHumiditySirenActiveStatus=sensorProbeHumiditySirenActiveStatus, sensorProbeTemperatureArrayPort6ContTimeNormal=sensorProbeTemperatureArrayPort6ContTimeNormal, sensorOnDescription=sensorOnDescription, sensorProbeDrycontactArrayPort5Description=sensorProbeDrycontactArrayPort5Description, sensorProbeThermostatTemperatureArrayPort4HighLimit1=sensorProbeThermostatTemperatureArrayPort4HighLimit1, sensorProbeTemperatureArrayPort7HighCritical=sensorProbeTemperatureArrayPort7HighCritical, sensorProbeDrycontactArrayPort2=sensorProbeDrycontactArrayPort2, spRelayArray7_7Status=spRelayArray7_7Status, sensorProbeEnergyDatacollectType=sensorProbeEnergyDatacollectType, sensorProbeRelayArrayPort3RelayDescOff=sensorProbeRelayArrayPort3RelayDescOff, sensorProbeWattHoursSensorIndex=sensorProbeWattHoursSensorIndex, spRelayArray7_8Status=spRelayArray7_8Status, sensor4to20mAHighWarningDesc=sensor4to20mAHighWarningDesc, sensorProbeThermostatTemperatureArrayPort3Online=sensorProbeThermostatTemperatureArrayPort3Online, sensorPowerPort=sensorPowerPort, sensorProbeTemperatureArrayPort3Value=sensorProbeTemperatureArrayPort3Value, sensorHumidityGoOffline=sensorHumidityGoOffline, sensorProbeRelayArrayPort3RelayCycleTime=sensorProbeRelayArrayPort3RelayCycleTime, sensorFuelLowWarningDesc=sensorFuelLowWarningDesc, sensorProbeEnergyRelayOnPort=sensorProbeEnergyRelayOnPort, sensorProbeThermostatTemperatureArrayPort6RelayControlPort=sensorProbeThermostatTemperatureArrayPort6RelayControlPort, sensorSecurityDeviceIndex=sensorSecurityDeviceIndex, sensorProbeThermostatTemperatureArrayPort5Online=sensorProbeThermostatTemperatureArrayPort5Online, spTemperatureArray2_3Status=spTemperatureArray2_3Status, spSwitch6Status=spSwitch6Status, sensorProbeRelayArrayPort7ManualRelayCycleTime=sensorProbeRelayArrayPort7ManualRelayCycleTime, sensorRelayGoOffline=sensorRelayGoOffline, sensorPowerDeviceIndex=sensorPowerDeviceIndex, sensorProbeTempSendNormalMail=sensorProbeTempSendNormalMail, sensorProbeSoftMotionStatus=sensorProbeSoftMotionStatus, sensorProbeHumiditySendMail=sensorProbeHumiditySendMail, sensorProbeSoundDetectorSensorTable=sensorProbeSoundDetectorSensorTable, sensorDCvoltageOffset=sensorDCvoltageOffset, sensorWaterRopeDescription=sensorWaterRopeDescription, sensorRelayDeviceIndex=sensorRelayDeviceIndex, sensorProbeTemperatureArrayPort8Status=sensorProbeTemperatureArrayPort8Status, sensorProbeSoundDetectorDescription=sensorProbeSoundDetectorDescription, sensorACvoltageDescription=sensorACvoltageDescription, sensorProbeDrycontactArrayPort4OutputDescOff=sensorProbeDrycontactArrayPort4OutputDescOff, sensorProbeTemperatureArrayPort2Rearm=sensorProbeTemperatureArrayPort2Rearm, sensorDryContactPort13GoOnline=sensorDryContactPort13GoOnline, sensorProbeRelayArrayPort6Index=sensorProbeRelayArrayPort6Index, sensorFuelDeviceIndex=sensorFuelDeviceIndex, sensorProbeTypeSHT11Name=sensorProbeTypeSHT11Name, sensorWaterDeviceIndex=sensorWaterDeviceIndex, spTemperatureArray5_3Status=spTemperatureArray5_3Status, spSwitch7Status=spSwitch7Status, sensorThermostatLowCritical=sensorThermostatLowCritical, sensorProbeTypeSmokeName=sensorProbeTypeSmokeName, sensorProbeThermostatTemperatureArrayPort5HighLimitAction1=sensorProbeThermostatTemperatureArrayPort5HighLimitAction1, sensorProbeDrycontactArrayPort8ControlMode=sensorProbeDrycontactArrayPort8ControlMode, sensorProbeThermostatTemperatureArrayPort6Online=sensorProbeThermostatTemperatureArrayPort6Online, sensorProbeDrycontactArrayPort6GoOnline=sensorProbeDrycontactArrayPort6GoOnline, sensorDCvoltageHighWarningColor=sensorDCvoltageHighWarningColor, sensorProbeSoundDetectorContTimeHighCritical=sensorProbeSoundDetectorContTimeHighCritical, spRelayArray4_5Status=spRelayArray4_5Status, sensorDCvoltageLowCritical=sensorDCvoltageLowCritical, sensorProbeDrycontactArrayPort4Table=sensorProbeDrycontactArrayPort4Table, spRelayArray5_5Status=spRelayArray5_5Status, spSwitch14Status=spSwitch14Status, sensorProbeRelayArrayPort8Table=sensorProbeRelayArrayPort8Table, spSwitch46Status=spSwitch46Status, sensorProbeEnergySensorEntry=sensorProbeEnergySensorEntry, spSwitch35Status=spSwitch35Status, sensorProbeTempEmailTrapInterval=sensorProbeTempEmailTrapInterval, sensorDCvoltageLowWarningColor=sensorDCvoltageLowWarningColor, spSwitch47Status=spSwitch47Status, sensorProbeIRMSSirenOnPort=sensorProbeIRMSSirenOnPort, sensorHumidityLowCriticalColor=sensorHumidityLowCriticalColor, sensorWaterRopeCriticalColor=sensorWaterRopeCriticalColor, sensorProbeTemperatureArrayPort4Rearm=sensorProbeTemperatureArrayPort4Rearm, spVRMS3Status=spVRMS3Status, spTemperatureArray5_5Status=spTemperatureArray5_5Status, sensorProbeEnergySensorNumber=sensorProbeEnergySensorNumber, sensorProbeRelayArrayPort7Description=sensorProbeRelayArrayPort7Description, sensorProbeTrapType=sensorProbeTrapType, sensorProbeRelayArrayPort4ControlMode=sensorProbeRelayArrayPort4ControlMode, spTemperatureArray1_6Status=spTemperatureArray1_6Status, sensorMotionIndex=sensorMotionIndex, sensorWaterRopeIndex=sensorWaterRopeIndex, sensorProbeVirtualSwitchCalendar=sensorProbeVirtualSwitchCalendar, sensorTemperatureDegree=sensorTemperatureDegree, sensorProbeThermostatTemperatureArrayPort1NormalAction2=sensorProbeThermostatTemperatureArrayPort1NormalAction2, sensorProbeDrycontactArrayPort3GoOnline=sensorProbeDrycontactArrayPort3GoOnline, sensorProbeTempRelayOnPort=sensorProbeTempRelayOnPort, sensorProbeRelayArrayPort3Index=sensorProbeRelayArrayPort3Index, sensorProbeRelayArrayPort4Number=sensorProbeRelayArrayPort4Number, sensorProbeRelayArrayPort5GoOnline=sensorProbeRelayArrayPort5GoOnline, sensorProbeHumidityEmailTrapLimit=sensorProbeHumidityEmailTrapLimit, sensorProbeVirtualAnalogSensor=sensorProbeVirtualAnalogSensor, spTemperatureArray2_4Status=spTemperatureArray2_4Status, sensorProbeThermostatTemperatureArrayPort3GoOnline=sensorProbeThermostatTemperatureArrayPort3GoOnline, sensorProbeSMTPPassword=sensorProbeSMTPPassword, sensorProbeVRMSSirenActiveStatus=sensorProbeVRMSSirenActiveStatus, sensorProbeSoftMotionSensorEntry=sensorProbeSoftMotionSensorEntry, sensorProbeDrycontactArrayPort2Number=sensorProbeDrycontactArrayPort2Number, sensorProbeTypeRelayName=sensorProbeTypeRelayName, sensorProbeSensorType=sensorProbeSensorType, sensor4to20mABaseVoltage=sensor4to20mABaseVoltage, sensorProbeRelayArrayPort8RelayDescOff=sensorProbeRelayArrayPort8RelayDescOff, sensorProbeTrapResend=sensorProbeTrapResend, sensorTankSenderDescription=sensorTankSenderDescription, spTemperature2Status=spTemperature2Status, sensorProbeRelayArrayPort2Online=sensorProbeRelayArrayPort2Online, sensorProbeSoundDetectorURL=sensorProbeSoundDetectorURL, sensorProbeSeparateEmail=sensorProbeSeparateEmail, sensorProbeTemperatureArrayPort1Number=sensorProbeTemperatureArrayPort1Number, sensorProbeSwitchSendNormalMail=sensorProbeSwitchSendNormalMail, sensorHumidityTable=sensorHumidityTable, sensorProbeRelayArrayPort5NormalState=sensorProbeRelayArrayPort5NormalState, sensor4to20mAHighWarning=sensor4to20mAHighWarning, sensorThermostatLowWarningDesc=sensorThermostatLowWarningDesc, sensorProbeTemperatureArrayPort3=sensorProbeTemperatureArrayPort3, sensorProbeDrycontactArrayPort5Table=sensorProbeDrycontactArrayPort5Table, sensorProbeVRMSSirenCycleTime=sensorProbeVRMSSirenCycleTime, sensorProbeThermostatTemperatureArrayPort3EnableTime=sensorProbeThermostatTemperatureArrayPort3EnableTime, sensorProbeThermostatTemperatureArrayPort5Index=sensorProbeThermostatTemperatureArrayPort5Index, spSwitch2Status=spSwitch2Status, sensorProbeVirtualAnalogURL=sensorProbeVirtualAnalogURL, sensorProbeTemperatureArrayPort4DegreeType=sensorProbeTemperatureArrayPort4DegreeType, sensorTankSenderLowWarningDesc=sensorTankSenderLowWarningDesc, sensorProbeSoftMotionPercentSensitivity=sensorProbeSoftMotionPercentSensitivity, sensorDCvoltageAmountMaxVoltage=sensorDCvoltageAmountMaxVoltage, sensorAirflowLowWarningColor=sensorAirflowLowWarningColor, sensorProbeSMTPLogin=sensorProbeSMTPLogin, spSwitch55Status=spSwitch55Status, sensorProbeThermostatTemperatureArrayPort7NormalAction1=sensorProbeThermostatTemperatureArrayPort7NormalAction1, sensorProbeDrycontactArrayPort6URL=sensorProbeDrycontactArrayPort6URL, sensorSecurityPort=sensorSecurityPort, sensorProbeThermostatLowLimitAction1=sensorProbeThermostatLowLimitAction1, sensorProbeRelayArrayPort6Entry=sensorProbeRelayArrayPort6Entry, sensorProbeSwitchWaterRopeUnit=sensorProbeSwitchWaterRopeUnit, sensorProbeThermostatTemperatureArrayPort1LowLimitAction1=sensorProbeThermostatTemperatureArrayPort1LowLimitAction1, sensorHumiditySensorErrorDesc=sensorHumiditySensorErrorDesc, spRelayArray1_3Status=spRelayArray1_3Status, sensorProbeThermostatTemperatureArrayPort8LowLimit1=sensorProbeThermostatTemperatureArrayPort8LowLimit1, sensorProbeRelayArrayPort2RelayDescOn=sensorProbeRelayArrayPort2RelayDescOn, sensorProbeUseDHCP=sensorProbeUseDHCP, sensorProbeDrycontactArrayPort1ContTimeNormal=sensorProbeDrycontactArrayPort1ContTimeNormal, sensorTemperatureUnit=sensorTemperatureUnit, sensorFuelDescription=sensorFuelDescription, sensorProbeThermostatTemperatureArrayPort6GoOnline=sensorProbeThermostatTemperatureArrayPort6GoOnline, sensorProbeMailJpgInline=sensorProbeMailJpgInline, sensorProbeTemperatureArrayPort3ContTimeLowCritical=sensorProbeTemperatureArrayPort3ContTimeLowCritical, sensorProbeThermostatTemperatureArrayPort5LowLimitAction2=sensorProbeThermostatTemperatureArrayPort5LowLimitAction2, sensorFuelNormalColor=sensorFuelNormalColor, sensorProbeThermostatTemperatureArrayPort7LowLimitAction1=sensorProbeThermostatTemperatureArrayPort7LowLimitAction1, sensorRelayManualAction=sensorRelayManualAction, sensorProbeDrycontactArrayPort4Direction=sensorProbeDrycontactArrayPort4Direction, sensorProbeDrycontactArrayPort5ContTimeNormal=sensorProbeDrycontactArrayPort5ContTimeNormal, sensorProbeThermostatTemperatureArrayPort7RelayControlPort=sensorProbeThermostatTemperatureArrayPort7RelayControlPort, sensorProbeSwitchEntry=sensorProbeSwitchEntry, sensorWaterGoOffline=sensorWaterGoOffline, spTemperatureArray3_4Status=spTemperatureArray3_4Status, sensorProbeRelayArrayPort2Index=sensorProbeRelayArrayPort2Index, sensorProbeTimeZone=sensorProbeTimeZone, sensorProbeRelayArrayPort3Entry=sensorProbeRelayArrayPort3Entry, sensorProbeThermostatTemperatureArrayPort5HighLimit1=sensorProbeThermostatTemperatureArrayPort5HighLimit1, sensorProbeThermostatTemperatureArrayPort2NormalAction1=sensorProbeThermostatTemperatureArrayPort2NormalAction1, sensorProbeHumidityDelayNormal=sensorProbeHumidityDelayNormal, sensorProbeTemperatureArrayPort6Table=sensorProbeTemperatureArrayPort6Table, sensorProbeRelayArrayPort7OpenURL=sensorProbeRelayArrayPort7OpenURL) mibBuilder.exportSymbols('SPAGENT-MIB', sensorProbeSoundDetectorContTimeLowCritical=sensorProbeSoundDetectorContTimeLowCritical, sensorHumidityNormalColor=sensorHumidityNormalColor, sensorProbeIRMSSensorTable=sensorProbeIRMSSensorTable, sensorWaterIndex=sensorWaterIndex, sensorProbeRelayArrayPort3RelayDescOn=sensorProbeRelayArrayPort3RelayDescOn, sensorProbeRelayArrayPort4GoOnline=sensorProbeRelayArrayPort4GoOnline, sensorTankSenderHighWarningDesc=sensorTankSenderHighWarningDesc, sensorProbeTemperatureArrayPort6GoOnline=sensorProbeTemperatureArrayPort6GoOnline, sensorWaterRopeType=sensorWaterRopeType, sensorRelayOnDesc=sensorRelayOnDesc, sensorProbeNoCameraDescription=sensorProbeNoCameraDescription, sensorProbeDrycontactArrayPort4ContTimeNormal=sensorProbeDrycontactArrayPort4ContTimeNormal, sensorProbeTypeADE7763Name=sensorProbeTypeADE7763Name, sensorProbeThermostatTemperatureArrayPort8HighLimit1=sensorProbeThermostatTemperatureArrayPort8HighLimit1, sensorProbeDrycontactArrayPort2ManualOutputCycleTime=sensorProbeDrycontactArrayPort2ManualOutputCycleTime, sensorProbeTypeNoSignalName=sensorProbeTypeNoSignalName, spSensorProbeKeepAlive=spSensorProbeKeepAlive, sensorProbeThermostatTemperatureArrayPort2LowLimit1=sensorProbeThermostatTemperatureArrayPort2LowLimit1, sensorProbeSoundDetectorSensorEntry=sensorProbeSoundDetectorSensorEntry, sensorProbeSoundDetectorContTimeNormal=sensorProbeSoundDetectorContTimeNormal, sensorProbeThermostatTemperatureArrayPort5LowLimitAction1=sensorProbeThermostatTemperatureArrayPort5LowLimitAction1, sensorProbeDrycontactArrayPort6Direction=sensorProbeDrycontactArrayPort6Direction, sensorProbeThermostatNormalAction2=sensorProbeThermostatNormalAction2, sensorProbeStatusNumberCriticalAndError=sensorProbeStatusNumberCriticalAndError, spVirtual18Status=spVirtual18Status, spRelayArray4_7Status=spRelayArray4_7Status, sensorAirflowLowWarning=sensorAirflowLowWarning, sensorProbeTempDelayNormal=sensorProbeTempDelayNormal, sensorDryContactPort7GoOnline=sensorDryContactPort7GoOnline, sensor4to20mADelayError=sensor4to20mADelayError, sensorProbeIRMSLowCritical=sensorProbeIRMSLowCritical, spSwitch34Status=spSwitch34Status, sensorProbeDrycontactArrayPort7Direction=sensorProbeDrycontactArrayPort7Direction, sensorProbeTypeTemperatureArrayName=sensorProbeTypeTemperatureArrayName, sensorProbeTemperatureArrayPort6=sensorProbeTemperatureArrayPort6, sensorAirflowHighCriticalColor=sensorAirflowHighCriticalColor, spTemperature8Status=spTemperature8Status, sensorProbeThermostatTemperatureArrayPort1EnableTime=sensorProbeThermostatTemperatureArrayPort1EnableTime, sensorProbeDefaultGateway=sensorProbeDefaultGateway, spSwitch44Status=spSwitch44Status, sensorProbeVirtualAnalogCalendar=sensorProbeVirtualAnalogCalendar, sensorProbeReboot=sensorProbeReboot, sensorProbeVirtualSwitchContTimeHighCritical=sensorProbeVirtualSwitchContTimeHighCritical, sensorProbeDrycontactArrayPort3Number=sensorProbeDrycontactArrayPort3Number, sensorProbeDrycontactArrayPort6ManualOutputCycleTime=sensorProbeDrycontactArrayPort6ManualOutputCycleTime, sensorRelayType=sensorRelayType, sensorProbeTemperatureArrayPort4DegreeRaw=sensorProbeTemperatureArrayPort4DegreeRaw, sensor4to20mAIndex=sensor4to20mAIndex, sensorAirflowGoOffline=sensorAirflowGoOffline, sensorProbeTemperatureArrayPort7Number=sensorProbeTemperatureArrayPort7Number, sensorProbeRelayArrayPort8=sensorProbeRelayArrayPort8, sensorProbeTemperatureArrayPort8DegreeRaw=sensorProbeTemperatureArrayPort8DegreeRaw, sensorProbeVirtualAnalogValueFactor=sensorProbeVirtualAnalogValueFactor, deviceDryContactStatus=deviceDryContactStatus, sensorProbeDrycontactArrayPort3ControlMode=sensorProbeDrycontactArrayPort3ControlMode, sensorProbeTempGoOnline=sensorProbeTempGoOnline, sensorACvoltageStatus=sensorACvoltageStatus, sensorProbeVirtualAnalogContTimeLowCritical=sensorProbeVirtualAnalogContTimeLowCritical, sensorProbeRelayArrayPort5RelayCycleTime=sensorProbeRelayArrayPort5RelayCycleTime, sensorProbeDrycontactArrayPort3Entry=sensorProbeDrycontactArrayPort3Entry, spRelayArray8_8Status=spRelayArray8_8Status, sensorMotionNormalDesc=sensorMotionNormalDesc, sensorProbeVirtualSwitchGoOnline=sensorProbeVirtualSwitchGoOnline, sensorLowWarningColor=sensorLowWarningColor, sensorProbeRelayArrayPort5Entry=sensorProbeRelayArrayPort5Entry, sensorProbeDrycontactArrayPort4ManualOutputAction=sensorProbeDrycontactArrayPort4ManualOutputAction, sensorProbeRelayArrayPort8NormalState=sensorProbeRelayArrayPort8NormalState, sensorProbeVirtualSwitchEmailTrapLimit=sensorProbeVirtualSwitchEmailTrapLimit, sensorProbeSwitchSirenCycleTime=sensorProbeSwitchSirenCycleTime, sensorProbeThermostatTemperatureArrayPort5RelayControlPort=sensorProbeThermostatTemperatureArrayPort5RelayControlPort, spRelayArray5Status=spRelayArray5Status, sensorTemperaturePort=sensorTemperaturePort, sensorProbeSendTestMail=sensorProbeSendTestMail, sensorProbeTempHighWarning=sensorProbeTempHighWarning, sensor4to20mADelayHighCritical=sensor4to20mADelayHighCritical, sensorProbeSwitchGoOnline=sensorProbeSwitchGoOnline, sensorProbeVirtualAnalogContTimeNormal=sensorProbeVirtualAnalogContTimeNormal, securityProbe=securityProbe, sensorDCvoltageHighWarning=sensorDCvoltageHighWarning, sensorProbeDrycontactArrayPort5Entry=sensorProbeDrycontactArrayPort5Entry, sensorDCvoltageDelayHighCritical=sensorDCvoltageDelayHighCritical, sensorProbeThermostatMode=sensorProbeThermostatMode, sensorProbeTemperatureArrayPort1DegreeType=sensorProbeTemperatureArrayPort1DegreeType, sensorProbeDrycontactArrayPort3ContTimeNormal=sensorProbeDrycontactArrayPort3ContTimeNormal, sensorProbeTemperatureArrayPort3ContTimeLowWarning=sensorProbeTemperatureArrayPort3ContTimeLowWarning, spVirtual12Status=spVirtual12Status, sensorProbeDrycontactArrayPort7=sensorProbeDrycontactArrayPort7, sensorFuelIndex=sensorFuelIndex, sensorTemperatureRearm=sensorTemperatureRearm, sensorFuelLowWarning=sensorFuelLowWarning, sensorSecurityCriticalDesc=sensorSecurityCriticalDesc, sensorAirflowHighWarningDesc=sensorAirflowHighWarningDesc, spRelayArray4_3Status=spRelayArray4_3Status, sensorProbeVirtualSwitchOpenURL=sensorProbeVirtualSwitchOpenURL, sensorProbeTemperatureArrayPort4HighCritical=sensorProbeTemperatureArrayPort4HighCritical, sensorProbeSoundDetectorHighCritical=sensorProbeSoundDetectorHighCritical, sensorProbeHumidityEmailTrapSchedule=sensorProbeHumidityEmailTrapSchedule, sensorProbeTemperatureArrayPort1DegreeRaw=sensorProbeTemperatureArrayPort1DegreeRaw, sensorProbeThermostatTemperatureArrayPort1GoOnline=sensorProbeThermostatTemperatureArrayPort1GoOnline, sensorThermostatStatus=sensorThermostatStatus, sensorTankSenderLowCritical=sensorTankSenderLowCritical, spSenUnknownStatus=spSenUnknownStatus, sensorProbeRelayArrayPort2Entry=sensorProbeRelayArrayPort2Entry, sensorProbeTemperatureArrayPort4Offset=sensorProbeTemperatureArrayPort4Offset, sensorProbeTemperatureArrayPort2Status=sensorProbeTemperatureArrayPort2Status, sensorProbeSwitchWaterRopeLeakLocation=sensorProbeSwitchWaterRopeLeakLocation, sensorProbeTempDescription=sensorProbeTempDescription, sensorProbeSwitchContTimeNormal=sensorProbeSwitchContTimeNormal, spSwitch10Status=spSwitch10Status, sensorProbeSoftMotionDescription=sensorProbeSoftMotionDescription, sensorProbeDrycontactArrayPort1Description=sensorProbeDrycontactArrayPort1Description, sensorProbeDrycontactArrayPort4Index=sensorProbeDrycontactArrayPort4Index, sensor4to20mAPort=sensor4to20mAPort, sensorProbeTemperatureArrayPort7LowCritical=sensorProbeTemperatureArrayPort7LowCritical, sensorProbeThermostatTemperatureArrayPort5HighLimit2=sensorProbeThermostatTemperatureArrayPort5HighLimit2, sensorHumiditySensorErrorColor=sensorHumiditySensorErrorColor, sensorProbeTempAcknowledgement=sensorProbeTempAcknowledgement, sensorPowerNormalDesc=sensorPowerNormalDesc, sensorProbeSoundDetectorCalendar=sensorProbeSoundDetectorCalendar, sensorProbeDrycontactArrayPort1Online=sensorProbeDrycontactArrayPort1Online, sensorProbeRelayArrayPort7URL=sensorProbeRelayArrayPort7URL, sensorProbeTrapReIntervalAlive=sensorProbeTrapReIntervalAlive, sensorProbeThermostatTemperatureArrayPort3LowLimitAction2=sensorProbeThermostatTemperatureArrayPort3LowLimitAction2, sensorProbeTemperatureArrayPort7=sensorProbeTemperatureArrayPort7, sensorProbeTemperatureArrayPort8GoOnline=sensorProbeTemperatureArrayPort8GoOnline, sensorTankSenderRaw=sensorTankSenderRaw, sensorProbeVRMSContTimeSensorError=sensorProbeVRMSContTimeSensorError, spTemperature6Status=spTemperature6Status, sensorDisplayStyle=sensorDisplayStyle, spRelayArray7_3Status=spRelayArray7_3Status, sensorSirenDescription=sensorSirenDescription, sensorProbeEnergyStatus=sensorProbeEnergyStatus, sensorProbeTrapMailPollInterval=sensorProbeTrapMailPollInterval, sensorProbeTypePCF8574XRelayName=sensorProbeTypePCF8574XRelayName, sensorProbeHumidityLocation=sensorProbeHumidityLocation, sensorProbeNoCameraContTimeHighCritical=sensorProbeNoCameraContTimeHighCritical, sensorTemperatureNormalDesc=sensorTemperatureNormalDesc, sensor4to20mANormalColor=sensor4to20mANormalColor, sensorPowerDelayHighWarning=sensorPowerDelayHighWarning, spSwitch29Status=spSwitch29Status, spSwitch52Status=spSwitch52Status, sensorProbeIRMSDatacollectType=sensorProbeIRMSDatacollectType, sensorThermostatSubPort=sensorThermostatSubPort, sensorProbeMailLastStatus=sensorProbeMailLastStatus, sensorProbeVRMSOnline=sensorProbeVRMSOnline, spRelayArray6_3Status=spRelayArray6_3Status, sensorProbeTemperatureArrayPort2Offset=sensorProbeTemperatureArrayPort2Offset, sensorProbeTypeADE7763VRMSName=sensorProbeTypeADE7763VRMSName, spRelayArray2_3Status=spRelayArray2_3Status, sensorMotionCriticalDesc=sensorMotionCriticalDesc, sensorDryContactPort9GoOnline=sensorDryContactPort9GoOnline, sensorProbeThermostatTemperatureArrayPort2LowLimitAction2=sensorProbeThermostatTemperatureArrayPort2LowLimitAction2, sensorProbeEnergyCalendar=sensorProbeEnergyCalendar, sensorProbeDrycontactArrayPort1=sensorProbeDrycontactArrayPort1, sensorProbeDrycontactArrayPort7Number=sensorProbeDrycontactArrayPort7Number, sensorProbeHumiditySendTrap=sensorProbeHumiditySendTrap, sensorProbeDrycontactArrayPort7Description=sensorProbeDrycontactArrayPort7Description, sensorTemperatureLowCritical=sensorTemperatureLowCritical, sensorTemperatureDelayLowCritical=sensorTemperatureDelayLowCritical, spTemperatureArray5_2Status=spTemperatureArray5_2Status, sensorProbeTemperatureArrayPort3LowCritical=sensorProbeTemperatureArrayPort3LowCritical, sensorSecurityTable=sensorSecurityTable, sensorTemperatureHighCriticalColor=sensorTemperatureHighCriticalColor, sensorProbeSwitchLocation=sensorProbeSwitchLocation, sensorProbeSwitchRelayAction=sensorProbeSwitchRelayAction, sensorProbeVRMSContTimeLowCritical=sensorProbeVRMSContTimeLowCritical, sensorProbeTrapCommunity=sensorProbeTrapCommunity, sensorProbeThermostatTemperatureArrayPort3RelayControlPort=sensorProbeThermostatTemperatureArrayPort3RelayControlPort, sensorPowerMinValue=sensorPowerMinValue, sensorProbeEntry=sensorProbeEntry, sensorProbeSwitchRelayControlMode=sensorProbeSwitchRelayControlMode, sensorHumidityPort=sensorHumidityPort, sensorProbeWattHoursDescription=sensorProbeWattHoursDescription, sensorProbeVirtualAnalogLowWarning=sensorProbeVirtualAnalogLowWarning, sensorSmokeCriticalColor=sensorSmokeCriticalColor, sensorProbeNoCameraSensorEntry=sensorProbeNoCameraSensorEntry, spRelayArray3_5Status=spRelayArray3_5Status, sensorProbeVirtualAnalogStatus=sensorProbeVirtualAnalogStatus, sensorProbeTemperatureArrayPort8Rearm=sensorProbeTemperatureArrayPort8Rearm, sensorProbeEnergySensorIndex=sensorProbeEnergySensorIndex, sensorProbeSwitchSirenControlMode=sensorProbeSwitchSirenControlMode, sensorNormalColor=sensorNormalColor, sensorTankSenderSensorErrorDesc=sensorTankSenderSensorErrorDesc, sensorProbeDrycontactArrayPort3=sensorProbeDrycontactArrayPort3, sensorSecurityStatus=sensorSecurityStatus, sensorProbeThermostatTemperatureArrayPort6HighLimitAction2=sensorProbeThermostatTemperatureArrayPort6HighLimitAction2, sensorIntelligentPort7GoOnline=sensorIntelligentPort7GoOnline, sensorTemperatureTable=sensorTemperatureTable, spEnergy6Status=spEnergy6Status, sensorProbeTemperatureArrayPort1URL=sensorProbeTemperatureArrayPort1URL, sensorProbeTrapDestination=sensorProbeTrapDestination, sensorProbeTemperatureArrayPort8ContTimeLowWarning=sensorProbeTemperatureArrayPort8ContTimeLowWarning, sensorFuelStatus=sensorFuelStatus, sensorProbeSoftMotionSensorNumber=sensorProbeSoftMotionSensorNumber, spEnergy1Status=spEnergy1Status, sensorProbeTemperatureArrayPort3Description=sensorProbeTemperatureArrayPort3Description, sensorProbeSoundDetectorIndex=sensorProbeSoundDetectorIndex, sensorProbeTemperatureArrayPort1LowCritical=sensorProbeTemperatureArrayPort1LowCritical, sensorThermostatLowWarningColor=sensorThermostatLowWarningColor, spVirtual6Status=spVirtual6Status, sensorProbeNumberOfSensorPort=sensorProbeNumberOfSensorPort, sensorProbeThermostatTemperatureArrayPort3Value=sensorProbeThermostatTemperatureArrayPort3Value, sensorProbeNoCameraContTimeNormal=sensorProbeNoCameraContTimeNormal, sensorTankSenderValue=sensorTankSenderValue, sensorProbeFirmwareVersion=sensorProbeFirmwareVersion, sensorProbeTemperatureArrayPort4Online=sensorProbeTemperatureArrayPort4Online, sensorProbeThermostatTemperatureArrayPort2Description=sensorProbeThermostatTemperatureArrayPort2Description, spRelayArray1_5Status=spRelayArray1_5Status, spVirtual13Status=spVirtual13Status, sensorProbeTemperatureArrayPort6Description=sensorProbeTemperatureArrayPort6Description, spRelayArray8_2Status=spRelayArray8_2Status, sensorProbeRelayArrayPort7Number=sensorProbeRelayArrayPort7Number, secSensor=secSensor, sensorProbeTemperatureArrayPort5HighWarning=sensorProbeTemperatureArrayPort5HighWarning, spRelayArray4_1Status=spRelayArray4_1Status, sensorTemperatureDisplayStyle=sensorTemperatureDisplayStyle, sensorProbeTemperatureArrayPort6ContTimeHighWarning=sensorProbeTemperatureArrayPort6ContTimeHighWarning, sensor4to20mADisplayStyle=sensor4to20mADisplayStyle, sensorProbeIRMSRelayActiveStatus=sensorProbeIRMSRelayActiveStatus, sensorProbeTemperatureArrayPort5DatacollectType=sensorProbeTemperatureArrayPort5DatacollectType, sensorPowerLowWarning=sensorPowerLowWarning, sensorProbeIRMSAcknowledgement=sensorProbeIRMSAcknowledgement, sensorProbeTempEmailInterval=sensorProbeTempEmailInterval, sensorProbeSubnetMask=sensorProbeSubnetMask, spRelayArray6_8Status=spRelayArray6_8Status, spIRMS6Status=spIRMS6Status, sensorProbeThermostatTemperatureArrayPort1Description=sensorProbeThermostatTemperatureArrayPort1Description, spRelayArray7_6Status=spRelayArray7_6Status, sensorProbeTemperatureArrayPort2DegreeType=sensorProbeTemperatureArrayPort2DegreeType, sensorProbeRelayArrayPort3Status=sensorProbeRelayArrayPort3Status, spRelayArray2_5Status=spRelayArray2_5Status, sensorProbeVirtualSwitchDescription=sensorProbeVirtualSwitchDescription, sensorProbeTemperatureArrayPort3HighWarning=sensorProbeTemperatureArrayPort3HighWarning, sensorProbeHumidityRelayActiveStatus=sensorProbeHumidityRelayActiveStatus, sensorProbeSoftMotionContTimeHighCritical=sensorProbeSoftMotionContTimeHighCritical, sensorTemperatureGoOffline=sensorTemperatureGoOffline, sensorProbeTemperatureArrayPort1Online=sensorProbeTemperatureArrayPort1Online, sensorProbeRelayArrayPort4ManualRelayCycleTime=sensorProbeRelayArrayPort4ManualRelayCycleTime, sensorProbeDrycontactArrayPort5GoOnline=sensorProbeDrycontactArrayPort5GoOnline, sensorThermostatDelayHighCritical=sensorThermostatDelayHighCritical, sensorFuelLowCriticalDesc=sensorFuelLowCriticalDesc, sensorProbeSetSyslogMsgPrefix=sensorProbeSetSyslogMsgPrefix, sensorProbeTypePowerMeterName=sensorProbeTypePowerMeterName, sensorProbeRelayArrayPort8URL=sensorProbeRelayArrayPort8URL, sensorProbeDrycontactArrayPort7OutputDescOn=sensorProbeDrycontactArrayPort7OutputDescOn, sensorProbeMailSMTP=sensorProbeMailSMTP, sensorProbeTempSirenOnPort=sensorProbeTempSirenOnPort, sensorProbeRelayArrayPort1Online=sensorProbeRelayArrayPort1Online, sensorSmokeStatus=sensorSmokeStatus, sensorProbeThermostatTemperatureArrayPort4Description=sensorProbeThermostatTemperatureArrayPort4Description, spTemperature5Status=spTemperature5Status, sensorProbeRelayArrayPort1NormalState=sensorProbeRelayArrayPort1NormalState, sensorProbeTypeDrycontactInoutName=sensorProbeTypeDrycontactInoutName, sensorEntry=sensorEntry) mibBuilder.exportSymbols('SPAGENT-MIB', sensorSecurityEntry=sensorSecurityEntry, sensorProbeTraps=sensorProbeTraps, sensorProbeDrycontactArrayPort1Direction=sensorProbeDrycontactArrayPort1Direction, spEnergy2Status=spEnergy2Status, sensorProbeSwitchOnline=sensorProbeSwitchOnline, sensorThermostatHighCriticalDesc=sensorThermostatHighCriticalDesc, sensorProbeDrycontactArrayPort3ContTimeCritical=sensorProbeDrycontactArrayPort3ContTimeCritical, sensorProbeThermostatHighLimitAction2=sensorProbeThermostatHighLimitAction2, sensorProbeSwitchManualRelayCycleTime=sensorProbeSwitchManualRelayCycleTime, spCriticalStatus=spCriticalStatus, sensorProbeDrycontactArrayPort4=sensorProbeDrycontactArrayPort4, sensor4to20mALowCritical=sensor4to20mALowCritical, sensorRelayManualCycleTime=sensorRelayManualCycleTime, sensorProbeVRMSContTimeLowWarning=sensorProbeVRMSContTimeLowWarning, sensorProbeTempEmailTrapLimit=sensorProbeTempEmailTrapLimit, sensorHumidityDisplayStyle=sensorHumidityDisplayStyle, sensorProbeDrycontactArrayPort8OutputDescOff=sensorProbeDrycontactArrayPort8OutputDescOff, spRelayArray3_4Status=spRelayArray3_4Status, sensorProbeEnergyGoOnline=sensorProbeEnergyGoOnline, sensorLowWarningDescription=sensorLowWarningDescription, spTemperatureStatus=spTemperatureStatus, sensorProbeThermostatTemperatureArrayPort7NormalAction2=sensorProbeThermostatTemperatureArrayPort7NormalAction2, sensorDryContactSubPort=sensorDryContactSubPort, sensorDryContactPort14GoOnline=sensorDryContactPort14GoOnline, sensorProbeRouteAdd=sensorProbeRouteAdd, sensorProbeSwitchAcknowledgement=sensorProbeSwitchAcknowledgement, sensorProbeTemperatureArrayPort7Online=sensorProbeTemperatureArrayPort7Online, sensorProbeTemperatureArrayPort3Entry=sensorProbeTemperatureArrayPort3Entry, deviceInfo=deviceInfo, spRelayArray2_8Status=spRelayArray2_8Status, sensorProbeRelayArrayPort7Index=sensorProbeRelayArrayPort7Index, sensorProbeIRMSHighWarning=sensorProbeIRMSHighWarning, sensorHumidityRaw=sensorHumidityRaw, sensorProbeAutoSense=sensorProbeAutoSense, spVirtual15Status=spVirtual15Status, spRelayArray7_4Status=spRelayArray7_4Status, spVRMS1Status=spVRMS1Status, sensorProbeThermostatTemperatureArrayPort5EnableTime=sensorProbeThermostatTemperatureArrayPort5EnableTime, spSwitch54Status=spSwitch54Status, spStatus=spStatus, sensorProbeIRMSSirenActiveStatus=sensorProbeIRMSSirenActiveStatus, sensorProbeSwitchDescription=sensorProbeSwitchDescription, sensorProbeThermostatTemperatureArrayPort8LowLimitAction2=sensorProbeThermostatTemperatureArrayPort8LowLimitAction2, sensorSirenDeviceIndex=sensorSirenDeviceIndex, spSwitch67Status=spSwitch67Status, sensorThermostatGoOffline=sensorThermostatGoOffline, sensorProbeHumidityCalendar=sensorProbeHumidityCalendar, spAnalogueStatus=spAnalogueStatus, sensorProbeRelayArrayPort8GoOnline=sensorProbeRelayArrayPort8GoOnline, sensorProbeVirtualSwitchContTimeNormal=sensorProbeVirtualSwitchContTimeNormal, sensorPowerInterval=sensorPowerInterval, sensorWaterRopeNormalDesc=sensorWaterRopeNormalDesc, spSwitch56Status=spSwitch56Status, sensorProbeTemperatureArrayPort8ContTimeHighCritical=sensorProbeTemperatureArrayPort8ContTimeHighCritical, sensorDCvoltageHighCritical=sensorDCvoltageHighCritical, sensorDCvoltageDisplayStyle=sensorDCvoltageDisplayStyle, spRelayArray5_6Status=spRelayArray5_6Status, sensorProbeSnmpTrapPort=sensorProbeSnmpTrapPort, sensorProbeTemperatureArrayPort1Entry=sensorProbeTemperatureArrayPort1Entry, sensorProbeDrycontactArrayPort1Status=sensorProbeDrycontactArrayPort1Status, sensorProbeDrycontactArrayPort2Online=sensorProbeDrycontactArrayPort2Online, spIRMS4Status=spIRMS4Status, sensorProbeTemperatureArrayPort4ContTimeLowWarning=sensorProbeTemperatureArrayPort4ContTimeLowWarning, sensorProbeUsePassword=sensorProbeUsePassword, sensorProbeTemperatureArrayPort7Calendar=sensorProbeTemperatureArrayPort7Calendar, sensorProbeRequestResendTrap=sensorProbeRequestResendTrap, sensorProbeTemperatureArrayPort5URL=sensorProbeTemperatureArrayPort5URL, sensorProbeTemperatureArrayPort8Calendar=sensorProbeTemperatureArrayPort8Calendar, sensorProbeTemperatureArrayPort2URL=sensorProbeTemperatureArrayPort2URL, sensorProbeTemperatureArrayPort4URL=sensorProbeTemperatureArrayPort4URL, sensorTankSenderUnit=sensorTankSenderUnit, sensorProbeRelayArrayPort3ManualRelayAction=sensorProbeRelayArrayPort3ManualRelayAction, sensorTankSenderLowWarning=sensorTankSenderLowWarning, spSwitch36Status=spSwitch36Status, spTemperatureArray6Status=spTemperatureArray6Status, sensorMotionPort=sensorMotionPort, sensorProbeClearSysLog=sensorProbeClearSysLog, sensorProbeDrycontactArrayPort2Table=sensorProbeDrycontactArrayPort2Table, spTemperatureArray5Status=spTemperatureArray5Status, sensorProbeEnergyHighCritical=sensorProbeEnergyHighCritical, sensorProbeTemperatureArrayPort5ContTimeHighCritical=sensorProbeTemperatureArrayPort5ContTimeHighCritical, sensorProbeThermostatTemperatureArrayPort5NormalAction2=sensorProbeThermostatTemperatureArrayPort5NormalAction2, sensorPowerValue=sensorPowerValue, sensorProbeThermostatTemperatureArrayPort5LowLimit1=sensorProbeThermostatTemperatureArrayPort5LowLimit1, sensorHumiditySubPort=sensorHumiditySubPort, sensorTemperatureStatus=sensorTemperatureStatus, sensorProbeThermostatTemperatureArrayPort6Value=sensorProbeThermostatTemperatureArrayPort6Value, sensorProbeTemperatureArrayPort2ContTimeNormal=sensorProbeTemperatureArrayPort2ContTimeNormal, sensorProbeHumidityEmailInterval=sensorProbeHumidityEmailInterval, sensorProbeTemperatureArrayPort3DegreeRaw=sensorProbeTemperatureArrayPort3DegreeRaw, sensorDryContactIndex=sensorDryContactIndex, sensor4to20mALowCriticalColor=sensor4to20mALowCriticalColor, sensorProbeDrycontactArrayPort5OutputDescOn=sensorProbeDrycontactArrayPort5OutputDescOn, sensorProbeTemperatureArrayPort4HighWarning=sensorProbeTemperatureArrayPort4HighWarning, sensorProbeSwitchNormalState=sensorProbeSwitchNormalState, sensorProbeProductRevision=sensorProbeProductRevision, spTemperature7Status=spTemperature7Status, sensorProbeTempDegreeRaw=sensorProbeTempDegreeRaw, sensorProbePTZBrand=sensorProbePTZBrand, sensorProbeDrycontactArrayPort3Direction=sensorProbeDrycontactArrayPort3Direction, sensorAirflowRaw=sensorAirflowRaw, sensorProbeDrycontactArrayPort3ManualOutputAction=sensorProbeDrycontactArrayPort3ManualOutputAction, sensorTemperatureHighWarningDesc=sensorTemperatureHighWarningDesc, sensorDryContactDirection=sensorDryContactDirection, sensorProbeDrycontactArrayPort5URL=sensorProbeDrycontactArrayPort5URL, sensorWaterDescription=sensorWaterDescription, sensorProbeVRMSRaw=sensorProbeVRMSRaw, sensorProbeTemperatureArrayPort4ContTimeSensorError=sensorProbeTemperatureArrayPort4ContTimeSensorError, sensorProbeTemperatureArrayPort6HighCritical=sensorProbeTemperatureArrayPort6HighCritical, sensorProbeSoundDetectorContTimeSensorError=sensorProbeSoundDetectorContTimeSensorError, sensorIntelligentPort8GoOnline=sensorIntelligentPort8GoOnline, sensorProbeThermostatTemperatureArrayPort1NormalAction1=sensorProbeThermostatTemperatureArrayPort1NormalAction1, sensorProbeTypeAirflowName=sensorProbeTypeAirflowName, sensorDCvoltageJumper=sensorDCvoltageJumper, sensorSmokeIndex=sensorSmokeIndex, sensorProbeRelayArrayPort1Table=sensorProbeRelayArrayPort1Table, sensorProbeRelayArrayPort6RelayCycleTime=sensorProbeRelayArrayPort6RelayCycleTime, sensorProbeRelayArrayPort3=sensorProbeRelayArrayPort3, sensorProbeThermostatTemperatureArrayPort7GoOnline=sensorProbeThermostatTemperatureArrayPort7GoOnline, spRelayArray8Status=spRelayArray8Status, spSwitch45Status=spSwitch45Status, sensorDryContactPort10GoOnline=sensorDryContactPort10GoOnline, sensorProbeThermostatTemperatureArrayPort4LowLimitAction1=sensorProbeThermostatTemperatureArrayPort4LowLimitAction1, spTemperatureArray3_6Status=spTemperatureArray3_6Status, sensorProbeHumidity4to20mAUnit=sensorProbeHumidity4to20mAUnit, sensorProbeVRMSSirenAction=sensorProbeVRMSSirenAction, spSwitch19Status=spSwitch19Status, spTemperatureArray4_7Status=spTemperatureArray4_7Status, sensorProbeTypeXDryName=sensorProbeTypeXDryName, sensorFuelLowCriticalColor=sensorFuelLowCriticalColor, sensorProbeProductType=sensorProbeProductType, sensorProbeTemperatureArrayPort6DatacollectType=sensorProbeTemperatureArrayPort6DatacollectType, sensorProbeIRMSSirenAction=sensorProbeIRMSSirenAction, sensorProbeTemperatureArrayPort8URL=sensorProbeTemperatureArrayPort8URL, sensorProbeDrycontactArrayPort4Number=sensorProbeDrycontactArrayPort4Number, sensorProbeTypeSHT11HumidityName=sensorProbeTypeSHT11HumidityName, sensorTemperatureLowWarning=sensorTemperatureLowWarning, sensorMotionSubPort=sensorMotionSubPort, spRelayArray5_3Status=spRelayArray5_3Status, sensorHumidityPercent=sensorHumidityPercent, spSwitch30Status=spSwitch30Status, sensorProbeIRMSCalendar=sensorProbeIRMSCalendar, spUnknownStatus=spUnknownStatus, sensorProbeRelayArrayPort8Online=sensorProbeRelayArrayPort8Online, sensorProbeThermostatLowLimit1=sensorProbeThermostatLowLimit1, spRelayArray3Status=spRelayArray3Status, sensorProbeThermostatTemperatureArrayPort6LowLimit2=sensorProbeThermostatTemperatureArrayPort6LowLimit2, sensorProbeTimeOfDay=sensorProbeTimeOfDay, sensorProbeIRMSContTimeLowWarning=sensorProbeIRMSContTimeLowWarning, sensorPowerStatus=sensorPowerStatus, sensorProbeTemperatureArrayPort5Description=sensorProbeTemperatureArrayPort5Description, sensorProbeDNSServer=sensorProbeDNSServer, sensorProbeEnergyRearm=sensorProbeEnergyRearm, sensorProbeDrycontactArrayPort2OpenURL=sensorProbeDrycontactArrayPort2OpenURL, sensorDCvoltageGoOffline=sensorDCvoltageGoOffline, sensorProbeRelayArrayPort5ManualRelayAction=sensorProbeRelayArrayPort5ManualRelayAction, sensorProbeThermostatTemperatureArrayPort3HighLimit2=sensorProbeThermostatTemperatureArrayPort3HighLimit2, sensorDCvoltageDeviceIndex=sensorDCvoltageDeviceIndex, sensorProbeDrycontactArrayPort3Description=sensorProbeDrycontactArrayPort3Description, sensorProbeThermostatTemperatureArrayPort5Value=sensorProbeThermostatTemperatureArrayPort5Value, sensorProbeTemperatureArraySensor=sensorProbeTemperatureArraySensor, sensorProbeTemperatureArrayPort3ContTimeNormal=sensorProbeTemperatureArrayPort3ContTimeNormal, sensorProbeTemperatureArrayPort3ContTimeHighWarning=sensorProbeTemperatureArrayPort3ContTimeHighWarning, sensorNormalDescription=sensorNormalDescription, sensorProbeHumidityTable=sensorProbeHumidityTable, sensorFuelTable=sensorFuelTable, sensorProbeThermostatTemperatureArrayPort4Index=sensorProbeThermostatTemperatureArrayPort4Index, sensorProbeIRMSContTimeLowCritical=sensorProbeIRMSContTimeLowCritical, sensorTankSenderHighWarning=sensorTankSenderHighWarning, sensor4to20mASensorErrorDesc=sensor4to20mASensorErrorDesc, sensor4to20mALowWarning=sensor4to20mALowWarning, sensorProbeSwitchOutputLevel=sensorProbeSwitchOutputLevel, sensorProbeVirtualAnalogRearm=sensorProbeVirtualAnalogRearm, sensorProbeEnergySirenCycleTime=sensorProbeEnergySirenCycleTime, sensorThermostatEntry=sensorThermostatEntry, sensorDCvoltageLowCriticalDesc=sensorDCvoltageLowCriticalDesc, sensorHumidityDelayNormal=sensorHumidityDelayNormal, sensorProbeRelayArrayPort8ManualRelayAction=sensorProbeRelayArrayPort8ManualRelayAction, sensorProbeTemperatureArrayPort6Online=sensorProbeTemperatureArrayPort6Online, sensorPowerDelayLowCritical=sensorPowerDelayLowCritical, sensorProbeThermostatTemperatureArrayPort3HighLimit1=sensorProbeThermostatTemperatureArrayPort3HighLimit1, sensorTemperatureIndex=sensorTemperatureIndex, sensorProbeDrycontactArrayPort1Index=sensorProbeDrycontactArrayPort1Index, sensorProbeSoftMotionContTimeNormal=sensorProbeSoftMotionContTimeNormal, sensorProbeDrycontactArrayPort1Table=sensorProbeDrycontactArrayPort1Table, sensorDCvoltageStatus=sensorDCvoltageStatus, sensorProbeRelayArrayPort5Table=sensorProbeRelayArrayPort5Table, sensorProbeTempDegreeType=sensorProbeTempDegreeType, spAnalogue7Status=spAnalogue7Status, spSwitch53Status=spSwitch53Status, sensorProbeSwitchOpenURL=sensorProbeSwitchOpenURL, sensorProbeThermostatTemperatureArrayPort2NormalAction2=sensorProbeThermostatTemperatureArrayPort2NormalAction2, sensorProbeDrycontactArrayPort6Number=sensorProbeDrycontactArrayPort6Number, spManufName=spManufName, sensorProbeEnergyOpenURL=sensorProbeEnergyOpenURL, sensorProbeThermostatTemperatureArrayPort1HighLimit2=sensorProbeThermostatTemperatureArrayPort1HighLimit2, spSwitch28Status=spSwitch28Status, sensorProbeSwitchSendMail=sensorProbeSwitchSendMail, sensorProbeMailRecpt=sensorProbeMailRecpt, sensorProbeDrycontactArrayPort3Status=sensorProbeDrycontactArrayPort3Status, sensorProbeRelayArrayPort1Entry=sensorProbeRelayArrayPort1Entry, sensorProbeThermostatTemperatureArrayPort7HighLimitAction2=sensorProbeThermostatTemperatureArrayPort7HighLimitAction2, sensorProbeRelayArrayPort6GoOnline=sensorProbeRelayArrayPort6GoOnline, sensorProbeThermostatTemperatureArrayPort6Index=sensorProbeThermostatTemperatureArrayPort6Index, spTemperatureArray3_8Status=spTemperatureArray3_8Status, spVirtual7Status=spVirtual7Status, sensorProbeNtpMode=sensorProbeNtpMode, spTemperatureArray4_1Status=spTemperatureArray4_1Status, sensorProbeThermostatTemperatureArrayPort4EnableTime=sensorProbeThermostatTemperatureArrayPort4EnableTime, spRelayArray7_1Status=spRelayArray7_1Status, sensorProbeRelayArrayPort6Description=sensorProbeRelayArrayPort6Description, sensorTankSenderDelayHighWarning=sensorTankSenderDelayHighWarning, spSensorType=spSensorType, sensorProbeRelayArrayPort1URL=sensorProbeRelayArrayPort1URL, sensorAirflowDelayHighCritical=sensorAirflowDelayHighCritical, sensorProbeThermostatTemperatureArrayPort6EnableTime=sensorProbeThermostatTemperatureArrayPort6EnableTime, sensorTemperatureDescription=sensorTemperatureDescription, sensorProbeVirtualSwitchNormalState=sensorProbeVirtualSwitchNormalState, sensorProbeRelayArrayPort3Table=sensorProbeRelayArrayPort3Table, sensorProbeTemperatureArrayPort7LowWarning=sensorProbeTemperatureArrayPort7LowWarning, spTemperatureArray2Status=spTemperatureArray2Status, sensorProbeIRMSOnline=sensorProbeIRMSOnline, sensorProbeCameraRotate=sensorProbeCameraRotate, sensorProbeVirtualAnalogUnit=sensorProbeVirtualAnalogUnit, sensorHumidityLowWarning=sensorHumidityLowWarning, sensorProbeVirtualAnalogOnline=sensorProbeVirtualAnalogOnline, sensorProbeHumidityDelayError=sensorProbeHumidityDelayError, sensorProbeRelayArrayPort2Number=sensorProbeRelayArrayPort2Number, deviceIntelligentInfo=deviceIntelligentInfo, sensorProbeDrycontactArrayPort2ContTimeNormal=sensorProbeDrycontactArrayPort2ContTimeNormal, sensorProbeRelayArrayPort2Table=sensorProbeRelayArrayPort2Table, sensorProbeHumidityStatus=sensorProbeHumidityStatus, sensorProbeIRMSRelayOnPort=sensorProbeIRMSRelayOnPort, sensorProbeTempSirenActiveStatus=sensorProbeTempSirenActiveStatus, sensorProbeTemperatureArrayPort7DegreeType=sensorProbeTemperatureArrayPort7DegreeType, sensorProbeThermostatTemperatureArrayPort6LowLimit1=sensorProbeThermostatTemperatureArrayPort6LowLimit1, sensorSirenStatus=sensorSirenStatus, sensorProbeTemperatureArrayPort5ContTimeNormal=sensorProbeTemperatureArrayPort5ContTimeNormal, spTemperatureArray2_7Status=spTemperatureArray2_7Status, spBoardDescription=spBoardDescription, sensorProbeRelayArrayPort5URL=sensorProbeRelayArrayPort5URL, sensorProbeIRMSEmailTrapLimit=sensorProbeIRMSEmailTrapLimit, sensorProbeTemperatureArrayPort3Rearm=sensorProbeTemperatureArrayPort3Rearm, sensorTankSenderDelayNormal=sensorTankSenderDelayNormal, sensorProbeDrycontactArrayPort7ManualOutputAction=sensorProbeDrycontactArrayPort7ManualOutputAction, sensorProbeTemperatureArrayPort1Index=sensorProbeTemperatureArrayPort1Index, sensorProbeThermostatTemperatureArrayPort6Description=sensorProbeThermostatTemperatureArrayPort6Description, sensorProbeTemperatureArrayPort8Number=sensorProbeTemperatureArrayPort8Number, sensorProbeDrycontactArrayPort7Table=sensorProbeDrycontactArrayPort7Table, sensorProbeRelayArrayPort4URL=sensorProbeRelayArrayPort4URL, sensorWaterRopeDeviceIndex=sensorWaterRopeDeviceIndex, sensorProbeTemperatureArrayPort6ContTimeSensorError=sensorProbeTemperatureArrayPort6ContTimeSensorError, sensorDCvoltageHighCriticalColor=sensorDCvoltageHighCriticalColor, sensorThermostatDisplayStyle=sensorThermostatDisplayStyle) mibBuilder.exportSymbols('SPAGENT-MIB', sensorLowCriticalDescription=sensorLowCriticalDescription, sensorFuelAmountMaxValue=sensorFuelAmountMaxValue, sensorRelayDescription=sensorRelayDescription, sensorDryContactNormalState=sensorDryContactNormalState, sensorProbeThermostatTemperatureArrayPort8Online=sensorProbeThermostatTemperatureArrayPort8Online, sensorThermostatTable=sensorThermostatTable, spTemperatureArray2_1Status=spTemperatureArray2_1Status, sensorFuelDelayNormal=sensorFuelDelayNormal, sensorProbeHumidityURL=sensorProbeHumidityURL, sensorProbeHumidityEmailTrapInterval=sensorProbeHumidityEmailTrapInterval, sensorProbeDrycontactArrayPort6ManualOutputAction=sensorProbeDrycontactArrayPort6ManualOutputAction, deviceIntelligentIndex=deviceIntelligentIndex, sensorProbeTempSirenCycleTime=sensorProbeTempSirenCycleTime, sensorACvoltageGoOffline=sensorACvoltageGoOffline, sensorProbeSwitchManualRelayAction=sensorProbeSwitchManualRelayAction, sensorProbeVirtualAnalogGoOnline=sensorProbeVirtualAnalogGoOnline, sensorProbeTempLocation=sensorProbeTempLocation, sensorProbeTemperatureArrayPort2ContTimeSensorError=sensorProbeTemperatureArrayPort2ContTimeSensorError, sensorProbeTemperatureArrayPort5Index=sensorProbeTemperatureArrayPort5Index, spSwitch18Status=spSwitch18Status, sensorProbeSoftMotionCalendar=sensorProbeSoftMotionCalendar, sensorProbeThermostatTemperatureArrayPort2Value=sensorProbeThermostatTemperatureArrayPort2Value, sensorProbeIRMSRelayAction=sensorProbeIRMSRelayAction, sensorProbeTemperatureArrayPort7Rearm=sensorProbeTemperatureArrayPort7Rearm, sensorProbeTemperatureArrayPort8LowCritical=sensorProbeTemperatureArrayPort8LowCritical, sensorProbeVirtualAnalogDescription=sensorProbeVirtualAnalogDescription, sensorDCvoltageValue=sensorDCvoltageValue, sensorProbeTemperatureArrayPort6ContTimeHighCritical=sensorProbeTemperatureArrayPort6ContTimeHighCritical, deviceDescription=deviceDescription, sensorProbeSoundDetectorPulseLength=sensorProbeSoundDetectorPulseLength, sensorProbeTemperatureArrayPort7Value=sensorProbeTemperatureArrayPort7Value, sensorProbeDrycontactArrayPort4Online=sensorProbeDrycontactArrayPort4Online, sensorProbeDrycontactArrayPort6Index=sensorProbeDrycontactArrayPort6Index, sensorHumidityHighCritical=sensorHumidityHighCritical, sensorProbeEnergyRelayAction=sensorProbeEnergyRelayAction, sensorProbeThermostatTemperatureArrayPort3LowLimit2=sensorProbeThermostatTemperatureArrayPort3LowLimit2, sensorProbeDrycontactArrayPort8OutputDescOn=sensorProbeDrycontactArrayPort8OutputDescOn, sensorDryContactOnDesc=sensorDryContactOnDesc, sensorProbeDrycontactArrayPort7GoOnline=sensorProbeDrycontactArrayPort7GoOnline, sensorProbeThermostatHighLimitAction1=sensorProbeThermostatHighLimitAction1, sensorThermostatHighCritical=sensorThermostatHighCritical, sensorHumidityDelayLowCritical=sensorHumidityDelayLowCritical, sensorProbeDrycontactArrayPort1URL=sensorProbeDrycontactArrayPort1URL, spSwitch39Status=spSwitch39Status, sensorProbeEnergyContTimeNormal=sensorProbeEnergyContTimeNormal, sensorProbeSoundDetectorLowCritical=sensorProbeSoundDetectorLowCritical, sensorProbeRelayArrayPort4OpenURL=sensorProbeRelayArrayPort4OpenURL, spEnergy7Status=spEnergy7Status, sensorProbeTemperatureArrayPort1Calendar=sensorProbeTemperatureArrayPort1Calendar, sensorProbeVRMSRelayOnPort=sensorProbeVRMSRelayOnPort, sensorProbeTemperatureArrayPort8Index=sensorProbeTemperatureArrayPort8Index, sensorProbeHumidityRearm=sensorProbeHumidityRearm, sensorTemperatureNormalColor=sensorTemperatureNormalColor, sensorHumidityNormalDesc=sensorHumidityNormalDesc, sensorProbeIRMSContTimeHighCritical=sensorProbeIRMSContTimeHighCritical, sensorProbeDrycontactArrayPort2Direction=sensorProbeDrycontactArrayPort2Direction, sensorProbeDrycontactArrayPort2ContTimeCritical=sensorProbeDrycontactArrayPort2ContTimeCritical, sensorProbeTempLowCritical=sensorProbeTempLowCritical, sensorWaterRopeSensorErrorColor=sensorWaterRopeSensorErrorColor, sensorProbeEnergySirenOnPort=sensorProbeEnergySirenOnPort, sensorProbeVRMSOpenURL=sensorProbeVRMSOpenURL, sensorProbeHumiditySendNormalTrap=sensorProbeHumiditySendNormalTrap, sensorProbeTemperatureArrayPort2ContTimeHighCritical=sensorProbeTemperatureArrayPort2ContTimeHighCritical, sensorProbeTemperatureArrayPort7ContTimeNormal=sensorProbeTemperatureArrayPort7ContTimeNormal, sensorProbeAltWebPort=sensorProbeAltWebPort, deviceType=deviceType, sensorProbeTemperatureArrayPort5LowWarning=sensorProbeTemperatureArrayPort5LowWarning, sensorProbeDrycontactArrayPort5ControlMode=sensorProbeDrycontactArrayPort5ControlMode, sensorPowerIndex=sensorPowerIndex, sensorProbeDrycontactArrayPort5Status=sensorProbeDrycontactArrayPort5Status, spSensorAliveHigh=spSensorAliveHigh, sensorProbeTemperatureArrayPort1ContTimeNormal=sensorProbeTemperatureArrayPort1ContTimeNormal, spTemperatureArray7_5Status=spTemperatureArray7_5Status, sensorProbeDrycontactArrayPort6Table=sensorProbeDrycontactArrayPort6Table, sensorProbeTemperatureArrayPort2HighCritical=sensorProbeTemperatureArrayPort2HighCritical, sensorRelayOffDesc=sensorRelayOffDesc, sensorProbeRelayArrayPort6URL=sensorProbeRelayArrayPort6URL, sensorProbeThermostatLowLimit2=sensorProbeThermostatLowLimit2, sensorProbeThermostatTemperatureArrayPort3Index=sensorProbeThermostatTemperatureArrayPort3Index, sensorProbeRelayArrayPort4NormalState=sensorProbeRelayArrayPort4NormalState, sensorProbeMailSubject=sensorProbeMailSubject, sensorHumidityDelayHighCritical=sensorHumidityDelayHighCritical, sensorProbeRelayArrayPort4Online=sensorProbeRelayArrayPort4Online, sensorProbeVirtualAnalogRaw=sensorProbeVirtualAnalogRaw, sensorAirflowLowCritical=sensorAirflowLowCritical, spTemperatureArray4_2Status=spTemperatureArray4_2Status, sensorTemperatureRaw=sensorTemperatureRaw, sensorFuelHighCritical=sensorFuelHighCritical, sensorProbeRelayArrayPort8Index=sensorProbeRelayArrayPort8Index, sensorProbeDrycontactArrayPort1NormalState=sensorProbeDrycontactArrayPort1NormalState, sensorProbeGetCommunity=sensorProbeGetCommunity, sensorProbeHumidityRelayAction=sensorProbeHumidityRelayAction, sensorProbeRelayArrayPort5ManualRelayCycleTime=sensorProbeRelayArrayPort5ManualRelayCycleTime, spSwitch60Status=spSwitch60Status, sensorProbeVRMSDelayError=sensorProbeVRMSDelayError, spSwitch9Status=spSwitch9Status, sensorProbeSwitchEmailTrapLimit=sensorProbeSwitchEmailTrapLimit, sensorProbeVRMSDescription=sensorProbeVRMSDescription, sensorProbeHumidityContTimeHighCritical=sensorProbeHumidityContTimeHighCritical, sensorAirflowRearm=sensorAirflowRearm, spVirtual8Status=spVirtual8Status, sensorDryContactPort16GoOnline=sensorDryContactPort16GoOnline, sensorHumidityEntry=sensorHumidityEntry, sensorProbeTempEntry=sensorProbeTempEntry, spTemperatureArray3_2Status=spTemperatureArray3_2Status, sensorProbeTempSensorType=sensorProbeTempSensorType, sensorProbeRelayArrayPort1GoOnline=sensorProbeRelayArrayPort1GoOnline, sensorTankSenderHighCriticalColor=sensorTankSenderHighCriticalColor, sensorProbeMailMaxResend=sensorProbeMailMaxResend, sensorProbeTemperatureArrayPort8DatacollectType=sensorProbeTemperatureArrayPort8DatacollectType, sensorProbeThermostatTemperatureArrayPort1Mode=sensorProbeThermostatTemperatureArrayPort1Mode, sensorProbeDataCollectionPeriod=sensorProbeDataCollectionPeriod, sensorProbeHost=sensorProbeHost, sensorProbeWebUserPassword=sensorProbeWebUserPassword, sensorProbeTemperatureArrayPort8Value=sensorProbeTemperatureArrayPort8Value, sensorDryContactCriticalColor=sensorDryContactCriticalColor, sensorProbeRelayArrayPort8OpenURL=sensorProbeRelayArrayPort8OpenURL, sensorProbeTemperatureArrayPort6Entry=sensorProbeTemperatureArrayPort6Entry, sensorAirflowNormalDesc=sensorAirflowNormalDesc, sensorProbeTemperatureArrayPort7ContTimeHighWarning=sensorProbeTemperatureArrayPort7ContTimeHighWarning, spRelayArray4_4Status=spRelayArray4_4Status, sensorProbeRelayArrayPort2RelayAction=sensorProbeRelayArrayPort2RelayAction, sensorProbeThermostatHighLimit1=sensorProbeThermostatHighLimit1, sensorProbeSoftMotionSensor=sensorProbeSoftMotionSensor, sensorProbeTemperatureArrayPort1HighWarning=sensorProbeTemperatureArrayPort1HighWarning, sensorFuelUnit=sensorFuelUnit, sensorProbeCameraServerIndex=sensorProbeCameraServerIndex, sensorProbeDrycontactArrayPort1GoOnline=sensorProbeDrycontactArrayPort1GoOnline, spIRMS2Status=spIRMS2Status, sensorProbeTemperatureArrayPort7Description=sensorProbeTemperatureArrayPort7Description, sensorProbeRelayArrayPort7GoOnline=sensorProbeRelayArrayPort7GoOnline, sensorSirenManualAction=sensorSirenManualAction, sensorIntelligentPort1GoOnline=sensorIntelligentPort1GoOnline, sensorProbeTypeSHT11TempName=sensorProbeTypeSHT11TempName, sensorProbeTempRearm=sensorProbeTempRearm, sensorProbeHumidityLowCritical=sensorProbeHumidityLowCritical, sensorProbeThermostatTemperatureArrayPort6HighLimitAction1=sensorProbeThermostatTemperatureArrayPort6HighLimitAction1, sensorProbeThermostatTemperatureArrayPort7Index=sensorProbeThermostatTemperatureArrayPort7Index, sensorDryContactPort3GoOnline=sensorDryContactPort3GoOnline, sensorDCvoltageDelayLowCritical=sensorDCvoltageDelayLowCritical, sensorThermostatSensorErrorDesc=sensorThermostatSensorErrorDesc, sensorProbeRelayArrayPort2RelayCycleTime=sensorProbeRelayArrayPort2RelayCycleTime, sensorProbeDrycontactArrayPort2NormalState=sensorProbeDrycontactArrayPort2NormalState, sensorDryContactNormalDesc=sensorDryContactNormalDesc, sensorProbeSwitchWaterRopeRaw=sensorProbeSwitchWaterRopeRaw, sensorProbeThermostatValue=sensorProbeThermostatValue, sensorProbeRelayArrayPort7ControlMode=sensorProbeRelayArrayPort7ControlMode, sensorProbeIRMSContTimeSensorError=sensorProbeIRMSContTimeSensorError, sensorProbeVRMSSirenOnPort=sensorProbeVRMSSirenOnPort, sensorUnit=sensorUnit, deviceIntelligentStatus=deviceIntelligentStatus, sensorProbeRelayArrayPort5RelayDescOff=sensorProbeRelayArrayPort5RelayDescOff, sensorProbeWebPassword=sensorProbeWebPassword, sensorIntelligentPort6GoOnline=sensorIntelligentPort6GoOnline, sensorProbeVRMSRelayCycleTime=sensorProbeVRMSRelayCycleTime, sensorProbeDrycontactArrayPort2Status=sensorProbeDrycontactArrayPort2Status, sensor4to20mAValue=sensor4to20mAValue, sensor4to20mAAmountBaseVoltage=sensor4to20mAAmountBaseVoltage, sensorProbeSoundDetectorRecordingSource=sensorProbeSoundDetectorRecordingSource, sensorTemperatureEntry=sensorTemperatureEntry, sensorWaterRopeEntry=sensorWaterRopeEntry, sensorProbeRelayArrayPort8RelayCycleTime=sensorProbeRelayArrayPort8RelayCycleTime, sensorProbeThermostatTemperatureArrayPort8HighLimit2=sensorProbeThermostatTemperatureArrayPort8HighLimit2, sensorProbeThermostatHighLimit2=sensorProbeThermostatHighLimit2, sensorProbeDrycontactArrayPort1Entry=sensorProbeDrycontactArrayPort1Entry, sensorProbeTemperatureArrayPort6Index=sensorProbeTemperatureArrayPort6Index, sensorProbeRelayArrayPort2RelayDescOff=sensorProbeRelayArrayPort2RelayDescOff, spHelpUrl=spHelpUrl, spAnalogue8Status=spAnalogue8Status, sensorTankSenderSensorErrorColor=sensorTankSenderSensorErrorColor, sensorProbeTemperatureArrayPort5Online=sensorProbeTemperatureArrayPort5Online, spRelayArray6_7Status=spRelayArray6_7Status, sensorProbeDrycontactArrayPort1ControlMode=sensorProbeDrycontactArrayPort1ControlMode, sensorDryContactOffDesc=sensorDryContactOffDesc, sensorProbeRelayArrayPort5ControlMode=sensorProbeRelayArrayPort5ControlMode, sensorSmokeTable=sensorSmokeTable, sensorPowerDelayNormal=sensorPowerDelayNormal, spTemperatureArray3_1Status=spTemperatureArray3_1Status, sensorProbeTemperatureArrayPort3DegreeType=sensorProbeTemperatureArrayPort3DegreeType, sensorProbeRelayArrayPort6Table=sensorProbeRelayArrayPort6Table, sensorHumidityDelayHighWarning=sensorHumidityDelayHighWarning, sensorProbeDelayNotifyBoot=sensorProbeDelayNotifyBoot, sensorProbeTemperatureArrayPort1Offset=sensorProbeTemperatureArrayPort1Offset, spRelayArray2Status=spRelayArray2Status, sensorProbeRelayArrayPort4Index=sensorProbeRelayArrayPort4Index, sensorProbeTemperatureArrayPort8Table=sensorProbeTemperatureArrayPort8Table, sensorTemperatureSensorErrorDesc=sensorTemperatureSensorErrorDesc, sensorAirflowLowCriticalColor=sensorAirflowLowCriticalColor, sensorProbeThermostatTemperatureArrayPort8HighLimitAction2=sensorProbeThermostatTemperatureArrayPort8HighLimitAction2, sensorProbeTemperatureArrayPort4ContTimeLowCritical=sensorProbeTemperatureArrayPort4ContTimeLowCritical, sensorProbeTemperatureArrayPort6ContTimeLowCritical=sensorProbeTemperatureArrayPort6ContTimeLowCritical, sensorProbeTemperatureArrayPort4DatacollectType=sensorProbeTemperatureArrayPort4DatacollectType, sensorProbeSwitchContTimeHighCritical=sensorProbeSwitchContTimeHighCritical, sensorStatus=sensorStatus, sensorProbeThermostatTemperatureArrayPort5NormalAction1=sensorProbeThermostatTemperatureArrayPort5NormalAction1, spSensorName=spSensorName, spVirtual14Status=spVirtual14Status, sensorProbeTempDelayError=sensorProbeTempDelayError, sensorProbeThermostatTemperatureArrayPort4HighLimitAction2=sensorProbeThermostatTemperatureArrayPort4HighLimitAction2, sensorProbeDrycontactArrayPort3ManualOutputCycleTime=sensorProbeDrycontactArrayPort3ManualOutputCycleTime, sensorProbeTemperatureArrayPort2ContTimeLowCritical=sensorProbeTemperatureArrayPort2ContTimeLowCritical, sensorDCvoltageDescription=sensorDCvoltageDescription, sensorTemperatureHighCritical=sensorTemperatureHighCritical, spIRMS3Status=spIRMS3Status, sensorProbeMailTimeout=sensorProbeMailTimeout, sensorProbeDrycontactArrayPort8=sensorProbeDrycontactArrayPort8, spSummary=spSummary, sensorProbeTemperatureArrayPort2HighWarning=sensorProbeTemperatureArrayPort2HighWarning, sensorProbeThermostatNormalAction1=sensorProbeThermostatNormalAction1, sensorProbeThermostatTemperatureArrayPort7HighLimitAction1=sensorProbeThermostatTemperatureArrayPort7HighLimitAction1, sensorProbeRelayArrayPort4Table=sensorProbeRelayArrayPort4Table, spSwitch38Status=spSwitch38Status, sensorProbeRelayArrayPort7RelayAction=sensorProbeRelayArrayPort7RelayAction, sensorSirenOnDesc=sensorSirenOnDesc, sensorProbeEnergySensorTable=sensorProbeEnergySensorTable, spSwitch51Status=spSwitch51Status, sensorProbeVirtualSwitchURL=sensorProbeVirtualSwitchURL, sensorProbeDrycontactArrayPort1OutputDescOn=sensorProbeDrycontactArrayPort1OutputDescOn, sensorProbeTemperatureArrayPort4GoOnline=sensorProbeTemperatureArrayPort4GoOnline, sensorProbeVRMSURL=sensorProbeVRMSURL, sensorProbeTemperatureArrayPort4Entry=sensorProbeTemperatureArrayPort4Entry, sensorProbeDrycontactArrayPort4ControlMode=sensorProbeDrycontactArrayPort4ControlMode, spRelayArray3_7Status=spRelayArray3_7Status, sensorGoOffline=sensorGoOffline, sensorProbeHumidityAtoDTypeUnit=sensorProbeHumidityAtoDTypeUnit, sensorProbeTemperatureArrayPort4ContTimeNormal=sensorProbeTemperatureArrayPort4ContTimeNormal, sensorProbeTemperatureArrayPort7ContTimeLowWarning=sensorProbeTemperatureArrayPort7ContTimeLowWarning, sensorSirenManualCycleTime=sensorSirenManualCycleTime, deviceIntelligentTable=deviceIntelligentTable, spSwitch26Status=spSwitch26Status, sensorSirenTable=sensorSirenTable, sensorProbeThermostatTemperatureArrayPort2Mode=sensorProbeThermostatTemperatureArrayPort2Mode, sensorProbeTemperatureArrayPort6DegreeRaw=sensorProbeTemperatureArrayPort6DegreeRaw, sensorACvoltageCriticalColor=sensorACvoltageCriticalColor, spTemperatureArray3Status=spTemperatureArray3Status, sensorDryContactOutputManualCycleTime=sensorDryContactOutputManualCycleTime, sensorTankSenderDelayError=sensorTankSenderDelayError, sensorProbeVirtualAnalogSensorNumber=sensorProbeVirtualAnalogSensorNumber, sensorProbeTemperatureArrayPort2Index=sensorProbeTemperatureArrayPort2Index, sensorProbeSwitchEmailTrapInterval=sensorProbeSwitchEmailTrapInterval, sensorProbeSoundDetectorRearm=sensorProbeSoundDetectorRearm, sensorProbeAllowIPChange=sensorProbeAllowIPChange, sensorProbeHumidityDescription=sensorProbeHumidityDescription, sensorSecurityCriticalColor=sensorSecurityCriticalColor, sensorProbeThermostatTemperatureArrayPort6NormalAction2=sensorProbeThermostatTemperatureArrayPort6NormalAction2, sensorProbeDrycontactArrayPort2GoOnline=sensorProbeDrycontactArrayPort2GoOnline, sensorProbeDrycontactArrayPort5Number=sensorProbeDrycontactArrayPort5Number, sensorProbeDrycontactArrayPort8NormalState=sensorProbeDrycontactArrayPort8NormalState, sensorPowerGoOffline=sensorPowerGoOffline, sensorThermostatDeviceIndex=sensorThermostatDeviceIndex, sensorProbeTemperatureArrayPort1=sensorProbeTemperatureArrayPort1, sensorThermostatIndex=sensorThermostatIndex, sensorProbeThermostatTemperatureArrayPort2RelayControlPort=sensorProbeThermostatTemperatureArrayPort2RelayControlPort, sensorProbeCameraServerEntry=sensorProbeCameraServerEntry) mibBuilder.exportSymbols('SPAGENT-MIB', sensorProbeRelayArrayPort6RelayDescOn=sensorProbeRelayArrayPort6RelayDescOn, sensorProbeSendTrapsAlive=sensorProbeSendTrapsAlive, sensorProbeTempRelayCycleTime=sensorProbeTempRelayCycleTime, spRelayArray1_2Status=spRelayArray1_2Status, sensorTankSenderGoOffline=sensorTankSenderGoOffline, sensorHumidityHighWarningDesc=sensorHumidityHighWarningDesc, sensorProbeRelayArrayPort6Number=sensorProbeRelayArrayPort6Number, deviceDryContactDescription=deviceDryContactDescription, sensorProbeThermostatTemperatureArrayPort2HighLimitAction2=sensorProbeThermostatTemperatureArrayPort2HighLimitAction2, sensorProbeTypeWaterName=sensorProbeTypeWaterName, sensorRelayIndex=sensorRelayIndex, sensorProbeThermostatTemperatureArrayPort8LowLimitAction1=sensorProbeThermostatTemperatureArrayPort8LowLimitAction1, sensorProbeRelayArrayPort6Online=sensorProbeRelayArrayPort6Online, sensorProbeDrycontactArrayPort8Online=sensorProbeDrycontactArrayPort8Online, sensorProbeVRMSAcknowledgement=sensorProbeVRMSAcknowledgement, sensorProbeRelayArrayPort7Entry=sensorProbeRelayArrayPort7Entry, spAnalogue5Status=spAnalogue5Status, sensorProbeIRMSContTimeNormal=sensorProbeIRMSContTimeNormal, sensorProbeThermostatTemperatureArrayPort4LowLimit1=sensorProbeThermostatTemperatureArrayPort4LowLimit1, sensorProbeThermostatTemperatureArrayPort3NormalAction2=sensorProbeThermostatTemperatureArrayPort3NormalAction2, sensorProbeIRMSStatus=sensorProbeIRMSStatus, sensorProbeTemperatureArrayPort2LowWarning=sensorProbeTemperatureArrayPort2LowWarning, sensor4to20mAAmountMaxVoltage=sensor4to20mAAmountMaxVoltage, sensorDCvoltageNormalDesc=sensorDCvoltageNormalDesc, sensorProbeTemperatureArrayPort5Entry=sensorProbeTemperatureArrayPort5Entry, sensorTemperatureDelayHighCritical=sensorTemperatureDelayHighCritical, sensorDryContactEntry=sensorDryContactEntry, sensorProbeVirtualSwitchDescriptionNormal=sensorProbeVirtualSwitchDescriptionNormal, sensorProbeVirtualSwitchSensor=sensorProbeVirtualSwitchSensor, sensorProbeTypeADE7763WattName=sensorProbeTypeADE7763WattName, sensorProbeDrycontactArrayPort7Online=sensorProbeDrycontactArrayPort7Online, sensorProbeCameraDescription=sensorProbeCameraDescription, spTemperatureArray7_6Status=spTemperatureArray7_6Status, sensorProbeTempContTimeNormal=sensorProbeTempContTimeNormal, spSenWarningStatus=spSenWarningStatus, sensorDCvoltageTable=sensorDCvoltageTable, sensorProbeSwitchRelayActiveStatus=sensorProbeSwitchRelayActiveStatus, sensorProbeHumiditySendNormalMail=sensorProbeHumiditySendNormalMail, sensorProbeTemperatureArrayPort3Offset=sensorProbeTemperatureArrayPort3Offset, sensorProbeTemperatureArrayPort4Number=sensorProbeTemperatureArrayPort4Number, sensorProbeRelayArrayPort4RelayDescOff=sensorProbeRelayArrayPort4RelayDescOff, sensorFuelDelayHighWarning=sensorFuelDelayHighWarning, spSwitch16Status=spSwitch16Status, sensorProbeEnergySirenActiveStatus=sensorProbeEnergySirenActiveStatus, sensorProbeThermostatTemperatureArrayPort3LowLimit1=sensorProbeThermostatTemperatureArrayPort3LowLimit1, sensorProbeTemperatureArrayPort5Number=sensorProbeTemperatureArrayPort5Number, sensorThermostatDelayHighWarning=sensorThermostatDelayHighWarning, spSwitch43Status=spSwitch43Status, sensorWaterStatus=sensorWaterStatus, sensorProbeTemperatureArrayPort7ContTimeLowCritical=sensorProbeTemperatureArrayPort7ContTimeLowCritical, sensorProbeDrycontactArrayPort8Description=sensorProbeDrycontactArrayPort8Description, sensorProbeDrycontactArrayPort1ManualOutputAction=sensorProbeDrycontactArrayPort1ManualOutputAction, sensorProbeRelayArrayPort5RelayAction=sensorProbeRelayArrayPort5RelayAction, sensorProbeIRMSSirenCycleTime=sensorProbeIRMSSirenCycleTime, sensorProbeDrycontactArrayPort6OutputDescOn=sensorProbeDrycontactArrayPort6OutputDescOn, sensorIntelligentTypeSelected=sensorIntelligentTypeSelected, sensorProbeDrycontactArrayPort5Index=sensorProbeDrycontactArrayPort5Index, sensorProbeRelayArrayPort8Entry=sensorProbeRelayArrayPort8Entry, spTemperatureArray8_1Status=spTemperatureArray8_1Status, sensorProbeTemperatureArrayPort2Value=sensorProbeTemperatureArrayPort2Value, sensorProbeHumidityContTimeHighWarning=sensorProbeHumidityContTimeHighWarning, sensorProbeTypeMotionName=sensorProbeTypeMotionName, sensorThermostatDelayNormal=sensorThermostatDelayNormal, sensorProbeEnergySirenAction=sensorProbeEnergySirenAction, sensorProbeVirtualSwitchSensorEntry=sensorProbeVirtualSwitchSensorEntry, sensorProbeTemperatureArrayPort8HighCritical=sensorProbeTemperatureArrayPort8HighCritical, sensorProbeHumidityDcUnit=sensorProbeHumidityDcUnit, spTemperatureArray1Status=spTemperatureArray1Status, sensorProbeNoCameraGoOnline=sensorProbeNoCameraGoOnline, sensorProbeTemperatureArrayPort8Entry=sensorProbeTemperatureArrayPort8Entry, sensorTemperatureDelayNormal=sensorTemperatureDelayNormal, sensorDCvoltageSubPort=sensorDCvoltageSubPort, sensorTemperatureType=sensorTemperatureType, sensorFuelNormalDesc=sensorFuelNormalDesc, sensorProbeTypeSoundName=sensorProbeTypeSoundName, spRelayArray7_5Status=spRelayArray7_5Status, sensorProbeTempTable=sensorProbeTempTable, sensorProbeHumidityEntry=sensorProbeHumidityEntry, sensorProbeTemperatureArrayPort3Index=sensorProbeTemperatureArrayPort3Index, sensorAirflowSensorErrorColor=sensorAirflowSensorErrorColor, sensorDryContactPort8GoOnline=sensorDryContactPort8GoOnline, sensorProbeRelayArrayPort2NormalState=sensorProbeRelayArrayPort2NormalState, sensorProbeDrycontactArrayPort5ManualOutputCycleTime=sensorProbeDrycontactArrayPort5ManualOutputCycleTime, sensorProbeVirtualAnalogContTimeHighCritical=sensorProbeVirtualAnalogContTimeHighCritical, sensorProbeThermostatEnableTime=sensorProbeThermostatEnableTime, sensorProbeServerEnable=sensorProbeServerEnable, spTemperatureArray6_8Status=spTemperatureArray6_8Status, sensorProbeVRMSSensorNumber=sensorProbeVRMSSensorNumber, sensorProbeHumiditySirenDelayAlarm=sensorProbeHumiditySirenDelayAlarm, sensorDryContactCriticalDesc=sensorDryContactCriticalDesc, sensorProbeDrycontactArrayPort8ContTimeNormal=sensorProbeDrycontactArrayPort8ContTimeNormal, sensorACvoltagePort=sensorACvoltagePort, sensor4to20mAHighCriticalDesc=sensor4to20mAHighCriticalDesc, sensorAirflowHighCritical=sensorAirflowHighCritical, sensorDCvoltageRearm=sensorDCvoltageRearm, spRelayArray5_8Status=spRelayArray5_8Status, sensorProbeEnergyOnline=sensorProbeEnergyOnline, sensorProbeIRMSSensorEntry=sensorProbeIRMSSensorEntry, sensorProbeDrycontactArrayPort5Direction=sensorProbeDrycontactArrayPort5Direction, sensorProbeJpegQualityFactor=sensorProbeJpegQualityFactor, spTemperatureArray7_1Status=spTemperatureArray7_1Status, sensorProbeSwitchEmailTrapSchedule=sensorProbeSwitchEmailTrapSchedule, sensorProbeTemperatureArrayPort5Offset=sensorProbeTemperatureArrayPort5Offset, sensorHumidityUnit=sensorHumidityUnit, sensorProbeTemperatureArrayPort3Table=sensorProbeTemperatureArrayPort3Table, sensorProbeTemperatureArrayPort5ContTimeSensorError=sensorProbeTemperatureArrayPort5ContTimeSensorError, sensorTankSenderDeviceIndex=sensorTankSenderDeviceIndex, sensorProbeRelayArrayPort5Index=sensorProbeRelayArrayPort5Index, sensorProbeThermostatTemperatureArrayPort4NormalAction2=sensorProbeThermostatTemperatureArrayPort4NormalAction2, sensorDryContactType=sensorDryContactType, sensorProbeTempIndex=sensorProbeTempIndex, sensorProbeCameraServerClientIP=sensorProbeCameraServerClientIP, sensorProbeTemperatureArrayPort6Rearm=sensorProbeTemperatureArrayPort6Rearm, spTemperatureArray7_4Status=spTemperatureArray7_4Status, sensorProbeVRMSSensorEntry=sensorProbeVRMSSensorEntry, sensorProbeMAC=sensorProbeMAC, sensorProbeDrycontactArrayPort8Entry=sensorProbeDrycontactArrayPort8Entry, spVRMS5Status=spVRMS5Status, spSensorAliveLow=spSensorAliveLow, sensorProbeRelayArrayPort7RelayCycleTime=sensorProbeRelayArrayPort7RelayCycleTime, sensorIntelligentPort4GoOnline=sensorIntelligentPort4GoOnline, sensorProbeThermostatTemperatureArrayPort1LowLimit1=sensorProbeThermostatTemperatureArrayPort1LowLimit1, sensorProbeDrycontactArrayPort4Description=sensorProbeDrycontactArrayPort4Description, sensorProbeRelayArrayPort1RelayDescOn=sensorProbeRelayArrayPort1RelayDescOn, sensorProbeSoundDetectorOnline=sensorProbeSoundDetectorOnline, sensorProbeRelayArrayPort4Description=sensorProbeRelayArrayPort4Description, sensorTemperatureSubPort=sensorTemperatureSubPort, sensorProbeTemperatureArrayPort1LowWarning=sensorProbeTemperatureArrayPort1LowWarning, spVRMSStatus=spVRMSStatus, sensorSmokeSubPort=sensorSmokeSubPort, sensorProbeThermostatTemperatureArrayPort6LowLimitAction2=sensorProbeThermostatTemperatureArrayPort6LowLimitAction2, sensorProbeNoCameraSensor=sensorProbeNoCameraSensor, sensorTankSenderDelayHighCritical=sensorTankSenderDelayHighCritical, sensorProbeTempContTimeHighCritical=sensorProbeTempContTimeHighCritical, sensorThermostatLowCriticalColor=sensorThermostatLowCriticalColor, spSenCriticalStatus=spSenCriticalStatus, spTemperatureArray5_8Status=spTemperatureArray5_8Status, sensorProbeIRMSRaw=sensorProbeIRMSRaw, sensorTemperatureDeviceIndex=sensorTemperatureDeviceIndex, sensorProbeTemperatureArrayPort5OpenURL=sensorProbeTemperatureArrayPort5OpenURL, sensorProbeSoundDetectorMicSensitivity=sensorProbeSoundDetectorMicSensitivity, spRelayArray3_8Status=spRelayArray3_8Status, spTemperatureArray7_2Status=spTemperatureArray7_2Status, sensorDCvoltageHighCriticalDesc=sensorDCvoltageHighCriticalDesc, spRelayArray6_2Status=spRelayArray6_2Status, sensorWaterRopeNormalColor=sensorWaterRopeNormalColor, sensorProbeRelayArrayPort4RelayAction=sensorProbeRelayArrayPort4RelayAction, sensorProbeRelayArrayPort1RelayCycleTime=sensorProbeRelayArrayPort1RelayCycleTime, sensorProbeRelayArrayPort7=sensorProbeRelayArrayPort7, sensorProbeDrycontactArrayPort5=sensorProbeDrycontactArrayPort5, sensorProbeEnergyDescription=sensorProbeEnergyDescription, sensorProbeTempContTimeLowWarning=sensorProbeTempContTimeLowWarning, sensorProbeWebAdminPassword=sensorProbeWebAdminPassword, sensorProbeVirtualAnalogContTimeLowWarning=sensorProbeVirtualAnalogContTimeLowWarning, sensorTemperatureHighWarning=sensorTemperatureHighWarning, spTemperature3Status=spTemperature3Status, sensorTemperatureHighWarningColor=sensorTemperatureHighWarningColor, spCustomStatus=spCustomStatus, spSensorStatusName=spSensorStatusName, spSwitch41Status=spSwitch41Status, sensorWaterRopeCriticalDesc=sensorWaterRopeCriticalDesc, sensorProbeDrycontactArrayPort3Table=sensorProbeDrycontactArrayPort3Table, sensorDryContactDescription=sensorDryContactDescription, sensorProbeRelayArrayPort1Description=sensorProbeRelayArrayPort1Description, spSwitch42Status=spSwitch42Status, sensorProbeRelayArrayPort2GoOnline=sensorProbeRelayArrayPort2GoOnline, spTemperatureArray8_3Status=spTemperatureArray8_3Status, sensorProbeTemperatureArrayPort2Number=sensorProbeTemperatureArrayPort2Number, sensorProbeTemperatureArrayPort5DegreeType=sensorProbeTemperatureArrayPort5DegreeType, sensorProbeSwitchSendNormalTrap=sensorProbeSwitchSendNormalTrap, sensorProbeTemperatureArrayPort8Offset=sensorProbeTemperatureArrayPort8Offset, sensorProbeNoCameraSensorIndex=sensorProbeNoCameraSensorIndex, sensorProbeSwitchDelayError=sensorProbeSwitchDelayError, spSwitch33Status=spSwitch33Status, sensorPowerHighWarningDesc=sensorPowerHighWarningDesc, sensorProbeTemperatureArrayPort1OpenURL=sensorProbeTemperatureArrayPort1OpenURL, spSwitch4Status=spSwitch4Status, sensorProbeStatusNumberNotNormal=sensorProbeStatusNumberNotNormal, sensorProbeTemperatureArrayPort7HighWarning=sensorProbeTemperatureArrayPort7HighWarning, sensorProbeTempStatus=sensorProbeTempStatus, sensorProbeTemperatureArrayPort4OpenURL=sensorProbeTemperatureArrayPort4OpenURL, sensorProbeWattHoursReset=sensorProbeWattHoursReset, sensorAirflowDelayLowCritical=sensorAirflowDelayLowCritical, sensorProbeThermostatTemperatureArrayPort2LowLimitAction1=sensorProbeThermostatTemperatureArrayPort2LowLimitAction1, spSwitch22Status=spSwitch22Status, sensorWaterSubPort=sensorWaterSubPort, sensorProbeTemperatureArrayPort5HighCritical=sensorProbeTemperatureArrayPort5HighCritical, sensorProbeVirtualAnalogHighWarning=sensorProbeVirtualAnalogHighWarning, spRelayArray6_5Status=spRelayArray6_5Status, sensorProbeTemperatureArrayPort1DatacollectType=sensorProbeTemperatureArrayPort1DatacollectType, sensorProbeSoundDetectorDatacollectType=sensorProbeSoundDetectorDatacollectType, sensorValue=sensorValue, sensorProbeDrycontactArrayPort3URL=sensorProbeDrycontactArrayPort3URL, sensorACvoltageNormalDesc=sensorACvoltageNormalDesc, spTemperatureArray2_5Status=spTemperatureArray2_5Status, spTemperatureArray2_6Status=spTemperatureArray2_6Status, sensorProbeVirtualAnalogLowCritical=sensorProbeVirtualAnalogLowCritical, spRelayArray6Status=spRelayArray6Status, sensorPowerDescription=sensorPowerDescription, sensorProbeSoftMotionOnline=sensorProbeSoftMotionOnline, spRelayArray5_4Status=spRelayArray5_4Status, sensorDCvoltageAmountBaseVoltage=sensorDCvoltageAmountBaseVoltage, sensorProbeEnergyContTimeSensorError=sensorProbeEnergyContTimeSensorError, sensorProbeEnergyContTimeHighCritical=sensorProbeEnergyContTimeHighCritical, sensorProbeTypeVirtualName=sensorProbeTypeVirtualName, sensorWaterRopeSensorErrorDesc=sensorWaterRopeSensorErrorDesc, spTemperatureArray8_4Status=spTemperatureArray8_4Status, sensorProbeDrycontactArrayPort3OutputDescOn=sensorProbeDrycontactArrayPort3OutputDescOn, sensorTankSenderHighCriticalDesc=sensorTankSenderHighCriticalDesc, spRelayArray1_4Status=spRelayArray1_4Status, sensorProbeJavaTimeOut=sensorProbeJavaTimeOut, sensorProbeDrycontactArrayPort6ContTimeNormal=sensorProbeDrycontactArrayPort6ContTimeNormal, sensorProbeEnergyHighWarning=sensorProbeEnergyHighWarning, sensorPowerSensorErrorColor=sensorPowerSensorErrorColor, sensor4to20mAUnit=sensor4to20mAUnit, spAnalogue4Status=spAnalogue4Status, sensorProbeTypeADE7763WatthourName=sensorProbeTypeADE7763WatthourName, sensorProbeTemperatureArrayPort2OpenURL=sensorProbeTemperatureArrayPort2OpenURL, sensorPowerErrorRetryNum=sensorPowerErrorRetryNum, sensorProbeEnergyEmailTrapLimit=sensorProbeEnergyEmailTrapLimit, sensorProbeVirtualAnalogSensorIndex=sensorProbeVirtualAnalogSensorIndex, spSwitch31Status=spSwitch31Status, sensorProbeWattHoursSensor=sensorProbeWattHoursSensor, spTemperatureArray6_2Status=spTemperatureArray6_2Status, sensorProbeThermostatGoOnline=sensorProbeThermostatGoOnline, sensorHumidityLowWarningColor=sensorHumidityLowWarningColor, sensorFuelHighWarningColor=sensorFuelHighWarningColor, secDevice=secDevice, sensorProbeThermostatTemperatureArrayPort5Mode=sensorProbeThermostatTemperatureArrayPort5Mode, spSwitch25Status=spSwitch25Status, sensorProbeCameraServerClientOnline=sensorProbeCameraServerClientOnline, sensorDryContactPort12GoOnline=sensorDryContactPort12GoOnline, sensorThermostatNormalColor=sensorThermostatNormalColor, spSwitch58Status=spSwitch58Status, spTemperatureArray6_7Status=spTemperatureArray6_7Status, sensorIntelligentPort3GoOnline=sensorIntelligentPort3GoOnline, sensorProbeThermostatTemperatureArrayPort8HighLimitAction1=sensorProbeThermostatTemperatureArrayPort8HighLimitAction1, spVirtual2Status=spVirtual2Status, sensorSmokeEntry=sensorSmokeEntry, sensorProbeDrycontactArrayPort7ContTimeCritical=sensorProbeDrycontactArrayPort7ContTimeCritical, sensorProbeTemperatureArrayPort1Value=sensorProbeTemperatureArrayPort1Value, spTemperatureArray1_4Status=spTemperatureArray1_4Status, sensorThermostatLowWarning=sensorThermostatLowWarning, sensorACvoltageIndex=sensorACvoltageIndex, sensorProbeTempSirenAction=sensorProbeTempSirenAction, spRelayArray8_1Status=spRelayArray8_1Status, sensorSmokeNormalColor=sensorSmokeNormalColor, sensorWaterNormalDesc=sensorWaterNormalDesc, sensorProbeThermostatTemperatureArrayPort2HighLimit1=sensorProbeThermostatTemperatureArrayPort2HighLimit1, sensorSecurityNormalDesc=sensorSecurityNormalDesc, sensor4to20mALowWarningColor=sensor4to20mALowWarningColor, sensorFuelRearm=sensorFuelRearm, sensorProbeRelayArrayPort1RelayDescOff=sensorProbeRelayArrayPort1RelayDescOff, sensorPort=sensorPort) mibBuilder.exportSymbols('SPAGENT-MIB', sensorProbeRelayArrayPort4Status=sensorProbeRelayArrayPort4Status, sensorProbeSwitchSirenAction=sensorProbeSwitchSirenAction, sensorThermostatHighCriticalColor=sensorThermostatHighCriticalColor, sensorThermostatHighWarningColor=sensorThermostatHighWarningColor, sensorFuelDelayHighCritical=sensorFuelDelayHighCritical, sensorProbeTemperatureArrayPort6Offset=sensorProbeTemperatureArrayPort6Offset, sensorProbeRelayArrayPort8Number=sensorProbeRelayArrayPort8Number, sensorMotionGoOffline=sensorMotionGoOffline, sensorProbeNoCameraCalendar=sensorProbeNoCameraCalendar, sensorProbeDrycontactArrayPort5ManualOutputAction=sensorProbeDrycontactArrayPort5ManualOutputAction, sensorDryContactPort=sensorDryContactPort, spSwitch17Status=spSwitch17Status, spVirtual17Status=spVirtual17Status, sensorProbeTypeFuelLevelName=sensorProbeTypeFuelLevelName, sensorProbeDrycontactArrayPort7Index=sensorProbeDrycontactArrayPort7Index, sensorFuelRaw=sensorFuelRaw, sensorFuelAmountBaseValue=sensorFuelAmountBaseValue, spSwitch61Status=spSwitch61Status, sensorProbeTemperatureArrayPort1GoOnline=sensorProbeTemperatureArrayPort1GoOnline, sensorTankSenderLowCriticalDesc=sensorTankSenderLowCriticalDesc, sensorProbeVRMSSensor=sensorProbeVRMSSensor, spTemperatureArray7_3Status=spTemperatureArray7_3Status, sensorProbeTemperatureArrayPort7Status=sensorProbeTemperatureArrayPort7Status, spRelayArray2_4Status=spRelayArray2_4Status, sensorProbeThermostatTemperatureArrayPort7LowLimit1=sensorProbeThermostatTemperatureArrayPort7LowLimit1, spTemperatureArray5_7Status=spTemperatureArray5_7Status, sensorTemperatureLowCriticalColor=sensorTemperatureLowCriticalColor, sensor4to20mADelayHighWarning=sensor4to20mADelayHighWarning, spRelayArray8_5Status=spRelayArray8_5Status, sensorProbeThermostatTemperatureArrayPort1LowLimit2=sensorProbeThermostatTemperatureArrayPort1LowLimit2, sensorSirenOffColor=sensorSirenOffColor, sensorProbeVRMSEmailTrapLimit=sensorProbeVRMSEmailTrapLimit, sensorProbeHumidityIndexCount=sensorProbeHumidityIndexCount, sensorProbeSnmpIndexingMode=sensorProbeSnmpIndexingMode, sensorProbeTemperatureArrayPort2Description=sensorProbeTemperatureArrayPort2Description, sensorACvoltageSubPort=sensorACvoltageSubPort, sensorProbeRelayArrayPort1Number=sensorProbeRelayArrayPort1Number, spTemperatureArray1_5Status=spTemperatureArray1_5Status, sensorProbeIRMSRearm=sensorProbeIRMSRearm, sensorProbeDrycontactArrayPort1ManualOutputCycleTime=sensorProbeDrycontactArrayPort1ManualOutputCycleTime, sensorProbeVRMSSensorTable=sensorProbeVRMSSensorTable, sensorProbeTemperatureArrayPort6OpenURL=sensorProbeTemperatureArrayPort6OpenURL, spSwitch5Status=spSwitch5Status, sensorSirenIndex=sensorSirenIndex, sensor4to20mADeviceIndex=sensor4to20mADeviceIndex, secSummary=secSummary, spRelayArray1_7Status=spRelayArray1_7Status, sensorProbeTemperatureArrayPort5Rearm=sensorProbeTemperatureArrayPort5Rearm, sensorDCvoltageSensorErrorDesc=sensorDCvoltageSensorErrorDesc, sensorHumidityIndex=sensorHumidityIndex, sensorProbeTempOpenURL=sensorProbeTempOpenURL, sensorFuelGoOffline=sensorFuelGoOffline, spIRMS8Status=spIRMS8Status, sensorProbeDrycontactArrayPort8ManualOutputAction=sensorProbeDrycontactArrayPort8ManualOutputAction, sensorProbeSyslogPort=sensorProbeSyslogPort, sensorDryContactGoOffline=sensorDryContactGoOffline, sensorSubPort=sensorSubPort, sensorProbeDrycontactArrayPort7ManualOutputCycleTime=sensorProbeDrycontactArrayPort7ManualOutputCycleTime, sensorProbeDrycontactArrayPort7ControlMode=sensorProbeDrycontactArrayPort7ControlMode, sensor4to20mADelayNormal=sensor4to20mADelayNormal, sensorProbeTemperatureArrayPort3OpenURL=sensorProbeTemperatureArrayPort3OpenURL, sensorHighCriticalColor=sensorHighCriticalColor, spSwitch3Status=spSwitch3Status, sensorDCvoltageIndex=sensorDCvoltageIndex, spSenNormalStatus=spSenNormalStatus, sensorProbeTemperatureArrayPort3Number=sensorProbeTemperatureArrayPort3Number, spTemperatureArray3_3Status=spTemperatureArray3_3Status, sensorProbeRelayArrayPort3Online=sensorProbeRelayArrayPort3Online, sensorProbeThermostatTemperatureArrayPort4Mode=sensorProbeThermostatTemperatureArrayPort4Mode, sensorProbeThermostatTemperatureArrayPort4HighLimit2=sensorProbeThermostatTemperatureArrayPort4HighLimit2, sensorTemperatureLowCriticalDesc=sensorTemperatureLowCriticalDesc, sensorProbeThermostatTemperatureArrayPort2EnableTime=sensorProbeThermostatTemperatureArrayPort2EnableTime, sensorProbeHumidityDatacollectType=sensorProbeHumidityDatacollectType, spBoardIndex=spBoardIndex, sensorProbeVRMSContTimeHighCritical=sensorProbeVRMSContTimeHighCritical, sensorProbeAdcCalibratePort=sensorProbeAdcCalibratePort, sensorHumidityHighWarningColor=sensorHumidityHighWarningColor, sensorSmokeGoOffline=sensorSmokeGoOffline, spRelayArray3_1Status=spRelayArray3_1Status, sensorAirflowHighWarning=sensorAirflowHighWarning, sensorProbeEnableSysLog=sensorProbeEnableSysLog, sensorAirflowDelayNormal=sensorAirflowDelayNormal, sensorProbeTempRelayActiveStatus=sensorProbeTempRelayActiveStatus, sensorProbeRelayArrayPort1=sensorProbeRelayArrayPort1, sensorDryContactOffColor=sensorDryContactOffColor, sensorProbeTemperatureArrayPort7GoOnline=sensorProbeTemperatureArrayPort7GoOnline, sensorProbeTypeDCvoltageName=sensorProbeTypeDCvoltageName, sensorHumidityHighCriticalDesc=sensorHumidityHighCriticalDesc, sensorWaterCriticalColor=sensorWaterCriticalColor, sensorDCvoltageLowCriticalColor=sensorDCvoltageLowCriticalColor, sensorProbeDrycontactArrayPort8Number=sensorProbeDrycontactArrayPort8Number, sensorProbeThermostatTemperatureArrayPort4NormalAction1=sensorProbeThermostatTemperatureArrayPort4NormalAction1, sensorDryContactDeviceIndex=sensorDryContactDeviceIndex, spKeepAliveTrap=spKeepAliveTrap, sensorProbeVRMSSirenDelayAlarm=sensorProbeVRMSSirenDelayAlarm, sensorProbeTypeSoftMotionName=sensorProbeTypeSoftMotionName, spVirtualStatus=spVirtualStatus, sensorWaterEntry=sensorWaterEntry, sensorTemperatureOffset=sensorTemperatureOffset, sensorProbeTempHighCritical=sensorProbeTempHighCritical, sensorProbeTemperatureArrayPort5DegreeRaw=sensorProbeTemperatureArrayPort5DegreeRaw, sensorSirenPort=sensorSirenPort, sensorProbeThermostatTemperatureArrayPort3Mode=sensorProbeThermostatTemperatureArrayPort3Mode, sensorPowerDelayError=sensorPowerDelayError, spVirtual11Status=spVirtual11Status, spSwitch13Status=spSwitch13Status, sensorProbeRelayArrayPort6RelayDescOff=sensorProbeRelayArrayPort6RelayDescOff, sensorProbeTempCalendar=sensorProbeTempCalendar, sensorThermostatNormalDesc=sensorThermostatNormalDesc, spSensorStatus=spSensorStatus, sensorProbeSwitchCalendar=sensorProbeSwitchCalendar, sensorDescription=sensorDescription, spRelayArray8_4Status=spRelayArray8_4Status, sensorProbeSoundDetectorHighWarning=sensorProbeSoundDetectorHighWarning, sensor4to20mAHighWarningColor=sensor4to20mAHighWarningColor, sensorProbeTemperatureArrayPort7URL=sensorProbeTemperatureArrayPort7URL, sensorProbeRelayArrayPort1ControlMode=sensorProbeRelayArrayPort1ControlMode, sensorProbeTemperatureArrayPort8=sensorProbeTemperatureArrayPort8, sensorRelayEntry=sensorRelayEntry, sensorProbeTemperatureArrayPort1Rearm=sensorProbeTemperatureArrayPort1Rearm, spVirtual1Status=spVirtual1Status, sensorProbeRelayArrayPort3NormalState=sensorProbeRelayArrayPort3NormalState, sensorProbeRelayArrayPort7RelayDescOn=sensorProbeRelayArrayPort7RelayDescOn, sensorProbeThermostatTemperatureArrayPort6HighLimit1=sensorProbeThermostatTemperatureArrayPort6HighLimit1, sensorProbeDrycontactArrayPort2Entry=sensorProbeDrycontactArrayPort2Entry, sensorProbeMailCustom=sensorProbeMailCustom, sensorProbeCameraResolution=sensorProbeCameraResolution, sensor4to20mAMaxVoltage=sensor4to20mAMaxVoltage, spEventTimeStamp=spEventTimeStamp, sensorProbeVRMSRelayAction=sensorProbeVRMSRelayAction, sensorProbeSwitchSendTrap=sensorProbeSwitchSendTrap, sensorPowerLowCritical=sensorPowerLowCritical, sensorDryContactPort5GoOnline=sensorDryContactPort5GoOnline, sensorProbeHumidityContTimeLowWarning=sensorProbeHumidityContTimeLowWarning, sensorProbeSwitchSirenOnPort=sensorProbeSwitchSirenOnPort, sensorDryContactPort2GoOnline=sensorDryContactPort2GoOnline, sensorProbeIRMSOpenURL=sensorProbeIRMSOpenURL, sensorProbeDrycontactArrayPort6ControlMode=sensorProbeDrycontactArrayPort6ControlMode, sensorType=sensorType, sensorProbeTemperatureArrayPort1ContTimeLowWarning=sensorProbeTemperatureArrayPort1ContTimeLowWarning, sensorProbeSwitchDirection=sensorProbeSwitchDirection, spTemperatureArray2_8Status=spTemperatureArray2_8Status, sensorSirenControlMode=sensorSirenControlMode, sensorProbeHumidityOpenURL=sensorProbeHumidityOpenURL, sensorHumidityDelayError=sensorHumidityDelayError, sensorProbeThermostatTemperatureArrayPort2GoOnline=sensorProbeThermostatTemperatureArrayPort2GoOnline, spWarningStatus=spWarningStatus, sensorTable=sensorTable, sensorProbeEnergyContTimeHighWarning=sensorProbeEnergyContTimeHighWarning, sensorAirflowLowWarningDesc=sensorAirflowLowWarningDesc, sensorProbeWattHoursSensorTable=sensorProbeWattHoursSensorTable, sensorProbeThermostatTemperatureArrayPort4Value=sensorProbeThermostatTemperatureArrayPort4Value, sensorProbeThermostatTemperatureArrayPort5HighLimitAction2=sensorProbeThermostatTemperatureArrayPort5HighLimitAction2, sensorProbeSoundDetectorContTimeHighWarning=sensorProbeSoundDetectorContTimeHighWarning, sensorThermostatRearm=sensorThermostatRearm, sensorProbePTZPanTiltUntilEnd=sensorProbePTZPanTiltUntilEnd, spTemperatureArray8_2Status=spTemperatureArray8_2Status, sensorWaterNormalColor=sensorWaterNormalColor, sensorProbeTemperatureArrayPort8Description=sensorProbeTemperatureArrayPort8Description, sensorProbeTempDegree=sensorProbeTempDegree, sensorProbeTemperatureArrayPort2Table=sensorProbeTemperatureArrayPort2Table, sensorProbeThermostatTemperatureArrayPort8NormalAction2=sensorProbeThermostatTemperatureArrayPort8NormalAction2, spTemperatureArray7_8Status=spTemperatureArray7_8Status, sensorDryContactNormalColor=sensorDryContactNormalColor, spTemperatureArray5_4Status=spTemperatureArray5_4Status, sensorWaterRopeGoOffline=sensorWaterRopeGoOffline, sensorHumidityLowWarningDesc=sensorHumidityLowWarningDesc, sensorAirflowLowCriticalDesc=sensorAirflowLowCriticalDesc, sensorProbeVRMSStatus=sensorProbeVRMSStatus, sensorWaterRopeLeakLocation=sensorWaterRopeLeakLocation, spVRMS2Status=spVRMS2Status, sensorProbeTempIndexCount=sensorProbeTempIndexCount, spTemperatureArray4_5Status=spTemperatureArray4_5Status, sensorHumidityDelayLowWarning=sensorHumidityDelayLowWarning, sensorAirflowHighWarningColor=sensorAirflowHighWarningColor, sensorPowerDisplayStyle=sensorPowerDisplayStyle, sensorProbeDrycontactArrayPort7OutputDescOff=sensorProbeDrycontactArrayPort7OutputDescOff, sensorDryContactPort4GoOnline=sensorDryContactPort4GoOnline, sensorProbeDrycontactArrayPort3OpenURL=sensorProbeDrycontactArrayPort3OpenURL, spTemperatureArray8Status=spTemperatureArray8Status, spSwitch15Status=spSwitch15Status, sensorProbeTempOffset=sensorProbeTempOffset, sensorProbeVirtualSwitchOnline=sensorProbeVirtualSwitchOnline, sensorProbeSwitchEmailInterval=sensorProbeSwitchEmailInterval, sensorProbeEnergyPercent=sensorProbeEnergyPercent, sensorProbeTemperatureArrayPort2GoOnline=sensorProbeTemperatureArrayPort2GoOnline, sensorProbeThermostatTemperatureArrayPort2HighLimit2=sensorProbeThermostatTemperatureArrayPort2HighLimit2, sensorProbeRelayArrayPort3Description=sensorProbeRelayArrayPort3Description, sensorProbeHumidityRaw=sensorProbeHumidityRaw, sensorProbeTemperatureArrayPort6LowCritical=sensorProbeTemperatureArrayPort6LowCritical, sensorProbeVRMSDelayNormal=sensorProbeVRMSDelayNormal, sensorMotionDeviceIndex=sensorMotionDeviceIndex, sensorProbeTemperatureArrayPort3DatacollectType=sensorProbeTemperatureArrayPort3DatacollectType, sensorProbeChecksum=sensorProbeChecksum, sensorPowerTimeOut=sensorPowerTimeOut, sensorTankSenderDelayLowWarning=sensorTankSenderDelayLowWarning, sensorDryContactPort1GoOnline=sensorDryContactPort1GoOnline, sensorProbeThermostatTemperatureArrayPort8Mode=sensorProbeThermostatTemperatureArrayPort8Mode, sensorProbeDrycontactArrayPort4GoOnline=sensorProbeDrycontactArrayPort4GoOnline, sensorProbeHumidityHighVoltage=sensorProbeHumidityHighVoltage, sensorProbeDrycontactArrayPort2Description=sensorProbeDrycontactArrayPort2Description, spNormalStatus=spNormalStatus, sensorProbeThermostatTemperatureArrayPort2LowLimit2=sensorProbeThermostatTemperatureArrayPort2LowLimit2, sensorProbeRelayArraySensor=sensorProbeRelayArraySensor, sensorDCvoltageDelayHighWarning=sensorDCvoltageDelayHighWarning, sensorProbeSoftMotionURL=sensorProbeSoftMotionURL, spTemperatureArray7_7Status=spTemperatureArray7_7Status, sensorProbeRelayArrayPort8ControlMode=sensorProbeRelayArrayPort8ControlMode, sensorProbeDrycontactArrayPort6NormalState=sensorProbeDrycontactArrayPort6NormalState, sensorProbeTemperatureArrayPort4LowCritical=sensorProbeTemperatureArrayPort4LowCritical, sensorProbeTemperatureArrayPort7Index=sensorProbeTemperatureArrayPort7Index, sensorProbeNotifyBoot=sensorProbeNotifyBoot, sensorThermostatHighWarningDesc=sensorThermostatHighWarningDesc, sensorThermostatDelayLowCritical=sensorThermostatDelayLowCritical, sensorProbeTemperatureArrayPort4Description=sensorProbeTemperatureArrayPort4Description, spEventClassNumber=spEventClassNumber, sensorProbeThermostatTemperatureArrayPort8GoOnline=sensorProbeThermostatTemperatureArrayPort8GoOnline, sensorProbeDrycontactArrayPort6=sensorProbeDrycontactArrayPort6, sensorProbeDrycontactArrayPort6OpenURL=sensorProbeDrycontactArrayPort6OpenURL, spRelayArray5_7Status=spRelayArray5_7Status, spRelayArray8_6Status=spRelayArray8_6Status, sensorProbeTemperatureArrayPort2Online=sensorProbeTemperatureArrayPort2Online, spRelayArray6_4Status=spRelayArray6_4Status, sensorHumidityStatus=sensorHumidityStatus, sensorProbeRelayArrayPort8Description=sensorProbeRelayArrayPort8Description, spVirtual4Status=spVirtual4Status, sensorDCvoltageDelayNormal=sensorDCvoltageDelayNormal, sensorTankSenderStatus=sensorTankSenderStatus, sensorProbeTemperatureArrayPort5Status=sensorProbeTemperatureArrayPort5Status, sensorProbeTemperatureArrayPort6Value=sensorProbeTemperatureArrayPort6Value, spSwitch12Status=spSwitch12Status, sensorProbeDrycontactArrayPort2ControlMode=sensorProbeDrycontactArrayPort2ControlMode, sensorProbeSoundDetectorContTimeLowWarning=sensorProbeSoundDetectorContTimeLowWarning, sensorWaterTable=sensorWaterTable, sensorProbeDrycontactArrayPort4URL=sensorProbeDrycontactArrayPort4URL, spRelayArray2_1Status=spRelayArray2_1Status, sensorProbeRelayArrayPort3GoOnline=sensorProbeRelayArrayPort3GoOnline, spSwitch8Status=spSwitch8Status, spRelayArray3_3Status=spRelayArray3_3Status, sensorProbeTemperatureArrayPort3HighCritical=sensorProbeTemperatureArrayPort3HighCritical, sensorPowerHighCriticalDesc=sensorPowerHighCriticalDesc, sensorProbeDrycontactArrayPort8Table=sensorProbeDrycontactArrayPort8Table, sensorDCvoltageSensorErrorColor=sensorDCvoltageSensorErrorColor, sensorProbeSoundDetectorOpenURL=sensorProbeSoundDetectorOpenURL, sensor4to20mARaw=sensor4to20mARaw, sensorProbeThermostatTemperatureArrayPort7Mode=sensorProbeThermostatTemperatureArrayPort7Mode, spRelayArray2_7Status=spRelayArray2_7Status, sensorProbeEnergyAcknowledgement=sensorProbeEnergyAcknowledgement, sensorProbeTemperatureArrayPort1Table=sensorProbeTemperatureArrayPort1Table, sensorProbeTypeThurmostatName=sensorProbeTypeThurmostatName, spTemperatureArray6_1Status=spTemperatureArray6_1Status, sensorProbeVirtualSwitchDescriptionCritical=sensorProbeVirtualSwitchDescriptionCritical, sensorACvoltageDeviceIndex=sensorACvoltageDeviceIndex, sensorProbeThermostatTemperatureArrayPort2HighLimitAction1=sensorProbeThermostatTemperatureArrayPort2HighLimitAction1) mibBuilder.exportSymbols('SPAGENT-MIB', sensorProbeHumidityLowWarning=sensorProbeHumidityLowWarning, sensorFuelEntry=sensorFuelEntry, spRelayArray4_6Status=spRelayArray4_6Status, sensorProbeHumiditySirenCycleTime=sensorProbeHumiditySirenCycleTime, sensorProbeSoundDetectorValue=sensorProbeSoundDetectorValue, sensorProbeRelayArrayPort6OpenURL=sensorProbeRelayArrayPort6OpenURL, sensorAirflowDescription=sensorAirflowDescription, sensorIntelligentPort2GoOnline=sensorIntelligentPort2GoOnline, sensorProbeThermostatTemperatureArrayPort1Value=sensorProbeThermostatTemperatureArrayPort1Value, sensorLowCriticalColor=sensorLowCriticalColor, sensorProbeSoundDetectorLowWarning=sensorProbeSoundDetectorLowWarning, sensorMotionDescription=sensorMotionDescription, sensorProbeThermostatTemperatureArrayPort4HighLimitAction1=sensorProbeThermostatTemperatureArrayPort4HighLimitAction1, sensorProbeSwitchDelayNormal=sensorProbeSwitchDelayNormal, sensorProbeNoCameraStatus=sensorProbeNoCameraStatus, sensorProbeMailFrom=sensorProbeMailFrom, spRelayArray4_8Status=spRelayArray4_8Status, sensorProbeTemperatureArrayPort4ContTimeHighWarning=sensorProbeTemperatureArrayPort4ContTimeHighWarning, sensorProbeTemperatureArrayPort7DatacollectType=sensorProbeTemperatureArrayPort7DatacollectType, spSwitchStatus=spSwitchStatus, sensorProbeThermostatTemperatureArrayPort5LowLimit2=sensorProbeThermostatTemperatureArrayPort5LowLimit2, spTemperatureArray6_3Status=spTemperatureArray6_3Status, sensorProbeVirtualAnalogDelayNormal=sensorProbeVirtualAnalogDelayNormal, sensorProbeSwitchWaterRopeLength=sensorProbeSwitchWaterRopeLength, sensorProbeEnergyURL=sensorProbeEnergyURL, sensorSecurityDescription=sensorSecurityDescription, sensorOffDescription=sensorOffDescription, spSwitch48Status=spSwitch48Status, sensorProbeIRMSSensor=sensorProbeIRMSSensor, spRelayArray1_1Status=spRelayArray1_1Status, sensorProbeThermostatTemperatureArrayPort7HighLimit2=sensorProbeThermostatTemperatureArrayPort7HighLimit2, sensorProbeThermostatTemperatureArrayPort5GoOnline=sensorProbeThermostatTemperatureArrayPort5GoOnline, sensorProbeRelayArrayPort6=sensorProbeRelayArrayPort6, sensorThermostatDescription=sensorThermostatDescription, sensorProbeOtherSensor=sensorProbeOtherSensor, sensorFuelDisplayStyle=sensorFuelDisplayStyle, spSensorDecimalValue=spSensorDecimalValue, spTemperatureArray5_6Status=spTemperatureArray5_6Status, sensorProbeTemperatureArrayPort5ContTimeLowWarning=sensorProbeTemperatureArrayPort5ContTimeLowWarning, spRelayArray5_2Status=spRelayArray5_2Status, sensorMotionCriticalColor=sensorMotionCriticalColor, spTemperatureArray1_7Status=spTemperatureArray1_7Status, sensorProbeRelayArrayPort8Status=sensorProbeRelayArrayPort8Status, sensorProbeThermostatTemperatureArrayPort1Index=sensorProbeThermostatTemperatureArrayPort1Index, sensorProbeSoftMotionOpenURL=sensorProbeSoftMotionOpenURL, sensorProbeRelayArrayPort8ManualRelayCycleTime=sensorProbeRelayArrayPort8ManualRelayCycleTime, sensorProbeTemperatureArrayPort3ContTimeHighCritical=sensorProbeTemperatureArrayPort3ContTimeHighCritical, sensorProbeUntidePassword=sensorProbeUntidePassword, sensorProbeSwitchRelayDescOff=sensorProbeSwitchRelayDescOff, sensorProbeTemperatureArrayPort7Offset=sensorProbeTemperatureArrayPort7Offset, sensorProbeVirtualAnalogHighCritical=sensorProbeVirtualAnalogHighCritical, sensorAirflowDeviceIndex=sensorAirflowDeviceIndex, sensorFuelValue=sensorFuelValue, sensorProbeDrycontactArrayPort4ContTimeCritical=sensorProbeDrycontactArrayPort4ContTimeCritical, sensorProbeVirtualSwitchSensorNumber=sensorProbeVirtualSwitchSensorNumber, sensor4to20mALowWarningDesc=sensor4to20mALowWarningDesc, sensorProbeTemperatureArrayPort7Table=sensorProbeTemperatureArrayPort7Table, sensorProbeTemperatureArrayPort3Online=sensorProbeTemperatureArrayPort3Online, sensorProbeSoftMotionMask=sensorProbeSoftMotionMask, sensorProbeDrycontactArrayPort5ContTimeCritical=sensorProbeDrycontactArrayPort5ContTimeCritical, sensorAirflowIndex=sensorAirflowIndex, sensorFuelSensorErrorDesc=sensorFuelSensorErrorDesc, sensorTankSenderDelayLowCritical=sensorTankSenderDelayLowCritical, sensorDryContactPort15GoOnline=sensorDryContactPort15GoOnline, sensorProbeTempSendNormalTrap=sensorProbeTempSendNormalTrap, sensorProbeTemperatureArrayPort1Status=sensorProbeTemperatureArrayPort1Status, sensorPowerSubPort=sensorPowerSubPort, sensorProbeRelayArrayPort4ManualRelayAction=sensorProbeRelayArrayPort4ManualRelayAction, sensorProbeEnergyDelayError=sensorProbeEnergyDelayError, sensor4to20mASubPort=sensor4to20mASubPort, spTemperatureArray8_5Status=spTemperatureArray8_5Status, sensorProbeTemperatureArrayPort3ContTimeSensorError=sensorProbeTemperatureArrayPort3ContTimeSensorError, spSensorDescription=spSensorDescription, sensorProbeDrycontactArrayPort2OutputDescOff=sensorProbeDrycontactArrayPort2OutputDescOff, sensorPowerLowCriticalColor=sensorPowerLowCriticalColor, spRelayArray2_2Status=spRelayArray2_2Status, sensorProbeTemperatureArrayPort4LowWarning=sensorProbeTemperatureArrayPort4LowWarning, sensorRelayOffColor=sensorRelayOffColor, sensorSirenSubPort=sensorSirenSubPort, sensorProbeTempSirenDelayAlarm=sensorProbeTempSirenDelayAlarm, sensorHighWarningColor=sensorHighWarningColor, sensorDryContactOutputManualAction=sensorDryContactOutputManualAction, sensorProbeTypeWaterRopeName=sensorProbeTypeWaterRopeName, sensorProbeStatusNumber=sensorProbeStatusNumber, sensorProbeVirtualAnalogSensorTable=sensorProbeVirtualAnalogSensorTable, sensorProbeThermostatTemperatureArrayPort7LowLimitAction2=sensorProbeThermostatTemperatureArrayPort7LowLimitAction2, spSwitch40Status=spSwitch40Status, sensorProbeRelayArrayPort1RelayAction=sensorProbeRelayArrayPort1RelayAction, sensorTankSenderTable=sensorTankSenderTable, sensorDCvoltageRaw=sensorDCvoltageRaw, spAnalogue1Status=spAnalogue1Status, sensorProbeTemperatureArrayPort2Calendar=sensorProbeTemperatureArrayPort2Calendar, sensorProbeTemperatureArrayPort6ContTimeLowWarning=sensorProbeTemperatureArrayPort6ContTimeLowWarning, sensorProbeTemperatureArrayPort8DegreeType=sensorProbeTemperatureArrayPort8DegreeType, sensorProbeEnergySensor=sensorProbeEnergySensor, spEnergy8Status=spEnergy8Status, spTemperatureArray8_8Status=spTemperatureArray8_8Status, sensorMotionTable=sensorMotionTable, sensorProbeRelayArrayPort7RelayDescOff=sensorProbeRelayArrayPort7RelayDescOff, sensorProbeDrycontactArrayPort7URL=sensorProbeDrycontactArrayPort7URL, spTemperatureArray6_4Status=spTemperatureArray6_4Status, sensorProbeTempDatacollectType=sensorProbeTempDatacollectType, spSwitch66Status=spSwitch66Status, sensorProbeTemperatureArrayPort2DegreeRaw=sensorProbeTemperatureArrayPort2DegreeRaw, spRelayArray3_6Status=spRelayArray3_6Status, sensorProbeRelayArrayPort6ManualRelayCycleTime=sensorProbeRelayArrayPort6ManualRelayCycleTime, sensorProbeTemperatureArrayPort5LowCritical=sensorProbeTemperatureArrayPort5LowCritical, sensorProbeIRMSRelayCycleTime=sensorProbeIRMSRelayCycleTime, sensorProbeTypeSirenName=sensorProbeTypeSirenName, sensorPowerUnit=sensorPowerUnit, sensorSmokeCriticalDesc=sensorSmokeCriticalDesc, sensorDryContactOnColor=sensorDryContactOnColor, sensorProbeHumidityIndex=sensorProbeHumidityIndex, sensorProbeVRMSPercent=sensorProbeVRMSPercent, deviceDryContactEntry=deviceDryContactEntry, sensorProbeThermostatTemperatureArrayPort1HighLimit1=sensorProbeThermostatTemperatureArrayPort1HighLimit1, sensorProbeVirtualSwitchStatus=sensorProbeVirtualSwitchStatus, sensorProbeTempSendTrap=sensorProbeTempSendTrap, sensorProbeThermostatTemperatureArrayPort8Index=sensorProbeThermostatTemperatureArrayPort8Index, spIRMS5Status=spIRMS5Status, sensorProbeRelayArrayPort5Description=sensorProbeRelayArrayPort5Description, sensorProbeWattHoursPercent=sensorProbeWattHoursPercent, sensorProbeEnergyRelayActiveStatus=sensorProbeEnergyRelayActiveStatus, sensorProbeTemperatureArrayPort2=sensorProbeTemperatureArrayPort2, sensorProbeTemperatureArrayPort8LowWarning=sensorProbeTemperatureArrayPort8LowWarning, sensorProbeTempSendMail=sensorProbeTempSendMail, sensorProbeHumidityAtoDAmountBaseVoltage=sensorProbeHumidityAtoDAmountBaseVoltage, sensorProbeRelayArrayPort3OpenURL=sensorProbeRelayArrayPort3OpenURL, sensorProbeIRMSDelayError=sensorProbeIRMSDelayError, sensor4to20mAStatus=sensor4to20mAStatus, sensorProbeSwitchURL=sensorProbeSwitchURL, sensorProbeThermostatTemperatureArrayPort7LowLimit2=sensorProbeThermostatTemperatureArrayPort7LowLimit2, sensorProbeTemperatureArrayPort4=sensorProbeTemperatureArrayPort4, sensorProbePTZRotateAbsolute=sensorProbePTZRotateAbsolute, sensorDryContactControlMode=sensorDryContactControlMode, sensorProbeHumidityOffset=sensorProbeHumidityOffset, sensorProbeThermostatTemperatureArrayPort2Online=sensorProbeThermostatTemperatureArrayPort2Online, sensorProbeTypeSecurityName=sensorProbeTypeSecurityName, spSwitch32Status=spSwitch32Status, spVRMS6Status=spVRMS6Status, sensorProbeTemperatureArrayPort7ContTimeSensorError=sensorProbeTemperatureArrayPort7ContTimeSensorError, sensor4to20mADelayLowCritical=sensor4to20mADelayLowCritical, sensorPowerHighWarning=sensorPowerHighWarning, sensorProbeHumidityAcknowledgement=sensorProbeHumidityAcknowledgement, sensorProbeVRMSCalendar=sensorProbeVRMSCalendar, sensorProbeTemperatureArrayPort8ContTimeNormal=sensorProbeTemperatureArrayPort8ContTimeNormal, sensorDCvoltagePort=sensorDCvoltagePort, sensorFuelLowWarningColor=sensorFuelLowWarningColor, sensorProbeTemperatureArrayPort7ContTimeHighCritical=sensorProbeTemperatureArrayPort7ContTimeHighCritical, sensorPowerLowCriticalDesc=sensorPowerLowCriticalDesc, sensorProbeEnergyContTimeLowCritical=sensorProbeEnergyContTimeLowCritical, sensorHighWarningDescription=sensorHighWarningDescription, sensorProbeVRMSvoltageMode=sensorProbeVRMSvoltageMode, sensorRelayTable=sensorRelayTable, sensorProbeRelayArrayPort8RelayDescOn=sensorProbeRelayArrayPort8RelayDescOn, sensorProbeIRMSDelayNormal=sensorProbeIRMSDelayNormal, sensorPowerSensorErrorDesc=sensorPowerSensorErrorDesc, sensorMotionEntry=sensorMotionEntry, spSwitch59Status=spSwitch59Status, sensorTemperatureLowWarningColor=sensorTemperatureLowWarningColor, spAnalogue3Status=spAnalogue3Status, sensorProbeTemperatureArrayPort4Index=sensorProbeTemperatureArrayPort4Index, spRelayArray7_2Status=spRelayArray7_2Status, sensorProbeTemperatureArrayPort5=sensorProbeTemperatureArrayPort5, sensorProbeRelayArrayPort2Description=sensorProbeRelayArrayPort2Description, sensor4to20mAEntry=sensor4to20mAEntry, sensorSecurityIndex=sensorSecurityIndex, sensorRelayStatus=sensorRelayStatus, spSwitch68Status=spSwitch68Status, spRelayArray8_7Status=spRelayArray8_7Status, sensorProbeTempURL=sensorProbeTempURL, sensorProbeWattHoursSensorEntry=sensorProbeWattHoursSensorEntry, sensorProbeThermostatTemperatureArrayPort3Description=sensorProbeThermostatTemperatureArrayPort3Description, spSwitch27Status=spSwitch27Status, sensorProbeThermostatOnline=sensorProbeThermostatOnline, sensorProbeIRMSSirenDelayAlarm=sensorProbeIRMSSirenDelayAlarm, sensorProbeSwitchSirenActiveStatus=sensorProbeSwitchSirenActiveStatus, sensorThermostatSensorErrorColor=sensorThermostatSensorErrorColor, sensorProbeSoundDetectorSensor=sensorProbeSoundDetectorSensor, sensorProbeRelayArrayPort1ManualRelayCycleTime=sensorProbeRelayArrayPort1ManualRelayCycleTime, sensorPowerMaxValue=sensorPowerMaxValue, sensorPowerDelayHighCritical=sensorPowerDelayHighCritical, sensorProbeEnergySirenDelayAlarm=sensorProbeEnergySirenDelayAlarm, sensorProbeDrycontactArrayPort5OutputDescOff=sensorProbeDrycontactArrayPort5OutputDescOff, sensorProbeSwitchRelayOutputVoltStatus=sensorProbeSwitchRelayOutputVoltStatus, sensorProbeEnergyDelayNormal=sensorProbeEnergyDelayNormal, sensorProbeRelayArrayPort4RelayCycleTime=sensorProbeRelayArrayPort4RelayCycleTime, sensorProbeHumidityAtoDAmountMaxVoltage=sensorProbeHumidityAtoDAmountMaxVoltage, sensorProbeRelayArrayPort2ControlMode=sensorProbeRelayArrayPort2ControlMode, sensorFuelDelayError=sensorFuelDelayError, sensorRelaySubPort=sensorRelaySubPort, sensorProbeTypeThermocoupleName=sensorProbeTypeThermocoupleName, sensorProbeDrycontactArrayPort1Number=sensorProbeDrycontactArrayPort1Number, sensorProbeSwitchIndex=sensorProbeSwitchIndex, sensorProbeRelayArrayPort1Status=sensorProbeRelayArrayPort1Status, sensorProbeEnergyLowWarning=sensorProbeEnergyLowWarning, sensorWaterRopeStatus=sensorWaterRopeStatus, spRelayArray6_1Status=spRelayArray6_1Status, sensorProbeTemperatureArrayPort2ContTimeLowWarning=sensorProbeTemperatureArrayPort2ContTimeLowWarning, sensorProbeDrycontactArrayPort6Entry=sensorProbeDrycontactArrayPort6Entry, spTemperatureArray8_7Status=spTemperatureArray8_7Status, sensorProbeSwitchStatus=sensorProbeSwitchStatus, sensorFuelSensorErrorColor=sensorFuelSensorErrorColor, sensorProbeNtpServer=sensorProbeNtpServer, sensorSirenEntry=sensorSirenEntry, sensorProbeRelayArrayPort5Number=sensorProbeRelayArrayPort5Number, spEnergy5Status=spEnergy5Status, sensorProbeThermostatTemperatureArrayPort4Online=sensorProbeThermostatTemperatureArrayPort4Online, sensorProbeSmtpPort=sensorProbeSmtpPort, sensorPowerLowWarningColor=sensorPowerLowWarningColor, spVirtual20Status=spVirtual20Status, spRelayArray1_6Status=spRelayArray1_6Status, sensorProbeStatusNumberError=sensorProbeStatusNumberError, spTemperatureArray4_4Status=spTemperatureArray4_4Status, sensorProbeDrycontactArrayPort4OutputDescOn=sensorProbeDrycontactArrayPort4OutputDescOn, sensorDryContactStatus=sensorDryContactStatus, sensorWaterRopeTable=sensorWaterRopeTable, sensorProbeDrycontactArrayPort7Status=sensorProbeDrycontactArrayPort7Status, sensorProbeRelayArrayPort4Entry=sensorProbeRelayArrayPort4Entry, sensorProbeRelayArrayPort1Index=sensorProbeRelayArrayPort1Index, sensorProbeHumidityOnline=sensorProbeHumidityOnline, spIRMS7Status=spIRMS7Status, sensorProbeSwitchWaterRopeType=sensorProbeSwitchWaterRopeType, spTemperatureArray1_8Status=spTemperatureArray1_8Status, spTemperatureArray2_2Status=spTemperatureArray2_2Status, sensorProbeTemperatureArrayPort7DegreeRaw=sensorProbeTemperatureArrayPort7DegreeRaw, sensorProbeTemperatureArrayPort3LowWarning=sensorProbeTemperatureArrayPort3LowWarning, sensorProbeThermostatTemperatureArrayPort8NormalAction1=sensorProbeThermostatTemperatureArrayPort8NormalAction1, spRelayArray4Status=spRelayArray4Status, sensorErrorColor=sensorErrorColor, sensorProbeRelayArrayPort3RelayAction=sensorProbeRelayArrayPort3RelayAction, sensorProbeRelayArrayPort5OpenURL=sensorProbeRelayArrayPort5OpenURL, sensorProbeVirtualAnalogContTimeSensorError=sensorProbeVirtualAnalogContTimeSensorError, sensorProbeHumidityContTimeSensorError=sensorProbeHumidityContTimeSensorError, sensorProbeThermostatTemperatureArrayPort4GoOnline=sensorProbeThermostatTemperatureArrayPort4GoOnline, sensorProbeThermostatTemperatureArrayPort3HighLimitAction2=sensorProbeThermostatTemperatureArrayPort3HighLimitAction2, sensorProbeSyslogDestIP=sensorProbeSyslogDestIP, sensorProbeTemperatureArrayPort8OpenURL=sensorProbeTemperatureArrayPort8OpenURL, sensorProbeRelayArrayPort2ManualRelayCycleTime=sensorProbeRelayArrayPort2ManualRelayCycleTime, sensorProbeIRMSGoOnline=sensorProbeIRMSGoOnline, deviceStatus=deviceStatus, sensor4to20mAOffset=sensor4to20mAOffset, sensorProbeTemperatureArrayPort5ContTimeLowCritical=sensorProbeTemperatureArrayPort5ContTimeLowCritical, sensorProbeVirtualAnalogOpenURL=sensorProbeVirtualAnalogOpenURL, sensorThermostatDelayError=sensorThermostatDelayError, sensorProbeRelayArrayPort1OpenURL=sensorProbeRelayArrayPort1OpenURL, sensorAirflowEntry=sensorAirflowEntry, sensorAirflowHighCriticalDesc=sensorAirflowHighCriticalDesc, sensorProbeThermostatTemperatureArrayPort7HighLimit1=sensorProbeThermostatTemperatureArrayPort7HighLimit1, sensorACvoltageEntry=sensorACvoltageEntry, sensorProbeIRMSLowWarning=sensorProbeIRMSLowWarning, spSensorValue=spSensorValue, sensorProbeVRMSRearm=sensorProbeVRMSRearm, spTemperature4Status=spTemperature4Status) mibBuilder.exportSymbols('SPAGENT-MIB', sensorTankSenderLowCriticalColor=sensorTankSenderLowCriticalColor, sensorProbeTemperatureArrayPort2DatacollectType=sensorProbeTemperatureArrayPort2DatacollectType, sensorProbeThermostatTemperatureArrayPort1Online=sensorProbeThermostatTemperatureArrayPort1Online, sensorTankSenderRearm=sensorTankSenderRearm, sensorProbeThermostatTemperatureArrayPort3LowLimitAction1=sensorProbeThermostatTemperatureArrayPort3LowLimitAction1, sensorProbeHumidityRelayCycleTime=sensorProbeHumidityRelayCycleTime, sensorProbeRelayArrayPort6ManualRelayAction=sensorProbeRelayArrayPort6ManualRelayAction, sensorProbeRelayArrayPort6NormalState=sensorProbeRelayArrayPort6NormalState, sensorWaterRopeImpedance=sensorWaterRopeImpedance, spSwitch21Status=spSwitch21Status, sensorProbeTemperatureArrayPort3URL=sensorProbeTemperatureArrayPort3URL, sensorProbeTemperatureArrayPort5GoOnline=sensorProbeTemperatureArrayPort5GoOnline, sensorProbeThermostatTemperatureArrayPort6LowLimitAction1=sensorProbeThermostatTemperatureArrayPort6LowLimitAction1, spRelayArray1Status=spRelayArray1Status, sensorProbeIRMSPercent=sensorProbeIRMSPercent, sensorProbeThermostatRelayControlPort=sensorProbeThermostatRelayControlPort, sensorMotionStatus=sensorMotionStatus, sensorPowerHighWarningColor=sensorPowerHighWarningColor, sensorProbeThermostatTemperatureArrayPort3NormalAction1=sensorProbeThermostatTemperatureArrayPort3NormalAction1, sensorRelayPort=sensorRelayPort, spTemperatureArray1_2Status=spTemperatureArray1_2Status, sensorProbeDrycontactArrayPort1OutputDescOff=sensorProbeDrycontactArrayPort1OutputDescOff, sensorProbeDrycontactArrayPort2OutputDescOn=sensorProbeDrycontactArrayPort2OutputDescOn, sensorProbeRelayArrayPort5Online=sensorProbeRelayArrayPort5Online, sensorProbeVirtualAnalogAcknowledgement=sensorProbeVirtualAnalogAcknowledgement, sensorProbeAudioAttachChannel=sensorProbeAudioAttachChannel, sensorProbeThermostatTemperatureArrayPort6Mode=sensorProbeThermostatTemperatureArrayPort6Mode, sensorProbeThermostatTemperatureArrayPort8Description=sensorProbeThermostatTemperatureArrayPort8Description, sensorSirenOffDesc=sensorSirenOffDesc, sensorThermostatDegree=sensorThermostatDegree, sensorProbeThermostatTemperatureArrayPort6NormalAction1=sensorProbeThermostatTemperatureArrayPort6NormalAction1, spVRMS7Status=spVRMS7Status, deviceEntry=deviceEntry, sensorProbeThermostatLowLimitAction2=sensorProbeThermostatLowLimitAction2, sensorProbeDrycontactArraySensor=sensorProbeDrycontactArraySensor, deviceIntelligentEntry=deviceIntelligentEntry, sensorProbeDrycontactArrayPort5Online=sensorProbeDrycontactArrayPort5Online, sensorProbeDrycontactArrayPort8URL=sensorProbeDrycontactArrayPort8URL, sensorProbeMailResendInterval=sensorProbeMailResendInterval, sensorProbeThermostatTemperatureArrayPort4LowLimitAction2=sensorProbeThermostatTemperatureArrayPort4LowLimitAction2, sensorProbeHumidityPercent=sensorProbeHumidityPercent, sensorProbeDrycontactArrayPort5NormalState=sensorProbeDrycontactArrayPort5NormalState, sensorProbeSoundDetectorStatus=sensorProbeSoundDetectorStatus, spEventClassName=spEventClassName, sensorAirflowDelayHighWarning=sensorAirflowDelayHighWarning, sensorProbeRelayArrayPort2ManualRelayAction=sensorProbeRelayArrayPort2ManualRelayAction, sensorDryContactPort11GoOnline=sensorDryContactPort11GoOnline, spSwitch50Status=spSwitch50Status, spTemperatureArray1_3Status=spTemperatureArray1_3Status, sensorProbeThermostatTemperatureArrayPort3HighLimitAction1=sensorProbeThermostatTemperatureArrayPort3HighLimitAction1, sensorDCvoltageLowWarningDesc=sensorDCvoltageLowWarningDesc, sensorAirflowDelayLowWarning=sensorAirflowDelayLowWarning, sensorSmokeDescription=sensorSmokeDescription, sensorProbePTZRotateRelative=sensorProbePTZRotateRelative, sensorProbeTempContTimeLowCritical=sensorProbeTempContTimeLowCritical, sensorDCvoltageBaseVoltage=sensorDCvoltageBaseVoltage, sensorPowerTable=sensorPowerTable, sensorErrorDescription=sensorErrorDescription, sensorProbeThermostatTemperatureArrayPort7Value=sensorProbeThermostatTemperatureArrayPort7Value, sensor4to20mANormalDesc=sensor4to20mANormalDesc, sensorTemperatureDelayLowWarning=sensorTemperatureDelayLowWarning, sensorProbeRelayArrayPort6ControlMode=sensorProbeRelayArrayPort6ControlMode, sensorProbeEnergyRaw=sensorProbeEnergyRaw, spEnergy4Status=spEnergy4Status, sensorProbeTemperatureArrayPort3GoOnline=sensorProbeTemperatureArrayPort3GoOnline)
class Solution: """ @param num: Given the candidate numbers @param target: Given the target number @return: All the combinations that sum to target """ def combinationSum2(self, num, target): # write your code here self.results = [] if not num or len(num) == 0: return self.results num.sort() self.target = target self.visited = [False for _ in range(len(num))] self._find_combination_sum_unique(num, [], 0) return self.results def _find_combination_sum_unique(self, num, tmp, start): if sum(tmp) == self.target: tmp2 = sorted(tmp) self.results.append(tmp2) return for i in range(start, len(num)): if sum(tmp) + num[i] > self.target: break if not self.visited[i]: # remove duplicates if i > 0 and num[i - 1] == num[i] and not self.visited[i - 1]: continue self.visited[i] = True tmp.append(num[i]) self._find_combination_sum_unique(num, tmp, i + 1) tmp.pop() self.visited[i] = False
class Solution: """ @param num: Given the candidate numbers @param target: Given the target number @return: All the combinations that sum to target """ def combination_sum2(self, num, target): self.results = [] if not num or len(num) == 0: return self.results num.sort() self.target = target self.visited = [False for _ in range(len(num))] self._find_combination_sum_unique(num, [], 0) return self.results def _find_combination_sum_unique(self, num, tmp, start): if sum(tmp) == self.target: tmp2 = sorted(tmp) self.results.append(tmp2) return for i in range(start, len(num)): if sum(tmp) + num[i] > self.target: break if not self.visited[i]: if i > 0 and num[i - 1] == num[i] and (not self.visited[i - 1]): continue self.visited[i] = True tmp.append(num[i]) self._find_combination_sum_unique(num, tmp, i + 1) tmp.pop() self.visited[i] = False
class ShippingMethodType: PRICE_BASED = "price" WEIGHT_BASED = "weight" CHOICES = [ (PRICE_BASED, "Price based shipping"), (WEIGHT_BASED, "Weight based shipping"), ] class PostalCodeRuleInclusionType: INCLUDE = "include" EXCLUDE = "exclude" CHOICES = [ (INCLUDE, "Shipping method should include postal code rule"), (EXCLUDE, "Shipping method should exclude postal code rule"), ]
class Shippingmethodtype: price_based = 'price' weight_based = 'weight' choices = [(PRICE_BASED, 'Price based shipping'), (WEIGHT_BASED, 'Weight based shipping')] class Postalcoderuleinclusiontype: include = 'include' exclude = 'exclude' choices = [(INCLUDE, 'Shipping method should include postal code rule'), (EXCLUDE, 'Shipping method should exclude postal code rule')]
# Create a variable called 'name' that holds a string name = "Homer Simpson" # Create a variable called 'country' that holds a string country = "United States" # Create a variable called 'age' that holds an integer age = 25 # Create a variable called 'hourly_wage' that holds an integer hourly_wage = 15 # Create a variable that holds a number as a string weekly_hours = "40" # Calculate the daily wage for the user daily_wage = hourly_wage * 8 # Create a variable called 'weekly_wage' that converts a string into an integer weekly_wage = hourly_wage * int(weekly_hours) # Create a variable called 'satisfied' that holds a boolean satisfied = True # Print out "Hello <name>!" print(f"Hello, {name}!") # Print out what country the user entered print(f"You live in {country}.") # Print out the user's age print(f"You are {str(age)} years old.") # Print out the daily wage that was calculated print(f"You make {str(daily_wage)} dollars per day.") # Print out the weekly wage print(f"You make {weekly_wage} dollars per week.") # Using an IF statement to print out whether the users were satisfied if satisfied: print("You are satisfied with your pay.") else: print("You are not satisfied with your pay.")
name = 'Homer Simpson' country = 'United States' age = 25 hourly_wage = 15 weekly_hours = '40' daily_wage = hourly_wage * 8 weekly_wage = hourly_wage * int(weekly_hours) satisfied = True print(f'Hello, {name}!') print(f'You live in {country}.') print(f'You are {str(age)} years old.') print(f'You make {str(daily_wage)} dollars per day.') print(f'You make {weekly_wage} dollars per week.') if satisfied: print('You are satisfied with your pay.') else: print('You are not satisfied with your pay.')
# Joshua Nelson Gomes (Joshua) # CIS 41A Spring 2020 # Unit C Take-Home Assignment # First Script - Working with List list1 = list() list1.extend([1,3,5]) list2 = [1, 2, 3, 4] list3 = list1 + list2 print (f'd) list3 is: {list3}') print (f'e) list3 contains a 3: {3 in list3}') print (f'f) list3 contains {list3.count(3)} 3s') print (f'h) The index of the first 3 contained in list3 is {list3.index(3)}') print (f'h) first3 = {list3.pop(list3.index(3))}') list4 = sorted(list3) print (f'j) list3 is now: {list3}\nj) list4 is: {list4}') print (f'k) Slice of list3 is: {list3[2:5]}') print (f'l) Length of list3 is {len(list3)}') print (f'm) The max value in list3 is {max(list3)}') list3.sort() print (f'n) Sorted list3 is: {list3}') list5 = [list1,list2] list6 = [list1[num]*list2[num] for num in range(3)] print (f'o) list5 is: {list5}') print (f'o) list6 is: {list6}') print (f'p) Value 4 from list5: {list5[1][3]}') ''' Execution results: d) list3 is: [1, 3, 5, 1, 2, 3, 4] e) list3 contains a 3: True f) list3 contains 2 3s h) The index of the first 3 contained in list3 is 1 h) first3 = 3 j) list3 is now: [1, 5, 1, 2, 3, 4] j) list4 is: [1, 1, 2, 3, 4, 5] k) Slice of list3 is: [1, 2, 3] l) Length of list3 is 6 m) The max value in list3 is 5 n) Sorted list3 is: [1, 1, 2, 3, 4, 5] o) list5 is: [[1, 3, 5], [1, 2, 3, 4]] p) Value 4 from list5: 4 '''
list1 = list() list1.extend([1, 3, 5]) list2 = [1, 2, 3, 4] list3 = list1 + list2 print(f'd) list3 is: {list3}') print(f'e) list3 contains a 3: {3 in list3}') print(f'f) list3 contains {list3.count(3)} 3s') print(f'h) The index of the first 3 contained in list3 is {list3.index(3)}') print(f'h) first3 = {list3.pop(list3.index(3))}') list4 = sorted(list3) print(f'j) list3 is now: {list3}\nj) list4 is: {list4}') print(f'k) Slice of list3 is: {list3[2:5]}') print(f'l) Length of list3 is {len(list3)}') print(f'm) The max value in list3 is {max(list3)}') list3.sort() print(f'n) Sorted list3 is: {list3}') list5 = [list1, list2] list6 = [list1[num] * list2[num] for num in range(3)] print(f'o) list5 is: {list5}') print(f'o) list6 is: {list6}') print(f'p) Value 4 from list5: {list5[1][3]}') '\nExecution results:\n\nd) list3 is: [1, 3, 5, 1, 2, 3, 4]\ne) list3 contains a 3: True\nf) list3 contains 2 3s\nh) The index of the first 3 contained in list3 is 1\nh) first3 = 3\nj) list3 is now: [1, 5, 1, 2, 3, 4]\nj) list4 is: [1, 1, 2, 3, 4, 5]\nk) Slice of list3 is: [1, 2, 3]\nl) Length of list3 is 6\nm) The max value in list3 is 5\nn) Sorted list3 is: [1, 1, 2, 3, 4, 5]\no) list5 is: [[1, 3, 5], [1, 2, 3, 4]]\np) Value 4 from list5: 4\n\n'
class Solution: def findMissingRanges(self, nums: List[int], lower: int, upper: int) -> List[str]: # need to consider low and upper element because res.append(str(nums[i]+1)) and we use range 2 (nums[i+1] - nums[i] == 2) # for example: [1], low = 0, upper = 100. nums = [lower-1] + nums + [upper+1] res = [] for i in range(len(nums)-1): if nums[i+1] - nums[i] == 2: res.append(str(nums[i]+1)) elif nums[i+1] - nums[i] > 2: res.append(str(nums[i]+1)+'->'+str(nums[i+1]-1)) return res # Time: O(N) # Space:O(N)
class Solution: def find_missing_ranges(self, nums: List[int], lower: int, upper: int) -> List[str]: nums = [lower - 1] + nums + [upper + 1] res = [] for i in range(len(nums) - 1): if nums[i + 1] - nums[i] == 2: res.append(str(nums[i] + 1)) elif nums[i + 1] - nums[i] > 2: res.append(str(nums[i] + 1) + '->' + str(nums[i + 1] - 1)) return res
with open("input.txt") as f: lines = [line.strip() for line in f.readlines()] tiles = {} # (e, ne) => is_black # decomposes a movement direction on a hex grid to one or two movements in two axes (this allows for unique coords) def decompose(direction: str) -> list: if direction == "se": return ["e", "sw"] elif direction == "nw": return ["w", "ne"] else: return [direction] for line in lines: directions = [] i = 0 while i < len(line): if line[i] in {"s", "n"}: direction = line[i:i + 2] i += 2 else: direction = line[i] i += 1 directions.extend(decompose(direction)) e, ne = 0, 0 for d in directions: if d == "w": e -= 1 elif d == "e": e += 1 elif d == "ne": ne += 1 elif d == "sw": ne -= 1 coord = (e, ne) if coord in tiles: tiles[coord] = not tiles[coord] else: tiles[coord] = True to_neighbors = [(-1, 0), (1, 0), (0, -1), (0, 1), (1, -1), (-1, 1)] self_and_neighbors = to_neighbors + [(0, 0)] def num_black_neighbors(e, ne) -> int: num = 0 for de, dne in to_neighbors: coord = (e + de, ne + dne) num += tiles[coord] if coord in tiles else False return num def do_step() -> dict: new_tiles = {} for e, ne in tiles.keys(): for de, dne in self_and_neighbors: coord = (e + de, ne + dne) if coord in new_tiles: continue is_black = tiles[coord] if coord in tiles else False n_black_neighbors = num_black_neighbors(*coord) if is_black: new_tiles[coord] = n_black_neighbors != 0 and n_black_neighbors <= 2 else: new_tiles[coord] = n_black_neighbors == 2 return new_tiles for _ in range(100): tiles = do_step() print(sum(tiles.values()))
with open('input.txt') as f: lines = [line.strip() for line in f.readlines()] tiles = {} def decompose(direction: str) -> list: if direction == 'se': return ['e', 'sw'] elif direction == 'nw': return ['w', 'ne'] else: return [direction] for line in lines: directions = [] i = 0 while i < len(line): if line[i] in {'s', 'n'}: direction = line[i:i + 2] i += 2 else: direction = line[i] i += 1 directions.extend(decompose(direction)) (e, ne) = (0, 0) for d in directions: if d == 'w': e -= 1 elif d == 'e': e += 1 elif d == 'ne': ne += 1 elif d == 'sw': ne -= 1 coord = (e, ne) if coord in tiles: tiles[coord] = not tiles[coord] else: tiles[coord] = True to_neighbors = [(-1, 0), (1, 0), (0, -1), (0, 1), (1, -1), (-1, 1)] self_and_neighbors = to_neighbors + [(0, 0)] def num_black_neighbors(e, ne) -> int: num = 0 for (de, dne) in to_neighbors: coord = (e + de, ne + dne) num += tiles[coord] if coord in tiles else False return num def do_step() -> dict: new_tiles = {} for (e, ne) in tiles.keys(): for (de, dne) in self_and_neighbors: coord = (e + de, ne + dne) if coord in new_tiles: continue is_black = tiles[coord] if coord in tiles else False n_black_neighbors = num_black_neighbors(*coord) if is_black: new_tiles[coord] = n_black_neighbors != 0 and n_black_neighbors <= 2 else: new_tiles[coord] = n_black_neighbors == 2 return new_tiles for _ in range(100): tiles = do_step() print(sum(tiles.values()))
__name__ = "lbry" __version__ = "0.44.1" version = tuple(__version__.split('.'))
__name__ = 'lbry' __version__ = '0.44.1' version = tuple(__version__.split('.'))
class MSImageCollection(object): def __init__(self, images): self._images = images @property def images(self): # <list> return self._images
class Msimagecollection(object): def __init__(self, images): self._images = images @property def images(self): return self._images
class ResourceNames(): def __init__(self, log_group_name: str, log_stream_name: str): self.log_group_name = log_group_name self.log_stream_name = log_stream_name def get_log_group_name(self) -> str: return self.log_group_name def get_log_stream_name(self) -> str: return self.log_stream_name
class Resourcenames: def __init__(self, log_group_name: str, log_stream_name: str): self.log_group_name = log_group_name self.log_stream_name = log_stream_name def get_log_group_name(self) -> str: return self.log_group_name def get_log_stream_name(self) -> str: return self.log_stream_name
n = int(input()) num1 = "" num2 = "" num3 = "" num4 = "" for a in range(1111, 9999 + 1): num1 = str(a)[0] num2 = str(a)[1] num3 = str(a)[2] num4 = str(a)[3] if int(num1) != 0 and int(num2) != 0 and int(num3) != 0 and int(num4) != 0: if n % int(num1) == 0 and n % int(num2) == 0 and n % int(num3) == 0 and n % int(num4) == 0: print(f"{num1}{num2}{num3}{num4}", end=" ")
n = int(input()) num1 = '' num2 = '' num3 = '' num4 = '' for a in range(1111, 9999 + 1): num1 = str(a)[0] num2 = str(a)[1] num3 = str(a)[2] num4 = str(a)[3] if int(num1) != 0 and int(num2) != 0 and (int(num3) != 0) and (int(num4) != 0): if n % int(num1) == 0 and n % int(num2) == 0 and (n % int(num3) == 0) and (n % int(num4) == 0): print(f'{num1}{num2}{num3}{num4}', end=' ')
IR_Sensor_1 = 6 #GPIO number IR_Sensor_2 = 13 #GPIO number IR_Sensor_3 = 19 #GPIO number IR_Sensor_4 = 26 #GPIO number IR_Sensor_5 = 12 #GPIO number IR_Sensor_6 = 16 #GPIO number IR_Sensor_7 = 20 #GPIO number IR_Sensor_8 = 21 #GPIO number I_Restart = 5 #GPIO number I_Pair = 11 #GPIO number IR_time = 500 # time in ms Restart_time = 5000 # time in ms Pair_time = 200 # time in ms
ir__sensor_1 = 6 ir__sensor_2 = 13 ir__sensor_3 = 19 ir__sensor_4 = 26 ir__sensor_5 = 12 ir__sensor_6 = 16 ir__sensor_7 = 20 ir__sensor_8 = 21 i__restart = 5 i__pair = 11 ir_time = 500 restart_time = 5000 pair_time = 200
class Solution(object): def moveZeroes(self, nums): """ :type nums: List[int] :rtype: void Do not return anything, modify nums in-place instead. """ last_non_zero = 0 for cur in range(len(nums)): if nums[cur] != 0: nums[cur], nums[last_non_zero] = nums[last_non_zero], nums[cur] last_non_zero += 1
class Solution(object): def move_zeroes(self, nums): """ :type nums: List[int] :rtype: void Do not return anything, modify nums in-place instead. """ last_non_zero = 0 for cur in range(len(nums)): if nums[cur] != 0: (nums[cur], nums[last_non_zero]) = (nums[last_non_zero], nums[cur]) last_non_zero += 1
__title__ = 'MeteorTears' __description__ = 'Even the most boring times in life are limited.' __url__ = 'https://github.com/xiaoxiaolulu/MeteorTears' __version__ = '1.0.1' __author__ = 'Null' __author_email__ = '546464268@qq.com' __license__ = 'MIT' __copyright__ = 'Copyright 2018 Null'
__title__ = 'MeteorTears' __description__ = 'Even the most boring times in life are limited.' __url__ = 'https://github.com/xiaoxiaolulu/MeteorTears' __version__ = '1.0.1' __author__ = 'Null' __author_email__ = '546464268@qq.com' __license__ = 'MIT' __copyright__ = 'Copyright 2018 Null'
"""Custom execeptions for Cartola FC Draft.""" class SchemeError(Exception): """Indicates that the Line-up does not follow the scheme."""
"""Custom execeptions for Cartola FC Draft.""" class Schemeerror(Exception): """Indicates that the Line-up does not follow the scheme."""
# Definition for a binary tree node. # class TreeNode: # def __init__(self, val=0, left=None, right=None): # self.val = val # self.left = left # self.right = right class Solution: def binaryTreePaths(self, root: Optional[TreeNode]) -> List[str]: result = [] path = [] def backtrack(root): if not root: return if not root.left and not root.right: path.append(str(root.val)) result.append("->".join(path)) path.pop() return path.append(str(root.val)) backtrack(root.left) path.pop() path.append(str(root.val)) backtrack(root.right) path.pop() backtrack(root) return result
class Solution: def binary_tree_paths(self, root: Optional[TreeNode]) -> List[str]: result = [] path = [] def backtrack(root): if not root: return if not root.left and (not root.right): path.append(str(root.val)) result.append('->'.join(path)) path.pop() return path.append(str(root.val)) backtrack(root.left) path.pop() path.append(str(root.val)) backtrack(root.right) path.pop() backtrack(root) return result
# List of permitted AST toplevel statements. In IMPORTs (e.g. sgr import # and Splitfile IMPORT commands), we only allow read-only SELECTs. In Splitfile # SQL commands, we also allow users to use a bunch of writeable DML and DDL. IMPORT_SQL_PERMITTED_STATEMENTS = ["RawStmt", "SelectStmt"] SPLITFILE_SQL_PERMITTED_STATEMENTS = IMPORT_SQL_PERMITTED_STATEMENTS + [ "InsertStmt", "UpdateStmt", "DeleteStmt", "CreateStmt", "CreateTableAsStmt", "AlterTableStmt", "DropStmt", ] # List of table names/views/indexes that are located in pg_catalog. This is always # available to SQL statements even if the search_path doesn't have pg_catalog in it. # Generating this automatically requires a connection to the engine, adding a dependency # on that to the sql module, so we hardcode this. # Generated by # sgr sql "SELECT relname FROM pg_catalog.pg_class c LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace WHERE n.nspname = 'pg_catalog'" -a > blacklist.txt PG_CATALOG_TABLES = set( """pg_statistic pg_type pg_foreign_server pg_aggregate_fnoid_index pg_am_name_index pg_am_oid_index pg_amop_fam_strat_index pg_amop_opr_fam_index pg_amop_oid_index pg_amproc_fam_proc_index pg_amproc_oid_index pg_attrdef_adrelid_adnum_index pg_attrdef_oid_index pg_attribute_relid_attnam_index pg_attribute_relid_attnum_index pg_authid_rolname_index pg_authid_oid_index pg_auth_members_role_member_index pg_auth_members_member_role_index pg_cast_oid_index pg_cast_source_target_index pg_class_oid_index pg_class_relname_nsp_index pg_class_tblspc_relfilenode_index pg_collation_name_enc_nsp_index pg_collation_oid_index pg_constraint_conname_nsp_index pg_constraint_conrelid_contypid_conname_index pg_constraint_contypid_index pg_constraint_oid_index pg_constraint_conparentid_index pg_conversion_default_index pg_conversion_name_nsp_index pg_conversion_oid_index pg_database_datname_index pg_database_oid_index pg_depend_depender_index pg_depend_reference_index pg_description_o_c_o_index pg_shdescription_o_c_index pg_enum_oid_index pg_enum_typid_label_index pg_enum_typid_sortorder_index pg_index_indrelid_index pg_index_indexrelid_index pg_inherits_relid_seqno_index pg_inherits_parent_index pg_init_privs_o_c_o_index pg_language_name_index pg_language_oid_index pg_largeobject_loid_pn_index pg_largeobject_metadata_oid_index pg_namespace_nspname_index pg_namespace_oid_index pg_opclass_am_name_nsp_index pg_opclass_oid_index pg_operator_oid_index pg_operator_oprname_l_r_n_index pg_opfamily_am_name_nsp_index pg_opfamily_oid_index pg_pltemplate_name_index pg_proc_oid_index pg_proc_proname_args_nsp_index pg_rewrite_oid_index pg_rewrite_rel_rulename_index pg_sequence_seqrelid_index pg_shdepend_depender_index pg_shdepend_reference_index pg_statistic_relid_att_inh_index pg_statistic_ext_oid_index pg_statistic_ext_name_index pg_statistic_ext_relid_index pg_statistic_ext_data_stxoid_index pg_tablespace_oid_index pg_tablespace_spcname_index pg_transform_oid_index pg_transform_type_lang_index pg_trigger_tgconstraint_index pg_trigger_tgrelid_tgname_index pg_trigger_oid_index pg_event_trigger_evtname_index pg_event_trigger_oid_index pg_ts_config_cfgname_index pg_ts_config_oid_index pg_ts_config_map_index pg_ts_dict_dictname_index pg_ts_dict_oid_index pg_ts_parser_prsname_index pg_ts_parser_oid_index pg_ts_template_tmplname_index pg_ts_template_oid_index pg_type_oid_index pg_type_typname_nsp_index pg_foreign_data_wrapper_oid_index pg_foreign_data_wrapper_name_index pg_foreign_server_oid_index pg_foreign_server_name_index pg_user_mapping_oid_index pg_user_mapping_user_server_index pg_foreign_table_relid_index pg_default_acl_role_nsp_obj_index pg_default_acl_oid_index pg_db_role_setting_databaseid_rol_index pg_seclabel_object_index pg_shseclabel_object_index pg_extension_oid_index pg_extension_name_index pg_range_rngtypid_index pg_policy_oid_index pg_policy_polrelid_polname_index pg_replication_origin_roiident_index pg_replication_origin_roname_index pg_partitioned_table_partrelid_index pg_publication_oid_index pg_publication_pubname_index pg_publication_rel_oid_index pg_publication_rel_prrelid_prpubid_index pg_subscription_oid_index pg_subscription_subname_index pg_subscription_rel_srrelid_srsubid_index pg_authid pg_shadow pg_statistic_ext_data pg_roles pg_settings pg_file_settings pg_hba_file_rules pg_config pg_cursors pg_user_mapping pg_stat_bgwriter pg_replication_origin_status pg_subscription pg_stat_progress_vacuum pg_stat_progress_cluster pg_attribute pg_proc pg_class pg_attrdef pg_constraint pg_inherits pg_index pg_operator pg_opfamily pg_opclass pg_am pg_amop pg_amproc pg_language pg_largeobject_metadata pg_aggregate pg_stat_progress_create_index pg_user_mappings pg_largeobject pg_statistic_ext pg_rewrite pg_trigger pg_event_trigger pg_description pg_cast pg_enum pg_namespace pg_conversion pg_depend pg_database pg_db_role_setting pg_tablespace pg_pltemplate pg_auth_members pg_shdepend pg_shdescription pg_ts_config pg_ts_config_map pg_ts_dict pg_ts_parser pg_ts_template pg_extension pg_foreign_data_wrapper pg_foreign_table pg_policy pg_replication_origin pg_default_acl pg_init_privs pg_seclabel pg_shseclabel pg_collation pg_partitioned_table pg_range pg_transform pg_sequence pg_publication pg_publication_rel pg_subscription_rel pg_group pg_user pg_policies pg_rules pg_views pg_tables pg_matviews pg_indexes pg_sequences pg_stats pg_stats_ext pg_publication_tables pg_locks pg_available_extensions pg_available_extension_versions pg_prepared_xacts pg_prepared_statements pg_seclabels pg_statio_sys_tables pg_timezone_abbrevs pg_timezone_names pg_statio_user_tables pg_stat_all_tables pg_stat_xact_all_tables pg_stat_sys_tables pg_stat_xact_sys_tables pg_stat_user_tables pg_stat_xact_user_tables pg_statio_all_tables pg_stat_all_indexes pg_stat_sys_indexes pg_stat_user_indexes pg_statio_all_indexes pg_statio_sys_indexes pg_statio_user_indexes pg_statio_all_sequences pg_statio_sys_sequences pg_statio_user_sequences pg_stat_activity pg_stat_replication pg_stat_wal_receiver pg_stat_subscription pg_stat_ssl pg_stat_gssapi pg_replication_slots pg_stat_database pg_stat_database_conflicts pg_stat_user_functions pg_stat_xact_user_functions pg_stat_archiver """.split() )
import_sql_permitted_statements = ['RawStmt', 'SelectStmt'] splitfile_sql_permitted_statements = IMPORT_SQL_PERMITTED_STATEMENTS + ['InsertStmt', 'UpdateStmt', 'DeleteStmt', 'CreateStmt', 'CreateTableAsStmt', 'AlterTableStmt', 'DropStmt'] pg_catalog_tables = set('pg_statistic\npg_type\npg_foreign_server\npg_aggregate_fnoid_index\npg_am_name_index\npg_am_oid_index\npg_amop_fam_strat_index\npg_amop_opr_fam_index\npg_amop_oid_index\npg_amproc_fam_proc_index\npg_amproc_oid_index\npg_attrdef_adrelid_adnum_index\npg_attrdef_oid_index\npg_attribute_relid_attnam_index\npg_attribute_relid_attnum_index\npg_authid_rolname_index\npg_authid_oid_index\npg_auth_members_role_member_index\npg_auth_members_member_role_index\npg_cast_oid_index\npg_cast_source_target_index\npg_class_oid_index\npg_class_relname_nsp_index\npg_class_tblspc_relfilenode_index\npg_collation_name_enc_nsp_index\npg_collation_oid_index\npg_constraint_conname_nsp_index\npg_constraint_conrelid_contypid_conname_index\npg_constraint_contypid_index\npg_constraint_oid_index\npg_constraint_conparentid_index\npg_conversion_default_index\npg_conversion_name_nsp_index\npg_conversion_oid_index\npg_database_datname_index\npg_database_oid_index\npg_depend_depender_index\npg_depend_reference_index\npg_description_o_c_o_index\npg_shdescription_o_c_index\npg_enum_oid_index\npg_enum_typid_label_index\npg_enum_typid_sortorder_index\npg_index_indrelid_index\npg_index_indexrelid_index\npg_inherits_relid_seqno_index\npg_inherits_parent_index\npg_init_privs_o_c_o_index\npg_language_name_index\npg_language_oid_index\npg_largeobject_loid_pn_index\npg_largeobject_metadata_oid_index\npg_namespace_nspname_index\npg_namespace_oid_index\npg_opclass_am_name_nsp_index\npg_opclass_oid_index\npg_operator_oid_index\npg_operator_oprname_l_r_n_index\npg_opfamily_am_name_nsp_index\npg_opfamily_oid_index\npg_pltemplate_name_index\npg_proc_oid_index\npg_proc_proname_args_nsp_index\npg_rewrite_oid_index\npg_rewrite_rel_rulename_index\npg_sequence_seqrelid_index\npg_shdepend_depender_index\npg_shdepend_reference_index\npg_statistic_relid_att_inh_index\npg_statistic_ext_oid_index\npg_statistic_ext_name_index\npg_statistic_ext_relid_index\npg_statistic_ext_data_stxoid_index\npg_tablespace_oid_index\npg_tablespace_spcname_index\npg_transform_oid_index\npg_transform_type_lang_index\npg_trigger_tgconstraint_index\npg_trigger_tgrelid_tgname_index\npg_trigger_oid_index\npg_event_trigger_evtname_index\npg_event_trigger_oid_index\npg_ts_config_cfgname_index\npg_ts_config_oid_index\npg_ts_config_map_index\npg_ts_dict_dictname_index\npg_ts_dict_oid_index\npg_ts_parser_prsname_index\npg_ts_parser_oid_index\npg_ts_template_tmplname_index\npg_ts_template_oid_index\npg_type_oid_index\npg_type_typname_nsp_index\npg_foreign_data_wrapper_oid_index\npg_foreign_data_wrapper_name_index\npg_foreign_server_oid_index\npg_foreign_server_name_index\npg_user_mapping_oid_index\npg_user_mapping_user_server_index\npg_foreign_table_relid_index\npg_default_acl_role_nsp_obj_index\npg_default_acl_oid_index\npg_db_role_setting_databaseid_rol_index\npg_seclabel_object_index\npg_shseclabel_object_index\npg_extension_oid_index\npg_extension_name_index\npg_range_rngtypid_index\npg_policy_oid_index\npg_policy_polrelid_polname_index\npg_replication_origin_roiident_index\npg_replication_origin_roname_index\npg_partitioned_table_partrelid_index\npg_publication_oid_index\npg_publication_pubname_index\npg_publication_rel_oid_index\npg_publication_rel_prrelid_prpubid_index\npg_subscription_oid_index\npg_subscription_subname_index\npg_subscription_rel_srrelid_srsubid_index\npg_authid\npg_shadow\npg_statistic_ext_data\npg_roles\npg_settings\npg_file_settings\npg_hba_file_rules\npg_config\npg_cursors\npg_user_mapping\npg_stat_bgwriter\npg_replication_origin_status\npg_subscription\npg_stat_progress_vacuum\npg_stat_progress_cluster\npg_attribute\npg_proc\npg_class\npg_attrdef\npg_constraint\npg_inherits\npg_index\npg_operator\npg_opfamily\npg_opclass\npg_am\npg_amop\npg_amproc\npg_language\npg_largeobject_metadata\npg_aggregate\npg_stat_progress_create_index\npg_user_mappings\npg_largeobject\npg_statistic_ext\npg_rewrite\npg_trigger\npg_event_trigger\npg_description\npg_cast\npg_enum\npg_namespace\npg_conversion\npg_depend\npg_database\npg_db_role_setting\npg_tablespace\npg_pltemplate\npg_auth_members\npg_shdepend\npg_shdescription\npg_ts_config\npg_ts_config_map\npg_ts_dict\npg_ts_parser\npg_ts_template\npg_extension\npg_foreign_data_wrapper\npg_foreign_table\npg_policy\npg_replication_origin\npg_default_acl\npg_init_privs\npg_seclabel\npg_shseclabel\npg_collation\npg_partitioned_table\npg_range\npg_transform\npg_sequence\npg_publication\npg_publication_rel\npg_subscription_rel\npg_group\npg_user\npg_policies\npg_rules\npg_views\npg_tables\npg_matviews\npg_indexes\npg_sequences\npg_stats\npg_stats_ext\npg_publication_tables\npg_locks\npg_available_extensions\npg_available_extension_versions\npg_prepared_xacts\npg_prepared_statements\npg_seclabels\npg_statio_sys_tables\npg_timezone_abbrevs\npg_timezone_names\npg_statio_user_tables\npg_stat_all_tables\npg_stat_xact_all_tables\npg_stat_sys_tables\npg_stat_xact_sys_tables\npg_stat_user_tables\npg_stat_xact_user_tables\npg_statio_all_tables\npg_stat_all_indexes\npg_stat_sys_indexes\npg_stat_user_indexes\npg_statio_all_indexes\npg_statio_sys_indexes\npg_statio_user_indexes\npg_statio_all_sequences\npg_statio_sys_sequences\npg_statio_user_sequences\npg_stat_activity\npg_stat_replication\npg_stat_wal_receiver\npg_stat_subscription\npg_stat_ssl\npg_stat_gssapi\npg_replication_slots\npg_stat_database\npg_stat_database_conflicts\npg_stat_user_functions\npg_stat_xact_user_functions\npg_stat_archiver\n'.split())
class MultiprocessingUtils(object): @staticmethod def get_array_split_indices(array_length, thread_count): array_length += 1 indices = range(0, array_length, array_length / thread_count)[:thread_count] indices.append(array_length) return indices @staticmethod def start_all_processes(processes): for process in processes: process.start() @staticmethod def wait_for_all_processes(processes): for process in processes: process.join()
class Multiprocessingutils(object): @staticmethod def get_array_split_indices(array_length, thread_count): array_length += 1 indices = range(0, array_length, array_length / thread_count)[:thread_count] indices.append(array_length) return indices @staticmethod def start_all_processes(processes): for process in processes: process.start() @staticmethod def wait_for_all_processes(processes): for process in processes: process.join()
def smallestDifference(arrayOne, arrayTwo): arrayOne.sort() arrayTwo.sort() ans = [0, float('inf')] i = j = 0 while i < len(arrayOne) and j < len(arrayTwo): if abs(ans[0] - ans[1]) > abs(arrayOne[i] - arrayTwo[j]): ans[0], ans[1] = arrayOne[i], arrayTwo[j] if ans[0] - ans[1] == 0: return ans if arrayOne[i] <= arrayTwo[j]: i += 1 else: j += 1 return ans
def smallest_difference(arrayOne, arrayTwo): arrayOne.sort() arrayTwo.sort() ans = [0, float('inf')] i = j = 0 while i < len(arrayOne) and j < len(arrayTwo): if abs(ans[0] - ans[1]) > abs(arrayOne[i] - arrayTwo[j]): (ans[0], ans[1]) = (arrayOne[i], arrayTwo[j]) if ans[0] - ans[1] == 0: return ans if arrayOne[i] <= arrayTwo[j]: i += 1 else: j += 1 return ans
""" Entradas litros-->float-->l Salidas litros_comprados-->float-->l_c Nota: 1 Galon= 3.785 Litro 1 litro = 50000 COP """ l=float(input("Ingrese la cantidad de litros comprados ")) l_c=(l/3.785)*(3.785*50000) print("El total a pagar es: "+str(l_c)+" COP")
""" Entradas litros-->float-->l Salidas litros_comprados-->float-->l_c Nota: 1 Galon= 3.785 Litro 1 litro = 50000 COP """ l = float(input('Ingrese la cantidad de litros comprados ')) l_c = l / 3.785 * (3.785 * 50000) print('El total a pagar es: ' + str(l_c) + ' COP')
CATEGORIES = ["Gents", "Ladies", "Giants", "Boys", "Girls", "Kids", "Children"] BRANDS = [ "", "PRIDE", "DEBONGO", "VKC DEBONGO", "KAPERS", "STILE", "L.PRIDE", "SMARTAK", ]
categories = ['Gents', 'Ladies', 'Giants', 'Boys', 'Girls', 'Kids', 'Children'] brands = ['', 'PRIDE', 'DEBONGO', 'VKC DEBONGO', 'KAPERS', 'STILE', 'L.PRIDE', 'SMARTAK']
murder_note = "You may call me heartless, a killer, a monster, a murderer, but I'm still NOTHING compared to the villian that Jay was. This whole contest was a sham, an elaborate plot to shame the contestants and feed Jay's massive, massive ego. SURE you think you know him! You've seen him smiling for the cameras, laughing, joking, telling stories, waving his money around like a prop but off camera he was a sinister beast, a cruel cruel taskmaster, he treated all of us like slaves, like cattle, like animals! Do you remember Lindsay, she was the first to go, he called her such horrible things that she cried all night, keeping up all up, crying, crying, and more crying, he broke her with his words. I miss my former cast members, all of them very much. And we had to live with him, live in his home, live in his power, deal with his crazy demands. AND FOR WHAT! DID YOU KNOW THAT THE PRIZE ISN'T REAL? He never intended to marry one of us! The carrot on the stick was gone, all that was left was stick, he told us last night that we were all a terrible terrible disappointment and none of us would ever amount to anything, and that regardless of who won the contest he would never speak to any of us again! It's definitely the things like this you can feel in your gut how wrong he is! Well I showed him, he got what he deserved all right, I showed him, I showed him the person I am! I wasn't going to be pushed around any longer, and I wasn't going to let him go on pretending that he was some saint when all he was was a sick sick twisted man who deserved every bit of what he got. The fans need to know, Jay Stacksby is a vile amalgamation of all things evil and bad and the world is a better place without him." lily_trebuchet_intro = "Hi, I'm Lily Trebuchet from East Egg, Long Island. I love cats, hiking, and curling up under a warm blanket with a book. So they gave this little questionnaire to use for our bios so lets get started. What are some of my least favorite household chores? Dishes, oh yes it's definitely the dishes, I just hate doing them, don't you? Who is your favorite actor and why? Hmm, that's a hard one, but I think recently I'll have to go with Michael B. Jordan, every bit of that man is handsome, HANDSOME! Do you remember seeing him shirtless? I can't believe what he does for the cameras! Okay okay next question, what is your perfect date? Well it starts with a nice dinner at a delicious but small restaurant, you know like one of those places where the owner is in the back and comes out to talk to you and ask you how your meal was. My favorite form of art? Another hard one, but I think I'll have to go with music, music you can feel in your whole body and it is electrifying and best of all, you can dance to it! Okay final question, let's see, What are three things you cannot live without? Well first off, my beautiful, beautiful cat Jerry, he is my heart and spirit animal. Second is pasta, definitely pasta, and the third I think is my family, I love all of them very much and they support me in everything I do. I know Jay Stacksby is a handsome man and all of us want to be the first to walk down the aisle with him, but I think he might truly be the one for me. Okay that's it for the bio, I hope you have fun watching the show!" myrtle_beech_intro = 'Salutations. My name? Myrtle. Myrtle Beech. I am a woman of simple tastes. I enjoy reading, thinking, and doing my taxes. I entered this competition because I want a serious relationship. I want a commitment. The last man I dated was too whimsical. He wanted to go on dates that had no plan. No end goal. Sometimes we would just end up wandering the streets after dinner. He called it a "walk". A "walk" with no destination. Can you imagine? I like every action I take to have a measurable effect. When I see a movie, I like to walk away with insights that I did not have before. When I take a bike ride, there better be a worthy destination at the end of the bike path. Jay seems frivolous at times. This worries me. However, it is my staunch belief that one does not make and keep money without having a modicum of discipline. As such, I am hopeful. I will now list three things I cannot live without. Water. Emery boards. Dogs. Thank you for the opportunity to introduce myself. I look forward to the competition.' gregg_t_fishy_intro = "A good day to you all, I am Gregg T Fishy, of the Fishy Enterprise fortune. I am 37 years young. An adventurous spirit and I've never lost my sense of childlike wonder. I do love to be in the backyard gardening and I have the most extraordinary time when I'm fishing. Fishing for what, you might ask? Why, fishing for compliments of course! I have a stunning pair of radiant blue eyes. They will pierce the soul of anyone who dare gaze upon my countenance. I quite enjoy going on long jaunts through garden paths and short walks through greenhouses. I hope that Jay will be as absolutely interesting as he appears on the television. I find that he has some of the most curious tastes in style and humor. When I'm out and about I quite enjoy hearing tales that instill in my heart of hearts the fascination that beguiles my every day life. Every fiber of my being scintillates and vascillates with extreme pleasure during one of these charming anecdotes and significantly pleases my beautiful personage. I cannot wait to enjoy being on A Brand New Jay. It certainly seems like a grand time to explore life and love." def get_average_sentence_length(text): total_len = 0 sent_lens = [] standard_punct = text.replace("!",'.').replace("?",'.').strip(' ') sentences = standard_punct.split('.') for sentence in sentences: sent_len = len(sentence) total_len += sent_len sent_lens.append(sent_len) return total_len/len(sent_lens) def prepare_text(text): prepared_text = [] lc_text = text.lower() just_words = lc_text.replace(".","").replace(",","").replace("!","").replace('?','').replace("\"","").replace('\'',"") prepared_text = just_words.split(' ') return prepared_text def build_frequency_table(corpus): frequency_table = {} for element in corpus: count = corpus.count(element) frequency_table[element] = count return frequency_table def frequency_comparison(table1,table2): appearances = 0 mutual_appearances = 0 for key,value in table1.items(): if key in list(table2.keys()): if table2[key] >= value: appearances += table2[key] mutual_appearances += value else: appearances += value mutual_appearances += table2[key] elif key not in list(table2.keys()): appearances += value for key2,value2 in table2.items(): if key2 in list(table1.keys()): pass elif key2 not in list(table1.keys()): appearances += value2 frequency_comparison_score = mutual_appearances / (mutual_appearances + appearances) return frequency_comparison_score def ngram_creator(text_list): word_pairs = [] i = 0 while i < (len(text_list)-1): for word in text_list: if i+1 == len(text_list): break else: next_word = text_list[(i+1)%len(text_list)] word_pair = str(word + ' ' + next_word) word_pairs.append(word_pair) i = i + 1 return word_pairs def percent_difference(TextSample1,TextSample2): value1 = TextSample1.average_sentence_length value2 = TextSample2.average_sentence_length return (abs(value1 - value2))/((value1 + value2)/2) class TextSample: def __init__(self, text, author): self.raw_text = text self.author = author self.average_sentence_length = get_average_sentence_length(text) self.prepared_text = prepare_text(text) self.word_count_frequency = build_frequency_table(self.prepared_text) self.ngram_frequency = build_frequency_table(ngram_creator(self.prepared_text)) def __repr__(self): return 'Author: ' + self.author + ' // Average Sentence Length: ' + str(self.average_sentence_length) murderer_sample = TextSample(murder_note, 'Murderer') lily_sample = TextSample(lily_trebuchet_intro, 'Lily Trebuchet') myrtle_sample = TextSample(myrtle_beech_intro, 'Myrtle Beech') gregg_sample = TextSample(gregg_t_fishy_intro, 'Gregg T Fishy') def find_text_similarity(TextSample1,TextSample2): sentence_length_difference = percent_difference(TextSample1,TextSample2)##this isn't used for later calculation sentence_length_similarity = abs(1 - sentence_length_difference) word_count_similarity = frequency_comparison(TextSample1.word_count_frequency,TextSample2.word_count_frequency) ngram_similarity = frequency_comparison(TextSample1.ngram_frequency,TextSample2.ngram_frequency) similarity_score = (sentence_length_similarity + word_count_similarity + ngram_similarity) / 3 return similarity_score print('Lily\'s similarity score is: ' + str(find_text_similarity(murderer_sample,lily_sample))) print('Gregg\'s similarity score is: ' + str(find_text_similarity(murderer_sample,gregg_sample))) print('Myrtle\'s similarity score is: ' + str(find_text_similarity(murderer_sample,myrtle_sample))) print('Lily is the murderer')
murder_note = "You may call me heartless, a killer, a monster, a murderer, but I'm still NOTHING compared to the villian that Jay was. This whole contest was a sham, an elaborate plot to shame the contestants and feed Jay's massive, massive ego. SURE you think you know him! You've seen him smiling for the cameras, laughing, joking, telling stories, waving his money around like a prop but off camera he was a sinister beast, a cruel cruel taskmaster, he treated all of us like slaves, like cattle, like animals! Do you remember Lindsay, she was the first to go, he called her such horrible things that she cried all night, keeping up all up, crying, crying, and more crying, he broke her with his words. I miss my former cast members, all of them very much. And we had to live with him, live in his home, live in his power, deal with his crazy demands. AND FOR WHAT! DID YOU KNOW THAT THE PRIZE ISN'T REAL? He never intended to marry one of us! The carrot on the stick was gone, all that was left was stick, he told us last night that we were all a terrible terrible disappointment and none of us would ever amount to anything, and that regardless of who won the contest he would never speak to any of us again! It's definitely the things like this you can feel in your gut how wrong he is! Well I showed him, he got what he deserved all right, I showed him, I showed him the person I am! I wasn't going to be pushed around any longer, and I wasn't going to let him go on pretending that he was some saint when all he was was a sick sick twisted man who deserved every bit of what he got. The fans need to know, Jay Stacksby is a vile amalgamation of all things evil and bad and the world is a better place without him." lily_trebuchet_intro = "Hi, I'm Lily Trebuchet from East Egg, Long Island. I love cats, hiking, and curling up under a warm blanket with a book. So they gave this little questionnaire to use for our bios so lets get started. What are some of my least favorite household chores? Dishes, oh yes it's definitely the dishes, I just hate doing them, don't you? Who is your favorite actor and why? Hmm, that's a hard one, but I think recently I'll have to go with Michael B. Jordan, every bit of that man is handsome, HANDSOME! Do you remember seeing him shirtless? I can't believe what he does for the cameras! Okay okay next question, what is your perfect date? Well it starts with a nice dinner at a delicious but small restaurant, you know like one of those places where the owner is in the back and comes out to talk to you and ask you how your meal was. My favorite form of art? Another hard one, but I think I'll have to go with music, music you can feel in your whole body and it is electrifying and best of all, you can dance to it! Okay final question, let's see, What are three things you cannot live without? Well first off, my beautiful, beautiful cat Jerry, he is my heart and spirit animal. Second is pasta, definitely pasta, and the third I think is my family, I love all of them very much and they support me in everything I do. I know Jay Stacksby is a handsome man and all of us want to be the first to walk down the aisle with him, but I think he might truly be the one for me. Okay that's it for the bio, I hope you have fun watching the show!" myrtle_beech_intro = 'Salutations. My name? Myrtle. Myrtle Beech. I am a woman of simple tastes. I enjoy reading, thinking, and doing my taxes. I entered this competition because I want a serious relationship. I want a commitment. The last man I dated was too whimsical. He wanted to go on dates that had no plan. No end goal. Sometimes we would just end up wandering the streets after dinner. He called it a "walk". A "walk" with no destination. Can you imagine? I like every action I take to have a measurable effect. When I see a movie, I like to walk away with insights that I did not have before. When I take a bike ride, there better be a worthy destination at the end of the bike path. Jay seems frivolous at times. This worries me. However, it is my staunch belief that one does not make and keep money without having a modicum of discipline. As such, I am hopeful. I will now list three things I cannot live without. Water. Emery boards. Dogs. Thank you for the opportunity to introduce myself. I look forward to the competition.' gregg_t_fishy_intro = "A good day to you all, I am Gregg T Fishy, of the Fishy Enterprise fortune. I am 37 years young. An adventurous spirit and I've never lost my sense of childlike wonder. I do love to be in the backyard gardening and I have the most extraordinary time when I'm fishing. Fishing for what, you might ask? Why, fishing for compliments of course! I have a stunning pair of radiant blue eyes. They will pierce the soul of anyone who dare gaze upon my countenance. I quite enjoy going on long jaunts through garden paths and short walks through greenhouses. I hope that Jay will be as absolutely interesting as he appears on the television. I find that he has some of the most curious tastes in style and humor. When I'm out and about I quite enjoy hearing tales that instill in my heart of hearts the fascination that beguiles my every day life. Every fiber of my being scintillates and vascillates with extreme pleasure during one of these charming anecdotes and significantly pleases my beautiful personage. I cannot wait to enjoy being on A Brand New Jay. It certainly seems like a grand time to explore life and love." def get_average_sentence_length(text): total_len = 0 sent_lens = [] standard_punct = text.replace('!', '.').replace('?', '.').strip(' ') sentences = standard_punct.split('.') for sentence in sentences: sent_len = len(sentence) total_len += sent_len sent_lens.append(sent_len) return total_len / len(sent_lens) def prepare_text(text): prepared_text = [] lc_text = text.lower() just_words = lc_text.replace('.', '').replace(',', '').replace('!', '').replace('?', '').replace('"', '').replace("'", '') prepared_text = just_words.split(' ') return prepared_text def build_frequency_table(corpus): frequency_table = {} for element in corpus: count = corpus.count(element) frequency_table[element] = count return frequency_table def frequency_comparison(table1, table2): appearances = 0 mutual_appearances = 0 for (key, value) in table1.items(): if key in list(table2.keys()): if table2[key] >= value: appearances += table2[key] mutual_appearances += value else: appearances += value mutual_appearances += table2[key] elif key not in list(table2.keys()): appearances += value for (key2, value2) in table2.items(): if key2 in list(table1.keys()): pass elif key2 not in list(table1.keys()): appearances += value2 frequency_comparison_score = mutual_appearances / (mutual_appearances + appearances) return frequency_comparison_score def ngram_creator(text_list): word_pairs = [] i = 0 while i < len(text_list) - 1: for word in text_list: if i + 1 == len(text_list): break else: next_word = text_list[(i + 1) % len(text_list)] word_pair = str(word + ' ' + next_word) word_pairs.append(word_pair) i = i + 1 return word_pairs def percent_difference(TextSample1, TextSample2): value1 = TextSample1.average_sentence_length value2 = TextSample2.average_sentence_length return abs(value1 - value2) / ((value1 + value2) / 2) class Textsample: def __init__(self, text, author): self.raw_text = text self.author = author self.average_sentence_length = get_average_sentence_length(text) self.prepared_text = prepare_text(text) self.word_count_frequency = build_frequency_table(self.prepared_text) self.ngram_frequency = build_frequency_table(ngram_creator(self.prepared_text)) def __repr__(self): return 'Author: ' + self.author + ' // Average Sentence Length: ' + str(self.average_sentence_length) murderer_sample = text_sample(murder_note, 'Murderer') lily_sample = text_sample(lily_trebuchet_intro, 'Lily Trebuchet') myrtle_sample = text_sample(myrtle_beech_intro, 'Myrtle Beech') gregg_sample = text_sample(gregg_t_fishy_intro, 'Gregg T Fishy') def find_text_similarity(TextSample1, TextSample2): sentence_length_difference = percent_difference(TextSample1, TextSample2) sentence_length_similarity = abs(1 - sentence_length_difference) word_count_similarity = frequency_comparison(TextSample1.word_count_frequency, TextSample2.word_count_frequency) ngram_similarity = frequency_comparison(TextSample1.ngram_frequency, TextSample2.ngram_frequency) similarity_score = (sentence_length_similarity + word_count_similarity + ngram_similarity) / 3 return similarity_score print("Lily's similarity score is: " + str(find_text_similarity(murderer_sample, lily_sample))) print("Gregg's similarity score is: " + str(find_text_similarity(murderer_sample, gregg_sample))) print("Myrtle's similarity score is: " + str(find_text_similarity(murderer_sample, myrtle_sample))) print('Lily is the murderer')
class ColorTerminal: prRed = '\033[91m' prGreen = '\033[92m' prLightPurple = '\033[94m' prCyan = '\033[96m' endc = '\033[0m'
class Colorterminal: pr_red = '\x1b[91m' pr_green = '\x1b[92m' pr_light_purple = '\x1b[94m' pr_cyan = '\x1b[96m' endc = '\x1b[0m'
class Solution: def generate(self, numRows: 'int') -> 'List[List[int]]': if numRows<1: return [] rst = [] if numRows == 1: rst.append([1]) elif numRows == 2: rst.append([1]) rst.append([1,1]) else: rst.append([1]) rst.append([1,1]) for level in range(2,numRows,1): if len(rst) < level+1: rst.append([1]) for i in range(level-1): rst[level].append(rst[level-1][i]+rst[level-1][i+1]) rst[level].append(1) return rst
class Solution: def generate(self, numRows: 'int') -> 'List[List[int]]': if numRows < 1: return [] rst = [] if numRows == 1: rst.append([1]) elif numRows == 2: rst.append([1]) rst.append([1, 1]) else: rst.append([1]) rst.append([1, 1]) for level in range(2, numRows, 1): if len(rst) < level + 1: rst.append([1]) for i in range(level - 1): rst[level].append(rst[level - 1][i] + rst[level - 1][i + 1]) rst[level].append(1) return rst
# -*- coding: utf-8 -*- #------------------------------------------------------------------------------ # file: $Id$ # auth: Philip J Grabner <phil@canary.md> # date: 2016/09/14 # copy: (C) Copyright 2016-EOT Canary Health, Inc., All Rights Reserved. #------------------------------------------------------------------------------ #------------------------------------------------------------------------------ Undefined = object() #------------------------------------------------------------------------------ class Error(Exception): pass class PrecompilerUnavailable(Error): pass class TemplateCollision(Error): pass #------------------------------------------------------------------------------ # end of $Id$ # $ChangeLog$ #------------------------------------------------------------------------------
undefined = object() class Error(Exception): pass class Precompilerunavailable(Error): pass class Templatecollision(Error): pass
a = int(input()) b = int(input()) if a == b: print(0) elif a > b: print(1) else: print(2)
a = int(input()) b = int(input()) if a == b: print(0) elif a > b: print(1) else: print(2)
############################################################################ # Generic script applicable on any Operating Environments (Unix, Windows) # ScriptName : wls_deploy.py # Properties : weblogic.properties test.properties # Author : Kevin Yuan ############################################################################ #=========================================================================== # Connect to wls server #=========================================================================== connect('@WL_USR@','@WL_PWD@','t3://@WL_HOST@:@WL_PORT@') #=========================================================================== # Deploy applications to wls server #=========================================================================== edit() startEdit() deploy(appName='@appName@', path='@testDir@/@earName@', targets='@TARGET_SERVER@') #startApplication('@appName@') #dumpStack() save() activate() exit()
connect('@WL_USR@', '@WL_PWD@', 't3://@WL_HOST@:@WL_PORT@') edit() start_edit() deploy(appName='@appName@', path='@testDir@/@earName@', targets='@TARGET_SERVER@') save() activate() exit()
class DroneTemplate: __attr__ = ('id', 'name', 'namespace', 'data') def __init__(self, data: dict): self._data = data @property def id(self): return self._data.get('id') @property def name(self): return self._data.get('name') @property def namespace(self): return self._data.get('namespace') @property def data(self): return self._data.get('data')
class Dronetemplate: __attr__ = ('id', 'name', 'namespace', 'data') def __init__(self, data: dict): self._data = data @property def id(self): return self._data.get('id') @property def name(self): return self._data.get('name') @property def namespace(self): return self._data.get('namespace') @property def data(self): return self._data.get('data')
class Error(Exception): """Base-class for all exceptions raised by this module.""" class ConfidentialsNotSuppliedError(Error): """An API key and an API sectret must be supplied.""" class BearerTokenNotFetchedError(Error): """Couldn't fetch the bearer token.""" class InvalidDownloadPathError(Error): """Download path must be a directory."""
class Error(Exception): """Base-class for all exceptions raised by this module.""" class Confidentialsnotsuppliederror(Error): """An API key and an API sectret must be supplied.""" class Bearertokennotfetchederror(Error): """Couldn't fetch the bearer token.""" class Invaliddownloadpatherror(Error): """Download path must be a directory."""
A = float(raw_input()) B = float(raw_input()) MEDIA = ((A*3.5)+(B*7.5))/11 print ("MEDIA = %.5f" %MEDIA)
a = float(raw_input()) b = float(raw_input()) media = (A * 3.5 + B * 7.5) / 11 print('MEDIA = %.5f' % MEDIA)
for _ in range(int(input())): n=int(input()) l=list(map(int,input().split())) if len(set(l))<n: print("YES") else: print("NO")
for _ in range(int(input())): n = int(input()) l = list(map(int, input().split())) if len(set(l)) < n: print('YES') else: print('NO')
def ParseXMLWithXPath(xmlString, xpath): return
def parse_xml_with_x_path(xmlString, xpath): return
# # PySNMP MIB module ZXR10-T128-MIB (http://snmplabs.com/pysmi) # ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/ZXR10-T128-MIB # Produced by pysmi-0.3.4 at Mon Apr 29 21:42:31 2019 # On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4 # Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15) # Integer, OctetString, ObjectIdentifier = mibBuilder.importSymbols("ASN1", "Integer", "OctetString", "ObjectIdentifier") NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues") ValueSizeConstraint, ConstraintsUnion, ConstraintsIntersection, ValueRangeConstraint, SingleValueConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ValueSizeConstraint", "ConstraintsUnion", "ConstraintsIntersection", "ValueRangeConstraint", "SingleValueConstraint") ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup") Bits, mgmt, iso, MibScalar, MibTable, MibTableRow, MibTableColumn, Counter32, TimeTicks, IpAddress, Unsigned32, MibIdentifier, Counter64, Gauge32, NotificationType, ObjectIdentity, ModuleIdentity, NotificationType, enterprises, Integer32 = mibBuilder.importSymbols("SNMPv2-SMI", "Bits", "mgmt", "iso", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Counter32", "TimeTicks", "IpAddress", "Unsigned32", "MibIdentifier", "Counter64", "Gauge32", "NotificationType", "ObjectIdentity", "ModuleIdentity", "NotificationType", "enterprises", "Integer32") TextualConvention, DisplayString = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "DisplayString") BoolStatus, PortWorkingType, UnitRunStatus, OperStatus, NpcType, zxr10, zxr10PosInRack, DisplayString, BoardType, PidUsedStatus, AvailStatus, ShelfAttrib, MasterStatus, PortType, zxr10rack, zxr10RackNo = mibBuilder.importSymbols("ZXR10-MIB", "BoolStatus", "PortWorkingType", "UnitRunStatus", "OperStatus", "NpcType", "zxr10", "zxr10PosInRack", "DisplayString", "BoardType", "PidUsedStatus", "AvailStatus", "ShelfAttrib", "MasterStatus", "PortType", "zxr10rack", "zxr10RackNo") class AlarmType(Integer32): subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 129, 130, 131, 132, 133, 134)) namedValues = NamedValues(("hardware-environment", 1), ("hardware-board", 2), ("hardware-port", 3), ("softprotocol-ros", 65), ("softprotocol-database", 66), ("softprotocol-oam", 67), ("softprotocol-security", 68), ("softprotocol-ospf", 69), ("softprotocol-rip", 70), ("softprotocol-bgp", 71), ("softprotocol-drp", 72), ("softprotocol-tcp-udp", 73), ("softprotocol-ip", 74), ("softprotocol-igmp", 75), ("softprotocol-telnet", 76), ("softprotocol-udp", 77), ("softprotocol-arp", 78), ("softprotocol-isis", 79), ("softprotocol-icmp", 80), ("softprotocol-snmp", 81), ("softprotocol-rmon", 82), ("statistics-microcode", 129), ("statistics-ip", 130), ("statistics-tcp", 131), ("statistics-udp", 132), ("statistics-icmp", 133), ("statistics-bgp", 134)) zxr10shelfTable = MibTable((1, 3, 6, 1, 4, 1, 3902, 3, 2, 2), ) if mibBuilder.loadTexts: zxr10shelfTable.setStatus('current') zxr10shelfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3902, 3, 2, 2, 1), ).setIndexNames((0, "ZXR10-MIB", "zxr10RackNo"), (0, "ZXR10-T128-MIB", "zxr10ShelfNo")) if mibBuilder.loadTexts: zxr10shelfEntry.setStatus('current') zxr10ShelfNo = MibTableColumn((1, 3, 6, 1, 4, 1, 3902, 3, 2, 2, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: zxr10ShelfNo.setStatus('current') zxr10ShelfAttrib = MibTableColumn((1, 3, 6, 1, 4, 1, 3902, 3, 2, 2, 1, 2), ShelfAttrib()).setMaxAccess("readonly") if mibBuilder.loadTexts: zxr10ShelfAttrib.setStatus('current') zxr10ShelfAvailStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 3902, 3, 2, 2, 1, 3), AvailStatus()).setMaxAccess("readonly") if mibBuilder.loadTexts: zxr10ShelfAvailStatus.setStatus('current') zxr10portTable = MibTable((1, 3, 6, 1, 4, 1, 3902, 3, 2, 4), ) if mibBuilder.loadTexts: zxr10portTable.setStatus('current') zxr10portEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3902, 3, 2, 4, 1), ).setIndexNames((0, "ZXR10-MIB", "zxr10RackNo"), (0, "ZXR10-T128-MIB", "zxr10ShelfNo"), (0, "ZXR10-MIB", "zxr10PosInRack"), (0, "ZXR10-T128-MIB", "zxr10PortNo")) if mibBuilder.loadTexts: zxr10portEntry.setStatus('current') zxr10PortIfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 3902, 3, 2, 4, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: zxr10PortIfIndex.setStatus('current') zxr10PortNo = MibTableColumn((1, 3, 6, 1, 4, 1, 3902, 3, 2, 4, 1, 2), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: zxr10PortNo.setStatus('current') zxr10PortType = MibTableColumn((1, 3, 6, 1, 4, 1, 3902, 3, 2, 4, 1, 3), PortType()).setMaxAccess("readonly") if mibBuilder.loadTexts: zxr10PortType.setStatus('current') zxr10PortWorkingType = MibTableColumn((1, 3, 6, 1, 4, 1, 3902, 3, 2, 4, 1, 4), PortWorkingType()).setMaxAccess("readonly") if mibBuilder.loadTexts: zxr10PortWorkingType.setStatus('current') zxr10PortMTU = MibTableColumn((1, 3, 6, 1, 4, 1, 3902, 3, 2, 4, 1, 5), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: zxr10PortMTU.setStatus('current') zxr10PortSpeed = MibTableColumn((1, 3, 6, 1, 4, 1, 3902, 3, 2, 4, 1, 6), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 16))).setMaxAccess("readonly") if mibBuilder.loadTexts: zxr10PortSpeed.setStatus('current') zxr10PortAvailStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 3902, 3, 2, 4, 1, 7), AvailStatus()).setMaxAccess("readonly") if mibBuilder.loadTexts: zxr10PortAvailStatus.setStatus('current') zxr10PortOperStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 3902, 3, 2, 4, 1, 8), OperStatus()).setMaxAccess("readonly") if mibBuilder.loadTexts: zxr10PortOperStatus.setStatus('current') mibBuilder.exportSymbols("ZXR10-T128-MIB", zxr10PortWorkingType=zxr10PortWorkingType, zxr10ShelfNo=zxr10ShelfNo, zxr10PortSpeed=zxr10PortSpeed, zxr10PortAvailStatus=zxr10PortAvailStatus, zxr10shelfEntry=zxr10shelfEntry, zxr10shelfTable=zxr10shelfTable, zxr10PortNo=zxr10PortNo, zxr10portEntry=zxr10portEntry, zxr10PortMTU=zxr10PortMTU, zxr10portTable=zxr10portTable, zxr10PortOperStatus=zxr10PortOperStatus, AlarmType=AlarmType, zxr10PortIfIndex=zxr10PortIfIndex, zxr10ShelfAvailStatus=zxr10ShelfAvailStatus, zxr10PortType=zxr10PortType, zxr10ShelfAttrib=zxr10ShelfAttrib)
(integer, octet_string, object_identifier) = mibBuilder.importSymbols('ASN1', 'Integer', 'OctetString', 'ObjectIdentifier') (named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues') (value_size_constraint, constraints_union, constraints_intersection, value_range_constraint, single_value_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ValueSizeConstraint', 'ConstraintsUnion', 'ConstraintsIntersection', 'ValueRangeConstraint', 'SingleValueConstraint') (module_compliance, notification_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'NotificationGroup') (bits, mgmt, iso, mib_scalar, mib_table, mib_table_row, mib_table_column, counter32, time_ticks, ip_address, unsigned32, mib_identifier, counter64, gauge32, notification_type, object_identity, module_identity, notification_type, enterprises, integer32) = mibBuilder.importSymbols('SNMPv2-SMI', 'Bits', 'mgmt', 'iso', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'Counter32', 'TimeTicks', 'IpAddress', 'Unsigned32', 'MibIdentifier', 'Counter64', 'Gauge32', 'NotificationType', 'ObjectIdentity', 'ModuleIdentity', 'NotificationType', 'enterprises', 'Integer32') (textual_convention, display_string) = mibBuilder.importSymbols('SNMPv2-TC', 'TextualConvention', 'DisplayString') (bool_status, port_working_type, unit_run_status, oper_status, npc_type, zxr10, zxr10_pos_in_rack, display_string, board_type, pid_used_status, avail_status, shelf_attrib, master_status, port_type, zxr10rack, zxr10_rack_no) = mibBuilder.importSymbols('ZXR10-MIB', 'BoolStatus', 'PortWorkingType', 'UnitRunStatus', 'OperStatus', 'NpcType', 'zxr10', 'zxr10PosInRack', 'DisplayString', 'BoardType', 'PidUsedStatus', 'AvailStatus', 'ShelfAttrib', 'MasterStatus', 'PortType', 'zxr10rack', 'zxr10RackNo') class Alarmtype(Integer32): subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 3, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 129, 130, 131, 132, 133, 134)) named_values = named_values(('hardware-environment', 1), ('hardware-board', 2), ('hardware-port', 3), ('softprotocol-ros', 65), ('softprotocol-database', 66), ('softprotocol-oam', 67), ('softprotocol-security', 68), ('softprotocol-ospf', 69), ('softprotocol-rip', 70), ('softprotocol-bgp', 71), ('softprotocol-drp', 72), ('softprotocol-tcp-udp', 73), ('softprotocol-ip', 74), ('softprotocol-igmp', 75), ('softprotocol-telnet', 76), ('softprotocol-udp', 77), ('softprotocol-arp', 78), ('softprotocol-isis', 79), ('softprotocol-icmp', 80), ('softprotocol-snmp', 81), ('softprotocol-rmon', 82), ('statistics-microcode', 129), ('statistics-ip', 130), ('statistics-tcp', 131), ('statistics-udp', 132), ('statistics-icmp', 133), ('statistics-bgp', 134)) zxr10shelf_table = mib_table((1, 3, 6, 1, 4, 1, 3902, 3, 2, 2)) if mibBuilder.loadTexts: zxr10shelfTable.setStatus('current') zxr10shelf_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3902, 3, 2, 2, 1)).setIndexNames((0, 'ZXR10-MIB', 'zxr10RackNo'), (0, 'ZXR10-T128-MIB', 'zxr10ShelfNo')) if mibBuilder.loadTexts: zxr10shelfEntry.setStatus('current') zxr10_shelf_no = mib_table_column((1, 3, 6, 1, 4, 1, 3902, 3, 2, 2, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: zxr10ShelfNo.setStatus('current') zxr10_shelf_attrib = mib_table_column((1, 3, 6, 1, 4, 1, 3902, 3, 2, 2, 1, 2), shelf_attrib()).setMaxAccess('readonly') if mibBuilder.loadTexts: zxr10ShelfAttrib.setStatus('current') zxr10_shelf_avail_status = mib_table_column((1, 3, 6, 1, 4, 1, 3902, 3, 2, 2, 1, 3), avail_status()).setMaxAccess('readonly') if mibBuilder.loadTexts: zxr10ShelfAvailStatus.setStatus('current') zxr10port_table = mib_table((1, 3, 6, 1, 4, 1, 3902, 3, 2, 4)) if mibBuilder.loadTexts: zxr10portTable.setStatus('current') zxr10port_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3902, 3, 2, 4, 1)).setIndexNames((0, 'ZXR10-MIB', 'zxr10RackNo'), (0, 'ZXR10-T128-MIB', 'zxr10ShelfNo'), (0, 'ZXR10-MIB', 'zxr10PosInRack'), (0, 'ZXR10-T128-MIB', 'zxr10PortNo')) if mibBuilder.loadTexts: zxr10portEntry.setStatus('current') zxr10_port_if_index = mib_table_column((1, 3, 6, 1, 4, 1, 3902, 3, 2, 4, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: zxr10PortIfIndex.setStatus('current') zxr10_port_no = mib_table_column((1, 3, 6, 1, 4, 1, 3902, 3, 2, 4, 1, 2), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: zxr10PortNo.setStatus('current') zxr10_port_type = mib_table_column((1, 3, 6, 1, 4, 1, 3902, 3, 2, 4, 1, 3), port_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: zxr10PortType.setStatus('current') zxr10_port_working_type = mib_table_column((1, 3, 6, 1, 4, 1, 3902, 3, 2, 4, 1, 4), port_working_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: zxr10PortWorkingType.setStatus('current') zxr10_port_mtu = mib_table_column((1, 3, 6, 1, 4, 1, 3902, 3, 2, 4, 1, 5), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: zxr10PortMTU.setStatus('current') zxr10_port_speed = mib_table_column((1, 3, 6, 1, 4, 1, 3902, 3, 2, 4, 1, 6), display_string().subtype(subtypeSpec=value_size_constraint(0, 16))).setMaxAccess('readonly') if mibBuilder.loadTexts: zxr10PortSpeed.setStatus('current') zxr10_port_avail_status = mib_table_column((1, 3, 6, 1, 4, 1, 3902, 3, 2, 4, 1, 7), avail_status()).setMaxAccess('readonly') if mibBuilder.loadTexts: zxr10PortAvailStatus.setStatus('current') zxr10_port_oper_status = mib_table_column((1, 3, 6, 1, 4, 1, 3902, 3, 2, 4, 1, 8), oper_status()).setMaxAccess('readonly') if mibBuilder.loadTexts: zxr10PortOperStatus.setStatus('current') mibBuilder.exportSymbols('ZXR10-T128-MIB', zxr10PortWorkingType=zxr10PortWorkingType, zxr10ShelfNo=zxr10ShelfNo, zxr10PortSpeed=zxr10PortSpeed, zxr10PortAvailStatus=zxr10PortAvailStatus, zxr10shelfEntry=zxr10shelfEntry, zxr10shelfTable=zxr10shelfTable, zxr10PortNo=zxr10PortNo, zxr10portEntry=zxr10portEntry, zxr10PortMTU=zxr10PortMTU, zxr10portTable=zxr10portTable, zxr10PortOperStatus=zxr10PortOperStatus, AlarmType=AlarmType, zxr10PortIfIndex=zxr10PortIfIndex, zxr10ShelfAvailStatus=zxr10ShelfAvailStatus, zxr10PortType=zxr10PortType, zxr10ShelfAttrib=zxr10ShelfAttrib)
print(""" You have succesfully created `{{ cookiecutter.repository_slug }}` with these cookiecutter parameters: {% for key, value in cookiecutter.items()|sort %} {{ "{0:24}".format(key + ":") }} {{ "{0!r}".format(value).strip("u") }} {%- endfor %} ----------------------------------------------------------------- Now: - Run `awesome_bot README.md` to verify the links. - Activate your repository in your Travis account. - Please read awesome's PR requirements before submitting a Pull Request: https://github.com/sindresorhus/awesome/blob/master/pull_request_template.md """)
print('\nYou have succesfully created `{{ cookiecutter.repository_slug }}`\nwith these cookiecutter parameters:\n\n{% for key, value in cookiecutter.items()|sort %}\n {{ "{0:24}".format(key + ":") }} {{ "{0!r}".format(value).strip("u") }}\n{%- endfor %}\n\n-----------------------------------------------------------------\n\nNow:\n\n- Run `awesome_bot README.md` to verify the links.\n- Activate your repository in your Travis account.\n- Please read awesome\'s PR requirements before submitting a Pull Request:\n https://github.com/sindresorhus/awesome/blob/master/pull_request_template.md\n')
#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ Created on Sat Jan 22 18:06:36 2022 @author: victor """ alien = {'color': 'green', 'points': 5} print("The Alien's color is " + alien['color'])
""" Created on Sat Jan 22 18:06:36 2022 @author: victor """ alien = {'color': 'green', 'points': 5} print("The Alien's color is " + alien['color'])
class Solution(object): def twoSum(self, nums, target): """ :type nums: List[int] :type target: int :rtype: List[int] """ index={} for i,num in enumerate(nums): if target - num in index: return [index[target - num] + 1,i+1] else: index[num] = i
class Solution(object): def two_sum(self, nums, target): """ :type nums: List[int] :type target: int :rtype: List[int] """ index = {} for (i, num) in enumerate(nums): if target - num in index: return [index[target - num] + 1, i + 1] else: index[num] = i
class Solution: def twoSum(self, nums, target): """ :type nums: List[int] :type target: int :rtype: List[int] """
class Solution: def two_sum(self, nums, target): """ :type nums: List[int] :type target: int :rtype: List[int] """
class CDCAbstract: def __init__(self, username, pw, headless=False): self.username = username self.password = pw self.headless = headless # vars (practical) self.available_days_practical = [] self.available_days_in_view_practical = [] self.available_times_practical = [] self.available_sessions_practical = {} self.booked_sessions_practical = {} self.lesson_name_practical = '' self.can_book_next_practical_lesson = True self.has_auto_reserved_practical = False # vars (road revision) self.available_days_rr = [] self.available_days_in_view_rr = [] self.available_times_rr = [] self.available_sessions_rr = {} self.booked_sessions_rr = {} # vars (btt) self.available_days_btt = [] self.available_days_in_view_btt = [] self.available_times_btt = [] self.available_sessions_btt = {} self.booked_sessions_btt = {} self.lesson_name_btt = '' # vars (rtt) self.available_days_rtt = [] self.available_days_in_view_rtt = [] self.available_times_rtt = [] self.available_sessions_rtt = {} self.booked_sessions_rtt = {} self.lesson_name_rtt = '' # vars (pt) self.available_days_pt = [] self.available_days_in_view_pt = [] self.available_times_pt = [] self.available_sessions_pt = {} self.booked_sessions_pt = {} self.lesson_name_pt = '' self.can_book_pt = True class Types: PRACTICAL = "practical" ROAD_REVISION = "rr" BTT = "btt" RTT = "rtt" PT = "pt"
class Cdcabstract: def __init__(self, username, pw, headless=False): self.username = username self.password = pw self.headless = headless self.available_days_practical = [] self.available_days_in_view_practical = [] self.available_times_practical = [] self.available_sessions_practical = {} self.booked_sessions_practical = {} self.lesson_name_practical = '' self.can_book_next_practical_lesson = True self.has_auto_reserved_practical = False self.available_days_rr = [] self.available_days_in_view_rr = [] self.available_times_rr = [] self.available_sessions_rr = {} self.booked_sessions_rr = {} self.available_days_btt = [] self.available_days_in_view_btt = [] self.available_times_btt = [] self.available_sessions_btt = {} self.booked_sessions_btt = {} self.lesson_name_btt = '' self.available_days_rtt = [] self.available_days_in_view_rtt = [] self.available_times_rtt = [] self.available_sessions_rtt = {} self.booked_sessions_rtt = {} self.lesson_name_rtt = '' self.available_days_pt = [] self.available_days_in_view_pt = [] self.available_times_pt = [] self.available_sessions_pt = {} self.booked_sessions_pt = {} self.lesson_name_pt = '' self.can_book_pt = True class Types: practical = 'practical' road_revision = 'rr' btt = 'btt' rtt = 'rtt' pt = 'pt'
'''OrderState data structure.''' __copyright__ = "Copyright (c) 2008 Kevin J Bluck" __version__ = "$Id$" class OrderState(object): '''Data structure containing attributes to describe the status of an order. ''' def __init__(self, status="", init_margin="", maint_margin="", equity_with_loan="", commission=0.0, min_commission=0.0, max_commission=0.0, commission_currency="", warning_text=""): self.m_status = status # Missing from Java source; IB Bug? self.m_initMargin = init_margin self.m_maintMargin = maint_margin self.m_equityWithLoan = equity_with_loan self.m_commission = commission self.m_minCommission = min_commission self.m_maxCommission = max_commission self.m_commissionCurrency = commission_currency self.m_warningText = warning_text def __eq__(self, other): if id(self) == id(other): return True if not isinstance(other, self.__class__): return False return True if ( (self.m_status.lower() == other.m_status.lower()) and (self.m_initMargin.lower() == other.m_initMargin.lower()) and (self.m_maintMargin.lower() == other.m_maintMargin.lower()) and (self.m_equityWithLoan.lower() == other.m_equityWithLoan.lower()) and (self.m_commission == other.m_commission) and (self.m_minCommission == other.m_minCommission) and (self.m_maxCommission == other.m_maxCommission) and (self.m_commissionCurrency.lower() == other.m_commissionCurrency.lower()) and (self.m_warningText == other.m_warningText) ) else False
"""OrderState data structure.""" __copyright__ = 'Copyright (c) 2008 Kevin J Bluck' __version__ = '$Id$' class Orderstate(object): """Data structure containing attributes to describe the status of an order. """ def __init__(self, status='', init_margin='', maint_margin='', equity_with_loan='', commission=0.0, min_commission=0.0, max_commission=0.0, commission_currency='', warning_text=''): self.m_status = status self.m_initMargin = init_margin self.m_maintMargin = maint_margin self.m_equityWithLoan = equity_with_loan self.m_commission = commission self.m_minCommission = min_commission self.m_maxCommission = max_commission self.m_commissionCurrency = commission_currency self.m_warningText = warning_text def __eq__(self, other): if id(self) == id(other): return True if not isinstance(other, self.__class__): return False return True if self.m_status.lower() == other.m_status.lower() and self.m_initMargin.lower() == other.m_initMargin.lower() and (self.m_maintMargin.lower() == other.m_maintMargin.lower()) and (self.m_equityWithLoan.lower() == other.m_equityWithLoan.lower()) and (self.m_commission == other.m_commission) and (self.m_minCommission == other.m_minCommission) and (self.m_maxCommission == other.m_maxCommission) and (self.m_commissionCurrency.lower() == other.m_commissionCurrency.lower()) and (self.m_warningText == other.m_warningText) else False
class Token: def __init__(self, token, start_pos=-1, action="", change_seq=0): self._token = token self._start_pos = start_pos self._action = action self._change_seq = change_seq @property def start_pos(self): return self._start_pos @start_pos.setter def start_pos(self, v): self._start_pos = v @property def token(self): return self._token @token.setter def token(self, v): self._token = v @property def action(self): return self._action @action.setter def action(self, v): self._action = v @property def change_seq(self): return self._change_seq @change_seq.setter def change_seq(self, v): self._change_seq = v def to_dict(self): return { "token": self.token, "action": self.action, "start_pos": self.start_pos, "change_seq": self.change_seq, }
class Token: def __init__(self, token, start_pos=-1, action='', change_seq=0): self._token = token self._start_pos = start_pos self._action = action self._change_seq = change_seq @property def start_pos(self): return self._start_pos @start_pos.setter def start_pos(self, v): self._start_pos = v @property def token(self): return self._token @token.setter def token(self, v): self._token = v @property def action(self): return self._action @action.setter def action(self, v): self._action = v @property def change_seq(self): return self._change_seq @change_seq.setter def change_seq(self, v): self._change_seq = v def to_dict(self): return {'token': self.token, 'action': self.action, 'start_pos': self.start_pos, 'change_seq': self.change_seq}
class Solution(object): def rotatedDigits(self, N): """ :type N: int :rtype: int """ res = 0 vs = set([2, 5, 6, 9]) ivs = set([3, 4, 7]) for n in range(2, N + 1): v, iv = False, False while n > 0: a = n % 10 if a in ivs: iv = True break if a in vs: v = True n = n // 10 if v and not iv: res += 1 return res def test_rotated_digits(): s = Solution() assert 4 == s.rotatedDigits(10) assert 1 == s.rotatedDigits(2) assert 247 == s.rotatedDigits(857)
class Solution(object): def rotated_digits(self, N): """ :type N: int :rtype: int """ res = 0 vs = set([2, 5, 6, 9]) ivs = set([3, 4, 7]) for n in range(2, N + 1): (v, iv) = (False, False) while n > 0: a = n % 10 if a in ivs: iv = True break if a in vs: v = True n = n // 10 if v and (not iv): res += 1 return res def test_rotated_digits(): s = solution() assert 4 == s.rotatedDigits(10) assert 1 == s.rotatedDigits(2) assert 247 == s.rotatedDigits(857)
#!/usr/bin/env python3 class Solution: def getRow(self, rowIndex): ret, numer, denom = [1], 1, 1 for i in range(0, rowIndex): numer *= (rowIndex-i) denom *= (1+i) ret.append(numer//denom) return ret sol = Solution() for i in range(10): print(sol.getRow(i))
class Solution: def get_row(self, rowIndex): (ret, numer, denom) = ([1], 1, 1) for i in range(0, rowIndex): numer *= rowIndex - i denom *= 1 + i ret.append(numer // denom) return ret sol = solution() for i in range(10): print(sol.getRow(i))
counter = 0 arr = [] while counter != 3: ss = input("Shop stock: ") if "cam" in ss.lower(): counter += 1 arr.append(ss) else: pass arr.sort(reverse=True) print(f"Proposals: {arr[0]}, {arr[1]}, {arr[2]}")
counter = 0 arr = [] while counter != 3: ss = input('Shop stock: ') if 'cam' in ss.lower(): counter += 1 arr.append(ss) else: pass arr.sort(reverse=True) print(f'Proposals: {arr[0]}, {arr[1]}, {arr[2]}')
#!/usr/bin/env python class ListInstance: def __attrnames(self): result = '' for attr in sorted(self.__dict__): result += '\t%s=%s\n' % (attr, self.__dict__[attr]) return result def __str__(self): return '<Instance of %s, address %s:\n%s>' % ( self.__class__.__name__, id(self), self.__attrnames() ) if __name__ == '__main__': class C(ListInstance): pass x = C() x.a, x.b, x.c = 1, 2, 3 print(x)
class Listinstance: def __attrnames(self): result = '' for attr in sorted(self.__dict__): result += '\t%s=%s\n' % (attr, self.__dict__[attr]) return result def __str__(self): return '<Instance of %s, address %s:\n%s>' % (self.__class__.__name__, id(self), self.__attrnames()) if __name__ == '__main__': class C(ListInstance): pass x = c() (x.a, x.b, x.c) = (1, 2, 3) print(x)
#from datetime import datetime #time=str(datetime.now()) #time=time[0:4]+time[5:7]+time[8:10]+time[11:13]+time[14:16]+time[17:19]+time[20:22] #print(time) print(float("01"))
print(float('01'))
#!/usr/bin/env python3 total = 0 n = int(input()) n = (n * (n % 2)) total = total + n n = int(input()) n = (n * (n % 2)) total = total + n n = int(input()) n = (n * (n % 2)) total = total + n n = int(input()) n = (n * (n % 2)) total = total + n n = int(input()) n = (n * (n % 2)) total = total + n n = int(input()) n = (n * (n % 2)) total = total + n n = int(input()) n = (n * (n % 2)) total = total + n n = int(input()) n = (n * (n % 2)) total = total + n n = int(input()) n = (n * (n % 2)) total = total + n n = int(input()) n = (n * (n % 2)) total = total + n print(total)
total = 0 n = int(input()) n = n * (n % 2) total = total + n n = int(input()) n = n * (n % 2) total = total + n n = int(input()) n = n * (n % 2) total = total + n n = int(input()) n = n * (n % 2) total = total + n n = int(input()) n = n * (n % 2) total = total + n n = int(input()) n = n * (n % 2) total = total + n n = int(input()) n = n * (n % 2) total = total + n n = int(input()) n = n * (n % 2) total = total + n n = int(input()) n = n * (n % 2) total = total + n n = int(input()) n = n * (n % 2) total = total + n print(total)
class SinglePlayerArena(): """ An Arena class where any 2 agents can be pit against each other. """ def __init__(self, player1, game): """ Input: player 1: function that takes board as input, return action game: Game object """ self.player1 = player1 self.game = game def playSinglePlayerGame(self): """ Executes one episode of a game. Returns: 1 if game won, -1 if game lost """ player = 1 board = self.game.getInitBoard() while self.game.getGameEnded(board, player) == 0: action = self.player1(self.game.getCanonicalForm(board, player)) board, player = self.game.getNextState(board, player, action) return self.game.getGameEnded(board, player) def playSinglePlayerGames(self, num): wins, losses = 0, 0 for _ in range(num): gameResult = self.playSinglePlayerGame() if gameResult == 1: wins += 1 elif gameResult == -1: losses += 1 print('-----', gameResult, '------') return wins, losses
class Singleplayerarena: """ An Arena class where any 2 agents can be pit against each other. """ def __init__(self, player1, game): """ Input: player 1: function that takes board as input, return action game: Game object """ self.player1 = player1 self.game = game def play_single_player_game(self): """ Executes one episode of a game. Returns: 1 if game won, -1 if game lost """ player = 1 board = self.game.getInitBoard() while self.game.getGameEnded(board, player) == 0: action = self.player1(self.game.getCanonicalForm(board, player)) (board, player) = self.game.getNextState(board, player, action) return self.game.getGameEnded(board, player) def play_single_player_games(self, num): (wins, losses) = (0, 0) for _ in range(num): game_result = self.playSinglePlayerGame() if gameResult == 1: wins += 1 elif gameResult == -1: losses += 1 print('-----', gameResult, '------') return (wins, losses)
n = 4 arr = [] for _ in range(n): s = list(input()) arr.append(s) def check(arr, paint='#'): possible = False Y = len(arr) X = len(arr[0]) for y in range(1, Y): for x in range(1, X): if arr[y-1][x] == paint and arr[y][x-1] == paint and arr[y-1][x-1] == paint: possible = True break return possible arr2 = [] for xs in arr: arr2.append(list(xs)[::-1]) if check(arr) or check(arr2) or check(arr, '.') or check(arr2, '.'): print("YES") else: arr = arr[::-1] arr2 = arr2[::-1] if check(arr) or check(arr2) or check(arr, '.') or check(arr2, '.'): print("YES") else: print("NO")
n = 4 arr = [] for _ in range(n): s = list(input()) arr.append(s) def check(arr, paint='#'): possible = False y = len(arr) x = len(arr[0]) for y in range(1, Y): for x in range(1, X): if arr[y - 1][x] == paint and arr[y][x - 1] == paint and (arr[y - 1][x - 1] == paint): possible = True break return possible arr2 = [] for xs in arr: arr2.append(list(xs)[::-1]) if check(arr) or check(arr2) or check(arr, '.') or check(arr2, '.'): print('YES') else: arr = arr[::-1] arr2 = arr2[::-1] if check(arr) or check(arr2) or check(arr, '.') or check(arr2, '.'): print('YES') else: print('NO')
chars = [0]*26 str = input().strip() odds = 0 for i in range(0, len(str)): chars[ord(str[i])-97] += 1 for i in range(0, 26): if chars[i] % 2 == 1: odds += 1 if odds > 1: print("NO") else: print("YES")
chars = [0] * 26 str = input().strip() odds = 0 for i in range(0, len(str)): chars[ord(str[i]) - 97] += 1 for i in range(0, 26): if chars[i] % 2 == 1: odds += 1 if odds > 1: print('NO') else: print('YES')
""" Help text for Suplemon """ help_text = """ # Suplemon Help *Contents* 1. General description 2. User interface 3. Default keyboard shortcuts 4. Commands ## 1. General description Suplemon is designed to be an easy, intuitive and powerful text editor. It emulates some features from Sublime Text and the user interface of Nano. Multi cursor editing is a core feature. Suplemon also supports extensions so you can customize it to work how you want. ## 2. User interface The user interface is designed to be as intuitive and informative as possible. There are two status bars, one at the top and one at the bottom. The top bar shows the program version, a clock, and a list of opened files. The bottom bar shows status messages and handles input for commands. Above the bottom status bar there is a list of most common keyboard shortcuts. ## 3. Default keyboard shortcuts The default keyboard shortcuts imitate those of common graphical editors. Most shortcuts are also shown at the bottom in the legend area. Here's the complete reference. * Ctrl + Q > Exit * Ctrl + W > Close file or tab * Ctrl + C > Copy line(s) to buffer * Ctrl + X > Cut line(s) to buffer * Ctrl + V > Insert buffer * Ctrl + K > Duplicate line * Ctrl + G > Go to line number or file (type the beginning of a filename to switch to it). > You can also use 'filena:42' to go to line 42 in filename.py etc. * Ctrl + F > Search for a string or regular expression (configurable) * Ctrl + D > Search for next occurance or find the word the cursor is on. Adds a new cursor at each new occurance. * Ctrl + T > Trim whitespace * Alt + Arrow Key > Add new curor in arrow direction * Ctrl + Left / Right > Jump to previous or next word or line * ESC > Revert to a single cursor / Cancel input prompt * Alt + Page Up > Move line(s) up * Alt + Page Down > Move line(s) down * Ctrl + S > Save current file * F1 > Save file with new name * F2 > Reload current file * Ctrl + O > Open file * Ctrl + W > Close file * Ctrl + Page Up > Switch to next file * Ctrl + Page Down > Switch to previous file * Ctrl + E > Run a command. * F5 > Undo * F6 > Redo * F7 > Toggle visible whitespace * F8 > Toggle mouse mode * F9 > Toggle line numbers * F11 > Toggle full screen ### Mouse shortcuts * Left Click > Set cursor at mouse position. Reverts to a single cursor. * Right Click > Add a cursor at mouse position. * Scroll Wheel Up / Down > Scroll up & down. ## 4. Commands Commands are special operations that can be performed (e.g. remove whitespace or convert line to uppercase). Each command can be run by pressing Ctrl + E and then typing the command name. Commands are extensions and are stored in the modules folder in the Suplemon installation. * autocomplete A simple autocompletion module. This adds autocomplete support for the tab key. It uses a word list scanned from all open files for completions. By default it suggests the shortest possible match. If there are no matches, the tab action is run normally. * autodocstring Simple module for adding docstring placeholders. This module is intended to generate docstrings for Python functions. It adds placeholders for descriptions, arguments and return data. Function arguments are crudely parsed from the function definition and return statements are scanned from the function body. * bulk_delete Bulk delete lines and characters. Asks what direction to delete in by default. Add 'up' to delete lines above highest cursor. Add 'down' to delete lines below lowest cursor. Add 'left' to delete characters to the left of all cursors. Add 'right' to delete characters to the right of all cursors. * comment Toggle line commenting based on current file syntax. * config Shortcut for openning the config files. * crypt Encrypt or decrypt the current buffer. Lets you provide a passphrase and optional salt for encryption. Uses AES for encryption and scrypt for key generation. * diff View a diff of the current file compared to it's on disk version. * eval Evaluate a python expression and show the result in the status bar. If no expression is provided the current line(s) are evaluated and replaced with the evaluation result. * keymap Shortcut to openning the keymap config file. * linter Linter for suplemon. * lower Transform current lines to lower case. * lstrip Trim whitespace from beginning of current lines. * paste Toggle paste mode (helpful when pasting over SSH if auto indent is enabled) * reload Reload all add-on modules. * replace_all Replace all occurrences in all files of given text with given replacement. * reverse Reverse text on current line(s). * rstrip Trim whitespace from the end of lines. * save Save the current file. * save_all Save all currently open files. Asks for confirmation. * sort_lines Sort current lines. Sorts alphabetically by default. Add 'length' to sort by length. Add 'reverse' to reverse the sorting. * strip Trim whitespace from start and end of lines. * tabstospaces Convert tab characters to spaces in the entire file. * toggle_whitespace Toggle visually showing whitespace. * upper Transform current lines to upper case. """
""" Help text for Suplemon """ help_text = "\n# Suplemon Help\n\n*Contents*\n1. General description\n2. User interface\n3. Default keyboard shortcuts\n4. Commands\n\n## 1. General description\nSuplemon is designed to be an easy, intuitive and powerful text editor.\nIt emulates some features from Sublime Text and the user interface of Nano.\nMulti cursor editing is a core feature. Suplemon also supports extensions\nso you can customize it to work how you want.\n\n## 2. User interface\nThe user interface is designed to be as intuitive and informative as possible.\nThere are two status bars, one at the top and one at the bottom. The top bar\nshows the program version, a clock, and a list of opened files. The bottom bar\nshows status messages and handles input for commands. Above the bottom status\nbar there is a list of most common keyboard shortcuts.\n\n## 3. Default keyboard shortcuts\nThe default keyboard shortcuts imitate those of common graphical editors.\nMost shortcuts are also shown at the bottom in the legend area. Here's\nthe complete reference.\n\n\n * Ctrl + Q\n > Exit\n\n * Ctrl + W\n > Close file or tab\n\n * Ctrl + C\n > Copy line(s) to buffer\n\n * Ctrl + X\n > Cut line(s) to buffer\n\n * Ctrl + V\n > Insert buffer\n\n * Ctrl + K\n > Duplicate line\n\n * Ctrl + G\n > Go to line number or file (type the beginning of a filename to switch to it).\n > You can also use 'filena:42' to go to line 42 in filename.py etc.\n\n * Ctrl + F\n > Search for a string or regular expression (configurable)\n\n * Ctrl + D\n > Search for next occurance or find the word the cursor is on. Adds a new cursor at each new occurance.\n\n * Ctrl + T\n > Trim whitespace\n\n * Alt + Arrow Key\n > Add new curor in arrow direction\n\n * Ctrl + Left / Right\n > Jump to previous or next word or line\n\n * ESC\n > Revert to a single cursor / Cancel input prompt\n\n * Alt + Page Up\n > Move line(s) up\n\n * Alt + Page Down\n > Move line(s) down\n\n * Ctrl + S\n > Save current file\n\n * F1\n > Save file with new name\n\n * F2\n > Reload current file\n\n * Ctrl + O\n > Open file\n\n * Ctrl + W\n > Close file\n\n * Ctrl + Page Up\n > Switch to next file\n\n * Ctrl + Page Down\n > Switch to previous file\n\n * Ctrl + E\n > Run a command.\n\n * F5\n > Undo\n\n * F6\n > Redo\n\n * F7\n > Toggle visible whitespace\n\n * F8\n > Toggle mouse mode\n\n * F9\n > Toggle line numbers\n\n * F11\n > Toggle full screen\n\n### Mouse shortcuts\n\n * Left Click\n > Set cursor at mouse position. Reverts to a single cursor.\n\n * Right Click\n > Add a cursor at mouse position.\n\n * Scroll Wheel Up / Down\n > Scroll up & down.\n\n\n## 4. Commands\nCommands are special operations that can be performed (e.g. remove whitespace\nor convert line to uppercase). Each command can be run by pressing Ctrl + E\nand then typing the command name. Commands are extensions and are stored in\nthe modules folder in the Suplemon installation.\n\n * autocomplete\n\n A simple autocompletion module.\n\n This adds autocomplete support for the tab key. It uses a word\n list scanned from all open files for completions. By default it suggests\n the shortest possible match. If there are no matches, the tab action is\n run normally.\n\n * autodocstring\n\n Simple module for adding docstring placeholders.\n\n This module is intended to generate docstrings for Python functions.\n It adds placeholders for descriptions, arguments and return data.\n Function arguments are crudely parsed from the function definition\n and return statements are scanned from the function body.\n\n * bulk_delete\n\n Bulk delete lines and characters.\n Asks what direction to delete in by default.\n\n Add 'up' to delete lines above highest cursor.\n Add 'down' to delete lines below lowest cursor.\n Add 'left' to delete characters to the left of all cursors.\n Add 'right' to delete characters to the right of all cursors.\n\n * comment\n\n Toggle line commenting based on current file syntax.\n\n * config\n\n Shortcut for openning the config files.\n\n * crypt\n\n Encrypt or decrypt the current buffer. Lets you provide a passphrase and optional salt for encryption.\n Uses AES for encryption and scrypt for key generation.\n\n * diff\n\n View a diff of the current file compared to it's on disk version.\n\n * eval\n\n Evaluate a python expression and show the result in the status bar.\n\n If no expression is provided the current line(s) are evaluated and\n replaced with the evaluation result.\n\n * keymap\n\n Shortcut to openning the keymap config file.\n\n * linter\n\n Linter for suplemon.\n\n * lower\n\n Transform current lines to lower case.\n\n * lstrip\n\n Trim whitespace from beginning of current lines.\n\n * paste\n\n Toggle paste mode (helpful when pasting over SSH if auto indent is enabled)\n\n * reload\n\n Reload all add-on modules.\n\n * replace_all\n\n Replace all occurrences in all files of given text with given replacement.\n\n * reverse\n\n Reverse text on current line(s).\n\n * rstrip\n\n Trim whitespace from the end of lines.\n\n * save\n\n Save the current file.\n\n * save_all\n\n Save all currently open files. Asks for confirmation.\n\n * sort_lines\n\n Sort current lines.\n\n Sorts alphabetically by default.\n Add 'length' to sort by length.\n Add 'reverse' to reverse the sorting.\n\n * strip\n\n Trim whitespace from start and end of lines.\n\n * tabstospaces\n\n Convert tab characters to spaces in the entire file.\n\n * toggle_whitespace\n\n Toggle visually showing whitespace.\n\n * upper\n\n Transform current lines to upper case.\n\n\n"
class ClientResponse(object): """Client response """
class Clientresponse(object): """Client response """
insert_route_sql = """ INSERT INTO tb_route ( INPUT_VALUE , OUTPUT_VALUE , FILTER_VALUE , INS_DATE , UPD_DATE ) VALUES ( {input_value} , {output_value} , {filter_value} , NOW() , NOW() ); """ select_route_list = """ SELECT ROUTE_KEY , INPUT_VALUE , OUTPUT_VALUE , FILTER_VALUE , INS_DATE , UPD_DATE FROM tb_route """ select_route = """ SELECT ROUTE_KEY , INPUT_VALUE , OUTPUT_VALUE , FILTER_VALUE , INS_DATE , UPD_DATE FROM tb_route WHERE INPUT_VALUE = {input_value} """ update_route = """ UPDATE tb_route SET INPUT_VALUE = {input_value} , OUTPUT_VALUE = {output_value} , FILTER_VALUE = {filter_value} WHERE ROUTE_KEY = {route_key}; """ delete_route_sql = """ DELETE FROM tb_route WHERE INPUT_VALUE = {input_value}; """
insert_route_sql = '\n INSERT INTO tb_route (\n INPUT_VALUE\n , OUTPUT_VALUE\n , FILTER_VALUE\n , INS_DATE\n , UPD_DATE\n ) VALUES (\n {input_value}\n , {output_value}\n , {filter_value}\n , NOW()\n , NOW()\n );\n' select_route_list = '\n SELECT ROUTE_KEY\n , INPUT_VALUE\n , OUTPUT_VALUE\n , FILTER_VALUE\n , INS_DATE\n , UPD_DATE\n FROM tb_route\n' select_route = '\n SELECT ROUTE_KEY\n , INPUT_VALUE\n , OUTPUT_VALUE\n , FILTER_VALUE\n , INS_DATE\n , UPD_DATE\n FROM tb_route\n WHERE INPUT_VALUE = {input_value}\n' update_route = '\n UPDATE tb_route SET\n INPUT_VALUE = {input_value}\n , OUTPUT_VALUE = {output_value}\n , FILTER_VALUE = {filter_value}\n WHERE ROUTE_KEY = {route_key};\n' delete_route_sql = '\n DELETE FROM tb_route\n WHERE INPUT_VALUE = {input_value};\n'
## DP 100% class Solution: def updateMatrix(self, matrix: List[List[int]]) -> List[List[int]]: m, n = len(matrix), len(matrix[0]) dp = [[1000]*n for _ in range(m)] for i in range(m): for j in range(n): if (matrix[i][j] == 0): dp[i][j] = 0 else: if i == 0 and j > 0: dp[i][j] = min(dp[i][j], dp[i][j-1]+1) elif i > 0 and j == 0: dp[i][j] = min(dp[i][j], dp[i-1][j]+1) elif i > 0 and j > 0: dp[i][j] = min(dp[i][j], dp[i-1][j]+1, dp[i][j-1]+1) for i in range(m-1,-1,-1): for j in range(n-1,-1,-1): if matrix[i][j] != 0: if i == m-1 and j < n-1: dp[i][j] = min(dp[i][j], dp[i][j+1]+1) elif i < m-1 and j == n-1: dp[i][j] = min(dp[i][j], dp[i+1][j]+1) elif i < m-1 and j < n-1: dp[i][j] = min(dp[i][j], dp[i+1][j]+1, dp[i][j+1]+1) return dp
class Solution: def update_matrix(self, matrix: List[List[int]]) -> List[List[int]]: (m, n) = (len(matrix), len(matrix[0])) dp = [[1000] * n for _ in range(m)] for i in range(m): for j in range(n): if matrix[i][j] == 0: dp[i][j] = 0 elif i == 0 and j > 0: dp[i][j] = min(dp[i][j], dp[i][j - 1] + 1) elif i > 0 and j == 0: dp[i][j] = min(dp[i][j], dp[i - 1][j] + 1) elif i > 0 and j > 0: dp[i][j] = min(dp[i][j], dp[i - 1][j] + 1, dp[i][j - 1] + 1) for i in range(m - 1, -1, -1): for j in range(n - 1, -1, -1): if matrix[i][j] != 0: if i == m - 1 and j < n - 1: dp[i][j] = min(dp[i][j], dp[i][j + 1] + 1) elif i < m - 1 and j == n - 1: dp[i][j] = min(dp[i][j], dp[i + 1][j] + 1) elif i < m - 1 and j < n - 1: dp[i][j] = min(dp[i][j], dp[i + 1][j] + 1, dp[i][j + 1] + 1) return dp
src = Split(''' fota_test.c ''') component = aos_component('fota_test', src) component.add_comp_deps('middleware/uagent/uota')
src = split('\n fota_test.c\n') component = aos_component('fota_test', src) component.add_comp_deps('middleware/uagent/uota')
""" Sprawdz czy binarna reprezentacja liczby jest palindromem. """ def czy_palindrom_v1(liczba): odwrocona = 0 k = liczba while k > 0: odwrocona = (odwrocona << 1) | (k & 1) k >>= 1 return odwrocona == liczba if __name__ == "__main__": liczba = 0b11011 assert czy_palindrom_v1(liczba) liczba = 0b1001101 assert not czy_palindrom_v1(liczba)
""" Sprawdz czy binarna reprezentacja liczby jest palindromem. """ def czy_palindrom_v1(liczba): odwrocona = 0 k = liczba while k > 0: odwrocona = odwrocona << 1 | k & 1 k >>= 1 return odwrocona == liczba if __name__ == '__main__': liczba = 27 assert czy_palindrom_v1(liczba) liczba = 77 assert not czy_palindrom_v1(liczba)
{ "targets": [ { "target_name": "modsecurity", "sources": [ "modsecurity_wrap.cxx" ], "include_dirs": ['usr/local/modsecurity/include/modsecurity',], "libraries": ['/usr/local/modsecurity/lib/libmodsecurity.a', '/usr/local/modsecurity/lib/libmodsecurity.dylib', '/usr/local/modsecurity/lib/libmodsecurity.la', '/usr/local/modsecurity/lib/libmodsecurity.3.dylib' '/usr/lib/libxml2.dylib', '/usr/lib/libcurl.dylib', '/usr/local/lib/libpcre.dylib', '/usr/local/lib/libyajl.dylib', '/usr/local/lib/libGeoIP.dylib', '/usr/local/lib/liblmdb.dylib'], "cflags" : [ "-std=c++11" ], 'cflags!': [ '-fno-exceptions' ], 'cflags_cc!': [ '-fno-exceptions' ] } ] }
{'targets': [{'target_name': 'modsecurity', 'sources': ['modsecurity_wrap.cxx'], 'include_dirs': ['usr/local/modsecurity/include/modsecurity'], 'libraries': ['/usr/local/modsecurity/lib/libmodsecurity.a', '/usr/local/modsecurity/lib/libmodsecurity.dylib', '/usr/local/modsecurity/lib/libmodsecurity.la', '/usr/local/modsecurity/lib/libmodsecurity.3.dylib/usr/lib/libxml2.dylib', '/usr/lib/libcurl.dylib', '/usr/local/lib/libpcre.dylib', '/usr/local/lib/libyajl.dylib', '/usr/local/lib/libGeoIP.dylib', '/usr/local/lib/liblmdb.dylib'], 'cflags': ['-std=c++11'], 'cflags!': ['-fno-exceptions'], 'cflags_cc!': ['-fno-exceptions']}]}
""" Advent of code Day 1 challenge part 2 """ element_one_index = 0 element_two_index = 1 element_three_index = 2 not_exhausted = True first_element_ignore = True sum_list = [] inc_countup = 0 with open("input.txt") as file: element_list = [int(stained_element.strip()) for stained_element in file.readlines()] while not_exhausted: try: sum_list.append(element_list[element_one_index] + element_list[element_two_index] + element_list[element_three_index]) element_one_index += 1 element_two_index += 1 element_three_index += 1 except IndexError: not_exhausted = False for idx ,_ in enumerate(sum_list): if sum_list[idx] == 0: continue try: if sum_list[idx] < sum_list[idx + 1]: inc_countup += 1 except IndexError: pass if __name__ == "__main__": print(sum_list) print(inc_countup)
""" Advent of code Day 1 challenge part 2 """ element_one_index = 0 element_two_index = 1 element_three_index = 2 not_exhausted = True first_element_ignore = True sum_list = [] inc_countup = 0 with open('input.txt') as file: element_list = [int(stained_element.strip()) for stained_element in file.readlines()] while not_exhausted: try: sum_list.append(element_list[element_one_index] + element_list[element_two_index] + element_list[element_three_index]) element_one_index += 1 element_two_index += 1 element_three_index += 1 except IndexError: not_exhausted = False for (idx, _) in enumerate(sum_list): if sum_list[idx] == 0: continue try: if sum_list[idx] < sum_list[idx + 1]: inc_countup += 1 except IndexError: pass if __name__ == '__main__': print(sum_list) print(inc_countup)
def candy_crush(string): char_pointer = string[0] result_string = "" counter = 1 for c in string[1:]: if not c == char_pointer: result_string += char_pointer char_pointer = c else: counter += 1 if counter == 3: counter = 1 char_pointer = "" result_string += counter * c print(result_string) def main(): candy_strings = ["ABAAAC","BBBCA","AAAABC","EEEEE"] for string in candy_strings: candy_crush(string) if __name__ == "__main__": main()
def candy_crush(string): char_pointer = string[0] result_string = '' counter = 1 for c in string[1:]: if not c == char_pointer: result_string += char_pointer char_pointer = c else: counter += 1 if counter == 3: counter = 1 char_pointer = '' result_string += counter * c print(result_string) def main(): candy_strings = ['ABAAAC', 'BBBCA', 'AAAABC', 'EEEEE'] for string in candy_strings: candy_crush(string) if __name__ == '__main__': main()
# running use IDEL: tired of waiting x=8 ans = 0 while ans**3 < abs(x): ans = ans # replace the statement ans = ans + 1 by ans = ans # ans = ans + 1 if ans**3 != abs(x): print(x, 'is not a perfect cube') else: if x < 0: ans = -ans print('Cube root of', x,'is', ans)
x = 8 ans = 0 while ans ** 3 < abs(x): ans = ans if ans ** 3 != abs(x): print(x, 'is not a perfect cube') else: if x < 0: ans = -ans print('Cube root of', x, 'is', ans)
#!/usr/bin/env python3 class ZotlerError(Exception): pass class InvalidModeError(ZotlerError): pass
class Zotlererror(Exception): pass class Invalidmodeerror(ZotlerError): pass
""" Wallabag entry. """ class Entry: """ The entry class. """ entry_id = 0 title = "" content = "" url = "" read = False starred = False def __init__(self, item): self.entry_id = item['id'] title = item['title'] title = title.replace("\n", "") title = " ".join(title.split()) self.title = title self.content = item['content'] self.url = item['url'] self.read = item['is_archived'] == 1 self.starred = item['is_starred'] == 1 def entrylist(items): """ Creates Entry instances of multiple items and returns an Entry-list. """ ret = list() for item in items: ret.append(Entry(item)) return ret
""" Wallabag entry. """ class Entry: """ The entry class. """ entry_id = 0 title = '' content = '' url = '' read = False starred = False def __init__(self, item): self.entry_id = item['id'] title = item['title'] title = title.replace('\n', '') title = ' '.join(title.split()) self.title = title self.content = item['content'] self.url = item['url'] self.read = item['is_archived'] == 1 self.starred = item['is_starred'] == 1 def entrylist(items): """ Creates Entry instances of multiple items and returns an Entry-list. """ ret = list() for item in items: ret.append(entry(item)) return ret
class StarwarsUniverse: # creates a member of the starwars universe def __init__(self, name, birth, gender): self._name = name self.birth = birth self.gender = gender def says(self, words): return f"{self.name} says {words}" class Robot(StarwarsUniverse): # creates a robot from the startwars universe def __init__(self, name, birth, gender, classification, sidekick=None): super() .__init__(name, birth, gender) self.birth = birth self.classification = classification if sidekick is not None: self.sidekick_name, self.sidekick_type = sidekick self._skills = { 'Language Translation': False, 'Facial Recognition': False, 'Emotion Sensing': False, 'Mechanical Repair': False, 'Flying': False, 'Cleaning': False, 'Medical Assistance': False, 'Surveillance': False, 'Combat': False, 'Communications': False, 'Meal Preperation': False, 'Search and Rescue': False, 'Infiltration': False, } class Human(StarwarsUniverse): #creates a human from the starwarsuniverse def __init__(self, name, birth, gender, expertise, side=None): super() .__init__(name, birth, gender) self.expertise = expertise self.side = side class Alien(StarwarsUniverse): # Creates an alien def __init__(self, name, birth, gender, species, side=None): super() .__init__(name, birth, gender) self.species = species if side is not None: self.side = side if __name__ == "__main__": rey = StarwarsUniverse("Rey", "2015", "female") print(rey.says("I don't know your name")) c3po = Robot(name="C-3PO", birth=1977, gender="NB", classification="droid", sidekick=("R2D2", "droid"))
class Starwarsuniverse: def __init__(self, name, birth, gender): self._name = name self.birth = birth self.gender = gender def says(self, words): return f'{self.name} says {words}' class Robot(StarwarsUniverse): def __init__(self, name, birth, gender, classification, sidekick=None): super().__init__(name, birth, gender) self.birth = birth self.classification = classification if sidekick is not None: (self.sidekick_name, self.sidekick_type) = sidekick self._skills = {'Language Translation': False, 'Facial Recognition': False, 'Emotion Sensing': False, 'Mechanical Repair': False, 'Flying': False, 'Cleaning': False, 'Medical Assistance': False, 'Surveillance': False, 'Combat': False, 'Communications': False, 'Meal Preperation': False, 'Search and Rescue': False, 'Infiltration': False} class Human(StarwarsUniverse): def __init__(self, name, birth, gender, expertise, side=None): super().__init__(name, birth, gender) self.expertise = expertise self.side = side class Alien(StarwarsUniverse): def __init__(self, name, birth, gender, species, side=None): super().__init__(name, birth, gender) self.species = species if side is not None: self.side = side if __name__ == '__main__': rey = starwars_universe('Rey', '2015', 'female') print(rey.says("I don't know your name")) c3po = robot(name='C-3PO', birth=1977, gender='NB', classification='droid', sidekick=('R2D2', 'droid'))
class Magic: def __init__(self, username, password): self.username = username self.password = password def start(self): print(self.username) print(self.password) class StartMagic(Magic): def gg(self): return self.password while True: s = StartMagic(1,2) s.start() print(s.password)
class Magic: def __init__(self, username, password): self.username = username self.password = password def start(self): print(self.username) print(self.password) class Startmagic(Magic): def gg(self): return self.password while True: s = start_magic(1, 2) s.start() print(s.password)
def add_num(a,b): '''Return sum of two numbers''' s=a+b return s n1=input('enter first number:') n1=int(n1) n2=input('enter second number:') n2=int(n2) s = add_num(n1,n2) print ('sum is: ',s);
def add_num(a, b): """Return sum of two numbers""" s = a + b return s n1 = input('enter first number:') n1 = int(n1) n2 = input('enter second number:') n2 = int(n2) s = add_num(n1, n2) print('sum is: ', s)
""" 1. Clarification 2. Possible solutions - String 3. Coding 4. Tests """ # T=O(n), S=O(n) class Solution: def countAndSay(self, n: int) -> str: if n == 1: return '1' s = self.countAndSay(n - 1) i, j, ans = 0, 1, list() while j <= len(s): if j == len(s): ans.extend([str(j-i), s[i]]) elif s[i] != s[j]: ans.extend([str(j-i), s[i]]) i = j j += 1 return ''.join(ans)
""" 1. Clarification 2. Possible solutions - String 3. Coding 4. Tests """ class Solution: def count_and_say(self, n: int) -> str: if n == 1: return '1' s = self.countAndSay(n - 1) (i, j, ans) = (0, 1, list()) while j <= len(s): if j == len(s): ans.extend([str(j - i), s[i]]) elif s[i] != s[j]: ans.extend([str(j - i), s[i]]) i = j j += 1 return ''.join(ans)
class Transaction: def __init__(self, trans_type, amount=0): self.trans_type = trans_type self.amount = amount def display(self): print('Super class display')
class Transaction: def __init__(self, trans_type, amount=0): self.trans_type = trans_type self.amount = amount def display(self): print('Super class display')