content
stringlengths
7
1.05M
fixed_cases
stringlengths
1
1.28M
dict={} a=[[1,['ocean','pondy','2']],[2,['xxx','yyy','zzz']]] for i in a: dict.update({i[0]:i[1]}) print(dict) b=int(input('enter value ')) x=dict.get(b) y=['name','place','age'] for i in range(len(y)): print(y[i],':',x[i])
dict = {} a = [[1, ['ocean', 'pondy', '2']], [2, ['xxx', 'yyy', 'zzz']]] for i in a: dict.update({i[0]: i[1]}) print(dict) b = int(input('enter value ')) x = dict.get(b) y = ['name', 'place', 'age'] for i in range(len(y)): print(y[i], ':', x[i])
# Python program to print odd Numbers in a List # list of numbers list1 = [10, 21, 4, 45, 66, 93] i = 0 # using while loop while(i < len(list1)): # checking condition if list1[i] % 2 != 0: print(list1[i], end = " ") # increment i i += 1
list1 = [10, 21, 4, 45, 66, 93] i = 0 while i < len(list1): if list1[i] % 2 != 0: print(list1[i], end=' ') i += 1
# -*- coding: UTF-8 -*- # @Time : 04/08/2020 15:38 # @Author : QYD # @FileName: tree.py # @Software: PyCharm class TreeNode(object): def __init__(self, value, start_point_index): self.value = value self.start_point_index = start_point_index self.child_list = [] def add_child(self, node): self.child_list.append(node)
class Treenode(object): def __init__(self, value, start_point_index): self.value = value self.start_point_index = start_point_index self.child_list = [] def add_child(self, node): self.child_list.append(node)
def day_to_seconds(day): return day * 24 * 60 * 60 def hour_to_seconds(hour): return hour * 60 * 60 def seconds_to_hour(seconds): return seconds / (60 * 60)
def day_to_seconds(day): return day * 24 * 60 * 60 def hour_to_seconds(hour): return hour * 60 * 60 def seconds_to_hour(seconds): return seconds / (60 * 60)
#!/usr/bin/python n = int(input()) res, count = 0, 2 for _ in range(n): name = input() if name.endswith('+one'): count += 2 else: count += 1 if count == 13: count += 1 print(count * 100)
n = int(input()) (res, count) = (0, 2) for _ in range(n): name = input() if name.endswith('+one'): count += 2 else: count += 1 if count == 13: count += 1 print(count * 100)
ENDPOINT_ARGUMENTS = { 'search_instruments': { 'projection': ['symbol-search', 'symbol-regex', 'desc-search', 'desc-regex', 'fundamental'] }, 'get_market_hours': { 'markets': ['EQUITY', 'OPTION', 'FUTURE', 'BOND', 'FOREX'] }, 'get_movers': { 'market': ['$DJI', '$COMPX', '$SPX.X'], 'direction': ['up', 'down'], 'change': ['value', 'percent'] }, 'get_user_principals': { 'fields': ['streamerSubscriptionKeys', 'streamerConnectionInfo', 'preferences', 'surrogateIds'] } } VALID_CHART_VALUES = { 'minute':{ 'day':[1, 2, 3, 4, 5, 10] }, 'daily':{ 'month':[1, 2, 3, 6], 'year':[1, 2, 3, 5, 10, 15, 20], 'ytd':[1] }, 'weekly':{ 'month':[1, 2, 3, 6], 'year':[1, 2, 3, 5, 10, 15, 20], 'ytd':[1] }, 'monthly':{ 'year':[1, 2, 3, 5, 10, 15, 20] } } STREAM_FIELD_IDS = { "account_activity": { "0": "subscription-key", "1": "account-id", "2": "message-type", "3": "message-data" }, "level_one_forex": { "0": "symbol", "1": "bid-price", "2": "ask-price", "3": "last-price", "4": "bid-size", "5": "ask-size", "6": "total-volume", "7": "last-size", "8": "quote-time", "9": "trade-time", "10": "high-price", "11": "low-price", "12": "close-price", "13": "exchange-id", "14": "description", "15": "open-price", "16": "net-change", "17": "percent-change", "18": "exchange-name", "19": "digits", "20": "security-status", "21": "tick", "22": "tick-amount", "23": "product", "24": "trading-hours", "25": "is-tradable", "26": "market-maker", "27": "52-week-high", "28": "52-week-low", "29": "mark" }, "level_one_futures": { "0": "symbol", "1": "bid-price", "2": "ask-price", "3": "last-price", "4": "bid-size", "5": "ask-size", "6": "ask-id", "7": "bid-id", "8": "total-volume", "9": "last-size", "10": "quote-time", "11": "trade-time", "12": "high-price", "13": "low-price", "14": "close-price", "15": "exchange-id", "16": "description", "17": "last-id", "18": "open-price", "19": "net-change", "20": "future-percent-change", "21": "exhange-name", "22": "security-status", "23": "open-interest", "24": "mark", "25": "tick", "26": "tick-amount", "27": "product", "28": "future-price-format", "29": "future-trading-hours", "30": "future-is-tradable", "31": "future-multiplier", "32": "future-is-active", "33": "future-settlement-price", "34": "future-active-symbol", "35": "future-expiration-date" }, "level_one_futures_options": { "0": "symbol", "1": "bid-price", "2": "ask-price", "3": "last-price", "4": "bid-size", "5": "ask-size", "6": "ask-id", "7": "bid-id", "8": "total-volume", "9": "last-size", "10": "quote-time", "11": "trade-time", "12": "high-price", "13": "low-price", "14": "close-price", "15": "exchange-id", "16": "description", "17": "last-id", "18": "open-price", "19": "net-change", "20": "future-percent-change", "21": "exhange-name", "22": "security-status", "23": "open-interest", "24": "mark", "25": "tick", "26": "tick-amount", "27": "product", "28": "future-price-format", "29": "future-trading-hours", "30": "future-is-tradable", "31": "future-multiplier", "32": "future-is-active", "33": "future-settlement-price", "34": "future-active-symbol", "35": "future-expiration-date" }, "level_one_option": { "0": "symbol", "1": "description", "2": "bid-price", "3": "ask-price", "4": "last-price", "5": "high-price", "6": "low-price", "7": "close-price", "8": "total-volume", "9": "open-interest", "10": "volatility", "11": "quote-time", "12": "trade-time", "13": "money-intrinsic-value", "14": "quote-day", "15": "trade-day", "16": "expiration-year", "17": "multiplier", "18": "digits", "19": "open-price", "20": "bid-size", "21": "ask-size", "22": "last-size", "23": "net-change", "24": "strike-price", "25": "contract-type", "26": "underlying", "27": "expiration-month", "28": "deliverables", "29": "time-value", "30": "expiration-day", "31": "days-to-expiration", "32": "delta", "33": "gamma", "34": "theta", "35": "vega", "36": "rho", "37": "security-status", "38": "theoretical-option-value", "39": "underlying-price", "40": "uv-expiration-type", "41": "mark" }, "level_one_quote": { "0": "symbol", "1": "bid-price", "2": "ask-price", "3": "last-price", "4": "bid-size", "5": "ask-size", "6": "ask-id", "7": "bid-id", "8": "total-volume", "9": "last-size", "10": "trade-time", "11": "quote-time", "12": "high-price", "13": "low-price", "14": "bid-tick", "15": "close-price", "16": "exchange-id", "17": "marginable", "18": "shortable", "19": "island-bid", "20": "island-ask", "21": "island-volume", "22": "quote-day", "23": "trade-day", "24": "volatility", "25": "description", "26": "last-id", "27": "digits", "28": "open-price", "29": "net-change", "30": "52-week-high", "31": "52-week-low", "32": "pe-ratio", "33": "dividend-amount", "34": "dividend-yield", "35": "island-bid-size", "36": "island-ask-size", "37": "nav", "38": "fund-price", "39": "exchange-name", "40": "dividend-date", "41": "regular-market-quote", "42": "regular-market-trade", "43": "regular-market-last-price", "44": "regular-market-last-size", "45": "regular-market-trade-time", "46": "regular-market-trade-day", "47": "regular-market-net-change", "48": "security-status", "49": "mark", "50": "quote-time-in-long", "51": "trade-time-in-long", "52": "regular-market-trade-time-in-long" }, "news_headline": { "0": "symbol", "1": "error-code", "2": "story-datetime", "3": "headline-id", "4": "status", "5": "headline", "6": "story-id", "7": "count-for-keyword", "8": "keyword-array", "9": "is-hot", "10": "story-source" }, "qos_request": { "0": "express", "1": "real-time", "2": "fast", "3": "moderate", "4": "slow", "5": "delayed" }, "timesale": { "0": "symbol", "1": "trade-time", "2": "last-price", "3": "last-size", "4": "last-sequence" }, "chart_equity": { "seq": "chart-sequence", "key": "symbol", "1": "open-price", "2": "high-price", "3": "low-price", "4": "close_price", "5": "volume", "6": "sequence", "7": "chart_time", "8": "chart_day" }, "chart_options": { "seq": "chart-sequence", "key": "key", "1": "open-price", "2": "high-price", "3": "low-price", "4": "close_price", "5": "volume", "6": "sequence", "7": "chart_time", "8": "chart_day" }, "chart_futures": { "seq": "chart-sequence", "key": "key", "1": "open-price", "2": "high-price", "3": "low-price", "4": "close_price", "5": "volume", "6": "sequence", "7": "chart_time", "8": "chart_day" }, "level_two_quotes": { "0": "key", "1": "time", "2": "data" }, "level_two_nyse": { "0": "key", "1": "time", "2": "data" }, "level_two_options": { "0": "key", "1": "time", "2": "data" }, "level_two_forex": { "0": "key", "1": "time", "2": "data" }, "level_two_nasdaq": { "0": "key", "1": "time", "2": "data" }, "level_two_futures": { "0": "key", "1": "time", "2": "data" } } CSV_FIELD_KEYS = { "ACTIVES_NASDAQ":{ "key":"key", "1":"data" }, "ACTIVES_OTCBB":{ "key":"key", "1":"data" }, "ACTIVES_NYSE":{ "key":"key", "1":"data" }, "ACTIVES_OPTIONS":{ "key":"key", "1":"data" }, "CHART_EQUITY": { "seq": "chart-sequence", "key": "symbol", "1": "chart-time", "2": "open-price", "3": "high-price", "4": "low-price", "5": "close-price", "6": "volume", "7": "chart-time", "8": "chart-day" }, "CHART_FUTURES": { "seq": "chart-sequence", "key": "symbol", "1": "chart-time", "2": "open-price", "3": "high-price", "4": "low-price", "5": "close-price", "6": "volume" }, "CHART_OPTIONS": { "seq": "chart-sequence", "key": "symbol", "1": "chart-time", "2": "open-price", "3": "high-price", "4": "low-price", "5": "close-price", "6": "volume" }, "CHART_HISTORY": { "seq": "chart-sequence", "key": "symbol", "1": "chart-time", "2": "open-price", "3": "high-price", "4": "low-price", "5": "close-price", "6": "volume", "7": "chart-time", "8": "chart-day" }, "CHART_HISTORY_FUTURES": { "seq": "chart-sequence", "key": "symbol", "0": "key", "1": "chart-time", "2": "open-price", "3": "high-price", "4": "low-price", "5": "close-price", "6": "volume", "7": "chart-time", "8": "chart-day" }, "LEVELONE_FOREX": { "1": "bid-price", "10": "high-price", "11": "low-price", "12": "close-price", "13": "exchange-id", "14": "description", "15": "open-price", "16": "net-change", "17": "percent-change", "18": "exchange-name", "19": "digits", "2": "ask-price", "20": "security-status", "21": "tick", "22": "tick-amount", "23": "product", "24": "trading-hours", "25": "is-tradable", "26": "market-maker", "27": "52-week-high", "28": "52-week-low", "29": "mark", "3": "last-price", "4": "bid-size", "5": "ask-size", "6": "total-volume", "7": "last-size", "8": "quote-time", "9": "trade-time", "assetMainType": "asset-main-type", "assetSubType": "asset-sub-type", "cusip": "cusip", "delayed": "delayed", "key": "symbol", }, "LEVELONE_FUTURES": { "1": "bid-price", "10": "quote-time", "11": "trade-time", "12": "high-price", "13": "low-price", "14": "close-price", "15": "exchange-id", "16": "description", "17": "last-id", "18": "open-price", "19": "net-change", "2": "ask-price", "20": "future-percent-change", "21": "exhange-name", "22": "security-status", "23": "open-interest", "24": "mark", "25": "tick", "26": "tick-amount", "27": "product", "28": "future-price-format", "29": "future-trading-hours", "3": "last-price", "30": "future-is-tradable", "31": "future-multiplier", "32": "future-is-active", "33": "future-settlement-price", "34": "future-active-symbol", "35": "future-expiration-date", "4": "bid-size", "5": "ask-size", "6": "ask-id", "7": "bid-id", "8": "total-volume", "9": "last-size", "assetMainType": "asset-main-type", "assetSubType": "asset-sub-type", "cusip": "cusip", "delayed": "delayed", "key": "symbol", }, "LEVELONE_FUTURES_OPTIONS": { "1": "bid-price", "10": "quote-time", "11": "trade-time", "12": "high-price", "13": "low-price", "14": "close-price", "15": "exchange-id", "16": "description", "17": "last-id", "18": "open-price", "19": "net-change", "2": "ask-price", "20": "future-percent-change", "21": "exhange-name", "22": "security-status", "23": "open-interest", "24": "mark", "25": "tick", "26": "tick-amount", "27": "product", "28": "future-price-format", "29": "future-trading-hours", "3": "last-price", "30": "future-is-tradable", "31": "future-multiplier", "32": "future-is-active", "33": "future-settlement-price", "34": "future-active-symbol", "35": "future-expiration-date", "4": "bid-size", "5": "ask-size", "6": "ask-id", "7": "bid-id", "8": "total-volume", "9": "last-size", "assetMainType": "asset-main-type", "assetSubType": "asset-sub-type", "cusip": "cusip", "delayed": "delayed", "key": "symbol", }, "OPTION": { "1": "description", "10": "volatility", "11": "quote-time", "12": "trade-time", "13": "money-intrinsic-value", "14": "quote-day", "15": "trade-day", "16": "expiration-year", "17": "multiplier", "18": "digits", "19": "open-price", "2": "bid-price", "20": "bid-size", "21": "ask-size", "22": "last-size", "23": "net-change", "24": "strike-price", "25": "contract-type", "26": "underlying", "27": "expiration-month", "28": "deliverables", "29": "time-value", "3": "ask-price", "30": "expiration-day", "31": "days-to-expiration", "32": "delta", "33": "gamma", "34": "theta", "35": "vega", "36": "rho", "37": "security-status", "38": "theoretical-option-value", "39": "underlying-price", "4": "last-price", "40": "uv-expiration-type", "41": "mark", "5": "high-price", "6": "low-price", "7": "close-price", "8": "total-volume", "9": "open-interest", "assetMainType": "asset-main-type", "assetSubType": "asset-sub-type", "cusip": "cusip", "delayed": "delayed", "key": "symbol", }, "QUOTE": { "10": "trade-time", "11": "quote-time", "12": "high-price", "13": "low-price", "14": "bid-tick", "15": "close-price", "16": "exchange-id", "17": "marginable", "18": "shortable", "1": "bid-price", "19": "island-bid", "20": "island-ask", "21": "island-volume", "22": "quote-day", "23": "trade-day", "24": "volatility", "25": "description", "26": "last-id", "27": "digits", "28": "open-price", "2": "ask-price", "29": "net-change", "30": "52-week-high", "31": "52-week-low", "32": "pe-ratio", "33": "dividend-amount", "34": "dividend-yield", "35": "island-bid-size", "36": "island-ask-size", "37": "nav", "38": "fund-price", "3": "last-price", "39": "exchange-name", "40": "dividend-date", "41": "regular-market-quote", "42": "regular-market-trade", "43": "regular-market-last-price", "44": "regular-market-last-size", "45": "regular-market-trade-time", "46": "regular-market-trade-day", "47": "regular-market-net-change", "48": "security-status", "4": "bid-size", "49": "mark", "50": "quote-time-in-long", "51": "trade-time-in-long", "5": "ask-size", "6": "ask-id", "7": "bid-id", "8": "total-volume", "9": "last-size", "assetMainType": "asset-main-type", "assetSubType": "asset-sub-type", "cusip": "cusip", "delayed": "delayed", "key": "symbol" }, "NEWS_HEADLINE": { "1": "error-code", "10": "story-source", "2": "story-datetime", "3": "headline-id", "4": "status", "5": "headline", "6": "story-id", "7": "count-for-keyword", "8": "keyword-array", "9": "is-hot", "key": "symbol", "seq": "sequence" }, "TIMESALE_EQUITY": { "1": "trade-time", "2": "last-price", "3": "last-size", "4": "last-sequence", "key": "symbol", "seq": "sequence" }, "TIMESALE_FUTURES": { "1": "trade-time", "2": "last-price", "3": "last-size", "4": "last-sequence", "key": "symbol", "seq": "sequence" }, "TIMESALE_FOREX": { "1": "trade-time", "2": "last-price", "3": "last-size", "4": "last-sequence", "key": "symbol", "seq": "sequence" }, "TIMESALE_OPTIONS": { "1": "trade-time", "2": "last-price", "3": "last-size", "4": "last-sequence", "key": "symbol", "seq": "sequence" }, } CSV_FIELD_KEYS_LEVEL_2 = { "NASDAQ_BOOK": "nested", "OPTIONS_BOOK": "nested", "LISTED_BOOK": "nested", "FUTURES_BOOK":"nested" }
endpoint_arguments = {'search_instruments': {'projection': ['symbol-search', 'symbol-regex', 'desc-search', 'desc-regex', 'fundamental']}, 'get_market_hours': {'markets': ['EQUITY', 'OPTION', 'FUTURE', 'BOND', 'FOREX']}, 'get_movers': {'market': ['$DJI', '$COMPX', '$SPX.X'], 'direction': ['up', 'down'], 'change': ['value', 'percent']}, 'get_user_principals': {'fields': ['streamerSubscriptionKeys', 'streamerConnectionInfo', 'preferences', 'surrogateIds']}} valid_chart_values = {'minute': {'day': [1, 2, 3, 4, 5, 10]}, 'daily': {'month': [1, 2, 3, 6], 'year': [1, 2, 3, 5, 10, 15, 20], 'ytd': [1]}, 'weekly': {'month': [1, 2, 3, 6], 'year': [1, 2, 3, 5, 10, 15, 20], 'ytd': [1]}, 'monthly': {'year': [1, 2, 3, 5, 10, 15, 20]}} stream_field_ids = {'account_activity': {'0': 'subscription-key', '1': 'account-id', '2': 'message-type', '3': 'message-data'}, 'level_one_forex': {'0': 'symbol', '1': 'bid-price', '2': 'ask-price', '3': 'last-price', '4': 'bid-size', '5': 'ask-size', '6': 'total-volume', '7': 'last-size', '8': 'quote-time', '9': 'trade-time', '10': 'high-price', '11': 'low-price', '12': 'close-price', '13': 'exchange-id', '14': 'description', '15': 'open-price', '16': 'net-change', '17': 'percent-change', '18': 'exchange-name', '19': 'digits', '20': 'security-status', '21': 'tick', '22': 'tick-amount', '23': 'product', '24': 'trading-hours', '25': 'is-tradable', '26': 'market-maker', '27': '52-week-high', '28': '52-week-low', '29': 'mark'}, 'level_one_futures': {'0': 'symbol', '1': 'bid-price', '2': 'ask-price', '3': 'last-price', '4': 'bid-size', '5': 'ask-size', '6': 'ask-id', '7': 'bid-id', '8': 'total-volume', '9': 'last-size', '10': 'quote-time', '11': 'trade-time', '12': 'high-price', '13': 'low-price', '14': 'close-price', '15': 'exchange-id', '16': 'description', '17': 'last-id', '18': 'open-price', '19': 'net-change', '20': 'future-percent-change', '21': 'exhange-name', '22': 'security-status', '23': 'open-interest', '24': 'mark', '25': 'tick', '26': 'tick-amount', '27': 'product', '28': 'future-price-format', '29': 'future-trading-hours', '30': 'future-is-tradable', '31': 'future-multiplier', '32': 'future-is-active', '33': 'future-settlement-price', '34': 'future-active-symbol', '35': 'future-expiration-date'}, 'level_one_futures_options': {'0': 'symbol', '1': 'bid-price', '2': 'ask-price', '3': 'last-price', '4': 'bid-size', '5': 'ask-size', '6': 'ask-id', '7': 'bid-id', '8': 'total-volume', '9': 'last-size', '10': 'quote-time', '11': 'trade-time', '12': 'high-price', '13': 'low-price', '14': 'close-price', '15': 'exchange-id', '16': 'description', '17': 'last-id', '18': 'open-price', '19': 'net-change', '20': 'future-percent-change', '21': 'exhange-name', '22': 'security-status', '23': 'open-interest', '24': 'mark', '25': 'tick', '26': 'tick-amount', '27': 'product', '28': 'future-price-format', '29': 'future-trading-hours', '30': 'future-is-tradable', '31': 'future-multiplier', '32': 'future-is-active', '33': 'future-settlement-price', '34': 'future-active-symbol', '35': 'future-expiration-date'}, 'level_one_option': {'0': 'symbol', '1': 'description', '2': 'bid-price', '3': 'ask-price', '4': 'last-price', '5': 'high-price', '6': 'low-price', '7': 'close-price', '8': 'total-volume', '9': 'open-interest', '10': 'volatility', '11': 'quote-time', '12': 'trade-time', '13': 'money-intrinsic-value', '14': 'quote-day', '15': 'trade-day', '16': 'expiration-year', '17': 'multiplier', '18': 'digits', '19': 'open-price', '20': 'bid-size', '21': 'ask-size', '22': 'last-size', '23': 'net-change', '24': 'strike-price', '25': 'contract-type', '26': 'underlying', '27': 'expiration-month', '28': 'deliverables', '29': 'time-value', '30': 'expiration-day', '31': 'days-to-expiration', '32': 'delta', '33': 'gamma', '34': 'theta', '35': 'vega', '36': 'rho', '37': 'security-status', '38': 'theoretical-option-value', '39': 'underlying-price', '40': 'uv-expiration-type', '41': 'mark'}, 'level_one_quote': {'0': 'symbol', '1': 'bid-price', '2': 'ask-price', '3': 'last-price', '4': 'bid-size', '5': 'ask-size', '6': 'ask-id', '7': 'bid-id', '8': 'total-volume', '9': 'last-size', '10': 'trade-time', '11': 'quote-time', '12': 'high-price', '13': 'low-price', '14': 'bid-tick', '15': 'close-price', '16': 'exchange-id', '17': 'marginable', '18': 'shortable', '19': 'island-bid', '20': 'island-ask', '21': 'island-volume', '22': 'quote-day', '23': 'trade-day', '24': 'volatility', '25': 'description', '26': 'last-id', '27': 'digits', '28': 'open-price', '29': 'net-change', '30': '52-week-high', '31': '52-week-low', '32': 'pe-ratio', '33': 'dividend-amount', '34': 'dividend-yield', '35': 'island-bid-size', '36': 'island-ask-size', '37': 'nav', '38': 'fund-price', '39': 'exchange-name', '40': 'dividend-date', '41': 'regular-market-quote', '42': 'regular-market-trade', '43': 'regular-market-last-price', '44': 'regular-market-last-size', '45': 'regular-market-trade-time', '46': 'regular-market-trade-day', '47': 'regular-market-net-change', '48': 'security-status', '49': 'mark', '50': 'quote-time-in-long', '51': 'trade-time-in-long', '52': 'regular-market-trade-time-in-long'}, 'news_headline': {'0': 'symbol', '1': 'error-code', '2': 'story-datetime', '3': 'headline-id', '4': 'status', '5': 'headline', '6': 'story-id', '7': 'count-for-keyword', '8': 'keyword-array', '9': 'is-hot', '10': 'story-source'}, 'qos_request': {'0': 'express', '1': 'real-time', '2': 'fast', '3': 'moderate', '4': 'slow', '5': 'delayed'}, 'timesale': {'0': 'symbol', '1': 'trade-time', '2': 'last-price', '3': 'last-size', '4': 'last-sequence'}, 'chart_equity': {'seq': 'chart-sequence', 'key': 'symbol', '1': 'open-price', '2': 'high-price', '3': 'low-price', '4': 'close_price', '5': 'volume', '6': 'sequence', '7': 'chart_time', '8': 'chart_day'}, 'chart_options': {'seq': 'chart-sequence', 'key': 'key', '1': 'open-price', '2': 'high-price', '3': 'low-price', '4': 'close_price', '5': 'volume', '6': 'sequence', '7': 'chart_time', '8': 'chart_day'}, 'chart_futures': {'seq': 'chart-sequence', 'key': 'key', '1': 'open-price', '2': 'high-price', '3': 'low-price', '4': 'close_price', '5': 'volume', '6': 'sequence', '7': 'chart_time', '8': 'chart_day'}, 'level_two_quotes': {'0': 'key', '1': 'time', '2': 'data'}, 'level_two_nyse': {'0': 'key', '1': 'time', '2': 'data'}, 'level_two_options': {'0': 'key', '1': 'time', '2': 'data'}, 'level_two_forex': {'0': 'key', '1': 'time', '2': 'data'}, 'level_two_nasdaq': {'0': 'key', '1': 'time', '2': 'data'}, 'level_two_futures': {'0': 'key', '1': 'time', '2': 'data'}} csv_field_keys = {'ACTIVES_NASDAQ': {'key': 'key', '1': 'data'}, 'ACTIVES_OTCBB': {'key': 'key', '1': 'data'}, 'ACTIVES_NYSE': {'key': 'key', '1': 'data'}, 'ACTIVES_OPTIONS': {'key': 'key', '1': 'data'}, 'CHART_EQUITY': {'seq': 'chart-sequence', 'key': 'symbol', '1': 'chart-time', '2': 'open-price', '3': 'high-price', '4': 'low-price', '5': 'close-price', '6': 'volume', '7': 'chart-time', '8': 'chart-day'}, 'CHART_FUTURES': {'seq': 'chart-sequence', 'key': 'symbol', '1': 'chart-time', '2': 'open-price', '3': 'high-price', '4': 'low-price', '5': 'close-price', '6': 'volume'}, 'CHART_OPTIONS': {'seq': 'chart-sequence', 'key': 'symbol', '1': 'chart-time', '2': 'open-price', '3': 'high-price', '4': 'low-price', '5': 'close-price', '6': 'volume'}, 'CHART_HISTORY': {'seq': 'chart-sequence', 'key': 'symbol', '1': 'chart-time', '2': 'open-price', '3': 'high-price', '4': 'low-price', '5': 'close-price', '6': 'volume', '7': 'chart-time', '8': 'chart-day'}, 'CHART_HISTORY_FUTURES': {'seq': 'chart-sequence', 'key': 'symbol', '0': 'key', '1': 'chart-time', '2': 'open-price', '3': 'high-price', '4': 'low-price', '5': 'close-price', '6': 'volume', '7': 'chart-time', '8': 'chart-day'}, 'LEVELONE_FOREX': {'1': 'bid-price', '10': 'high-price', '11': 'low-price', '12': 'close-price', '13': 'exchange-id', '14': 'description', '15': 'open-price', '16': 'net-change', '17': 'percent-change', '18': 'exchange-name', '19': 'digits', '2': 'ask-price', '20': 'security-status', '21': 'tick', '22': 'tick-amount', '23': 'product', '24': 'trading-hours', '25': 'is-tradable', '26': 'market-maker', '27': '52-week-high', '28': '52-week-low', '29': 'mark', '3': 'last-price', '4': 'bid-size', '5': 'ask-size', '6': 'total-volume', '7': 'last-size', '8': 'quote-time', '9': 'trade-time', 'assetMainType': 'asset-main-type', 'assetSubType': 'asset-sub-type', 'cusip': 'cusip', 'delayed': 'delayed', 'key': 'symbol'}, 'LEVELONE_FUTURES': {'1': 'bid-price', '10': 'quote-time', '11': 'trade-time', '12': 'high-price', '13': 'low-price', '14': 'close-price', '15': 'exchange-id', '16': 'description', '17': 'last-id', '18': 'open-price', '19': 'net-change', '2': 'ask-price', '20': 'future-percent-change', '21': 'exhange-name', '22': 'security-status', '23': 'open-interest', '24': 'mark', '25': 'tick', '26': 'tick-amount', '27': 'product', '28': 'future-price-format', '29': 'future-trading-hours', '3': 'last-price', '30': 'future-is-tradable', '31': 'future-multiplier', '32': 'future-is-active', '33': 'future-settlement-price', '34': 'future-active-symbol', '35': 'future-expiration-date', '4': 'bid-size', '5': 'ask-size', '6': 'ask-id', '7': 'bid-id', '8': 'total-volume', '9': 'last-size', 'assetMainType': 'asset-main-type', 'assetSubType': 'asset-sub-type', 'cusip': 'cusip', 'delayed': 'delayed', 'key': 'symbol'}, 'LEVELONE_FUTURES_OPTIONS': {'1': 'bid-price', '10': 'quote-time', '11': 'trade-time', '12': 'high-price', '13': 'low-price', '14': 'close-price', '15': 'exchange-id', '16': 'description', '17': 'last-id', '18': 'open-price', '19': 'net-change', '2': 'ask-price', '20': 'future-percent-change', '21': 'exhange-name', '22': 'security-status', '23': 'open-interest', '24': 'mark', '25': 'tick', '26': 'tick-amount', '27': 'product', '28': 'future-price-format', '29': 'future-trading-hours', '3': 'last-price', '30': 'future-is-tradable', '31': 'future-multiplier', '32': 'future-is-active', '33': 'future-settlement-price', '34': 'future-active-symbol', '35': 'future-expiration-date', '4': 'bid-size', '5': 'ask-size', '6': 'ask-id', '7': 'bid-id', '8': 'total-volume', '9': 'last-size', 'assetMainType': 'asset-main-type', 'assetSubType': 'asset-sub-type', 'cusip': 'cusip', 'delayed': 'delayed', 'key': 'symbol'}, 'OPTION': {'1': 'description', '10': 'volatility', '11': 'quote-time', '12': 'trade-time', '13': 'money-intrinsic-value', '14': 'quote-day', '15': 'trade-day', '16': 'expiration-year', '17': 'multiplier', '18': 'digits', '19': 'open-price', '2': 'bid-price', '20': 'bid-size', '21': 'ask-size', '22': 'last-size', '23': 'net-change', '24': 'strike-price', '25': 'contract-type', '26': 'underlying', '27': 'expiration-month', '28': 'deliverables', '29': 'time-value', '3': 'ask-price', '30': 'expiration-day', '31': 'days-to-expiration', '32': 'delta', '33': 'gamma', '34': 'theta', '35': 'vega', '36': 'rho', '37': 'security-status', '38': 'theoretical-option-value', '39': 'underlying-price', '4': 'last-price', '40': 'uv-expiration-type', '41': 'mark', '5': 'high-price', '6': 'low-price', '7': 'close-price', '8': 'total-volume', '9': 'open-interest', 'assetMainType': 'asset-main-type', 'assetSubType': 'asset-sub-type', 'cusip': 'cusip', 'delayed': 'delayed', 'key': 'symbol'}, 'QUOTE': {'10': 'trade-time', '11': 'quote-time', '12': 'high-price', '13': 'low-price', '14': 'bid-tick', '15': 'close-price', '16': 'exchange-id', '17': 'marginable', '18': 'shortable', '1': 'bid-price', '19': 'island-bid', '20': 'island-ask', '21': 'island-volume', '22': 'quote-day', '23': 'trade-day', '24': 'volatility', '25': 'description', '26': 'last-id', '27': 'digits', '28': 'open-price', '2': 'ask-price', '29': 'net-change', '30': '52-week-high', '31': '52-week-low', '32': 'pe-ratio', '33': 'dividend-amount', '34': 'dividend-yield', '35': 'island-bid-size', '36': 'island-ask-size', '37': 'nav', '38': 'fund-price', '3': 'last-price', '39': 'exchange-name', '40': 'dividend-date', '41': 'regular-market-quote', '42': 'regular-market-trade', '43': 'regular-market-last-price', '44': 'regular-market-last-size', '45': 'regular-market-trade-time', '46': 'regular-market-trade-day', '47': 'regular-market-net-change', '48': 'security-status', '4': 'bid-size', '49': 'mark', '50': 'quote-time-in-long', '51': 'trade-time-in-long', '5': 'ask-size', '6': 'ask-id', '7': 'bid-id', '8': 'total-volume', '9': 'last-size', 'assetMainType': 'asset-main-type', 'assetSubType': 'asset-sub-type', 'cusip': 'cusip', 'delayed': 'delayed', 'key': 'symbol'}, 'NEWS_HEADLINE': {'1': 'error-code', '10': 'story-source', '2': 'story-datetime', '3': 'headline-id', '4': 'status', '5': 'headline', '6': 'story-id', '7': 'count-for-keyword', '8': 'keyword-array', '9': 'is-hot', 'key': 'symbol', 'seq': 'sequence'}, 'TIMESALE_EQUITY': {'1': 'trade-time', '2': 'last-price', '3': 'last-size', '4': 'last-sequence', 'key': 'symbol', 'seq': 'sequence'}, 'TIMESALE_FUTURES': {'1': 'trade-time', '2': 'last-price', '3': 'last-size', '4': 'last-sequence', 'key': 'symbol', 'seq': 'sequence'}, 'TIMESALE_FOREX': {'1': 'trade-time', '2': 'last-price', '3': 'last-size', '4': 'last-sequence', 'key': 'symbol', 'seq': 'sequence'}, 'TIMESALE_OPTIONS': {'1': 'trade-time', '2': 'last-price', '3': 'last-size', '4': 'last-sequence', 'key': 'symbol', 'seq': 'sequence'}} csv_field_keys_level_2 = {'NASDAQ_BOOK': 'nested', 'OPTIONS_BOOK': 'nested', 'LISTED_BOOK': 'nested', 'FUTURES_BOOK': 'nested'}
# # PySNMP MIB module TC-GROUPS-MIB (http://snmplabs.com/pysmi) # ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/TC-GROUPS-MIB # Produced by pysmi-0.3.4 at Mon Apr 29 21:08:02 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") ValueRangeConstraint, SingleValueConstraint, ConstraintsUnion, ConstraintsIntersection, ValueSizeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ValueRangeConstraint", "SingleValueConstraint", "ConstraintsUnion", "ConstraintsIntersection", "ValueSizeConstraint") SnmpAdminString, = mibBuilder.importSymbols("SNMP-FRAMEWORK-MIB", "SnmpAdminString") ObjectGroup, NotificationGroup, ModuleCompliance = mibBuilder.importSymbols("SNMPv2-CONF", "ObjectGroup", "NotificationGroup", "ModuleCompliance") IpAddress, Integer32, ModuleIdentity, iso, ObjectIdentity, Gauge32, NotificationType, Counter64, MibIdentifier, Bits, Counter32, MibScalar, MibTable, MibTableRow, MibTableColumn, enterprises, TimeTicks, Unsigned32 = mibBuilder.importSymbols("SNMPv2-SMI", "IpAddress", "Integer32", "ModuleIdentity", "iso", "ObjectIdentity", "Gauge32", "NotificationType", "Counter64", "MibIdentifier", "Bits", "Counter32", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "enterprises", "TimeTicks", "Unsigned32") TextualConvention, DisplayString = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "DisplayString") nbTcGroups = ModuleIdentity((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10)) nbTcGroups.setRevisions(('2006-01-12 00:00', '2005-07-07 00:00',)) if mibBuilder.loadTexts: nbTcGroups.setLastUpdated('200601120000Z') if mibBuilder.loadTexts: nbTcGroups.setOrganization('MRV Communications, Inc.') nbase = MibIdentifier((1, 3, 6, 1, 4, 1, 629)) nbSwitchG1 = MibIdentifier((1, 3, 6, 1, 4, 1, 629, 1)) nbSwitchG1Il = MibIdentifier((1, 3, 6, 1, 4, 1, 629, 1, 50)) nbRouterConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 629, 1, 50, 12)) nbRtActionLists = MibIdentifier((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9)) nbTcGrpSupport = MibIdentifier((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10, 100)) nbTcGrpConformance = MibIdentifier((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10, 101)) class SupportValue(TextualConvention, Integer32): status = 'current' subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2)) namedValues = NamedValues(("notSupported", 1), ("supported", 2)) class EntryValidator(TextualConvention, Integer32): status = 'current' subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2)) namedValues = NamedValues(("valid", 1), ("invalid", 2)) nbTcGrpCntrTable = MibTable((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10, 1), ) if mibBuilder.loadTexts: nbTcGrpCntrTable.setStatus('current') nbTcGrpCntrEntry = MibTableRow((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10, 1, 1), ).setIndexNames((0, "TC-GROUPS-MIB", "nbTcGroupCntrGrpName"), (0, "TC-GROUPS-MIB", "nbTcGroupCntrActionName")) if mibBuilder.loadTexts: nbTcGrpCntrEntry.setStatus('current') nbTcGroupCntrGrpName = MibTableColumn((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10, 1, 1, 1), SnmpAdminString().subtype(subtypeSpec=ValueSizeConstraint(0, 32))) if mibBuilder.loadTexts: nbTcGroupCntrGrpName.setStatus('current') nbTcGroupCntrActionName = MibTableColumn((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10, 1, 1, 2), SnmpAdminString().subtype(subtypeSpec=ValueSizeConstraint(0, 64))) if mibBuilder.loadTexts: nbTcGroupCntrActionName.setStatus('current') nbTcGroupCntrStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10, 1, 1, 3), EntryValidator()).setMaxAccess("readwrite") if mibBuilder.loadTexts: nbTcGroupCntrStatus.setStatus('current') nbTcGrpDscrTable = MibTable((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10, 2), ) if mibBuilder.loadTexts: nbTcGrpDscrTable.setStatus('current') nbTcGrpDscrEntry = MibTableRow((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10, 2, 1), ).setIndexNames((0, "TC-GROUPS-MIB", "nbTcGroupDscrGrpName")) if mibBuilder.loadTexts: nbTcGrpDscrEntry.setStatus('current') nbTcGroupDscrGrpName = MibTableColumn((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10, 2, 1, 1), SnmpAdminString().subtype(subtypeSpec=ValueSizeConstraint(0, 32))) if mibBuilder.loadTexts: nbTcGroupDscrGrpName.setStatus('current') nbTcGroupDscrText = MibTableColumn((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10, 2, 1, 3), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 80))).setMaxAccess("readwrite") if mibBuilder.loadTexts: nbTcGroupDscrText.setStatus('current') nbTcGrpReslTable = MibTable((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10, 3), ) if mibBuilder.loadTexts: nbTcGrpReslTable.setStatus('current') nbTcGrpReslEntry = MibTableRow((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10, 3, 1), ) nbTcGrpCntrEntry.registerAugmentions(("TC-GROUPS-MIB", "nbTcGrpReslEntry")) nbTcGrpReslEntry.setIndexNames(*nbTcGrpCntrEntry.getIndexNames()) if mibBuilder.loadTexts: nbTcGrpReslEntry.setStatus('current') nbTcGroupReslStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10, 3, 1, 3), OctetString()).setMaxAccess("readonly") if mibBuilder.loadTexts: nbTcGroupReslStatus.setStatus('current') nbTcGroupReslCnfrmncCntrSet = MibTableColumn((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10, 3, 1, 4), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: nbTcGroupReslCnfrmncCntrSet.setStatus('current') nbTcGroupReslMeteringGreens = MibTableColumn((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10, 3, 1, 5), Counter64()).setMaxAccess("readonly") if mibBuilder.loadTexts: nbTcGroupReslMeteringGreens.setStatus('current') nbTcGroupReslMeteringYellows = MibTableColumn((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10, 3, 1, 6), Counter64()).setMaxAccess("readonly") if mibBuilder.loadTexts: nbTcGroupReslMeteringYellows.setStatus('current') nbTcGroupReslMeteringReds = MibTableColumn((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10, 3, 1, 7), Counter64()).setMaxAccess("readonly") if mibBuilder.loadTexts: nbTcGroupReslMeteringReds.setStatus('current') nbTcGroupReslAggrOctets = MibTableColumn((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10, 3, 1, 9), Counter64()).setMaxAccess("readonly") if mibBuilder.loadTexts: nbTcGroupReslAggrOctets.setStatus('current') nbTcGroupReslAggrPackets = MibTableColumn((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10, 3, 1, 10), Counter64()).setMaxAccess("readonly") if mibBuilder.loadTexts: nbTcGroupReslAggrPackets.setStatus('current') nbTcGroupReslConfGreenOctets = MibTableColumn((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10, 3, 1, 12), Counter64()).setMaxAccess("readonly") if mibBuilder.loadTexts: nbTcGroupReslConfGreenOctets.setStatus('current') nbTcGroupReslConfGreenPackets = MibTableColumn((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10, 3, 1, 13), Counter64()).setMaxAccess("readonly") if mibBuilder.loadTexts: nbTcGroupReslConfGreenPackets.setStatus('current') nbTcGroupReslConfYellowOctets = MibTableColumn((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10, 3, 1, 14), Counter64()).setMaxAccess("readonly") if mibBuilder.loadTexts: nbTcGroupReslConfYellowOctets.setStatus('current') nbTcGroupReslConfYellowPackets = MibTableColumn((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10, 3, 1, 15), Counter64()).setMaxAccess("readonly") if mibBuilder.loadTexts: nbTcGroupReslConfYellowPackets.setStatus('current') nbTcGroupReslConfRedOctets = MibTableColumn((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10, 3, 1, 16), Counter64()).setMaxAccess("readonly") if mibBuilder.loadTexts: nbTcGroupReslConfRedOctets.setStatus('current') nbTcGroupReslConfRedPackets = MibTableColumn((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10, 3, 1, 17), Counter64()).setMaxAccess("readonly") if mibBuilder.loadTexts: nbTcGroupReslConfRedPackets.setStatus('current') nbTcActCtrlTable = MibTable((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10, 9), ) if mibBuilder.loadTexts: nbTcActCtrlTable.setStatus('current') nbTcActCtrlEntry = MibTableRow((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10, 9, 1), ).setIndexNames((0, "TC-GROUPS-MIB", "nbTcActName")) if mibBuilder.loadTexts: nbTcActCtrlEntry.setStatus('current') nbTcActName = MibTableColumn((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10, 9, 1, 1), SnmpAdminString().subtype(subtypeSpec=ValueSizeConstraint(0, 64))) if mibBuilder.loadTexts: nbTcActName.setStatus('current') nbTcActStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10, 9, 1, 64), EntryValidator()).setMaxAccess("readwrite") if mibBuilder.loadTexts: nbTcActStatus.setStatus('current') nbTcActReslTable = MibTable((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10, 10), ) if mibBuilder.loadTexts: nbTcActReslTable.setStatus('current') nbTcActReslEntry = MibTableRow((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10, 10, 1), ) nbTcActCtrlEntry.registerAugmentions(("TC-GROUPS-MIB", "nbTcActReslEntry")) nbTcActReslEntry.setIndexNames(*nbTcActCtrlEntry.getIndexNames()) if mibBuilder.loadTexts: nbTcActReslEntry.setStatus('current') nbTcActReslStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10, 10, 1, 3), OctetString()).setMaxAccess("readonly") if mibBuilder.loadTexts: nbTcActReslStatus.setStatus('current') nbTcGrpSupportGroups = MibScalar((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10, 100, 2), SupportValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: nbTcGrpSupportGroups.setStatus('current') nbTcGrpSupportLists = MibScalar((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10, 100, 9), SupportValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: nbTcGrpSupportLists.setStatus('current') nbTcGrpMIBCompliances = MibIdentifier((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10, 101, 1)) nbTcGrpMIBGroups = MibIdentifier((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10, 101, 2)) nbTcGrpMIBCompliance = ModuleCompliance((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10, 101, 1, 1)).setObjects(("TC-GROUPS-MIB", "nbTcGrpSupportReflectors"), ("TC-GROUPS-MIB", "nbTcGrpGroup"), ("TC-GROUPS-MIB", "nbTcActGroup")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): nbTcGrpMIBCompliance = nbTcGrpMIBCompliance.setStatus('current') nbTcGrpSupportReflectors = ObjectGroup((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10, 101, 2, 1)).setObjects(("TC-GROUPS-MIB", "nbTcGrpSupportGroups"), ("TC-GROUPS-MIB", "nbTcGrpSupportLists")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): nbTcGrpSupportReflectors = nbTcGrpSupportReflectors.setStatus('current') nbTcGrpGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10, 101, 2, 2)).setObjects(("TC-GROUPS-MIB", "nbTcGroupCntrStatus"), ("TC-GROUPS-MIB", "nbTcGroupDscrText"), ("TC-GROUPS-MIB", "nbTcGroupReslStatus"), ("TC-GROUPS-MIB", "nbTcGroupReslCnfrmncCntrSet"), ("TC-GROUPS-MIB", "nbTcGroupReslMeteringGreens"), ("TC-GROUPS-MIB", "nbTcGroupReslMeteringYellows"), ("TC-GROUPS-MIB", "nbTcGroupReslMeteringReds"), ("TC-GROUPS-MIB", "nbTcGroupReslAggrOctets"), ("TC-GROUPS-MIB", "nbTcGroupReslAggrPackets"), ("TC-GROUPS-MIB", "nbTcGroupReslConfGreenOctets"), ("TC-GROUPS-MIB", "nbTcGroupReslConfGreenPackets"), ("TC-GROUPS-MIB", "nbTcGroupReslConfYellowOctets"), ("TC-GROUPS-MIB", "nbTcGroupReslConfYellowPackets"), ("TC-GROUPS-MIB", "nbTcGroupReslConfRedOctets"), ("TC-GROUPS-MIB", "nbTcGroupReslConfRedPackets")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): nbTcGrpGroup = nbTcGrpGroup.setStatus('current') nbTcActGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10, 101, 2, 3)).setObjects(("TC-GROUPS-MIB", "nbTcActStatus"), ("TC-GROUPS-MIB", "nbTcActReslStatus")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): nbTcActGroup = nbTcActGroup.setStatus('current') mibBuilder.exportSymbols("TC-GROUPS-MIB", nbTcGroupDscrGrpName=nbTcGroupDscrGrpName, nbTcGrpSupportLists=nbTcGrpSupportLists, nbTcGroupCntrGrpName=nbTcGroupCntrGrpName, nbTcGrpCntrTable=nbTcGrpCntrTable, nbTcGroupDscrText=nbTcGroupDscrText, nbTcGroupReslConfYellowOctets=nbTcGroupReslConfYellowOctets, nbTcGrpReslTable=nbTcGrpReslTable, nbRtActionLists=nbRtActionLists, nbTcGrpSupportReflectors=nbTcGrpSupportReflectors, SupportValue=SupportValue, nbTcActReslEntry=nbTcActReslEntry, PYSNMP_MODULE_ID=nbTcGroups, nbTcGrpMIBGroups=nbTcGrpMIBGroups, nbTcGroupReslMeteringReds=nbTcGroupReslMeteringReds, nbTcGroupReslConfGreenOctets=nbTcGroupReslConfGreenOctets, nbRouterConfig=nbRouterConfig, nbTcGroupReslMeteringGreens=nbTcGroupReslMeteringGreens, nbTcGrpDscrTable=nbTcGrpDscrTable, nbTcGroups=nbTcGroups, nbTcGrpSupport=nbTcGrpSupport, nbTcGroupReslMeteringYellows=nbTcGroupReslMeteringYellows, nbTcActReslStatus=nbTcActReslStatus, nbTcGroupReslConfGreenPackets=nbTcGroupReslConfGreenPackets, nbTcGrpMIBCompliance=nbTcGrpMIBCompliance, nbTcGrpConformance=nbTcGrpConformance, nbTcGrpGroup=nbTcGrpGroup, nbTcActStatus=nbTcActStatus, nbTcGrpSupportGroups=nbTcGrpSupportGroups, nbTcGrpReslEntry=nbTcGrpReslEntry, nbTcGroupCntrStatus=nbTcGroupCntrStatus, nbTcGrpDscrEntry=nbTcGrpDscrEntry, nbTcGroupReslConfRedPackets=nbTcGroupReslConfRedPackets, EntryValidator=EntryValidator, nbTcGroupReslConfYellowPackets=nbTcGroupReslConfYellowPackets, nbTcActCtrlTable=nbTcActCtrlTable, nbSwitchG1Il=nbSwitchG1Il, nbTcGroupReslStatus=nbTcGroupReslStatus, nbTcActName=nbTcActName, nbTcActCtrlEntry=nbTcActCtrlEntry, nbTcGrpMIBCompliances=nbTcGrpMIBCompliances, nbase=nbase, nbTcGroupReslAggrPackets=nbTcGroupReslAggrPackets, nbTcGroupCntrActionName=nbTcGroupCntrActionName, nbTcGroupReslAggrOctets=nbTcGroupReslAggrOctets, nbTcGroupReslConfRedOctets=nbTcGroupReslConfRedOctets, nbTcGroupReslCnfrmncCntrSet=nbTcGroupReslCnfrmncCntrSet, nbTcGrpCntrEntry=nbTcGrpCntrEntry, nbTcActReslTable=nbTcActReslTable, nbTcActGroup=nbTcActGroup, nbSwitchG1=nbSwitchG1)
(integer, object_identifier, octet_string) = mibBuilder.importSymbols('ASN1', 'Integer', 'ObjectIdentifier', 'OctetString') (named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues') (value_range_constraint, single_value_constraint, constraints_union, constraints_intersection, value_size_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ValueRangeConstraint', 'SingleValueConstraint', 'ConstraintsUnion', 'ConstraintsIntersection', 'ValueSizeConstraint') (snmp_admin_string,) = mibBuilder.importSymbols('SNMP-FRAMEWORK-MIB', 'SnmpAdminString') (object_group, notification_group, module_compliance) = mibBuilder.importSymbols('SNMPv2-CONF', 'ObjectGroup', 'NotificationGroup', 'ModuleCompliance') (ip_address, integer32, module_identity, iso, object_identity, gauge32, notification_type, counter64, mib_identifier, bits, counter32, mib_scalar, mib_table, mib_table_row, mib_table_column, enterprises, time_ticks, unsigned32) = mibBuilder.importSymbols('SNMPv2-SMI', 'IpAddress', 'Integer32', 'ModuleIdentity', 'iso', 'ObjectIdentity', 'Gauge32', 'NotificationType', 'Counter64', 'MibIdentifier', 'Bits', 'Counter32', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'enterprises', 'TimeTicks', 'Unsigned32') (textual_convention, display_string) = mibBuilder.importSymbols('SNMPv2-TC', 'TextualConvention', 'DisplayString') nb_tc_groups = module_identity((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10)) nbTcGroups.setRevisions(('2006-01-12 00:00', '2005-07-07 00:00')) if mibBuilder.loadTexts: nbTcGroups.setLastUpdated('200601120000Z') if mibBuilder.loadTexts: nbTcGroups.setOrganization('MRV Communications, Inc.') nbase = mib_identifier((1, 3, 6, 1, 4, 1, 629)) nb_switch_g1 = mib_identifier((1, 3, 6, 1, 4, 1, 629, 1)) nb_switch_g1_il = mib_identifier((1, 3, 6, 1, 4, 1, 629, 1, 50)) nb_router_config = mib_identifier((1, 3, 6, 1, 4, 1, 629, 1, 50, 12)) nb_rt_action_lists = mib_identifier((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9)) nb_tc_grp_support = mib_identifier((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10, 100)) nb_tc_grp_conformance = mib_identifier((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10, 101)) class Supportvalue(TextualConvention, Integer32): status = 'current' subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2)) named_values = named_values(('notSupported', 1), ('supported', 2)) class Entryvalidator(TextualConvention, Integer32): status = 'current' subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2)) named_values = named_values(('valid', 1), ('invalid', 2)) nb_tc_grp_cntr_table = mib_table((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10, 1)) if mibBuilder.loadTexts: nbTcGrpCntrTable.setStatus('current') nb_tc_grp_cntr_entry = mib_table_row((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10, 1, 1)).setIndexNames((0, 'TC-GROUPS-MIB', 'nbTcGroupCntrGrpName'), (0, 'TC-GROUPS-MIB', 'nbTcGroupCntrActionName')) if mibBuilder.loadTexts: nbTcGrpCntrEntry.setStatus('current') nb_tc_group_cntr_grp_name = mib_table_column((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10, 1, 1, 1), snmp_admin_string().subtype(subtypeSpec=value_size_constraint(0, 32))) if mibBuilder.loadTexts: nbTcGroupCntrGrpName.setStatus('current') nb_tc_group_cntr_action_name = mib_table_column((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10, 1, 1, 2), snmp_admin_string().subtype(subtypeSpec=value_size_constraint(0, 64))) if mibBuilder.loadTexts: nbTcGroupCntrActionName.setStatus('current') nb_tc_group_cntr_status = mib_table_column((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10, 1, 1, 3), entry_validator()).setMaxAccess('readwrite') if mibBuilder.loadTexts: nbTcGroupCntrStatus.setStatus('current') nb_tc_grp_dscr_table = mib_table((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10, 2)) if mibBuilder.loadTexts: nbTcGrpDscrTable.setStatus('current') nb_tc_grp_dscr_entry = mib_table_row((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10, 2, 1)).setIndexNames((0, 'TC-GROUPS-MIB', 'nbTcGroupDscrGrpName')) if mibBuilder.loadTexts: nbTcGrpDscrEntry.setStatus('current') nb_tc_group_dscr_grp_name = mib_table_column((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10, 2, 1, 1), snmp_admin_string().subtype(subtypeSpec=value_size_constraint(0, 32))) if mibBuilder.loadTexts: nbTcGroupDscrGrpName.setStatus('current') nb_tc_group_dscr_text = mib_table_column((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10, 2, 1, 3), display_string().subtype(subtypeSpec=value_size_constraint(0, 80))).setMaxAccess('readwrite') if mibBuilder.loadTexts: nbTcGroupDscrText.setStatus('current') nb_tc_grp_resl_table = mib_table((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10, 3)) if mibBuilder.loadTexts: nbTcGrpReslTable.setStatus('current') nb_tc_grp_resl_entry = mib_table_row((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10, 3, 1)) nbTcGrpCntrEntry.registerAugmentions(('TC-GROUPS-MIB', 'nbTcGrpReslEntry')) nbTcGrpReslEntry.setIndexNames(*nbTcGrpCntrEntry.getIndexNames()) if mibBuilder.loadTexts: nbTcGrpReslEntry.setStatus('current') nb_tc_group_resl_status = mib_table_column((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10, 3, 1, 3), octet_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: nbTcGroupReslStatus.setStatus('current') nb_tc_group_resl_cnfrmnc_cntr_set = mib_table_column((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10, 3, 1, 4), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: nbTcGroupReslCnfrmncCntrSet.setStatus('current') nb_tc_group_resl_metering_greens = mib_table_column((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10, 3, 1, 5), counter64()).setMaxAccess('readonly') if mibBuilder.loadTexts: nbTcGroupReslMeteringGreens.setStatus('current') nb_tc_group_resl_metering_yellows = mib_table_column((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10, 3, 1, 6), counter64()).setMaxAccess('readonly') if mibBuilder.loadTexts: nbTcGroupReslMeteringYellows.setStatus('current') nb_tc_group_resl_metering_reds = mib_table_column((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10, 3, 1, 7), counter64()).setMaxAccess('readonly') if mibBuilder.loadTexts: nbTcGroupReslMeteringReds.setStatus('current') nb_tc_group_resl_aggr_octets = mib_table_column((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10, 3, 1, 9), counter64()).setMaxAccess('readonly') if mibBuilder.loadTexts: nbTcGroupReslAggrOctets.setStatus('current') nb_tc_group_resl_aggr_packets = mib_table_column((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10, 3, 1, 10), counter64()).setMaxAccess('readonly') if mibBuilder.loadTexts: nbTcGroupReslAggrPackets.setStatus('current') nb_tc_group_resl_conf_green_octets = mib_table_column((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10, 3, 1, 12), counter64()).setMaxAccess('readonly') if mibBuilder.loadTexts: nbTcGroupReslConfGreenOctets.setStatus('current') nb_tc_group_resl_conf_green_packets = mib_table_column((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10, 3, 1, 13), counter64()).setMaxAccess('readonly') if mibBuilder.loadTexts: nbTcGroupReslConfGreenPackets.setStatus('current') nb_tc_group_resl_conf_yellow_octets = mib_table_column((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10, 3, 1, 14), counter64()).setMaxAccess('readonly') if mibBuilder.loadTexts: nbTcGroupReslConfYellowOctets.setStatus('current') nb_tc_group_resl_conf_yellow_packets = mib_table_column((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10, 3, 1, 15), counter64()).setMaxAccess('readonly') if mibBuilder.loadTexts: nbTcGroupReslConfYellowPackets.setStatus('current') nb_tc_group_resl_conf_red_octets = mib_table_column((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10, 3, 1, 16), counter64()).setMaxAccess('readonly') if mibBuilder.loadTexts: nbTcGroupReslConfRedOctets.setStatus('current') nb_tc_group_resl_conf_red_packets = mib_table_column((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10, 3, 1, 17), counter64()).setMaxAccess('readonly') if mibBuilder.loadTexts: nbTcGroupReslConfRedPackets.setStatus('current') nb_tc_act_ctrl_table = mib_table((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10, 9)) if mibBuilder.loadTexts: nbTcActCtrlTable.setStatus('current') nb_tc_act_ctrl_entry = mib_table_row((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10, 9, 1)).setIndexNames((0, 'TC-GROUPS-MIB', 'nbTcActName')) if mibBuilder.loadTexts: nbTcActCtrlEntry.setStatus('current') nb_tc_act_name = mib_table_column((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10, 9, 1, 1), snmp_admin_string().subtype(subtypeSpec=value_size_constraint(0, 64))) if mibBuilder.loadTexts: nbTcActName.setStatus('current') nb_tc_act_status = mib_table_column((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10, 9, 1, 64), entry_validator()).setMaxAccess('readwrite') if mibBuilder.loadTexts: nbTcActStatus.setStatus('current') nb_tc_act_resl_table = mib_table((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10, 10)) if mibBuilder.loadTexts: nbTcActReslTable.setStatus('current') nb_tc_act_resl_entry = mib_table_row((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10, 10, 1)) nbTcActCtrlEntry.registerAugmentions(('TC-GROUPS-MIB', 'nbTcActReslEntry')) nbTcActReslEntry.setIndexNames(*nbTcActCtrlEntry.getIndexNames()) if mibBuilder.loadTexts: nbTcActReslEntry.setStatus('current') nb_tc_act_resl_status = mib_table_column((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10, 10, 1, 3), octet_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: nbTcActReslStatus.setStatus('current') nb_tc_grp_support_groups = mib_scalar((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10, 100, 2), support_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: nbTcGrpSupportGroups.setStatus('current') nb_tc_grp_support_lists = mib_scalar((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10, 100, 9), support_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: nbTcGrpSupportLists.setStatus('current') nb_tc_grp_mib_compliances = mib_identifier((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10, 101, 1)) nb_tc_grp_mib_groups = mib_identifier((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10, 101, 2)) nb_tc_grp_mib_compliance = module_compliance((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10, 101, 1, 1)).setObjects(('TC-GROUPS-MIB', 'nbTcGrpSupportReflectors'), ('TC-GROUPS-MIB', 'nbTcGrpGroup'), ('TC-GROUPS-MIB', 'nbTcActGroup')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): nb_tc_grp_mib_compliance = nbTcGrpMIBCompliance.setStatus('current') nb_tc_grp_support_reflectors = object_group((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10, 101, 2, 1)).setObjects(('TC-GROUPS-MIB', 'nbTcGrpSupportGroups'), ('TC-GROUPS-MIB', 'nbTcGrpSupportLists')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): nb_tc_grp_support_reflectors = nbTcGrpSupportReflectors.setStatus('current') nb_tc_grp_group = object_group((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10, 101, 2, 2)).setObjects(('TC-GROUPS-MIB', 'nbTcGroupCntrStatus'), ('TC-GROUPS-MIB', 'nbTcGroupDscrText'), ('TC-GROUPS-MIB', 'nbTcGroupReslStatus'), ('TC-GROUPS-MIB', 'nbTcGroupReslCnfrmncCntrSet'), ('TC-GROUPS-MIB', 'nbTcGroupReslMeteringGreens'), ('TC-GROUPS-MIB', 'nbTcGroupReslMeteringYellows'), ('TC-GROUPS-MIB', 'nbTcGroupReslMeteringReds'), ('TC-GROUPS-MIB', 'nbTcGroupReslAggrOctets'), ('TC-GROUPS-MIB', 'nbTcGroupReslAggrPackets'), ('TC-GROUPS-MIB', 'nbTcGroupReslConfGreenOctets'), ('TC-GROUPS-MIB', 'nbTcGroupReslConfGreenPackets'), ('TC-GROUPS-MIB', 'nbTcGroupReslConfYellowOctets'), ('TC-GROUPS-MIB', 'nbTcGroupReslConfYellowPackets'), ('TC-GROUPS-MIB', 'nbTcGroupReslConfRedOctets'), ('TC-GROUPS-MIB', 'nbTcGroupReslConfRedPackets')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): nb_tc_grp_group = nbTcGrpGroup.setStatus('current') nb_tc_act_group = object_group((1, 3, 6, 1, 4, 1, 629, 1, 50, 12, 9, 10, 101, 2, 3)).setObjects(('TC-GROUPS-MIB', 'nbTcActStatus'), ('TC-GROUPS-MIB', 'nbTcActReslStatus')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): nb_tc_act_group = nbTcActGroup.setStatus('current') mibBuilder.exportSymbols('TC-GROUPS-MIB', nbTcGroupDscrGrpName=nbTcGroupDscrGrpName, nbTcGrpSupportLists=nbTcGrpSupportLists, nbTcGroupCntrGrpName=nbTcGroupCntrGrpName, nbTcGrpCntrTable=nbTcGrpCntrTable, nbTcGroupDscrText=nbTcGroupDscrText, nbTcGroupReslConfYellowOctets=nbTcGroupReslConfYellowOctets, nbTcGrpReslTable=nbTcGrpReslTable, nbRtActionLists=nbRtActionLists, nbTcGrpSupportReflectors=nbTcGrpSupportReflectors, SupportValue=SupportValue, nbTcActReslEntry=nbTcActReslEntry, PYSNMP_MODULE_ID=nbTcGroups, nbTcGrpMIBGroups=nbTcGrpMIBGroups, nbTcGroupReslMeteringReds=nbTcGroupReslMeteringReds, nbTcGroupReslConfGreenOctets=nbTcGroupReslConfGreenOctets, nbRouterConfig=nbRouterConfig, nbTcGroupReslMeteringGreens=nbTcGroupReslMeteringGreens, nbTcGrpDscrTable=nbTcGrpDscrTable, nbTcGroups=nbTcGroups, nbTcGrpSupport=nbTcGrpSupport, nbTcGroupReslMeteringYellows=nbTcGroupReslMeteringYellows, nbTcActReslStatus=nbTcActReslStatus, nbTcGroupReslConfGreenPackets=nbTcGroupReslConfGreenPackets, nbTcGrpMIBCompliance=nbTcGrpMIBCompliance, nbTcGrpConformance=nbTcGrpConformance, nbTcGrpGroup=nbTcGrpGroup, nbTcActStatus=nbTcActStatus, nbTcGrpSupportGroups=nbTcGrpSupportGroups, nbTcGrpReslEntry=nbTcGrpReslEntry, nbTcGroupCntrStatus=nbTcGroupCntrStatus, nbTcGrpDscrEntry=nbTcGrpDscrEntry, nbTcGroupReslConfRedPackets=nbTcGroupReslConfRedPackets, EntryValidator=EntryValidator, nbTcGroupReslConfYellowPackets=nbTcGroupReslConfYellowPackets, nbTcActCtrlTable=nbTcActCtrlTable, nbSwitchG1Il=nbSwitchG1Il, nbTcGroupReslStatus=nbTcGroupReslStatus, nbTcActName=nbTcActName, nbTcActCtrlEntry=nbTcActCtrlEntry, nbTcGrpMIBCompliances=nbTcGrpMIBCompliances, nbase=nbase, nbTcGroupReslAggrPackets=nbTcGroupReslAggrPackets, nbTcGroupCntrActionName=nbTcGroupCntrActionName, nbTcGroupReslAggrOctets=nbTcGroupReslAggrOctets, nbTcGroupReslConfRedOctets=nbTcGroupReslConfRedOctets, nbTcGroupReslCnfrmncCntrSet=nbTcGroupReslCnfrmncCntrSet, nbTcGrpCntrEntry=nbTcGrpCntrEntry, nbTcActReslTable=nbTcActReslTable, nbTcActGroup=nbTcActGroup, nbSwitchG1=nbSwitchG1)
#------------------------------------------------------------------------------- # readstrings.py - A demonstration of while loops to validate user input #------------------------------------------------------------------------------- # (note the need for "len(string) == 0" to appear twice). def getString1(): string = "" while len(string) == 0: string = input("Enter a non-empty string: ") if len(string) == 0: print("You didn't enter anything!") return string # The same validation example, this time using the # loop-and-a-half pattern. def getString2(): while True: string = input("Enter a non-empty string: ") if len(string) > 0: break print("You didn't enter anything!") return string
def get_string1(): string = '' while len(string) == 0: string = input('Enter a non-empty string: ') if len(string) == 0: print("You didn't enter anything!") return string def get_string2(): while True: string = input('Enter a non-empty string: ') if len(string) > 0: break print("You didn't enter anything!") return string
#!/usr/bin/env python # coding: utf-8 # Copyright (c) 2002-2019 "Neo4j," # Neo4j Sweden AB [http://neo4j.com] # # This file is part of Neo4j. # # 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. class DateType(type): def __getattr__(cls, name): try: return { "fromisoformat": cls.from_iso_format, "fromordinal": cls.from_ordinal, "fromtimestamp": cls.from_timestamp, "utcfromtimestamp": cls.utc_from_timestamp, }[name] except KeyError: raise AttributeError("%s has no attribute %r" % (cls.__name__, name)) class TimeType(type): def __getattr__(cls, name): try: return { "fromisoformat": cls.from_iso_format, "utcnow": cls.utc_now, }[name] except KeyError: raise AttributeError("%s has no attribute %r" % (cls.__name__, name)) class DateTimeType(type): def __getattr__(cls, name): try: return { "fromisoformat": cls.from_iso_format, "fromordinal": cls.from_ordinal, "fromtimestamp": cls.from_timestamp, "strptime": cls.parse, "today": cls.now, "utcfromtimestamp": cls.utc_from_timestamp, "utcnow": cls.utc_now, }[name] except KeyError: raise AttributeError("%s has no attribute %r" % (cls.__name__, name))
class Datetype(type): def __getattr__(cls, name): try: return {'fromisoformat': cls.from_iso_format, 'fromordinal': cls.from_ordinal, 'fromtimestamp': cls.from_timestamp, 'utcfromtimestamp': cls.utc_from_timestamp}[name] except KeyError: raise attribute_error('%s has no attribute %r' % (cls.__name__, name)) class Timetype(type): def __getattr__(cls, name): try: return {'fromisoformat': cls.from_iso_format, 'utcnow': cls.utc_now}[name] except KeyError: raise attribute_error('%s has no attribute %r' % (cls.__name__, name)) class Datetimetype(type): def __getattr__(cls, name): try: return {'fromisoformat': cls.from_iso_format, 'fromordinal': cls.from_ordinal, 'fromtimestamp': cls.from_timestamp, 'strptime': cls.parse, 'today': cls.now, 'utcfromtimestamp': cls.utc_from_timestamp, 'utcnow': cls.utc_now}[name] except KeyError: raise attribute_error('%s has no attribute %r' % (cls.__name__, name))
def insertion_sort(unsorted_list): for index in range(1, len(unsorted_list)): search_index = index insert_value = unsorted_list[index] while search_index > 0 and unsorted_list[search_index - 1] > insert_value: unsorted_list[search_index] = unsorted_list[search_index - 1] search_index -= 1 unsorted_list[search_index] = insert_value my_list = [10, 11, 12, 1, 2, 3] print(my_list) insertion_sort(my_list) print(my_list)
def insertion_sort(unsorted_list): for index in range(1, len(unsorted_list)): search_index = index insert_value = unsorted_list[index] while search_index > 0 and unsorted_list[search_index - 1] > insert_value: unsorted_list[search_index] = unsorted_list[search_index - 1] search_index -= 1 unsorted_list[search_index] = insert_value my_list = [10, 11, 12, 1, 2, 3] print(my_list) insertion_sort(my_list) print(my_list)
Basic_HEADER = {'Access-Control-Allow-Origin': '*', 'Access-Control-Allow-Methods': 'POST, GET, OPTIONS', 'Access-Control-Allow-Headers': 'access_token, accessToken,origin,' ' x-csrftoken, content-type, accept', 'Access-Control-Max-Age': '1728000'} FILE_UPLOAD_HEADER = {'Access-Control-Allow-Origin': '*', 'Access-Control-Allow-Methods': 'POST', 'Access-Control-Allow-Headers': ( 'access_token, ' 'accessToken, ' 'origin, ' 'x-csrftoken, ' 'content-type, ' 'accept' ), 'Access-Control-Max-Age': '1728000'}
basic_header = {'Access-Control-Allow-Origin': '*', 'Access-Control-Allow-Methods': 'POST, GET, OPTIONS', 'Access-Control-Allow-Headers': 'access_token, accessToken,origin, x-csrftoken, content-type, accept', 'Access-Control-Max-Age': '1728000'} file_upload_header = {'Access-Control-Allow-Origin': '*', 'Access-Control-Allow-Methods': 'POST', 'Access-Control-Allow-Headers': 'access_token, accessToken, origin, x-csrftoken, content-type, accept', 'Access-Control-Max-Age': '1728000'}
# HEAD # Membership Operators # DESCRIPTION # Describe the usage of membership operators # RESOURCES # # 'in' operator checks if an item is a part of # a sequence or iterator # 'not in' operator checks if an item is not # a part of a sequence or iterator lists = [1, 2, 3, 4, 5] dictions = {"key": "value", "a": "b", "c": "d"} # Usage with lists for # 'not in' AND 'in' # 'in' checks for item in sequence if (1 in lists): print("in operator - 1 in lists:", (1 in lists)) # 'in' checks for absence of item in sequence if (1 not in lists): print("not in operator - 1 not in lists:", (1 not in lists)) # 'in' checks for absence of item in sequence if ("b" not in lists): print("not in operator - 'b' not in lists:", ("b" not in lists)) # Usage with dictions for # 'not in' AND 'in' # 'in' checks for item in sequence # diction.keys() return a sequence if ("key" in dictions.keys()): print("in operator - 'key' in dictions.keys():", ("key" in dictions.keys())) # 'not in' checks for absence of item in sequence # diction.keys() return a sequence if ("key" not in dictions.keys()): print("not in operator - 'key' in dictions.keys():", ("key" not in dictions.keys())) if ("somekey" not in dictions.keys()): print("not in operator - 'somekey' in dictions.keys():", ("somekey" not in dictions.keys()))
lists = [1, 2, 3, 4, 5] dictions = {'key': 'value', 'a': 'b', 'c': 'd'} if 1 in lists: print('in operator - 1 in lists:', 1 in lists) if 1 not in lists: print('not in operator - 1 not in lists:', 1 not in lists) if 'b' not in lists: print("not in operator - 'b' not in lists:", 'b' not in lists) if 'key' in dictions.keys(): print("in operator - 'key' in dictions.keys():", 'key' in dictions.keys()) if 'key' not in dictions.keys(): print("not in operator - 'key' in dictions.keys():", 'key' not in dictions.keys()) if 'somekey' not in dictions.keys(): print("not in operator - 'somekey' in dictions.keys():", 'somekey' not in dictions.keys())
class Character: def __init__(self): self._firstName = '' self._lastName = '' self._pic = '' self._position = '' self._bio = '' @property def firstName(self): return self._firstName @property def lastName(self): return self._lastName @property def pic(self): return self._pic @property def position(self): return self._position @property def bio(self): return self._bio def setCharacter(self, firstName, lastName, pic, position, bio): self._firstName = firstName self._lastName = lastName self._pic = pic self._position = position self._bio = bio def printCharacter(self): print('info:' + self._firstName + ' ' + self._lastName + ' ' + self._pic + ' '+ self._position + ' '+ self._bio) def __str__(self): print('info:' + self._firstName + ' ' + self._lastName + ' ' + self._pic + ' '+ self._position + ' '+ self._bio) return self._firstName + ' ' + self._lastName
class Character: def __init__(self): self._firstName = '' self._lastName = '' self._pic = '' self._position = '' self._bio = '' @property def first_name(self): return self._firstName @property def last_name(self): return self._lastName @property def pic(self): return self._pic @property def position(self): return self._position @property def bio(self): return self._bio def set_character(self, firstName, lastName, pic, position, bio): self._firstName = firstName self._lastName = lastName self._pic = pic self._position = position self._bio = bio def print_character(self): print('info:' + self._firstName + ' ' + self._lastName + ' ' + self._pic + ' ' + self._position + ' ' + self._bio) def __str__(self): print('info:' + self._firstName + ' ' + self._lastName + ' ' + self._pic + ' ' + self._position + ' ' + self._bio) return self._firstName + ' ' + self._lastName
def test_signal_wikidata_url(ranker): rank = lambda url: ranker.client.get_signal_value_from_url("wikidata_url", url) assert rank("http://www.douglasadams.com") > 0.5 assert rank("http://www.douglasadams.com/?a=b") > 0.5 assert rank("http://www.douglasadams.com/page2") == 0. # TODO, check domain? assert rank("http://www.paulherbert.com/") == 0.
def test_signal_wikidata_url(ranker): rank = lambda url: ranker.client.get_signal_value_from_url('wikidata_url', url) assert rank('http://www.douglasadams.com') > 0.5 assert rank('http://www.douglasadams.com/?a=b') > 0.5 assert rank('http://www.douglasadams.com/page2') == 0.0 assert rank('http://www.paulherbert.com/') == 0.0
#!/usr/bin/env python3 fileNum = input('File Number: ') file = bytearray(open(fileNum + '.txt', 'rb').read()) seed = input('Seed (format is XXX, XXX, XXX): ') init = int(seed[0:3]) mult = int(seed[5:8]) inc = int(seed[10:13]) key = "" current = init for i in range(120): key += chr(current) current *= mult current += inc current %= 128 xord_byte = bytearray(120) byte = bytearray(key, 'ascii') for i in range(120): xord_byte[i] = file[i] ^ byte[i] open(fileNum, 'wb').write(xord_byte)
file_num = input('File Number: ') file = bytearray(open(fileNum + '.txt', 'rb').read()) seed = input('Seed (format is XXX, XXX, XXX): ') init = int(seed[0:3]) mult = int(seed[5:8]) inc = int(seed[10:13]) key = '' current = init for i in range(120): key += chr(current) current *= mult current += inc current %= 128 xord_byte = bytearray(120) byte = bytearray(key, 'ascii') for i in range(120): xord_byte[i] = file[i] ^ byte[i] open(fileNum, 'wb').write(xord_byte)
num=int(input()) r=[] for i in range(num): array=input().split(' ') array=[int(m) for m in array if m !=''] array.remove(array[0]) js=[] os=[] for k in range(len(array)): if array[k]%2==0: os.append(array[k]) else: js.append(array[k]) js=sorted(js) os=sorted(os) r.append(js+os) for s in r: print(' '.join([str(t) for t in s ]))
num = int(input()) r = [] for i in range(num): array = input().split(' ') array = [int(m) for m in array if m != ''] array.remove(array[0]) js = [] os = [] for k in range(len(array)): if array[k] % 2 == 0: os.append(array[k]) else: js.append(array[k]) js = sorted(js) os = sorted(os) r.append(js + os) for s in r: print(' '.join([str(t) for t in s]))
class Solution: def isValid(self, s: str) -> bool: stack = [] for st in s: if st in ('(', '{', '['): stack.append(st) else: if len(stack) < 1: return False tmp = stack.pop() if st == ')' and tmp == '(': continue elif st == '}' and tmp == '{': continue elif st == ']' and tmp == '[': continue else: return False return len(stack) == 0
class Solution: def is_valid(self, s: str) -> bool: stack = [] for st in s: if st in ('(', '{', '['): stack.append(st) else: if len(stack) < 1: return False tmp = stack.pop() if st == ')' and tmp == '(': continue elif st == '}' and tmp == '{': continue elif st == ']' and tmp == '[': continue else: return False return len(stack) == 0
class Camera(): def __init__(self, camera_matrix, projection_matrix, parameters={}): self.camera_matrix = camera_matrix self.projection_matrix = projection_matrix self.parameters = parameters class Material(): def __init__(self, shader, parameters={}): self.shader = shader self.parameters = parameters class Mesh(): def __init__(self, mesh, parameters={}): self.mesh = mesh self.parameters = parameters class Object(): def __init__(self, matrix, mesh, material, parameters={}, mirror_scale=False): self.matrix = matrix self.mesh = mesh self.material = material self.parameters = parameters self.mirror_scale = mirror_scale class Light(): def __init__(self): self.type = 0 self.color = (0,0,0) self.parameters = {} self.position = (0,0,0) self.direction = (0,0,0) self.spot_angle = 0 self.spot_blend = 0 self.radius = 0 self.matrix = None class Scene(): def __init__(self): self.camera = None self.objects = [] self.lights = [] self.parameters = {} self.world_parameters = {} self.frame = 0 self.time = 0 self.batches = None self.shader_resources = {} class ShaderResource(): def shader_callback(self, shader): pass class TextureShaderResource(): def __init__(self, name, texture): self.name = name self.texture = texture def shader_callback(self, shader): if self.name in shader.textures.keys(): shader.textures[self.name] = self.texture
class Camera: def __init__(self, camera_matrix, projection_matrix, parameters={}): self.camera_matrix = camera_matrix self.projection_matrix = projection_matrix self.parameters = parameters class Material: def __init__(self, shader, parameters={}): self.shader = shader self.parameters = parameters class Mesh: def __init__(self, mesh, parameters={}): self.mesh = mesh self.parameters = parameters class Object: def __init__(self, matrix, mesh, material, parameters={}, mirror_scale=False): self.matrix = matrix self.mesh = mesh self.material = material self.parameters = parameters self.mirror_scale = mirror_scale class Light: def __init__(self): self.type = 0 self.color = (0, 0, 0) self.parameters = {} self.position = (0, 0, 0) self.direction = (0, 0, 0) self.spot_angle = 0 self.spot_blend = 0 self.radius = 0 self.matrix = None class Scene: def __init__(self): self.camera = None self.objects = [] self.lights = [] self.parameters = {} self.world_parameters = {} self.frame = 0 self.time = 0 self.batches = None self.shader_resources = {} class Shaderresource: def shader_callback(self, shader): pass class Textureshaderresource: def __init__(self, name, texture): self.name = name self.texture = texture def shader_callback(self, shader): if self.name in shader.textures.keys(): shader.textures[self.name] = self.texture
def factorial(n): result = 1 for i in range(n): result *= i + 1 return result
def factorial(n): result = 1 for i in range(n): result *= i + 1 return result
#!/bin/python3 def swap_case(s): tmp = [] for c in s: if c.islower(): tmp.append(c.upper()) else: tmp.append(c.lower()) return ''.join(tmp) def main(): s = input() result = swap_case(s) print(result) if __name__ == '__main__': main()
def swap_case(s): tmp = [] for c in s: if c.islower(): tmp.append(c.upper()) else: tmp.append(c.lower()) return ''.join(tmp) def main(): s = input() result = swap_case(s) print(result) if __name__ == '__main__': main()
# Date: 2020/11/05 # Author: Luis Marquez # Description: # This is a demostration of brute-force Search algorithm, in this program we'll calculate # an exact square root of a number 'n' -> Objective #run def run(): answer = 0 objective = int(input(f"Type an integer: ")) while answer**2 < objective: #print(answer) answer += 1 if answer**2 == objective: print(f"\nThe square root of {objective} is {answer}\n") else: print(f"\n{objective} doesn't have an exact square root\n") #main if __name__ == "__main__": run()
def run(): answer = 0 objective = int(input(f'Type an integer: ')) while answer ** 2 < objective: answer += 1 if answer ** 2 == objective: print(f'\nThe square root of {objective} is {answer}\n') else: print(f"\n{objective} doesn't have an exact square root\n") if __name__ == '__main__': run()
def foo() -> int: return 1 foo()
def foo() -> int: return 1 foo()
#import Adafruit_DHT # GPIO Channel for RGB LED Strip r_channel = 25 g_channel = 27 b_channel = 22 # GPIO Channel for white LED Strip w_channel = 18 # Location Latitude and Longitude (Auckland, New Zealand) latitude = "-36.84" longitude = "174.74" # RGBW Value to use during Day day_colour = [75, 255, 0, 100] # RGBW Value to use during Night #night_colour = [0, 200, 200, 0] night_colour = [0, 100, 100, 0] # Sunset/Sunrise RGB & White LED Colour values over time # Time (Seconds) R, G, B, W # 60 = 1 Minute # 3600 = 1 hour sunrise_colour_map = { 3600: night_colour, 3000: [ 0, 50, 100, 15], #Dim Blue 2400: [100, 30, 30, 30], #Neutral 1800: [255, 0, 0, 60], #Very Red 1500: [255, 100, 0, 80], #Sepia dimmer 1200: [255, 200, 0, 100], #Sepia Light 900: [ 75, 255, 0, 100], #Warmer Daylight 0: day_colour } # Bright white sunset_colour_map = { 3600: day_colour, 3000: [ 75, 255, 0, 100], #Warmer Daylight 2400: [255, 200, 0, 100], #Sepia Light 1800: [255, 100, 0, 80], #Sepia dimmer 1500: [255, 0, 0, 60], #Very Red 1200: [100, 30, 30, 30], #Neutral 900: [ 0, 50, 100, 15], #Dim Blue 0: night_colour } # Set to true to run through Sunrise colours in Demo mode DEMO_MODE = False # Fast forward mode DEMO_SPEED = 10 #1 sec = x sec
r_channel = 25 g_channel = 27 b_channel = 22 w_channel = 18 latitude = '-36.84' longitude = '174.74' day_colour = [75, 255, 0, 100] night_colour = [0, 100, 100, 0] sunrise_colour_map = {3600: night_colour, 3000: [0, 50, 100, 15], 2400: [100, 30, 30, 30], 1800: [255, 0, 0, 60], 1500: [255, 100, 0, 80], 1200: [255, 200, 0, 100], 900: [75, 255, 0, 100], 0: day_colour} sunset_colour_map = {3600: day_colour, 3000: [75, 255, 0, 100], 2400: [255, 200, 0, 100], 1800: [255, 100, 0, 80], 1500: [255, 0, 0, 60], 1200: [100, 30, 30, 30], 900: [0, 50, 100, 15], 0: night_colour} demo_mode = False demo_speed = 10
def game_of_life(alive = []): return list(set(newborns(alive) + staying_alive(alive))) def newborns(alive): return next_living_from( cells = neighbors_of_all_alive(alive), alive = alive, valid_neighbor_counts = [3] ) def staying_alive(alive): return next_living_from( cells = alive, alive = alive, valid_neighbor_counts = [2, 3] ) def next_living_from(cells, alive, valid_neighbor_counts): return [c for c in cells if cell_will_live(c, alive, valid_neighbor_counts)] def cell_will_live(cell, alive, valid_neighbor_counts): return len(living_neighbors(cell, alive)) in valid_neighbor_counts def living_neighbors(cell, alive): return [c for c in alive if c != cell and cell in neighbors(c)] def neighbors_of_all_alive(alive): neighbor_lists_of_alive = [neighbors(c) for c in alive] return [c for n in neighbor_lists_of_alive for c in n] def neighbors(cell): (x, y) = (nth_coord_of_cell(cell, 0), nth_coord_of_cell(cell, 1)) return [str(x + dx) + ', ' + str(y + dy) for (dx, dy) in neighbor_steps()] def nth_coord_of_cell(cell, n): return int(cell.split(', ')[n]) def neighbor_steps(): return [(0, 1), (0, -1), (1, 0), (-1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
def game_of_life(alive=[]): return list(set(newborns(alive) + staying_alive(alive))) def newborns(alive): return next_living_from(cells=neighbors_of_all_alive(alive), alive=alive, valid_neighbor_counts=[3]) def staying_alive(alive): return next_living_from(cells=alive, alive=alive, valid_neighbor_counts=[2, 3]) def next_living_from(cells, alive, valid_neighbor_counts): return [c for c in cells if cell_will_live(c, alive, valid_neighbor_counts)] def cell_will_live(cell, alive, valid_neighbor_counts): return len(living_neighbors(cell, alive)) in valid_neighbor_counts def living_neighbors(cell, alive): return [c for c in alive if c != cell and cell in neighbors(c)] def neighbors_of_all_alive(alive): neighbor_lists_of_alive = [neighbors(c) for c in alive] return [c for n in neighbor_lists_of_alive for c in n] def neighbors(cell): (x, y) = (nth_coord_of_cell(cell, 0), nth_coord_of_cell(cell, 1)) return [str(x + dx) + ', ' + str(y + dy) for (dx, dy) in neighbor_steps()] def nth_coord_of_cell(cell, n): return int(cell.split(', ')[n]) def neighbor_steps(): return [(0, 1), (0, -1), (1, 0), (-1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
num1 = 1 num2 = 2 num3 = 45 num4 = 23
num1 = 1 num2 = 2 num3 = 45 num4 = 23
# -*- coding: utf-8 -*- ''' Let's teach the Robots to distinguish words and numbers. You are given a string with words and numbers separated by whitespaces (one space). The words contains only letters. You should check if the string contains three words in succession. For example, the string "start 5 one two three 7 end" contains three words in succession. Input: A string with words. Output: The answer as a boolean. ''' def checkio(words): count = 0 for word in words.split(): if not word.isdigit(): count += 1 if count == 3: return True else: count = 0 return False # These "asserts" using only for self-checking and not necessary for auto-testing if __name__ == '__main__': print('Example:') print(checkio("Hello World hello")) assert checkio("Hello World hello") == True, "Hello" assert checkio("He is 123 man") == False, "123 man" assert checkio("1 2 3 4") == False, "Digits" assert checkio("bla bla bla bla") == True, "Bla Bla" assert checkio("Hi") == False, "Hi" print("Coding complete? Click 'Check' to review your tests and earn cool rewards!")
""" Let's teach the Robots to distinguish words and numbers. You are given a string with words and numbers separated by whitespaces (one space). The words contains only letters. You should check if the string contains three words in succession. For example, the string "start 5 one two three 7 end" contains three words in succession. Input: A string with words. Output: The answer as a boolean. """ def checkio(words): count = 0 for word in words.split(): if not word.isdigit(): count += 1 if count == 3: return True else: count = 0 return False if __name__ == '__main__': print('Example:') print(checkio('Hello World hello')) assert checkio('Hello World hello') == True, 'Hello' assert checkio('He is 123 man') == False, '123 man' assert checkio('1 2 3 4') == False, 'Digits' assert checkio('bla bla bla bla') == True, 'Bla Bla' assert checkio('Hi') == False, 'Hi' print("Coding complete? Click 'Check' to review your tests and earn cool rewards!")
class Solution: # @return a string def convert(self, s, n): if n <= 0: return '' if n == 1 or n >= len(s): return s step = n * 2 - 2 a = step b = step res = '' for i in range(n): res += s[i] j = i while j + a < len(s): j += a res += s[j] if j + b < len(s): j += b res += s[j] else: break a -= 2 if a == 0: a = step if b == step: b = 0 b += 2 return res
class Solution: def convert(self, s, n): if n <= 0: return '' if n == 1 or n >= len(s): return s step = n * 2 - 2 a = step b = step res = '' for i in range(n): res += s[i] j = i while j + a < len(s): j += a res += s[j] if j + b < len(s): j += b res += s[j] else: break a -= 2 if a == 0: a = step if b == step: b = 0 b += 2 return res
DB1 = 'default' DB2 = 'streamdata' DB3 = 'streamtimeseries' # List of apps that should use Redshift # Currently, we don't seem to be able to add another table # so until we figure out, we can only keep one REDSHIFT_APPs = ['streamdata', ] STREAM_TIME_SERIES_APPs = ['streamtimeseries', ]
db1 = 'default' db2 = 'streamdata' db3 = 'streamtimeseries' redshift_ap_ps = ['streamdata'] stream_time_series_ap_ps = ['streamtimeseries']
def color_to_rgb(rgb_or_name): color_name_to_rgb = {"black": [0, 0, 0], "red": [1, 0, 0], "green": [0, 1, 0], "blue": [0, 0, 1], "yellow": [1, 1, 0], "orange": [1, 0.5, 0], "white":[1,1,1]} if isinstance(rgb_or_name, str): return color_name_to_rgb[rgb_or_name] else: return rgb_or_name
def color_to_rgb(rgb_or_name): color_name_to_rgb = {'black': [0, 0, 0], 'red': [1, 0, 0], 'green': [0, 1, 0], 'blue': [0, 0, 1], 'yellow': [1, 1, 0], 'orange': [1, 0.5, 0], 'white': [1, 1, 1]} if isinstance(rgb_or_name, str): return color_name_to_rgb[rgb_or_name] else: return rgb_or_name
# Single-quoted string is preceded and succeeded by newlines. # Translators: This is a helpful comment. _( '3' )
_('3')
S = input() level = len(S) x = 0 y = 0 for i in range(level): if S[i] == '1' or S[i] == '3': x += 2**(level - i - 1) if S[i] == '2' or S[i] == '3': y += 2**(level - i - 1) print(level, x, y)
s = input() level = len(S) x = 0 y = 0 for i in range(level): if S[i] == '1' or S[i] == '3': x += 2 ** (level - i - 1) if S[i] == '2' or S[i] == '3': y += 2 ** (level - i - 1) print(level, x, y)
questions = { 'What year was the MicroBit educational foundation created?': [ '2016', '2014', '2017', 0 ], 'What year was the first computer invented?': [ '1954', '1943', '1961', 1 ], 'What year did Damien George create MicroPython?': [ '2015', '2012', '2014', 2 ], 'What year did the Commodore 64 get released?': [ '1983', '1984', '1982', 2 ], 'Which British mathematician and inventor, known as the \'Father of the Computer\', designed a mechanical ' 'computer called the Analytical Engine which was an early forerunner of the computer we know today?': [ 'Charles Babbage', 'Alan Turing', 'Jon von Neumann', 0 ], 'Which general term refers to all kinds of harmful software, including viruses, worms, trojan horses, and spyware?': [ 'Adware', 'Malware', 'Ransomware', 1 ], 'The \'Caesar Cipher\' is also known as what?': [ 'Rot13', 'Rot7', 'Rot3', 2 ], 'Which device has a \'platen?\'': [ 'Printer', 'Scanner', 'Monitor', 1 ], 'What does ICMP stand for?': [ 'Internet Control Message Protocol', 'Internet Carry Message Ping', 'Internet Control Message Ping', 0 ], 'Who laid out the basic concept of a modern computer as a computing machine that uses algorithms to produce ' 'results? His name is attached to a theoretical machine in many thought experiments.': [ 'Charles Babbage', 'Alan Turing', 'Jon von Neumann', 1 ] }
questions = {'What year was the MicroBit educational foundation created?': ['2016', '2014', '2017', 0], 'What year was the first computer invented?': ['1954', '1943', '1961', 1], 'What year did Damien George create MicroPython?': ['2015', '2012', '2014', 2], 'What year did the Commodore 64 get released?': ['1983', '1984', '1982', 2], "Which British mathematician and inventor, known as the 'Father of the Computer', designed a mechanical computer called the Analytical Engine which was an early forerunner of the computer we know today?": ['Charles Babbage', 'Alan Turing', 'Jon von Neumann', 0], 'Which general term refers to all kinds of harmful software, including viruses, worms, trojan horses, and spyware?': ['Adware', 'Malware', 'Ransomware', 1], "The 'Caesar Cipher' is also known as what?": ['Rot13', 'Rot7', 'Rot3', 2], "Which device has a 'platen?'": ['Printer', 'Scanner', 'Monitor', 1], 'What does ICMP stand for?': ['Internet Control Message Protocol', 'Internet Carry Message Ping', 'Internet Control Message Ping', 0], 'Who laid out the basic concept of a modern computer as a computing machine that uses algorithms to produce results? His name is attached to a theoretical machine in many thought experiments.': ['Charles Babbage', 'Alan Turing', 'Jon von Neumann', 1]}
''' Created on 22.11.2016 @author: rustr ''' MSG_IDENTIFIER = 1 MSG_COMMAND = 2 # [command_id, counter, position, orientation, optional values] MSG_COMMAND_RECEIVED = 3 MSG_COMMAND_EXECUTED = 4 MSG_CURRENT_POSE_CARTESIAN = 5 # [position, orientation] MSG_CURRENT_POSE_JOINT = 6 # [j1j2j3j4j5j6] MSG_CURRENT_DIGITAL_IN = 7 # get a list of xx digital in number, values MSG_CURRENT_ANALOG_IN = 20 # get a list of xx analog in number, values MSG_ANALOG_IN = 8 MSG_ANALOG_OUT = 9 MSG_DIGITAL_IN = 10 MSG_DIGITAL_OUT = 11 MSG_SPEED = 12 # set a global speed var 0 - 1 MSG_INT_LIST = 13 MSG_FLOAT_LIST = 14 MSG_STRING = 15 MSG_QUIT = 16 MSG_INT = 17 MSG_TCP = 18 MSG_POPUP = 19 # attention 20 is set! COMMAND_ID_MOVEL = 1 COMMAND_ID_MOVEJ = 2 COMMAND_ID_MOVEC = 3 COMMAND_ID_MOVEP = 4 COMMAND_ID_DIGITAL_OUT = 5 COMMAND_ID_WAIT = 6 COMMAND_ID_TCP = 7 COMMAND_ID_POPUP = 8 msg_identifier_dict = {'MSG_IDENTIFIER': 1, 'MSG_COMMAND': 2, 'MSG_COMMAND_RECEIVED': 3, 'MSG_COMMAND_EXECUTED': 4, 'MSG_CURRENT_POSE_CARTESIAN': 5, 'MSG_CURRENT_POSE_JOINT': 6, 'MSG_CURRENT_DIGITAL_IN': 7, 'MSG_CURRENT_ANALOG_IN': 20, 'MSG_ANALOG_IN': 8, 'MSG_ANALOG_OUT': 9, 'MSG_DIGITAL_IN': 10, 'MSG_DIGITAL_OUT': 11, 'MSG_SPEED': 12, 'MSG_INT_LIST': 13, 'MSG_FLOAT_LIST': 14, 'MSG_STRING': 15, 'MSG_QUIT': 16, 'MSG_INT': 17, 'MSG_TCP': 18, 'MSG_POPUP': 19 } # different command identifiers are sent after msg_id MSG_COMMAND command_identifier_dict = {'COMMAND_ID_MOVEL': 1, 'COMMAND_ID_MOVEJ': 2, 'COMMAND_ID_MOVEC': 3, 'COMMAND_ID_MOVEP': 4, 'COMMAND_ID_DIGITAL_OUT': 5, 'COMMAND_ID_WAIT': 6, 'COMMAND_ID_TCP': 7, 'COMMAND_ID_POPUP': 8 }
""" Created on 22.11.2016 @author: rustr """ msg_identifier = 1 msg_command = 2 msg_command_received = 3 msg_command_executed = 4 msg_current_pose_cartesian = 5 msg_current_pose_joint = 6 msg_current_digital_in = 7 msg_current_analog_in = 20 msg_analog_in = 8 msg_analog_out = 9 msg_digital_in = 10 msg_digital_out = 11 msg_speed = 12 msg_int_list = 13 msg_float_list = 14 msg_string = 15 msg_quit = 16 msg_int = 17 msg_tcp = 18 msg_popup = 19 command_id_movel = 1 command_id_movej = 2 command_id_movec = 3 command_id_movep = 4 command_id_digital_out = 5 command_id_wait = 6 command_id_tcp = 7 command_id_popup = 8 msg_identifier_dict = {'MSG_IDENTIFIER': 1, 'MSG_COMMAND': 2, 'MSG_COMMAND_RECEIVED': 3, 'MSG_COMMAND_EXECUTED': 4, 'MSG_CURRENT_POSE_CARTESIAN': 5, 'MSG_CURRENT_POSE_JOINT': 6, 'MSG_CURRENT_DIGITAL_IN': 7, 'MSG_CURRENT_ANALOG_IN': 20, 'MSG_ANALOG_IN': 8, 'MSG_ANALOG_OUT': 9, 'MSG_DIGITAL_IN': 10, 'MSG_DIGITAL_OUT': 11, 'MSG_SPEED': 12, 'MSG_INT_LIST': 13, 'MSG_FLOAT_LIST': 14, 'MSG_STRING': 15, 'MSG_QUIT': 16, 'MSG_INT': 17, 'MSG_TCP': 18, 'MSG_POPUP': 19} command_identifier_dict = {'COMMAND_ID_MOVEL': 1, 'COMMAND_ID_MOVEJ': 2, 'COMMAND_ID_MOVEC': 3, 'COMMAND_ID_MOVEP': 4, 'COMMAND_ID_DIGITAL_OUT': 5, 'COMMAND_ID_WAIT': 6, 'COMMAND_ID_TCP': 7, 'COMMAND_ID_POPUP': 8}
#Jacob Hardman #CS301 Algorithms and Data Structures #Dr. Nathaniel Miller #Stack class Stack: def __init__(self): self.items = [] def push(self, item): self.items.append(item) def pop(self): return self.items.pop() def peek(self): return self.items[len(self.items)-1] def isEmpty(self): return self.items == [] def size(self): return len(self.items) #Queue class Queue: def __init__(self): self.items = [] def enqueue(self, item): self.items.insert(0, item) def dequeue(self): return self.items.pop() def isEmpty(self): return self.items == [] def size(self): return len(self.items) #Deque class Deque: def __init__(self): self.items = [] def addFront(self, item): self.items.append(item) def addRear(self, item): self.items.insert(0, item) def removeFront(self): return self.items.pop(0) def removeRear(self): return self.items.pop(0) def isEmpty(self): return self.items == [] def size(self): return len(self.items) #Node class Node: def __init__(self, initData): self.data = initData self.next = None def getData(self): return self.data def getNext(self): return self.next def setData(self, newData): self.data = newData def setNext(self, newNext): self.next = newNext
class Stack: def __init__(self): self.items = [] def push(self, item): self.items.append(item) def pop(self): return self.items.pop() def peek(self): return self.items[len(self.items) - 1] def is_empty(self): return self.items == [] def size(self): return len(self.items) class Queue: def __init__(self): self.items = [] def enqueue(self, item): self.items.insert(0, item) def dequeue(self): return self.items.pop() def is_empty(self): return self.items == [] def size(self): return len(self.items) class Deque: def __init__(self): self.items = [] def add_front(self, item): self.items.append(item) def add_rear(self, item): self.items.insert(0, item) def remove_front(self): return self.items.pop(0) def remove_rear(self): return self.items.pop(0) def is_empty(self): return self.items == [] def size(self): return len(self.items) class Node: def __init__(self, initData): self.data = initData self.next = None def get_data(self): return self.data def get_next(self): return self.next def set_data(self, newData): self.data = newData def set_next(self, newNext): self.next = newNext
def brute(n): cnt = 0 for a in range(1, n + 1): for b in range(a + 1, n + 1): for c in range(b + 1, n + 1): for d in range(c + 1, n + 1): if a * d == b * c: print('%s * %s = %s * %s = %s' % (a, d, b, c, a * d)) cnt += 1 return cnt def c2(n): return n * (n - 1) // 2 def cp(l, r, x): return r // x - l // x def calc(n): cnt = 0 sqn = int(sqrt(n)) print('sqn = ', sqn) for a in range(1, sqn + 1): for c in range(a + 1, sqn + 1): b = lcm(a, c) // a cnt += cp(sqn, n, b) print(a, c, b, cp(sqn, n, b)) return cnt
def brute(n): cnt = 0 for a in range(1, n + 1): for b in range(a + 1, n + 1): for c in range(b + 1, n + 1): for d in range(c + 1, n + 1): if a * d == b * c: print('%s * %s = %s * %s = %s' % (a, d, b, c, a * d)) cnt += 1 return cnt def c2(n): return n * (n - 1) // 2 def cp(l, r, x): return r // x - l // x def calc(n): cnt = 0 sqn = int(sqrt(n)) print('sqn = ', sqn) for a in range(1, sqn + 1): for c in range(a + 1, sqn + 1): b = lcm(a, c) // a cnt += cp(sqn, n, b) print(a, c, b, cp(sqn, n, b)) return cnt
#Prints all the numbers from 1 - 1000 count = 0 while count <= 1000: print(count) count += 1
count = 0 while count <= 1000: print(count) count += 1
# Given two arrays, a and b, calculate how many times the following is true: # i <= j # a[i] - b[j] = a[j] - b[i] # This works on O(n^2) time def checkArraysSlow(a, b): counter = 0 for i in range(len(a)): for j in range(i, len(a)): if a[i] - b[j] == a[j] - b[i]: counter += 1 return counter # This doesn't work and it's as far as I got to on the GCA def checkArraysNR(a, b): counter = 0 dict = {} for i in range(len(a)): dict[a[i] + b[i]] = i for j in range(len(a)): if a[j] + b[j] in dict and dict[a[j] + b[j]] <= j: counter += 1 return counter # This works on O(n) time def checkArrays(a, b): counter = len(a) dict = {} for i in range(len(a)): if a[i] + b[i] in dict: counter += dict[a[i] + b[i]] dict[a[i] + b[i]] += 1 else: dict[a[i] + b[i]] = 1 return counter a = [2,1,5,3,6,3,0,7,-1,9,4,1] b = [-1,1,1,3,9,7,7,0,-1,8,3,0] print(checkArraysSlow(a, b)) print(checkArraysNR(a, b)) print(checkArrays(a, b))
def check_arrays_slow(a, b): counter = 0 for i in range(len(a)): for j in range(i, len(a)): if a[i] - b[j] == a[j] - b[i]: counter += 1 return counter def check_arrays_nr(a, b): counter = 0 dict = {} for i in range(len(a)): dict[a[i] + b[i]] = i for j in range(len(a)): if a[j] + b[j] in dict and dict[a[j] + b[j]] <= j: counter += 1 return counter def check_arrays(a, b): counter = len(a) dict = {} for i in range(len(a)): if a[i] + b[i] in dict: counter += dict[a[i] + b[i]] dict[a[i] + b[i]] += 1 else: dict[a[i] + b[i]] = 1 return counter a = [2, 1, 5, 3, 6, 3, 0, 7, -1, 9, 4, 1] b = [-1, 1, 1, 3, 9, 7, 7, 0, -1, 8, 3, 0] print(check_arrays_slow(a, b)) print(check_arrays_nr(a, b)) print(check_arrays(a, b))
class Solution: # data structure type: stack def decodeString(self, s: str): #Traverse the string stack, currCount, currString = [], 0, "" for c in s: if c == '[': stack.append(currString) stack.append(currCount) currString = "" currCount = 0 elif c == ']': count = stack.pop() prevStr = stack.pop() currString = prevStr + currString * count elif c.isdigit(): currCount = currCount * 10 + int(c) else: # character currString += c return currString
class Solution: def decode_string(self, s: str): (stack, curr_count, curr_string) = ([], 0, '') for c in s: if c == '[': stack.append(currString) stack.append(currCount) curr_string = '' curr_count = 0 elif c == ']': count = stack.pop() prev_str = stack.pop() curr_string = prevStr + currString * count elif c.isdigit(): curr_count = currCount * 10 + int(c) else: curr_string += c return currString
# -*- coding: utf-8 -*- # Copyright 2021 ICONation # # 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. # SCORELib scorelib_bag = [ "scorelib/__init__.py", "scorelib/consts.py", "scorelib/bag.py", ] scorelib_set = [ "scorelib/__init__.py", *scorelib_bag, "scorelib/set.py", ] scorelib_consts = [ "scorelib/__init__.py", "scorelib/consts.py", ] scorelib_utils = [ "scorelib/__init__.py", *scorelib_consts, "scorelib/utils.py", ] scorelib_state = [ "scorelib/__init__.py", *scorelib_utils, "scorelib/state.py", ] scorelib_iterabledict = [ "scorelib/__init__.py", *scorelib_set, "scorelib/consts.py", "scorelib/iterable_dict.py", ] scorelib_id_factory = [ "scorelib/__init__.py", "scorelib/id_factory.py", ] scorelib_linkedlist = [ "scorelib/__init__.py", *scorelib_id_factory, "scorelib/consts.py", "scorelib/linked_list.py", ] scorelib_exception = [ "scorelib/__init__.py", "scorelib/exception.py", ] scorelib_auth = [ "scorelib/__init__.py", "scorelib/auth.py", ] scorelib_version = [ "scorelib/__init__.py", "scorelib/version.py", ] scorelib_maintenance = [ "scorelib/__init__.py", *scorelib_exception, *scorelib_auth, *scorelib_utils, *scorelib_state, "scorelib/maintenance.py", ] scorelib_base = [ "scorelib/__init__.py", *scorelib_exception, *scorelib_maintenance, *scorelib_utils, *scorelib_version, ] # ICONSafe interfaces proxy_score = [ "utility/__init__.py", "utility/proxy_score.py", ] interface_address_registrar = [ "interfaces/__init__.py", *proxy_score, *scorelib_exception, *scorelib_auth, "interfaces/address_registrar.py", ] interface_balance_history_manager = [ "interfaces/__init__.py", *interface_address_registrar, *proxy_score, "interfaces/balance_history_manager.py", ] interface_wallet_owners_manager = [ "interfaces/__init__.py", *interface_address_registrar, *proxy_score, "interfaces/wallet_owners_manager.py", ] interface_event_manager = [ "interfaces/__init__.py", *interface_address_registrar, *proxy_score, "interfaces/event_manager.py", ] interface_transaction_manager = [ "interfaces/__init__.py", *interface_address_registrar, *proxy_score, "interfaces/transaction_manager.py", ] interface_address_book = [ "interfaces/__init__.py", *interface_address_registrar, *proxy_score, "interfaces/address_book.py", ] interface_wallet_settings_manager = [ "interfaces/__init__.py", *interface_address_registrar, *proxy_score, "interfaces/wallet_settings_manager.py", ] interface_iconsafe = [ "interfaces/__init__.py", *interface_address_registrar, *proxy_score, "interfaces/iconsafe.py", ] interface_irc2 = [ "interfaces/__init__.py", "interfaces/irc2.py", ] consts_balance_history_manager = [ "balance_history_manager/__init__.py", "balance_history_manager/consts.py", ] # ICONSafe objects domain = [ "domain/__init__.py", *interface_event_manager, *interface_address_registrar, *interface_address_book, *interface_wallet_owners_manager, *interface_iconsafe, *interface_transaction_manager, *interface_balance_history_manager, *interface_wallet_settings_manager, "domain/domain.py", ] type_converter = [ "type_converter/__init__.py", "type_converter/type_converter.py", ] # transaction_manager transaction = [ *scorelib_state, ] outgoing_transaction = [ *scorelib_set, *scorelib_state, ] incoming_transaction = [ *scorelib_id_factory, *type_converter, ] transaction_factory = [ *scorelib_id_factory, *outgoing_transaction, *incoming_transaction, ] # balance_history balance_history = [ *scorelib_id_factory, ] # wallet_owner wallet_owner = [ ] wallet_owner_factory = [ *scorelib_id_factory, *wallet_owner, ] config = { "address_book": [ *scorelib_base, *scorelib_iterabledict, *scorelib_consts, *interface_address_book, *domain, ], "address_registrar": [ *scorelib_base, *scorelib_set, *scorelib_iterabledict, *scorelib_consts, *interface_address_registrar, ], "balance_history_manager": [ *scorelib_base, *scorelib_set, *scorelib_linkedlist, *interface_balance_history_manager, *interface_transaction_manager, *interface_event_manager, *interface_irc2, *domain, *balance_history, ], "event_manager": [ *scorelib_base, *interface_event_manager, *interface_address_registrar, *interface_wallet_settings_manager, *interface_transaction_manager, *interface_balance_history_manager, *scorelib_linkedlist, *domain, ], "transaction_manager": [ *scorelib_base, *scorelib_linkedlist, *interface_transaction_manager, *interface_balance_history_manager, *interface_wallet_owners_manager, *interface_event_manager, *domain, *consts_balance_history_manager, *transaction, *transaction_factory, ], "wallet_owners_manager": [ *scorelib_base, *scorelib_linkedlist, *interface_wallet_owners_manager, *interface_event_manager, *domain, *wallet_owner, *wallet_owner_factory, ], "wallet_settings_manager": [ *scorelib_base, *interface_wallet_settings_manager, *interface_event_manager, *interface_wallet_owners_manager, *domain, ], "iconsafe": [ *scorelib_base, *interface_iconsafe, *interface_transaction_manager, *interface_balance_history_manager, *interface_wallet_owners_manager, *interface_event_manager, *interface_wallet_settings_manager, *interface_address_book, *interface_irc2, *consts_balance_history_manager, *domain, ] } # Remove duplicates for package_name, deps in config.items(): config[package_name] = list(set(deps))
scorelib_bag = ['scorelib/__init__.py', 'scorelib/consts.py', 'scorelib/bag.py'] scorelib_set = ['scorelib/__init__.py', *scorelib_bag, 'scorelib/set.py'] scorelib_consts = ['scorelib/__init__.py', 'scorelib/consts.py'] scorelib_utils = ['scorelib/__init__.py', *scorelib_consts, 'scorelib/utils.py'] scorelib_state = ['scorelib/__init__.py', *scorelib_utils, 'scorelib/state.py'] scorelib_iterabledict = ['scorelib/__init__.py', *scorelib_set, 'scorelib/consts.py', 'scorelib/iterable_dict.py'] scorelib_id_factory = ['scorelib/__init__.py', 'scorelib/id_factory.py'] scorelib_linkedlist = ['scorelib/__init__.py', *scorelib_id_factory, 'scorelib/consts.py', 'scorelib/linked_list.py'] scorelib_exception = ['scorelib/__init__.py', 'scorelib/exception.py'] scorelib_auth = ['scorelib/__init__.py', 'scorelib/auth.py'] scorelib_version = ['scorelib/__init__.py', 'scorelib/version.py'] scorelib_maintenance = ['scorelib/__init__.py', *scorelib_exception, *scorelib_auth, *scorelib_utils, *scorelib_state, 'scorelib/maintenance.py'] scorelib_base = ['scorelib/__init__.py', *scorelib_exception, *scorelib_maintenance, *scorelib_utils, *scorelib_version] proxy_score = ['utility/__init__.py', 'utility/proxy_score.py'] interface_address_registrar = ['interfaces/__init__.py', *proxy_score, *scorelib_exception, *scorelib_auth, 'interfaces/address_registrar.py'] interface_balance_history_manager = ['interfaces/__init__.py', *interface_address_registrar, *proxy_score, 'interfaces/balance_history_manager.py'] interface_wallet_owners_manager = ['interfaces/__init__.py', *interface_address_registrar, *proxy_score, 'interfaces/wallet_owners_manager.py'] interface_event_manager = ['interfaces/__init__.py', *interface_address_registrar, *proxy_score, 'interfaces/event_manager.py'] interface_transaction_manager = ['interfaces/__init__.py', *interface_address_registrar, *proxy_score, 'interfaces/transaction_manager.py'] interface_address_book = ['interfaces/__init__.py', *interface_address_registrar, *proxy_score, 'interfaces/address_book.py'] interface_wallet_settings_manager = ['interfaces/__init__.py', *interface_address_registrar, *proxy_score, 'interfaces/wallet_settings_manager.py'] interface_iconsafe = ['interfaces/__init__.py', *interface_address_registrar, *proxy_score, 'interfaces/iconsafe.py'] interface_irc2 = ['interfaces/__init__.py', 'interfaces/irc2.py'] consts_balance_history_manager = ['balance_history_manager/__init__.py', 'balance_history_manager/consts.py'] domain = ['domain/__init__.py', *interface_event_manager, *interface_address_registrar, *interface_address_book, *interface_wallet_owners_manager, *interface_iconsafe, *interface_transaction_manager, *interface_balance_history_manager, *interface_wallet_settings_manager, 'domain/domain.py'] type_converter = ['type_converter/__init__.py', 'type_converter/type_converter.py'] transaction = [*scorelib_state] outgoing_transaction = [*scorelib_set, *scorelib_state] incoming_transaction = [*scorelib_id_factory, *type_converter] transaction_factory = [*scorelib_id_factory, *outgoing_transaction, *incoming_transaction] balance_history = [*scorelib_id_factory] wallet_owner = [] wallet_owner_factory = [*scorelib_id_factory, *wallet_owner] config = {'address_book': [*scorelib_base, *scorelib_iterabledict, *scorelib_consts, *interface_address_book, *domain], 'address_registrar': [*scorelib_base, *scorelib_set, *scorelib_iterabledict, *scorelib_consts, *interface_address_registrar], 'balance_history_manager': [*scorelib_base, *scorelib_set, *scorelib_linkedlist, *interface_balance_history_manager, *interface_transaction_manager, *interface_event_manager, *interface_irc2, *domain, *balance_history], 'event_manager': [*scorelib_base, *interface_event_manager, *interface_address_registrar, *interface_wallet_settings_manager, *interface_transaction_manager, *interface_balance_history_manager, *scorelib_linkedlist, *domain], 'transaction_manager': [*scorelib_base, *scorelib_linkedlist, *interface_transaction_manager, *interface_balance_history_manager, *interface_wallet_owners_manager, *interface_event_manager, *domain, *consts_balance_history_manager, *transaction, *transaction_factory], 'wallet_owners_manager': [*scorelib_base, *scorelib_linkedlist, *interface_wallet_owners_manager, *interface_event_manager, *domain, *wallet_owner, *wallet_owner_factory], 'wallet_settings_manager': [*scorelib_base, *interface_wallet_settings_manager, *interface_event_manager, *interface_wallet_owners_manager, *domain], 'iconsafe': [*scorelib_base, *interface_iconsafe, *interface_transaction_manager, *interface_balance_history_manager, *interface_wallet_owners_manager, *interface_event_manager, *interface_wallet_settings_manager, *interface_address_book, *interface_irc2, *consts_balance_history_manager, *domain]} for (package_name, deps) in config.items(): config[package_name] = list(set(deps))
f = open("log/hbase_total.log") lines = f.readlines() indices = [index for index, l in enumerate(lines) if '======== tag_old: ' in l] i = indices[0] optional_required = [] rest = [] add_req = [] for j in indices[1:]: cs = lines[i+1:j] for c in cs: t = lines[i] t = t[:t.index('#change')] tags = t.replace("=",'').strip() t1 = tags.split("vs")[0][8:].strip() t2 = tags.split("vs")[1][9:].strip() if 'Changed Field' in c: msg = c[c.index('Message'):].strip() if 'optional' in c and 'required' in c: optional_required.append([t1,t2,msg]) else: rest.append([t1,t2,msg]) if 'Added Field' in c and 'required' in c: add_req.append([t1, t2, c[c.index('Message'):].strip()]) i = j for con in [optional_required, rest, add_req]: print("------------------------") for t1,t2,msg in con: print("{} | {} | {}".format(t1, t2, msg))
f = open('log/hbase_total.log') lines = f.readlines() indices = [index for (index, l) in enumerate(lines) if '======== tag_old: ' in l] i = indices[0] optional_required = [] rest = [] add_req = [] for j in indices[1:]: cs = lines[i + 1:j] for c in cs: t = lines[i] t = t[:t.index('#change')] tags = t.replace('=', '').strip() t1 = tags.split('vs')[0][8:].strip() t2 = tags.split('vs')[1][9:].strip() if 'Changed Field' in c: msg = c[c.index('Message'):].strip() if 'optional' in c and 'required' in c: optional_required.append([t1, t2, msg]) else: rest.append([t1, t2, msg]) if 'Added Field' in c and 'required' in c: add_req.append([t1, t2, c[c.index('Message'):].strip()]) i = j for con in [optional_required, rest, add_req]: print('------------------------') for (t1, t2, msg) in con: print('{} | {} | {}'.format(t1, t2, msg))
{ "comment": "Create a twitter app here https://apps.twitter.com/ then and copy the key info below", "consumer_key": "(your key goes here)", "consumer_secret": "(your secret key goes here)", "access_token": "(your key goes here)", "access_token_secret": "(your secret key goes here)" }
{'comment': 'Create a twitter app here https://apps.twitter.com/ then and copy the key info below', 'consumer_key': '(your key goes here)', 'consumer_secret': '(your secret key goes here)', 'access_token': '(your key goes here)', 'access_token_secret': '(your secret key goes here)'}
while True: n = int(input('\033[1;97mQuer ver a tabuada de qual valor? ')) if n < 0: break print('=' * 19) for c in range(1, 11): if c == 10: print('|\033[91m{:>4} \033[97mx \033[91m{} \033[97m= \033[91m{:<5}\033[97m|'.format(n, c, n * c)) break print('|\033[91m{:>4} \033[97mx \033[91m{} \033[97m= \033[91m{:<6}\033[97m|'.format(n, c, n * c)) print('=' * 19 + '\n') print('{:-^30}'.format('TABUADA FINALIZADA'))
while True: n = int(input('\x1b[1;97mQuer ver a tabuada de qual valor? ')) if n < 0: break print('=' * 19) for c in range(1, 11): if c == 10: print('|\x1b[91m{:>4} \x1b[97mx \x1b[91m{} \x1b[97m= \x1b[91m{:<5}\x1b[97m|'.format(n, c, n * c)) break print('|\x1b[91m{:>4} \x1b[97mx \x1b[91m{} \x1b[97m= \x1b[91m{:<6}\x1b[97m|'.format(n, c, n * c)) print('=' * 19 + '\n') print('{:-^30}'.format('TABUADA FINALIZADA'))
# The mapping here uses hhblits convention, so that B is mapped to D, J and O # are mapped to X, U is mapped to C, and Z is mapped to E. Other than that the # remaining 20 amino acids are kept in alphabetical order. # There are 2 non-amino acid codes, X (representing any amino acid) and # "-" representing a missing amino acid in an alignment. The id for these # codes is put at the end (20 and 21) so that they can easily be ignored if # desired. HHBLITS_AA_TO_ID = { 'A': 0, 'B': 2, 'C': 1, 'D': 2, 'E': 3, 'F': 4, 'G': 5, 'H': 6, 'I': 7, 'J': 20, 'K': 8, 'L': 9, 'M': 10, 'N': 11, 'O': 20, 'P': 12, 'Q': 13, 'R': 14, 'S': 15, 'T': 16, 'U': 1, 'V': 17, 'W': 18, 'X': 20, 'Y': 19, 'Z': 3, '-': 21, } # Partial inversion of HHBLITS_AA_TO_ID. ID_TO_HHBLITS_AA = { 0: 'A', 1: 'C', # Also U. 2: 'D', # Also B. 3: 'E', # Also Z. 4: 'F', 5: 'G', 6: 'H', 7: 'I', 8: 'K', 9: 'L', 10: 'M', 11: 'N', 12: 'P', 13: 'Q', 14: 'R', 15: 'S', 16: 'T', 17: 'V', 18: 'W', 19: 'Y', 20: 'X', # Includes J and O. 21: '-', }
hhblits_aa_to_id = {'A': 0, 'B': 2, 'C': 1, 'D': 2, 'E': 3, 'F': 4, 'G': 5, 'H': 6, 'I': 7, 'J': 20, 'K': 8, 'L': 9, 'M': 10, 'N': 11, 'O': 20, 'P': 12, 'Q': 13, 'R': 14, 'S': 15, 'T': 16, 'U': 1, 'V': 17, 'W': 18, 'X': 20, 'Y': 19, 'Z': 3, '-': 21} id_to_hhblits_aa = {0: 'A', 1: 'C', 2: 'D', 3: 'E', 4: 'F', 5: 'G', 6: 'H', 7: 'I', 8: 'K', 9: 'L', 10: 'M', 11: 'N', 12: 'P', 13: 'Q', 14: 'R', 15: 'S', 16: 'T', 17: 'V', 18: 'W', 19: 'Y', 20: 'X', 21: '-'}
class Queen: def __init__(self, row, column): if row < 0: raise ValueError("row not positive") if not 0 <= row <= 7: raise ValueError("row not on board") if column < 0: raise ValueError("column not positive") if not 0 <= column <= 7: raise ValueError("column not on board") self.row = row self.column = column def can_attack(self, another_queen): dx = abs(self.row - another_queen.row) dy = abs(self.column - another_queen.column) if dx == dy == 0: raise ValueError('Invalid queen position: both queens in the same square') elif dx == dy or dx == 0 or dy == 0: return True else: return False
class Queen: def __init__(self, row, column): if row < 0: raise value_error('row not positive') if not 0 <= row <= 7: raise value_error('row not on board') if column < 0: raise value_error('column not positive') if not 0 <= column <= 7: raise value_error('column not on board') self.row = row self.column = column def can_attack(self, another_queen): dx = abs(self.row - another_queen.row) dy = abs(self.column - another_queen.column) if dx == dy == 0: raise value_error('Invalid queen position: both queens in the same square') elif dx == dy or dx == 0 or dy == 0: return True else: return False
class BaseClassAnnotated: def __init__(self, name: str): self.name = name class DerivedClass(BaseClassAnnotated): def __init__(self, name: str): super().__init__(name) self.param = None def get_param(self): return self.param
class Baseclassannotated: def __init__(self, name: str): self.name = name class Derivedclass(BaseClassAnnotated): def __init__(self, name: str): super().__init__(name) self.param = None def get_param(self): return self.param
name = "Baidu" url = "http://m.baidu.com/" clip = "baidu" ua = None if not self.isCheckable(): self.setCheckable(True) self.setChecked(True) if not self.parentWindow().hasSideBar(name): self.parentWindow().addSideBar(name, url, clip, ua) else: self.parentWindow().toggleSideBar(name)
name = 'Baidu' url = 'http://m.baidu.com/' clip = 'baidu' ua = None if not self.isCheckable(): self.setCheckable(True) self.setChecked(True) if not self.parentWindow().hasSideBar(name): self.parentWindow().addSideBar(name, url, clip, ua) else: self.parentWindow().toggleSideBar(name)
class Solution: def findShortestWay(self, maze, ball, hole): m, n, q, stopped = len(maze), len(maze[0]), [(0, "", ball[0], ball[1])], {(ball[0], ball[1]): [0, ""]} while q: dist, pattern, x, y = heapq.heappop(q) if [x, y] == hole: return pattern for i, j, p in ((-1, 0, "u"), (1, 0, "d"), (0, -1, "l"), (0, 1, "r")): newX, newY, d = x, y, 0 while 0 <= newX + i < m and 0 <= newY + j < n and maze[newX + i][newY + j] != 1: newX += i newY += j d += 1 if [newX, newY] == hole: break if (newX, newY) not in stopped or [dist + d, pattern + p] < stopped[(newX, newY)]: stopped[(newX, newY)] = [dist + d, pattern + p] heapq.heappush(q, (dist + d, pattern + p, newX, newY)) return "impossible"
class Solution: def find_shortest_way(self, maze, ball, hole): (m, n, q, stopped) = (len(maze), len(maze[0]), [(0, '', ball[0], ball[1])], {(ball[0], ball[1]): [0, '']}) while q: (dist, pattern, x, y) = heapq.heappop(q) if [x, y] == hole: return pattern for (i, j, p) in ((-1, 0, 'u'), (1, 0, 'd'), (0, -1, 'l'), (0, 1, 'r')): (new_x, new_y, d) = (x, y, 0) while 0 <= newX + i < m and 0 <= newY + j < n and (maze[newX + i][newY + j] != 1): new_x += i new_y += j d += 1 if [newX, newY] == hole: break if (newX, newY) not in stopped or [dist + d, pattern + p] < stopped[newX, newY]: stopped[newX, newY] = [dist + d, pattern + p] heapq.heappush(q, (dist + d, pattern + p, newX, newY)) return 'impossible'
#!/usr/bin/env python # Copyright 2017 The Forseti Security Authors. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the 'License'); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an 'AS IS' BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. '''Test instance group managers data.''' FAKE_API_RESPONSE1 = [ { "kind": "compute#instanceGroup", "id": "1532459550555580553", "creationTimestamp": "2017-05-26T13:56:06.149-07:00", "name": "iap-ig", "description": "This instance group is controlled by Instance Group Manager 'iap-ig'. To modify instances in this group, use the Instance Group Manager API: https://cloud.google.com/compute/docs/reference/latest/instanceGroupManagers", "namedPorts": [ { "name": "http", "port": 80 } ], "instance_urls": "[]", "network": "https://www.googleapis.com/compute/v1/projects/project1/global/networks/default", "fingerprint": "l9ccw0jwP90=", "zone": "https://www.googleapis.com/compute/v1/projects/project1/zones/us-central1-c", "selfLink": "https://www.googleapis.com/compute/v1/projects/project1/zones/us-central1-c/instanceGroups/iap-ig", "size": 1, "subnetwork": "https://www.googleapis.com/compute/v1/projects/project1/regions/us-central1/subnetworks/default" } ] FAKE_API_RESPONSE2 = [] FAKE_PROJECT_INSTANCE_GROUPS_MAP = { 'project1': [{ 'creationTimestamp': '2017-05-26T13:56:06.149-07:00', 'description': ("This instance group is controlled by Instance Group " "Manager 'iap-ig'. To modify instances in this group, " "use the Instance Group Manager API: " "https://cloud.google.com/compute/docs/reference/latest/instanceGroupManagers"), 'fingerprint': 'l9ccw0jwP90=', 'id': '1532459550555580553', 'instance_urls': '[]', 'kind': 'compute#instanceGroup', 'name': 'iap-ig', 'namedPorts': [{'name': 'http', 'port': 80}], 'network': 'https://www.googleapis.com/compute/v1/projects/project1/global/networks/default', 'selfLink': 'https://www.googleapis.com/compute/v1/projects/project1/zones/us-central1-c/instanceGroups/iap-ig', 'size': 1, 'subnetwork': 'https://www.googleapis.com/compute/v1/projects/project1/regions/us-central1/subnetworks/default', 'zone': 'https://www.googleapis.com/compute/v1/projects/project1/zones/us-central1-c', }], } EXPECTED_LOADABLE_INSTANCE_GROUPS = [ {'creation_timestamp': '2017-05-26 13:56:06', 'description': "This instance group is controlled by Instance Group Manager 'iap-ig'. To modify instances in this group, use the Instance Group Manager API: https://cloud.google.com/compute/docs/reference/latest/instanceGroupManagers", 'id': '1532459550555580553', 'instance_urls': '"[]"', 'name': 'iap-ig', 'named_ports': '[{"name": "http", "port": 80}]', 'network': 'https://www.googleapis.com/compute/v1/projects/project1/global/networks/default', 'project_id': 'project1', 'region': None, 'size': 1, 'subnetwork': 'https://www.googleapis.com/compute/v1/projects/project1/regions/us-central1/subnetworks/default', 'zone': 'https://www.googleapis.com/compute/v1/projects/project1/zones/us-central1-c', 'raw_instance_group': '{"description": "This instance group is controlled by Instance Group Manager \'iap-ig\'. To modify instances in this group, use the Instance Group Manager API: https://cloud.google.com/compute/docs/reference/latest/instanceGroupManagers", "fingerprint": "l9ccw0jwP90=", "instance_urls": "[]", "creationTimestamp": "2017-05-26T13:56:06.149-07:00", "id": "1532459550555580553", "size": 1, "kind": "compute#instanceGroup", "network": "https://www.googleapis.com/compute/v1/projects/project1/global/networks/default", "zone": "https://www.googleapis.com/compute/v1/projects/project1/zones/us-central1-c", "name": "iap-ig", "subnetwork": "https://www.googleapis.com/compute/v1/projects/project1/regions/us-central1/subnetworks/default", "selfLink": "https://www.googleapis.com/compute/v1/projects/project1/zones/us-central1-c/instanceGroups/iap-ig", "namedPorts": [{"name": "http", "port": 80}]}', } ]
"""Test instance group managers data.""" fake_api_response1 = [{'kind': 'compute#instanceGroup', 'id': '1532459550555580553', 'creationTimestamp': '2017-05-26T13:56:06.149-07:00', 'name': 'iap-ig', 'description': "This instance group is controlled by Instance Group Manager 'iap-ig'. To modify instances in this group, use the Instance Group Manager API: https://cloud.google.com/compute/docs/reference/latest/instanceGroupManagers", 'namedPorts': [{'name': 'http', 'port': 80}], 'instance_urls': '[]', 'network': 'https://www.googleapis.com/compute/v1/projects/project1/global/networks/default', 'fingerprint': 'l9ccw0jwP90=', 'zone': 'https://www.googleapis.com/compute/v1/projects/project1/zones/us-central1-c', 'selfLink': 'https://www.googleapis.com/compute/v1/projects/project1/zones/us-central1-c/instanceGroups/iap-ig', 'size': 1, 'subnetwork': 'https://www.googleapis.com/compute/v1/projects/project1/regions/us-central1/subnetworks/default'}] fake_api_response2 = [] fake_project_instance_groups_map = {'project1': [{'creationTimestamp': '2017-05-26T13:56:06.149-07:00', 'description': "This instance group is controlled by Instance Group Manager 'iap-ig'. To modify instances in this group, use the Instance Group Manager API: https://cloud.google.com/compute/docs/reference/latest/instanceGroupManagers", 'fingerprint': 'l9ccw0jwP90=', 'id': '1532459550555580553', 'instance_urls': '[]', 'kind': 'compute#instanceGroup', 'name': 'iap-ig', 'namedPorts': [{'name': 'http', 'port': 80}], 'network': 'https://www.googleapis.com/compute/v1/projects/project1/global/networks/default', 'selfLink': 'https://www.googleapis.com/compute/v1/projects/project1/zones/us-central1-c/instanceGroups/iap-ig', 'size': 1, 'subnetwork': 'https://www.googleapis.com/compute/v1/projects/project1/regions/us-central1/subnetworks/default', 'zone': 'https://www.googleapis.com/compute/v1/projects/project1/zones/us-central1-c'}]} expected_loadable_instance_groups = [{'creation_timestamp': '2017-05-26 13:56:06', 'description': "This instance group is controlled by Instance Group Manager 'iap-ig'. To modify instances in this group, use the Instance Group Manager API: https://cloud.google.com/compute/docs/reference/latest/instanceGroupManagers", 'id': '1532459550555580553', 'instance_urls': '"[]"', 'name': 'iap-ig', 'named_ports': '[{"name": "http", "port": 80}]', 'network': 'https://www.googleapis.com/compute/v1/projects/project1/global/networks/default', 'project_id': 'project1', 'region': None, 'size': 1, 'subnetwork': 'https://www.googleapis.com/compute/v1/projects/project1/regions/us-central1/subnetworks/default', 'zone': 'https://www.googleapis.com/compute/v1/projects/project1/zones/us-central1-c', 'raw_instance_group': '{"description": "This instance group is controlled by Instance Group Manager \'iap-ig\'. To modify instances in this group, use the Instance Group Manager API: https://cloud.google.com/compute/docs/reference/latest/instanceGroupManagers", "fingerprint": "l9ccw0jwP90=", "instance_urls": "[]", "creationTimestamp": "2017-05-26T13:56:06.149-07:00", "id": "1532459550555580553", "size": 1, "kind": "compute#instanceGroup", "network": "https://www.googleapis.com/compute/v1/projects/project1/global/networks/default", "zone": "https://www.googleapis.com/compute/v1/projects/project1/zones/us-central1-c", "name": "iap-ig", "subnetwork": "https://www.googleapis.com/compute/v1/projects/project1/regions/us-central1/subnetworks/default", "selfLink": "https://www.googleapis.com/compute/v1/projects/project1/zones/us-central1-c/instanceGroups/iap-ig", "namedPorts": [{"name": "http", "port": 80}]}'}]
class HashTable: def __init__(self, len = 4): self._array = [] for i in range(len): self._array.append([]) def hash(self, key): ''' Use python hash function and len to get the index :param key: object :return: number ''' ln = len(self._array) return hash(key) % ln def add(self, key, value): ''' Add a key, value pair to the hash table :param key: object :param value: object :return: index ''' index = self.hash(key) if [key, value] in self._array[index]: return self.get_pos(key) self._array[index].append([key, value]) return self.get_pos(key) def get(self, key): ''' Get the value of a key :param key: object :return: object :throw: KeyError ''' index = self.hash(key) if len(self._array[index]) == 0: raise KeyError("1") else: for pair in self._array[index]: if pair[0] == key: return pair[1] raise KeyError("2") def get_pos(self, key): index = self.hash(key) if len(self._array[index]) == 0: raise KeyError("1") else: pos = 0 while pos < len(self._array[index]): if self._array[index][pos][0] == key: return pos pos += 1 raise KeyError("2") def remove(self, key, value): index = self.hash(key) if len(self._array[index]) == 0: return None else: for pair in self._array[index]: if pair[0] == key: self._array[index] = list(filter(lambda each: each[1] != value, self._array[index])) return pair[1] return None def __str__(self): q = '' for i in self._array: q += str(i) + "\n" return q def __iter__(self): return iter(self._array) def test(): ht = HashTable() a = "abc" b = "bac" print(ht.add(a, 12)) print(ht.add(b, 32)) print(ht.add("5", 44)) # print(ht.get("abc"), " expects 12") # print(ht.get(a), " expects 12") # # print(ht.get("bac"), " expects 32") # print(ht.get(b), " expects 32") # # print(ht.get("5"), " expects 44") # print(ht.get_pos("5"), " expects 44") print(ht) # test()
class Hashtable: def __init__(self, len=4): self._array = [] for i in range(len): self._array.append([]) def hash(self, key): """ Use python hash function and len to get the index :param key: object :return: number """ ln = len(self._array) return hash(key) % ln def add(self, key, value): """ Add a key, value pair to the hash table :param key: object :param value: object :return: index """ index = self.hash(key) if [key, value] in self._array[index]: return self.get_pos(key) self._array[index].append([key, value]) return self.get_pos(key) def get(self, key): """ Get the value of a key :param key: object :return: object :throw: KeyError """ index = self.hash(key) if len(self._array[index]) == 0: raise key_error('1') else: for pair in self._array[index]: if pair[0] == key: return pair[1] raise key_error('2') def get_pos(self, key): index = self.hash(key) if len(self._array[index]) == 0: raise key_error('1') else: pos = 0 while pos < len(self._array[index]): if self._array[index][pos][0] == key: return pos pos += 1 raise key_error('2') def remove(self, key, value): index = self.hash(key) if len(self._array[index]) == 0: return None else: for pair in self._array[index]: if pair[0] == key: self._array[index] = list(filter(lambda each: each[1] != value, self._array[index])) return pair[1] return None def __str__(self): q = '' for i in self._array: q += str(i) + '\n' return q def __iter__(self): return iter(self._array) def test(): ht = hash_table() a = 'abc' b = 'bac' print(ht.add(a, 12)) print(ht.add(b, 32)) print(ht.add('5', 44)) print(ht)
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") load("@bazel_tools//tools/build_defs/repo:utils.bzl", "maybe") def okapi_deps(): maybe( http_archive, "bazel_skylib", urls = [ "https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.0.2/bazel-skylib-1.0.2.tar.gz", "https://github.com/bazelbuild/bazel-skylib/releases/download/1.0.2/bazel-skylib-1.0.2.tar.gz", ], sha256 = "97e70364e9249702246c0e9444bccdc4b847bed1eb03c5a3ece4f83dfe6abc44", ) maybe( http_archive, name = "obazl_rules_ocaml", strip_prefix = "rules_ocaml-ad4c5562fb4a3cade5764129d61d4e2f6fdf77ac", url = "https://github.com/tek/rules_ocaml/archive/ad4c5562fb4a3cade5764129d61d4e2f6fdf77ac.tar.gz", sha256 = "5df21041e154d3f1e6914779862cf1843d6e7364fdcb72306441a22ced3147b8", ) maybe( http_archive, name = "io_tweag_rules_nixpkgs", sha256 = "8204bb4db303cc29261548f6cad802f63cddc053f8a747401561e0c36dcd49a8", strip_prefix = "rules_nixpkgs-1d29b771db75b8d18f5f5baa8f99be16325b897e", urls = ["https://github.com/tweag/rules_nixpkgs/archive/1d29b771db75b8d18f5f5baa8f99be16325b897e.tar.gz"], ) maybe( http_archive, name = "io_bazel_rules_go", sha256 = "69de5c704a05ff37862f7e0f5534d4f479418afc21806c887db544a316f3cb6b", urls = [ "https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.27.0/rules_go-v0.27.0.tar.gz", "https://github.com/bazelbuild/rules_go/releases/download/v0.27.0/rules_go-v0.27.0.tar.gz", ], ) maybe( http_archive, name = "bazel_gazelle", sha256 = "62ca106be173579c0a167deb23358fdfe71ffa1e4cfdddf5582af26520f1c66f", urls = [ "https://mirror.bazel.build/github.com/bazelbuild/bazel-gazelle/releases/download/v0.23.0/bazel-gazelle-v0.23.0.tar.gz", "https://github.com/bazelbuild/bazel-gazelle/releases/download/v0.23.0/bazel-gazelle-v0.23.0.tar.gz", ], )
load('@bazel_tools//tools/build_defs/repo:http.bzl', 'http_archive') load('@bazel_tools//tools/build_defs/repo:utils.bzl', 'maybe') def okapi_deps(): maybe(http_archive, 'bazel_skylib', urls=['https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.0.2/bazel-skylib-1.0.2.tar.gz', 'https://github.com/bazelbuild/bazel-skylib/releases/download/1.0.2/bazel-skylib-1.0.2.tar.gz'], sha256='97e70364e9249702246c0e9444bccdc4b847bed1eb03c5a3ece4f83dfe6abc44') maybe(http_archive, name='obazl_rules_ocaml', strip_prefix='rules_ocaml-ad4c5562fb4a3cade5764129d61d4e2f6fdf77ac', url='https://github.com/tek/rules_ocaml/archive/ad4c5562fb4a3cade5764129d61d4e2f6fdf77ac.tar.gz', sha256='5df21041e154d3f1e6914779862cf1843d6e7364fdcb72306441a22ced3147b8') maybe(http_archive, name='io_tweag_rules_nixpkgs', sha256='8204bb4db303cc29261548f6cad802f63cddc053f8a747401561e0c36dcd49a8', strip_prefix='rules_nixpkgs-1d29b771db75b8d18f5f5baa8f99be16325b897e', urls=['https://github.com/tweag/rules_nixpkgs/archive/1d29b771db75b8d18f5f5baa8f99be16325b897e.tar.gz']) maybe(http_archive, name='io_bazel_rules_go', sha256='69de5c704a05ff37862f7e0f5534d4f479418afc21806c887db544a316f3cb6b', urls=['https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.27.0/rules_go-v0.27.0.tar.gz', 'https://github.com/bazelbuild/rules_go/releases/download/v0.27.0/rules_go-v0.27.0.tar.gz']) maybe(http_archive, name='bazel_gazelle', sha256='62ca106be173579c0a167deb23358fdfe71ffa1e4cfdddf5582af26520f1c66f', urls=['https://mirror.bazel.build/github.com/bazelbuild/bazel-gazelle/releases/download/v0.23.0/bazel-gazelle-v0.23.0.tar.gz', 'https://github.com/bazelbuild/bazel-gazelle/releases/download/v0.23.0/bazel-gazelle-v0.23.0.tar.gz'])
def main(): data = ("Robin", 10, "chocolates") format_string = "Hello %s. You are currently left with %d %s." print(format_string %data) return 0 if __name__ == '__main__': main()
def main(): data = ('Robin', 10, 'chocolates') format_string = 'Hello %s. You are currently left with %d %s.' print(format_string % data) return 0 if __name__ == '__main__': main()
x = int(input()) y = int(input()) if x > y: a = y b = x if x <= y: a = x b = y a=a+1 while a < b: if a % 5 == 2 or a % 5 == 3: print(a) a = a + 1
x = int(input()) y = int(input()) if x > y: a = y b = x if x <= y: a = x b = y a = a + 1 while a < b: if a % 5 == 2 or a % 5 == 3: print(a) a = a + 1
# flake8: noqa led_grey = b'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' led_red_on = b'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' led_yellow_on = b'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' rotary_scale = b'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' led_green = b'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' led_red = b'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' rotary_gauge_volt = b'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' led_yellow = b'iVBORw0KGgoAAAANSUhEUgAAAMgAAADICAYAAACtWK6eAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4QkZDyUtl73TTAAAAB1pVFh0Q29tbWVudAAAAAAAQ3JlYXRlZCB3aXRoIEdJTVBkLmUHAAAgAElEQVR42u2dy48c15Xmv3tvPPJRT1IUKZqWKJIyOZYMtMyZRrvHaMCAge6ejVdeGPBafxSB3vXOq9lrYMOD7l40OEYDMmzJokRLMmWyRLGqyKx8Rdwzi3jdG3EjMiIzIjOyKgJIFVUVmZVVdX7xne+cc28A3dEd3dEd3dEd3dEd3dEd3dEd3dEd3dEd3dEd3dEd3bHFB+t+Bes5PvjgA6fG3zc9ePBg1v1WO0DOCwR7AG4DcGv6VlMAjwCcdvB0gGwLDIsg+DmAGzV9+68A/KoCPB00HSBrBSIPBg0CiemOJ6YHvpjuSz7fH06uX6njvbxynxwJaZ8I6Z5YvnvM4b5aAE8amg6YDpBaoTABEcNA8Ny5NbrqifHVwfTa9aLXnM8fL+E4kn/azs3CU0fOX5/Yfv+p5Q+fcljTHGhUYDpYOkBqgSIGwmeTvbn98s3e7Mpt02t4ORAQAJIjePPPtE9SST5s+xY4H+aelwfP2D565Mx3vxDonRqA6WDpAFkNCiLJ587J28788L0MDN6fM5FONMJchUCJcoIPkqcgmoXnLoAj/DpjDjjfA5gwnuM4ZnhM0EysFx+58/3PGeOyg6UDZBEY+0Yo4Fsz9/h77vTyO+pzfP/P2iWf5Aie91kY/BEFEr48BWgWk6GDIDMAFMGRHNx4Th48KjQUf+5mSl2++VNvdvgJY8LLgeXkIoPCOjDgqunTzDm+7cwONKWQ/hexDBCN4HmPY8UgeJD+SwCzMKAjIKQmH0YQFqRXi9RFP0eHR4MmPMd2dZVJwzKxXnzU8w4fpdKwCw0K68DADcmne1y6P9ED78s4+ojOIP3PQUQgkkGKhBko/rqvBKtJMcyAVFOPZc7husqIPTCIUrD4mPw69CwXGhR2kcHwnJdvWrPd95Mzv4ojj+gMJB8Hxpq80DfMg6/BD4KTKPx6GowsEGSI5lUAKQNQ9jyeqEsaFqbA4iawTMXJ71x//4uLCgq7kGD0j+9Z44O7cdiwvwThTWdg+AKSCCAPRC9BNANJApEPAoUqAkU90h+hpF/LAVKPeiw6J4GFiT0wEiEcibKooIyt5x/3vct/vGigsIsEhj84flecHdyJzrPE12HgjsHZl5DkAfQKkqYBCNIPUioFiugRBX0ajCQodRVRVWaR/2hGPYrOyypLPihHn/a9K7+/KKCwcwjHlYzHGJze5Wd79+IUwn4KIgJjYwj+lxCMl5ByBsCHlBIkCTKGg0IVoVBFYAClGiDLqkf9cGSVpQwoE+v5H3ve5Y/ToDx48OCoA6T9qvFLADeod3aDTQb3o3N67lEIxgSO/TWk9AD2EiSnIBmAIYmCjzIy5ASpKIemIoQYGCALiZpWqeA0DUhpOFKitgwoU3H60PX3vgpB+dfzpibiHKnGuwDeAPALCO8uiP8v5tnXAWAw+BaWdQZLTDEYfA3LOoXgI3B+BgZ/cRBB9xUMrOSlhdV6TSoFB+qAI/qiB5JjSDmHlCN43hGE2IGUZ/D9YwjrABa51wHc8zE75RDfAXAE4PX79+9PHz58eNYpSMtUgx2+vE8vdm8AwO7uCYgIQkwx6H8DknMwNgLRDFJ6kL4PX0r4fqge2iNQEP1j+hGpRJ5xz1OM6mXf2tWjssoEiiJE0FtxDYoysp9+NZxffXie1ERsMRyaavD+/IfkiZ9i4u4BwP7+S9jWHJcOnsN1RrCdMSwxBed+ErSpSEkCmmmXYy2YFHPN9P+AMf26w1h9KrJZOBJFkXIMoqyiCOsAjtzZA3Bvzl75As6V86AmbAvByKiGeP3l//Sf7b4GAJcvnUESwbbmODx4ASHGIMwgfQ++78HzfPi+/pCKivh+oiKkeBIiSnyJQUWaLPuWUpeS+VXZ8xZ/z0RRnN47sZq4oZq8dJ98szu9/m/briZiy+DQVEP0/B+Qx/+RRu4AAK68NoHr+rh69RWGgwlcdw7L8lJpjamJZ6g0Uerykfqa+hK6UjDDtcfkWVhp81Dqil/JfNRxWuhRyA/UZH4EwQM1sawDuP7uAMA9j40nHPa1bVUTsWVwRKrxj85r07/3Tu33AeDa1TmGQx89V+KNq2P0ex5cdw5hSR2OsPMdf8x4AsqvLpUMVrakJtMKv5tmU6tF53qQfpJ2CbEbm3jLOgCH/daZfXTZlsPbAG4C+GqbIBFbCMcNAD/zz6xLAHD9ukS/T3jzzTn29uYY9CUcRwaBSnoOTTkGOu1BFgcSGRp9TPMgkaqkfUnVDLdUalU3gJVBSqmJp6uJLYeXANwD8PW2QSJaDoZz//79SxEctkvvSp/9EwB897sMe7vAYEB4602JnR2Jfl9CWAkX8YP0P7oZEkqlW/keoTho12zr6vYdK70Z3cSn1QTAPR/jMw77jQiS+/fvew8fPvQ7QFb0G70D/8ezEf87AHjrTY7hkOGddxgOD4GdIcF1AVaQ38TqQUWQ5H2NGUMoCxEr8CTVVaSurjoaSa3yzs1RE/8sSrluTvmxa1HvYBt8iWgxHLHf6F/zfjz5xroHAG/ftDAccty5Y2F/n2E4IDgOq2AtKVYUKvIcZDbkRVUoMyim/1+jwKwVjqyaSFVNQkgs6l07s59dseXwVttTLtFyOG4A+Jn3ih8CwK23bezsCHzvexb2djn6PQbO2RJ5ARlGRLKMGUu0VC4AWS4Ya+yLNOo7yv6evXCMR4fElsPDbfAlou1wAMCd2y4OL1nY3eG4d8/F/h7HYMAzQVzmr0ukehK9Ax69XvrrefNTpgHEdPPQnGqt5lSoiaBvyh4RtJQrgsT3El/SZkhE6+G408PursAP3hvg9dctHOwJ9AfcVFQqvLxRulEXw2Bq7EFbCLWKFzCnVYv7IoXfc20Di3Wem+qZiMSXtBkS0WY43rnTw96uwLvfH+DSJYH9fQuOy80BQMis7jMHCxlNeXETMQ+S/PH2vLLvGopWNQ4s1l0JM1S5Wg6JaDMcu7sC7747wOGBhcFABH4jN+MnbXYqGQMx/OlSi58SCFS/kZrRImXXkkJQio/ivsjq0U+VCWkyv1pc5eIth0S0EY47kXK8O8DhgcBgICIEFgYXZRw3aapBRrtCBhVJPS/lR/IUSv/+i8q+q5v1dfiOZpTGg4x8Cd+Nm4ptg0S0Do7bbqgcwxgOUzKvF3YNfYyS4+SkGncNFKSGEbOmvRjOMoFfDYhau+prTa3yzk9VuFoIidgQHA6CJqAGx+1bTgDH9xXlYMz42yclvop8gw5AGgxdYfI2ZNDTqLy1HOlKF2UgSBqZDanIBhuHSysYpSpc+ZA820THnW9IQPYRrBmP4bj1to3hDse9ez3s7XH0ekz3CVrAMTDGwMDAGAfnHIwx8PDf0UNwDiE4hBDJg4vga8rnOVcfwfO48RF8P8aY+RGa8SSlMsGRiGEV475w/96aBxaXYrMyHNF7msD3TjGZ/Am+P8J08jg642dhjLhhzJx/BVFSq1+4r89+7I/E4c2bFnZ2OO7ddXGwLzAY8NTYCMuEEUv/PYyd8exuJARDzyNV3SJkdyxJHpSbTmUnfskAwJIqQmsTjkbTsPw3Y1aSM+uZa8uhs6lUS2wIjl86e/Mfz7517gHA/j7Df7tn4/CAY9DnZhTYgj8OM5V4kzF3k+/IplZ51S1TOmVKtRaNzbP8vsgqxSXaXMAvxQXlG3ciHyQnsJ2rccddmd1aOyRiE3BYjv/u/Mz6OwB487sMwyHD5csMu7scjDNjQCUBxxQPwozKQUldVrmqq3takeZRYDgnvd5chUn3MIujJtmhPV9F2KIFVasGaJt8R+EhwUUfQuzCl8nsVnoKeF2QiDXBoZly6fN/AoAb3yEMBsDt2xy7u0wZOjQNH7LcwMtWsijbOac8065vBhena+FJlLOdT7lUKz8kioBgNQdn86Mk1X1H0ZlqqhVBwmHf3IRpX5dJz5jy62/46PUk3npTYtD34dgyWSPu+5BSXSNO8Z5VaSWglNqoppkzDs54bORV8578v2rUw8+JwMRzkZyXfo2oMJA17YkhDz4yrbiQTrPKTPjSCoG/vlGSGpWGJvBC0y79ESYbNO2NK4hqysXh2d/TxL507eocvb7EW9+V2NkFej2WU2Fhla+Bah8DMUJkLO1mYMvxIabtRtMlYXPKVvTeK5j1JQlple+ofH5o2n1dSc6sI9uWQ3ddqZZoGI44tWLO/Ady1HsfAAZDH29+d4adHQnXrSElyO1kp0dO1LXpOjQJJJSpWqVNux78RTsqmhZlNdxJb6vvWOZ88kDwIXXTfknZCKLxVMtaV2pFM/sfAOC11yZwHQkiH4wRPC/rDYQIg1joAaqnNaTtcJhnmvX0h4NzguQcTAb/FpxDcgHOZdwfkTKvDyJBxCElhf9W3kv8MfhewT05WLjVKUCUVcPo64aidVFBO0dt2+c76oCJ5AwIlWQyeYxe7yYs6v8DgBdKqtXYfsCNKYiaWtHl439m497g0uEZXNfDtatjDPoeLCu1dKLwj68GShJUpi55/BqEjLFObzhtSqWKHzCmY1n1IuN2QklnJK+CxdYaxE36DqqF1OB+LOlU66Xz5LLr76LpVEs0BEdStXKnP2Qvd+4CQK83xdXXX6E/mMOxyQAH0yK81O+WqMCDpEu6lOMnUAGSdAqVvRVCFpKiaV+WKWm3MbVaj+/IeaIh1XL93eEs2cGxsVSrqRQrqVpN3R8BwP7eKWzLhyQPjDz4nkCy9NVgkIWACANPCBF+PvoYpDOcszDNYnGvXemFa72TdIUrSbl4mF6x8JGTXmnn8nC/3iitIj31074HhalY3iYPZUJJP49qCMzW+o68cwyplkM7PwLwrMlUSzSgHnFqJfeOf8Kmvb3dnWPY9hyXDk9SG7qVSyuKbhWQSmqQNAgNKwXjpiJlNp3OfRhuf6ArA+VsPar3W8y3QkCpznqlQKX64aB1SEiFVIsroygj++nQkTtWU6mWqBmOJLUS87tsMvwbAHDsMQ4PvoXjTGBZfvXKDWU3mjZXrFRoslUlyg1sMyjmHd0pM2qSNy6ffp+Lx+HZiiG0eVO+1Plln0MeZJhqOfZVWPYBHLmzr9x6ofZUq+4UK0mtfPunADDofwshZpByDmAOz+OZqtXCvF8QeJh2cQoqT8QFGI+qRFF6E6ZTyHazs2tElKngnEeSdqUfPEyvZHweEQtTKfMjep/Z3kjwbhlDZsmu6bxVCdka35F3fphq+XKEyfgxev2bEHB+CmDURKolGlCPX0h39H3mO9d7vW9gWVMMh0dw7AkYk1h0hyWzsqTmqoDMVC4My2VNO64nu5YkYySqUqQrXsUqkt9YTEw6GZRk+R7IWrvqLTpfL3yEVS0rXK5rH2DKT0cWuft1q4jVhHrw6fB+FAk99yk4mwbU+yK8xbLS68itFKmBJxIVCfshggefI0lgnEDKWo2ox2CCQ8eLGXoli1QkMe5SBuZeVRP1ESlU1OtI+iM6KJp6ZKWkvsv32iShoVQvulbSBB6AyfgzDIc/AAC4cu8+glst1Koiom718HrH/4N7vdcc+xk4nwa3OxOTzHU/z7QW+5D0HWUVHaH05tTpK3y5Uq6uGChV8s0bl19c8s2uF1m4pwM1z0arfEfeaSQheF9TkbF4DpsG/TpVxKpbPazJwb3IEDv212DsDFL6YOCaGU5KtwQhFjfoJCcI4sH5PCj1BgOGlFzViVJXcDXSou8ttbGSpAycDBKyBd4kKRFLSFl8nj6kGJR8wUhZM2z2GaEzKedDNjSTtQ7fkf/NJDz/VFORvn/5HoCP61QRUad6zHvf/kh4/UuW+Cs4m8ASJ8GNMplhDsnUZaYFVSzjDuxkrBbld8xNV/9gYhhIFKTIe5TuwKv1ZdDCFYlV/UjdAb8Wk12n2hhU5Mw6spRhxpVVxKpTPezJpTuReljWXwAaQUofADekIICI96ISoS/J6UMIgiAZNwo5T7wIka4iwZxU2gcgA1Z0W7X8/kSePzH7DfMa9fB1WKIgWkVL2zI1UpjNpP3rM9l1vqesigy8K3cA/L4uFRG1qYf74m+F33+N8yfgbALOjsHYWXgjG8rZIV29ypn9SWYjNzKXcIubeMhtAi5M7WT6Drdy4fmZnkhqQ7v06AkVasbyTcPKDb4GTXktvqOkFzkTz1ldXsSqTT2mh3ejKOD8SwAvw5VhHMQCBwJD/wNhn4NIQMSeJPEnxKPqFVe8iKogpC1+ikZBgsqS7keSihJyITEFqLpLialKlf4e8fnKIipoRarsNnhUut/Bao+ytpnyaj+DQUX8y3cB/LEOFRG1qId9+p6Q7hsMfwlV4wWAM6TXcBtVwPCLp9xd1Q3d8dTVOr32I3+xU2LaM75DSb9M90uX2tdlgWcxrZevz4dsYiZrHaa88nNIgqdUZMJPxhb19lZVEasW9ZjvvR95D44vQfQqVI8gZwdkfFUlAogDHKRJirr2g5MI/YjuOUhycJFWj6iixfWKFg+8QrSXleor0sGqQkJKuVgtAjCm901Uf6IOQ6aX1jLDlG6sZIzp27IsiIq6g37rTHnucyT8lIr05P77AL5YVUXEquoh2fQGg/U26EsAYwDfAjSK/+jMdPeyhaPsZFgBaPYpyYbTZapV6c9llSD//ykFU6Qm4b/jdE0aK106mFTcVWcNXc5XTcPWZcqXeA6RBGe6iniYfM1hvb6KiiyrICxSD07uT+JrIP0ZhJdgzA/zbLVPgNiLxB8Xrr0IKlTRDFb8MVIQSeCCxz2StIJE3W59YwU9AiOVSNIsaUiXYKh06RtTMxh2VGRF903Mm8EKXo2qzmEtox4tMuUrQRumWbGK7PwgDO7eTwCchrG6VO18WUD29Pf2JYBRsIwWM8hwman+kOCMQUYpChEY5zneIHv1F1xkjLkKhpQcQpBx55FkqW5irE1X9HSlKgAFC0x8Fpj4kUrJdONPGbNePiLYSpfyNpryOoCScgYiH76fDDKmYrZymlU5xVLTq5n94n0h+6+DTiDlpwGs5GHxTh6mUi3ybHuUdBmWvFLuv81lXBhLtapi6KZcT6nicyht1BeXixPPE47MqLvI595CjlW6yJYJ5HNhynNPJSAah3euhuMnLzyb+sNl06xlFCROr5z54XvR2wqCYAYKBySigEiriNpwC8x7YNxjI05KU1EGZd1g76ps6iWE3ihMq4i6YjDb4MumWmnTrqZb2sRvhW5eZtPqeNIkPVai1YEbSdjXOhayBt9hegEpZ9r/9/3D9wA8WjbNWgaQveB9+RaDgPS/AGEEkK/tQZW9vTiB1DkmJiGhB2vwUQGB8yCYwsANQCAFjqzvkDJYL8JK7Mqe7bLrShKohMwY9mxJucw1pSg5YsoXqNloa1EFilb2HTnnpNIsIt9iTCyVZlVKsdT0aup8+7eWP7hMdAzpfQKiUwDz+A+e3vZz4Q9O6Y+L7lNevMlbcaqj9y/S6ZRq2E2VrUhZIoD0B5Xe+EFNrZpmg1oGR70ysiDNsr+FLQe9ZdKsqgoSp1e92WvvxOkVEKRXhEz9Ja0k2bQrSb3UHkFkxokTWMZAB+pBMlhZSDzqxge9EllwX4+sYUdObyQ9bpJtCOZtNLeRo86Rk5aa8rKnptOsgffa9wD8YZk0qyoge2HNmTPG4Xt/BlGYXkV/BaZ9yARfMNkbBGd6iWoESOJL0v4kqPwEA4nhgwicePCIx97Tm78lO5gEZd/iYUbV7OuqIZOeh6HKpfmZTFm4itOuFihUN2dth6PUbbCDNGs8fox+/2Ycs1XTrNIplla9co7/xpL910mewPc/AckgvdKML2ML06lyaVfR1p7pdCs9EEilF0mlBxLVkZKkshWa9lSlKwuRPq4Sl41JuZNuwSSxsRFmWCpQd8CvtWKF5uCI0iw/TLNs+wAT63i+TDWrioLE6ZUbVq9ij0BTpfhCeqNrQcmeiHLGxaFd4YlYasw9Ce7g89G2oOrYiYz/X0+vso1DtdqUN7uleo88n0KKgsRgQ1sWUs4vZAmpHHVN+47mA315unw5067+y1azlp7F8rw/AzQCwdeCSl/nwKBuE5oHh9mfRCXgAAzGePBvFj2Phx+zqVe0qVsABMVlXnO5l+V2u7PKowIijb2QuL+hjrVTsYTSCjlTrdMmLTTlq42fBJs7RGnWMkcVQPYAwGeTPUG9AJL5Z5DyFICf2iQh7CGX7BYnYJj9iToMSIzAwvIuxR+j3QujYGVhdz0ZfY/UJBlgzI6s56d4OgSaaVdSMFMZOFmLb4ai6i4ljQ0sngPfkbLq8P1TjM8+w3A3GD3xMNmz0KvkQ0p5EL28++K+7Q8vSXkC6T8Ly7v6ktr0rcb0plzxbgRUMsfM66hn7wSVPp8KKlWmDRxkQSlYhl5Dlt4qSH0fhT8v5XyCaibpnMGhtRekhBA7cNzAh4ytF9KpuBy3rILE/qM/u3I7+svGqRRLBzlLuiHKZmnqgqUiJQkCaNGSVsSqEVS7eKggwcdk6a1MKQjLXTJrBrho10Wp+BKT2TcNPFKm56MWy+tQk8bXgrTOlJd73tC7chvJHapK+ZClPIg3fxyWd2VmjihKreJmoepNon/HJj7/3hdq6TW7ITRT7snBFFC4YvpVyKK0S+be5zx6j1lIsmollSqVlAS5oEmYvE7e1j/ZzfBKBSStmFq1OkWq53tF+/ku60MqASLhuTx8iud9BkmnAKQmNKT89pmSb2VNfBlvQrFPKGowprf3jG6Uo9/gJgJJhyS92IkZbliSvyKRDCsNc6paOXAkOz0iuXloToDUvkHDugoBay46aD7E032IJM/lzKodkD0A8MToquPvJxUeOUttdKZ7EU1Bwnkj9Y5K+vrsfGDUBuPi1EtVD/12BIGKsPi11HKyesNN85oRg2knU08kb2OHlBoV3DOESkTPStO867yir9l3LBpenInR1Z7cL23UF5p03aAf/3fb39mV8hi+/yxIs3J+EnPptMjE59XqTOVQKm3m0/l9XtNw0ch6dg4rPU4vS+2plVv6zYkuqvFSex4rVoufx1JG/ZhcucPLGvUyChIb9MH02vXSb5xMlS3dxCfGHVkVCf8ZfzZj4PU0rGi3kcSz5J0HqM3C/L5I8WZ0kmQMTbIBRPYuuunbL2gbzaUvAIbi1bLqcfHgyB6782vXqxj1yibdmz+GpBEAX7k6swU/BtM3ZQNlvIm+cVp+2hXvdaCYd7WPkg8Iy02r9K16kpWAeemeuuCpSG2KS73mFzd/LX2noGa3H11nxWodXmUVo75cFWsWNghJ6pu6qaHFTD9OvjdJrpr6DoP564dIMe+qP0GqgpU146XVgzHDMg0ybitUnLaZ5sPygSk16FghWNY+Y7VuU07VjHojgEhMdzhc5Y83M77TeKguJ6gzBlgZS9G776ho3pEp7eZ14xfBwUoMWubfCLT4lg55f2H1zljpy71504hyAbLWrXpa+ry0UfdpuiOYWy8gnpgeOL5b4e2zggAjg0EP4SIdJDL0UfJAUW+WGeyJCzCiwnJuPhwMym3YDYGave9IuS2HTJvLJWBkaxO0+hV4XQOLWwKVJ6YHQtYHSDCDJab78Jf5bS0aLWFGhVF3VtThKO6fqLc6Yyxc5kukNRQTMCgLBmOpBbJYaNjTxr3cqL3uL4hS6kF56kGlfcU6pnm3TnEAeHy670qUKvXyEiXe2wB+7vP5fjOXlfwyrBqM2Su1HpTZ0mqyLkMqHe/0NG7m4cvir6cf2hyXNMxu5VWrKHXXq+reo/ZVhOfdq0QpVhDLPwdwO4zxpRUkLvHuTK5fQYkCy3JqAuM9RPQKl27k8zZdM1W8wl3tAAq6+PpNNSkuDOjfC1h8e+p0AzHxVHl7AqvVKkqZ/qz3oGL1aIMpX0M6Vne1a292/UrZUm+lKtZ8/hgkgw3illt6nQ9Kdl8spvsTUp9HmV3StZ3boe90y0BaemWCI1tBKzEKo/zHtPoxA4hWyiXt35lNKxbFA9UTuOuEoxaWlp3shQ/fq17qrVzmnUclXm0Gqz5Q9MoOy1WZIo+ibRyh0KIPQVLsQ5LGI6WamOVgzlsSbDby6fQK5qXEq8xkratiteYgX/59SvjzU4zxGXYqlnqX6oOYS7xNgJLqn6T+oqxUszFfDdLd+SIIF+f5xYDEoGgqonytMLVK+ZQNLbFtezk391QC5JIxW+dtoAu9wOIfqZo/SYMRnZeGI+1TDPvZKWMwSsefUW5HnQx/vbwScFZhcuCgIuHo4FiHX1kfILTM+6rmT/QeRXbGK4FDVxJmGAA04hnfdpotfN/p4MyAketVTHAUwECrx8A2lmXXkco1DwjVVYor509Aqa1w4qt+OiUzpV/lTHgZdTNNFpuqT8YVhemdFY3z7FSb79hKODa2lqQuQKipcntJUKAEPBnCKW785cBh2Ey6egpp2pCBcipd+RA16Tu2oUuOOuGgTQNSMxhEK4DC1N2As3uJ6jfIVCtUCHsjeb9RVvq3Tblb+VCumW87HOvudVDL4FihirUO475ALXJhzZ7HmMH2UlHws6V+08XBXZyKnRc4NloGbiDPsqr+FLRWKFZJv0zmPec3ydL1qrINwjI/p8HEp06iPM+xzXBsYcVqfVWsxsBYDZTcc403FWVL/nz5++2S4ZNNwYELAAc1DEfjgNQJRnFgUIXAJjMIrOA8Wv1nNo3qm8CqvdexLXBsXizWB8hmPEpVVUmdT9WVozhoKfdrlBONrWgEboGxpjXSYrUJjHpHtKuoSk6KlPtHWLQmpezPR6V+d2vtkm8ixWlxn2QpQBhzQDSpD4yGrgBk/AasZviWWbjUnkVP2+QdVoGDcWepvzSv+gTbvgXO9+KnrhLcFW8YW/iLI2RvpGPe8pZg2i+r8vdLf5+C80Awfs8OjnWZEA7L2sOgf6tZQGznJjgfAkysFNx1gKEG6QqxbgCGyoG38L3lvzkdnA6OtTyXCQhrWHnbH17itacAvnrlPjlaNSWimtIxItRqzLIgKFIqoaoAAAzISURBVPdDJ8qBSH8Qyt1HvfT2oB0cjQnNqf3kCMBXYWzT0oA8ePBghuC2Vb8S0j5Z2WesCFZT6diyCkSoqiqLVaODo/lqlyD7BMCvADwKY3wlk34KAEK6J0uDsWEDX1d1bOmAbKDr3cGx/HOtJJZPa6tiWb57vM7gbkvJeKX+ADV07jbCgQ3CYYrlksXM0oBwuK/U/0+XemsDY8XfbB1grDLF2mSKtO5mHtoS4CvCwZle4hVMj+XaqljR4Th6qbcOE14mR2/y+ZnXoGa//zbAcS665BSWeAe3lnp69T6IUuqtzYRvEAxa8TWWea7WFungqA2O3OczASGG6A9uNgJIXOodOX99YgruTZV9V0mnaIlAzX1+w8+5CHCgKThSx0vrr09QssRbChC11Gv7/ae1mvANqkYtYLTwZjTbCse6ql227D9FyRJvlRTrNHD/w6dqgDHmLB/cW+ZTVgFjXUBtCo7ar/41wsFTM1hOGMMoUeKt7EE4rGlMonsLXOxVeolarvqrplNrVJyNregjbNcYSF2qZYrYlEHnLInhRkw6ADihUWeL7wHaCtVYp89Y5fsSNrPBwrmBw7i9wPIGvQogsVEf20eP1uk1timdWgWqWgKtg6PwGFlHj6oY9NKAqEbdme9+oQGa40NaoRqr5LS0vufWkhpdEDiq5Fpp/+F6u19UMehVU6xgJgu900U+ZBu9Rm2qQdsB5LbCUf75Wf9hJbF7Wvb78WWhNfmQbfYa6w7S2gJ8kwHaWjjq8R9VAYl9yMR68ZH+RpwLV6HaeDrWwVEc2Kn0asxffFTVf1QCRPUh7nz/8zjNypnLOu8VqpXTsU0GKJ1vOEzpVc/f/7yq/1gmxToNjDmXeWnW1qjGplOqLWoAbhcc5vQqitkq/mMZQJRy7zd/0t5Pya76No6JtAasiw5H2aBOpVcj8c0ny6RXlQFR06ze7PCT2LCX7Kpvcq3HqgHawdECOEp2LixrD30lvRp4h39aJr1aRkGUNEt4ARyL06y6RtI3bsRpg2B1cJQ/mIClpVdBrFZNr5YFJLeaZUqzalMN2hBYGwiw1nzvLYQjU70Sy1WvlgZES7O8w0d5aVYrVKMNRn5TqnMRlQMcIpVe9f3DR8umV8sqSEaq1DSLMWejqnEujPyGgnu74Qi2F2Wp9CovZpsGJE6zfEx+rakI3wOIL/2i21z+7a78m4ODDObcC2Jz6fRqaUC0DeXC+ZZIRcDE0gupNqUa23zl7+AITucG9Qhnr5ZOr1ZREAA4iVRkKk5+F33SdW9BVFhI1QbV2FSV69ylRRuCw1TanfCT3ynqsfSuoEsDoo2e+PtfLKMim7zqt8HI11bG3UI4UBscZvXoyf3Ko+11K4imImPr+cdlVWTTV/1z5ze2EI763kNWPc7E84/rUA8ASwxRKcfDhw/9+/fvTwEc2XLwDoB7wjqAlGfwvCMQzQF4ZtXA+gO71uefB7+y9XAAnLsQYoB+70asHjYN/g3AvwD45MGDBy9XifFVFSSlIkef5qlIXTsftiYl6+BowXsI1UO5Mc5IHH1al3qsrCBZFRneTquIpDkIXjtUo1OecwRHqB58gH4/UQ+Hhv+3LvWoS0E0FZlYz/8YfdJxb0Gs0BepXTU25DdapzznAA6AwxK69xjz53+oUz1qUZC0ilglvUjTV+xz51e2VHmagQPgLPQefc17/Hud6lGngmgqMhWnD9NehLHeWlWjNX6lg6MBOHqGvsfpw7rVozYFyagIue8CuGeFKiLELqQcQcpx4W+oVapxgf1Gm+EAcdj2IQbDd2BZStec3P+sWz3qVhBNRXzMPgwU5Ca4KG4e1nXFb0OVqlV+Y4OB3VSXPW4KKnCEsVa7etSqICkV+YpDfGdkP73uyJ093z+G4DuQcgQiX/MjbVCNc6k8rbrq1/AaADgPUqvB8A44d2DbB3hlPf2yJ/f/HcC/Iuiav2wtICEkZ1Gq5cidt/JSLYp+DXUEdRfY5x6OvNTKkTu/UVKro7rjue4UK5Nqzdmr/0inWohSrbqu+G1IqTo4GoTDnFrNgthqJLVqTEHSqZaAc+Wl++SW6+8OtFRL6qnWRVON1qpXK+HIplan9pOjgX/5w6ZSq0YBSadarr/7nTjV8stXtRr1Gl1athVwAObUypW7HzaZWjWdYmVSLY+NfwsAbk9fnruuClXtadkKQdnatKx1cJhTqznGv206tWpcQbJVLfvamX102ZbDS753DCHMVa0LoxrnzbM0Akc2tRqJo0c9aq5qtVZA0qlWNMyYTrVMkNR1v7wOsG2HI1W10ocRj5qO36ZTrEyqBeB/q6lWr/cOhKWPotSVCtXR2+jgaA8cYeysJbVam4KkUy0AN32Mzzjsm2kl8SPTvuLyzVaqxgaDepvgyDPlHo1/w5n9aF2p1VoBSaVaX3HYb0z5sWtR71oEyXweTv2St9Gg7q74m614xSsElSndCTv+Lwe7DxU4jtYVt2sDJA2JRb2DM+vZFVsOD33vGJyXM+1t9wmtBqzloBpNufXs84G8/H82AcfaATGY9lswjKJUgeS8BfVFTc1yTbkc/nadpnxTJr2UaRfCbNqbDuo2XfFXXf3X2HvZABybMOUbVxCTaQfwdRUlaZNqXAj12SwcazXlrQAk7UeqQFJHheo8BvU5h+NoU3G6MUCqQkKqkrRNNS5QUF8kODYOSGUlIblSVF+IlKr1cHBw7m4FHK0AZBEkfgzJBIL3QfAr90rOo2psI2Sc92DbhxBigMHwTuvhaA0gZSCxnasBKP6oEiQdHO2BI1KNfv8GOHdaD0erAFkEiaYmJSC5qIHYitcpgCNSDds+aD0crQMkD5Iz65lry+GhGZKsL7kwqtF6OPL9xsh69nnYBGwtHK0ExADJf9py6KizW3m+pM57VrQespbDUeQ3Juz4v8LxkX8B8Lu2wtFaQBRIngF4iXB2S50CTvsSqarJOQrorYEs/oKuGmm/4dH4N8rg4ScAHm+qCVjmYNiC44MPPrgC4DaAXwK4AeBn0dcmk8fw/REmk88A6cPzT0Fy0qVUG1CgyGswJtAf3EpXqVrvN7ZKQRb7kiPblsNLUb/Esa9CWMXepOmA3r6rfV3vqVg1RuLoUbgScKvg2BpAcnyJO2fjiYD9lmUdwLLDxVdWtZ5Jl1Kt9lp5XiOqUs0x/m24hrz1fmOrATH5EgH7GoCvXzpPLrv+7jCCxHEWq0kbVWO74ChWjVP7yZErdz8UsD/dFr+xtR5kgS9xAfx8xl790KGdH8XeZPwYvhxhMv4MoMibzADICxrQdaVnHJw5hV5jxl79h0M7/w/BXWan26YaW6sgxWriXAHw9ch6OnTkzn5GTeQEPEy7qIlq17mHI1AM20rSqbRqvLKefunInd8IOB9vs2qcCwUpUhMfs7sCzk9VNQEQKwqRD987hQwVpUupip7GwXmoGEgUA4CmGj5mH4ZgbL1qnDtAQkgcAPtQysFTfnrDlXv3M6D4Cih+eVDOu2roT1PAYAL9vhmMCT992JN7X6kVKgAnDx48mJ2HuDo3gOSpCYAbY/H8bt+/fG8VUBpVjVbBUQ6MMX/+h768/EkIxrlSjXMNiEFNYlDOxNG7A//KnXKgwGzo21zxWtpvBFsTaGAMbsESWTBG4ujToX/l92kwzpNqnHtAFoPy/N7Av3w3DxQAoLDypcLSatWo/HoBFEyBIoDBDMaZeP7xwL/8x4sCxoUAZBEoE37yZk/uv58GJYJlrMCSmHpUNvbtSal0pYABiqzHOPldT+5/cdHAuFCALALFw2TPQu8n6rljBRbpjzA+C2FBGhaU9y1rT6mSXZ2qQAEAHia/ttA7vahgXEhAFoECAGPx4nbfP3yvDCz5wABkgqbRlErf4iwNBAAMBrcgCqAYixcf9f3DR+H/XmgwLjQgBaAggoXIt8b2i3cG3mvfy4PFBEygJwZoCAsVZzEc3EiMCQYTECYoRuKbTwbe4Z8YE54CBS46GB0gWVAYgD0zLJJPrJO308piAib2Lylo4oAns+IsgiOGIGf4wQSDCQgAGPMXH/X8/c8Z4zIHilMAdJHB6ABZEpYwP9+bWi/fHHpXbptewwRNDI+XmP+qKdWgb4agCAYAGFlHj1xv94vQU6CDogOkaVg0YCR57kyMrs7F+Oru/Nr1otcsgqcMMXkQRMdL669PbNl/6vjDp5xZUwMQHRQdII3CghxgNGgAwKfpjiemBx6f7vtsvr83v36ljvdyaj85EmSfWNI9sXz3WDD3lfLlNAxpINBB0QGybmCKoDHCs+JhgiAPhg6IDpDWQlMWnqqHCYIOhg6QcwnPMkcHQXd0R3d0R3d0R3d0R3d0R3d0R3d0R3d0R3d0R3d0R3d0x+Lj/wP+HLGZXbK5+QAAAABJRU5ErkJggg==' minus = b'iVBORw0KGgoAAAANSUhEUgAAABMAAAAJCAYAAADQHRcxAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gMQDyofad67hgAAAB1pVFh0Q29tbWVudAAAAAAAQ3JlYXRlZCB3aXRoIEdJTVBkLmUHAAAAHUlEQVQoz2NgGBGAEY3/nxIzGCk0CMUcqrpshAAAXdADBFRH3fkAAAAASUVORK5CYII=' led_green_on = b'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' rotary_gauge_bar = b'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' rotary_gauge_bg = b'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' thermo=b'iVBORw0KGgoAAAANSUhEUgAAAMgAAADICAYAAACtWK6eAAAACXBIWXMAAC4jAAAuIwF4pT92AAAGtmlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxNDIgNzkuMTYwOTI0LCAyMDE3LzA3LzEzLTAxOjA2OjM5ICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdEV2dD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlRXZlbnQjIiB4bWxuczpkYz0iaHR0cDovL3B1cmwub3JnL2RjL2VsZW1lbnRzLzEuMS8iIHhtbG5zOnBob3Rvc2hvcD0iaHR0cDovL25zLmFkb2JlLmNvbS9waG90b3Nob3AvMS4wLyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgKFdpbmRvd3MpIiB4bXA6Q3JlYXRlRGF0ZT0iMjAxOC0wNi0wN1QxNDoxMDo1MS0wNTowMCIgeG1wOk1ldGFkYXRhRGF0ZT0iMjAxOC0wNi0wN1QxNzoxNTo0MC0wNTowMCIgeG1wOk1vZGlmeURhdGU9IjIwMTgtMDYtMDdUMTc6MTU6NDAtMDU6MDAiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MWU1YWFlYTktNTg1NC0yNDRjLTkyODEtYjYyNDUwZjBlZTEyIiB4bXBNTTpEb2N1bWVudElEPSJhZG9iZTpkb2NpZDpwaG90b3Nob3A6ZjRmNTU0ZTQtOWQxYi03MjQ5LWJmOTItY2I1MTlmODI3YmI1IiB4bXBNTTpPcmlnaW5hbERvY3VtZW50SUQ9InhtcC5kaWQ6NjY0MzBlYTctMzYxOC00MzRhLWJiZjMtZTNhMzg3M2UxYzIyIiBkYzpmb3JtYXQ9ImltYWdlL3BuZyIgcGhvdG9zaG9wOkNvbG9yTW9kZT0iMyIgcGhvdG9zaG9wOklDQ1Byb2ZpbGU9InNSR0IgSUVDNjE5NjYtMi4xIj4gPHhtcE1NOkhpc3Rvcnk+IDxyZGY6U2VxPiA8cmRmOmxpIHN0RXZ0OmFjdGlvbj0iY3JlYXRlZCIgc3RFdnQ6aW5zdGFuY2VJRD0ieG1wLmlpZDo2NjQzMGVhNy0zNjE4LTQzNGEtYmJmMy1lM2EzODczZTFjMjIiIHN0RXZ0OndoZW49IjIwMTgtMDYtMDdUMTQ6MTA6NTEtMDU6MDAiIHN0RXZ0OnNvZnR3YXJlQWdlbnQ9IkFkb2JlIFBob3Rvc2hvcCBDQyAoV2luZG93cykiLz4gPHJkZjpsaSBzdEV2dDphY3Rpb249InNhdmVkIiBzdEV2dDppbnN0YW5jZUlEPSJ4bXAuaWlkOjBmYTQ3MjIzLWI2NmYtYzA0Yy04MjVkLTk0OTkxZDYwOTExZSIgc3RFdnQ6d2hlbj0iMjAxOC0wNi0wN1QxNDoxMDo1MS0wNTowMCIgc3RFdnQ6c29mdHdhcmVBZ2VudD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgc3RFdnQ6Y2hhbmdlZD0iLyIvPiA8cmRmOmxpIHN0RXZ0OmFjdGlvbj0ic2F2ZWQiIHN0RXZ0Omluc3RhbmNlSUQ9InhtcC5paWQ6MWU1YWFlYTktNTg1NC0yNDRjLTkyODEtYjYyNDUwZjBlZTEyIiBzdEV2dDp3aGVuPSIyMDE4LTA2LTA3VDE3OjE1OjQwLTA1OjAwIiBzdEV2dDpzb2Z0d2FyZUFnZW50PSJBZG9iZSBQaG90b3Nob3AgQ0MgKFdpbmRvd3MpIiBzdEV2dDpjaGFuZ2VkPSIvIi8+IDwvcmRmOlNlcT4gPC94bXBNTTpIaXN0b3J5PiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pj9yLJwAABIQSURBVHic7d19kBTl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' tank=b'iVBORw0KGgoAAAANSUhEUgAAAMgAAADICAYAAACtWK6eAAAACXBIWXMAAC4jAAAuIwF4pT92AAAGu2lUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxNDIgNzkuMTYwOTI0LCAyMDE3LzA3LzEzLTAxOjA2OjM5ICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdEV2dD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlRXZlbnQjIiB4bWxuczpwaG90b3Nob3A9Imh0dHA6Ly9ucy5hZG9iZS5jb20vcGhvdG9zaG9wLzEuMC8iIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgKFdpbmRvd3MpIiB4bXA6Q3JlYXRlRGF0ZT0iMjAxOC0wNi0wN1QxODoxODo0Ny0wNTowMCIgeG1wOk1ldGFkYXRhRGF0ZT0iMjAxOC0wNi0wN1QxODoxODo0Ny0wNTowMCIgeG1wOk1vZGlmeURhdGU9IjIwMTgtMDYtMDdUMTg6MTg6NDctMDU6MDAiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NThiMzY4M2QtMjJmNi1mYTRkLTk3NDYtMTVhMTRmODlmMDFjIiB4bXBNTTpEb2N1bWVudElEPSJhZG9iZTpkb2NpZDpwaG90b3Nob3A6ZmM4ZDk3N2MtODMyYS0zZDRmLWI5M2QtMTUwOTgwMzhlMjIzIiB4bXBNTTpPcmlnaW5hbERvY3VtZW50SUQ9InhtcC5kaWQ6MGEwMWI1NzYtNWU2ZC03ZDQ4LTlmZWQtNTY2ZWIzMjY3M2UzIiBwaG90b3Nob3A6Q29sb3JNb2RlPSIzIiBwaG90b3Nob3A6SUNDUHJvZmlsZT0ic1JHQiBJRUM2MTk2Ni0yLjEiIGRjOmZvcm1hdD0iaW1hZ2UvcG5nIj4gPHhtcE1NOkhpc3Rvcnk+IDxyZGY6U2VxPiA8cmRmOmxpIHN0RXZ0OmFjdGlvbj0iY3JlYXRlZCIgc3RFdnQ6aW5zdGFuY2VJRD0ieG1wLmlpZDowYTAxYjU3Ni01ZTZkLTdkNDgtOWZlZC01NjZlYjMyNjczZTMiIHN0RXZ0OndoZW49IjIwMTgtMDYtMDdUMTg6MTg6NDctMDU6MDAiIHN0RXZ0OnNvZnR3YXJlQWdlbnQ9IkFkb2JlIFBob3Rvc2hvcCBDQyAoV2luZG93cykiLz4gPHJkZjpsaSBzdEV2dDphY3Rpb249InNhdmVkIiBzdEV2dDppbnN0YW5jZUlEPSJ4bXAuaWlkOjU4YjM2ODNkLTIyZjYtZmE0ZC05NzQ2LTE1YTE0Zjg5ZjAxYyIgc3RFdnQ6d2hlbj0iMjAxOC0wNi0wN1QxODoxODo0Ny0wNTowMCIgc3RFdnQ6c29mdHdhcmVBZ2VudD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgc3RFdnQ6Y2hhbmdlZD0iLyIvPiA8L3JkZjpTZXE+IDwveG1wTU06SGlzdG9yeT4gPHBob3Rvc2hvcDpEb2N1bWVudEFuY2VzdG9ycz4gPHJkZjpCYWc+IDxyZGY6bGk+NzQ3QkE5OEM3RUFBRUJEOTY5REQ1MjY5Njg5RTk3MjE8L3JkZjpsaT4gPHJkZjpsaT5hZG9iZTpkb2NpZDpwaG90b3Nob3A6ZjRmNTU0ZTQtOWQxYi03MjQ5LWJmOTItY2I1MTlmODI3YmI1PC9yZGY6bGk+IDwvcmRmOkJhZz4gPC9waG90b3Nob3A6RG9jdW1lbnRBbmNlc3RvcnM+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+x3OMvQAADFlJREFUeJzt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' drop=b'iVBORw0KGgoAAAANSUhEUgAAAMgAAADICAYAAACtWK6eAAAACXBIWXMAAC4jAAAuIwF4pT92AAAF62lUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxNDIgNzkuMTYwOTI0LCAyMDE3LzA3LzEzLTAxOjA2OjM5ICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdEV2dD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlRXZlbnQjIiB4bWxuczpkYz0iaHR0cDovL3B1cmwub3JnL2RjL2VsZW1lbnRzLzEuMS8iIHhtbG5zOnBob3Rvc2hvcD0iaHR0cDovL25zLmFkb2JlLmNvbS9waG90b3Nob3AvMS4wLyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgKFdpbmRvd3MpIiB4bXA6Q3JlYXRlRGF0ZT0iMjAxOC0wNi0wOFQyMToxMjowOS0wNTowMCIgeG1wOk1ldGFkYXRhRGF0ZT0iMjAxOC0wNi0wOFQyMToxMjowOS0wNTowMCIgeG1wOk1vZGlmeURhdGU9IjIwMTgtMDYtMDhUMjE6MTI6MDktMDU6MDAiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6YWRjYzQyY2EtYWE0MC0wYjQ1LWI5ZjctZDMxYjYxNzExYTFhIiB4bXBNTTpEb2N1bWVudElEPSJhZG9iZTpkb2NpZDpwaG90b3Nob3A6MDhiYTI0YWQtOWNjMC04MjRjLWE4ODUtZGZiZjRhNTg3MTZiIiB4bXBNTTpPcmlnaW5hbERvY3VtZW50SUQ9InhtcC5kaWQ6OGJmZjNkZTctMjUyOC1kYTQwLTkxYzktYTU5NTZjZjFkYmI3IiBkYzpmb3JtYXQ9ImltYWdlL3BuZyIgcGhvdG9zaG9wOkNvbG9yTW9kZT0iMyIgcGhvdG9zaG9wOklDQ1Byb2ZpbGU9InNSR0IgSUVDNjE5NjYtMi4xIj4gPHhtcE1NOkhpc3Rvcnk+IDxyZGY6U2VxPiA8cmRmOmxpIHN0RXZ0OmFjdGlvbj0iY3JlYXRlZCIgc3RFdnQ6aW5zdGFuY2VJRD0ieG1wLmlpZDo4YmZmM2RlNy0yNTI4LWRhNDAtOTFjOS1hNTk1NmNmMWRiYjciIHN0RXZ0OndoZW49IjIwMTgtMDYtMDhUMjE6MTI6MDktMDU6MDAiIHN0RXZ0OnNvZnR3YXJlQWdlbnQ9IkFkb2JlIFBob3Rvc2hvcCBDQyAoV2luZG93cykiLz4gPHJkZjpsaSBzdEV2dDphY3Rpb249InNhdmVkIiBzdEV2dDppbnN0YW5jZUlEPSJ4bXAuaWlkOmFkY2M0MmNhLWFhNDAtMGI0NS1iOWY3LWQzMWI2MTcxMWExYSIgc3RFdnQ6d2hlbj0iMjAxOC0wNi0wOFQyMToxMjowOS0wNTowMCIgc3RFdnQ6c29mdHdhcmVBZ2VudD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgc3RFdnQ6Y2hhbmdlZD0iLyIvPiA8L3JkZjpTZXE+IDwveG1wTU06SGlzdG9yeT4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz7E3fwHAAAME0lEQVR4nO3d328U1xUH8DNes8uCcSH8iC3ZkcG4doIMUeMSWa34kTYKiGCCYpsfIWnAvOS1MqJ/ApZ4bB4KVJXaqk1LH6qm6kMrNQUJUQFGVkKCLcAJEWoWTKlim6Vm5Z0+kK2H2TuzM7sz98659/t5iMgs9h48851z7nh21yIPmUymMDc3V+/1OIAu1q1bd39ycnK16LE694b29va/EpGNcIApJicnVxGRvW3btl+5H7Nc/2/LKQkg0ayyPxDCAeBkERHVExE1NTV9kcvlhH/LtpEb0Jdl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'
led_grey = b'iVBORw0KGgoAAAANSUhEUgAAAMgAAADICAYAAACtWK6eAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4QkZDh80173PwgAAAB1pVFh0Q29tbWVudAAAAAAAQ3JlYXRlZCB3aXRoIEdJTVBkLmUHAAAgAElEQVR42u2d228bR57vv30nRYqUZMlWHMcXObJkOx6fjAfwmcBYIEAOdt/maR4GmOf8Ud7dt3mbp32fOVnM4uzsOQNvMAh2Z5ONZwNbtuT4xJYoSrz0bR+s6imWqruru6tvZBdASGw2KYqsT3+/319VVwNNa1rTmta0pjWtaU1rWtOa1rSmNa1pTWta05rWtBo3pfkIimmff/65KfHz9h8/fjxtPtUGkHmBoAfgJgBL0p+aAHgKYNDA0wBSFxjiIPg5gCuS/vwegF8ngKeBpgGkUCDCYJiBwNC1rq4rK7qu9FVN6R4dTTdlvJdezzhwXX/ouv6R4+DQcdxhDDwsNA0wDSBSoeABEcCgaaplmdolw1QuHR1NL0e95pUrV+D7fnTAiHj85cuXkc9dXtZfOjZeTabuK8/zJyHQ0MA0sDSASIEiAMI0tF6rpV0dHE9v8l7jgw8+CO3oS0tLweNhUJDf2ec/f/4co9EoFKT9/X3u/9TpaE8nE/+Z43gDDjANLA0g2aBQFKhLS8b1kxP7Hvvcq1evnuuoS0tLuHbtGrfDa5qGTqcDwzBioaB/t20bw+EQrutyH9/b25uBhzx+cHBw7v9tt7SvRmP3OwBeA0sDSBwYfR4UqqronY6xfXw8vcUCwcJw/fr1mQ6rqiqWl5eh6zq386uqKqQa7DbP8+B53rnHCTye5808/8WLF+egYYFZWtK+GY28//R93wmB5WiRQVEaMGDR9qnbMbeGJ9MZpSBq4Ps+Op0Obty4cQ4GWhGIUrAdPOyn6GNRjxM4yHbHcQJoyD4vX76cAYaFpd1SvxqNvT8zNmyhQVEaMHDFNPXedOp8Su9Lq0Kn08HW1lYARLfbhWmaQYckMIgCkQSUJNCwv7uuO6MyJycngUVjYXn16tXMZ6Xr6hdnmWWhQVEWGYxOx7x6cjL9mOx348aNoJN1u11sbW0FANAqQVskuvNWCRDeNmLRHMeZgWV/fz8UlpalfjmeeM8WFRRlEcHo9azdwWCyQ/Yj6tDpdPDhhx8GEPR6vRkoWBjC4MgblCyqwoPl9PR0RlnG4/E5UNpt9evRyPuPRQNFWSQw+v3W3aOj8Ydkv5s3bwZgbG9vh0LBA6NMQNJCkQSW/f19jMdj+L6P77//ngbl29HI+7dFAUWZQzg2OIpxazCY3Cb7EJVYXl7G9vZ2YKFM05yBIuqWp5LkbbXicott2wEoBwcHgf2iQWm1lD+Nx/43LCiPHz9+3QBSfdX4JYAr3a51ZTicPCD7bG9vAwC63S52dnagqir6/T4Mw+CCQVeGolSkzlYrSlWm0ylOT0/heV6gKCwolqk8mUz9vTNQfjVvaqLMCRwzqmGa+s506nxGHt/Z2QkUY3d3F6qqYmVlJQCDBYG9Pw9KkvZ3z/OCCpjneTg4OOCComnKb1zX/3re1ESZN9XY2Fh+8Pr18RUA2N3dhe/76PV6uH37dgAGsVI0CGG/J72VrSR5wMRaLxoU3/fx+vXrsyyn7Z2cuE/mSU20mqvGXQDvAfhFp2P92Lbdz05Ppz0AuH37Nvr9Ph48eID33nsP6+vrWF1dhWVZQZlWUeKPD3ETC2eONkr5x5uoTp7lNRVFga7rME0Tuq6j1Wqh3+9jPB7Dsiycnp7Ctv0egF3DUFzPwwaA1wAuPnjwYPLkyZPTRkFKUo3Nzf7Dg4OjTQC4e/cufN9Hv9/H/fv3sba2NpMxSMWGVoqwn1nUJG8lKdpq8TIKURS6NEypycHJift/664mWs3gmFGNdtu85zjuXw+Hky4AfPTRR1hZWcHDhw9x+fJlrK+vo9vtBorBHuWTHvFFj8hFKEladZClMIqiQNM0qKqKVquFXq+HyWRCq0kXwK6uK2PPw2Zd1USrGRxENf764kbvk6Oj048B4Ec/+hEuXryI1dVV/OQnP8HFixdx4cIFtFqt2M7LA4bXwdN2prJsV1IQ0uSSd+Fcm7FdxHJ1Op2zvIJrS23tgu34NwFcB7BXJ0i0GsJxBcDPTk4nawBw//59rK6u4pNPPsHVq1exvr6O5eXlGdUQ6axJOnJaJckKS5YTrfIEkKcmM9nE8dcA7ALYrxskSsXBmMkbVku/Mxm/m1R4//59AMDq6ioePnyIjY2NIIDTWSPJjX1eklzCzqYVzSVh2/KuauX1u+u6wYj8/v4+JpPJTDZRNP8L31X+vS65RKswHDN5Y3Wl82g4nPxPWjUePXqEq1evYmNjA8vLy9A0TYqlicopaT28zLyTRElk/Z4lm9BqAl+5YZqwXBcrdcglWoXh+EveuNh/9MMPx7s0HA8fPsSlS5ewvr6Odrs98wWpqgpFUbg3WaAk6bgiVitv+1V0ptE0DYZhBNlkNBrBNM2zKSzYXGqrG7bjb1XdcmkVh+Nd3jiZrLJwENXgZQ3S4XhgpIUlqiPn2TmzKEnZxQBaTSzLwng8DiCxHX+1DrlEqzocBIzNzc1zcIh0ZnpQMAwWmR03rtPK/ntFWK2s75dYX1LlMk0TS0tL7yxXxSHR6gAHL28kabTl4oER1mnZSg2vo2fpVHmUgPNQlazgkJPOSC5ZXl6eGTOpMiRaHeAIyxtJOyMPkKixjyI7URYAyrJaSf8um0tmwntFIdHqAEdc3kgCCW9UPQskUVWusE5U9Eh7EfZK9Pm8XFJlSLS6wCGzEcuVtFqVpOOkLQGLwlOUksgEh1UTRVEqD4m2aHCEWa4snbWMXFCl6lXa59BKQsrAZ2cvVgYSrSQ4TLwbBCwFjjDLlQQS0fJrXBk0745ahNXK8hxeGTgEku+fPHniFt1X1ZIOQH28O/uvNDhYT0zfVFWd+Z29EbB429lyctgYTJ45JG+rJfs5pmmi3W7j0qVLsCwLFy5cIA/97KyPWGd9Zv4VhLJWv7h4sf/o5GSyWhYcrJLIygJp980CTV75SLZihD0WpiTttmo5jm+WZbW0kuD45epKN5g+srm5iUePHuHSpUuFw8EL7+wYh4jNChszCVupPc5uybZfIgObeQXypMHdNE0MBgOMRiM4jr9qmLC8d3O3CodEKwOOdsu8czwczUw8JFPVs5ZyZUAS10njSrt525+ip5/IVow4FbVte0ZFPBebiuqfwFfeKxoSrSA4ZkK547h/w8sdaQcBy4AkSaeIm5qe9vXzmn5SlGKEKSk7LWU0GgG+cqOM0F7U4boyoVz4yMEEdzbEkyDPC+5hM4mjpruUYa/KUAwRWEzTRKvVwsWLF0sP7bkryEwo3+h9cnI6Was6HKyS8DJF2s4VlkmqVrXKC4IkBygykDiZTGAYxrvQ3lIMx4FVlNXScoYjsFZLS617h0cnH1cplKeFJEnwjbtfJCh5jX3kkZdIZUtRFBiGQYV2rGkaxr6PzSKsll6UtTo9Hf8Vba10Xa9M5hA5mvE6EtnOKgP9O7Fenueds1nk8bi5S1kgKuK5ecKi63qgJGtra3jz5g1cF38F4C1ltXJbwTE3BaGt1Xvvrf6v4XDcrWooF1WSNCoiM7jnMTYjO5fIhoUcUIjVIqF9aUlZsW0oeVstLSc4Amu13G3/+Ic3x7frZq2SVrfS5I088ogse5W3hUqTRwzDwPHxMUajEWwbXV0PVnDMzWrlVcUKrNXxcPTTulqrMMnXdZ07NSVqWkrailYVwnsReSPuMV3Xg5H2tbU1AIDj+D/Nu6olXUFoa7W5ufLpcDju1dlaiVqdKDWgc0kW+yJDheoQzsM+czLKTlutdlvpOA70vKyWJhmOwFpZlrlzdHTyP+bBWvG+LPqSbEktlazOLvo38hoHKdqGEVWmrZbjoK+qysD38X4eVku2xQqs1WQy/WyerBUPEhG7Rdsp9j5rr6IsV9VWjs+74hW2Lz1fi1gtz/M/y8tqSVMQSj1+0e8t3ZlM7MvzZq2irBZ71A2rUvHuR62gmJeSVDGci7wmOdCws34NAyeeh75sFZGpIIF6HA1Og8uePXjwoNKj5TIqLHFTUuLOG5G9gISsoF6FcM5rhmGg1WphfX092GbbeJCHikgB5Ew9bgL4+YULy7fm2VqFQUJbrTgwioZERlFARi6RpTr0+SOmaWJ1dRUAYJm4hXcXbr151icroyCBevzww/FtVj10XZ9rQHhnJbJKIjqZMa/ckeUSCEWrh8i+ZI0tWkUmU9yWrSKZAaHVY2Ojd3fR1IP+wniBPcpeiawhnGa6veyBx6Jziei+9ITGQEUs3JWpIjIUJFCP168HHy6aeoTlkajBQx4sUQUAmcuVZg3qRVWrwh6j7xMVoabDYzLBhzJVJBMgtHqsX1jeXVT1EIUkTjVEFnxIA0xeQT3PalXSLMKoyK4sFcmqIIF6/P8fjncWWT3oo5qIkohCEqUsWTpqVfKGrCzCqMiOLBVJDQitHisrnauNevBVhIWEXTIoDRBVCOplARGVReiKlmngqgwVyaIggXocHr47EWrR1YNX1eIpiGhQz1LyLTKoy3osLTw8FZna+FiGiqQChFaPdsvqNerBP6rFBfU8Sr0ina6sUfQs6hH3XN64iKYpvawqklZBFKIeo/Hk00Y9oq1WkmnwdCCXuU5wGRMW81oOiQcPT0Vc1/+UUhGlSEB69J1GPeJVhDdomHTAUPboepnqkVcWYVUkrM/mBghtr1ZXlrbIP9CoR/SXJkNF5iWo55lFmGWCYJrYymKz0ihIYK/eHp7eIxs9z0Or1WqIYD/giLGQsCpW1lCedHZwVUfK02YRuk2nuJfFZqUBpHf2xesA8NFHH6Hf70PTtLm8DoaMipYIHHGVK9k2K+lavXnZKRmrRbLPZUu+ihKs3tPLFZDZsY/2NptByPI2TTuvIqKXSsjTZlVhRF2meogOHJoGttParKQKEtirN29ObpE36XkeLMuC67rBrWnhgESNgciqWqXJGLLnY+W5bxKbNZniVlqblRSQ3tmXpwLAnTt30Ov1oGkaPM+bubmu21guDiRR095p1UgDSZYcIks9iqpkibwWU81S09gsYUBoe9Vbbl0nb+revXtYXV2FoigzCkJuDSQ4Z5dEbywkeeaQomfp5plFiM0i56yf2azraWxWkppsYK+OBqN7tL0yDGMme7DnXpMjZqMgyU6YYuFKWqJN22nTWq2qqAe7LCwATG3cA/DnpDYrda/d2dk5Z6+IarD3ybZGQZJNLanyabdVVQ/2szRNEysrK+kPbEnzh2UZgYe7c+cOVlZWoKpqKBjk5jjOwluuqECex0qLaXJI1dQjrZoQm0WPqJ/NzUqUQ4QAofPHUlu/yrNXNBxRoDRqgswgyBr4k6UeRYfvtNUsQ/cTT4EXzSDU6PnoJv3mCQz0l04yCC930Plk0XJJXPjO21bFdboiyrxFqEfY/fEEN5Gw3Jtq4tT29jaWl5eD5TcJIAQK+voXUTd68t6iq0mWThO19m/cmsHzqh50cYTkkMPDw1wzCDRNs8gb39nZwcrKChRF4Vos+mfYjeSSRbVcsqewJ73sc53UIw1c7Grw7z5zWEn+jqiC9ACg3dYvDYfvRsk9z4Ou6+eunMRaLaIyUTf2lNR5bbwvMclRvIwCR5VKt3JyiHJpavukT8demSpWQeiAbprqJfrNsqPnYUE9TkkWSU14lkhmyTVqNF1EMeqgHpksl+ZfShLURRSEmn81ukw2ep4382VHTZvgKYnneTODZ2Q28DyrCbtQdVQnj1oAWwY8dVaPLPfHY1xOEtQTh/SbN2+i2+2eC+jkjbBQhEFCV7toq0X2oUGZh8YeUHgw8KARCdeyTqfNa3p72eqRJajraY6C29vb6PV65zo87+qtYZDEZRMWlLqrCTmY0KXxMJUQzStRiiQySFiFswXzvk8vTfrq1avE35swIKahd6e2ExwNyQAh3fl5lznmQcL+5FkuGhDP82pvu+iMRv/PvE4edj+uw8vOLnlbraIaG9Q1Vem6ni8XEMNQV6Z29PXAeVmEVpiklou2XTQk7D9c9cbOUWPtFntfdGxDVkjPK2yXrR5h71VV/RVXsBYkAkgPADRd6Yf5ZhoONovwVIOAwlMTnpKwkJB96gJKWLWPhoUHCe+zFin/FjUGUgf14Fey0IcDoVKvKlri1TS1GwYIz1tHdQh2XlZU6Ze92bYN27aD36t+9iIpX8epSBgcYZ00qlScNqTXOWskgVVR0RUt9cYpyF/mYL0dbbJw0BUs9s2xlotnv1hV4SlJmKrQKlJVReGN8bCQxKmIKDhx9irruSRVmlOVtY1H2BQt9SaqYl2/fn2mxMt+IWG2KQ6SsP1oOMKsF73ddd3KhHlaAcMUJCscSexVmWXdvNcJFrmvKAoMw0hc6tWTvrGtra2ZEm+UciSFJCyzRKkJu1o6DUlZZzKGwcGb9h9lt3jFkDB7JVM9qqQWMt4LPScraak31TiIYRjnKlhxNoveL2p5myhVYdWEhYNsc103NOjnHcZ502dYWOICe9ryblr1qLJayAIwrf1OBUhcCZI3YBimKKKA0HCwC7CFXXcjbKlPutwss0oVN8+MV5xIarXiKltZVzOpUzCXOQ4kDRBW0pMsJiBiu9IAw1u1UHSb6MIJvP+f7tgi0/zjKlpx4yFJSr1FqEfZrQig9LTqEffBsioiartEAYlTFXZxtiRLf0ZBElXeTjKDOQyOOLuVVT3KCuZVUJM0z9GLkKwktksUFhoS0uHpqS9hKxiKXB+Q/F2Rg4QIJGFjPyIZRLZ6VCGYl6EmhSiISAZJCgndGeMAiQKGPXGLB0JWONijMzuvKsm5MexjcSVe0Vm/ac4BKTqY10U9cgNEJJdksV5JlCXtSoZRV5Pldda4GQSsYkRVs5LMyZK9UFwdyrZFKlbmkM6CESfpdMcTVRVRhUkCkMh6uCwkUYCIQCIyJ0t00FBk3CPNItV1KdsWoR5SMoiMNy8S6LNasbhtcXCEdUBep46akxYGUBYwqmKtqmCdZAOdSxUrKySsTYsCJE5lRKxanLWKUpGwPBI3iZP3Ow+SOAXPcnptFRdZkP03sr4PvWjFEIEkTahPAk5S5RABJExJkvxMGs6zWKuij8RVDuKVqGKJfkksJDw1CQMlKTxJ4YizWWGZJA6cJJMVZVmrLDmkLlZKxt9NpSDT6TS3C3by5naJWjBRWETA4IEqqiJRZwvyQEgyk7fq1qoqVoq9n/a8ocSAfPfdd9ja2oJhGDMTwPK0WywYYaCIQhB1yYE0ChKnJGmAiJqxW+WqVRXVxPM8TCYTvH37Nl9Anj9/jg8++CC4jEERISns9Xgl5ShYsoIhCkhSWJKoRhwUVa9aFVWV4j3H8zzYto2joyOpgPgAJgD2+n3z4OhouilrUbKo54gONEZZId5rRF3BKc2XFqUioqCE7RcGnQgUafPfPFgpkee0Wv7BeKzsnfXtyBeIPEHi8ePHUwBPAfzac/1hWLk3ao6Q6FSJpM/lTfEI2y4yyi0ysZA3lypublXcCHncpESRvCHDWs2DlRLex1OGAH4N4OlZH89ksQYA4Dj+UZY3VsaEtaigLevLErFaceoiohZFlnSLsFZFjXHw7RaO6L4tJYM4jn/IO8rLfvN5AlMUICKgyIIiq1rUOVek/TuupxzGOKvkgNiOO2OxbNtOVMWqAjBZvwzRsQjR88nTQJF1IeuyBwDzslJRz2FLvJ73l7ggvcwLAM+ePcONGzeg63roub51ACbrF5FkVFsGFEmzRhUHAIt+jud5mE6nqUq8qQDZ29vD+++/D8dxMlVJ0oAgO0fkpSBZAZEBR965o6iQLeNAmrbEKwpIUOrt9cyXg8H0ctaOX5a6pH3dtCoiSyWyqkVdQnaewZw0q+W/nAiWeGPLvGyp17G9VyKdKWqpfpGSsEjZN21ZOOkId9qz/ZIsApcnHPOeM5Lu4znKK9ESbxKLNQCA8WQWEDqoZ1kwWaYdy/J4mi9AhppkgaOOJdwi1YSNAo6LV6Il3sQZxPO8CR3Ur127xg3qVYBFxkIGaaFI2+HLtlJ1h4HdhwR0eqlR38ck15AOAC9evMD7779/7oKbssAoCiTR7VlVRBYQReeMOsEQtk+WgJ4EkCCod7v60+HQuSnraJwHFDK2FwVJHjmjzqFbRs4IDeim/3QyFQ/oQiGdDeqTif+MflPT6TRRSA8L4Em3ixYBRC6cGbavyLTzpKPkecBR9LI7dVATstrlbB5RniUJ6Ekt1uBdMHcH5A08f/4c165dg2EYoQtDl6EuWV5bZlCXYZfqOthXBWvF5g/XC4L5QLTTpz4n/eXLl7h8+XJwbkhRYBS5ryybVdXQXaWjfh5T+LPmD2GLxeaQpbb+FVvuTWOZitxXxFKJ2CrR+6KPLUJFShZkSf4Wa68Mw/8KQKL8AQDCF0148uSJ++DBgwmA17bj3QGws7y8jNFohKWlJViWFbmWVJ5HdhnPl60gWTp8Vaebl22bRPehT7F1XReTyQSep/w/AH8H4JvHjx8f56EgtHfziM06PT3l2qw8VUDm8/NSkCrBUaXcUYS1ou3VYBDEDS9p/kgDSGCzOh39m9kKgVNrMMK+vDytThaQyrZNRSpFUqiIvSLbTNP/Jo29SmSxWJvlOP4ugFvLy8s4PT1Fu90+Z7PKDNQyrVQVqklVtk1lKgVPOVh75brKvwD426T2Ko2CBBLl+75DbNZoNAom9cV9IEk6rWx1qKKKFGWb8rREZSlF2DZS4qXslZPGXqUFJLBZ7bb2FWuzyrRISTq4DFjKgGdRM4Xoa8uqXqWyWCE2a5e2Wa1WK9ZmVbkyJbNTVgWOumeKJPZqPB7j8PCQrl79C4C/T2Ov0irIOamibRYZE8ly1C/LTsm0WGXAUTWlkKkmoupBpj9R9gpp7VUWQAKbZejqF2Tj3t4ejo+Pz8lcnlWstEesovLIvOaFPDt+2twxmUxmppZoKr7IYq9SA0JPXrQdbwAA+/v751REVliXrS4yVKMoJZmXffIGhqceZ3OvEk1OlKUgAHBEVKTV0r4kG1+8eIHhcCg8eFiUkpRtu+YVjqKVIqq0S6uHoeNLSj1ST8ZKDQitIuOx+4xWEdd1Z1SkCkoiE6o8Ot+8dPysRZk0z+Oph+0g8dR22QoyoyJLS9rXtIqcnJzMLHiQt3WqspJUCY6iK015A0OqVbR6mIb/tQz1SFXmDSv52ra/DWB3OByi3W5jZWUFuq5D1/XKlniLLgUvYsfPExgCiOM4GAwGVPZQ/k+W0q5MBWFURP2W/HO0iuRV4s0DhLrCUbXXLgIYrnqY3rey1COzgnBU5CZRkVarhdXVVWiaxl2etI5KMm8duIqqkOS1uOrhKv8kSz1kKciMirTb6p94WSStElQJhHk+upehJlmA4VauDO9PMtVDioKwKuI4/i1WRUgWmRfVaDp5PmqSZHoJTz08T/lnmeohU0FmVMSy1Cdk48uXLzEcDjEej4XVoYz8sahwVMkyiW5zHOeceui6/0S2ekhTEFZFXNe/S6sIe77IPJ+GW/dOXpZlSmKtxuMx3r59OzPu4XnKH2Srh2wFmVERTVN/AwAHBwcYj8fBHP0i80cVJjsuKmhJLZPoa5GxNRoOVcVv8lAPqQrCqMie7/vvd7v65enU63U6HYzHY7TbbaiqGoyN1PWMwyodoesCrQyIaGtFSryW5T93HOWfAfwK70bNjysLyBkkp8RqTafeNQC7JycnsCwLo9EI7XYbpmkKr4BSB5s1j3BU7XMMs1auq/wjZa1ey+7Psi3WOatlmurvAeDVq1eR87TyCux1mrpS9aN9mcDwrJWm4fd5WavcFIS1Wq7rb3SX9avTqdftdruBihCrVbXVExvbVlyeEN3Gs1atln9g28r/zsta5QoIx2p9QKwWqWq1Wi2u1WqAqQccMiGKamHWynGU3+ZprfK2WOeslq4rvyNWi1S1RJcszVrhmodxlTrCkZu1UvG7vK1V7grCWi3Pw2ZnSbtg2/5at9sNqlqKogjP1SpbNRo4it3GrVqZeGo7yK1qVSggrNUikxmJ1RqNRmi1WqlLv3Xp3A0I6eE4X7XCPxVhrYqyWOesFoB/oKtaZH3fyWSSuHPVZdJjVStfVc0rYXCc9Z1CrFVhCsJaLQDXVc0/8X3lBj0+0mq1Sl26dJGP1lUJ7lHjHYrqfQFfeVqUtSoUEMZq7fm+8p5pKZbrYpNA0u/3I2f9VgGCpoPLqVbFXdeDnaWr694fPVd9QsHxuqh+WxggLCSui5WlJW3Dtv1VMhWF5JE8LivdAFNep88Uyi3/v2xb/W0ZcBQOCCe0b4GZisJCUiebNY+Wp/xQrvyuyFBeVkiPDe3ff/89xuNxbGgvcrwkaxivCxxVrViVEcpLVxBeaAewT5TENM3MSlJVhWjgSFWxKjSUVwIQNo/QkJyenp6zW0kuMV2ncZRFhoM+M1AAjtdl9dPSABGFxLKsc8G9ChDUudNWIdvUAY7SARGBhK5uAch8HsmiB/yy/47rukGFqupwVAIQUUgMw8B0Os2kJosOTNkVMNu2MR6P4TgODg8PKw9HZQARgeTo6Ch1LmngKP81bdsOVGMwGMB13crDUSlA4iDhhXfZuWRegakSHEQ1JpNJ5eGoHCBhkCwtaZZt+6s8SHiZJO+OXWTnqjMcnueFhnHLwn+5bnBeRyXhqCQgHEj+YNu+aVqwXBebNCQycsk8q0mZcBDVsG37XN7Qde+Pth2cEfhlVeGoLCAUJN8DOMbZ3C0yC/j09BSmaeLo6GimypVUTeoGTNFwpXk+UY3pdIo3b96cyxuK6n1BTTz8BsB3ZQ0CijQFNWiff/75BoCbAH4J4AqAn5HH1tfX0Wq1sLGxAVVVg2WFyoJgkZXHtm1Mp1N4nserUlU+b9RKQWJzSVs1bMdfI2oyGAwKGzOpm5rkDUecalgmnp6dCVgrOGoDCDeXOL6l68rY83CNrnKRMRPbtksfgV8EOOiswatSaSp+d3YOeeXzRq0B4eUSz8MmgP1OR12xbb9LICFqQqapVF1N6ggHqwQQ15AAAAOFSURBVBrHx8czqtFq4cBx8Fvfx7d1yRu1zSAxucQC8HPDUH5s2/5P6WxiWRY2NjagKAra7TZ0XQ+AmXcI8sosZKoInTVs28bR0V9mo2safu+6+Fe8u8rspG6qUVsFiVGTDQD7S0tqx7b9PptNTNPEdDqFoijBrVET8X2JYozH48BOHR8fw/O8AA7LwnPXxT/6Pr6us2rMhYJEqYmmKjuu539GHr9w4cLZF2gF1a5WqxUoSlUgqCIcnucFiuG6bqAYAGZUQ1XxG8/D1/OgGnMHyBkkJoA+qHKwaShXprb/IAwURVFmQCmis9dFZWgwPM/D27dvuWDouv/EcZQ9ukIF4Ojx48fTeehXcwNImJoAuGJZuDWZ4DYPlPX19RlFCRtsrCMEaV5DFAzD8P5k2+o3Z2DMlWrMNSAcNQlAabVwdzzGhzxQLly4MAPKO9uglqImRcNB1r8VAcM0vW+nU/XfWDDmSTXmHpA4UCwLu5MJdsh+a2trM4pC4Gi1WsE4SlEWrKjXIJfmJicvkfvhYPhfT6fKfywKGAsBSBwopqlcnU79j1lQWFhImVjTNPi+zz0XpejgntY+0VCQlVhoKM5ZKR1f2g6eLRoYCwVIHCiapvRc1/+U3peFhdgxVlmSAFO0yhAgiH2il1Iio948KABAU/GF62GwqGAsJCBxoACAZSpbk6l/LwwW0zQDZSFw0MDIgiYpSK7rnrtPWycRKAwDX9k2/nx2d6HBWGhAIkABgUVRoFumsj2e+LdYWOhOSqsL2c5TGbqlHc1nISCNnJTEPu/NmzczQPCgME3/G3uq/KcPOBQUWHQwGkDOg6IA6PFgAaBapnKdVRYAWF1dPfd6pmkG0Jz7wM/GXpKeU08goBWBhYG9YhcPCAAwDXw1tfEdAC8EigEAf5HBaABJDws0TekZhn91PMZN3mvwoKHhoS1bElvFWiS2HR4ecrdbFp46tvLM9fwBY58aKBpAcoFlBhhFUSxDxyVN9y+NRrgc9Zo8eJKc0RcGAWmtFl66Ll45Dl75PiYcIBooGkByhQUhwMxA864SpHQ1DSuq6vcVFd3RCJsy3kurjQPfw9BzceR6yqHn+UPqYRYGFgg0UDSAFA1MFDRceDI2HgRhMDRANIBUFhpReJI2HgQNDA0gcwlPmtZA0LSmNa1pTWta05rWtKY1rWlNa1rTmta0pjWtaU1rWnz7b9mSqbMiLJplAAAAAElFTkSuQmCC' led_red_on = b'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' led_yellow_on = b'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' rotary_scale = b'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' led_green = b'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' led_red = b'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' rotary_gauge_volt = b'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' led_yellow = b'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' minus = b'iVBORw0KGgoAAAANSUhEUgAAABMAAAAJCAYAAADQHRcxAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4gMQDyofad67hgAAAB1pVFh0Q29tbWVudAAAAAAAQ3JlYXRlZCB3aXRoIEdJTVBkLmUHAAAAHUlEQVQoz2NgGBGAEY3/nxIzGCk0CMUcqrpshAAAXdADBFRH3fkAAAAASUVORK5CYII=' led_green_on = b'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' rotary_gauge_bar = b'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' rotary_gauge_bg = b'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' thermo = b'iVBORw0KGgoAAAANSUhEUgAAAMgAAADICAYAAACtWK6eAAAACXBIWXMAAC4jAAAuIwF4pT92AAAGtmlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxNDIgNzkuMTYwOTI0LCAyMDE3LzA3LzEzLTAxOjA2OjM5ICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdEV2dD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlRXZlbnQjIiB4bWxuczpkYz0iaHR0cDovL3B1cmwub3JnL2RjL2VsZW1lbnRzLzEuMS8iIHhtbG5zOnBob3Rvc2hvcD0iaHR0cDovL25zLmFkb2JlLmNvbS9waG90b3Nob3AvMS4wLyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgKFdpbmRvd3MpIiB4bXA6Q3JlYXRlRGF0ZT0iMjAxOC0wNi0wN1QxNDoxMDo1MS0wNTowMCIgeG1wOk1ldGFkYXRhRGF0ZT0iMjAxOC0wNi0wN1QxNzoxNTo0MC0wNTowMCIgeG1wOk1vZGlmeURhdGU9IjIwMTgtMDYtMDdUMTc6MTU6NDAtMDU6MDAiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MWU1YWFlYTktNTg1NC0yNDRjLTkyODEtYjYyNDUwZjBlZTEyIiB4bXBNTTpEb2N1bWVudElEPSJhZG9iZTpkb2NpZDpwaG90b3Nob3A6ZjRmNTU0ZTQtOWQxYi03MjQ5LWJmOTItY2I1MTlmODI3YmI1IiB4bXBNTTpPcmlnaW5hbERvY3VtZW50SUQ9InhtcC5kaWQ6NjY0MzBlYTctMzYxOC00MzRhLWJiZjMtZTNhMzg3M2UxYzIyIiBkYzpmb3JtYXQ9ImltYWdlL3BuZyIgcGhvdG9zaG9wOkNvbG9yTW9kZT0iMyIgcGhvdG9zaG9wOklDQ1Byb2ZpbGU9InNSR0IgSUVDNjE5NjYtMi4xIj4gPHhtcE1NOkhpc3Rvcnk+IDxyZGY6U2VxPiA8cmRmOmxpIHN0RXZ0OmFjdGlvbj0iY3JlYXRlZCIgc3RFdnQ6aW5zdGFuY2VJRD0ieG1wLmlpZDo2NjQzMGVhNy0zNjE4LTQzNGEtYmJmMy1lM2EzODczZTFjMjIiIHN0RXZ0OndoZW49IjIwMTgtMDYtMDdUMTQ6MTA6NTEtMDU6MDAiIHN0RXZ0OnNvZnR3YXJlQWdlbnQ9IkFkb2JlIFBob3Rvc2hvcCBDQyAoV2luZG93cykiLz4gPHJkZjpsaSBzdEV2dDphY3Rpb249InNhdmVkIiBzdEV2dDppbnN0YW5jZUlEPSJ4bXAuaWlkOjBmYTQ3MjIzLWI2NmYtYzA0Yy04MjVkLTk0OTkxZDYwOTExZSIgc3RFdnQ6d2hlbj0iMjAxOC0wNi0wN1QxNDoxMDo1MS0wNTowMCIgc3RFdnQ6c29mdHdhcmVBZ2VudD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgc3RFdnQ6Y2hhbmdlZD0iLyIvPiA8cmRmOmxpIHN0RXZ0OmFjdGlvbj0ic2F2ZWQiIHN0RXZ0Omluc3RhbmNlSUQ9InhtcC5paWQ6MWU1YWFlYTktNTg1NC0yNDRjLTkyODEtYjYyNDUwZjBlZTEyIiBzdEV2dDp3aGVuPSIyMDE4LTA2LTA3VDE3OjE1OjQwLTA1OjAwIiBzdEV2dDpzb2Z0d2FyZUFnZW50PSJBZG9iZSBQaG90b3Nob3AgQ0MgKFdpbmRvd3MpIiBzdEV2dDpjaGFuZ2VkPSIvIi8+IDwvcmRmOlNlcT4gPC94bXBNTTpIaXN0b3J5PiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pj9yLJwAABIQSURBVHic7d19kBTl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' tank = b'iVBORw0KGgoAAAANSUhEUgAAAMgAAADICAYAAACtWK6eAAAACXBIWXMAAC4jAAAuIwF4pT92AAAGu2lUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxNDIgNzkuMTYwOTI0LCAyMDE3LzA3LzEzLTAxOjA2OjM5ICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdEV2dD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlRXZlbnQjIiB4bWxuczpwaG90b3Nob3A9Imh0dHA6Ly9ucy5hZG9iZS5jb20vcGhvdG9zaG9wLzEuMC8iIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgKFdpbmRvd3MpIiB4bXA6Q3JlYXRlRGF0ZT0iMjAxOC0wNi0wN1QxODoxODo0Ny0wNTowMCIgeG1wOk1ldGFkYXRhRGF0ZT0iMjAxOC0wNi0wN1QxODoxODo0Ny0wNTowMCIgeG1wOk1vZGlmeURhdGU9IjIwMTgtMDYtMDdUMTg6MTg6NDctMDU6MDAiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NThiMzY4M2QtMjJmNi1mYTRkLTk3NDYtMTVhMTRmODlmMDFjIiB4bXBNTTpEb2N1bWVudElEPSJhZG9iZTpkb2NpZDpwaG90b3Nob3A6ZmM4ZDk3N2MtODMyYS0zZDRmLWI5M2QtMTUwOTgwMzhlMjIzIiB4bXBNTTpPcmlnaW5hbERvY3VtZW50SUQ9InhtcC5kaWQ6MGEwMWI1NzYtNWU2ZC03ZDQ4LTlmZWQtNTY2ZWIzMjY3M2UzIiBwaG90b3Nob3A6Q29sb3JNb2RlPSIzIiBwaG90b3Nob3A6SUNDUHJvZmlsZT0ic1JHQiBJRUM2MTk2Ni0yLjEiIGRjOmZvcm1hdD0iaW1hZ2UvcG5nIj4gPHhtcE1NOkhpc3Rvcnk+IDxyZGY6U2VxPiA8cmRmOmxpIHN0RXZ0OmFjdGlvbj0iY3JlYXRlZCIgc3RFdnQ6aW5zdGFuY2VJRD0ieG1wLmlpZDowYTAxYjU3Ni01ZTZkLTdkNDgtOWZlZC01NjZlYjMyNjczZTMiIHN0RXZ0OndoZW49IjIwMTgtMDYtMDdUMTg6MTg6NDctMDU6MDAiIHN0RXZ0OnNvZnR3YXJlQWdlbnQ9IkFkb2JlIFBob3Rvc2hvcCBDQyAoV2luZG93cykiLz4gPHJkZjpsaSBzdEV2dDphY3Rpb249InNhdmVkIiBzdEV2dDppbnN0YW5jZUlEPSJ4bXAuaWlkOjU4YjM2ODNkLTIyZjYtZmE0ZC05NzQ2LTE1YTE0Zjg5ZjAxYyIgc3RFdnQ6d2hlbj0iMjAxOC0wNi0wN1QxODoxODo0Ny0wNTowMCIgc3RFdnQ6c29mdHdhcmVBZ2VudD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgc3RFdnQ6Y2hhbmdlZD0iLyIvPiA8L3JkZjpTZXE+IDwveG1wTU06SGlzdG9yeT4gPHBob3Rvc2hvcDpEb2N1bWVudEFuY2VzdG9ycz4gPHJkZjpCYWc+IDxyZGY6bGk+NzQ3QkE5OEM3RUFBRUJEOTY5REQ1MjY5Njg5RTk3MjE8L3JkZjpsaT4gPHJkZjpsaT5hZG9iZTpkb2NpZDpwaG90b3Nob3A6ZjRmNTU0ZTQtOWQxYi03MjQ5LWJmOTItY2I1MTlmODI3YmI1PC9yZGY6bGk+IDwvcmRmOkJhZz4gPC9waG90b3Nob3A6RG9jdW1lbnRBbmNlc3RvcnM+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+x3OMvQAADFlJREFUeJzt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' drop = b'iVBORw0KGgoAAAANSUhEUgAAAMgAAADICAYAAACtWK6eAAAACXBIWXMAAC4jAAAuIwF4pT92AAAF62lUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxNDIgNzkuMTYwOTI0LCAyMDE3LzA3LzEzLTAxOjA2OjM5ICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdEV2dD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlRXZlbnQjIiB4bWxuczpkYz0iaHR0cDovL3B1cmwub3JnL2RjL2VsZW1lbnRzLzEuMS8iIHhtbG5zOnBob3Rvc2hvcD0iaHR0cDovL25zLmFkb2JlLmNvbS9waG90b3Nob3AvMS4wLyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgKFdpbmRvd3MpIiB4bXA6Q3JlYXRlRGF0ZT0iMjAxOC0wNi0wOFQyMToxMjowOS0wNTowMCIgeG1wOk1ldGFkYXRhRGF0ZT0iMjAxOC0wNi0wOFQyMToxMjowOS0wNTowMCIgeG1wOk1vZGlmeURhdGU9IjIwMTgtMDYtMDhUMjE6MTI6MDktMDU6MDAiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6YWRjYzQyY2EtYWE0MC0wYjQ1LWI5ZjctZDMxYjYxNzExYTFhIiB4bXBNTTpEb2N1bWVudElEPSJhZG9iZTpkb2NpZDpwaG90b3Nob3A6MDhiYTI0YWQtOWNjMC04MjRjLWE4ODUtZGZiZjRhNTg3MTZiIiB4bXBNTTpPcmlnaW5hbERvY3VtZW50SUQ9InhtcC5kaWQ6OGJmZjNkZTctMjUyOC1kYTQwLTkxYzktYTU5NTZjZjFkYmI3IiBkYzpmb3JtYXQ9ImltYWdlL3BuZyIgcGhvdG9zaG9wOkNvbG9yTW9kZT0iMyIgcGhvdG9zaG9wOklDQ1Byb2ZpbGU9InNSR0IgSUVDNjE5NjYtMi4xIj4gPHhtcE1NOkhpc3Rvcnk+IDxyZGY6U2VxPiA8cmRmOmxpIHN0RXZ0OmFjdGlvbj0iY3JlYXRlZCIgc3RFdnQ6aW5zdGFuY2VJRD0ieG1wLmlpZDo4YmZmM2RlNy0yNTI4LWRhNDAtOTFjOS1hNTk1NmNmMWRiYjciIHN0RXZ0OndoZW49IjIwMTgtMDYtMDhUMjE6MTI6MDktMDU6MDAiIHN0RXZ0OnNvZnR3YXJlQWdlbnQ9IkFkb2JlIFBob3Rvc2hvcCBDQyAoV2luZG93cykiLz4gPHJkZjpsaSBzdEV2dDphY3Rpb249InNhdmVkIiBzdEV2dDppbnN0YW5jZUlEPSJ4bXAuaWlkOmFkY2M0MmNhLWFhNDAtMGI0NS1iOWY3LWQzMWI2MTcxMWExYSIgc3RFdnQ6d2hlbj0iMjAxOC0wNi0wOFQyMToxMjowOS0wNTowMCIgc3RFdnQ6c29mdHdhcmVBZ2VudD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgc3RFdnQ6Y2hhbmdlZD0iLyIvPiA8L3JkZjpTZXE+IDwveG1wTU06SGlzdG9yeT4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz7E3fwHAAAME0lEQVR4nO3d328U1xUH8DNes8uCcSH8iC3ZkcG4doIMUeMSWa34kTYKiGCCYpsfIWnAvOS1MqJ/ApZ4bB4KVJXaqk1LH6qm6kMrNQUJUQFGVkKCLcAJEWoWTKlim6Vm5Z0+kK2H2TuzM7sz98659/t5iMgs9h48851z7nh21yIPmUymMDc3V+/1OIAu1q1bd39ycnK16LE694b29va/EpGNcIApJicnVxGRvW3btl+5H7Nc/2/LKQkg0ayyPxDCAeBkERHVExE1NTV9kcvlhH/LtpEb0Jdl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'
# signature types SIGHASH_ALL = 1 SIGHASH_NONE = 2 SIGHASH_SINGLE = 3 SIGHASH_FORKID = 0x40 SIGHASH_ANYONECANPAY = 0x80
sighash_all = 1 sighash_none = 2 sighash_single = 3 sighash_forkid = 64 sighash_anyonecanpay = 128
#! /usr/bin/env python3 n, m = map(int, input().split()) if n == 3: print(3, 0) print(3, 1, 2) else: print(0, 2) print(1, 2) print(3, 4)
(n, m) = map(int, input().split()) if n == 3: print(3, 0) print(3, 1, 2) else: print(0, 2) print(1, 2) print(3, 4)
# # PySNMP MIB module LIGO-802DOT11-EXT-MIB (http://snmplabs.com/pysmi) # ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/LIGO-802DOT11-EXT-MIB # Produced by pysmi-0.3.4 at Wed May 1 14:07:06 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) # ObjectIdentifier, OctetString, Integer = mibBuilder.importSymbols("ASN1", "ObjectIdentifier", "OctetString", "Integer") NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues") ValueRangeConstraint, SingleValueConstraint, ValueSizeConstraint, ConstraintsIntersection, ConstraintsUnion = mibBuilder.importSymbols("ASN1-REFINEMENT", "ValueRangeConstraint", "SingleValueConstraint", "ValueSizeConstraint", "ConstraintsIntersection", "ConstraintsUnion") InterfaceIndex, ifPhysAddress, ifIndex = mibBuilder.importSymbols("IF-MIB", "InterfaceIndex", "ifPhysAddress", "ifIndex") ligoMgmt, = mibBuilder.importSymbols("LIGOWAVE-MIB", "ligoMgmt") NotificationGroup, ModuleCompliance = mibBuilder.importSymbols("SNMPv2-CONF", "NotificationGroup", "ModuleCompliance") sysLocation, = mibBuilder.importSymbols("SNMPv2-MIB", "sysLocation") Bits, MibScalar, MibTable, MibTableRow, MibTableColumn, ModuleIdentity, Counter32, Integer32, Gauge32, iso, NotificationType, Counter64, Unsigned32, IpAddress, MibIdentifier, TimeTicks, ObjectIdentity = mibBuilder.importSymbols("SNMPv2-SMI", "Bits", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "ModuleIdentity", "Counter32", "Integer32", "Gauge32", "iso", "NotificationType", "Counter64", "Unsigned32", "IpAddress", "MibIdentifier", "TimeTicks", "ObjectIdentity") MacAddress, DisplayString, TextualConvention, TruthValue = mibBuilder.importSymbols("SNMPv2-TC", "MacAddress", "DisplayString", "TextualConvention", "TruthValue") ligo802dot11ExtMIB = ModuleIdentity((1, 3, 6, 1, 4, 1, 32750, 3, 5)) ligo802dot11ExtMIB.setRevisions(('2010-03-31 00:00', '2009-05-15 00:00', '2008-12-12 00:00',)) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): if mibBuilder.loadTexts: ligo802dot11ExtMIB.setRevisionsDescriptions(('Added ligoDot11IfAssocNodeCount.', 'Added ligoDot11RemoteNodeStatsTable and ligoRemoteNodeConnected, ligoRemoteNodeDisconnected notifications.', 'First revision.',)) if mibBuilder.loadTexts: ligo802dot11ExtMIB.setLastUpdated('201003310000Z') if mibBuilder.loadTexts: ligo802dot11ExtMIB.setOrganization('LigoWave') if mibBuilder.loadTexts: ligo802dot11ExtMIB.setContactInfo(' LigoWave Customer Support E-mail: support@ligowave.com') if mibBuilder.loadTexts: ligo802dot11ExtMIB.setDescription('The LigoWave 802.11 Extension MIB.') ligo802dot11ExtMIBObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1)) ligoDot11Notifs = MibIdentifier((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 0)) ligoDot11Info = MibIdentifier((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 1)) ligoDot11Conf = MibIdentifier((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 2)) ligoDot11Stats = MibIdentifier((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 3)) ligoDot11IfConfTable = MibTable((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 2, 1), ) if mibBuilder.loadTexts: ligoDot11IfConfTable.setStatus('current') if mibBuilder.loadTexts: ligoDot11IfConfTable.setDescription('Wireless interface configuration table.') ligoDot11IfConfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 2, 1, 1), ).setIndexNames((0, "IF-MIB", "ifIndex")) if mibBuilder.loadTexts: ligoDot11IfConfEntry.setStatus('current') if mibBuilder.loadTexts: ligoDot11IfConfEntry.setDescription('Wireless interface configuration table entry.') ligoDot11IfParentIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 2, 1, 1, 1), InterfaceIndex()).setMaxAccess("readonly") if mibBuilder.loadTexts: ligoDot11IfParentIndex.setStatus('current') if mibBuilder.loadTexts: ligoDot11IfParentIndex.setDescription("Wireless interface's parent index, which corresponds to ifIndex in MIB-II interfaces table. This is only applicable if the interface is virtual and it is created under some other interface, like it is for Atheros cards when using MadWiFi driver, where parent interfaces are wifi0, wifi1, etc.") ligoDot11IfProtocol = MibTableColumn((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 2, 1, 1, 2), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 15))).setMaxAccess("readonly") if mibBuilder.loadTexts: ligoDot11IfProtocol.setStatus('current') if mibBuilder.loadTexts: ligoDot11IfProtocol.setDescription("Protocol string, for example 'IEEE 802.11g'.") ligoDot11IfMode = MibTableColumn((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 2, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("auto", 0), ("adhoc", 1), ("managed", 2), ("master", 3), ("repeater", 4), ("secondary", 5), ("monitor", 6)))).setMaxAccess("readonly") if mibBuilder.loadTexts: ligoDot11IfMode.setStatus('current') if mibBuilder.loadTexts: ligoDot11IfMode.setDescription('Wireless interface operation mode') ligoDot11IfESSID = MibTableColumn((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 2, 1, 1, 4), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 32))).setMaxAccess("readonly") if mibBuilder.loadTexts: ligoDot11IfESSID.setStatus('current') if mibBuilder.loadTexts: ligoDot11IfESSID.setDescription('ESSID') ligoDot11IfAccessPoint = MibTableColumn((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 2, 1, 1, 5), MacAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: ligoDot11IfAccessPoint.setStatus('current') if mibBuilder.loadTexts: ligoDot11IfAccessPoint.setDescription("Access point's MAC address if working in managed mode and connected. Current interface's MAC address, when working in master mode.") ligoDot11IfCountryCode = MibTableColumn((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 2, 1, 1, 6), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ligoDot11IfCountryCode.setStatus('current') if mibBuilder.loadTexts: ligoDot11IfCountryCode.setDescription('Country code.') ligoDot11IfFrequency = MibTableColumn((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 2, 1, 1, 7), Integer32()).setUnits('MHz').setMaxAccess("readonly") if mibBuilder.loadTexts: ligoDot11IfFrequency.setStatus('current') if mibBuilder.loadTexts: ligoDot11IfFrequency.setDescription('Current frequency as reported by driver.') ligoDot11IfChannel = MibTableColumn((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 2, 1, 1, 8), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ligoDot11IfChannel.setStatus('current') if mibBuilder.loadTexts: ligoDot11IfChannel.setDescription('Channel number.') ligoDot11IfChannelBandwidth = MibTableColumn((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 2, 1, 1, 9), Integer32()).setUnits('MHz').setMaxAccess("readonly") if mibBuilder.loadTexts: ligoDot11IfChannelBandwidth.setStatus('current') if mibBuilder.loadTexts: ligoDot11IfChannelBandwidth.setDescription('Channel bandwidth.') ligoDot11IfTxPower = MibTableColumn((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 2, 1, 1, 10), Gauge32()).setUnits('dBm').setMaxAccess("readonly") if mibBuilder.loadTexts: ligoDot11IfTxPower.setStatus('current') if mibBuilder.loadTexts: ligoDot11IfTxPower.setDescription('Transmit power in dBm.') ligoDot11IfBitRate = MibTableColumn((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 2, 1, 1, 11), Gauge32()).setUnits('kbit/s').setMaxAccess("readonly") if mibBuilder.loadTexts: ligoDot11IfBitRate.setStatus('current') if mibBuilder.loadTexts: ligoDot11IfBitRate.setDescription('Transmission bitrate.') ligoDot11IfLinkQuality = MibTableColumn((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 2, 1, 1, 12), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ligoDot11IfLinkQuality.setStatus('current') if mibBuilder.loadTexts: ligoDot11IfLinkQuality.setDescription('Link quality value.') ligoDot11IfMaxLinkQuality = MibTableColumn((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 2, 1, 1, 13), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ligoDot11IfMaxLinkQuality.setStatus('current') if mibBuilder.loadTexts: ligoDot11IfMaxLinkQuality.setDescription('Maximum possible link quality value for current wireless card.') ligoDot11IfSignalLevel = MibTableColumn((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 2, 1, 1, 14), Integer32()).setUnits('dBm').setMaxAccess("readonly") if mibBuilder.loadTexts: ligoDot11IfSignalLevel.setStatus('current') if mibBuilder.loadTexts: ligoDot11IfSignalLevel.setDescription('Signal level.') ligoDot11IfNoiseLevel = MibTableColumn((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 2, 1, 1, 15), Integer32()).setUnits('dBm').setMaxAccess("readonly") if mibBuilder.loadTexts: ligoDot11IfNoiseLevel.setStatus('current') if mibBuilder.loadTexts: ligoDot11IfNoiseLevel.setDescription('Noise level.') ligoDot11IfAssocNodeCount = MibTableColumn((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 2, 1, 1, 16), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ligoDot11IfAssocNodeCount.setStatus('current') if mibBuilder.loadTexts: ligoDot11IfAssocNodeCount.setDescription('Number of associated nodes when working in access point mode. 1 - if associated to remote access point in client mode.') ligoDot11IfErrStatsTable = MibTable((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 3, 1), ) if mibBuilder.loadTexts: ligoDot11IfErrStatsTable.setStatus('current') if mibBuilder.loadTexts: ligoDot11IfErrStatsTable.setDescription('Wireless interface statistics table.') ligoDot11IfErrStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 3, 1, 1), ).setIndexNames((0, "IF-MIB", "ifIndex")) if mibBuilder.loadTexts: ligoDot11IfErrStatsEntry.setStatus('current') if mibBuilder.loadTexts: ligoDot11IfErrStatsEntry.setDescription('Wireless interface statistics table entry.') ligoDot11IfRxInvalidNWID = MibTableColumn((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 3, 1, 1, 1), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ligoDot11IfRxInvalidNWID.setStatus('current') if mibBuilder.loadTexts: ligoDot11IfRxInvalidNWID.setDescription('Number of received packets with invalid NWID/ESSID. Increasing value usually means that there are other stations transmitting on the same channel or adjacent channels.') ligoDot11IfRxInvalidCrypt = MibTableColumn((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 3, 1, 1, 2), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ligoDot11IfRxInvalidCrypt.setStatus('current') if mibBuilder.loadTexts: ligoDot11IfRxInvalidCrypt.setDescription('Number of received packets the hardware was unable to decrypt.') ligoDot11IfRxInvalidFrag = MibTableColumn((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 3, 1, 1, 3), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ligoDot11IfRxInvalidFrag.setStatus('current') if mibBuilder.loadTexts: ligoDot11IfRxInvalidFrag.setDescription('Number of received packets that were missing link layer fragments for complete re-assembly.') ligoDot11IfTxExcessiveRetries = MibTableColumn((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 3, 1, 1, 4), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ligoDot11IfTxExcessiveRetries.setStatus('current') if mibBuilder.loadTexts: ligoDot11IfTxExcessiveRetries.setDescription('Number of packets hardware failed to deliver.') ligoDot11IfInvalidMisc = MibTableColumn((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 3, 1, 1, 5), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ligoDot11IfInvalidMisc.setStatus('current') if mibBuilder.loadTexts: ligoDot11IfInvalidMisc.setDescription('Other packets lost in relation with specific wireless operations.') ligoDot11IfMissedBeacons = MibTableColumn((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 3, 1, 1, 6), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ligoDot11IfMissedBeacons.setStatus('current') if mibBuilder.loadTexts: ligoDot11IfMissedBeacons.setDescription('Number of beacons that should have been sent by remote access point but were not received. Increasing number usually means that communicating peers moved out of range.') ligoDot11RemoteNodeStatsTable = MibTable((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 3, 2), ) if mibBuilder.loadTexts: ligoDot11RemoteNodeStatsTable.setStatus('current') if mibBuilder.loadTexts: ligoDot11RemoteNodeStatsTable.setDescription('Remote node statistics table. This table shows statistics for associated or already disconnected clients on wireless interfaces which are operating in access point mode. For interfaces operating in client mode and associated to remote access point information about access point is shown.') ligoDot11RemoteNodeStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 3, 2, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"), (0, "LIGO-802DOT11-EXT-MIB", "ligoDot11RmtNodeMacAddress")) if mibBuilder.loadTexts: ligoDot11RemoteNodeStatsEntry.setStatus('current') if mibBuilder.loadTexts: ligoDot11RemoteNodeStatsEntry.setDescription('Wireless remote node statistics table entry.') ligoDot11RmtNodeMacAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 3, 2, 1, 1), MacAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: ligoDot11RmtNodeMacAddress.setStatus('current') if mibBuilder.loadTexts: ligoDot11RmtNodeMacAddress.setDescription('Remote node MAC address.') ligoDot11RmtNodeAssociated = MibTableColumn((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 3, 2, 1, 2), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: ligoDot11RmtNodeAssociated.setStatus('current') if mibBuilder.loadTexts: ligoDot11RmtNodeAssociated.setDescription('Remote node is currently associated.') ligoDot11RmtNodeTxBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 3, 2, 1, 3), Counter32()).setUnits('bytes').setMaxAccess("readonly") if mibBuilder.loadTexts: ligoDot11RmtNodeTxBytes.setStatus('current') if mibBuilder.loadTexts: ligoDot11RmtNodeTxBytes.setDescription('Bytes transmitted to remote node. This object is optional.') ligoDot11RmtNodeRxBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 3, 2, 1, 4), Counter32()).setUnits('bytes').setMaxAccess("readonly") if mibBuilder.loadTexts: ligoDot11RmtNodeRxBytes.setStatus('current') if mibBuilder.loadTexts: ligoDot11RmtNodeRxBytes.setDescription('Bytes received from remote node. This object is optional.') ligoDot11RmtNodeAssocTime = MibTableColumn((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 3, 2, 1, 5), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ligoDot11RmtNodeAssocTime.setStatus('current') if mibBuilder.loadTexts: ligoDot11RmtNodeAssocTime.setDescription('UNIX timestamp of the association. This object is optional.') ligoDot11RmtNodeDisassocTime = MibTableColumn((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 3, 2, 1, 6), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: ligoDot11RmtNodeDisassocTime.setStatus('current') if mibBuilder.loadTexts: ligoDot11RmtNodeDisassocTime.setDescription('UNIX timestamp of the disassociation (if remote node recently dissasociated). This object is optional.') ligoFrequencyChange = NotificationType((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 0, 1)).setObjects(("SNMPv2-MIB", "sysLocation"), ("IF-MIB", "ifIndex"), ("LIGO-802DOT11-EXT-MIB", "ligoDot11IfFrequency")) if mibBuilder.loadTexts: ligoFrequencyChange.setStatus('current') if mibBuilder.loadTexts: ligoFrequencyChange.setDescription('This notification is sent on frequency change.') ligoNoiseThresholdReached = NotificationType((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 0, 2)).setObjects(("SNMPv2-MIB", "sysLocation"), ("IF-MIB", "ifIndex"), ("LIGO-802DOT11-EXT-MIB", "ligoDot11IfNoiseLevel")) if mibBuilder.loadTexts: ligoNoiseThresholdReached.setStatus('current') if mibBuilder.loadTexts: ligoNoiseThresholdReached.setDescription('This notification is sent when noise becomes bigger than threshold.') ligoRemoteNodeConnected = NotificationType((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 0, 3)).setObjects(("SNMPv2-MIB", "sysLocation"), ("IF-MIB", "ifPhysAddress"), ("IF-MIB", "ifIndex"), ("LIGO-802DOT11-EXT-MIB", "ligoDot11RmtNodeMacAddress")) if mibBuilder.loadTexts: ligoRemoteNodeConnected.setStatus('current') if mibBuilder.loadTexts: ligoRemoteNodeConnected.setDescription('This notification is sent when remote node associates.') ligoRemoteNodeDisconnected = NotificationType((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 0, 4)).setObjects(("SNMPv2-MIB", "sysLocation"), ("IF-MIB", "ifPhysAddress"), ("IF-MIB", "ifIndex"), ("LIGO-802DOT11-EXT-MIB", "ligoDot11RmtNodeMacAddress")) if mibBuilder.loadTexts: ligoRemoteNodeDisconnected.setStatus('current') if mibBuilder.loadTexts: ligoRemoteNodeDisconnected.setDescription('This notification is sent when remote node dissasociates.') ligoLinkQualThresholdReached = NotificationType((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 0, 5)).setObjects(("SNMPv2-MIB", "sysLocation"), ("IF-MIB", "ifIndex"), ("LIGO-802DOT11-EXT-MIB", "ligoDot11IfLinkQuality")) if mibBuilder.loadTexts: ligoLinkQualThresholdReached.setStatus('current') if mibBuilder.loadTexts: ligoLinkQualThresholdReached.setDescription('This notification is sent when link quality crosses the specified threshold.') mibBuilder.exportSymbols("LIGO-802DOT11-EXT-MIB", ligo802dot11ExtMIB=ligo802dot11ExtMIB, ligoDot11RmtNodeAssociated=ligoDot11RmtNodeAssociated, ligoDot11IfErrStatsEntry=ligoDot11IfErrStatsEntry, ligoDot11IfMode=ligoDot11IfMode, ligoRemoteNodeConnected=ligoRemoteNodeConnected, ligoDot11IfParentIndex=ligoDot11IfParentIndex, ligoDot11RemoteNodeStatsTable=ligoDot11RemoteNodeStatsTable, ligoDot11IfChannel=ligoDot11IfChannel, ligo802dot11ExtMIBObjects=ligo802dot11ExtMIBObjects, ligoDot11Notifs=ligoDot11Notifs, ligoDot11IfConfTable=ligoDot11IfConfTable, ligoDot11RmtNodeTxBytes=ligoDot11RmtNodeTxBytes, ligoNoiseThresholdReached=ligoNoiseThresholdReached, ligoDot11IfCountryCode=ligoDot11IfCountryCode, ligoDot11RemoteNodeStatsEntry=ligoDot11RemoteNodeStatsEntry, ligoDot11IfConfEntry=ligoDot11IfConfEntry, PYSNMP_MODULE_ID=ligo802dot11ExtMIB, ligoDot11IfRxInvalidCrypt=ligoDot11IfRxInvalidCrypt, ligoDot11IfAccessPoint=ligoDot11IfAccessPoint, ligoDot11IfESSID=ligoDot11IfESSID, ligoDot11IfChannelBandwidth=ligoDot11IfChannelBandwidth, ligoDot11IfMaxLinkQuality=ligoDot11IfMaxLinkQuality, ligoDot11IfFrequency=ligoDot11IfFrequency, ligoDot11IfProtocol=ligoDot11IfProtocol, ligoLinkQualThresholdReached=ligoLinkQualThresholdReached, ligoDot11Info=ligoDot11Info, ligoDot11RmtNodeDisassocTime=ligoDot11RmtNodeDisassocTime, ligoDot11IfSignalLevel=ligoDot11IfSignalLevel, ligoDot11IfBitRate=ligoDot11IfBitRate, ligoDot11RmtNodeAssocTime=ligoDot11RmtNodeAssocTime, ligoFrequencyChange=ligoFrequencyChange, ligoDot11Stats=ligoDot11Stats, ligoDot11IfAssocNodeCount=ligoDot11IfAssocNodeCount, ligoDot11IfTxExcessiveRetries=ligoDot11IfTxExcessiveRetries, ligoDot11IfNoiseLevel=ligoDot11IfNoiseLevel, ligoDot11IfTxPower=ligoDot11IfTxPower, ligoDot11IfMissedBeacons=ligoDot11IfMissedBeacons, ligoDot11IfRxInvalidNWID=ligoDot11IfRxInvalidNWID, ligoDot11IfErrStatsTable=ligoDot11IfErrStatsTable, ligoDot11RmtNodeMacAddress=ligoDot11RmtNodeMacAddress, ligoDot11IfRxInvalidFrag=ligoDot11IfRxInvalidFrag, ligoRemoteNodeDisconnected=ligoRemoteNodeDisconnected, ligoDot11RmtNodeRxBytes=ligoDot11RmtNodeRxBytes, ligoDot11Conf=ligoDot11Conf, ligoDot11IfInvalidMisc=ligoDot11IfInvalidMisc, ligoDot11IfLinkQuality=ligoDot11IfLinkQuality)
(object_identifier, octet_string, integer) = mibBuilder.importSymbols('ASN1', 'ObjectIdentifier', 'OctetString', 'Integer') (named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues') (value_range_constraint, single_value_constraint, value_size_constraint, constraints_intersection, constraints_union) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ValueRangeConstraint', 'SingleValueConstraint', 'ValueSizeConstraint', 'ConstraintsIntersection', 'ConstraintsUnion') (interface_index, if_phys_address, if_index) = mibBuilder.importSymbols('IF-MIB', 'InterfaceIndex', 'ifPhysAddress', 'ifIndex') (ligo_mgmt,) = mibBuilder.importSymbols('LIGOWAVE-MIB', 'ligoMgmt') (notification_group, module_compliance) = mibBuilder.importSymbols('SNMPv2-CONF', 'NotificationGroup', 'ModuleCompliance') (sys_location,) = mibBuilder.importSymbols('SNMPv2-MIB', 'sysLocation') (bits, mib_scalar, mib_table, mib_table_row, mib_table_column, module_identity, counter32, integer32, gauge32, iso, notification_type, counter64, unsigned32, ip_address, mib_identifier, time_ticks, object_identity) = mibBuilder.importSymbols('SNMPv2-SMI', 'Bits', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'ModuleIdentity', 'Counter32', 'Integer32', 'Gauge32', 'iso', 'NotificationType', 'Counter64', 'Unsigned32', 'IpAddress', 'MibIdentifier', 'TimeTicks', 'ObjectIdentity') (mac_address, display_string, textual_convention, truth_value) = mibBuilder.importSymbols('SNMPv2-TC', 'MacAddress', 'DisplayString', 'TextualConvention', 'TruthValue') ligo802dot11_ext_mib = module_identity((1, 3, 6, 1, 4, 1, 32750, 3, 5)) ligo802dot11ExtMIB.setRevisions(('2010-03-31 00:00', '2009-05-15 00:00', '2008-12-12 00:00')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): if mibBuilder.loadTexts: ligo802dot11ExtMIB.setRevisionsDescriptions(('Added ligoDot11IfAssocNodeCount.', 'Added ligoDot11RemoteNodeStatsTable and ligoRemoteNodeConnected, ligoRemoteNodeDisconnected notifications.', 'First revision.')) if mibBuilder.loadTexts: ligo802dot11ExtMIB.setLastUpdated('201003310000Z') if mibBuilder.loadTexts: ligo802dot11ExtMIB.setOrganization('LigoWave') if mibBuilder.loadTexts: ligo802dot11ExtMIB.setContactInfo(' LigoWave Customer Support E-mail: support@ligowave.com') if mibBuilder.loadTexts: ligo802dot11ExtMIB.setDescription('The LigoWave 802.11 Extension MIB.') ligo802dot11_ext_mib_objects = mib_identifier((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1)) ligo_dot11_notifs = mib_identifier((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 0)) ligo_dot11_info = mib_identifier((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 1)) ligo_dot11_conf = mib_identifier((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 2)) ligo_dot11_stats = mib_identifier((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 3)) ligo_dot11_if_conf_table = mib_table((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 2, 1)) if mibBuilder.loadTexts: ligoDot11IfConfTable.setStatus('current') if mibBuilder.loadTexts: ligoDot11IfConfTable.setDescription('Wireless interface configuration table.') ligo_dot11_if_conf_entry = mib_table_row((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 2, 1, 1)).setIndexNames((0, 'IF-MIB', 'ifIndex')) if mibBuilder.loadTexts: ligoDot11IfConfEntry.setStatus('current') if mibBuilder.loadTexts: ligoDot11IfConfEntry.setDescription('Wireless interface configuration table entry.') ligo_dot11_if_parent_index = mib_table_column((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 2, 1, 1, 1), interface_index()).setMaxAccess('readonly') if mibBuilder.loadTexts: ligoDot11IfParentIndex.setStatus('current') if mibBuilder.loadTexts: ligoDot11IfParentIndex.setDescription("Wireless interface's parent index, which corresponds to ifIndex in MIB-II interfaces table. This is only applicable if the interface is virtual and it is created under some other interface, like it is for Atheros cards when using MadWiFi driver, where parent interfaces are wifi0, wifi1, etc.") ligo_dot11_if_protocol = mib_table_column((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 2, 1, 1, 2), octet_string().subtype(subtypeSpec=value_size_constraint(0, 15))).setMaxAccess('readonly') if mibBuilder.loadTexts: ligoDot11IfProtocol.setStatus('current') if mibBuilder.loadTexts: ligoDot11IfProtocol.setDescription("Protocol string, for example 'IEEE 802.11g'.") ligo_dot11_if_mode = mib_table_column((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 2, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('auto', 0), ('adhoc', 1), ('managed', 2), ('master', 3), ('repeater', 4), ('secondary', 5), ('monitor', 6)))).setMaxAccess('readonly') if mibBuilder.loadTexts: ligoDot11IfMode.setStatus('current') if mibBuilder.loadTexts: ligoDot11IfMode.setDescription('Wireless interface operation mode') ligo_dot11_if_essid = mib_table_column((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 2, 1, 1, 4), octet_string().subtype(subtypeSpec=value_size_constraint(0, 32))).setMaxAccess('readonly') if mibBuilder.loadTexts: ligoDot11IfESSID.setStatus('current') if mibBuilder.loadTexts: ligoDot11IfESSID.setDescription('ESSID') ligo_dot11_if_access_point = mib_table_column((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 2, 1, 1, 5), mac_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: ligoDot11IfAccessPoint.setStatus('current') if mibBuilder.loadTexts: ligoDot11IfAccessPoint.setDescription("Access point's MAC address if working in managed mode and connected. Current interface's MAC address, when working in master mode.") ligo_dot11_if_country_code = mib_table_column((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 2, 1, 1, 6), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ligoDot11IfCountryCode.setStatus('current') if mibBuilder.loadTexts: ligoDot11IfCountryCode.setDescription('Country code.') ligo_dot11_if_frequency = mib_table_column((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 2, 1, 1, 7), integer32()).setUnits('MHz').setMaxAccess('readonly') if mibBuilder.loadTexts: ligoDot11IfFrequency.setStatus('current') if mibBuilder.loadTexts: ligoDot11IfFrequency.setDescription('Current frequency as reported by driver.') ligo_dot11_if_channel = mib_table_column((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 2, 1, 1, 8), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ligoDot11IfChannel.setStatus('current') if mibBuilder.loadTexts: ligoDot11IfChannel.setDescription('Channel number.') ligo_dot11_if_channel_bandwidth = mib_table_column((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 2, 1, 1, 9), integer32()).setUnits('MHz').setMaxAccess('readonly') if mibBuilder.loadTexts: ligoDot11IfChannelBandwidth.setStatus('current') if mibBuilder.loadTexts: ligoDot11IfChannelBandwidth.setDescription('Channel bandwidth.') ligo_dot11_if_tx_power = mib_table_column((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 2, 1, 1, 10), gauge32()).setUnits('dBm').setMaxAccess('readonly') if mibBuilder.loadTexts: ligoDot11IfTxPower.setStatus('current') if mibBuilder.loadTexts: ligoDot11IfTxPower.setDescription('Transmit power in dBm.') ligo_dot11_if_bit_rate = mib_table_column((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 2, 1, 1, 11), gauge32()).setUnits('kbit/s').setMaxAccess('readonly') if mibBuilder.loadTexts: ligoDot11IfBitRate.setStatus('current') if mibBuilder.loadTexts: ligoDot11IfBitRate.setDescription('Transmission bitrate.') ligo_dot11_if_link_quality = mib_table_column((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 2, 1, 1, 12), gauge32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ligoDot11IfLinkQuality.setStatus('current') if mibBuilder.loadTexts: ligoDot11IfLinkQuality.setDescription('Link quality value.') ligo_dot11_if_max_link_quality = mib_table_column((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 2, 1, 1, 13), gauge32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ligoDot11IfMaxLinkQuality.setStatus('current') if mibBuilder.loadTexts: ligoDot11IfMaxLinkQuality.setDescription('Maximum possible link quality value for current wireless card.') ligo_dot11_if_signal_level = mib_table_column((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 2, 1, 1, 14), integer32()).setUnits('dBm').setMaxAccess('readonly') if mibBuilder.loadTexts: ligoDot11IfSignalLevel.setStatus('current') if mibBuilder.loadTexts: ligoDot11IfSignalLevel.setDescription('Signal level.') ligo_dot11_if_noise_level = mib_table_column((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 2, 1, 1, 15), integer32()).setUnits('dBm').setMaxAccess('readonly') if mibBuilder.loadTexts: ligoDot11IfNoiseLevel.setStatus('current') if mibBuilder.loadTexts: ligoDot11IfNoiseLevel.setDescription('Noise level.') ligo_dot11_if_assoc_node_count = mib_table_column((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 2, 1, 1, 16), gauge32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ligoDot11IfAssocNodeCount.setStatus('current') if mibBuilder.loadTexts: ligoDot11IfAssocNodeCount.setDescription('Number of associated nodes when working in access point mode. 1 - if associated to remote access point in client mode.') ligo_dot11_if_err_stats_table = mib_table((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 3, 1)) if mibBuilder.loadTexts: ligoDot11IfErrStatsTable.setStatus('current') if mibBuilder.loadTexts: ligoDot11IfErrStatsTable.setDescription('Wireless interface statistics table.') ligo_dot11_if_err_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 3, 1, 1)).setIndexNames((0, 'IF-MIB', 'ifIndex')) if mibBuilder.loadTexts: ligoDot11IfErrStatsEntry.setStatus('current') if mibBuilder.loadTexts: ligoDot11IfErrStatsEntry.setDescription('Wireless interface statistics table entry.') ligo_dot11_if_rx_invalid_nwid = mib_table_column((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 3, 1, 1, 1), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ligoDot11IfRxInvalidNWID.setStatus('current') if mibBuilder.loadTexts: ligoDot11IfRxInvalidNWID.setDescription('Number of received packets with invalid NWID/ESSID. Increasing value usually means that there are other stations transmitting on the same channel or adjacent channels.') ligo_dot11_if_rx_invalid_crypt = mib_table_column((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 3, 1, 1, 2), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ligoDot11IfRxInvalidCrypt.setStatus('current') if mibBuilder.loadTexts: ligoDot11IfRxInvalidCrypt.setDescription('Number of received packets the hardware was unable to decrypt.') ligo_dot11_if_rx_invalid_frag = mib_table_column((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 3, 1, 1, 3), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ligoDot11IfRxInvalidFrag.setStatus('current') if mibBuilder.loadTexts: ligoDot11IfRxInvalidFrag.setDescription('Number of received packets that were missing link layer fragments for complete re-assembly.') ligo_dot11_if_tx_excessive_retries = mib_table_column((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 3, 1, 1, 4), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ligoDot11IfTxExcessiveRetries.setStatus('current') if mibBuilder.loadTexts: ligoDot11IfTxExcessiveRetries.setDescription('Number of packets hardware failed to deliver.') ligo_dot11_if_invalid_misc = mib_table_column((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 3, 1, 1, 5), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ligoDot11IfInvalidMisc.setStatus('current') if mibBuilder.loadTexts: ligoDot11IfInvalidMisc.setDescription('Other packets lost in relation with specific wireless operations.') ligo_dot11_if_missed_beacons = mib_table_column((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 3, 1, 1, 6), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ligoDot11IfMissedBeacons.setStatus('current') if mibBuilder.loadTexts: ligoDot11IfMissedBeacons.setDescription('Number of beacons that should have been sent by remote access point but were not received. Increasing number usually means that communicating peers moved out of range.') ligo_dot11_remote_node_stats_table = mib_table((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 3, 2)) if mibBuilder.loadTexts: ligoDot11RemoteNodeStatsTable.setStatus('current') if mibBuilder.loadTexts: ligoDot11RemoteNodeStatsTable.setDescription('Remote node statistics table. This table shows statistics for associated or already disconnected clients on wireless interfaces which are operating in access point mode. For interfaces operating in client mode and associated to remote access point information about access point is shown.') ligo_dot11_remote_node_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 3, 2, 1)).setIndexNames((0, 'IF-MIB', 'ifIndex'), (0, 'LIGO-802DOT11-EXT-MIB', 'ligoDot11RmtNodeMacAddress')) if mibBuilder.loadTexts: ligoDot11RemoteNodeStatsEntry.setStatus('current') if mibBuilder.loadTexts: ligoDot11RemoteNodeStatsEntry.setDescription('Wireless remote node statistics table entry.') ligo_dot11_rmt_node_mac_address = mib_table_column((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 3, 2, 1, 1), mac_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: ligoDot11RmtNodeMacAddress.setStatus('current') if mibBuilder.loadTexts: ligoDot11RmtNodeMacAddress.setDescription('Remote node MAC address.') ligo_dot11_rmt_node_associated = mib_table_column((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 3, 2, 1, 2), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: ligoDot11RmtNodeAssociated.setStatus('current') if mibBuilder.loadTexts: ligoDot11RmtNodeAssociated.setDescription('Remote node is currently associated.') ligo_dot11_rmt_node_tx_bytes = mib_table_column((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 3, 2, 1, 3), counter32()).setUnits('bytes').setMaxAccess('readonly') if mibBuilder.loadTexts: ligoDot11RmtNodeTxBytes.setStatus('current') if mibBuilder.loadTexts: ligoDot11RmtNodeTxBytes.setDescription('Bytes transmitted to remote node. This object is optional.') ligo_dot11_rmt_node_rx_bytes = mib_table_column((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 3, 2, 1, 4), counter32()).setUnits('bytes').setMaxAccess('readonly') if mibBuilder.loadTexts: ligoDot11RmtNodeRxBytes.setStatus('current') if mibBuilder.loadTexts: ligoDot11RmtNodeRxBytes.setDescription('Bytes received from remote node. This object is optional.') ligo_dot11_rmt_node_assoc_time = mib_table_column((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 3, 2, 1, 5), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ligoDot11RmtNodeAssocTime.setStatus('current') if mibBuilder.loadTexts: ligoDot11RmtNodeAssocTime.setDescription('UNIX timestamp of the association. This object is optional.') ligo_dot11_rmt_node_disassoc_time = mib_table_column((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 3, 2, 1, 6), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: ligoDot11RmtNodeDisassocTime.setStatus('current') if mibBuilder.loadTexts: ligoDot11RmtNodeDisassocTime.setDescription('UNIX timestamp of the disassociation (if remote node recently dissasociated). This object is optional.') ligo_frequency_change = notification_type((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 0, 1)).setObjects(('SNMPv2-MIB', 'sysLocation'), ('IF-MIB', 'ifIndex'), ('LIGO-802DOT11-EXT-MIB', 'ligoDot11IfFrequency')) if mibBuilder.loadTexts: ligoFrequencyChange.setStatus('current') if mibBuilder.loadTexts: ligoFrequencyChange.setDescription('This notification is sent on frequency change.') ligo_noise_threshold_reached = notification_type((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 0, 2)).setObjects(('SNMPv2-MIB', 'sysLocation'), ('IF-MIB', 'ifIndex'), ('LIGO-802DOT11-EXT-MIB', 'ligoDot11IfNoiseLevel')) if mibBuilder.loadTexts: ligoNoiseThresholdReached.setStatus('current') if mibBuilder.loadTexts: ligoNoiseThresholdReached.setDescription('This notification is sent when noise becomes bigger than threshold.') ligo_remote_node_connected = notification_type((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 0, 3)).setObjects(('SNMPv2-MIB', 'sysLocation'), ('IF-MIB', 'ifPhysAddress'), ('IF-MIB', 'ifIndex'), ('LIGO-802DOT11-EXT-MIB', 'ligoDot11RmtNodeMacAddress')) if mibBuilder.loadTexts: ligoRemoteNodeConnected.setStatus('current') if mibBuilder.loadTexts: ligoRemoteNodeConnected.setDescription('This notification is sent when remote node associates.') ligo_remote_node_disconnected = notification_type((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 0, 4)).setObjects(('SNMPv2-MIB', 'sysLocation'), ('IF-MIB', 'ifPhysAddress'), ('IF-MIB', 'ifIndex'), ('LIGO-802DOT11-EXT-MIB', 'ligoDot11RmtNodeMacAddress')) if mibBuilder.loadTexts: ligoRemoteNodeDisconnected.setStatus('current') if mibBuilder.loadTexts: ligoRemoteNodeDisconnected.setDescription('This notification is sent when remote node dissasociates.') ligo_link_qual_threshold_reached = notification_type((1, 3, 6, 1, 4, 1, 32750, 3, 5, 1, 0, 5)).setObjects(('SNMPv2-MIB', 'sysLocation'), ('IF-MIB', 'ifIndex'), ('LIGO-802DOT11-EXT-MIB', 'ligoDot11IfLinkQuality')) if mibBuilder.loadTexts: ligoLinkQualThresholdReached.setStatus('current') if mibBuilder.loadTexts: ligoLinkQualThresholdReached.setDescription('This notification is sent when link quality crosses the specified threshold.') mibBuilder.exportSymbols('LIGO-802DOT11-EXT-MIB', ligo802dot11ExtMIB=ligo802dot11ExtMIB, ligoDot11RmtNodeAssociated=ligoDot11RmtNodeAssociated, ligoDot11IfErrStatsEntry=ligoDot11IfErrStatsEntry, ligoDot11IfMode=ligoDot11IfMode, ligoRemoteNodeConnected=ligoRemoteNodeConnected, ligoDot11IfParentIndex=ligoDot11IfParentIndex, ligoDot11RemoteNodeStatsTable=ligoDot11RemoteNodeStatsTable, ligoDot11IfChannel=ligoDot11IfChannel, ligo802dot11ExtMIBObjects=ligo802dot11ExtMIBObjects, ligoDot11Notifs=ligoDot11Notifs, ligoDot11IfConfTable=ligoDot11IfConfTable, ligoDot11RmtNodeTxBytes=ligoDot11RmtNodeTxBytes, ligoNoiseThresholdReached=ligoNoiseThresholdReached, ligoDot11IfCountryCode=ligoDot11IfCountryCode, ligoDot11RemoteNodeStatsEntry=ligoDot11RemoteNodeStatsEntry, ligoDot11IfConfEntry=ligoDot11IfConfEntry, PYSNMP_MODULE_ID=ligo802dot11ExtMIB, ligoDot11IfRxInvalidCrypt=ligoDot11IfRxInvalidCrypt, ligoDot11IfAccessPoint=ligoDot11IfAccessPoint, ligoDot11IfESSID=ligoDot11IfESSID, ligoDot11IfChannelBandwidth=ligoDot11IfChannelBandwidth, ligoDot11IfMaxLinkQuality=ligoDot11IfMaxLinkQuality, ligoDot11IfFrequency=ligoDot11IfFrequency, ligoDot11IfProtocol=ligoDot11IfProtocol, ligoLinkQualThresholdReached=ligoLinkQualThresholdReached, ligoDot11Info=ligoDot11Info, ligoDot11RmtNodeDisassocTime=ligoDot11RmtNodeDisassocTime, ligoDot11IfSignalLevel=ligoDot11IfSignalLevel, ligoDot11IfBitRate=ligoDot11IfBitRate, ligoDot11RmtNodeAssocTime=ligoDot11RmtNodeAssocTime, ligoFrequencyChange=ligoFrequencyChange, ligoDot11Stats=ligoDot11Stats, ligoDot11IfAssocNodeCount=ligoDot11IfAssocNodeCount, ligoDot11IfTxExcessiveRetries=ligoDot11IfTxExcessiveRetries, ligoDot11IfNoiseLevel=ligoDot11IfNoiseLevel, ligoDot11IfTxPower=ligoDot11IfTxPower, ligoDot11IfMissedBeacons=ligoDot11IfMissedBeacons, ligoDot11IfRxInvalidNWID=ligoDot11IfRxInvalidNWID, ligoDot11IfErrStatsTable=ligoDot11IfErrStatsTable, ligoDot11RmtNodeMacAddress=ligoDot11RmtNodeMacAddress, ligoDot11IfRxInvalidFrag=ligoDot11IfRxInvalidFrag, ligoRemoteNodeDisconnected=ligoRemoteNodeDisconnected, ligoDot11RmtNodeRxBytes=ligoDot11RmtNodeRxBytes, ligoDot11Conf=ligoDot11Conf, ligoDot11IfInvalidMisc=ligoDot11IfInvalidMisc, ligoDot11IfLinkQuality=ligoDot11IfLinkQuality)
# # PySNMP MIB module HH3C-SNMP-EXT-MIB (http://snmplabs.com/pysmi) # ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/HH3C-SNMP-EXT-MIB # Produced by pysmi-0.3.4 at Wed May 1 13:29:41 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) # ObjectIdentifier, OctetString, Integer = mibBuilder.importSymbols("ASN1", "ObjectIdentifier", "OctetString", "Integer") NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues") ConstraintsIntersection, ConstraintsUnion, ValueRangeConstraint, SingleValueConstraint, ValueSizeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsIntersection", "ConstraintsUnion", "ValueRangeConstraint", "SingleValueConstraint", "ValueSizeConstraint") hh3cCommon, = mibBuilder.importSymbols("HH3C-OID-MIB", "hh3cCommon") SnmpAdminString, SnmpSecurityLevel, SnmpSecurityModel = mibBuilder.importSymbols("SNMP-FRAMEWORK-MIB", "SnmpAdminString", "SnmpSecurityLevel", "SnmpSecurityModel") ObjectGroup, NotificationGroup, ModuleCompliance = mibBuilder.importSymbols("SNMPv2-CONF", "ObjectGroup", "NotificationGroup", "ModuleCompliance") Counter32, ObjectIdentity, IpAddress, iso, MibIdentifier, NotificationType, ModuleIdentity, TimeTicks, Counter64, MibScalar, MibTable, MibTableRow, MibTableColumn, Unsigned32, Bits, Gauge32, Integer32 = mibBuilder.importSymbols("SNMPv2-SMI", "Counter32", "ObjectIdentity", "IpAddress", "iso", "MibIdentifier", "NotificationType", "ModuleIdentity", "TimeTicks", "Counter64", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Unsigned32", "Bits", "Gauge32", "Integer32") TextualConvention, DisplayString = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "DisplayString") hh3cSnmpExt = ModuleIdentity((1, 3, 6, 1, 4, 1, 25506, 2, 104)) hh3cSnmpExt.setRevisions(('2009-04-07 17:00',)) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): if mibBuilder.loadTexts: hh3cSnmpExt.setRevisionsDescriptions(('The initial version of this MIB file.',)) if mibBuilder.loadTexts: hh3cSnmpExt.setLastUpdated('200904071700Z') if mibBuilder.loadTexts: hh3cSnmpExt.setOrganization('Hangzhou H3C Technologies Co., Ltd.') if mibBuilder.loadTexts: hh3cSnmpExt.setContactInfo('Platform Team H3C Technologies Co., Ltd. Hai-Dian District Beijing P.R. China Http://www.h3c.com Zip: 100085') if mibBuilder.loadTexts: hh3cSnmpExt.setDescription('This MIB file is to provide the object definition of the SNMP extended information.') hh3cSnmpExtScalarObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 25506, 2, 104, 1)) hh3cSnmpExtTables = MibIdentifier((1, 3, 6, 1, 4, 1, 25506, 2, 104, 2)) hh3cSnmpExtNotifications = MibIdentifier((1, 3, 6, 1, 4, 1, 25506, 2, 104, 3)) hh3cSnmpExtSnmpChannel = MibScalar((1, 3, 6, 1, 4, 1, 25506, 2, 104, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535)).clone(161)).setMaxAccess("readwrite") if mibBuilder.loadTexts: hh3cSnmpExtSnmpChannel.setStatus('current') if mibBuilder.loadTexts: hh3cSnmpExtSnmpChannel.setDescription('The channel number used by SNMP.') hh3cSnmpExtReadCommunitySingle = MibScalar((1, 3, 6, 1, 4, 1, 25506, 2, 104, 1, 2), SnmpAdminString().subtype(subtypeSpec=ValueSizeConstraint(1, 32))).setMaxAccess("readwrite") if mibBuilder.loadTexts: hh3cSnmpExtReadCommunitySingle.setStatus('current') if mibBuilder.loadTexts: hh3cSnmpExtReadCommunitySingle.setDescription('The first read community.') hh3cSnmpExtWriteCommunitySingle = MibScalar((1, 3, 6, 1, 4, 1, 25506, 2, 104, 1, 3), SnmpAdminString().subtype(subtypeSpec=ValueSizeConstraint(1, 32))).setMaxAccess("readwrite") if mibBuilder.loadTexts: hh3cSnmpExtWriteCommunitySingle.setStatus('current') if mibBuilder.loadTexts: hh3cSnmpExtWriteCommunitySingle.setDescription('The first write community.') hh3cSnmpExtCommunityTable = MibTable((1, 3, 6, 1, 4, 1, 25506, 2, 104, 2, 1), ) if mibBuilder.loadTexts: hh3cSnmpExtCommunityTable.setStatus('current') if mibBuilder.loadTexts: hh3cSnmpExtCommunityTable.setDescription('Modify the extended properties of SNMP community or user.') hh3cSnmpExtCommunityEntry = MibTableRow((1, 3, 6, 1, 4, 1, 25506, 2, 104, 2, 1, 1), ).setIndexNames((0, "HH3C-SNMP-EXT-MIB", "hh3cSnmpExtCommunitySecurityLevel"), (0, "HH3C-SNMP-EXT-MIB", "hh3cSnmpExtCommunitySecurityName")) if mibBuilder.loadTexts: hh3cSnmpExtCommunityEntry.setStatus('current') if mibBuilder.loadTexts: hh3cSnmpExtCommunityEntry.setDescription('The entry of hh3cSnmpExtCommunityTable') hh3cSnmpExtCommunitySecurityLevel = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 104, 2, 1, 1, 1), SnmpSecurityModel()) if mibBuilder.loadTexts: hh3cSnmpExtCommunitySecurityLevel.setStatus('current') if mibBuilder.loadTexts: hh3cSnmpExtCommunitySecurityLevel.setDescription("The Security Model of the specified community or user. This object may not take the 'any' (0) value.") hh3cSnmpExtCommunitySecurityName = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 104, 2, 1, 1, 2), SnmpAdminString()) if mibBuilder.loadTexts: hh3cSnmpExtCommunitySecurityName.setStatus('current') if mibBuilder.loadTexts: hh3cSnmpExtCommunitySecurityName.setDescription('The Security Name of the specified community or user.') hh3cSnmpExtCommunityName = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 104, 2, 1, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 32))).setMaxAccess("readonly") if mibBuilder.loadTexts: hh3cSnmpExtCommunityName.setStatus('current') if mibBuilder.loadTexts: hh3cSnmpExtCommunityName.setDescription('The specified community name.') hh3cSnmpExtCommunityAclNum = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 104, 2, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(0, 0), ValueRangeConstraint(2000, 2999), ))).setMaxAccess("readwrite") if mibBuilder.loadTexts: hh3cSnmpExtCommunityAclNum.setStatus('current') if mibBuilder.loadTexts: hh3cSnmpExtCommunityAclNum.setDescription('The specified ACL (Access Control List) number used by the community or the user.') mibBuilder.exportSymbols("HH3C-SNMP-EXT-MIB", hh3cSnmpExtCommunityName=hh3cSnmpExtCommunityName, hh3cSnmpExtSnmpChannel=hh3cSnmpExtSnmpChannel, hh3cSnmpExtCommunityTable=hh3cSnmpExtCommunityTable, hh3cSnmpExtCommunitySecurityLevel=hh3cSnmpExtCommunitySecurityLevel, hh3cSnmpExtCommunitySecurityName=hh3cSnmpExtCommunitySecurityName, hh3cSnmpExtTables=hh3cSnmpExtTables, hh3cSnmpExtNotifications=hh3cSnmpExtNotifications, PYSNMP_MODULE_ID=hh3cSnmpExt, hh3cSnmpExtScalarObjects=hh3cSnmpExtScalarObjects, hh3cSnmpExtCommunityAclNum=hh3cSnmpExtCommunityAclNum, hh3cSnmpExtReadCommunitySingle=hh3cSnmpExtReadCommunitySingle, hh3cSnmpExtWriteCommunitySingle=hh3cSnmpExtWriteCommunitySingle, hh3cSnmpExt=hh3cSnmpExt, hh3cSnmpExtCommunityEntry=hh3cSnmpExtCommunityEntry)
(object_identifier, octet_string, integer) = mibBuilder.importSymbols('ASN1', 'ObjectIdentifier', 'OctetString', 'Integer') (named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues') (constraints_intersection, constraints_union, value_range_constraint, single_value_constraint, value_size_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ConstraintsIntersection', 'ConstraintsUnion', 'ValueRangeConstraint', 'SingleValueConstraint', 'ValueSizeConstraint') (hh3c_common,) = mibBuilder.importSymbols('HH3C-OID-MIB', 'hh3cCommon') (snmp_admin_string, snmp_security_level, snmp_security_model) = mibBuilder.importSymbols('SNMP-FRAMEWORK-MIB', 'SnmpAdminString', 'SnmpSecurityLevel', 'SnmpSecurityModel') (object_group, notification_group, module_compliance) = mibBuilder.importSymbols('SNMPv2-CONF', 'ObjectGroup', 'NotificationGroup', 'ModuleCompliance') (counter32, object_identity, ip_address, iso, mib_identifier, notification_type, module_identity, time_ticks, counter64, mib_scalar, mib_table, mib_table_row, mib_table_column, unsigned32, bits, gauge32, integer32) = mibBuilder.importSymbols('SNMPv2-SMI', 'Counter32', 'ObjectIdentity', 'IpAddress', 'iso', 'MibIdentifier', 'NotificationType', 'ModuleIdentity', 'TimeTicks', 'Counter64', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'Unsigned32', 'Bits', 'Gauge32', 'Integer32') (textual_convention, display_string) = mibBuilder.importSymbols('SNMPv2-TC', 'TextualConvention', 'DisplayString') hh3c_snmp_ext = module_identity((1, 3, 6, 1, 4, 1, 25506, 2, 104)) hh3cSnmpExt.setRevisions(('2009-04-07 17:00',)) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): if mibBuilder.loadTexts: hh3cSnmpExt.setRevisionsDescriptions(('The initial version of this MIB file.',)) if mibBuilder.loadTexts: hh3cSnmpExt.setLastUpdated('200904071700Z') if mibBuilder.loadTexts: hh3cSnmpExt.setOrganization('Hangzhou H3C Technologies Co., Ltd.') if mibBuilder.loadTexts: hh3cSnmpExt.setContactInfo('Platform Team H3C Technologies Co., Ltd. Hai-Dian District Beijing P.R. China Http://www.h3c.com Zip: 100085') if mibBuilder.loadTexts: hh3cSnmpExt.setDescription('This MIB file is to provide the object definition of the SNMP extended information.') hh3c_snmp_ext_scalar_objects = mib_identifier((1, 3, 6, 1, 4, 1, 25506, 2, 104, 1)) hh3c_snmp_ext_tables = mib_identifier((1, 3, 6, 1, 4, 1, 25506, 2, 104, 2)) hh3c_snmp_ext_notifications = mib_identifier((1, 3, 6, 1, 4, 1, 25506, 2, 104, 3)) hh3c_snmp_ext_snmp_channel = mib_scalar((1, 3, 6, 1, 4, 1, 25506, 2, 104, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535)).clone(161)).setMaxAccess('readwrite') if mibBuilder.loadTexts: hh3cSnmpExtSnmpChannel.setStatus('current') if mibBuilder.loadTexts: hh3cSnmpExtSnmpChannel.setDescription('The channel number used by SNMP.') hh3c_snmp_ext_read_community_single = mib_scalar((1, 3, 6, 1, 4, 1, 25506, 2, 104, 1, 2), snmp_admin_string().subtype(subtypeSpec=value_size_constraint(1, 32))).setMaxAccess('readwrite') if mibBuilder.loadTexts: hh3cSnmpExtReadCommunitySingle.setStatus('current') if mibBuilder.loadTexts: hh3cSnmpExtReadCommunitySingle.setDescription('The first read community.') hh3c_snmp_ext_write_community_single = mib_scalar((1, 3, 6, 1, 4, 1, 25506, 2, 104, 1, 3), snmp_admin_string().subtype(subtypeSpec=value_size_constraint(1, 32))).setMaxAccess('readwrite') if mibBuilder.loadTexts: hh3cSnmpExtWriteCommunitySingle.setStatus('current') if mibBuilder.loadTexts: hh3cSnmpExtWriteCommunitySingle.setDescription('The first write community.') hh3c_snmp_ext_community_table = mib_table((1, 3, 6, 1, 4, 1, 25506, 2, 104, 2, 1)) if mibBuilder.loadTexts: hh3cSnmpExtCommunityTable.setStatus('current') if mibBuilder.loadTexts: hh3cSnmpExtCommunityTable.setDescription('Modify the extended properties of SNMP community or user.') hh3c_snmp_ext_community_entry = mib_table_row((1, 3, 6, 1, 4, 1, 25506, 2, 104, 2, 1, 1)).setIndexNames((0, 'HH3C-SNMP-EXT-MIB', 'hh3cSnmpExtCommunitySecurityLevel'), (0, 'HH3C-SNMP-EXT-MIB', 'hh3cSnmpExtCommunitySecurityName')) if mibBuilder.loadTexts: hh3cSnmpExtCommunityEntry.setStatus('current') if mibBuilder.loadTexts: hh3cSnmpExtCommunityEntry.setDescription('The entry of hh3cSnmpExtCommunityTable') hh3c_snmp_ext_community_security_level = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 104, 2, 1, 1, 1), snmp_security_model()) if mibBuilder.loadTexts: hh3cSnmpExtCommunitySecurityLevel.setStatus('current') if mibBuilder.loadTexts: hh3cSnmpExtCommunitySecurityLevel.setDescription("The Security Model of the specified community or user. This object may not take the 'any' (0) value.") hh3c_snmp_ext_community_security_name = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 104, 2, 1, 1, 2), snmp_admin_string()) if mibBuilder.loadTexts: hh3cSnmpExtCommunitySecurityName.setStatus('current') if mibBuilder.loadTexts: hh3cSnmpExtCommunitySecurityName.setDescription('The Security Name of the specified community or user.') hh3c_snmp_ext_community_name = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 104, 2, 1, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(1, 32))).setMaxAccess('readonly') if mibBuilder.loadTexts: hh3cSnmpExtCommunityName.setStatus('current') if mibBuilder.loadTexts: hh3cSnmpExtCommunityName.setDescription('The specified community name.') hh3c_snmp_ext_community_acl_num = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 104, 2, 1, 1, 4), integer32().subtype(subtypeSpec=constraints_union(value_range_constraint(0, 0), value_range_constraint(2000, 2999)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: hh3cSnmpExtCommunityAclNum.setStatus('current') if mibBuilder.loadTexts: hh3cSnmpExtCommunityAclNum.setDescription('The specified ACL (Access Control List) number used by the community or the user.') mibBuilder.exportSymbols('HH3C-SNMP-EXT-MIB', hh3cSnmpExtCommunityName=hh3cSnmpExtCommunityName, hh3cSnmpExtSnmpChannel=hh3cSnmpExtSnmpChannel, hh3cSnmpExtCommunityTable=hh3cSnmpExtCommunityTable, hh3cSnmpExtCommunitySecurityLevel=hh3cSnmpExtCommunitySecurityLevel, hh3cSnmpExtCommunitySecurityName=hh3cSnmpExtCommunitySecurityName, hh3cSnmpExtTables=hh3cSnmpExtTables, hh3cSnmpExtNotifications=hh3cSnmpExtNotifications, PYSNMP_MODULE_ID=hh3cSnmpExt, hh3cSnmpExtScalarObjects=hh3cSnmpExtScalarObjects, hh3cSnmpExtCommunityAclNum=hh3cSnmpExtCommunityAclNum, hh3cSnmpExtReadCommunitySingle=hh3cSnmpExtReadCommunitySingle, hh3cSnmpExtWriteCommunitySingle=hh3cSnmpExtWriteCommunitySingle, hh3cSnmpExt=hh3cSnmpExt, hh3cSnmpExtCommunityEntry=hh3cSnmpExtCommunityEntry)
def getGuessedWord(secretWord, lettersGuessed): ''' secretWord: string, the word the user is guessing lettersGuessed: list, what letters have been guessed so far returns: string, comprised of letters and underscores that represents what letters in secretWord have been guessed so far. ''' # FILL IN YOUR CODE HERE... #First off if we will have the secret word in a list #We should be able to clone the list as secretHidden #which will reveal a letter every time it gets added (or not added) #to the lettersGuessed. secretList = list(secretWord) answer = "" for char in secretList: if char in lettersGuessed: answer += char else: answer += " _ " print (answer) getGuessedWord("feel", ["f"])
def get_guessed_word(secretWord, lettersGuessed): """ secretWord: string, the word the user is guessing lettersGuessed: list, what letters have been guessed so far returns: string, comprised of letters and underscores that represents what letters in secretWord have been guessed so far. """ secret_list = list(secretWord) answer = '' for char in secretList: if char in lettersGuessed: answer += char else: answer += ' _ ' print(answer) get_guessed_word('feel', ['f'])
def main(): try: configuration = open('config.txt') except Exception: print("Couldn't find the config.txt file!") if __name__ == '__main__': main()
def main(): try: configuration = open('config.txt') except Exception: print("Couldn't find the config.txt file!") if __name__ == '__main__': main()
#from sys import stdin #file = stdin file = open(r'.\data\maplambda.txt', 'rt' ) data = int(file.read().strip()) def fib(n): result = [] a, b = 0, 1 while n > 0: result.append(a) a, b = b, a+b n -= 1 return result print(list(map(lambda x: x**3, fib(data)))) #print(*map(lambda x: x**3, fib(data)), sep="\n")
file = open('.\\data\\maplambda.txt', 'rt') data = int(file.read().strip()) def fib(n): result = [] (a, b) = (0, 1) while n > 0: result.append(a) (a, b) = (b, a + b) n -= 1 return result print(list(map(lambda x: x ** 3, fib(data))))
# Write code to remove duplicattes from an unsorted linked list # Follow up: # How would you solve this problem if a temporary # buffer is not allowed? class Node: def __init__(self, data=None, next=None): self.data = data self.next = next def __repr__(self): return self.data def set_next(self, new_next): self.next = new_next def get_next(self): return self.next class LinkedList: def __init__(self, nodes=None): self.head = None if nodes is not None: node = Node(data=nodes.pop(0)) self.head = node for element in nodes: node.next = Node(data=element) node = node.next def __repr__(self): node = self.head nodes = [] while node is not None: nodes.append(str(node.data)) node = node.next nodes.append('None') return ' -> '.join(nodes) def remove_dups(self): # ---- SOLUTION ---- # Algorithm will run in O(N) linear time # traversal for list of size N nodes_dict = {} current = self.head previous = None while current is not None: if current.data not in nodes_dict: nodes_dict[current.data] = 1 # append node to hashmap previous = current else: previous.next = current.next current = current.next return self
class Node: def __init__(self, data=None, next=None): self.data = data self.next = next def __repr__(self): return self.data def set_next(self, new_next): self.next = new_next def get_next(self): return self.next class Linkedlist: def __init__(self, nodes=None): self.head = None if nodes is not None: node = node(data=nodes.pop(0)) self.head = node for element in nodes: node.next = node(data=element) node = node.next def __repr__(self): node = self.head nodes = [] while node is not None: nodes.append(str(node.data)) node = node.next nodes.append('None') return ' -> '.join(nodes) def remove_dups(self): nodes_dict = {} current = self.head previous = None while current is not None: if current.data not in nodes_dict: nodes_dict[current.data] = 1 previous = current else: previous.next = current.next current = current.next return self
#!/usr/bin/env python3 # Some columns are longer than others table1 = [['apples', 'oranges', 'cherries', 'banana'], ['Alice', 'Bob', 'Carol', 'David'], ['dogs', 'cats', 'moose', 'goose', 'duck']] table2 = [] def print_table(table): # Find out the number of rows of the longest columns # and the longest width of each column max_row = 0 widths = {} for col, index in zip(table, range(len(table))): max_row = max(max_row, len(col)) col_width = 0 for el in col: col_width = max(col_width, len(el)) widths[index] = col_width print(f'{index} - {col_width}') # Print rows for row in range(max_row): for col, index in zip(table, range(len(table))): el = ' '; if row < len(col): el = col[row] print(el.rjust(widths[index]) + ' ', end = '') print() print('Table 1') print_table(table1) print('Table 2') print_table(table2)
table1 = [['apples', 'oranges', 'cherries', 'banana'], ['Alice', 'Bob', 'Carol', 'David'], ['dogs', 'cats', 'moose', 'goose', 'duck']] table2 = [] def print_table(table): max_row = 0 widths = {} for (col, index) in zip(table, range(len(table))): max_row = max(max_row, len(col)) col_width = 0 for el in col: col_width = max(col_width, len(el)) widths[index] = col_width print(f'{index} - {col_width}') for row in range(max_row): for (col, index) in zip(table, range(len(table))): el = ' ' if row < len(col): el = col[row] print(el.rjust(widths[index]) + ' ', end='') print() print('Table 1') print_table(table1) print('Table 2') print_table(table2)
#my solution print("Welcome to the tip calculator.") total_bill = float(input("What was the total bill? ")) amount_of_people = int(input("How many people to split the bill? ")) tip = int(input("What percentage tip would you like to give? 10, 12, or 15? ")) payment = float((tip * total_bill/100 + total_bill)/amount_of_people) payment = round(payment, 2) payment = "{:.2f}".format(payment) print(f"Each person should pay: ${payment}")
print('Welcome to the tip calculator.') total_bill = float(input('What was the total bill? ')) amount_of_people = int(input('How many people to split the bill? ')) tip = int(input('What percentage tip would you like to give? 10, 12, or 15? ')) payment = float((tip * total_bill / 100 + total_bill) / amount_of_people) payment = round(payment, 2) payment = '{:.2f}'.format(payment) print(f'Each person should pay: ${payment}')
def say_hello(name=None): if name is None: return "Hello, world!" else: return f"Hello, {name}!"
def say_hello(name=None): if name is None: return 'Hello, world!' else: return f'Hello, {name}!'
# coding: utf-8 ############################################################################## # Copyright (C) 2019 Microchip Technology Inc. and its subsidiaries. # # Subject to your compliance with these terms, you may use Microchip software # and any derivatives exclusively with Microchip products. It is your # responsibility to comply with third party license terms applicable to your # use of third party software (including open source software) that may # accompany Microchip software. # # THIS SOFTWARE IS SUPPLIED BY MICROCHIP "AS IS". NO WARRANTIES, WHETHER # EXPRESS, IMPLIED OR STATUTORY, APPLY TO THIS SOFTWARE, INCLUDING ANY IMPLIED # WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY, AND FITNESS FOR A # PARTICULAR PURPOSE. # # IN NO EVENT WILL MICROCHIP BE LIABLE FOR ANY INDIRECT, SPECIAL, PUNITIVE, # INCIDENTAL OR CONSEQUENTIAL LOSS, DAMAGE, COST OR EXPENSE OF ANY KIND # WHATSOEVER RELATED TO THE SOFTWARE, HOWEVER CAUSED, EVEN IF MICROCHIP HAS # BEEN ADVISED OF THE POSSIBILITY OR THE DAMAGES ARE FORESEEABLE. TO THE # FULLEST EXTENT ALLOWED BY LAW, MICROCHIP'S TOTAL LIABILITY ON ALL CLAIMS IN # ANY WAY RELATED TO THIS SOFTWARE WILL NOT EXCEED THE AMOUNT OF FEES, IF ANY, # THAT YOU HAVE PAID DIRECTLY TO MICROCHIP FOR THIS SOFTWARE. ############################################################################## same54cultComponentIDList = ["sercom7", "sys_time", "tc0"] same54cultAutoConnectList = [["bluetooth_bm64", "USART PLIB", "sercom7", "SERCOM7_UART"], ["sys_time", "sys_time_TMR_dependency", "tc0", "TC0_TMR"]] same54cultPinConfigs = [{"pin": 56, "name": "SERCOM7_PAD0", "type": "SERCOM7_PAD0", "direction": "", "latch": "", "abcd": "C"}, # PC12 {"pin": 57, "name": "SERCOM7_PAD1", "type": "SERCOM7_PAD1", "direction": "", "latch": "", "abcd": "C"}, # PC13 {"pin": 59, "name": "BM64_MFB", "type": "GPIO", "direction": "Out", "latch": "Low", "abcd": ""}, # PC15 {"pin": 72, "name": "STBYRST", "type": "GPIO", "direction": "Out", "latch": "High", "abcd": ""}] # PC18 sam_e54_curiosity_ultra = bspSupportObj(same54cultPinConfigs, same54cultComponentIDList, None, same54cultAutoConnectList, None) addBSPSupport("BSP_SAM_E54_Curiosity_Ultra", "E54_CURIOSITY_ULTRA", sam_e54_curiosity_ultra)
same54cult_component_id_list = ['sercom7', 'sys_time', 'tc0'] same54cult_auto_connect_list = [['bluetooth_bm64', 'USART PLIB', 'sercom7', 'SERCOM7_UART'], ['sys_time', 'sys_time_TMR_dependency', 'tc0', 'TC0_TMR']] same54cult_pin_configs = [{'pin': 56, 'name': 'SERCOM7_PAD0', 'type': 'SERCOM7_PAD0', 'direction': '', 'latch': '', 'abcd': 'C'}, {'pin': 57, 'name': 'SERCOM7_PAD1', 'type': 'SERCOM7_PAD1', 'direction': '', 'latch': '', 'abcd': 'C'}, {'pin': 59, 'name': 'BM64_MFB', 'type': 'GPIO', 'direction': 'Out', 'latch': 'Low', 'abcd': ''}, {'pin': 72, 'name': 'STBYRST', 'type': 'GPIO', 'direction': 'Out', 'latch': 'High', 'abcd': ''}] sam_e54_curiosity_ultra = bsp_support_obj(same54cultPinConfigs, same54cultComponentIDList, None, same54cultAutoConnectList, None) add_bsp_support('BSP_SAM_E54_Curiosity_Ultra', 'E54_CURIOSITY_ULTRA', sam_e54_curiosity_ultra)
n = int(input()) name = [] for _ in range(n): name.append(input()) if name == sorted(name): print("INCREASING") elif name == sorted(name)[::-1]: print("DECREASING") else: print("NEITHER")
n = int(input()) name = [] for _ in range(n): name.append(input()) if name == sorted(name): print('INCREASING') elif name == sorted(name)[::-1]: print('DECREASING') else: print('NEITHER')
BLACK = (0,0,0) WHITE = (255,255,255) GREEN = (0,255,0) RED = (255,0,0) BLUE = (0,0,255) colors = {'Black': BLACK, 'White': WHITE, 'Green': GREEN, 'Red': RED, 'Blue': BLUE}
black = (0, 0, 0) white = (255, 255, 255) green = (0, 255, 0) red = (255, 0, 0) blue = (0, 0, 255) colors = {'Black': BLACK, 'White': WHITE, 'Green': GREEN, 'Red': RED, 'Blue': BLUE}
# Copyright 2017, bwsoft management # # 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. class IAnalysis(object): def __init__(self, config, historical_data_repository, alert_sender, data_structure): self._config = config self._historical_data_repository = historical_data_repository self._alert_sender = alert_sender self._input_fields = dict(map(lambda x: reversed(x), enumerate( map(lambda x: x["input_field"], filter(lambda x: not x["key"], data_structure["rule"]))))) self._key_fields_name = map(lambda x: x["input_field"], filter(lambda x: x["key"], data_structure["rule"])) def get_analysis_lambda(self): raise NotImplementedError("get_analysis_lambda method should be overrided!")
class Ianalysis(object): def __init__(self, config, historical_data_repository, alert_sender, data_structure): self._config = config self._historical_data_repository = historical_data_repository self._alert_sender = alert_sender self._input_fields = dict(map(lambda x: reversed(x), enumerate(map(lambda x: x['input_field'], filter(lambda x: not x['key'], data_structure['rule']))))) self._key_fields_name = map(lambda x: x['input_field'], filter(lambda x: x['key'], data_structure['rule'])) def get_analysis_lambda(self): raise not_implemented_error('get_analysis_lambda method should be overrided!')
def find_substring(string: str, substring: str) -> int: l1 = len(string) l2 = len(substring) for i in range(l1 - l2 + 1): status = True for j in range(l2): if string[i+j] != substring[j]: status = False if status: return i if __name__ == '__main__': s = "doo-foo-boo" ss = "boo" pos = find_substring(s, ss) print("Substring found at position {}.".format(pos))
def find_substring(string: str, substring: str) -> int: l1 = len(string) l2 = len(substring) for i in range(l1 - l2 + 1): status = True for j in range(l2): if string[i + j] != substring[j]: status = False if status: return i if __name__ == '__main__': s = 'doo-foo-boo' ss = 'boo' pos = find_substring(s, ss) print('Substring found at position {}.'.format(pos))
def list_headers(catalog, headers=True): result = [] if isinstance(headers, set): for header in catalog: if header in headers: result.append(header) else: result = catalog.keys() return set(result)
def list_headers(catalog, headers=True): result = [] if isinstance(headers, set): for header in catalog: if header in headers: result.append(header) else: result = catalog.keys() return set(result)
folium.Marker([42.333600, -71.109500], popup='<strong>Location Two</strong>', tooltip=tooltip, icon=folium.Icon(icon='cloud')).add_to(m), folium.Marker([42.377120, -71.062400], popup='<strong>Location Three</strong>', tooltip=tooltip, icon=folium.Icon(color='purple')).add_to(m), folium.Marker([42.374150, -71.122410], popup='<strong>Location Four</strong>', tooltip=tooltip, icon=folium.Icon(color='green', icon='leaf')).add_to(m),
(folium.Marker([42.3336, -71.1095], popup='<strong>Location Two</strong>', tooltip=tooltip, icon=folium.Icon(icon='cloud')).add_to(m),) (folium.Marker([42.37712, -71.0624], popup='<strong>Location Three</strong>', tooltip=tooltip, icon=folium.Icon(color='purple')).add_to(m),) (folium.Marker([42.37415, -71.12241], popup='<strong>Location Four</strong>', tooltip=tooltip, icon=folium.Icon(color='green', icon='leaf')).add_to(m),)
# Create a list of strings: fellowship fellowship = ['frodo', 'samwise', 'merry', 'aragorn', 'legolas', 'boromir', 'gimli'] # Create dict comprehension: new_fellowship new_fellowship = { member:len(member) for member in fellowship } # Print the new dictionary print(new_fellowship)
fellowship = ['frodo', 'samwise', 'merry', 'aragorn', 'legolas', 'boromir', 'gimli'] new_fellowship = {member: len(member) for member in fellowship} print(new_fellowship)
# @params: # str - string to perform subsets breakdown # n (optional) - nth order to break def get_string_subsets(str): subsets = [] for index in range(len(str)): if(index == 0): subsets.append(str[index]) else: subsets.append(subsets[index-1] + str[index]) return subsets
def get_string_subsets(str): subsets = [] for index in range(len(str)): if index == 0: subsets.append(str[index]) else: subsets.append(subsets[index - 1] + str[index]) return subsets
#!python3.6 #coding:utf-8 #class complex([real[, imag]]) print(complex(3, 2))
print(complex(3, 2))
# # PySNMP MIB module ELTEX-MES-CFM-MIB (http://snmplabs.com/pysmi) # ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/ELTEX-MES-CFM-MIB # Produced by pysmi-0.3.4 at Wed May 1 13:01:03 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) # ObjectIdentifier, Integer, OctetString = mibBuilder.importSymbols("ASN1", "ObjectIdentifier", "Integer", "OctetString") NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues") ValueRangeConstraint, ConstraintsUnion, SingleValueConstraint, ValueSizeConstraint, ConstraintsIntersection = mibBuilder.importSymbols("ASN1-REFINEMENT", "ValueRangeConstraint", "ConstraintsUnion", "SingleValueConstraint", "ValueSizeConstraint", "ConstraintsIntersection") eltMesMng, = mibBuilder.importSymbols("ELTEX-MES", "eltMesMng") Dot1agCfmMpDirection, = mibBuilder.importSymbols("IEEE8021-CFM-MIB", "Dot1agCfmMpDirection") InterfaceIndex, InterfaceIndexOrZero = mibBuilder.importSymbols("IF-MIB", "InterfaceIndex", "InterfaceIndexOrZero") VlanId, VlanIdOrNone = mibBuilder.importSymbols("Q-BRIDGE-MIB", "VlanId", "VlanIdOrNone") ModuleCompliance, ObjectGroup, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "ObjectGroup", "NotificationGroup") iso, TimeTicks, ObjectIdentity, Gauge32, IpAddress, MibScalar, MibTable, MibTableRow, MibTableColumn, Integer32, NotificationType, Bits, MibIdentifier, Unsigned32, Counter32, ModuleIdentity, Counter64 = mibBuilder.importSymbols("SNMPv2-SMI", "iso", "TimeTicks", "ObjectIdentity", "Gauge32", "IpAddress", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Integer32", "NotificationType", "Bits", "MibIdentifier", "Unsigned32", "Counter32", "ModuleIdentity", "Counter64") TimeInterval, TAddress, TimeStamp, TruthValue, DisplayString, RowStatus, TextualConvention, MacAddress, TDomain = mibBuilder.importSymbols("SNMPv2-TC", "TimeInterval", "TAddress", "TimeStamp", "TruthValue", "DisplayString", "RowStatus", "TextualConvention", "MacAddress", "TDomain") eltMesCfmMIB = ModuleIdentity((1, 3, 6, 1, 4, 1, 35265, 1, 23, 1, 774)) eltMesCfmMIB.setRevisions(('2013-03-19 00:00', '2015-11-19 00:00',)) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): if mibBuilder.loadTexts: eltMesCfmMIB.setRevisionsDescriptions(('Initial version.', 'Deprecate all objects in this module.',)) if mibBuilder.loadTexts: eltMesCfmMIB.setLastUpdated('201511190000Z') if mibBuilder.loadTexts: eltMesCfmMIB.setOrganization('Eltex, Ent.') if mibBuilder.loadTexts: eltMesCfmMIB.setContactInfo('www.eltex.nsk.ru') if mibBuilder.loadTexts: eltMesCfmMIB.setDescription('Connectivity Fault Management module for managing Eltex devices') eltMesCfmNotifications = MibIdentifier((1, 3, 6, 1, 4, 1, 35265, 1, 23, 1, 774, 0)) eltMesCfmMIBObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 35265, 1, 23, 1, 774, 1)) eltMesCfmConformance = MibIdentifier((1, 3, 6, 1, 4, 1, 35265, 1, 23, 1, 774, 2)) eltMesCfmMd = MibIdentifier((1, 3, 6, 1, 4, 1, 35265, 1, 23, 1, 774, 1, 1)) eltMesCfmMa = MibIdentifier((1, 3, 6, 1, 4, 1, 35265, 1, 23, 1, 774, 1, 2)) eltCfmMdTable = MibTable((1, 3, 6, 1, 4, 1, 35265, 1, 23, 1, 774, 1, 1, 1), ) if mibBuilder.loadTexts: eltCfmMdTable.setStatus('deprecated') if mibBuilder.loadTexts: eltCfmMdTable.setDescription('The Maintenance Domain table. Each row in the table represents a physical maintanance domain that corresponds user-like domain name. ') eltCfmMdEntry = MibTableRow((1, 3, 6, 1, 4, 1, 35265, 1, 23, 1, 774, 1, 1, 1, 1), ).setIndexNames((0, "ELTEX-MES-CFM-MIB", "eltCfmMdName")) if mibBuilder.loadTexts: eltCfmMdEntry.setStatus('deprecated') if mibBuilder.loadTexts: eltCfmMdEntry.setDescription('The Maintenance Domain table entry. This entry is not lost upon reboot. It is backed up by stable storage. ') eltCfmMdName = MibTableColumn((1, 3, 6, 1, 4, 1, 35265, 1, 23, 1, 774, 1, 1, 1, 1, 1), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 32))) if mibBuilder.loadTexts: eltCfmMdName.setStatus('deprecated') if mibBuilder.loadTexts: eltCfmMdName.setDescription('The user-like name of Maintenance Domain. ') eltCfmMdIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 35265, 1, 23, 1, 774, 1, 1, 1, 1, 2), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 4294967295))).setMaxAccess("readcreate") if mibBuilder.loadTexts: eltCfmMdIndex.setStatus('deprecated') if mibBuilder.loadTexts: eltCfmMdIndex.setDescription('The index to the Maintenance Domain table dot1agCfmMdTable (IEEE8021-CFM-MIB). ') eltCfmMdRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 35265, 1, 23, 1, 774, 1, 1, 1, 1, 3), RowStatus()).setMaxAccess("readcreate") if mibBuilder.loadTexts: eltCfmMdRowStatus.setStatus('deprecated') if mibBuilder.loadTexts: eltCfmMdRowStatus.setDescription('The status of the row. The writable columns in a row can not be changed if the row is active. All columns MUST have a valid value before a row can be activated. ') eltCfmMaTable = MibTable((1, 3, 6, 1, 4, 1, 35265, 1, 23, 1, 774, 1, 2, 1), ) if mibBuilder.loadTexts: eltCfmMaTable.setReference('22.2.2') if mibBuilder.loadTexts: eltCfmMaTable.setStatus('deprecated') if mibBuilder.loadTexts: eltCfmMaTable.setDescription('The Maintenance Association table. This is the part of the complete MA table from IEEE8021-CFM-MIB. It implements restrictions in IEEE 802.1ag-2007 22.2.2 upon creating MEPS. Each row in the table represents an MA. An MA is a set of MEPs, each configured with a single service instance. This table uses two indices, first index is the index of the Maintenance Domain table. The second index is the same as the index of the dot1agCfmMaCompEntry for the same MA. The writable objects in this table need to be persistent upon reboot or restart of a device. ') eltCfmMaEntry = MibTableRow((1, 3, 6, 1, 4, 1, 35265, 1, 23, 1, 774, 1, 2, 1, 1), ).setIndexNames((0, "ELTEX-MES-CFM-MIB", "eltCfmMdIndex"), (0, "ELTEX-MES-CFM-MIB", "eltCfmMaIndex")) if mibBuilder.loadTexts: eltCfmMaEntry.setStatus('deprecated') if mibBuilder.loadTexts: eltCfmMaEntry.setDescription('The MA table entry.') eltCfmMaIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 35265, 1, 23, 1, 774, 1, 2, 1, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 4294967295))) if mibBuilder.loadTexts: eltCfmMaIndex.setStatus('deprecated') if mibBuilder.loadTexts: eltCfmMaIndex.setDescription('Index of the MA table. ') eltCfmMaDirection = MibTableColumn((1, 3, 6, 1, 4, 1, 35265, 1, 23, 1, 774, 1, 2, 1, 1, 2), Dot1agCfmMpDirection()).setMaxAccess("readcreate") if mibBuilder.loadTexts: eltCfmMaDirection.setStatus('deprecated') if mibBuilder.loadTexts: eltCfmMaDirection.setDescription('Direction in which the all the MPs in current MA face on the Bridge Port. ') eltCfmMaRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 35265, 1, 23, 1, 774, 1, 2, 1, 1, 3), RowStatus()).setMaxAccess("readcreate") if mibBuilder.loadTexts: eltCfmMaRowStatus.setStatus('deprecated') if mibBuilder.loadTexts: eltCfmMaRowStatus.setDescription('The status of the row. The writable columns in a row can not be changed if the row is active. All columns MUST have a valid value before a row can be activated. ') mibBuilder.exportSymbols("ELTEX-MES-CFM-MIB", eltCfmMdName=eltCfmMdName, eltCfmMdRowStatus=eltCfmMdRowStatus, eltCfmMaEntry=eltCfmMaEntry, eltMesCfmNotifications=eltMesCfmNotifications, eltMesCfmMd=eltMesCfmMd, eltCfmMdTable=eltCfmMdTable, eltCfmMdIndex=eltCfmMdIndex, eltMesCfmMa=eltMesCfmMa, eltMesCfmMIB=eltMesCfmMIB, eltCfmMaTable=eltCfmMaTable, eltMesCfmMIBObjects=eltMesCfmMIBObjects, eltCfmMaRowStatus=eltCfmMaRowStatus, eltCfmMdEntry=eltCfmMdEntry, eltCfmMaIndex=eltCfmMaIndex, eltCfmMaDirection=eltCfmMaDirection, PYSNMP_MODULE_ID=eltMesCfmMIB, eltMesCfmConformance=eltMesCfmConformance)
(object_identifier, integer, octet_string) = mibBuilder.importSymbols('ASN1', 'ObjectIdentifier', 'Integer', 'OctetString') (named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues') (value_range_constraint, constraints_union, single_value_constraint, value_size_constraint, constraints_intersection) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ValueRangeConstraint', 'ConstraintsUnion', 'SingleValueConstraint', 'ValueSizeConstraint', 'ConstraintsIntersection') (elt_mes_mng,) = mibBuilder.importSymbols('ELTEX-MES', 'eltMesMng') (dot1ag_cfm_mp_direction,) = mibBuilder.importSymbols('IEEE8021-CFM-MIB', 'Dot1agCfmMpDirection') (interface_index, interface_index_or_zero) = mibBuilder.importSymbols('IF-MIB', 'InterfaceIndex', 'InterfaceIndexOrZero') (vlan_id, vlan_id_or_none) = mibBuilder.importSymbols('Q-BRIDGE-MIB', 'VlanId', 'VlanIdOrNone') (module_compliance, object_group, notification_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'ObjectGroup', 'NotificationGroup') (iso, time_ticks, object_identity, gauge32, ip_address, mib_scalar, mib_table, mib_table_row, mib_table_column, integer32, notification_type, bits, mib_identifier, unsigned32, counter32, module_identity, counter64) = mibBuilder.importSymbols('SNMPv2-SMI', 'iso', 'TimeTicks', 'ObjectIdentity', 'Gauge32', 'IpAddress', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'Integer32', 'NotificationType', 'Bits', 'MibIdentifier', 'Unsigned32', 'Counter32', 'ModuleIdentity', 'Counter64') (time_interval, t_address, time_stamp, truth_value, display_string, row_status, textual_convention, mac_address, t_domain) = mibBuilder.importSymbols('SNMPv2-TC', 'TimeInterval', 'TAddress', 'TimeStamp', 'TruthValue', 'DisplayString', 'RowStatus', 'TextualConvention', 'MacAddress', 'TDomain') elt_mes_cfm_mib = module_identity((1, 3, 6, 1, 4, 1, 35265, 1, 23, 1, 774)) eltMesCfmMIB.setRevisions(('2013-03-19 00:00', '2015-11-19 00:00')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): if mibBuilder.loadTexts: eltMesCfmMIB.setRevisionsDescriptions(('Initial version.', 'Deprecate all objects in this module.')) if mibBuilder.loadTexts: eltMesCfmMIB.setLastUpdated('201511190000Z') if mibBuilder.loadTexts: eltMesCfmMIB.setOrganization('Eltex, Ent.') if mibBuilder.loadTexts: eltMesCfmMIB.setContactInfo('www.eltex.nsk.ru') if mibBuilder.loadTexts: eltMesCfmMIB.setDescription('Connectivity Fault Management module for managing Eltex devices') elt_mes_cfm_notifications = mib_identifier((1, 3, 6, 1, 4, 1, 35265, 1, 23, 1, 774, 0)) elt_mes_cfm_mib_objects = mib_identifier((1, 3, 6, 1, 4, 1, 35265, 1, 23, 1, 774, 1)) elt_mes_cfm_conformance = mib_identifier((1, 3, 6, 1, 4, 1, 35265, 1, 23, 1, 774, 2)) elt_mes_cfm_md = mib_identifier((1, 3, 6, 1, 4, 1, 35265, 1, 23, 1, 774, 1, 1)) elt_mes_cfm_ma = mib_identifier((1, 3, 6, 1, 4, 1, 35265, 1, 23, 1, 774, 1, 2)) elt_cfm_md_table = mib_table((1, 3, 6, 1, 4, 1, 35265, 1, 23, 1, 774, 1, 1, 1)) if mibBuilder.loadTexts: eltCfmMdTable.setStatus('deprecated') if mibBuilder.loadTexts: eltCfmMdTable.setDescription('The Maintenance Domain table. Each row in the table represents a physical maintanance domain that corresponds user-like domain name. ') elt_cfm_md_entry = mib_table_row((1, 3, 6, 1, 4, 1, 35265, 1, 23, 1, 774, 1, 1, 1, 1)).setIndexNames((0, 'ELTEX-MES-CFM-MIB', 'eltCfmMdName')) if mibBuilder.loadTexts: eltCfmMdEntry.setStatus('deprecated') if mibBuilder.loadTexts: eltCfmMdEntry.setDescription('The Maintenance Domain table entry. This entry is not lost upon reboot. It is backed up by stable storage. ') elt_cfm_md_name = mib_table_column((1, 3, 6, 1, 4, 1, 35265, 1, 23, 1, 774, 1, 1, 1, 1, 1), octet_string().subtype(subtypeSpec=value_size_constraint(1, 32))) if mibBuilder.loadTexts: eltCfmMdName.setStatus('deprecated') if mibBuilder.loadTexts: eltCfmMdName.setDescription('The user-like name of Maintenance Domain. ') elt_cfm_md_index = mib_table_column((1, 3, 6, 1, 4, 1, 35265, 1, 23, 1, 774, 1, 1, 1, 1, 2), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 4294967295))).setMaxAccess('readcreate') if mibBuilder.loadTexts: eltCfmMdIndex.setStatus('deprecated') if mibBuilder.loadTexts: eltCfmMdIndex.setDescription('The index to the Maintenance Domain table dot1agCfmMdTable (IEEE8021-CFM-MIB). ') elt_cfm_md_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 35265, 1, 23, 1, 774, 1, 1, 1, 1, 3), row_status()).setMaxAccess('readcreate') if mibBuilder.loadTexts: eltCfmMdRowStatus.setStatus('deprecated') if mibBuilder.loadTexts: eltCfmMdRowStatus.setDescription('The status of the row. The writable columns in a row can not be changed if the row is active. All columns MUST have a valid value before a row can be activated. ') elt_cfm_ma_table = mib_table((1, 3, 6, 1, 4, 1, 35265, 1, 23, 1, 774, 1, 2, 1)) if mibBuilder.loadTexts: eltCfmMaTable.setReference('22.2.2') if mibBuilder.loadTexts: eltCfmMaTable.setStatus('deprecated') if mibBuilder.loadTexts: eltCfmMaTable.setDescription('The Maintenance Association table. This is the part of the complete MA table from IEEE8021-CFM-MIB. It implements restrictions in IEEE 802.1ag-2007 22.2.2 upon creating MEPS. Each row in the table represents an MA. An MA is a set of MEPs, each configured with a single service instance. This table uses two indices, first index is the index of the Maintenance Domain table. The second index is the same as the index of the dot1agCfmMaCompEntry for the same MA. The writable objects in this table need to be persistent upon reboot or restart of a device. ') elt_cfm_ma_entry = mib_table_row((1, 3, 6, 1, 4, 1, 35265, 1, 23, 1, 774, 1, 2, 1, 1)).setIndexNames((0, 'ELTEX-MES-CFM-MIB', 'eltCfmMdIndex'), (0, 'ELTEX-MES-CFM-MIB', 'eltCfmMaIndex')) if mibBuilder.loadTexts: eltCfmMaEntry.setStatus('deprecated') if mibBuilder.loadTexts: eltCfmMaEntry.setDescription('The MA table entry.') elt_cfm_ma_index = mib_table_column((1, 3, 6, 1, 4, 1, 35265, 1, 23, 1, 774, 1, 2, 1, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 4294967295))) if mibBuilder.loadTexts: eltCfmMaIndex.setStatus('deprecated') if mibBuilder.loadTexts: eltCfmMaIndex.setDescription('Index of the MA table. ') elt_cfm_ma_direction = mib_table_column((1, 3, 6, 1, 4, 1, 35265, 1, 23, 1, 774, 1, 2, 1, 1, 2), dot1ag_cfm_mp_direction()).setMaxAccess('readcreate') if mibBuilder.loadTexts: eltCfmMaDirection.setStatus('deprecated') if mibBuilder.loadTexts: eltCfmMaDirection.setDescription('Direction in which the all the MPs in current MA face on the Bridge Port. ') elt_cfm_ma_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 35265, 1, 23, 1, 774, 1, 2, 1, 1, 3), row_status()).setMaxAccess('readcreate') if mibBuilder.loadTexts: eltCfmMaRowStatus.setStatus('deprecated') if mibBuilder.loadTexts: eltCfmMaRowStatus.setDescription('The status of the row. The writable columns in a row can not be changed if the row is active. All columns MUST have a valid value before a row can be activated. ') mibBuilder.exportSymbols('ELTEX-MES-CFM-MIB', eltCfmMdName=eltCfmMdName, eltCfmMdRowStatus=eltCfmMdRowStatus, eltCfmMaEntry=eltCfmMaEntry, eltMesCfmNotifications=eltMesCfmNotifications, eltMesCfmMd=eltMesCfmMd, eltCfmMdTable=eltCfmMdTable, eltCfmMdIndex=eltCfmMdIndex, eltMesCfmMa=eltMesCfmMa, eltMesCfmMIB=eltMesCfmMIB, eltCfmMaTable=eltCfmMaTable, eltMesCfmMIBObjects=eltMesCfmMIBObjects, eltCfmMaRowStatus=eltCfmMaRowStatus, eltCfmMdEntry=eltCfmMdEntry, eltCfmMaIndex=eltCfmMaIndex, eltCfmMaDirection=eltCfmMaDirection, PYSNMP_MODULE_ID=eltMesCfmMIB, eltMesCfmConformance=eltMesCfmConformance)
def mean(num_list): try: return sum(num_list)/len(num_list) except ZeroDivisionError: return 0 except TypeError: raise TypeError("Cannot get mean for non-number elements")
def mean(num_list): try: return sum(num_list) / len(num_list) except ZeroDivisionError: return 0 except TypeError: raise type_error('Cannot get mean for non-number elements')
recent = { 9: (1, 1), 3: (2, 2), 1: (3, 3), 0: (4, 4), 8: (5, 5), 4: (6, 6) } last = 4 for turn in range(len(recent.keys()) + 1, 30_000_001): last = recent[last][1] - recent[last][0] recent[last] = (recent[last][1] if last in recent else turn, turn) print(last)
recent = {9: (1, 1), 3: (2, 2), 1: (3, 3), 0: (4, 4), 8: (5, 5), 4: (6, 6)} last = 4 for turn in range(len(recent.keys()) + 1, 30000001): last = recent[last][1] - recent[last][0] recent[last] = (recent[last][1] if last in recent else turn, turn) print(last)
def clean_empty(pkg, dpath): empty = True for f in dpath.iterdir(): if f.is_dir() and not f.is_symlink(): if not clean_empty(pkg, f): empty = False else: empty = False if empty and dpath != pkg.destdir: pr = dpath.relative_to(pkg.destdir) pkg.log_warn(f"removed empty directory: {pr}") dpath.rmdir() return True return False def invoke(pkg): clean_empty(pkg, pkg.destdir)
def clean_empty(pkg, dpath): empty = True for f in dpath.iterdir(): if f.is_dir() and (not f.is_symlink()): if not clean_empty(pkg, f): empty = False else: empty = False if empty and dpath != pkg.destdir: pr = dpath.relative_to(pkg.destdir) pkg.log_warn(f'removed empty directory: {pr}') dpath.rmdir() return True return False def invoke(pkg): clean_empty(pkg, pkg.destdir)
if __name__ == '__main__': fin = open('input.txt', 'r') fout = open('output.txt', 'w') k = int(fin.readline()) s = ['1' for i in range(k)] counts = set() counts.add('1' * k) need = 2 ** k have = 1 while have < need: ss = s[-k+1:] if ''.join(ss) + '0' in counts: if ''.join(ss) + '1' not in counts: have += 1 counts.add(''.join(ss) + '1') s.append('1') else: s.append('0') have += 1 counts.add(''.join(ss) + '0') fout.write(''.join(s[:-k+1]))
if __name__ == '__main__': fin = open('input.txt', 'r') fout = open('output.txt', 'w') k = int(fin.readline()) s = ['1' for i in range(k)] counts = set() counts.add('1' * k) need = 2 ** k have = 1 while have < need: ss = s[-k + 1:] if ''.join(ss) + '0' in counts: if ''.join(ss) + '1' not in counts: have += 1 counts.add(''.join(ss) + '1') s.append('1') else: s.append('0') have += 1 counts.add(''.join(ss) + '0') fout.write(''.join(s[:-k + 1]))
#!/usr/bin/env python3 # -*- coding: utf-8 -*- class Options: def __init__(self, telegram_bot_token: str): self.telegram_bot_token = telegram_bot_token
class Options: def __init__(self, telegram_bot_token: str): self.telegram_bot_token = telegram_bot_token
# -*- coding: utf-8 -*- # This is Testaction 2 def main(args): number = args.get("number") square = number+number print(square) return {"number":square} #if __name__=="__main__": # main({"number":4})
def main(args): number = args.get('number') square = number + number print(square) return {'number': square}
d = {} l = [1] try: d[l] = 2 except TypeError: pass else: print('Should not be able to use a list as a dict key!') a = {} try: d[a] = 2 except TypeError: pass else: print('Should not be able to use a dict as a dict key!')
d = {} l = [1] try: d[l] = 2 except TypeError: pass else: print('Should not be able to use a list as a dict key!') a = {} try: d[a] = 2 except TypeError: pass else: print('Should not be able to use a dict as a dict key!')
def getIpBin(ip): ipBin = '' for index, octet in enumerate(ip.split("."), 1): ipBin += str(format(int(octet), '08b')) if index != 4: ipBin += "." return ipBin def getIpClass(ip): octet = ip.split(".") if 1 <= int(octet[0]) < 128: return 'A' elif 128 <= int(octet[0]) < 192: return 'B' elif 192 <= int(octet[0]) < 224: return 'C' elif 224 <= int(octet[0]) < 240: return 'D' elif 240 <= int(octet[0]) <= 255: return 'E' def getMask(maskShort): maskFull, maskFullBin = '', '' for i in range(1, 33): maskFullBin += "1" if i <= int(maskShort) else "0" if i % 8 == 0 and i != 32: maskFullBin += "." for index, octet in enumerate(maskFullBin.split("."), 1): maskFull += str(int(octet, 2)) if index != 4: maskFull += "." return maskFull, maskFullBin def getNetAddress(ip, mask): ip = ip.replace('.', '') netAddress, netAddressBin = '', '' for i in range(1, 33): netAddressBin += ip[i-1] if i <= int(mask) else "0" if i % 8 == 0 and i != 32: netAddressBin += "." for index, octet in enumerate(netAddressBin.split("."), 1): netAddress += str(int(octet, 2)) if index != 4: netAddress += "." return netAddress, netAddressBin def getBroadcast(ip, mask): ip, mask = ip.replace('.', ''), mask.replace('.', '') broadcast, broadcastBin = '', '' for i in range(1, 33): broadcastBin += ip[i - 1] if mask[i-1] == '1' else "1" if i % 8 == 0 and i != 32: broadcastBin += "." for index, octet in enumerate(broadcastBin.split("."), 1): broadcast += str(int(octet, 2)) if index != 4: broadcast += "." return broadcast, broadcastBin def getHostsInfo(netAddress, broadcast): hostMin, hostMinBin, hostMax, hostMaxBin = '', '', '', '' hostAll = 0 for index, octet in enumerate(netAddress.split("."), 1): if index == 4: hostMin += str(int(octet)+1) hostMinBin += str(format(int(octet)+1, '08b')) break hostMin += octet + "." hostMinBin += str(format(int(octet), '08b')) + "." for index, octet in enumerate(broadcast.split("."), 1): if index == 4: hostMax += str(int(octet)-1) hostMaxBin += str(format(int(octet)-1, '08b')) break hostMax += octet + "." hostMaxBin += str(format(int(octet), '08b')) + "." for index, (octetMin, octetMax) in enumerate(zip(hostMin.split("."), hostMax.split(".")), 1): if index != 4: hostAll += 256 * (int(octetMax) - int(octetMin)) else: hostAll += int(octetMax) - int(octetMin)+1 break return hostMin, hostMinBin, hostMax, hostMaxBin, hostAll
def get_ip_bin(ip): ip_bin = '' for (index, octet) in enumerate(ip.split('.'), 1): ip_bin += str(format(int(octet), '08b')) if index != 4: ip_bin += '.' return ipBin def get_ip_class(ip): octet = ip.split('.') if 1 <= int(octet[0]) < 128: return 'A' elif 128 <= int(octet[0]) < 192: return 'B' elif 192 <= int(octet[0]) < 224: return 'C' elif 224 <= int(octet[0]) < 240: return 'D' elif 240 <= int(octet[0]) <= 255: return 'E' def get_mask(maskShort): (mask_full, mask_full_bin) = ('', '') for i in range(1, 33): mask_full_bin += '1' if i <= int(maskShort) else '0' if i % 8 == 0 and i != 32: mask_full_bin += '.' for (index, octet) in enumerate(maskFullBin.split('.'), 1): mask_full += str(int(octet, 2)) if index != 4: mask_full += '.' return (maskFull, maskFullBin) def get_net_address(ip, mask): ip = ip.replace('.', '') (net_address, net_address_bin) = ('', '') for i in range(1, 33): net_address_bin += ip[i - 1] if i <= int(mask) else '0' if i % 8 == 0 and i != 32: net_address_bin += '.' for (index, octet) in enumerate(netAddressBin.split('.'), 1): net_address += str(int(octet, 2)) if index != 4: net_address += '.' return (netAddress, netAddressBin) def get_broadcast(ip, mask): (ip, mask) = (ip.replace('.', ''), mask.replace('.', '')) (broadcast, broadcast_bin) = ('', '') for i in range(1, 33): broadcast_bin += ip[i - 1] if mask[i - 1] == '1' else '1' if i % 8 == 0 and i != 32: broadcast_bin += '.' for (index, octet) in enumerate(broadcastBin.split('.'), 1): broadcast += str(int(octet, 2)) if index != 4: broadcast += '.' return (broadcast, broadcastBin) def get_hosts_info(netAddress, broadcast): (host_min, host_min_bin, host_max, host_max_bin) = ('', '', '', '') host_all = 0 for (index, octet) in enumerate(netAddress.split('.'), 1): if index == 4: host_min += str(int(octet) + 1) host_min_bin += str(format(int(octet) + 1, '08b')) break host_min += octet + '.' host_min_bin += str(format(int(octet), '08b')) + '.' for (index, octet) in enumerate(broadcast.split('.'), 1): if index == 4: host_max += str(int(octet) - 1) host_max_bin += str(format(int(octet) - 1, '08b')) break host_max += octet + '.' host_max_bin += str(format(int(octet), '08b')) + '.' for (index, (octet_min, octet_max)) in enumerate(zip(hostMin.split('.'), hostMax.split('.')), 1): if index != 4: host_all += 256 * (int(octetMax) - int(octetMin)) else: host_all += int(octetMax) - int(octetMin) + 1 break return (hostMin, hostMinBin, hostMax, hostMaxBin, hostAll)
pi = 3.14159 R = float(input()) volume = (4/3) * pi * R ** 3 print('VOLUME = {:.3f}'.format(volume))
pi = 3.14159 r = float(input()) volume = 4 / 3 * pi * R ** 3 print('VOLUME = {:.3f}'.format(volume))
''' Extracted and modified from https://github.com/dirkmoors/drf-tus available under MIT License, Copyright (c) 2017, Dirk Moors ''' default_app_config = 'froide.upload.apps.UploadConfig' tus_api_version = '1.0.0' tus_api_version_supported = ['1.0.0'] tus_api_extensions = ['creation', 'creation-defer-length', 'termination', 'checksum', 'expiration'] tus_api_checksum_algorithms = ['md5', 'sha1', 'sha224', 'sha256', 'sha384', 'sha512']
""" Extracted and modified from https://github.com/dirkmoors/drf-tus available under MIT License, Copyright (c) 2017, Dirk Moors """ default_app_config = 'froide.upload.apps.UploadConfig' tus_api_version = '1.0.0' tus_api_version_supported = ['1.0.0'] tus_api_extensions = ['creation', 'creation-defer-length', 'termination', 'checksum', 'expiration'] tus_api_checksum_algorithms = ['md5', 'sha1', 'sha224', 'sha256', 'sha384', 'sha512']
for _ in range(int(input())): n=int(input()) s=input() for i in range(5): if s[0:i]+s[n-(4-i):n]=='2020': print('YES') break else: print('NO')
for _ in range(int(input())): n = int(input()) s = input() for i in range(5): if s[0:i] + s[n - (4 - i):n] == '2020': print('YES') break else: print('NO')
stockCount = int(input()) stock = [] for x in range(stockCount): info = input().split(",") tupleVersion = (info[0], info[1], info[2]) stock.append(tupleVersion) stock = sorted(stock, key=lambda a: a[0]) companyNames = [] for i in stock: if i[0] not in companyNames: companyNames.append(i[0]) companySplit = {} for data in stock: if not data[0] in companySplit.keys(): companySplit[data[0]] = [data] else: companySplit[data[0]].append(data) for key in companySplit.keys(): li = companySplit[key] fixedData = [] for i in li: if "GB" in i[1]: ds = int(i[1].strip("GB")) * 1024 else: ds = int(i[1].strip("MB")) i = (i[0], ds, i[2]) fixedData.append(i) companySplit[key] = sorted(fixedData, reverse=True) stock = [] for key in companyNames: li = companySplit[key] fixedData = [] for i in li: if i[1]%1024 == 0: x = (i[0], str(int(i[1]/1024))+"GB", i[2]) else: x = (i[0], str(int(i[1]))+"MB", i[2]) fixedData.append(x) stock.extend(fixedData) for i in range(len(stock)-1): if stock[i][0] == stock[i+1][0] and stock[i][1] == stock[i+1][0]: item1 = int(stock[i][0].strip("MHz")) item2 = int(stock[i+1][0].strip("MHz")) if item2 > item1: stock[i], stock[i+1] = stock[i+1], stock[i] for i in stock: print("{} - ({}, {})".format(i[0], i[1], i[2]))
stock_count = int(input()) stock = [] for x in range(stockCount): info = input().split(',') tuple_version = (info[0], info[1], info[2]) stock.append(tupleVersion) stock = sorted(stock, key=lambda a: a[0]) company_names = [] for i in stock: if i[0] not in companyNames: companyNames.append(i[0]) company_split = {} for data in stock: if not data[0] in companySplit.keys(): companySplit[data[0]] = [data] else: companySplit[data[0]].append(data) for key in companySplit.keys(): li = companySplit[key] fixed_data = [] for i in li: if 'GB' in i[1]: ds = int(i[1].strip('GB')) * 1024 else: ds = int(i[1].strip('MB')) i = (i[0], ds, i[2]) fixedData.append(i) companySplit[key] = sorted(fixedData, reverse=True) stock = [] for key in companyNames: li = companySplit[key] fixed_data = [] for i in li: if i[1] % 1024 == 0: x = (i[0], str(int(i[1] / 1024)) + 'GB', i[2]) else: x = (i[0], str(int(i[1])) + 'MB', i[2]) fixedData.append(x) stock.extend(fixedData) for i in range(len(stock) - 1): if stock[i][0] == stock[i + 1][0] and stock[i][1] == stock[i + 1][0]: item1 = int(stock[i][0].strip('MHz')) item2 = int(stock[i + 1][0].strip('MHz')) if item2 > item1: (stock[i], stock[i + 1]) = (stock[i + 1], stock[i]) for i in stock: print('{} - ({}, {})'.format(i[0], i[1], i[2]))
# -------------- "solution" # -------------- "solution"
"""solution""" 'solution'
# # PySNMP MIB module TRIPPLITE-PRODUCTS (http://snmplabs.com/pysmi) # ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/TRIPPLITE-PRODUCTS # Produced by pysmi-0.3.4 at Wed May 1 15:27:41 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) # OctetString, Integer, ObjectIdentifier = mibBuilder.importSymbols("ASN1", "OctetString", "Integer", "ObjectIdentifier") NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues") ValueRangeConstraint, ConstraintsIntersection, ValueSizeConstraint, SingleValueConstraint, ConstraintsUnion = mibBuilder.importSymbols("ASN1-REFINEMENT", "ValueRangeConstraint", "ConstraintsIntersection", "ValueSizeConstraint", "SingleValueConstraint", "ConstraintsUnion") ModuleCompliance, NotificationGroup, ObjectGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup", "ObjectGroup") Bits, ModuleIdentity, Gauge32, MibScalar, MibTable, MibTableRow, MibTableColumn, Unsigned32, IpAddress, NotificationType, Counter64, ObjectIdentity, enterprises, iso, TimeTicks, Integer32, Counter32, MibIdentifier = mibBuilder.importSymbols("SNMPv2-SMI", "Bits", "ModuleIdentity", "Gauge32", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Unsigned32", "IpAddress", "NotificationType", "Counter64", "ObjectIdentity", "enterprises", "iso", "TimeTicks", "Integer32", "Counter32", "MibIdentifier") TextualConvention, RowStatus, TimeStamp, DisplayString, TruthValue = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "RowStatus", "TimeStamp", "DisplayString", "TruthValue") tripplite, = mibBuilder.importSymbols("TRIPPLITE", "tripplite") tlpProducts = ModuleIdentity((1, 3, 6, 1, 4, 1, 850, 1)) tlpProducts.setRevisions(('2016-06-22 11:15', '2016-02-02 11:15', '2016-01-25 12:30', '2016-01-20 12:00', '2016-01-08 11:40', '2015-11-25 13:00', '2015-11-10 13:00', '2015-10-16 12:30', '2015-08-19 12:00', '2014-12-04 10:00', '2014-04-14 09:00',)) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): if mibBuilder.loadTexts: tlpProducts.setRevisionsDescriptions(('Refactored MIB to extend from tripplite.mib', 'Redefined tlpUpsAlarmLoadLevelAboveThreshold', 'Redefined Reworked tlpAgentAttributes', 'Added tlpDeviceIdentUptime', 'Added tlpAtsConfigVoltageRangeLimitsTable', 'Refactored UPS, PDU and ATS input sections', 'Refactored tlpUps', 'Added tlpAtsConfigSource#ReturnTime', 'Added tlpAtsConfigThresholdTable', 'Created ATS device-specific section', 'Consolidated and Released for PAL v12.07.007x',)) if mibBuilder.loadTexts: tlpProducts.setLastUpdated('201606221115Z') if mibBuilder.loadTexts: tlpProducts.setOrganization('Tripp Lite') if mibBuilder.loadTexts: tlpProducts.setContactInfo('Software Engineering Tripp Lite 1111 W. 35th St. Chicago, IL 60609') if mibBuilder.loadTexts: tlpProducts.setDescription('This MIB module defines MIB objects which provide mechanisms for remote management capabilities of Tripp Lite PowerAlert and related software.') tlpHardware = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1)) tlpSoftware = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 2)) tlpAlarms = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3)) tlpNotify = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 4)) tlpDevice = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 1)) tlpDeviceDetail = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 2)) tlpDeviceTypes = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3)) tlpUps = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1)) tlpPdu = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2)) tlpEnvirosense = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3)) tlpAts = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4)) tlpCooling = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 5)) tlpKvm = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 6)) tlpRackTrack = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 7)) tlpSwitch = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 8)) tlpUpsIdent = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1)) tlpUpsDevice = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 2)) tlpUpsDetail = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3)) tlpUpsControl = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 4)) tlpUpsConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5)) tlpUpsBattery = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1)) tlpUpsInput = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2)) tlpUpsOutput = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 3)) tlpUpsBypass = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 4)) tlpUpsOutlet = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5)) tlpUpsWatchdog = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 6)) tlpPduIdent = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1)) tlpPduDevice = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 2)) tlpPduDetail = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3)) tlpPduControl = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 4)) tlpPduConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 5)) tlpPduInput = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1)) tlpPduOutput = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 2)) tlpPduOutlet = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3)) tlpPduCircuit = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 4)) tlpPduBreaker = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 5)) tlpPduHeatsink = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 6)) tlpEnvIdent = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 1)) tlpEnvDetail = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3)) tlpEnvConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 5)) tlpAtsIdent = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1)) tlpAtsDevice = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 2)) tlpAtsDetail = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3)) tlpAtsControl = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 4)) tlpAtsConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5)) tlpAtsInput = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1)) tlpAtsOutput = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 2)) tlpAtsOutlet = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3)) tlpAtsCircuit = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 4)) tlpAtsBreaker = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 5)) tlpAtsHeatsink = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 6)) tlpCoolingIdent = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 5, 1)) tlpCoolingDevice = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 5, 2)) tlpCoolingDetail = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 5, 3)) tlpCoolingControl = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 5, 4)) tlpCoolingConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 5, 5)) tlpCoolingInput = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 5, 3, 1)) tlpCoolingOutput = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 5, 3, 2)) tlpKvmIdent = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 6, 1)) tlpKvmDevice = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 6, 2)) tlpKvmDetail = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 6, 3)) tlpKvmControl = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 6, 4)) tlpKvmConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 6, 5)) tlpRackTrackIdent = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 7, 1)) tlpRackTrackDevice = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 7, 2)) tlpRackTrackDetail = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 7, 3)) tlpRackTrackControl = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 7, 4)) tlpRackTrackConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 7, 5)) tlpSwitchIdent = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 8, 1)) tlpSwitchDevice = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 8, 2)) tlpSwitchDetail = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 8, 3)) tlpSwitchControl = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 8, 4)) tlpSwitchConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 8, 5)) tlpAgentDetails = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 2, 1)) tlpAgentSettings = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 2, 2)) tlpAgentContacts = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 2, 3)) tlpAgentIdent = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 1)) tlpAgentAttributes = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2)) tlpAgentConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 2, 2, 1)) tlpAgentEmailContacts = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 1)) tlpAgentSnmpContacts = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 2)) tlpAlarmsWellKnown = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3)) tlpAlarmControl = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 4)) tlpAgentAlarms = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 1)) tlpDeviceAlarms = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 2)) tlpUpsAlarms = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3)) tlpPduAlarms = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4)) tlpEnvAlarms = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 5)) tlpAtsAlarms = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6)) tlpCoolingAlarms = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7)) tlpKvmAlarms = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 8)) tlpRackTrackAlarms = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 9)) tlpSwitchAlarms = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 10)) tlpNotifications = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 4, 1)) tlpDeviceNumDevices = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 1, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpDeviceNumDevices.setStatus('current') if mibBuilder.loadTexts: tlpDeviceNumDevices.setDescription('The number of devices that this agent is currently managing.') tlpDeviceTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 1, 2), ) if mibBuilder.loadTexts: tlpDeviceTable.setStatus('current') if mibBuilder.loadTexts: tlpDeviceTable.setDescription('A list of device table entries. The number of entries is given by the value of tlpDevicesNumDevices.') tlpDeviceEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 1, 2, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex")) if mibBuilder.loadTexts: tlpDeviceEntry.setStatus('current') if mibBuilder.loadTexts: tlpDeviceEntry.setDescription('An entry containing information applicable to a particular device managed by this agent.') tlpDeviceIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 1, 2, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpDeviceIndex.setStatus('current') if mibBuilder.loadTexts: tlpDeviceIndex.setDescription('The table row index for the device.') tlpDeviceRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 1, 2, 1, 2), RowStatus()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpDeviceRowStatus.setStatus('current') if mibBuilder.loadTexts: tlpDeviceRowStatus.setDescription('Used with table edits to indicate the status of a given row in tlDeviceTable.') tlpDeviceType = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 1, 2, 1, 3), ObjectIdentifier()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpDeviceType.setStatus('current') if mibBuilder.loadTexts: tlpDeviceType.setDescription('The type of device. One of the appropriate hardware types: ups, pdu, envirosense, etc.') tlpDeviceManufacturer = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 1, 2, 1, 4), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpDeviceManufacturer.setStatus('current') if mibBuilder.loadTexts: tlpDeviceManufacturer.setDescription('The name of the manufacturer.') tlpDeviceModel = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 1, 2, 1, 5), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpDeviceModel.setStatus('current') if mibBuilder.loadTexts: tlpDeviceModel.setDescription('The model designation.') tlpDeviceName = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 1, 2, 1, 6), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpDeviceName.setStatus('current') if mibBuilder.loadTexts: tlpDeviceName.setDescription('A user-supplied name for the device.') tlpDeviceID = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 1, 2, 1, 7), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpDeviceID.setStatus('current') if mibBuilder.loadTexts: tlpDeviceID.setDescription('A user-supplied ID for the device.') tlpDeviceLocation = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 1, 2, 1, 8), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpDeviceLocation.setStatus('current') if mibBuilder.loadTexts: tlpDeviceLocation.setDescription('A user-supplied location for the device.') tlpDeviceRegion = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 1, 2, 1, 9), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpDeviceRegion.setStatus('current') if mibBuilder.loadTexts: tlpDeviceRegion.setDescription('A user-supplied region for the device.') tlpDeviceStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 1, 2, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("none", 0), ("critical", 1), ("warning", 2), ("info", 3), ("status", 4), ("offline", 5), ("custom", 6), ("configuration", 7)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpDeviceStatus.setStatus('current') if mibBuilder.loadTexts: tlpDeviceStatus.setDescription('The currently most critical alarm status for the device.') tlpDeviceIdentTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 2, 1), ) if mibBuilder.loadTexts: tlpDeviceIdentTable.setStatus('current') if mibBuilder.loadTexts: tlpDeviceIdentTable.setDescription('The identity details of each device in device table. The number of entries is given by the value of tlpDevicesNumDevices.') tlpDeviceIdentEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 2, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex")) if mibBuilder.loadTexts: tlpDeviceIdentEntry.setStatus('current') if mibBuilder.loadTexts: tlpDeviceIdentEntry.setDescription('An entry containing details for a particular device.') tlpDeviceIdentProtocol = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 2, 1, 1, 1), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpDeviceIdentProtocol.setStatus('current') if mibBuilder.loadTexts: tlpDeviceIdentProtocol.setDescription('The Tripplite protocol used to communicate with the device.') tlpDeviceIdentCommPortType = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 2, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("unknown", 0), ("serial", 1), ("usb", 2), ("hid", 3), ("simulated", 4), ("unittest", 5)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpDeviceIdentCommPortType.setStatus('current') if mibBuilder.loadTexts: tlpDeviceIdentCommPortType.setDescription('The type of communications port used to connect with the device.') tlpDeviceIdentCommPortName = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 2, 1, 1, 3), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpDeviceIdentCommPortName.setStatus('current') if mibBuilder.loadTexts: tlpDeviceIdentCommPortName.setDescription('The name of the communications port.') tlpDeviceIdentFirmwareVersion = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 2, 1, 1, 4), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpDeviceIdentFirmwareVersion.setStatus('current') if mibBuilder.loadTexts: tlpDeviceIdentFirmwareVersion.setDescription('The firmware version of the device.') tlpDeviceIdentSerialNum = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 2, 1, 1, 5), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpDeviceIdentSerialNum.setStatus('current') if mibBuilder.loadTexts: tlpDeviceIdentSerialNum.setDescription('The serial number of the device.') tlpDeviceIdentDateInstalled = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 2, 1, 1, 6), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpDeviceIdentDateInstalled.setStatus('current') if mibBuilder.loadTexts: tlpDeviceIdentDateInstalled.setDescription('The installation date for this device in the format of mm/dd/yyyy.') tlpDeviceIdentHardwareVersion = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 2, 1, 1, 7), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpDeviceIdentHardwareVersion.setStatus('current') if mibBuilder.loadTexts: tlpDeviceIdentHardwareVersion.setDescription('The hardware revision of the device. This value will return ERROR_NO_SUCH_NAME if not supported by the device.') tlpDeviceIdentCurrentUptime = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 2, 1, 1, 8), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpDeviceIdentCurrentUptime.setStatus('current') if mibBuilder.loadTexts: tlpDeviceIdentCurrentUptime.setDescription('The device uptime since its last startup. The format of this value is a comma- delimited string representing days, hours and minutes. For example, the value of 123,4,5 represents 123 days, 4 hours and 5 minutes. This value will return ERROR_NO_SUCH_NAME if not supported by the device.') tlpDeviceIdentTotalUptime = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 2, 1, 1, 9), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpDeviceIdentTotalUptime.setStatus('current') if mibBuilder.loadTexts: tlpDeviceIdentTotalUptime.setDescription('The cumulative (total) uptime for the device. The format of this value is a comma- delimited string representing days, hours and minutes. For example, the value of 123,4,5 represents 123 days, 4 hours and 5 minutes. This value will return ERROR_NO_SUCH_NAME if not supported by the device.') tlpUpsIdentNumUps = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsIdentNumUps.setStatus('current') if mibBuilder.loadTexts: tlpUpsIdentNumUps.setDescription('The number of ups devices that this agent is currently managing.') tlpUpsIdentTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 2), ) if mibBuilder.loadTexts: tlpUpsIdentTable.setStatus('current') if mibBuilder.loadTexts: tlpUpsIdentTable.setDescription('The identity details of each ups in device table. This is a sparse dependent table, and will contain some subset of devices that are upss.') tlpUpsIdentEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 2, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex")) if mibBuilder.loadTexts: tlpUpsIdentEntry.setStatus('current') if mibBuilder.loadTexts: tlpUpsIdentEntry.setDescription('An entry containing details for a particular ups.') tlpUpsIdentNumInputs = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 2, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsIdentNumInputs.setStatus('current') if mibBuilder.loadTexts: tlpUpsIdentNumInputs.setDescription('The number of input lines supported by the ups.') tlpUpsIdentNumOutputs = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 2, 1, 2), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsIdentNumOutputs.setStatus('current') if mibBuilder.loadTexts: tlpUpsIdentNumOutputs.setDescription('The number of output lines supported by the ups.') tlpUpsIdentNumBypass = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 2, 1, 3), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsIdentNumBypass.setStatus('current') if mibBuilder.loadTexts: tlpUpsIdentNumBypass.setDescription('The number of bypass lines supported by the ups.') tlpUpsIdentNumPhases = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 2, 1, 4), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsIdentNumPhases.setStatus('current') if mibBuilder.loadTexts: tlpUpsIdentNumPhases.setDescription('The number of phases supported by the ups.') tlpUpsIdentNumOutlets = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 2, 1, 5), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsIdentNumOutlets.setStatus('current') if mibBuilder.loadTexts: tlpUpsIdentNumOutlets.setDescription('The number of receptacles supported by the ups.') tlpUpsIdentNumOutletGroups = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 2, 1, 6), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsIdentNumOutletGroups.setStatus('current') if mibBuilder.loadTexts: tlpUpsIdentNumOutletGroups.setDescription('The number of receptacle groups supported by the ups.') tlpUpsIdentNumBatteryPacks = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 2, 1, 7), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsIdentNumBatteryPacks.setStatus('current') if mibBuilder.loadTexts: tlpUpsIdentNumBatteryPacks.setDescription('The number of battery packs, internal and external combined, supported by the ups.') tlpUpsSupportsTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 3), ) if mibBuilder.loadTexts: tlpUpsSupportsTable.setStatus('current') if mibBuilder.loadTexts: tlpUpsSupportsTable.setDescription('The supported details of each ups in device table. This is a sparse dependent table, and will contain some subset of devices that are upss.') tlpUpsSupportsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 3, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex")) if mibBuilder.loadTexts: tlpUpsSupportsEntry.setStatus('current') if mibBuilder.loadTexts: tlpUpsSupportsEntry.setDescription('An entry containing supported details for a particular ups.') tlpUpsSupportsEnergywise = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 3, 1, 1), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsSupportsEnergywise.setStatus('current') if mibBuilder.loadTexts: tlpUpsSupportsEnergywise.setDescription('Indicates whether the ups supports Cisco EnergyWise.') tlpUpsSupportsRampShed = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 3, 1, 2), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsSupportsRampShed.setStatus('current') if mibBuilder.loadTexts: tlpUpsSupportsRampShed.setDescription('Indicates whether the ups supports ramping and shedding.') tlpUpsSupportsOutletGroup = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 3, 1, 3), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsSupportsOutletGroup.setStatus('current') if mibBuilder.loadTexts: tlpUpsSupportsOutletGroup.setDescription('Indicates whether the ups supports outlet groups.') tlpUpsSupportsOutletCurrentPower = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 3, 1, 4), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsSupportsOutletCurrentPower.setStatus('current') if mibBuilder.loadTexts: tlpUpsSupportsOutletCurrentPower.setDescription('Indicates whether the ups reports individual receptacle current and power measurements. Devices that do not support individual receptacle measurements will always return ERROR_NO_SUCH_NAME for tlpUpsOutletCurrent and tlpUpsOutletPower.') tlpUpsSupportsOutletVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 3, 1, 5), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsSupportsOutletVoltage.setStatus('current') if mibBuilder.loadTexts: tlpUpsSupportsOutletVoltage.setDescription('Indicates whether the ups reports individual receptacle voltage measurements. Devices that do not support individual receptacle measurements will always return ERROR_NO_SUCH_NAME for tlpUpsOutletVoltage.') tlpUpsDeviceTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 2, 1), ) if mibBuilder.loadTexts: tlpUpsDeviceTable.setStatus('current') if mibBuilder.loadTexts: tlpUpsDeviceTable.setDescription('The device details of each ups in device table. This is a sparse dependent table, and will contain some subset of devices that are upss.') tlpUpsDeviceEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 2, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex")) if mibBuilder.loadTexts: tlpUpsDeviceEntry.setStatus('current') if mibBuilder.loadTexts: tlpUpsDeviceEntry.setDescription('An entry containing device details for a particular ups.') tlpUpsDeviceMainLoadState = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 2, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("unknown", 0), ("off", 1), ("on", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsDeviceMainLoadState.setStatus('current') if mibBuilder.loadTexts: tlpUpsDeviceMainLoadState.setDescription('The current state of the main output of the device.') tlpUpsDeviceMainLoadControllable = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 2, 1, 1, 2), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsDeviceMainLoadControllable.setStatus('current') if mibBuilder.loadTexts: tlpUpsDeviceMainLoadControllable.setDescription('Indicates whether or not the main output is controllable, and whether the ups can be turned off and on.') tlpUpsDeviceMainLoadCommand = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 2, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("idle", 0), ("turnOff", 1), ("turnOn", 2), ("cycle", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsDeviceMainLoadCommand.setStatus('current') if mibBuilder.loadTexts: tlpUpsDeviceMainLoadCommand.setDescription('Reading this value will always return 0. Setting this value to turnOff(1) will turn off the main output of the ups. Setting this value to turnOn(2) will turn on the main output of the ups. Setting this value to cycle(3) will turn off the main output, then turn it back on.') tlpUpsDevicePowerOnDelay = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 2, 1, 1, 4), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsDevicePowerOnDelay.setStatus('current') if mibBuilder.loadTexts: tlpUpsDevicePowerOnDelay.setDescription('The configurable delay value, which sets the amount of additional time a given device will wait before it connects to a valid AC source. By default the delay value is set to 0.') tlpUpsDeviceTestDate = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 2, 1, 1, 5), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsDeviceTestDate.setStatus('current') if mibBuilder.loadTexts: tlpUpsDeviceTestDate.setDescription('The date of the last self-test run on the ups, in the format YYYY-MM-DD.') tlpUpsDeviceTestResultsStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 2, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9))).clone(namedValues=NamedValues(("noTest", 0), ("doneAndPassed", 1), ("doneAndWarning", 2), ("doneAndError", 3), ("aborted", 4), ("inProgress", 5), ("noTestInitiated", 6), ("badBattery", 7), ("overCurrent", 8), ("batteryFailed", 9)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsDeviceTestResultsStatus.setStatus('current') if mibBuilder.loadTexts: tlpUpsDeviceTestResultsStatus.setDescription('The result of the last self-test run on the ups.') tlpUpsDeviceTemperatureC = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 2, 1, 1, 7), Integer32()).setUnits('degrees Centigrade').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsDeviceTemperatureC.setStatus('current') if mibBuilder.loadTexts: tlpUpsDeviceTemperatureC.setDescription('The ambient temperature at or near the ups casing. Temperature measurements are not supported on all models. If not supported, this value will always return ERROR_NO_SUCH_NAME.') tlpUpsDeviceTemperatureF = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 2, 1, 1, 8), Integer32()).setUnits('degrees Farenheit').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsDeviceTemperatureF.setStatus('current') if mibBuilder.loadTexts: tlpUpsDeviceTemperatureF.setDescription('The ambient temperature at or near the ups casing. Temperature measurements are not supported on all models. If not supported, this value will always return ERROR_NO_SUCH_NAME.') tlpUpsBatterySummaryTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 1), ) if mibBuilder.loadTexts: tlpUpsBatterySummaryTable.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatterySummaryTable.setDescription('The battery system summary of each ups in the device table. This is a sparse dependent table, and will contain the number of entries based upon the number of upss managed by the agent as reported by tlpUpsIdentNumUps.') tlpUpsBatterySummaryEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex")) if mibBuilder.loadTexts: tlpUpsBatterySummaryEntry.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatterySummaryEntry.setDescription('An entry containing information applicable to a particular battery system managed by this agent.') tlpUpsBatteryStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("unknown", 1), ("batteryNormal", 2), ("batteryLow", 3), ("batteryDepleted", 4)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsBatteryStatus.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatteryStatus.setDescription("The indication of the capacity remaining in the UPS system's batteries. A value of batteryNormal indicates that the remaining run-time is greater than tlpUpsConfigLowBattTime. A value of batteryLow indicates that the remaining battery run-time is less than or equal to tlpUpsConfigLowBattTime. A value of batteryDepleted indicates that the UPS will be unable to sustain the present load when and if the utility power is lost (including the possibility that the utility power is currently absent and the UPS is unable to sustain the output).") tlpUpsSecondsOnBattery = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 1, 1, 2), Unsigned32()).setUnits('seconds').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsSecondsOnBattery.setStatus('current') if mibBuilder.loadTexts: tlpUpsSecondsOnBattery.setDescription('If the unit is on battery power, the elapsed time since the UPS last switched to battery power, or the time since the network management subsystem was last restarted, whichever is less. Zero shall be returned if the unit is not on battery power.') tlpUpsEstimatedMinutesRemaining = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 1, 1, 3), Unsigned32()).setUnits('minutes').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsEstimatedMinutesRemaining.setStatus('current') if mibBuilder.loadTexts: tlpUpsEstimatedMinutesRemaining.setDescription('An estimate of the time to battery charge depletion under the present load conditions if the utility power is off and remains off, or if it were to be lost and remain off.') tlpUpsEstimatedChargeRemaining = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 1, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setUnits('percent').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsEstimatedChargeRemaining.setStatus('current') if mibBuilder.loadTexts: tlpUpsEstimatedChargeRemaining.setDescription('An estimate of the battery charge remaining expressed as a percent of full charge.') tlpUpsBatteryRunTimeRemaining = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 1, 1, 5), TimeTicks()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsBatteryRunTimeRemaining.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatteryRunTimeRemaining.setDescription('The run time remaining before batteries are exhausted. If the device does not support run time remaining, then the agent reports ERROR_NO_SUCH_NAME.') tlpUpsBatteryDetailTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 2), ) if mibBuilder.loadTexts: tlpUpsBatteryDetailTable.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatteryDetailTable.setDescription('The battery detail of each ups in the device table. This is a sparse dependent table, and will contain the number of entries based upon the number of upss managed by the agent as reported by tlpUpsIdentNumUps.') tlpUpsBatteryDetailEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 2, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex")) if mibBuilder.loadTexts: tlpUpsBatteryDetailEntry.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatteryDetailEntry.setDescription('An entry containing information applicable to a particular battery system managed by this agent.') tlpUpsBatteryDetailVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 2, 1, 1), Unsigned32()).setUnits('0.1 Volt DC').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsBatteryDetailVoltage.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatteryDetailVoltage.setDescription('The magnitude of the present battery voltage.') tlpUpsBatteryDetailCurrent = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 2, 1, 2), Unsigned32()).setUnits('0.1 Amp DC').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsBatteryDetailCurrent.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatteryDetailCurrent.setDescription('The present battery current.') tlpUpsBatteryDetailCapacity = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 2, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setUnits('percent').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsBatteryDetailCapacity.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatteryDetailCapacity.setDescription('The estimated remaining battery capacity expressed as a percent of full capacity.') tlpUpsBatteryDetailCharge = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("floating", 0), ("charging", 1), ("resting", 2), ("discharging", 3), ("normal", 4), ("standby", 5)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsBatteryDetailCharge.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatteryDetailCharge.setDescription('Denotes the charge state of the battery.') tlpUpsBatteryDetailChargerStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 2, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("ok", 0), ("inFaultCondition", 1)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsBatteryDetailChargerStatus.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatteryDetailChargerStatus.setDescription('The status of the battery charger. If the device does not support this value, then the agent will report ERROR_NO_SUCH_NAME.') tlpUpsBatteryPackIdentTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 3), ) if mibBuilder.loadTexts: tlpUpsBatteryPackIdentTable.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatteryPackIdentTable.setDescription('The battery identification details for each ups in the device table. This is a sparse dependent table, and will contain the number of entries based upon the number of upss managed by the agent as reported by upsIdentNumUps and the number of battery battery packs per each as reported by tlpUpsNumBatteryPacks.') tlpUpsBatteryPackIdentEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 3, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"), (0, "TRIPPLITE-PRODUCTS", "tlpUpsBatteryPackIdentIndex")) if mibBuilder.loadTexts: tlpUpsBatteryPackIdentEntry.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatteryPackIdentEntry.setDescription('An entry containing information applicable to a particular battery pack managed by this agent.') tlpUpsBatteryPackIdentIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 3, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsBatteryPackIdentIndex.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatteryPackIdentIndex.setDescription('The table row index for the ups battery pack.') tlpUpsBatteryPackIdentManufacturer = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 3, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsBatteryPackIdentManufacturer.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatteryPackIdentManufacturer.setDescription('The manufacturer of the battery pack. If the device does not support this value, then the agent reports ERROR_NO_SUCH_NAME.') tlpUpsBatteryPackIdentModel = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 3, 1, 3), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsBatteryPackIdentModel.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatteryPackIdentModel.setDescription('The model or device name of the battery pack. If the device does not support this value, then the agent reports ERROR_NO_SUCH_NAME.') tlpUpsBatteryPackIdentSerialNum = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 3, 1, 4), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsBatteryPackIdentSerialNum.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatteryPackIdentSerialNum.setDescription('The serial number of the battery pack. If the device does not support this value, then the agent reports ERROR_NO_SUCH_NAME.') tlpUpsBatteryPackIdentFirmware = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 3, 1, 5), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsBatteryPackIdentFirmware.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatteryPackIdentFirmware.setDescription('The firmware of the battery pack. If the device does not support this value, then the agent reports ERROR_NO_SUCH_NAME.') tlpUpsBatteryPackIdentSKU = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 3, 1, 6), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsBatteryPackIdentSKU.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatteryPackIdentSKU.setDescription('The SKU of the battery pack. If the device does not support this value, then the agent reports ERROR_NO_SUCH_NAME.') tlpUpsBatteryPackConfigTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 4), ) if mibBuilder.loadTexts: tlpUpsBatteryPackConfigTable.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatteryPackConfigTable.setDescription('The battery configuration details for each ups in the device table. This is a sparse dependent table, and will contain the number of entries based upon the number of upss managed by the agent as reported by upsIdentNumUps and the number of battery battery packs per each as reported by tlpUpsNumBatteryPacks.') tlpUpsBatteryPackConfigEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 4, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"), (0, "TRIPPLITE-PRODUCTS", "tlpUpsBatteryPackIdentIndex")) if mibBuilder.loadTexts: tlpUpsBatteryPackConfigEntry.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatteryPackConfigEntry.setDescription('An entry containing information applicable to a particular battery pack managed by this agent.') tlpUpsBatteryPackConfigChemistry = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 4, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("unknown", 0), ("leadAcid", 1), ("nickelCadmium", 2), ("lithiumIon", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsBatteryPackConfigChemistry.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatteryPackConfigChemistry.setDescription('The type of battery pack.') tlpUpsBatteryPackConfigStyle = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 4, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("unknown", 0), ("nonsmart", 1), ("smart", 2), ("bms", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsBatteryPackConfigStyle.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatteryPackConfigStyle.setDescription('The style of battery pack.') tlpUpsBatteryPackConfigLocation = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 4, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("unknown", 0), ("internal", 1), ("external", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsBatteryPackConfigLocation.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatteryPackConfigLocation.setDescription('The location of the battery pack.') tlpUpsBatteryPackConfigStrings = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 4, 1, 4), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsBatteryPackConfigStrings.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatteryPackConfigStrings.setDescription('The number of series strings in parallel contained in the battery pack. If the device does not support this value, then the agent will report ERROR_NO_SUCH_NAME.') tlpUpsBatteryPackConfigBatteriesPerString = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 4, 1, 5), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsBatteryPackConfigBatteriesPerString.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatteryPackConfigBatteriesPerString.setDescription('The number of battery per each string in the battery pack. If the device does not support this value, then the agent will report ERROR_NO_SUCH_NAME.') tlpUpsBatteryPackConfigCellsPerBattery = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 4, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 4, 6))).clone(namedValues=NamedValues(("unknown", 0), ("one", 1), ("two", 2), ("four", 4), ("six", 6)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsBatteryPackConfigCellsPerBattery.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatteryPackConfigCellsPerBattery.setDescription('The number of cells per battery..') tlpUpsBatteryPackConfigNumBatteries = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 4, 1, 7), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsBatteryPackConfigNumBatteries.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatteryPackConfigNumBatteries.setDescription('The total number of batteries contained in the battery pack. If the device does not support this value, then the agent will report ERROR_NO_SUCH_NAME.') tlpUpsBatteryPackConfigCapacityUnits = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 4, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("mAHr", 0), ("mWHr", 1)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsBatteryPackConfigCapacityUnits.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatteryPackConfigCapacityUnits.setDescription('The units of measurement used for tlpUpsBatteryPackConfigDesignCapacity and tlpUpsBatteryPackConfigCellCapacity. If supported, this value will report either mAHR(1), amps per hour, or mWhr(1), watts per hour. If the device does not support this value, then the agent will report ERROR_NO_SUCH_NAME.') tlpUpsBatteryPackConfigDesignCapacity = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 4, 1, 9), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsBatteryPackConfigDesignCapacity.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatteryPackConfigDesignCapacity.setDescription('The theoretical or nominal capacity of the battery pack in the measurement defined by tlpUpsBatteryPackConfigCapacityUnits. If the device does not support this value, then the agent will report ERROR_NO_SUCH_NAME.') tlpUpsBatteryPackConfigCellCapacity = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 4, 1, 10), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsBatteryPackConfigCellCapacity.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatteryPackConfigCellCapacity.setDescription('The capacity of the batteries in the measurement defined by tlpUpsBatteryPackConfigCapacityUnits. If the device does not support this value, then the agent will report ERROR_NO_SUCH_NAME.') tlpUpsBatteryPackConfigMinCellVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 4, 1, 11), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsBatteryPackConfigMinCellVoltage.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatteryPackConfigMinCellVoltage.setDescription('The minimum cell voltage for the batteries. If the device does not support this value, then the agent will report ERROR_NO_SUCH_NAME.') tlpUpsBatteryPackConfigMaxCellVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 4, 1, 12), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsBatteryPackConfigMaxCellVoltage.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatteryPackConfigMaxCellVoltage.setDescription('The maximum cell voltage for the batteries. If the device does not support this value, then the agent will report ERROR_NO_SUCH_NAME.') tlpUpsBatteryPackDetailTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 5), ) if mibBuilder.loadTexts: tlpUpsBatteryPackDetailTable.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatteryPackDetailTable.setDescription('The details of each battery pack for each ups in the device table. This is a sparse dependent table, and will contain the number of entries based upon the number of upss and battery packs managed by the agent as reported by tlpUpsIdentNumUps and tlpUpsIdentNumBatteryPacks.') tlpUpsBatteryPackDetailEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 5, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"), (0, "TRIPPLITE-PRODUCTS", "tlpUpsBatteryPackIdentIndex")) if mibBuilder.loadTexts: tlpUpsBatteryPackDetailEntry.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatteryPackDetailEntry.setDescription('An entry containing information applicable to a particular battery system managed by this agent.') tlpUpsBatteryPackDetailCondition = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 5, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("unknown", 0), ("good", 1), ("weak", 2), ("bad", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsBatteryPackDetailCondition.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatteryPackDetailCondition.setDescription('The condition of the battery. A bad battery should be replaced.') tlpUpsBatteryPackDetailTemperatureC = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 5, 1, 2), Unsigned32()).setUnits('degrees Centigrade').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsBatteryPackDetailTemperatureC.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatteryPackDetailTemperatureC.setDescription('The ambient temperature at or near the UPS Battery casing.') tlpUpsBatteryPackDetailTemperatureF = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 5, 1, 3), Unsigned32()).setUnits('0.1 degrees Farenheit').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsBatteryPackDetailTemperatureF.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatteryPackDetailTemperatureF.setDescription('The ambient temperature at or near the UPS Battery casing.') tlpUpsBatteryPackDetailAge = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 5, 1, 4), Unsigned32()).setUnits('0.1 Years').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsBatteryPackDetailAge.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatteryPackDetailAge.setDescription('The age of the battery in years. This is equal to the current date minus tlpUpsBatteryPackIdentInstallDate.') tlpUpsBatteryPackDetailLastReplaceDate = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 5, 1, 5), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsBatteryPackDetailLastReplaceDate.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatteryPackDetailLastReplaceDate.setDescription('The date when the batteries were last replaced in YYYYMMDD format.') tlpUpsBatteryPackDetailNextReplaceDate = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 5, 1, 6), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsBatteryPackDetailNextReplaceDate.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatteryPackDetailNextReplaceDate.setDescription('The date when the batteries should next be replaced in YYYYMMDD format.') tlpUpsBatteryPackDetailCycleCount = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 5, 1, 7), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsBatteryPackDetailCycleCount.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatteryPackDetailCycleCount.setDescription('The number of times the battery went into invert mode. This number is incremented by 1 each time the unit goes on battery mode (with the exception of Self Test mode). If the device does not support this value, then the agent will report ERROR_NO_SUCH_NAME.') tlpUpsInputTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 1), ) if mibBuilder.loadTexts: tlpUpsInputTable.setStatus('current') if mibBuilder.loadTexts: tlpUpsInputTable.setDescription('The input details of each ups in the device table. This is a sparse dependent table, and will contain the number of entries based upon the number of upss managed by the agent as reported by tlpUpsIdentNumUps.') tlpUpsInputEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex")) if mibBuilder.loadTexts: tlpUpsInputEntry.setStatus('current') if mibBuilder.loadTexts: tlpUpsInputEntry.setDescription('An entry containing information applicable to all input lines per each ups managed by this agent.') tlpUpsInputLineBads = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 1, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsInputLineBads.setStatus('current') if mibBuilder.loadTexts: tlpUpsInputLineBads.setDescription('A count of the number of times the input entered an out-of-tolerance condition as defined by the manufacturer. This count is incremented by one each time the input transitions from zero out-of-tolerance lines to one or more input lines out-of-tolerance. This value is not supported on all units. If the ups does not support this value, then the agent reports ERROR_NO_SUCH_NAME.') tlpUpsInputNominalVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 1, 1, 2), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsInputNominalVoltage.setStatus('current') if mibBuilder.loadTexts: tlpUpsInputNominalVoltage.setDescription('The nominal value of the input line voltage. This value may not be supported on all models. If not supported, this value will return ERROR_NO_SUCH_NAME.') tlpUpsInputNominalFrequency = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 1, 1, 3), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsInputNominalFrequency.setStatus('current') if mibBuilder.loadTexts: tlpUpsInputNominalFrequency.setDescription('The nominal value of the input line frequency. This value may not be supported on all models. If not supported, this value will return ERROR_NO_SUCH_NAME.') tlpUpsInputLowTransferVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 1, 1, 4), Unsigned32()).setUnits('0.1 Volts').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsInputLowTransferVoltage.setStatus('current') if mibBuilder.loadTexts: tlpUpsInputLowTransferVoltage.setDescription('The minimum line voltage allowed before the ups system transfers to battery backup.') tlpUpsInputLowTransferVoltageLowerBound = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 1, 1, 5), Unsigned32()).setUnits('0.1 Volts').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsInputLowTransferVoltageLowerBound.setStatus('current') if mibBuilder.loadTexts: tlpUpsInputLowTransferVoltageLowerBound.setDescription('The lower boundary value of tlpUpsInputLowTransferVoltage as dictated by the hardware of the unit.') tlpUpsInputLowTransferVoltageUpperBound = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 1, 1, 6), Unsigned32()).setUnits('0.1 Volts').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsInputLowTransferVoltageUpperBound.setStatus('current') if mibBuilder.loadTexts: tlpUpsInputLowTransferVoltageUpperBound.setDescription('The upper boundary value of tlpUpsInputLowTransferVoltage as dictated by the hardware of the unit.') tlpUpsInputHighTransferVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 1, 1, 7), Unsigned32()).setUnits('0.1 Volts').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsInputHighTransferVoltage.setStatus('current') if mibBuilder.loadTexts: tlpUpsInputHighTransferVoltage.setDescription('The maximum line voltage allowed before the ups system transfers to battery backup.') tlpUpsInputHighTransferVoltageLowerBound = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 1, 1, 8), Unsigned32()).setUnits('0.1 Volts').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsInputHighTransferVoltageLowerBound.setStatus('current') if mibBuilder.loadTexts: tlpUpsInputHighTransferVoltageLowerBound.setDescription('The lower boundary value of tlpUpsInputHighTransferVoltage as dictated by the hardware of the unit.') tlpUpsInputHighTransferVoltageUpperBound = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 1, 1, 9), Unsigned32()).setUnits('0.1 Volts').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsInputHighTransferVoltageUpperBound.setStatus('current') if mibBuilder.loadTexts: tlpUpsInputHighTransferVoltageUpperBound.setDescription('The upper boundary value of tlpUpsInputHighTransferVoltage as dictated by the hardware of the unit.') tlpUpsInputPhaseTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 2), ) if mibBuilder.loadTexts: tlpUpsInputPhaseTable.setStatus('current') if mibBuilder.loadTexts: tlpUpsInputPhaseTable.setDescription('The input phase details of each ups in the device table. This is a sparse dependent table, and will contain the number of entries based upon the number of upss managed by the agent as reported by tlpUpsIdentNumUps and tlpUpsIdentNumPhases.') tlpUpsInputPhaseEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 2, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"), (0, "TRIPPLITE-PRODUCTS", "tlpUpsInputPhaseIndex")) if mibBuilder.loadTexts: tlpUpsInputPhaseEntry.setStatus('current') if mibBuilder.loadTexts: tlpUpsInputPhaseEntry.setDescription('An entry containing information applicable to a particular input phase managed by this agent.') tlpUpsInputPhaseIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 2, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsInputPhaseIndex.setStatus('current') if mibBuilder.loadTexts: tlpUpsInputPhaseIndex.setDescription('The table row index for the ups input phase.') tlpUpsInputPhaseFrequency = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 2, 1, 2), Unsigned32()).setUnits('0.1 Hertz').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsInputPhaseFrequency.setStatus('current') if mibBuilder.loadTexts: tlpUpsInputPhaseFrequency.setDescription('The present input frequency for a given input line.') tlpUpsInputPhaseVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 2, 1, 3), Unsigned32()).setUnits('0.1 Volt DC').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsInputPhaseVoltage.setStatus('current') if mibBuilder.loadTexts: tlpUpsInputPhaseVoltage.setDescription('The magnitude of the present input voltage for a given input line.') tlpUpsInputPhaseVoltageMin = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 2, 1, 4), Unsigned32()).setUnits('0.1 Volt DC').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsInputPhaseVoltageMin.setStatus('current') if mibBuilder.loadTexts: tlpUpsInputPhaseVoltageMin.setDescription('The minimum input voltage value since the last reset of this value for a given input line. If any value is written to either tlpUpsInputVoltageMin or tlpUpsInputVoltageMax, both will be reset to their appropriate minimum and maximum values.') tlpUpsInputPhaseVoltageMax = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 2, 1, 5), Unsigned32()).setUnits('0.1 Volt DC').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsInputPhaseVoltageMax.setStatus('current') if mibBuilder.loadTexts: tlpUpsInputPhaseVoltageMax.setDescription('The maximum input voltage value since the last reset of this value for a given input line. If any value is written to either tlpUpsInputVoltageMin or tlpUpsInputVoltageMax, both will be reset to their appropriate minimum and maximum values.') tlpUpsInputPhaseCurrent = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 2, 1, 6), Unsigned32()).setUnits('0.01 Amp DC').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsInputPhaseCurrent.setStatus('current') if mibBuilder.loadTexts: tlpUpsInputPhaseCurrent.setDescription('The magnitude of the present input current.') tlpUpsInputPhasePower = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 2, 1, 7), Unsigned32()).setUnits('Watts').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsInputPhasePower.setStatus('current') if mibBuilder.loadTexts: tlpUpsInputPhasePower.setDescription('The magnitude of the present input true power.') tlpUpsOutputTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 3, 1), ) if mibBuilder.loadTexts: tlpUpsOutputTable.setStatus('current') if mibBuilder.loadTexts: tlpUpsOutputTable.setDescription('The output details of each ups in the device table. This is a sparse dependent table, and will contain the number of entries based upon the number of upss managed by the agent as reported by tlpUpsIdentNumUps.') tlpUpsOutputEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 3, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex")) if mibBuilder.loadTexts: tlpUpsOutputEntry.setStatus('current') if mibBuilder.loadTexts: tlpUpsOutputEntry.setDescription('An entry containing information applicable to a particular output line managed by this agent.') tlpUpsOutputSource = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 3, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9))).clone(namedValues=NamedValues(("unknown", 0), ("other", 1), ("none", 2), ("normal", 3), ("bypass", 4), ("battery", 5), ("boosting", 6), ("reducing", 7), ("second", 8), ("economy", 9)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsOutputSource.setStatus('current') if mibBuilder.loadTexts: tlpUpsOutputSource.setDescription('The present source of output power. The enumeration none(2) indicates that there is no source of output power (and therefore no output power), for example, the system has opened the output breaker.') tlpUpsOutputNominalVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 3, 1, 1, 2), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsOutputNominalVoltage.setStatus('current') if mibBuilder.loadTexts: tlpUpsOutputNominalVoltage.setDescription('The nominal value of the output voltage. This value may not be supported on all models. If not supported, the agent reports ERROR_NO_SUCH_NAME.') tlpUpsOutputFrequency = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 3, 1, 1, 3), Unsigned32()).setUnits('0.1 Hertz').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsOutputFrequency.setStatus('current') if mibBuilder.loadTexts: tlpUpsOutputFrequency.setDescription('The present output frequency. The output frequency on most ups devices is common across all output lines. Some ups devices, however, maintain the output frequency per each line. If a common frequency is supported by the ups, then this frequency will contain the common frequency value. If not supported, the agent reports ERROR_NO_SUCH_NAME.') tlpUpsOutputLineTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 3, 2), ) if mibBuilder.loadTexts: tlpUpsOutputLineTable.setStatus('current') if mibBuilder.loadTexts: tlpUpsOutputLineTable.setDescription('The output line details of each ups in the device table. This is a sparse dependent table, and will contain the number of entries based upon the number of upss managed by the agent as reported by tlpUpsIdentNumUps.') tlpUpsOutputLineEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 3, 2, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"), (0, "TRIPPLITE-PRODUCTS", "tlpUpsOutputLineIndex")) if mibBuilder.loadTexts: tlpUpsOutputLineEntry.setStatus('current') if mibBuilder.loadTexts: tlpUpsOutputLineEntry.setDescription('An entry containing information applicable to a particular output line managed by this agent.') tlpUpsOutputLineIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 3, 2, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsOutputLineIndex.setStatus('current') if mibBuilder.loadTexts: tlpUpsOutputLineIndex.setDescription('The table row index for the ups output line.') tlpUpsOutputLineVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 3, 2, 1, 2), Unsigned32()).setUnits('0.1 Volt DC').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsOutputLineVoltage.setStatus('current') if mibBuilder.loadTexts: tlpUpsOutputLineVoltage.setDescription('The magnitude of the present output voltage for a given output line.') tlpUpsOutputLineCurrent = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 3, 2, 1, 3), Unsigned32()).setUnits('0.1 Amp').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsOutputLineCurrent.setStatus('current') if mibBuilder.loadTexts: tlpUpsOutputLineCurrent.setDescription('The present output current.') tlpUpsOutputLinePower = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 3, 2, 1, 4), Unsigned32()).setUnits('Watts').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsOutputLinePower.setStatus('current') if mibBuilder.loadTexts: tlpUpsOutputLinePower.setDescription('The present output true power.') tlpUpsOutputLinePercentLoad = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 3, 2, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 200))).setUnits('percent').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsOutputLinePercentLoad.setStatus('current') if mibBuilder.loadTexts: tlpUpsOutputLinePercentLoad.setDescription('The percentage of the UPS power capacity presently being used on this output line, i.e., the greater of the percent load of true power capacity and the percent load of VA.') tlpUpsOutputLineFrequency = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 3, 2, 1, 6), Unsigned32()).setUnits('0.1 Hertz').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsOutputLineFrequency.setStatus('current') if mibBuilder.loadTexts: tlpUpsOutputLineFrequency.setDescription('The present output frequency on this output line. The output frequency on most ups devices is common across all output lines. Some ups devices, however, maintain the output frequency per each line. If a per line frequency is supported by the ups, then this frequency value will reports the value of this line. If not supported, the agent reports ERROR_NO_SUCH_NAME.') tlpUpsBypassTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 4, 1), ) if mibBuilder.loadTexts: tlpUpsBypassTable.setStatus('current') if mibBuilder.loadTexts: tlpUpsBypassTable.setDescription('The bypass details of each ups in the device table. This is a sparse dependent table, and will contain the number of entries based upon the number of upss managed by the agent as reported by tlpUpsIdentNumUps.') tlpUpsBypassEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 4, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex")) if mibBuilder.loadTexts: tlpUpsBypassEntry.setStatus('current') if mibBuilder.loadTexts: tlpUpsBypassEntry.setDescription('An entry containing information applicable to all input lines per each ups managed by this agent.') tlpUpsBypassFrequency = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 4, 1, 1, 1), Unsigned32()).setUnits('0.1 Hertz').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsBypassFrequency.setStatus('current') if mibBuilder.loadTexts: tlpUpsBypassFrequency.setDescription('The present bypass frequency.') tlpUpsBypassLineTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 4, 2), ) if mibBuilder.loadTexts: tlpUpsBypassLineTable.setStatus('current') if mibBuilder.loadTexts: tlpUpsBypassLineTable.setDescription('The bypass line details of each ups in the device table. This is a sparse dependent table, and will contain the number of entries based upon the number of upss managed by the agent as reported by tlpUpsIdentNumUps.') tlpUpsBypassLineEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 4, 2, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"), (0, "TRIPPLITE-PRODUCTS", "tlpUpsBypassLineIndex")) if mibBuilder.loadTexts: tlpUpsBypassLineEntry.setStatus('current') if mibBuilder.loadTexts: tlpUpsBypassLineEntry.setDescription('An entry containing information applicable to a particular bypass line managed by this agent.') tlpUpsBypassLineIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 4, 2, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsBypassLineIndex.setStatus('current') if mibBuilder.loadTexts: tlpUpsBypassLineIndex.setDescription('The bypass line identifier.') tlpUpsBypassLineVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 4, 2, 1, 2), Unsigned32()).setUnits('0.1 Volt DC').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsBypassLineVoltage.setStatus('current') if mibBuilder.loadTexts: tlpUpsBypassLineVoltage.setDescription('The present bypass voltage.') tlpUpsBypassLineCurrent = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 4, 2, 1, 3), Unsigned32()).setUnits('0.1 Amp').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsBypassLineCurrent.setStatus('current') if mibBuilder.loadTexts: tlpUpsBypassLineCurrent.setDescription('The present bypass current.') tlpUpsBypassLinePower = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 4, 2, 1, 4), Unsigned32()).setUnits('Watts').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsBypassLinePower.setStatus('current') if mibBuilder.loadTexts: tlpUpsBypassLinePower.setDescription('The present true power conveyed by the bypass.') tlpUpsOutletTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 1), ) if mibBuilder.loadTexts: tlpUpsOutletTable.setStatus('current') if mibBuilder.loadTexts: tlpUpsOutletTable.setDescription('The details of each ups outlet in the device table. This is a sparse dependent table, and will contain the number of entries based upon the number of upss managed by the agent as reported by tlpUpsIdentNumUps.') tlpUpsOutletEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"), (0, "TRIPPLITE-PRODUCTS", "tlpUpsOutletIndex")) if mibBuilder.loadTexts: tlpUpsOutletEntry.setStatus('current') if mibBuilder.loadTexts: tlpUpsOutletEntry.setDescription('An entry containing information applicable to a particular outlet managed by this agent.') tlpUpsOutletIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 1, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsOutletIndex.setStatus('current') if mibBuilder.loadTexts: tlpUpsOutletIndex.setDescription('The table row index for the ups outlet.') tlpUpsOutletName = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 1, 1, 2), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsOutletName.setStatus('current') if mibBuilder.loadTexts: tlpUpsOutletName.setDescription('A user-definable string identifying the name of the outlet.') tlpUpsOutletDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 1, 1, 3), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsOutletDescription.setStatus('current') if mibBuilder.loadTexts: tlpUpsOutletDescription.setDescription('A user-definable string identifying the device(s) connected to the given outlet.') tlpUpsOutletState = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("unknown", 0), ("off", 1), ("on", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsOutletState.setStatus('current') if mibBuilder.loadTexts: tlpUpsOutletState.setDescription('The current state of the outlet.') tlpUpsOutletControllable = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 1, 1, 5), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsOutletControllable.setStatus('current') if mibBuilder.loadTexts: tlpUpsOutletControllable.setDescription('Denotes whether this outlet is controllable.') tlpUpsOutletCommand = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("idle", 0), ("turnOff", 1), ("turnOn", 2), ("cycle", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsOutletCommand.setStatus('current') if mibBuilder.loadTexts: tlpUpsOutletCommand.setDescription('Reading this value will always return 0. Setting this value to turnOff(1) will turn off the outlet. Setting this value to turnOn(2) will turn on the outlet. Setting this value to cycle(3) will turn the outlet off, then turn it back on.') tlpUpsOutletVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 1, 1, 7), Unsigned32()).setUnits('0.1 Volt DC').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsOutletVoltage.setStatus('current') if mibBuilder.loadTexts: tlpUpsOutletVoltage.setDescription('The magnitude of the present output voltage for a given outlet. If the voltage measurement is not supported for an individual receptacle regardless whether device-wide or just for this receptacle, then this value will always return ERROR_NO_SUCH_NAME. Device-wide support for receptacle voltage measurements is denoted by tlpUpsSupportsOutletVoltage.') tlpUpsOutletCurrent = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 1, 1, 8), Unsigned32()).setUnits('0.01 RMS Amp').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsOutletCurrent.setStatus('current') if mibBuilder.loadTexts: tlpUpsOutletCurrent.setDescription('The present output current, in hundreths of amps, of a given outlet. If the current measurement is not supported for an individual receptacle regardless whether device-wide or just for this receptacle, then this value will always return ERROR_NO_SUCH_NAME. Device-wide support for receptacle current measurements is denoted by tlpUpsSupportsCurrentPower.') tlpUpsOutletPower = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 1, 1, 9), Unsigned32()).setUnits('Watts').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsOutletPower.setStatus('current') if mibBuilder.loadTexts: tlpUpsOutletPower.setDescription('The output power of a given outlet. If the power measurement is not supported for an individual receptacle regardless whether device-wide or just for this receptacle, then this value will always return ERROR_NO_SUCH_NAME. Device-wide support for receptacle power measurements is denoted by tlpUpsSupportsCurrentPower.') tlpUpsOutletRampAction = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 1, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("remainOff", 0), ("turnOnAfterDelay", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsOutletRampAction.setStatus('current') if mibBuilder.loadTexts: tlpUpsOutletRampAction.setDescription('The ramp action to take on a given outlet when powering on the device. If this receptacle is not controllable, as denoted by tlpUpsOutletControllable, then this value will always return ERROR_NO_SUCH_NAME.') tlpUpsOutletRampDelay = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 1, 1, 11), Integer32()).setUnits('seconds').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsOutletRampDelay.setStatus('current') if mibBuilder.loadTexts: tlpUpsOutletRampDelay.setDescription('The number of seconds to delay before powering on the given outlet. If this receptacle is not controllable, as denoted by tlpUpsOutletControllable, then this value will always return ERROR_NO_SUCH_NAME.') tlpUpsOutletShedAction = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 1, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("remainOn", 0), ("turnOffAfterDelay", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsOutletShedAction.setStatus('current') if mibBuilder.loadTexts: tlpUpsOutletShedAction.setDescription('The shed action to take on a given outlet when powering off the device. If this receptacle is not controllable, as denoted by tlpUpsOutletControllable, then this value will always return ERROR_NO_SUCH_NAME.') tlpUpsOutletShedDelay = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 1, 1, 13), Integer32()).setUnits('seconds').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsOutletShedDelay.setStatus('current') if mibBuilder.loadTexts: tlpUpsOutletShedDelay.setDescription('The number of seconds to delay before powering off the given outlet. If this receptacle is not controllable, as denoted by tlpUpsOutletControllable, then this value will always return ERROR_NO_SUCH_NAME.') tlpUpsOutletGroup = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 1, 1, 14), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsOutletGroup.setStatus('current') if mibBuilder.loadTexts: tlpUpsOutletGroup.setDescription('The tlpUpsOutletGroupIndex group index of the respective group to which the given outlet is assigned, or zero (0) if the given outlet is not grouped.') tlpUpsOutletGroupTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 2), ) if mibBuilder.loadTexts: tlpUpsOutletGroupTable.setStatus('current') if mibBuilder.loadTexts: tlpUpsOutletGroupTable.setDescription('The receptacle grouping details of each ups in device table. This is a sparse dependent table, and will contain the number of entries based upon the value of tlpUpsIdentNumOutletGroups per each device.') tlpUpsOutletGroupEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 2, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"), (0, "TRIPPLITE-PRODUCTS", "tlpUpsOutletGroupIndex")) if mibBuilder.loadTexts: tlpUpsOutletGroupEntry.setStatus('current') if mibBuilder.loadTexts: tlpUpsOutletGroupEntry.setDescription('An entry containing information applicable to a particular outlet group managed by this agent.') tlpUpsOutletGroupIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 2, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsOutletGroupIndex.setStatus('current') if mibBuilder.loadTexts: tlpUpsOutletGroupIndex.setDescription('The table row index for the ups outlet group.') tlpUpsOutletGroupRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 2, 1, 2), RowStatus()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsOutletGroupRowStatus.setStatus('current') if mibBuilder.loadTexts: tlpUpsOutletGroupRowStatus.setDescription('Row status for the tlpUpsOutletGroupTable') tlpUpsOutletGroupName = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 2, 1, 3), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsOutletGroupName.setStatus('current') if mibBuilder.loadTexts: tlpUpsOutletGroupName.setDescription('The name of this outlet group.') tlpUpsOutletGroupDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 2, 1, 4), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsOutletGroupDescription.setStatus('current') if mibBuilder.loadTexts: tlpUpsOutletGroupDescription.setDescription('A description for this outlet group.') tlpUpsOutletGroupState = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 2, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("unknown", 0), ("off", 1), ("on", 2), ("mixed", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsOutletGroupState.setStatus('current') if mibBuilder.loadTexts: tlpUpsOutletGroupState.setDescription('The current state of the outlet group. This value will report off(1) if all outlets in the group are off, on(2) if all outlets in the group are on, mixed(3) if some outlets in the group are off and others are on, or unknown(0) if the state of the outlets cannot be determined.') tlpUpsOutletGroupCommand = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 2, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("idle", 0), ("turnOff", 1), ("turnOn", 2), ("cycle", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsOutletGroupCommand.setStatus('current') if mibBuilder.loadTexts: tlpUpsOutletGroupCommand.setDescription('Reading this value will always return 0. Setting this value to turnOff(1) will turn off every outlet associated with the group. Setting this value to turnOn(2) will turn on every outlet associated with the group. Setting this value to cycle(3) will turn off every outlet associated with the group, then turn each outlet back on.') tlpUpsWatchdogTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 6, 1), ) if mibBuilder.loadTexts: tlpUpsWatchdogTable.setStatus('current') if mibBuilder.loadTexts: tlpUpsWatchdogTable.setDescription('The watchdog details of each ups in device table. This is a sparse dependent table, and will contain some subset of devices that are upss.') tlpUpsWatchdogEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 6, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex")) if mibBuilder.loadTexts: tlpUpsWatchdogEntry.setStatus('current') if mibBuilder.loadTexts: tlpUpsWatchdogEntry.setDescription('An entry containing watchdog details for a particular ups.') tlpUpsWatchdogSupported = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 6, 1, 1, 1), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpUpsWatchdogSupported.setStatus('current') if mibBuilder.loadTexts: tlpUpsWatchdogSupported.setDescription('Indicates whether or not this ups supports a watchdog reboot.') tlpUpsWatchdogSecsBeforeReboot = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 6, 1, 1, 2), Unsigned32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsWatchdogSecsBeforeReboot.setStatus('current') if mibBuilder.loadTexts: tlpUpsWatchdogSecsBeforeReboot.setDescription('The maximum number of seconds that can expire between polls that the engine makes to the ups for data. If this time runs out, then the ups will cycle its outputs. Set this to zero to turns disable this feature.') tlpUpsControlTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 4, 1), ) if mibBuilder.loadTexts: tlpUpsControlTable.setStatus('current') if mibBuilder.loadTexts: tlpUpsControlTable.setDescription('The actionable controls for each ups in device table. This is a sparse dependent table, and will contain some subset of devices that are upss.') tlpUpsControlEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 4, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex")) if mibBuilder.loadTexts: tlpUpsControlEntry.setStatus('current') if mibBuilder.loadTexts: tlpUpsControlEntry.setDescription('An entry containing controls for a particular ups.') tlpUpsControlSelfTest = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 4, 1, 1, 1), TruthValue()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsControlSelfTest.setStatus('current') if mibBuilder.loadTexts: tlpUpsControlSelfTest.setDescription('Set to TRUE to initiate a self test on the ups.') tlpUpsControlRamp = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 4, 1, 1, 2), TruthValue()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsControlRamp.setStatus('current') if mibBuilder.loadTexts: tlpUpsControlRamp.setDescription('Set to TRUE to initiate the pre-designated ramp sequence on the ups.') tlpUpsControlShed = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 4, 1, 1, 3), TruthValue()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsControlShed.setStatus('current') if mibBuilder.loadTexts: tlpUpsControlShed.setDescription('Set to TRUE to initiate the pre-designated shed sequence on the ups.') tlpUpsControlUpsOn = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 4, 1, 1, 4), TruthValue()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsControlUpsOn.setStatus('current') if mibBuilder.loadTexts: tlpUpsControlUpsOn.setDescription('Set to TRUE to turn the ups on.') tlpUpsControlUpsOff = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 4, 1, 1, 5), TruthValue()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsControlUpsOff.setStatus('current') if mibBuilder.loadTexts: tlpUpsControlUpsOff.setDescription('Set to TRUE to turn the ups off.') tlpUpsControlUpsReboot = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 4, 1, 1, 6), TruthValue()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsControlUpsReboot.setStatus('current') if mibBuilder.loadTexts: tlpUpsControlUpsReboot.setDescription('Set to TRUE to reboot the ups.') tlpUpsControlBypass = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 4, 1, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disable", 0), ("enable", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsControlBypass.setStatus('current') if mibBuilder.loadTexts: tlpUpsControlBypass.setDescription('This switches the ups in and out of bypass mode. This value returns the current bypass mode: disable(0) if the ups is not in bypass mode, enable(1) if the ups is in bypass mode. Set to disable(0) to exit bypass mode, or enable(1) to enter bypass mode. If switching bypass mode is not supported, this value will return ERROR_NO_SUCH_NAME.') tlpUpsConfigTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1), ) if mibBuilder.loadTexts: tlpUpsConfigTable.setStatus('current') if mibBuilder.loadTexts: tlpUpsConfigTable.setDescription('The configuration details of each ups in the device table. This is a sparse dependent table, and will contain the number of entries based upon the number of upss managed by the agent as reported by tlpUpsIdentNumUps.') tlpUpsConfigEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex")) if mibBuilder.loadTexts: tlpUpsConfigEntry.setStatus('current') if mibBuilder.loadTexts: tlpUpsConfigEntry.setDescription('An entry containing information applicable to all input lines per each ups managed by this agent.') tlpUpsConfigInputVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 1), Unsigned32()).setUnits('Volts').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsConfigInputVoltage.setStatus('current') if mibBuilder.loadTexts: tlpUpsConfigInputVoltage.setDescription('The nominal value of the input line voltage. This value may not be supported on all models. If not supported, this value will return ERROR_NO_SUCH_NAME. This value may not be writable on all models. If not writable, the value will be rejected and an appropriate error message will be returned.') tlpUpsConfigInputFrequency = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 2), Unsigned32()).setUnits('0.1 Hertz').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsConfigInputFrequency.setStatus('current') if mibBuilder.loadTexts: tlpUpsConfigInputFrequency.setDescription('The nominal input frequency. On those systems which support read-write access to this object, if there is an attempt to set this variable to a value that is not supported, the request must be rejected and the agent shall respond with an appropriate error message, i.e., badValue for SNMPv1, or inconsistentValue for SNMPv2.') tlpUpsConfigOutputVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 3), Unsigned32()).setUnits('Volts').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsConfigOutputVoltage.setStatus('current') if mibBuilder.loadTexts: tlpUpsConfigOutputVoltage.setDescription('The nominal value of the output voltage. This value may not be supported on all models. If not supported, the agent reports ERROR_NO_SUCH_NAME. This value may not be writable on all models. If not writable, the value will be rejected and an appropriate error message will be returned.') tlpUpsConfigOutputFrequency = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 4), Unsigned32()).setUnits('0.1 Hertz').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsConfigOutputFrequency.setStatus('current') if mibBuilder.loadTexts: tlpUpsConfigOutputFrequency.setDescription('The nominal output frequency. On those systems which support read-write access to this object, if there is an attempt to set this variable to a value that is not supported, the request will be rejected and the agent will respond with an appropriate error message.') tlpUpsConfigAudibleStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("disabled", 1), ("enabled", 2), ("muted", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsConfigAudibleStatus.setStatus('current') if mibBuilder.loadTexts: tlpUpsConfigAudibleStatus.setDescription('The requested state of the audible alarm. When in the disabled state, the audible alarm should never sound. The enabled state is self- describing. Setting this object to muted(3) when the audible alarm is sounding shall temporarily silence the alarm. It will remain muted until it would normally stop sounding and the value returned for read operations during this period shall equal muted(3). At the end of this period, the value shall revert to enabled(2). Writes of the value muted(3) when the audible alarm is not sounding shall be accepted but otherwise shall have no effect.') tlpUpsConfigAutoBatteryTest = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4))).clone(namedValues=NamedValues(("disabled", 0), ("biweekly", 1), ("monthly", 2), ("quarterly", 3), ("semiannually", 4)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsConfigAutoBatteryTest.setStatus('current') if mibBuilder.loadTexts: tlpUpsConfigAutoBatteryTest.setDescription('When disabled(0), the ups will not perform an automatic battery selftest. When set to another value, the ups will perform an automatic selftest in the approximate period defined by each respective enumerated value. This feature is generally not recommended.') tlpUpsConfigAutoRestartAfterShutdown = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsConfigAutoRestartAfterShutdown.setStatus('current') if mibBuilder.loadTexts: tlpUpsConfigAutoRestartAfterShutdown.setDescription('When enabled(1), the ups should autorestart after a shutdown from battery mode if valid AC is applied. When disabled(0), the ups should not autorestart when AC is restored and instead power up into standby mode.') tlpUpsConfigAutoRampOnTransition = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsConfigAutoRampOnTransition.setStatus('current') if mibBuilder.loadTexts: tlpUpsConfigAutoRampOnTransition.setDescription('When enabled(1), the ups should perform its preconfigured ramp sequence when valid AC is restored while in battery mode. If this value is not supported by the ups, then this value will always return ERROR_NO_SUCH_NAME.') tlpUpsConfigAutoShedOnTransition = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsConfigAutoShedOnTransition.setStatus('current') if mibBuilder.loadTexts: tlpUpsConfigAutoShedOnTransition.setDescription('When enabled(1), the ups should perform its preconfigured shed sequence when valid AC is lost causing the ups to enter battery mode. If this value is not supported by the ups, then this value will always return ERROR_NO_SUCH_NAME.') tlpUpsConfigBypassLowerLimitPercent = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-20, -5))).setUnits('percent').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsConfigBypassLowerLimitPercent.setStatus('current') if mibBuilder.loadTexts: tlpUpsConfigBypassLowerLimitPercent.setDescription('The lowest AC input voltage allowed to be output to the load while in bypass mode. This setting is expressed as a percentage from nominal voltage. If this value is not supported by the ups, then this value will always return ERROR_NO_SUCH_NAME.') tlpUpsConfigBypassUpperLimitPercent = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 11), Integer32().subtype(subtypeSpec=ValueRangeConstraint(5, 20))).setUnits('percent').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsConfigBypassUpperLimitPercent.setStatus('current') if mibBuilder.loadTexts: tlpUpsConfigBypassUpperLimitPercent.setDescription('The highest AC input voltage allowed to be output to the load while in bypass mode. This setting is expressed as a percentage from nominal voltage. If this value is not supported by the ups, then this value will always return ERROR_NO_SUCH_NAME.') tlpUpsConfigBypassLowerLimitVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 12), Unsigned32()).setUnits('Volts').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsConfigBypassLowerLimitVoltage.setStatus('current') if mibBuilder.loadTexts: tlpUpsConfigBypassLowerLimitVoltage.setDescription('The lowest AC input voltage allowed to be output to the load while in bypass mode. If this value is not supported by the ups, then this value will always return ERROR_NO_SUCH_NAME.') tlpUpsConfigBypassUpperLimitVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 13), Unsigned32()).setUnits('Volts').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsConfigBypassUpperLimitVoltage.setStatus('current') if mibBuilder.loadTexts: tlpUpsConfigBypassUpperLimitVoltage.setDescription('The highest AC input voltage allowed to be output to the load while in bypass mode. If this value is not supported by the ups, then this value will always return ERROR_NO_SUCH_NAME.') tlpUpsConfigColdStart = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsConfigColdStart.setStatus('current') if mibBuilder.loadTexts: tlpUpsConfigColdStart.setDescription('This option enables or disables the ability to turn the ups on without AC supplied. If this value is not supported by the ups, then this value will always return ERROR_NO_SUCH_NAME.') tlpUpsConfigEconomicMode = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 15), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("online", 0), ("economy", 1), ("constant50Hz", 2), ("constant60Hz", 3), ("constantAuto", 4), ("autoAdaptive", 5)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsConfigEconomicMode.setStatus('current') if mibBuilder.loadTexts: tlpUpsConfigEconomicMode.setDescription('The configurable economic mode options for the ups. The online(0) mode is the default configuration of most upss, which is synonymous as having the economic mode disabled. The economy(1) mode is the typical configuration to run in economy mode, which is synonymous as having the economic mode enabled. Constant50Hz(2) is a power strategy, which fixes the output frequency at 50Hz. Constant60Hz(3) is a power stragegy, which fixes the output frequency at 60Hz. ConstantAuto(4) regulates the output frequency at nominal input frequency. AutoAdaptive(5) mode will cause the ups to automatically switch between online(0), maximum quality, and economy(1), maximum efficiency, to improve efficiency during stable utility periods and improve output regulation during unstable utility periods. Not all values are supported by all upss. Most upss, if supportive of economic mode, only supports online(0) and economy(1). If the ups does not support economic mode, then this value will always return ERROR_NO_SUCH_NAME.') tlpUpsConfigFaultAction = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 16), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("bypass", 0), ("standby", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsConfigFaultAction.setStatus('current') if mibBuilder.loadTexts: tlpUpsConfigFaultAction.setDescription('Determines the action to take if the output needs to be shut down due to a fault condition, limited by the type of fault incurred. When configured for bypass(0), the ups will go to bypass on a fault condition. When configured for standby(1), the ups will go to standby mode on a fault condition. Either configuration will be valid as long as AC input is within normal line voltage and frequency limits when the fault condition occurs. If the line is outside these limits, the ups will turn off. If this value is not supported by the ups, then this value will always return ERROR_NO_SUCH_NAME.') tlpUpsConfigOffMode = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 17), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("standby", 0), ("bypass", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsConfigOffMode.setStatus('current') if mibBuilder.loadTexts: tlpUpsConfigOffMode.setDescription('This option governs what mode the ups should go into when AC input is available, but the load is either off or not battery backed up. If this setting is configured for bypass(1), the intention is that any time the ups would normally go into standby mode, it would instead go into bypass mode. Note that this setting does not dictate the mode for fault conditions, which is governed by tlpUpsConfigFaultAction. If this value is not supported by the ups, then this value will always return ERROR_NO_SUCH_NAME.') tlpUpsConfigLineSensitivity = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 18), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("normal", 0), ("reduced", 1), ("fullyReduced", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsConfigLineSensitivity.setStatus('current') if mibBuilder.loadTexts: tlpUpsConfigLineSensitivity.setDescription('Adjusts the AC line voltage sensitivity setting. If this value is not supported by the ups, then this value will always return ERROR_NO_SUCH_NAME.') tlpUpsConfigAutoRestartTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 2), ) if mibBuilder.loadTexts: tlpUpsConfigAutoRestartTable.setStatus('current') if mibBuilder.loadTexts: tlpUpsConfigAutoRestartTable.setDescription('The configurable automatic restart options of each ups in device table. This is a sparse dependent table, and will contain some subset of devices that are upss. Not all options are available on all upss.') tlpUpsConfigAutoRestartEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 2, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex")) if mibBuilder.loadTexts: tlpUpsConfigAutoRestartEntry.setStatus('current') if mibBuilder.loadTexts: tlpUpsConfigAutoRestartEntry.setDescription('An entry containing configurable automatic restart options for a particular ups.') tlpUpsConfigAutoRestartInverterShutdown = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 2, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsConfigAutoRestartInverterShutdown.setStatus('current') if mibBuilder.loadTexts: tlpUpsConfigAutoRestartInverterShutdown.setDescription('If enabled(1) and the ups is turned off from invert mode (via user interaction), if line becomes valid, the ups will automatically go to line mode. If disabled(0), the ups will turn back on and go to standby mode instead.') tlpUpsConfigAutoRestartDelayedWakeup = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 2, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsConfigAutoRestartDelayedWakeup.setStatus('current') if mibBuilder.loadTexts: tlpUpsConfigAutoRestartDelayedWakeup.setDescription('If enabled(1) and power fails during a DelayBeforeStartup and line remains invalid after the timeout expires, the ups will be set to turn back on automatically. If disabled(0), the ups will turn back on and go to standby mode instead.') tlpUpsConfigAutoRestartLowVoltageCutoff = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 2, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsConfigAutoRestartLowVoltageCutoff.setStatus('current') if mibBuilder.loadTexts: tlpUpsConfigAutoRestartLowVoltageCutoff.setDescription('If enabled(1) and the ups is turned off from invert mode (via low voltage cutoff), if line becomes valid, the ups will automatically go to line mode. If disabled(0), the ups will turn back on and go to standby mode instead.') tlpUpsConfigAutoRestartOverLoad = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsConfigAutoRestartOverLoad.setStatus('current') if mibBuilder.loadTexts: tlpUpsConfigAutoRestartOverLoad.setDescription('If enabled(1) and the ups is turned off from invert mode (via overload), if line becomes valid, the ups will automatically go to line mode. If disabled(0), the ups will turn back on and go to standby mode instead.') tlpUpsConfigAutoRestartOverTemperature = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 2, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsConfigAutoRestartOverTemperature.setStatus('current') if mibBuilder.loadTexts: tlpUpsConfigAutoRestartOverTemperature.setDescription('If enabled(1) and the ups is turned off from invert mode (via over temperature), if line becomes valid, the ups will automatically go to line mode. If disabled(0), the ups will turn back on and go to standby mode instead.') tlpUpsConfigThresholdTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 3), ) if mibBuilder.loadTexts: tlpUpsConfigThresholdTable.setStatus('current') if mibBuilder.loadTexts: tlpUpsConfigThresholdTable.setDescription('The configurable threshold options of each ups in device table. This is a sparse dependent table, and will contain some subset of devices that are upss. Not all options are available on all upss.') tlpUpsConfigThresholdEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 3, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex")) if mibBuilder.loadTexts: tlpUpsConfigThresholdEntry.setStatus('current') if mibBuilder.loadTexts: tlpUpsConfigThresholdEntry.setDescription('An entry containing configurable threshold options for a particular ups.') tlpUpsConfigBatteryAgeThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 3, 1, 1), Unsigned32()).setUnits('months').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsConfigBatteryAgeThreshold.setStatus('current') if mibBuilder.loadTexts: tlpUpsConfigBatteryAgeThreshold.setDescription('The number of months for a battery to be in service. The battery age alarm, tlpUpsAlarmBatteryAgeAboveThreshold, is triggered when the current date exceeds tlpUpsBatteryPackIdentInstallDate by tlpUpsConfigBatteryAgeThreshold months.') tlpUpsConfigLowBatteryThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 3, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(5, 95))).setUnits('percent').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsConfigLowBatteryThreshold.setStatus('current') if mibBuilder.loadTexts: tlpUpsConfigLowBatteryThreshold.setDescription('This value denotes the percentage of battery capacity remaining warning level. The low battery alarm, tlpUpsAlarmLowBattery, is triggered when tlpUpsEstimatedChargeRemaining drops below this value.') tlpUpsConfigLowBatteryTime = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 3, 1, 3), Unsigned32()).setUnits('seconds').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsConfigLowBatteryTime.setStatus('current') if mibBuilder.loadTexts: tlpUpsConfigLowBatteryTime.setDescription('The value in seconds of tlpUpsEstimatedMinutesRemaining at which a lowBattery condition is declared. For agents which support only discrete (discontinuous) values, then the agent shall round up to the next supported value. If the requested value is larger than the largest supported value, then the largest supported value shall be selected.') tlpUpsConfigOverLoadThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 3, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(5, 105))).setUnits('percent').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpUpsConfigOverLoadThreshold.setStatus('current') if mibBuilder.loadTexts: tlpUpsConfigOverLoadThreshold.setDescription('This value denotes the percentage of load at which the overload condition occurs. The overload alarm, tlpUpsAlarmOutputOverload, is triggered when the percentage of output load exceeds this value.') tlpPduIdentNumPdu = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduIdentNumPdu.setStatus('current') if mibBuilder.loadTexts: tlpPduIdentNumPdu.setDescription('The number of pdu devices that this agent is currently managing.') tlpPduIdentTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 2), ) if mibBuilder.loadTexts: tlpPduIdentTable.setStatus('current') if mibBuilder.loadTexts: tlpPduIdentTable.setDescription('The identity details of each pdu in device table. This is a sparse dependent table, and will contain some subset of devices that are pdus.') tlpPduIdentEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 2, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex")) if mibBuilder.loadTexts: tlpPduIdentEntry.setStatus('current') if mibBuilder.loadTexts: tlpPduIdentEntry.setDescription('An entry containing details for a particular pdu.') tlpPduIdentNumInputs = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 2, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduIdentNumInputs.setStatus('current') if mibBuilder.loadTexts: tlpPduIdentNumInputs.setDescription('The number of input lines supported by the pdu.') tlpPduIdentNumOutputs = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 2, 1, 2), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduIdentNumOutputs.setStatus('current') if mibBuilder.loadTexts: tlpPduIdentNumOutputs.setDescription('The number of output lines supported by the pdu.') tlpPduIdentNumPhases = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 2, 1, 3), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduIdentNumPhases.setStatus('current') if mibBuilder.loadTexts: tlpPduIdentNumPhases.setDescription('The number of phases supported by the pdu.') tlpPduIdentNumOutlets = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 2, 1, 4), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduIdentNumOutlets.setStatus('current') if mibBuilder.loadTexts: tlpPduIdentNumOutlets.setDescription('The number of receptacles supported by the pdu.') tlpPduIdentNumOutletGroups = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 2, 1, 5), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduIdentNumOutletGroups.setStatus('current') if mibBuilder.loadTexts: tlpPduIdentNumOutletGroups.setDescription('The number of receptacle groups supported by the pdu.') tlpPduIdentNumCircuits = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 2, 1, 6), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduIdentNumCircuits.setStatus('current') if mibBuilder.loadTexts: tlpPduIdentNumCircuits.setDescription('The number of circuits supported by the pdu.') tlpPduIdentNumBreakers = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 2, 1, 7), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduIdentNumBreakers.setStatus('current') if mibBuilder.loadTexts: tlpPduIdentNumBreakers.setDescription('The number of bank breakers supported by the pdu.') tlpPduIdentNumHeatsinks = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 2, 1, 8), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduIdentNumHeatsinks.setStatus('current') if mibBuilder.loadTexts: tlpPduIdentNumHeatsinks.setDescription('The number of heatsink thermistors supported by the pdu.') tlpPduSupportsTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 3), ) if mibBuilder.loadTexts: tlpPduSupportsTable.setStatus('current') if mibBuilder.loadTexts: tlpPduSupportsTable.setDescription('The supported details of each pdu in device table. This is a sparse dependent table, and will contain some subset of devices that are pdus.') tlpPduSupportsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 3, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex")) if mibBuilder.loadTexts: tlpPduSupportsEntry.setStatus('current') if mibBuilder.loadTexts: tlpPduSupportsEntry.setDescription('An entry containing supported details for a particular pdu.') tlpPduSupportsEnergywise = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 3, 1, 1), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduSupportsEnergywise.setStatus('current') if mibBuilder.loadTexts: tlpPduSupportsEnergywise.setDescription('Indicates whether the pdu supports Cisco EnergyWise.') tlpPduSupportsRampShed = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 3, 1, 2), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduSupportsRampShed.setStatus('current') if mibBuilder.loadTexts: tlpPduSupportsRampShed.setDescription('Indicates whether the pdu supports ramping and shedding.') tlpPduSupportsOutletGroup = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 3, 1, 3), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduSupportsOutletGroup.setStatus('current') if mibBuilder.loadTexts: tlpPduSupportsOutletGroup.setDescription('Indicates whether the pdu supports outlet groups.') tlpPduSupportsOutletCurrentPower = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 3, 1, 4), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduSupportsOutletCurrentPower.setStatus('current') if mibBuilder.loadTexts: tlpPduSupportsOutletCurrentPower.setDescription('Indicates whether the pdu reports individual receptacle current and power measurements. Devices that do not support individual receptacle measurements will always return ERROR_NO_SUCH_NAME for tlpPduOutletCurrent and tlpPduOutletPower.') tlpPduSupportsOutletVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 3, 1, 5), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduSupportsOutletVoltage.setStatus('current') if mibBuilder.loadTexts: tlpPduSupportsOutletVoltage.setDescription('Indicates whether the pdu reports individual receptacle voltage measurements. Devices that do not support individual receptacle measurements will always return ERROR_NO_SUCH_NAME for tlpPduOutletVoltage.') tlpPduDisplayTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 4), ) if mibBuilder.loadTexts: tlpPduDisplayTable.setStatus('current') if mibBuilder.loadTexts: tlpPduDisplayTable.setDescription('The display details of each pdu in device table. This is a sparse dependent table, and will contain some subset of devices that are pdus.') tlpPduDisplayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 4, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex")) if mibBuilder.loadTexts: tlpPduDisplayEntry.setStatus('current') if mibBuilder.loadTexts: tlpPduDisplayEntry.setDescription('An entry containing display details for a particular pdu.') tlpPduDisplayScheme = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 4, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("schemeReverse", 0), ("schemeNormal", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpPduDisplayScheme.setStatus('current') if mibBuilder.loadTexts: tlpPduDisplayScheme.setDescription('Indicates the display scheme of the LED display. The value schemeReverse(0) indicates the tricolor LED indicator uses an alternate pattern. The value schemeNormal(1) indicates the LED indicator uses the standard pattern. This value may not be supported on all models. If not supported, the value will always return schemeNormal(1).') tlpPduDisplayOrientation = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 4, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("displayNormal", 0), ("displayReverse", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpPduDisplayOrientation.setStatus('current') if mibBuilder.loadTexts: tlpPduDisplayOrientation.setDescription('Indicates the physical orientation of the LED display. The value displayNormal(0) indicates the display is right-side-up (normal). The value displayReverse(1) indicates the display is upside-down. This value may not be supported on all models. If not supported, the value will always return displayNormal(0).') tlpPduDisplayAutoScroll = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 4, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("scrollDisabled", 0), ("scrollEnabled", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpPduDisplayAutoScroll.setStatus('current') if mibBuilder.loadTexts: tlpPduDisplayAutoScroll.setDescription('Indicates whether the LED display automatically scrolls through displaying status values.') tlpPduDisplayIntensity = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 4, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("intensity25", 1), ("intensity50", 2), ("intensity75", 3), ("intensity100", 4)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpPduDisplayIntensity.setStatus('current') if mibBuilder.loadTexts: tlpPduDisplayIntensity.setDescription('Indicates the intensity, as a percentage, of the LED display. The value intensity100(4) indicates the display is at 100% intensity. The other values indicate the display is at a lesser intensity based upon the respective percentage denoted.') tlpPduDisplayUnits = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 4, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("normal", 0), ("metric", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpPduDisplayUnits.setStatus('current') if mibBuilder.loadTexts: tlpPduDisplayUnits.setDescription('Indicates the units of measurement displayed on the LED display. The value normal(0) indicates that a temperature value, for example, is displayed in degrees Farenheit. The value metric(1) indicates a temperature value is displayed in degrees Celsius.') tlpPduDeviceTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 2, 1), ) if mibBuilder.loadTexts: tlpPduDeviceTable.setStatus('current') if mibBuilder.loadTexts: tlpPduDeviceTable.setDescription('The device details of each pdu in device table. This is a sparse dependent table, and will contain some subset of devices that are pdus.') tlpPduDeviceEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 2, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex")) if mibBuilder.loadTexts: tlpPduDeviceEntry.setStatus('current') if mibBuilder.loadTexts: tlpPduDeviceEntry.setDescription('An entry containing device details for a particular pdu.') tlpPduDeviceMainLoadState = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 2, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("unknown", 0), ("off", 1), ("on", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduDeviceMainLoadState.setStatus('current') if mibBuilder.loadTexts: tlpPduDeviceMainLoadState.setDescription('The current state of the main output of the device.') tlpPduDeviceMainLoadControllable = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 2, 1, 1, 2), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduDeviceMainLoadControllable.setStatus('current') if mibBuilder.loadTexts: tlpPduDeviceMainLoadControllable.setDescription('Indicates whether or not the main output is controllable, and whether the ups can be turned off and on.') tlpPduDeviceMainLoadCommand = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 2, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("idle", 0), ("turnOff", 1), ("turnOn", 2), ("cycle", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpPduDeviceMainLoadCommand.setStatus('current') if mibBuilder.loadTexts: tlpPduDeviceMainLoadCommand.setDescription('Reading this value will always return 0. Setting this value to turnOff(1) will turn off the main output of the ups. Setting this value to turnOn(2) will turn on the main output of the ups. Setting this value to cycle(3) will turn off the main output, then turn it back on.') tlpPduDevicePowerOnDelay = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 2, 1, 1, 4), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpPduDevicePowerOnDelay.setStatus('current') if mibBuilder.loadTexts: tlpPduDevicePowerOnDelay.setDescription('The configurable delay value, which sets the amount of additional time a given device will wait before it connects to a valid AC source. By default the delay value is set to 0. For devices with multiple AC input sources, this delay only applies to the primary input source.') tlpPduDeviceTotalInputPowerRating = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 2, 1, 1, 5), Integer32()).setUnits('Watts').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduDeviceTotalInputPowerRating.setStatus('current') if mibBuilder.loadTexts: tlpPduDeviceTotalInputPowerRating.setDescription('The total input power rating of all phases on the device. This value may not be supported on all models. If not supported, this value will always return ERROR_NO_SUCH_NAME.') tlpPduDeviceTemperatureC = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 2, 1, 1, 6), Integer32()).setUnits('degrees Centigrade').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduDeviceTemperatureC.setStatus('current') if mibBuilder.loadTexts: tlpPduDeviceTemperatureC.setDescription('The ambient temperature at or near the PDU casing. Temperature measurements are not supported on all models. If not supported, this value will always return ERROR_NO_SUCH_NAME.') tlpPduDeviceTemperatureF = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 2, 1, 1, 7), Integer32()).setUnits('degrees Farenheit').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduDeviceTemperatureF.setStatus('current') if mibBuilder.loadTexts: tlpPduDeviceTemperatureF.setDescription('The ambient temperature at or near the PDU casing. Temperature measurements are not supported on all models. If not supported, this value will always return ERROR_NO_SUCH_NAME.') tlpPduDevicePhaseImbalance = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 2, 1, 1, 8), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 200))).setUnits('percent').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduDevicePhaseImbalance.setStatus('current') if mibBuilder.loadTexts: tlpPduDevicePhaseImbalance.setDescription('The percentage of imbalance of the three phases. This value is in the range from 0% imbalance to 100% imbalance. The lower the value, the better balanced the phases are. If all load is on a single phase, the imbalance is defined as 100%.') tlpPduDeviceOutputPowerTotal = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 2, 1, 1, 9), Unsigned32()).setUnits('Watts').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduDeviceOutputPowerTotal.setStatus('current') if mibBuilder.loadTexts: tlpPduDeviceOutputPowerTotal.setDescription('The AC output total power for all circuits.') tlpPduDeviceAggregatePowerFactor = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 2, 1, 1, 10), Unsigned32()).setUnits('0.1 Watts').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduDeviceAggregatePowerFactor.setStatus('current') if mibBuilder.loadTexts: tlpPduDeviceAggregatePowerFactor.setDescription('The aggregrate power factor of all phases.') tlpPduDeviceOutputCurrentPrecision = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 2, 1, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("none", 0), ("tenths", 1), ("hundredths", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduDeviceOutputCurrentPrecision.setStatus('current') if mibBuilder.loadTexts: tlpPduDeviceOutputCurrentPrecision.setDescription('Output current is reported by tlpPduOutputCurrent, tlpPduOutputCurrentMin and tlpPduOutputCurrentMax. These values are all reported in hundredths (0.01A), which accommodates all models; however, on any given device the actual precision may vary. This value describes the actual precision, which can be used as a divisor against the output current values to obtain the true output current measurement. For example, if tlpPduOutputCurrent reports 530 and tlpPduDeviceOutputCurrentPrecision is tenths(1), then the actual output current is 5.3.') tlpPduInputTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 1), ) if mibBuilder.loadTexts: tlpPduInputTable.setStatus('current') if mibBuilder.loadTexts: tlpPduInputTable.setDescription('The input details of each pdu in device table. This is a sparse dependent table, and will contain the number of entries based upon the number of pdus managed by the agent as reported by tlpPduIdentNumPdus.') tlpPduInputEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex")) if mibBuilder.loadTexts: tlpPduInputEntry.setStatus('current') if mibBuilder.loadTexts: tlpPduInputEntry.setDescription('An entry containing information applicable to a particular pdu managed by this agent.') tlpPduInputNominalVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 1, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduInputNominalVoltage.setStatus('current') if mibBuilder.loadTexts: tlpPduInputNominalVoltage.setDescription('The nominal value of the input line voltage. This value may not be supported on all models. If not supported, this value will return ERROR_NO_SUCH_NAME.') tlpPduInputNominalVoltagePhaseToPhase = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 1, 1, 2), Unsigned32()).setUnits('0.1 Volt DC').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduInputNominalVoltagePhaseToPhase.setStatus('current') if mibBuilder.loadTexts: tlpPduInputNominalVoltagePhaseToPhase.setDescription('The nominal value of the input line voltage as measured from phase to phase. This value may not be supported on all models. If not supported, this value will always return zero.') tlpPduInputNominalVoltagePhaseToNeutral = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 1, 1, 3), Unsigned32()).setUnits('0.1 Volt DC').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduInputNominalVoltagePhaseToNeutral.setStatus('current') if mibBuilder.loadTexts: tlpPduInputNominalVoltagePhaseToNeutral.setDescription('The nominal value of the input line voltage as measured from phase to neutral. This value may not be supported on all models. If not supported, this value will always return zero.') tlpPduInputLowTransferVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 1, 1, 4), Unsigned32()).setUnits('0.1 Volts').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduInputLowTransferVoltage.setStatus('current') if mibBuilder.loadTexts: tlpPduInputLowTransferVoltage.setDescription('The minimum line voltage allowed before the unit disconnects the AC input connection. This value may not be writable on all models. If not writable, the value will be rejected and an appropriate error message will be returned. When supported, the minimum and maximum values allowed are dictated by tlpPduInputLowTransferVoltageLowerBound and tlpPduInputLowTransferVoltageUpperBound respectively.') tlpPduInputLowTransferVoltageLowerBound = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 1, 1, 5), Unsigned32()).setUnits('Volts').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduInputLowTransferVoltageLowerBound.setStatus('current') if mibBuilder.loadTexts: tlpPduInputLowTransferVoltageLowerBound.setDescription('The lower boundary value of tlpPduInputLowTransferVoltage as dictated by the hardware of the unit.') tlpPduInputLowTransferVoltageUpperBound = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 1, 1, 6), Unsigned32()).setUnits('Volts').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduInputLowTransferVoltageUpperBound.setStatus('current') if mibBuilder.loadTexts: tlpPduInputLowTransferVoltageUpperBound.setDescription('The upper boundary value of tlpPduInputLowTransferVoltage as dictated by the hardware of the unit.') tlpPduInputHighTransferVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 1, 1, 7), Unsigned32()).setUnits('0.1 Volts').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduInputHighTransferVoltage.setStatus('current') if mibBuilder.loadTexts: tlpPduInputHighTransferVoltage.setDescription('The maximum line voltage allowed before the unit disconnects the AC input connection. This value may not be writable on all models. If not writable, the value will be rejected and an appropriate error message will be returned. When supported, the minimum and maximum values allowed are dictated by tlpPduInputHighTransferVoltageLowerBound and tlpPduInputHighTransferVoltageUpperBound respectively.') tlpPduInputHighTransferVoltageLowerBound = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 1, 1, 8), Unsigned32()).setUnits('Volts').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduInputHighTransferVoltageLowerBound.setStatus('current') if mibBuilder.loadTexts: tlpPduInputHighTransferVoltageLowerBound.setDescription('The lower boundary value of tlpPduInputHighTransferVoltage as dictated by the hardware of the unit.') tlpPduInputHighTransferVoltageUpperBound = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 1, 1, 9), Unsigned32()).setUnits('Volts').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduInputHighTransferVoltageUpperBound.setStatus('current') if mibBuilder.loadTexts: tlpPduInputHighTransferVoltageUpperBound.setDescription('The upper boundary value of tlpPduInputHighTransferVoltage as dictated by the hardware of the unit.') tlpPduInputCurrentLimit = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 1, 1, 10), Unsigned32()).setUnits('Amp DC').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduInputCurrentLimit.setStatus('current') if mibBuilder.loadTexts: tlpPduInputCurrentLimit.setDescription('The capacity of each phase conductor in the pdu limited by the AC input cord or any other potential limiting factors unique to a given unit.') tlpPduInputPhaseTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 2), ) if mibBuilder.loadTexts: tlpPduInputPhaseTable.setStatus('current') if mibBuilder.loadTexts: tlpPduInputPhaseTable.setDescription('The input phase details of each pdu in device table. This is a sparse dependent table, and will contain the number of entries based upon the value of tlpPduIdentNumInputs and tlpPduIdentNumPhases per each device.') tlpPduInputPhaseEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 2, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"), (0, "TRIPPLITE-PRODUCTS", "tlpPduInputPhaseIndex")) if mibBuilder.loadTexts: tlpPduInputPhaseEntry.setStatus('current') if mibBuilder.loadTexts: tlpPduInputPhaseEntry.setDescription('An entry containing information applicable to a particular input phase managed by this agent.') tlpPduInputPhaseIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 2, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduInputPhaseIndex.setStatus('current') if mibBuilder.loadTexts: tlpPduInputPhaseIndex.setDescription('The table row index for the pdu phase.') tlpPduInputPhasePhaseType = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 2, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("phaseToNeutral", 0), ("phaseToPhase", 1)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduInputPhasePhaseType.setStatus('current') if mibBuilder.loadTexts: tlpPduInputPhasePhaseType.setDescription('Denotes whether measurements are phase to neutral(0) or phase to phase(1).') tlpPduInputPhaseFrequency = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 2, 1, 3), Unsigned32()).setUnits('0.1 Hertz').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduInputPhaseFrequency.setStatus('current') if mibBuilder.loadTexts: tlpPduInputPhaseFrequency.setDescription('The present input frequency for a given phase.') tlpPduInputPhaseVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 2, 1, 4), Unsigned32()).setUnits('0.1 Volt DC').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduInputPhaseVoltage.setStatus('current') if mibBuilder.loadTexts: tlpPduInputPhaseVoltage.setDescription('The magnitude of the present input voltage for a given phase.') tlpPduInputPhaseVoltageMin = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 2, 1, 5), Unsigned32()).setUnits('0.1 Volt DC').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpPduInputPhaseVoltageMin.setStatus('current') if mibBuilder.loadTexts: tlpPduInputPhaseVoltageMin.setDescription('The minimum input voltage value since the last reset of this value for a given phase. If any value is written to either tlpPduInputVoltageMin or tlpPduInputVoltageMax, both will be reset to their appropriate minimum and maximum values.') tlpPduInputPhaseVoltageMax = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 2, 1, 6), Unsigned32()).setUnits('0.1 Volt DC').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpPduInputPhaseVoltageMax.setStatus('current') if mibBuilder.loadTexts: tlpPduInputPhaseVoltageMax.setDescription('The maximum input voltage value since the last reset of this value for a given phase. If any value is written to either tlpPduInputVoltageMin or tlpPduInputVoltageMax, both will be reset to their appropriate minimum and maximum values.') tlpPduInputPhaseCurrent = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 2, 1, 7), Unsigned32()).setUnits('0.01 Amp DC').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduInputPhaseCurrent.setStatus('current') if mibBuilder.loadTexts: tlpPduInputPhaseCurrent.setDescription('The magnitude of the present input current for a given phase.') tlpPduOutputTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 2, 1), ) if mibBuilder.loadTexts: tlpPduOutputTable.setStatus('current') if mibBuilder.loadTexts: tlpPduOutputTable.setDescription('The output details of each pdu in device table. This is a sparse dependent table, and will contain the number of entries based upon the value of tlpPduIdentNumOutputs per each device.') tlpPduOutputEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 2, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"), (0, "TRIPPLITE-PRODUCTS", "tlpPduOutputIndex")) if mibBuilder.loadTexts: tlpPduOutputEntry.setStatus('current') if mibBuilder.loadTexts: tlpPduOutputEntry.setDescription('An entry containing output information applicable to a particular phase managed by this agent.') tlpPduOutputIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 2, 1, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduOutputIndex.setStatus('current') if mibBuilder.loadTexts: tlpPduOutputIndex.setDescription('The table row index for the pdu phase.') tlpPduOutputPhase = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 2, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("phase1", 1), ("phase2", 2), ("phase3", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduOutputPhase.setStatus('current') if mibBuilder.loadTexts: tlpPduOutputPhase.setDescription('Indicates the phase associated with the output line.') tlpPduOutputPhaseType = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 2, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("phaseToNeutral", 0), ("phaseToPhase", 1)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduOutputPhaseType.setStatus('current') if mibBuilder.loadTexts: tlpPduOutputPhaseType.setDescription('Denotes whether measurements are phase to neutral(0) or phase to phase(1).') tlpPduOutputVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 2, 1, 1, 4), Unsigned32()).setUnits('0.1 Volt DC').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduOutputVoltage.setStatus('current') if mibBuilder.loadTexts: tlpPduOutputVoltage.setDescription('The magnitude of the present output voltage for a given output line.') tlpPduOutputCurrent = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 2, 1, 1, 5), Unsigned32()).setUnits('0.01 Amp DC').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduOutputCurrent.setStatus('current') if mibBuilder.loadTexts: tlpPduOutputCurrent.setDescription('The output current, in hundreths of amps, for a given phase.') tlpPduOutputCurrentMin = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 2, 1, 1, 6), Unsigned32()).setUnits('0.01 Amp DC').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduOutputCurrentMin.setStatus('current') if mibBuilder.loadTexts: tlpPduOutputCurrentMin.setDescription('The minimum current observed for a given phase since last reset.') tlpPduOutputCurrentMax = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 2, 1, 1, 7), Unsigned32()).setUnits('0.01 Amp DC').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduOutputCurrentMax.setStatus('current') if mibBuilder.loadTexts: tlpPduOutputCurrentMax.setDescription('The maximum current observed for a given phase since last reset.') tlpPduOutputActivePower = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 2, 1, 1, 8), Unsigned32()).setUnits('Watts').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduOutputActivePower.setStatus('current') if mibBuilder.loadTexts: tlpPduOutputActivePower.setDescription('The output power for a given phase.') tlpPduOutputPowerFactor = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 2, 1, 1, 9), Unsigned32()).setUnits('0.01 percent').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduOutputPowerFactor.setStatus('current') if mibBuilder.loadTexts: tlpPduOutputPowerFactor.setDescription('The output power factor, in hundreths of a percent, for a given phase.') tlpPduOutputSource = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 2, 1, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("none", 0), ("normal", 1)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduOutputSource.setStatus('current') if mibBuilder.loadTexts: tlpPduOutputSource.setDescription('The present source of output power. The enumeration none(0) indicates that there is no source of output power (and therefore no output power), for example, the system has opened the output breaker.') tlpPduOutletTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1), ) if mibBuilder.loadTexts: tlpPduOutletTable.setStatus('current') if mibBuilder.loadTexts: tlpPduOutletTable.setDescription('The receptacle status details of each pdu in device table. This is a sparse dependent table, and will contain the number of entries based upon the value of tlpPduIdentNumOutlets per each device.') tlpPduOutletEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"), (0, "TRIPPLITE-PRODUCTS", "tlpPduOutletIndex")) if mibBuilder.loadTexts: tlpPduOutletEntry.setStatus('current') if mibBuilder.loadTexts: tlpPduOutletEntry.setDescription('An entry containing information applicable to a particular outlet managed by this agent.') tlpPduOutletIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduOutletIndex.setStatus('current') if mibBuilder.loadTexts: tlpPduOutletIndex.setDescription('The table row index for the pdu outlet.') tlpPduOutletName = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 2), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpPduOutletName.setStatus('current') if mibBuilder.loadTexts: tlpPduOutletName.setDescription('A user-definable string identifying the name of the outlet.') tlpPduOutletDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 3), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpPduOutletDescription.setStatus('current') if mibBuilder.loadTexts: tlpPduOutletDescription.setDescription('A user-definable string identifying the device(s) connected to the given outlet.') tlpPduOutletState = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("unknown", 0), ("off", 1), ("on", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduOutletState.setStatus('current') if mibBuilder.loadTexts: tlpPduOutletState.setDescription('The current state of the outlet.') tlpPduOutletControllable = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 5), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduOutletControllable.setStatus('current') if mibBuilder.loadTexts: tlpPduOutletControllable.setDescription('Denotes whether this outlet is controllable.') tlpPduOutletCommand = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("idle", 0), ("turnOff", 1), ("turnOn", 2), ("cycle", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpPduOutletCommand.setStatus('current') if mibBuilder.loadTexts: tlpPduOutletCommand.setDescription('Reading this value will always return 0. Setting this value to turnOff(1) will turn off the outlet. Setting this value to turnOn(2) will turn on the outlet. Setting this value to cycle(3) will turn the outlet off, then turn it back on.') tlpPduOutletVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 7), Unsigned32()).setUnits('0.1 Volt DC').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduOutletVoltage.setStatus('current') if mibBuilder.loadTexts: tlpPduOutletVoltage.setDescription('The magnitude of the present output voltage for a given outlet. If the voltage measurement is not supported for an individual receptacle regardless whether device-wide or just for this receptacle, then this value will always return ERROR_NO_SUCH_NAME. Device-wide support for receptacle voltage measurements is denoted by tlpPduSupportsOutletVoltage.') tlpPduOutletCurrent = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 8), Unsigned32()).setUnits('0.01 RMS Amp').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduOutletCurrent.setStatus('current') if mibBuilder.loadTexts: tlpPduOutletCurrent.setDescription('The present output current, in hundreths of amps, of a given outlet. If the current measurement is not supported for an individual receptacle regardless whether device-wide or just for this receptacle, then this value will always return ERROR_NO_SUCH_NAME. Device-wide support for receptacle current measurements is denoted by tlpPduSupportsCurrentPower.') tlpPduOutletPower = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 9), Unsigned32()).setUnits('Watts').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduOutletPower.setStatus('current') if mibBuilder.loadTexts: tlpPduOutletPower.setDescription('The output power of a given outlet. If the power measurement is not supported for an individual receptacle regardless whether device-wide or just for this receptacle, then this value will always return ERROR_NO_SUCH_NAME. Device-wide support for receptacle power measurements is denoted by tlpPduSupportsCurrentPower.') tlpPduOutletRampAction = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("remainOff", 0), ("turnOnAfterDelay", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpPduOutletRampAction.setStatus('current') if mibBuilder.loadTexts: tlpPduOutletRampAction.setDescription('The ramp action to take on a given outlet when powering on the device. If this receptacle is not controllable, as denoted by tlpPduOutletControllable, then this value will always return ERROR_NO_SUCH_NAME.') tlpPduOutletRampDelay = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 11), Integer32()).setUnits('seconds').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpPduOutletRampDelay.setStatus('current') if mibBuilder.loadTexts: tlpPduOutletRampDelay.setDescription('The number of seconds to delay before powering on the given outlet. If this receptacle is not controllable, as denoted by tlpPduOutletControllable, then this value will always return ERROR_NO_SUCH_NAME.') tlpPduOutletShedAction = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("remainOn", 0), ("turnOffAfterDelay", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpPduOutletShedAction.setStatus('current') if mibBuilder.loadTexts: tlpPduOutletShedAction.setDescription('The shed action to take on a given outlet when powering off the device. If this receptacle is not controllable, as denoted by tlpPduOutletControllable, then this value will always return ERROR_NO_SUCH_NAME.') tlpPduOutletShedDelay = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 13), Integer32()).setUnits('seconds').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpPduOutletShedDelay.setStatus('current') if mibBuilder.loadTexts: tlpPduOutletShedDelay.setDescription('The number of seconds to delay before powering off the given outlet. If this receptacle is not controllable, as denoted by tlpPduOutletControllable, then this value will always return ERROR_NO_SUCH_NAME.') tlpPduOutletGroup = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 14), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpPduOutletGroup.setStatus('current') if mibBuilder.loadTexts: tlpPduOutletGroup.setDescription('The tlpPduOutletGroupIndex group index of the respective group to which the given outlet is assigned, or zero (0) if the given outlet is not grouped.') tlpPduOutletBank = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 15), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduOutletBank.setStatus('current') if mibBuilder.loadTexts: tlpPduOutletBank.setDescription('Indicates on which bank the given outlet is located.') tlpPduOutletCircuit = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 16), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduOutletCircuit.setStatus('current') if mibBuilder.loadTexts: tlpPduOutletCircuit.setDescription('Indicates on which circuit the given outlet is wired.') tlpPduOutletPhase = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 17), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("unknown", 0), ("phase1", 1), ("phase2", 2), ("phase3", 3), ("phase1-2", 4), ("phase2-3", 5), ("phase3-1", 6)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduOutletPhase.setStatus('current') if mibBuilder.loadTexts: tlpPduOutletPhase.setDescription('Indicates on which phase or phases the given outlet is associated. For single phase devices, this object will always return phase1(1). For 3-phase devices with outlets wired to a single phase, this object will return phase1(1), phase2(2) or phase3(3). For 3-phase devices with outlets wired to two phases, this object will return phase1-2(4) for phases 1 and 2, phase2-3(5) for phases 2 and 3, and phase3-1(6) for phases 3 and 1. Devices that do not report phase connections will return unknown(0).') tlpPduOutletGroupTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 2), ) if mibBuilder.loadTexts: tlpPduOutletGroupTable.setStatus('current') if mibBuilder.loadTexts: tlpPduOutletGroupTable.setDescription('The receptacle grouping details of each pdu in device table. This is a sparse dependent table, and will contain the number of entries based upon the value of tlpPduIdentNumOutletGroups per each device.') tlpPduOutletGroupEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 2, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"), (0, "TRIPPLITE-PRODUCTS", "tlpPduOutletGroupIndex")) if mibBuilder.loadTexts: tlpPduOutletGroupEntry.setStatus('current') if mibBuilder.loadTexts: tlpPduOutletGroupEntry.setDescription('An entry containing information applicable to a particular outlet group managed by this agent.') tlpPduOutletGroupIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 2, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduOutletGroupIndex.setStatus('current') if mibBuilder.loadTexts: tlpPduOutletGroupIndex.setDescription('The table row index for the pdu outlet group.') tlpPduOutletGroupRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 2, 1, 2), RowStatus()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpPduOutletGroupRowStatus.setStatus('current') if mibBuilder.loadTexts: tlpPduOutletGroupRowStatus.setDescription('Row status for the tlpPduOutletGroupTable') tlpPduOutletGroupName = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 2, 1, 3), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpPduOutletGroupName.setStatus('current') if mibBuilder.loadTexts: tlpPduOutletGroupName.setDescription('The name of this outlet group.') tlpPduOutletGroupDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 2, 1, 4), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpPduOutletGroupDescription.setStatus('current') if mibBuilder.loadTexts: tlpPduOutletGroupDescription.setDescription('A description for this outlet group.') tlpPduOutletGroupState = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 2, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("unknown", 0), ("off", 1), ("on", 2), ("mixed", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduOutletGroupState.setStatus('current') if mibBuilder.loadTexts: tlpPduOutletGroupState.setDescription('The current state of the outlet group. This value will report off(1) if all outlets in the group are off, on(2) if all outlets in the group are on, mixed(3) if some outlets in the group are off and others are on, or unknown(0) if the state of the outlets cannot be determined.') tlpPduOutletGroupCommand = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 2, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("turnOff", 1), ("turnOn", 2), ("cycle", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpPduOutletGroupCommand.setStatus('current') if mibBuilder.loadTexts: tlpPduOutletGroupCommand.setDescription('Reading this value will always return 0. Setting this value to turnOff(1) will turn off every outlet associated with the group. Setting this value to turnOn(2) will turn on every outlet associated with the group. Setting this value to cycle(3) will turn off every outlet associated with the group, then turn each outlet back on.') tlpPduCircuitTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 4, 1), ) if mibBuilder.loadTexts: tlpPduCircuitTable.setStatus('current') if mibBuilder.loadTexts: tlpPduCircuitTable.setDescription('A list of pdu circuit table entries. The number of entries is given by the value of tlpPduIdentNumCircuits.') tlpPduCircuitEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 4, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"), (0, "TRIPPLITE-PRODUCTS", "tlpPduCircuitIndex")) if mibBuilder.loadTexts: tlpPduCircuitEntry.setStatus('current') if mibBuilder.loadTexts: tlpPduCircuitEntry.setDescription('An entry containing information applicable to a particular circuit managed by this agent.') tlpPduCircuitIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 4, 1, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduCircuitIndex.setStatus('current') if mibBuilder.loadTexts: tlpPduCircuitIndex.setDescription('The table row index for the pdu circuit.') tlpPduCircuitPhase = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 4, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("unknown", 0), ("phase1", 1), ("phase2", 2), ("phase3", 3), ("phase1-2", 4), ("phase2-3", 5), ("phase3-1", 6)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduCircuitPhase.setStatus('current') if mibBuilder.loadTexts: tlpPduCircuitPhase.setDescription('Indicates on which phase or phases the given circuit is wired. For single phase devices, this object will always return phase1(1). For 3-phase devices with outlets wired to a single phase, this object will return phase1(1), phase2(2) or phase3(3). For 3-phase devices with outlets wired to two phases, this object will return phase1-2(4) for phases 1 and 2, phase2-3(5) for phases 2 and 3, and phase3-1(6) for phases 3 and 1. Devices that do not report phase connections will return unknown(0).') tlpPduCircuitInputVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 4, 1, 1, 3), Integer32()).setUnits('0.1 Volt DC').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduCircuitInputVoltage.setStatus('current') if mibBuilder.loadTexts: tlpPduCircuitInputVoltage.setDescription('The input voltage for a circuit.') tlpPduCircuitTotalCurrent = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 4, 1, 1, 4), Integer32()).setUnits('0.01 Amp DC').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduCircuitTotalCurrent.setStatus('current') if mibBuilder.loadTexts: tlpPduCircuitTotalCurrent.setDescription('The total current for all receptacles in a given circuit.') tlpPduCircuitCurrentLimit = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 4, 1, 1, 5), Integer32()).setUnits('0.01 Amp DC').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduCircuitCurrentLimit.setStatus('current') if mibBuilder.loadTexts: tlpPduCircuitCurrentLimit.setDescription('The current capacity of a circuit in the system limited by the circuit breaker or wiring used in a given unit.') tlpPduCircuitCurrentMin = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 4, 1, 1, 6), Integer32()).setUnits('0.01 Amp DC').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduCircuitCurrentMin.setStatus('current') if mibBuilder.loadTexts: tlpPduCircuitCurrentMin.setDescription('The minimum total current for all receptacles in a given circuit since last reset.') tlpPduCircuitCurrentMax = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 4, 1, 1, 7), Integer32()).setUnits('0.01 Amp DC').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduCircuitCurrentMax.setStatus('current') if mibBuilder.loadTexts: tlpPduCircuitCurrentMax.setDescription('The maximum total current for all receptacles in a given circuit since last reset.') tlpPduCircuitTotalPower = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 4, 1, 1, 8), Integer32()).setUnits('Watts').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduCircuitTotalPower.setStatus('current') if mibBuilder.loadTexts: tlpPduCircuitTotalPower.setDescription('The total power for all receptacles in a given circuit.') tlpPduCircuitPowerFactor = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 4, 1, 1, 9), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 200))).setUnits('percent').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduCircuitPowerFactor.setStatus('current') if mibBuilder.loadTexts: tlpPduCircuitPowerFactor.setDescription('The power factor for all receptacles in a given circuit.') tlpPduCircuitUtilization = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 4, 1, 1, 10), Unsigned32()).setUnits('0.01 %').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduCircuitUtilization.setStatus('current') if mibBuilder.loadTexts: tlpPduCircuitUtilization.setDescription('The percentage of utilization of a given circuit. This is typically a calculation of tlpPduCircuitTotalCurrent / tlpPduCircuitCurrentLimit.') tlpPduBreakerTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 5, 1), ) if mibBuilder.loadTexts: tlpPduBreakerTable.setStatus('current') if mibBuilder.loadTexts: tlpPduBreakerTable.setDescription('A list of pdu bank breaker table entries. The number of entries is given by the value of tlpPduIdentNumBreakers.') tlpPduBreakerEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 5, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"), (0, "TRIPPLITE-PRODUCTS", "tlpPduBreakerIndex")) if mibBuilder.loadTexts: tlpPduBreakerEntry.setStatus('current') if mibBuilder.loadTexts: tlpPduBreakerEntry.setDescription('An entry containing information applicable to a particular bank breaker managed by this agent.') tlpPduBreakerIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 5, 1, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduBreakerIndex.setStatus('current') if mibBuilder.loadTexts: tlpPduBreakerIndex.setDescription('The table row index for the pdu bank breaker.') tlpPduBreakerStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 5, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("open", 0), ("closed", 1), ("notInstalled", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduBreakerStatus.setStatus('current') if mibBuilder.loadTexts: tlpPduBreakerStatus.setDescription('Indicates whether the bank breaker is open(0), closed(1) or not installed(2).') tlpPduHeatsinkTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 6, 1), ) if mibBuilder.loadTexts: tlpPduHeatsinkTable.setStatus('current') if mibBuilder.loadTexts: tlpPduHeatsinkTable.setDescription('A list of pdu heatsink thermistor table entries. The number of entries is given by the value of tlpPduIdentNumHeatsinks.') tlpPduHeatsinkEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 6, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"), (0, "TRIPPLITE-PRODUCTS", "tlpPduHeatsinkIndex")) if mibBuilder.loadTexts: tlpPduHeatsinkEntry.setStatus('current') if mibBuilder.loadTexts: tlpPduHeatsinkEntry.setDescription('An entry containing information applicable to a particular heatsink thermistor managed by this agent.') tlpPduHeatsinkIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 6, 1, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduHeatsinkIndex.setStatus('current') if mibBuilder.loadTexts: tlpPduHeatsinkIndex.setDescription('The table row index for the pdu heatsink thermistor.') tlpPduHeatsinkStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 6, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("notAvailable", 0), ("available", 1)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduHeatsinkStatus.setStatus('current') if mibBuilder.loadTexts: tlpPduHeatsinkStatus.setDescription('Indicates whether the heatsink thermistor is available. The entry will return notAvailable(0) if a thermistor is either non-existent or disconnected, or available(1) when connected.') tlpPduHeatsinkTemperatureC = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 6, 1, 1, 3), Integer32()).setUnits('0.1 degrees Centigrade').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduHeatsinkTemperatureC.setStatus('current') if mibBuilder.loadTexts: tlpPduHeatsinkTemperatureC.setDescription('The temperature at the heatsink termistor in tenths degrees Centigrade. Heatsink temperature measurements are not supported on all models. If not supported, this value will always return ERROR_NO_SUCH_NAME.') tlpPduHeatsinkTemperatureF = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 6, 1, 1, 4), Integer32()).setUnits('0.1 degrees Farenheit').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpPduHeatsinkTemperatureF.setStatus('current') if mibBuilder.loadTexts: tlpPduHeatsinkTemperatureF.setDescription('The temperature at the heatsink termistor in tenths degrees Farenheit. Heatsink temperature measurements are not supported on all models. If not supported, this value will always return ERROR_NO_SUCH_NAME.') tlpPduControlTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 4, 1), ) if mibBuilder.loadTexts: tlpPduControlTable.setStatus('current') if mibBuilder.loadTexts: tlpPduControlTable.setDescription('The actionable controls for each pdu in device table. This is a sparse dependent table, and will contain some subset of devices that are pdus.') tlpPduControlEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 4, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex")) if mibBuilder.loadTexts: tlpPduControlEntry.setStatus('current') if mibBuilder.loadTexts: tlpPduControlEntry.setDescription('An entry containing controls for a particular pdu.') tlpPduControlRamp = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 4, 1, 1, 1), TruthValue()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpPduControlRamp.setStatus('current') if mibBuilder.loadTexts: tlpPduControlRamp.setDescription('Set to TRUE to initiate the pre-designated ramp sequence on the pdu.') tlpPduControlShed = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 4, 1, 1, 2), TruthValue()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpPduControlShed.setStatus('current') if mibBuilder.loadTexts: tlpPduControlShed.setDescription('Set to TRUE to initiate the pre-designated shed sequence on the pdu.') tlpPduControlPduOn = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 4, 1, 1, 3), TruthValue()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpPduControlPduOn.setStatus('current') if mibBuilder.loadTexts: tlpPduControlPduOn.setDescription('Set to TRUE to turn the pdu on.') tlpPduControlPduOff = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 4, 1, 1, 4), TruthValue()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpPduControlPduOff.setStatus('current') if mibBuilder.loadTexts: tlpPduControlPduOff.setDescription('Set to TRUE to turn the pdu off.') tlpPduControlPduReboot = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 4, 1, 1, 5), TruthValue()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpPduControlPduReboot.setStatus('current') if mibBuilder.loadTexts: tlpPduControlPduReboot.setDescription('Set to TRUE to reboot the pdu.') tlpPduConfigTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 5, 1), ) if mibBuilder.loadTexts: tlpPduConfigTable.setStatus('current') if mibBuilder.loadTexts: tlpPduConfigTable.setDescription('The configuration options of each pdu in device table. This is a sparse dependent table, and will contain some subset of devices that are pdus. Not all options are available on all pdus.') tlpPduConfigEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 5, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex")) if mibBuilder.loadTexts: tlpPduConfigEntry.setStatus('current') if mibBuilder.loadTexts: tlpPduConfigEntry.setDescription('An entry containing configuration options for a particular pdu.') tlpPduConfigInputVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 5, 1, 1, 1), Unsigned32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpPduConfigInputVoltage.setStatus('current') if mibBuilder.loadTexts: tlpPduConfigInputVoltage.setDescription('The nominal value of the input line voltage. This value may not be supported on all models. If not supported, this value will return ERROR_NO_SUCH_NAME. This value may not be writable on all models. If not writable, the value will be rejected and an appropriate error message will be returned.') tlpEnvIdentNumEnvirosense = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpEnvIdentNumEnvirosense.setStatus('current') if mibBuilder.loadTexts: tlpEnvIdentNumEnvirosense.setDescription('The number of envirosense devices that this agent is currently managing.') tlpEnvIdentTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 1, 2), ) if mibBuilder.loadTexts: tlpEnvIdentTable.setStatus('current') if mibBuilder.loadTexts: tlpEnvIdentTable.setDescription('The identity details of each envirosense in device table. The number of entries is given by the value of tlpDevicesNumDevices.') tlpEnvIdentEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 1, 2, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex")) if mibBuilder.loadTexts: tlpEnvIdentEntry.setStatus('current') if mibBuilder.loadTexts: tlpEnvIdentEntry.setDescription('An entry containing details for a particular envirosense.') tlpEnvIdentTempSupported = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 1, 2, 1, 1), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpEnvIdentTempSupported.setStatus('current') if mibBuilder.loadTexts: tlpEnvIdentTempSupported.setDescription('Indicates whether or not temperature is supported.') tlpEnvIdentHumiditySupported = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 1, 2, 1, 2), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpEnvIdentHumiditySupported.setStatus('current') if mibBuilder.loadTexts: tlpEnvIdentHumiditySupported.setDescription('Indicates whether or not temperature is supported.') tlpEnvNumInputContacts = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 1, 2, 1, 3), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpEnvNumInputContacts.setStatus('current') if mibBuilder.loadTexts: tlpEnvNumInputContacts.setDescription('The number of input contacts supported by the envirosense.') tlpEnvNumOutputContacts = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 1, 2, 1, 4), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpEnvNumOutputContacts.setStatus('current') if mibBuilder.loadTexts: tlpEnvNumOutputContacts.setDescription('The number of output contacts supported by the envirosense.') tlpEnvTemperatureTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 1), ) if mibBuilder.loadTexts: tlpEnvTemperatureTable.setStatus('current') if mibBuilder.loadTexts: tlpEnvTemperatureTable.setDescription('The temperature details of each envirosense in device table. The number of entries is given by the value of tlpDevicesNumDevices.') tlpEnvTemperatureEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex")) if mibBuilder.loadTexts: tlpEnvTemperatureEntry.setStatus('current') if mibBuilder.loadTexts: tlpEnvTemperatureEntry.setDescription('An entry containing temperature details for a particular envirosense.') tlpEnvTemperatureC = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 1, 1, 1), Integer32()).setUnits('degrees Centigrade').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpEnvTemperatureC.setStatus('current') if mibBuilder.loadTexts: tlpEnvTemperatureC.setDescription('The ambient temperature.') tlpEnvTemperatureF = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 1, 1, 2), Integer32()).setUnits('0.1 degrees Farenheit').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpEnvTemperatureF.setStatus('current') if mibBuilder.loadTexts: tlpEnvTemperatureF.setDescription('The ambient temperature.') tlpEnvTemperatureInAlarm = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 1, 1, 3), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpEnvTemperatureInAlarm.setStatus('current') if mibBuilder.loadTexts: tlpEnvTemperatureInAlarm.setDescription('Indicates whether or not temperature is in alarm.') tlpEnvHumidityTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 2), ) if mibBuilder.loadTexts: tlpEnvHumidityTable.setStatus('current') if mibBuilder.loadTexts: tlpEnvHumidityTable.setDescription('The humidity details of each envirosense in device table. The number of entries is given by the value of tlpDevicesNumDevices.') tlpEnvHumidityEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 2, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex")) if mibBuilder.loadTexts: tlpEnvHumidityEntry.setStatus('current') if mibBuilder.loadTexts: tlpEnvHumidityEntry.setDescription('An entry containing humidity details for a particular envirosense.') tlpEnvHumidityHumidity = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setUnits('percent').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpEnvHumidityHumidity.setStatus('current') if mibBuilder.loadTexts: tlpEnvHumidityHumidity.setDescription('The ambient humidity.') tlpEnvHumidityInAlarm = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 2, 1, 2), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpEnvHumidityInAlarm.setStatus('current') if mibBuilder.loadTexts: tlpEnvHumidityInAlarm.setDescription('Indicates whether or not humidity is in alarm.') tlpEnvInputContactTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 3), ) if mibBuilder.loadTexts: tlpEnvInputContactTable.setStatus('current') if mibBuilder.loadTexts: tlpEnvInputContactTable.setDescription('The input contact details of each envirosense in device table. The number of entries is given by the value of tlpDevicesNumDevices.') tlpEnvInputContactEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 3, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"), (0, "TRIPPLITE-PRODUCTS", "tlpEnvInputContactIndex")) if mibBuilder.loadTexts: tlpEnvInputContactEntry.setStatus('current') if mibBuilder.loadTexts: tlpEnvInputContactEntry.setDescription('An entry containing input contact details for a particular envirosense.') tlpEnvInputContactIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 3, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpEnvInputContactIndex.setStatus('current') if mibBuilder.loadTexts: tlpEnvInputContactIndex.setDescription('The table row index for the envirosense input contact details.') tlpEnvInputContactName = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 3, 1, 2), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpEnvInputContactName.setStatus('current') if mibBuilder.loadTexts: tlpEnvInputContactName.setDescription('The name or description of the contact.') tlpEnvInputContactNormalState = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 3, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("open", 0), ("closed", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpEnvInputContactNormalState.setStatus('current') if mibBuilder.loadTexts: tlpEnvInputContactNormalState.setDescription('The normal operating position of the contact.') tlpEnvInputContactCurrentState = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 3, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("open", 0), ("closed", 1)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpEnvInputContactCurrentState.setStatus('current') if mibBuilder.loadTexts: tlpEnvInputContactCurrentState.setDescription('The current state of the contact.') tlpEnvInputContactInAlarm = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 3, 1, 5), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpEnvInputContactInAlarm.setStatus('current') if mibBuilder.loadTexts: tlpEnvInputContactInAlarm.setDescription('Indicates whether or not the contact is in alarm.') tlpEnvOutputContactTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 4), ) if mibBuilder.loadTexts: tlpEnvOutputContactTable.setStatus('current') if mibBuilder.loadTexts: tlpEnvOutputContactTable.setDescription('The output contact details of each envirosense in device table. The number of entries is given by the value of tlpDevicesNumDevices.') tlpEnvOutputContactEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 4, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"), (0, "TRIPPLITE-PRODUCTS", "tlpEnvOutputContactIndex")) if mibBuilder.loadTexts: tlpEnvOutputContactEntry.setStatus('current') if mibBuilder.loadTexts: tlpEnvOutputContactEntry.setDescription('An entry containing output contact details for a particular envirosense.') tlpEnvOutputContactIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 4, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpEnvOutputContactIndex.setStatus('current') if mibBuilder.loadTexts: tlpEnvOutputContactIndex.setDescription('The table row index for the envirosense output contact details.') tlpEnvOutputContactName = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 4, 1, 2), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpEnvOutputContactName.setStatus('current') if mibBuilder.loadTexts: tlpEnvOutputContactName.setDescription('The name or description of the contact.') tlpEnvOutputContactNormalState = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 4, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("open", 0), ("closed", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpEnvOutputContactNormalState.setStatus('current') if mibBuilder.loadTexts: tlpEnvOutputContactNormalState.setDescription('The normal operating position of the contact.') tlpEnvOutputContactCurrentState = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 4, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("open", 0), ("closed", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpEnvOutputContactCurrentState.setStatus('current') if mibBuilder.loadTexts: tlpEnvOutputContactCurrentState.setDescription('The current state of the contact.') tlpEnvOutputContactInAlarm = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 4, 1, 5), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpEnvOutputContactInAlarm.setStatus('current') if mibBuilder.loadTexts: tlpEnvOutputContactInAlarm.setDescription('Indicates whether or not the contact is in alarm.') tlpEnvConfigTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 5, 1), ) if mibBuilder.loadTexts: tlpEnvConfigTable.setStatus('current') if mibBuilder.loadTexts: tlpEnvConfigTable.setDescription('The configuration options of each envirosense in device table. This is a sparse dependent table, and will contain some subset of devices that are envirosenses. Not all options are available on all envirosenses.') tlpEnvConfigEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 5, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex")) if mibBuilder.loadTexts: tlpEnvConfigEntry.setStatus('current') if mibBuilder.loadTexts: tlpEnvConfigEntry.setDescription('An entry containing configuration options for a particular envirosenses.') tlpEnvTemperatureLowLimit = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 5, 1, 1, 1), Integer32()).setUnits('degrees Farenheit').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpEnvTemperatureLowLimit.setStatus('current') if mibBuilder.loadTexts: tlpEnvTemperatureLowLimit.setDescription('The lower alarm limit for ambient temperature.') tlpEnvTemperatureHighLimit = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 5, 1, 1, 2), Integer32()).setUnits('degrees Farenheit').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpEnvTemperatureHighLimit.setStatus('current') if mibBuilder.loadTexts: tlpEnvTemperatureHighLimit.setDescription('The upper alarm limit for ambient temperature.') tlpEnvHumidityLowLimit = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 5, 1, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setUnits('percent').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpEnvHumidityLowLimit.setStatus('current') if mibBuilder.loadTexts: tlpEnvHumidityLowLimit.setDescription('The lower alarm limit for ambient humidity.') tlpEnvHumidityHighLimit = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 5, 1, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setUnits('percent').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpEnvHumidityHighLimit.setStatus('current') if mibBuilder.loadTexts: tlpEnvHumidityHighLimit.setDescription('The upper alarm limit for ambient humidity.') tlpAtsIdentNumAts = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsIdentNumAts.setStatus('current') if mibBuilder.loadTexts: tlpAtsIdentNumAts.setDescription('The number of ats devices that this agent is currently managing.') tlpAtsIdentTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 2), ) if mibBuilder.loadTexts: tlpAtsIdentTable.setStatus('current') if mibBuilder.loadTexts: tlpAtsIdentTable.setDescription('The identity details of each ats in device table. This is a sparse dependent table, and will contain some subset of devices that are atss.') tlpAtsIdentEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 2, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex")) if mibBuilder.loadTexts: tlpAtsIdentEntry.setStatus('current') if mibBuilder.loadTexts: tlpAtsIdentEntry.setDescription('An entry containing details for a particular ats.') tlpAtsIdentNumInputs = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 2, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsIdentNumInputs.setStatus('current') if mibBuilder.loadTexts: tlpAtsIdentNumInputs.setDescription('The number of inputs supported by the ats.') tlpAtsIdentNumOutputs = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 2, 1, 2), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsIdentNumOutputs.setStatus('current') if mibBuilder.loadTexts: tlpAtsIdentNumOutputs.setDescription('The number of outputs supported by the ats.') tlpAtsIdentNumPhases = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 2, 1, 3), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsIdentNumPhases.setStatus('current') if mibBuilder.loadTexts: tlpAtsIdentNumPhases.setDescription('The number of phases per input supported by the ats.') tlpAtsIdentNumOutlets = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 2, 1, 4), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsIdentNumOutlets.setStatus('current') if mibBuilder.loadTexts: tlpAtsIdentNumOutlets.setDescription('The number of receptacles supported by the ats.') tlpAtsIdentNumOutletGroups = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 2, 1, 5), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsIdentNumOutletGroups.setStatus('current') if mibBuilder.loadTexts: tlpAtsIdentNumOutletGroups.setDescription('The number of receptacle groups supported by the ats.') tlpAtsIdentNumCircuits = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 2, 1, 6), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsIdentNumCircuits.setStatus('current') if mibBuilder.loadTexts: tlpAtsIdentNumCircuits.setDescription('The number of circuits supported by the ats.') tlpAtsIdentNumBreakers = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 2, 1, 7), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsIdentNumBreakers.setStatus('current') if mibBuilder.loadTexts: tlpAtsIdentNumBreakers.setDescription('The number of bank breakers supported by the ats.') tlpAtsIdentNumHeatsinks = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 2, 1, 8), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsIdentNumHeatsinks.setStatus('current') if mibBuilder.loadTexts: tlpAtsIdentNumHeatsinks.setDescription('The number of heatsink thermistors supported by the ats.') tlpAtsSupportsTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 3), ) if mibBuilder.loadTexts: tlpAtsSupportsTable.setStatus('current') if mibBuilder.loadTexts: tlpAtsSupportsTable.setDescription('The supported details of each ats in device table. This is a sparse dependent table, and will contain some subset of devices that are atss.') tlpAtsSupportsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 3, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex")) if mibBuilder.loadTexts: tlpAtsSupportsEntry.setStatus('current') if mibBuilder.loadTexts: tlpAtsSupportsEntry.setDescription('An entry containing supported details for a particular ats.') tlpAtsSupportsEnergywise = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 3, 1, 1), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsSupportsEnergywise.setStatus('current') if mibBuilder.loadTexts: tlpAtsSupportsEnergywise.setDescription('Indicates whether the ats supports Cisco EnergyWise.') tlpAtsSupportsRampShed = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 3, 1, 2), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsSupportsRampShed.setStatus('current') if mibBuilder.loadTexts: tlpAtsSupportsRampShed.setDescription('Indicates whether the ats supports ramping and shedding.') tlpAtsSupportsOutletGroup = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 3, 1, 3), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsSupportsOutletGroup.setStatus('current') if mibBuilder.loadTexts: tlpAtsSupportsOutletGroup.setDescription('Indicates whether the ats supports outlet groups.') tlpAtsSupportsOutletCurrentPower = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 3, 1, 4), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsSupportsOutletCurrentPower.setStatus('current') if mibBuilder.loadTexts: tlpAtsSupportsOutletCurrentPower.setDescription('Indicates whether the ats reports individual receptacle current and power measurements. Devices that do not support individual receptacle measurements will always return ERROR_NO_SUCH_NAME for tlpAtsOutletCurrent and tlpAtsOutletPower.') tlpAtsSupportsOutletVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 3, 1, 5), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsSupportsOutletVoltage.setStatus('current') if mibBuilder.loadTexts: tlpAtsSupportsOutletVoltage.setDescription('Indicates whether the ats reports individual receptacle voltage measurements. Devices that do not support individual receptacle measurements will always return ERROR_NO_SUCH_NAME for tlpAtsOutletVoltage.') tlpAtsDisplayTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 4), ) if mibBuilder.loadTexts: tlpAtsDisplayTable.setStatus('current') if mibBuilder.loadTexts: tlpAtsDisplayTable.setDescription('The display details of each ats in device table. This is a sparse dependent table, and will contain some subset of devices that are atss.') tlpAtsDisplayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 4, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex")) if mibBuilder.loadTexts: tlpAtsDisplayEntry.setStatus('current') if mibBuilder.loadTexts: tlpAtsDisplayEntry.setDescription('An entry containing display details for a particular ats.') tlpAtsDisplayScheme = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 4, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("schemeReverse", 0), ("schemeNormal", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsDisplayScheme.setStatus('current') if mibBuilder.loadTexts: tlpAtsDisplayScheme.setDescription('Indicates the display scheme of the LED display. The value schemeReverse(0) indicates the tricolor LED indicator uses an alternate pattern. The value schemeNormal(1) indicates the LED indicator uses the standard pattern. This value may not be supported on all models. If not supported, the value will always return schemeNormal(1).') tlpAtsDisplayOrientation = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 4, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("displayNormal", 0), ("displayReverse", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsDisplayOrientation.setStatus('current') if mibBuilder.loadTexts: tlpAtsDisplayOrientation.setDescription('Indicates the physical orientation of the LED display. The value displayNormal(0) indicates the display is right-side-up (normal). The value displayReverse(1) indicates the display is upside-down. This value may not be supported on all models. If not supported, the value will always return displayNormal(0).') tlpAtsDisplayAutoScroll = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 4, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("scrollDisabled", 0), ("scrollEnabled", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsDisplayAutoScroll.setStatus('current') if mibBuilder.loadTexts: tlpAtsDisplayAutoScroll.setDescription('Indicates whether the LED display automatically scrolls through displaying status values.') tlpAtsDisplayIntensity = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 4, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("intensity25", 1), ("intensity50", 2), ("intensity75", 3), ("intensity100", 4)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsDisplayIntensity.setStatus('current') if mibBuilder.loadTexts: tlpAtsDisplayIntensity.setDescription('Indicates the intensity, as a percentage, of the LED display. The value intensity100(4) indicates the display is at 100% intensity. The other values indicate the display is at a lesser intensity based upon the respective percentage denoted.') tlpAtsDisplayUnits = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 4, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("normal", 0), ("metric", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsDisplayUnits.setStatus('current') if mibBuilder.loadTexts: tlpAtsDisplayUnits.setDescription('Indicates the units of measurement displayed on the LED display. The value normal(0) indicates that a temperature value, for example, is displayed in degrees Farenheit. The value metric(1) indicates a temperature value is displayed in degrees Celsius.') tlpAtsDeviceTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 2, 1), ) if mibBuilder.loadTexts: tlpAtsDeviceTable.setStatus('current') if mibBuilder.loadTexts: tlpAtsDeviceTable.setDescription('The device details of each ats in device table. This is a sparse dependent table, and will contain some subset of devices that are atss.') tlpAtsDeviceEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 2, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex")) if mibBuilder.loadTexts: tlpAtsDeviceEntry.setStatus('current') if mibBuilder.loadTexts: tlpAtsDeviceEntry.setDescription('An entry containing device details for a particular ats.') tlpAtsDeviceMainLoadState = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 2, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("unknown", 0), ("off", 1), ("on", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsDeviceMainLoadState.setStatus('current') if mibBuilder.loadTexts: tlpAtsDeviceMainLoadState.setDescription('The current state of the main output of the device.') tlpAtsDeviceMainLoadControllable = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 2, 1, 1, 2), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsDeviceMainLoadControllable.setStatus('current') if mibBuilder.loadTexts: tlpAtsDeviceMainLoadControllable.setDescription('Indicates whether or not the main output is controllable, and whether the ups can be turned off and on.') tlpAtsDeviceMainLoadCommand = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 2, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("idle", 0), ("turnOff", 1), ("turnOn", 2), ("cycle", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsDeviceMainLoadCommand.setStatus('current') if mibBuilder.loadTexts: tlpAtsDeviceMainLoadCommand.setDescription('Reading this value will always return 0. Setting this value to turnOff(1) will turn off the main output of the ups. Setting this value to turnOn(2) will turn on the main output of the ups. Setting this value to cycle(3) will turn off the main output, then turn it back on.') tlpAtsDevicePowerOnDelay = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 2, 1, 1, 4), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsDevicePowerOnDelay.setStatus('current') if mibBuilder.loadTexts: tlpAtsDevicePowerOnDelay.setDescription('The configurable delay value, which sets the amount of additional time a given device will wait before it connects to a valid AC source. By default the delay value is set to 0. For devices with multiple AC input sources, this delay only applies to the primary input source.') tlpAtsDeviceTotalInputPowerRating = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 2, 1, 1, 5), Integer32()).setUnits('Watts').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsDeviceTotalInputPowerRating.setStatus('current') if mibBuilder.loadTexts: tlpAtsDeviceTotalInputPowerRating.setDescription('The total input power rating of all phases on the device. This value may not be supported on all models. If not supported, this value will always return ERROR_NO_SUCH_NAME.') tlpAtsDeviceTemperatureC = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 2, 1, 1, 6), Integer32()).setUnits('degrees Centigrade').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsDeviceTemperatureC.setStatus('current') if mibBuilder.loadTexts: tlpAtsDeviceTemperatureC.setDescription('The ambient temperature at or near the ats casing. Temperature measurements are not supported on all models. If not supported, this value will always return ERROR_NO_SUCH_NAME.') tlpAtsDeviceTemperatureF = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 2, 1, 1, 7), Integer32()).setUnits('degrees Farenheit').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsDeviceTemperatureF.setStatus('current') if mibBuilder.loadTexts: tlpAtsDeviceTemperatureF.setDescription('The ambient temperature at or near the ats casing. Temperature measurements are not supported on all models. If not supported, this value will always return ERROR_NO_SUCH_NAME.') tlpAtsDevicePhaseImbalance = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 2, 1, 1, 8), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 200))).setUnits('percent').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsDevicePhaseImbalance.setStatus('current') if mibBuilder.loadTexts: tlpAtsDevicePhaseImbalance.setDescription('The percentage of imbalance of the three phases. This value is in the range from 0% imbalance to 100% imbalance. The lower the value, the better balanced the phases are. If all load is on a single phase, the imbalance is defined as 100%.') tlpAtsDeviceOutputPowerTotal = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 2, 1, 1, 9), Unsigned32()).setUnits('Watts').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsDeviceOutputPowerTotal.setStatus('current') if mibBuilder.loadTexts: tlpAtsDeviceOutputPowerTotal.setDescription('The AC output total power for all circuits.') tlpAtsDeviceAggregatePowerFactor = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 2, 1, 1, 10), Unsigned32()).setUnits('0.1 Watts').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsDeviceAggregatePowerFactor.setStatus('current') if mibBuilder.loadTexts: tlpAtsDeviceAggregatePowerFactor.setDescription('The aggregrate power factor of all phases.') tlpAtsDeviceOutputCurrentPrecision = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 2, 1, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("none", 0), ("tenths", 1), ("hundredths", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsDeviceOutputCurrentPrecision.setStatus('current') if mibBuilder.loadTexts: tlpAtsDeviceOutputCurrentPrecision.setDescription('Output current is reported by tlpAtsOutputCurrent, tlpAtsOutputCurrentMin and tlpAtsOutputCurrentMax. These values are all reported in hundredths (0.01A), which accommodates all models; however, on any given device the actual precision may vary. This value describes the actual precision, which can be used as a divisor against the output current values to obtain the true output current measurement. For example, if tlpAtsOutputCurrent reports 530 and tlpAtsDeviceOutputCurrentPrecision is tenths(1), then the actual output current is 5.3.') tlpAtsDeviceGeneralFault = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 2, 1, 1, 12), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsDeviceGeneralFault.setStatus('current') if mibBuilder.loadTexts: tlpAtsDeviceGeneralFault.setDescription('Indicates whether or not the ats is in a system fault condition. When the ats is in such a fault condition, the condition can be cleared with tlpAtsControlResetGeneralFault.') tlpAtsInputTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1), ) if mibBuilder.loadTexts: tlpAtsInputTable.setStatus('current') if mibBuilder.loadTexts: tlpAtsInputTable.setDescription('The input details of each ats in device table. This is a sparse dependent table, and will contain the number of entries based upon the number of atss managed by the agent as reported by tlpAtsIdentNumAts.') tlpAtsInputEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex")) if mibBuilder.loadTexts: tlpAtsInputEntry.setStatus('current') if mibBuilder.loadTexts: tlpAtsInputEntry.setDescription('An entry containing information applicable to a particular primary input phase managed by this agent.') tlpAtsInputNominalVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsInputNominalVoltage.setStatus('current') if mibBuilder.loadTexts: tlpAtsInputNominalVoltage.setDescription('The nominal value of the input line voltage. This value may not be supported on all models. If not supported, this value will return ERROR_NO_SUCH_NAME.') tlpAtsInputNominalVoltagePhaseToPhase = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1, 1, 2), Unsigned32()).setUnits('0.1 Volt DC').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsInputNominalVoltagePhaseToPhase.setStatus('current') if mibBuilder.loadTexts: tlpAtsInputNominalVoltagePhaseToPhase.setDescription('The nominal value of the input line voltage as measured from phase to phase. This value may not be supported on all models. If not supported, this value will always return zero.') tlpAtsInputNominalVoltagePhaseToNeutral = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1, 1, 3), Unsigned32()).setUnits('0.1 Volt DC').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsInputNominalVoltagePhaseToNeutral.setStatus('current') if mibBuilder.loadTexts: tlpAtsInputNominalVoltagePhaseToNeutral.setDescription('The nominal value of the input line voltage as measured from phase to neutral. This value may not be supported on all models. If not supported, this value will always return zero.') tlpAtsInputBadTransferVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1, 1, 4), Unsigned32()).setUnits('0.1 Volts').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsInputBadTransferVoltage.setStatus('current') if mibBuilder.loadTexts: tlpAtsInputBadTransferVoltage.setDescription('The minimum line voltage allowed before the unit disconnects the AC input connection.') tlpAtsInputBadTransferVoltageLowerBound = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1, 1, 5), Unsigned32()).setUnits('Volts').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsInputBadTransferVoltageLowerBound.setStatus('current') if mibBuilder.loadTexts: tlpAtsInputBadTransferVoltageLowerBound.setDescription('The lower boundary value of tlpAtsInputBadTransferVoltage as dictated by the hardware of the unit.') tlpAtsInputBadTransferVoltageUpperBound = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1, 1, 6), Unsigned32()).setUnits('Volts').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsInputBadTransferVoltageUpperBound.setStatus('current') if mibBuilder.loadTexts: tlpAtsInputBadTransferVoltageUpperBound.setDescription('The upper boundary value of tlpAtsInputBadTransferVoltage as dictated by the hardware of the unit.') tlpAtsInputHighTransferVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1, 1, 7), Unsigned32()).setUnits('0.1 Volts').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsInputHighTransferVoltage.setStatus('current') if mibBuilder.loadTexts: tlpAtsInputHighTransferVoltage.setDescription('The maximum line voltage allowed before the unit disconnects the AC input connection.') tlpAtsInputHighTransferVoltageLowerBound = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1, 1, 8), Unsigned32()).setUnits('Volts').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsInputHighTransferVoltageLowerBound.setStatus('current') if mibBuilder.loadTexts: tlpAtsInputHighTransferVoltageLowerBound.setDescription('The lower boundary value of tlpAtsInputHighTransferVoltage as dictated by the hardware of the unit.') tlpAtsInputHighTransferVoltageUpperBound = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1, 1, 9), Unsigned32()).setUnits('Volts').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsInputHighTransferVoltageUpperBound.setStatus('current') if mibBuilder.loadTexts: tlpAtsInputHighTransferVoltageUpperBound.setDescription('The upper boundary value of tlpAtsInputHighTransferVoltage as dictated by the hardware of the unit.') tlpAtsInputFairVoltageThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1, 1, 10), Unsigned32()).setUnits('Volts').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsInputFairVoltageThreshold.setStatus('current') if mibBuilder.loadTexts: tlpAtsInputFairVoltageThreshold.setDescription('The voltage level at which the device will transition between sources.') tlpAtsInputBadVoltageThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1, 1, 11), Unsigned32()).setUnits('Volts').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsInputBadVoltageThreshold.setStatus('current') if mibBuilder.loadTexts: tlpAtsInputBadVoltageThreshold.setDescription('The minimum line voltage allowed before the device disconnects the AC input connection.') tlpAtsInputSourceAvailability = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("none", 0), ("inputSourceA", 1), ("inputSourceB", 2), ("inputSourceAB", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsInputSourceAvailability.setStatus('current') if mibBuilder.loadTexts: tlpAtsInputSourceAvailability.setDescription('The determination as to which of two AC input lines are available. The agent will return either inputSourceA(1) or inputSourceB(2) if only one line is available, or inputSourceAB(3) if both lines are available. The agent will never return none(0) since the device will be powered off if neither line is available.') tlpAtsInputSourceInUse = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("inputSourceA", 0), ("inputSourceB", 1)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsInputSourceInUse.setStatus('current') if mibBuilder.loadTexts: tlpAtsInputSourceInUse.setDescription('The determination as to which one of two AC input lines is in use. Not all devices support the reporting of which source is currently in use. If not supported, this value will always return ERROR_NO_SUCH_NAME.') tlpAtsInputSourceTransitionCount = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1, 1, 14), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsInputSourceTransitionCount.setStatus('current') if mibBuilder.loadTexts: tlpAtsInputSourceTransitionCount.setDescription('The number of times the device transitions between primary and secondary sources. Most devices are limied to 65533 transitions, after which the value will not increment. If not supported, this value will always return ERROR_NO_SUCH_NAME.') tlpAtsInputCurrentLimit = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1, 1, 15), Unsigned32()).setUnits('Amp DC').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsInputCurrentLimit.setStatus('current') if mibBuilder.loadTexts: tlpAtsInputCurrentLimit.setDescription('The capacity of each phase conductor in the ats limited by the AC input cord or any other potential limiting factors unique to a given unit. If not supported, this value will always return ERROR_NO_SUCH_NAME.') tlpAtsInputPhaseTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 2), ) if mibBuilder.loadTexts: tlpAtsInputPhaseTable.setStatus('current') if mibBuilder.loadTexts: tlpAtsInputPhaseTable.setDescription('The input phase details of each ats in device table. This is a sparse dependent table, and will contain the number of entries based upon the value of tlpAtsIdentNumInputs and tlpAtsIdentNumPhases per each device.') tlpAtsInputPhaseEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 2, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"), (0, "TRIPPLITE-PRODUCTS", "tlpAtsInputLineIndex"), (0, "TRIPPLITE-PRODUCTS", "tlpAtsInputPhaseIndex")) if mibBuilder.loadTexts: tlpAtsInputPhaseEntry.setStatus('current') if mibBuilder.loadTexts: tlpAtsInputPhaseEntry.setDescription('An entry containing information applicable to a particular primary input phase managed by this agent.') tlpAtsInputLineIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 2, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsInputLineIndex.setStatus('current') if mibBuilder.loadTexts: tlpAtsInputLineIndex.setDescription('The table row index for the input line on the ats.') tlpAtsInputPhaseIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 2, 1, 2), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsInputPhaseIndex.setStatus('current') if mibBuilder.loadTexts: tlpAtsInputPhaseIndex.setDescription('The table row index for the input phase for the input line.') tlpAtsInputPhaseType = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 2, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("phaseToNeutral", 0), ("phaseToPhase", 1)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsInputPhaseType.setStatus('current') if mibBuilder.loadTexts: tlpAtsInputPhaseType.setDescription('Denotes whether measurements are phase to neutral(0) or phase to phase(1).') tlpAtsInputPhaseFrequency = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 2, 1, 4), Unsigned32()).setUnits('0.1 Hertz').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsInputPhaseFrequency.setStatus('current') if mibBuilder.loadTexts: tlpAtsInputPhaseFrequency.setDescription('The present input frequency for a given phase.') tlpAtsInputPhaseVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 2, 1, 5), Unsigned32()).setUnits('0.1 Volt DC').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsInputPhaseVoltage.setStatus('current') if mibBuilder.loadTexts: tlpAtsInputPhaseVoltage.setDescription('The magnitude of the present input voltage for a given phase.') tlpAtsInputPhaseVoltageMin = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 2, 1, 6), Unsigned32()).setUnits('0.1 Volt DC').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsInputPhaseVoltageMin.setStatus('current') if mibBuilder.loadTexts: tlpAtsInputPhaseVoltageMin.setDescription('The minimum input voltage value since the last reset of this value for a given phase. If any value is written to either tlpAtsInputVoltageMin or tlpAtsInputVoltageMax, both will be reset to their appropriate minimum and maximum values.') tlpAtsInputPhaseVoltageMax = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 2, 1, 7), Unsigned32()).setUnits('0.1 Volt DC').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsInputPhaseVoltageMax.setStatus('current') if mibBuilder.loadTexts: tlpAtsInputPhaseVoltageMax.setDescription('The maximum input voltage value since the last reset of this value for a given phase. If any value is written to either tlpAtsInputVoltageMin or tlpAtsInputVoltageMax, both will be reset to their appropriate minimum and maximum values.') tlpAtsInputPhaseCurrent = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 2, 1, 8), Unsigned32()).setUnits('0.01 Amp DC').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsInputPhaseCurrent.setStatus('current') if mibBuilder.loadTexts: tlpAtsInputPhaseCurrent.setDescription('The magnitude of the present input current for a given phase.') tlpAtsOutputTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 2, 1), ) if mibBuilder.loadTexts: tlpAtsOutputTable.setStatus('current') if mibBuilder.loadTexts: tlpAtsOutputTable.setDescription('The output details of each ats in device table. This is a sparse dependent table, and will contain the number of entries based upon the value of tlpAtsIdentNumOutputs per each device.') tlpAtsOutputEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 2, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"), (0, "TRIPPLITE-PRODUCTS", "tlpAtsOutputIndex")) if mibBuilder.loadTexts: tlpAtsOutputEntry.setStatus('current') if mibBuilder.loadTexts: tlpAtsOutputEntry.setDescription('An entry containing output information applicable to a particular phase managed by this agent.') tlpAtsOutputIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 2, 1, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsOutputIndex.setStatus('current') if mibBuilder.loadTexts: tlpAtsOutputIndex.setDescription('The table row index for the ats phase.') tlpAtsOutputPhase = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 2, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("phase1", 1), ("phase2", 2), ("phase3", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsOutputPhase.setStatus('current') if mibBuilder.loadTexts: tlpAtsOutputPhase.setDescription('Indicates the phase associated with the output line.') tlpAtsOutputPhaseType = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 2, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("phaseToNeutral", 0), ("phaseToPhase", 1)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsOutputPhaseType.setStatus('current') if mibBuilder.loadTexts: tlpAtsOutputPhaseType.setDescription('Denotes whether measurements are phase to neutral(0) or phase to phase(1).') tlpAtsOutputVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 2, 1, 1, 4), Unsigned32()).setUnits('0.1 Volt DC').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsOutputVoltage.setStatus('current') if mibBuilder.loadTexts: tlpAtsOutputVoltage.setDescription('The magnitude of the present output voltage for a given output line.') tlpAtsOutputCurrent = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 2, 1, 1, 5), Unsigned32()).setUnits('0.01 Amp DC').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsOutputCurrent.setStatus('current') if mibBuilder.loadTexts: tlpAtsOutputCurrent.setDescription('The output current, in hundreths of amps, for a given phase.') tlpAtsOutputCurrentMin = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 2, 1, 1, 6), Unsigned32()).setUnits('0.01 Amp DC').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsOutputCurrentMin.setStatus('current') if mibBuilder.loadTexts: tlpAtsOutputCurrentMin.setDescription('The minimum current observed for a given phase since last reset.') tlpAtsOutputCurrentMax = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 2, 1, 1, 7), Unsigned32()).setUnits('0.01 Amp DC').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsOutputCurrentMax.setStatus('current') if mibBuilder.loadTexts: tlpAtsOutputCurrentMax.setDescription('The maximum current observed for a given phase since last reset.') tlpAtsOutputActivePower = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 2, 1, 1, 8), Unsigned32()).setUnits('Watts').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsOutputActivePower.setStatus('current') if mibBuilder.loadTexts: tlpAtsOutputActivePower.setDescription('The output power for a given phase.') tlpAtsOutputPowerFactor = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 2, 1, 1, 9), Unsigned32()).setUnits('0.01 percent').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsOutputPowerFactor.setStatus('current') if mibBuilder.loadTexts: tlpAtsOutputPowerFactor.setDescription('The output power factor, in hundreths of a percent, for a given phase.') tlpAtsOutputSource = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 2, 1, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("none", 0), ("normal", 1)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsOutputSource.setStatus('current') if mibBuilder.loadTexts: tlpAtsOutputSource.setDescription('The present source of output power. The enumeration none(0) indicates that there is no source of output power (and therefore no output power), for example, the system has opened the output breaker.') tlpAtsOutletTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1), ) if mibBuilder.loadTexts: tlpAtsOutletTable.setStatus('current') if mibBuilder.loadTexts: tlpAtsOutletTable.setDescription('The receptacle status details of each ats in device table. This is a sparse dependent table, and will contain the number of entries based upon the value of tlpAtsIdentNumOutlets per each device.') tlpAtsOutletEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"), (0, "TRIPPLITE-PRODUCTS", "tlpAtsOutletIndex")) if mibBuilder.loadTexts: tlpAtsOutletEntry.setStatus('current') if mibBuilder.loadTexts: tlpAtsOutletEntry.setDescription('An entry containing information applicable to a particular outlet managed by this agent.') tlpAtsOutletIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsOutletIndex.setStatus('current') if mibBuilder.loadTexts: tlpAtsOutletIndex.setDescription('The table row index for the ats outlet.') tlpAtsOutletName = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 2), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsOutletName.setStatus('current') if mibBuilder.loadTexts: tlpAtsOutletName.setDescription('A user-definable string identifying the name of the outlet.') tlpAtsOutletDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 3), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsOutletDescription.setStatus('current') if mibBuilder.loadTexts: tlpAtsOutletDescription.setDescription('A user-definable string identifying the device(s) connected to the given outlet.') tlpAtsOutletState = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("unknown", 0), ("off", 1), ("on", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsOutletState.setStatus('current') if mibBuilder.loadTexts: tlpAtsOutletState.setDescription('The current state of the outlet.') tlpAtsOutletControllable = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 5), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsOutletControllable.setStatus('current') if mibBuilder.loadTexts: tlpAtsOutletControllable.setDescription('Denotes whether this outlet is controllable.') tlpAtsOutletCommand = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("idle", 0), ("turnOff", 1), ("turnOn", 2), ("cycle", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsOutletCommand.setStatus('current') if mibBuilder.loadTexts: tlpAtsOutletCommand.setDescription('Reading this value will always return 0. Setting this value to turnOff(1) will turn off the outlet. Setting this value to turnOn(2) will turn on the outlet. Setting this value to cycle(3) will turn the outlet off, then turn it back on.') tlpAtsOutletVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 7), Unsigned32()).setUnits('0.1 Volt DC').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsOutletVoltage.setStatus('current') if mibBuilder.loadTexts: tlpAtsOutletVoltage.setDescription('The magnitude of the present output voltage for a given outlet. If the voltage measurement is not supported for an individual receptacle regardless whether device-wide or just for this receptacle, then this value will always return ERROR_NO_SUCH_NAME. Device-wide support for receptacle voltage measurements is denoted by tlpAtsSupportsOutletVoltage.') tlpAtsOutletCurrent = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 8), Unsigned32()).setUnits('0.01 RMS Amp').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsOutletCurrent.setStatus('current') if mibBuilder.loadTexts: tlpAtsOutletCurrent.setDescription('The present output current, in hundreths of amps, of a given outlet. If the current measurement is not supported for an individual receptacle regardless whether device-wide or just for this receptacle, then this value will always return ERROR_NO_SUCH_NAME. Device-wide support for receptacle current measurements is denoted by tlpAtsSupportsCurrentPower.') tlpAtsOutletPower = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 9), Unsigned32()).setUnits('Watts').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsOutletPower.setStatus('current') if mibBuilder.loadTexts: tlpAtsOutletPower.setDescription('The output power of a given outlet. If the power measurement is not supported for an individual receptacle regardless whether device-wide or just for this receptacle, then this value will always return ERROR_NO_SUCH_NAME. Device-wide support for receptacle power measurements is denoted by tlpAtsSupportsCurrentPower.') tlpAtsOutletRampAction = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("remainOff", 0), ("turnOnAfterDelay", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsOutletRampAction.setStatus('current') if mibBuilder.loadTexts: tlpAtsOutletRampAction.setDescription('The ramp action to take on a given outlet when powering on the device. If this receptacle is not controllable, as denoted by tlpAtsOutletControllable, then this value will always return ERROR_NO_SUCH_NAME.') tlpAtsOutletRampDelay = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 11), Integer32()).setUnits('seconds').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsOutletRampDelay.setStatus('current') if mibBuilder.loadTexts: tlpAtsOutletRampDelay.setDescription('The number of seconds to delay before powering on the given outlet. If this receptacle is not controllable, as denoted by tlpAtsOutletControllable, then this value will always return ERROR_NO_SUCH_NAME.') tlpAtsOutletShedAction = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("remainOn", 0), ("turnOffAfterDelay", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsOutletShedAction.setStatus('current') if mibBuilder.loadTexts: tlpAtsOutletShedAction.setDescription('The shed action to take on a given outlet when powering off the device. If this receptacle is not controllable, as denoted by tlpAtsOutletControllable, then this value will always return ERROR_NO_SUCH_NAME.') tlpAtsOutletShedDelay = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 13), Integer32()).setUnits('seconds').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsOutletShedDelay.setStatus('current') if mibBuilder.loadTexts: tlpAtsOutletShedDelay.setDescription('The number of seconds to delay before powering off the given outlet. If this receptacle is not controllable, as denoted by tlpAtsOutletControllable, then this value will always return ERROR_NO_SUCH_NAME.') tlpAtsOutletGroup = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 14), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsOutletGroup.setStatus('current') if mibBuilder.loadTexts: tlpAtsOutletGroup.setDescription('The tlpAtsOutletGroupIndex group index of the respective group to which the given outlet is assigned, or zero (0) if the given outlet is not grouped.') tlpAtsOutletBank = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 15), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsOutletBank.setStatus('current') if mibBuilder.loadTexts: tlpAtsOutletBank.setDescription('Indicates on which bank the given outlet is located.') tlpAtsOutletCircuit = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 16), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsOutletCircuit.setStatus('current') if mibBuilder.loadTexts: tlpAtsOutletCircuit.setDescription('Indicates on which circuit the given outlet is wired.') tlpAtsOutletPhase = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 17), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("unknown", 0), ("phase1", 1), ("phase2", 2), ("phase3", 3), ("phase1-2", 4), ("phase2-3", 5), ("phase3-1", 6)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsOutletPhase.setStatus('current') if mibBuilder.loadTexts: tlpAtsOutletPhase.setDescription('Indicates on which phase or phases the given outlet is associated. For single phase devices, this object will always return phase1(1). For 3-phase devices with outlets wired to a single phase, this object will return phase1(1), phase2(2) or phase3(3). For 3-phase devices with outlets wired to two phases, this object will return phase1-2(4) for phases 1 and 2, phase2-3(5) for phases 2 and 3, and phase3-1(6) for phases 3 and 1. Devices that do not report phase connections will return unknown(0).') tlpAtsOutletGroupTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 2), ) if mibBuilder.loadTexts: tlpAtsOutletGroupTable.setStatus('current') if mibBuilder.loadTexts: tlpAtsOutletGroupTable.setDescription('The receptacle grouping details of each ats in device table. This is a sparse dependent table, and will contain the number of entries based upon the value of tlpAtsIdentNumOutletGroups per each device.') tlpAtsOutletGroupEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 2, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"), (0, "TRIPPLITE-PRODUCTS", "tlpAtsOutletGroupIndex")) if mibBuilder.loadTexts: tlpAtsOutletGroupEntry.setStatus('current') if mibBuilder.loadTexts: tlpAtsOutletGroupEntry.setDescription('An entry containing information applicable to a particular outlet group managed by this agent.') tlpAtsOutletGroupIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 2, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsOutletGroupIndex.setStatus('current') if mibBuilder.loadTexts: tlpAtsOutletGroupIndex.setDescription('The table row index for the ats outlet group.') tlpAtsOutletGroupRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 2, 1, 2), RowStatus()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsOutletGroupRowStatus.setStatus('current') if mibBuilder.loadTexts: tlpAtsOutletGroupRowStatus.setDescription('Row status for the tlpAtsOutletGroupTable') tlpAtsOutletGroupName = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 2, 1, 3), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsOutletGroupName.setStatus('current') if mibBuilder.loadTexts: tlpAtsOutletGroupName.setDescription('The name of this outlet group.') tlpAtsOutletGroupDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 2, 1, 4), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsOutletGroupDescription.setStatus('current') if mibBuilder.loadTexts: tlpAtsOutletGroupDescription.setDescription('A description for this outlet group.') tlpAtsOutletGroupState = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 2, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("unknown", 0), ("off", 1), ("on", 2), ("mixed", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsOutletGroupState.setStatus('current') if mibBuilder.loadTexts: tlpAtsOutletGroupState.setDescription('The current state of the outlet group. This value will report off(1) if all outlets in the group are off, on(2) if all outlets in the group are on, mixed(3) if some outlets in the group are off and others are on, or unknown(0) if the state of the outlets cannot be determined.') tlpAtsOutletGroupCommand = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 2, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("turnOff", 1), ("turnOn", 2), ("cycle", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsOutletGroupCommand.setStatus('current') if mibBuilder.loadTexts: tlpAtsOutletGroupCommand.setDescription('Reading this value will always return 0. Setting this value to turnOff(1) will turn off every outlet associated with the group. Setting this value to turnOn(2) will turn on every outlet associated with the group. Setting this value to cycle(3) will turn off every outlet associated with the group, then turn each outlet back on.') tlpAtsCircuitTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 4, 1), ) if mibBuilder.loadTexts: tlpAtsCircuitTable.setStatus('current') if mibBuilder.loadTexts: tlpAtsCircuitTable.setDescription('A list of ats circuit table entries. The number of entries is given by the value of tlpAtsIdentNumCircuits.') tlpAtsCircuitEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 4, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"), (0, "TRIPPLITE-PRODUCTS", "tlpAtsCircuitIndex")) if mibBuilder.loadTexts: tlpAtsCircuitEntry.setStatus('current') if mibBuilder.loadTexts: tlpAtsCircuitEntry.setDescription('An entry containing information applicable to a particular circuit managed by this agent.') tlpAtsCircuitIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 4, 1, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsCircuitIndex.setStatus('current') if mibBuilder.loadTexts: tlpAtsCircuitIndex.setDescription('The table row index for the ats circuit.') tlpAtsCircuitPhase = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 4, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("unknown", 0), ("phase1", 1), ("phase2", 2), ("phase3", 3), ("phase1-2", 4), ("phase2-3", 5), ("phase3-1", 6)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsCircuitPhase.setStatus('current') if mibBuilder.loadTexts: tlpAtsCircuitPhase.setDescription('Indicates on which phase or phases the given circuit is wired. For single phase devices, this object will always return phase1(1). For 3-phase devices with outlets wired to a single phase, this object will return phase1(1), phase2(2) or phase3(3). For 3-phase devices with outlets wired to two phases, this object will return phase1-2(4) for phases 1 and 2, phase2-3(5) for phases 2 and 3, and phase3-1(6) for phases 3 and 1. Devices that do not report phase connections will return unknown(0).') tlpAtsCircuitInputVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 4, 1, 1, 3), Integer32()).setUnits('0.1 Volt DC').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsCircuitInputVoltage.setStatus('current') if mibBuilder.loadTexts: tlpAtsCircuitInputVoltage.setDescription('The input voltage for a circuit.') tlpAtsCircuitTotalCurrent = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 4, 1, 1, 4), Integer32()).setUnits('0.01 Amp DC').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsCircuitTotalCurrent.setStatus('current') if mibBuilder.loadTexts: tlpAtsCircuitTotalCurrent.setDescription('The total current for all receptacles in a given circuit.') tlpAtsCircuitCurrentLimit = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 4, 1, 1, 5), Integer32()).setUnits('0.01 Amp DC').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsCircuitCurrentLimit.setStatus('current') if mibBuilder.loadTexts: tlpAtsCircuitCurrentLimit.setDescription('The current capacity of a circuit in the system limited by the circuit breaker or wiring used in a given unit.') tlpAtsCircuitCurrentMin = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 4, 1, 1, 6), Integer32()).setUnits('0.01 Amp DC').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsCircuitCurrentMin.setStatus('current') if mibBuilder.loadTexts: tlpAtsCircuitCurrentMin.setDescription('The minimum total current for all receptacles in a given circuit since last reset.') tlpAtsCircuitCurrentMax = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 4, 1, 1, 7), Integer32()).setUnits('0.01 Amp DC').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsCircuitCurrentMax.setStatus('current') if mibBuilder.loadTexts: tlpAtsCircuitCurrentMax.setDescription('The maximum total current for all receptacles in a given circuit since last reset.') tlpAtsCircuitTotalPower = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 4, 1, 1, 8), Integer32()).setUnits('Watts').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsCircuitTotalPower.setStatus('current') if mibBuilder.loadTexts: tlpAtsCircuitTotalPower.setDescription('The total power for all receptacles in a given circuit.') tlpAtsCircuitPowerFactor = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 4, 1, 1, 9), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 200))).setUnits('percent').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsCircuitPowerFactor.setStatus('current') if mibBuilder.loadTexts: tlpAtsCircuitPowerFactor.setDescription('The power factor for all receptacles in a given circuit.') tlpAtsCircuitUtilization = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 4, 1, 1, 10), Unsigned32()).setUnits('0.01 %').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsCircuitUtilization.setStatus('current') if mibBuilder.loadTexts: tlpAtsCircuitUtilization.setDescription('The percentage of utilization of a given circuit. This is typically a calculation of tlpAtsCircuitTotalCurrent / tlpAtsCircuitCurrentLimit.') tlpAtsBreakerTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 5, 1), ) if mibBuilder.loadTexts: tlpAtsBreakerTable.setStatus('current') if mibBuilder.loadTexts: tlpAtsBreakerTable.setDescription('A list of ats bank breaker table entries. The number of entries is given by the value of tlpAtsIdentNumBreakers.') tlpAtsBreakerEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 5, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"), (0, "TRIPPLITE-PRODUCTS", "tlpAtsBreakerIndex")) if mibBuilder.loadTexts: tlpAtsBreakerEntry.setStatus('current') if mibBuilder.loadTexts: tlpAtsBreakerEntry.setDescription('An entry containing information applicable to a particular bank breaker managed by this agent.') tlpAtsBreakerIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 5, 1, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsBreakerIndex.setStatus('current') if mibBuilder.loadTexts: tlpAtsBreakerIndex.setDescription('The table row index for the ats bank breaker.') tlpAtsBreakerStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 5, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("open", 0), ("closed", 1), ("notInstalled", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsBreakerStatus.setStatus('current') if mibBuilder.loadTexts: tlpAtsBreakerStatus.setDescription('Indicates whether the bank breaker is open(0), closed(1) or not installed(2).') tlpAtsHeatsinkTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 6, 1), ) if mibBuilder.loadTexts: tlpAtsHeatsinkTable.setStatus('current') if mibBuilder.loadTexts: tlpAtsHeatsinkTable.setDescription('A list of ats heatsink thermistor table entries. The number of entries is given by the value of tlpAtsIdentNumHeatsinks.') tlpAtsHeatsinkEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 6, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"), (0, "TRIPPLITE-PRODUCTS", "tlpAtsHeatsinkIndex")) if mibBuilder.loadTexts: tlpAtsHeatsinkEntry.setStatus('current') if mibBuilder.loadTexts: tlpAtsHeatsinkEntry.setDescription('An entry containing information applicable to a particular heatsink thermistor managed by this agent.') tlpAtsHeatsinkIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 6, 1, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsHeatsinkIndex.setStatus('current') if mibBuilder.loadTexts: tlpAtsHeatsinkIndex.setDescription('The table row index for the ats heatsink thermistor.') tlpAtsHeatsinkStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 6, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("notAvailable", 0), ("available", 1)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsHeatsinkStatus.setStatus('current') if mibBuilder.loadTexts: tlpAtsHeatsinkStatus.setDescription('Indicates whether the heatsink thermistor is available. The entry will return notAvailable(0) if a thermistor is either non-existent or disconnected, or available(1) when connected.') tlpAtsHeatsinkTemperatureC = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 6, 1, 1, 3), Integer32()).setUnits('0.1 degrees Centigrade').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsHeatsinkTemperatureC.setStatus('current') if mibBuilder.loadTexts: tlpAtsHeatsinkTemperatureC.setDescription('The temperature at the heatsink termistor in tenths degrees Centigrade. Heatsink temperature measurements are not supported on all models. If not supported, this value will always return ERROR_NO_SUCH_NAME.') tlpAtsHeatsinkTemperatureF = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 6, 1, 1, 4), Integer32()).setUnits('0.1 degrees Farenheit').setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAtsHeatsinkTemperatureF.setStatus('current') if mibBuilder.loadTexts: tlpAtsHeatsinkTemperatureF.setDescription('The temperature at the heatsink termistor in tenths degrees Farenheit. Heatsink temperature measurements are not supported on all models. If not supported, this value will always return ERROR_NO_SUCH_NAME.') tlpAtsControlTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 4, 1), ) if mibBuilder.loadTexts: tlpAtsControlTable.setStatus('current') if mibBuilder.loadTexts: tlpAtsControlTable.setDescription('The actionable controls for each ats in device table. This is a sparse dependent table, and will contain some subset of devices that are atss.') tlpAtsControlEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 4, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex")) if mibBuilder.loadTexts: tlpAtsControlEntry.setStatus('current') if mibBuilder.loadTexts: tlpAtsControlEntry.setDescription('An entry containing controls for a particular ats.') tlpAtsControlRamp = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 4, 1, 1, 1), TruthValue()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsControlRamp.setStatus('current') if mibBuilder.loadTexts: tlpAtsControlRamp.setDescription('Set to TRUE to initiate the pre-designated ramp sequence on the ats.') tlpAtsControlShed = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 4, 1, 1, 2), TruthValue()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsControlShed.setStatus('current') if mibBuilder.loadTexts: tlpAtsControlShed.setDescription('Set to TRUE to initiate the pre-designated shed sequence on the ats.') tlpAtsControlAtsOn = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 4, 1, 1, 3), TruthValue()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsControlAtsOn.setStatus('current') if mibBuilder.loadTexts: tlpAtsControlAtsOn.setDescription('Set to TRUE to turn the ats on.') tlpAtsControlAtsOff = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 4, 1, 1, 4), TruthValue()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsControlAtsOff.setStatus('current') if mibBuilder.loadTexts: tlpAtsControlAtsOff.setDescription('Set to TRUE to turn the ats off.') tlpAtsControlAtsReboot = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 4, 1, 1, 5), TruthValue()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsControlAtsReboot.setStatus('current') if mibBuilder.loadTexts: tlpAtsControlAtsReboot.setDescription('Set to TRUE to reboot the ats.') tlpAtsControlResetGeneralFault = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 4, 1, 1, 6), TruthValue()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsControlResetGeneralFault.setStatus('current') if mibBuilder.loadTexts: tlpAtsControlResetGeneralFault.setDescription('Set to TRUE to reset the general fault alarm indicated by tlpAtsDeviceGeneralFault.') tlpAtsConfigTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 1), ) if mibBuilder.loadTexts: tlpAtsConfigTable.setStatus('current') if mibBuilder.loadTexts: tlpAtsConfigTable.setDescription('The configuration options of each ats in device table. This is a sparse dependent table, and will contain some subset of devices that are atss. Not all options are available on all atss.') tlpAtsConfigEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex")) if mibBuilder.loadTexts: tlpAtsConfigEntry.setStatus('current') if mibBuilder.loadTexts: tlpAtsConfigEntry.setDescription('An entry containing configuration options for a particular ats.') tlpAtsConfigInputVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 1, 1, 1), Unsigned32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsConfigInputVoltage.setStatus('current') if mibBuilder.loadTexts: tlpAtsConfigInputVoltage.setDescription('The nominal value of the input line voltage. This value may not be supported on all models. If not supported, this value will return ERROR_NO_SUCH_NAME. This value may not be writable on all models. If not writable, the value will be rejected and an appropriate error message will be returned.') tlpAtsConfigSourceSelect = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("inputSourceA", 1), ("inputSourceB", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsConfigSourceSelect.setStatus('current') if mibBuilder.loadTexts: tlpAtsConfigSourceSelect.setDescription('The determination as to which of two AC input lines is designated as the primary input source. The other is designated as the secondary input source. This value will always return inputSourceA(1) for devices with a single input source. Setting this value is supported only on selected models.') tlpAtsConfigSource1ReturnTime = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 1, 1, 3), Unsigned32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsConfigSource1ReturnTime.setStatus('current') if mibBuilder.loadTexts: tlpAtsConfigSource1ReturnTime.setDescription('The nominal time to delay a transition to Source 1, if it is the preferred source.') tlpAtsConfigSource2ReturnTime = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 1, 1, 4), Unsigned32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsConfigSource2ReturnTime.setStatus('current') if mibBuilder.loadTexts: tlpAtsConfigSource2ReturnTime.setDescription('The nominal time to delay a transition to Source 2, if it is the preferred source.') tlpAtsConfigAutoRampOnTransition = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsConfigAutoRampOnTransition.setStatus('current') if mibBuilder.loadTexts: tlpAtsConfigAutoRampOnTransition.setDescription('When enabled(1), the ats should perform its preconfigured ramp sequence when the input source transfers from its designated secondary source to its designated primary source. This value not supported on all ats devices. If not supported, then this value will always return ERROR_NO_SUCH_NAME.') tlpAtsConfigAutoShedOnTransition = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsConfigAutoShedOnTransition.setStatus('current') if mibBuilder.loadTexts: tlpAtsConfigAutoShedOnTransition.setDescription('When enabled(1), the ats should perform its preconfigured shed sequence when the input source transfers from its designated primary source to its designated secondary source. This value not supported on all ats devices. If not supported, then this value will always return ERROR_NO_SUCH_NAME.') tlpAtsConfigVoltageRangeTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 2), ) if mibBuilder.loadTexts: tlpAtsConfigVoltageRangeTable.setStatus('current') if mibBuilder.loadTexts: tlpAtsConfigVoltageRangeTable.setDescription('The voltage range options in this table is intended to configure the operating voltages of an ats. This is a sparse dependent table, and will contain some subset of devices that are atss. All voltage points defined in this table are listed in a specific order from high to low. All voltage points must satsify the conditions and ranges defined for each point. Any point violating any of the relative limits will be rejected. For optimal operation, it is recommended that tlpAtsConfigHighVoltageReset be set lower than tlpAtsConfigHighVoltageTransfer by a margin no less than 1% of tlpAtsConfigHighVoltageTransfer; and that tlpAtsConfigSource1TransferReset (tlpAtsConfigSource2TransferReset) be set higher than tlpAtsConfigSource1BrownoutSet (tlpAtsConfigSource2BrownoutSet) by a margin no less than 1% of tlpAtsConfigSource1BrownoutSet (tlpAtsConfigSource2BrownoutSet). *The upper limit of line voltage is tlpAtsInputHighTransferVoltageUpperBound. The lower limit of line voltage is tlpAtsInputBadTransferVoltageLowerBound. All minimum and maximum limits for each voltage point are all exlusive unless indicated otherwise.') tlpAtsConfigVoltageRangeEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 2, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex")) if mibBuilder.loadTexts: tlpAtsConfigVoltageRangeEntry.setStatus('current') if mibBuilder.loadTexts: tlpAtsConfigVoltageRangeEntry.setDescription('An entry containing voltage range configuration options for a particular ats.') tlpAtsConfigHighVoltageTransfer = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 2, 1, 1), Unsigned32()).setUnits('0.1 Volts').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsConfigHighVoltageTransfer.setStatus('current') if mibBuilder.loadTexts: tlpAtsConfigHighVoltageTransfer.setDescription('The maximum line voltage allowed before the unit disconnects the AC input connection. The maximum value allowed is dictated by tlpAtsInputHighTransferVoltageUpperBound (inclusively). The minimum value allowed is dictated by tlpAtsConfigHighVoltageReset. This value may not be configurable on all models. If not supported, this value will return ERROR_NO_SUCH_NAME.') tlpAtsConfigHighVoltageReset = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 2, 1, 2), Unsigned32()).setUnits('0.1 Volts').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsConfigHighVoltageReset.setStatus('current') if mibBuilder.loadTexts: tlpAtsConfigHighVoltageReset.setDescription('If a unit is disconnected due to over-voltage, the line voltage has to fall below this value before the unit re-connects the AC input connection. The maximum value allowed is dictated by tlpAtsConfigHighVoltageTransfer. The minimum value allowed is dictated by the greater of tlpAtsConfigSource1TransferReset and tlpAtsConfigSource2TransferReset. If not supported, this value will return ERROR_NO_SUCH_NAME.') tlpAtsConfigSource1TransferReset = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 2, 1, 3), Unsigned32()).setUnits('0.1 Volts').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsConfigSource1TransferReset.setStatus('current') if mibBuilder.loadTexts: tlpAtsConfigSource1TransferReset.setDescription('If input source 1 voltage level is above this value, a unit connected to source 2 will transition to source 1 (if it is the preferred source). The maximum value allowed is dictated by tlpAtsConfigHighVoltageReset. The minimum value allowed is dictated by tlpAtsConfigSource1BrownoutSet. If not supported, this value will return ERROR_NO_SUCH_NAME.') tlpAtsConfigSource1BrownoutSet = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 2, 1, 4), Unsigned32()).setUnits('0.1 Volts').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsConfigSource1BrownoutSet.setStatus('current') if mibBuilder.loadTexts: tlpAtsConfigSource1BrownoutSet.setDescription('This value dictates the voltage level below which source 1 goes into a brown out condition. The maximum value allowed is dictated by tlpAtsConfigSource1TransferReset. The minimum value allowed is dictated by tlpAtsConfigSource1TransferSet. If not supported, this value will return ERROR_NO_SUCH_NAME.') tlpAtsConfigSource1TransferSet = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 2, 1, 5), Unsigned32()).setUnits('0.1 Volts').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsConfigSource1TransferSet.setStatus('current') if mibBuilder.loadTexts: tlpAtsConfigSource1TransferSet.setDescription('If input source 1 voltage level falls below this value, a unit connected to source 1 will transition to source 2 (if it is in fair condition as denoted by tlpAtsConfigSource2TransferSet). The maximum value allowed is dictated by tlpAtsConfigSource1BrownoutSet. The minimum value allowed is dictated by tlpAtsConfigLowVoltageReset. If not supported, this value will return ERROR_NO_SUCH_NAME.') tlpAtsConfigSource2TransferReset = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 2, 1, 6), Unsigned32()).setUnits('0.1 Volts').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsConfigSource2TransferReset.setStatus('current') if mibBuilder.loadTexts: tlpAtsConfigSource2TransferReset.setDescription('If input source 2 voltage level is above this value, a unit connected to source 1 will transition to source 2 (if it is the preferred source). The maximum value allowed is dictated by tlpAtsConfigHighVoltageReset. The minimum value allowed is dictated by tlpAtsConfigSource2BrownoutSet. If not supported, this value will return ERROR_NO_SUCH_NAME.') tlpAtsConfigSource2BrownoutSet = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 2, 1, 7), Unsigned32()).setUnits('0.1 Volts').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsConfigSource2BrownoutSet.setStatus('current') if mibBuilder.loadTexts: tlpAtsConfigSource2BrownoutSet.setDescription('This value dictates the voltage level below which source 2 goes into a brown out condition. The maximum value allowed is dictated by tlpAtsConfigSource2TransferReset. The minimum value allowed is dictated by tlpAtsConfigSource2TransferSet. If not supported, this value will return ERROR_NO_SUCH_NAME.') tlpAtsConfigSource2TransferSet = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 2, 1, 8), Unsigned32()).setUnits('0.1 Volts').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsConfigSource2TransferSet.setStatus('current') if mibBuilder.loadTexts: tlpAtsConfigSource2TransferSet.setDescription('If input source 2 voltage level falls below this value, a unit connected to source 2 will transition to source 1 (if it is in fair condition as denoted by tlpAtsConfigSource1TransferSet). The maximum value allowed is dictated by tlpAtsConfigSource2BrownoutSet. The minimum value allowed is dictated by tlpAtsConfigLowVoltageReset. If not supported, this value will return ERROR_NO_SUCH_NAME.') tlpAtsConfigLowVoltageReset = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 2, 1, 9), Unsigned32()).setUnits('0.1 Volts').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsConfigLowVoltageReset.setStatus('current') if mibBuilder.loadTexts: tlpAtsConfigLowVoltageReset.setDescription('If a unit is disconnected due to under-voltage or is not powered up yet, the line voltage has to rise above this value before the unit gets connected to the AC input connection. The maximum value allowed is dictated by the lesser value of tlpAtsConfigSource1TransferSet and tlpAtsConfigSource2TransferSet. The minimum value allowed is dictated by tlpAtsConfigLowVoltageTransfer. If not supported, this value will return ERROR_NO_SUCH_NAME.') tlpAtsConfigLowVoltageTransfer = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 2, 1, 10), Unsigned32()).setUnits('0.1 Volts').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsConfigLowVoltageTransfer.setStatus('current') if mibBuilder.loadTexts: tlpAtsConfigLowVoltageTransfer.setDescription('The minimum line voltage allowed before the unit disconnects the AC input connection. The maximum value allowed is dictated by tlpAtsConfigLowVoltageReset. The minimum value allowed is dictated by tlpAtsInputBadTransferVoltageLowerBound (inclusively). If not supported, this value will return ERROR_NO_SUCH_NAME.') tlpAtsConfigVoltageRangeLimitsTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 3), ) if mibBuilder.loadTexts: tlpAtsConfigVoltageRangeLimitsTable.setStatus('current') if mibBuilder.loadTexts: tlpAtsConfigVoltageRangeLimitsTable.setDescription('The voltage range table, as documented by tlpAtsConfigVoltageRangeTable requires that all changes adhere with stack order, from high transfer voltage down to low transfer voltage. In addition to stack order, certain voltage range values have limits defining the absolute minimum and absolute maximum for such values. Any voltage value violating any respective limit defined herein will be rejected.') tlpAtsConfigVoltageRangeLimitsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 3, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex")) if mibBuilder.loadTexts: tlpAtsConfigVoltageRangeLimitsEntry.setStatus('current') if mibBuilder.loadTexts: tlpAtsConfigVoltageRangeLimitsEntry.setDescription('An entry containing voltage range limits configuration options for a particular ats.') tlpAtsConfigSourceBrownoutSetMinimum = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 3, 1, 1), Unsigned32()).setUnits('0.1 Volts').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsConfigSourceBrownoutSetMinimum.setStatus('current') if mibBuilder.loadTexts: tlpAtsConfigSourceBrownoutSetMinimum.setDescription('This value dictates the absolute lower limit by which tlpAtsConfigSource1BrownoutSet and tlpAtsConfigSource2BrownoutSet can be set. tlpAtsConfigSource1TransferSet and tlpAtsConfigSource2TransferSet, respectively, are also used when determining the lowest value a brownout value can be set at any given time. If not supported, this value will return ERROR_NO_SUCH_NAME.') tlpAtsConfigSourceBrownoutSetMaximum = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 3, 1, 2), Unsigned32()).setUnits('0.1 Volts').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsConfigSourceBrownoutSetMaximum.setStatus('current') if mibBuilder.loadTexts: tlpAtsConfigSourceBrownoutSetMaximum.setDescription('This value dictates the absolute upper limit by which tlpAtsConfigSource1BrownoutSet and tlpAtsConfigSource2BrownoutSet can be set. tlpAtsConfigSource1TransferReset and tlpAtsConfigSource2TransferReset, respectively, are also used when determining the greatest value a brownout value can be set at any given time. If not supported, this value will return ERROR_NO_SUCH_NAME.') tlpAtsConfigSourceTransferSetMinimum = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 3, 1, 3), Unsigned32()).setUnits('0.1 Volts').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsConfigSourceTransferSetMinimum.setStatus('current') if mibBuilder.loadTexts: tlpAtsConfigSourceTransferSetMinimum.setDescription('This value dictates the absolute lower limit by which tlpAtsConfigSource1TransferSet and tlpAtsConfigSource2TransferSet can be set. tlpAtsConfigLowVoltageReset is also used when determining the lowest value a transferset value can be set at any given time. If not supported, this value will return ERROR_NO_SUCH_NAME.') tlpAtsConfigSourceTransferSetMaximum = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 3, 1, 4), Unsigned32()).setUnits('0.1 Volts').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsConfigSourceTransferSetMaximum.setStatus('current') if mibBuilder.loadTexts: tlpAtsConfigSourceTransferSetMaximum.setDescription('This value dictates the absolute upper limit by which tlpAtsConfigSource1TransferSet and tlpAtsConfigSource2TransferSet can be set. tlpAtsConfigSource1BrownoutSet and tlpAtsConfigSource2BrownoutSet, respectively, are also used when determining the greatest value a transferset value can be set at any given time. If not supported, this value will return ERROR_NO_SUCH_NAME.') tlpAtsConfigThresholdTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 4), ) if mibBuilder.loadTexts: tlpAtsConfigThresholdTable.setStatus('current') if mibBuilder.loadTexts: tlpAtsConfigThresholdTable.setDescription('The configurable threshold options of each ats in device table. This is a sparse dependent table, and will contain some subset of devices that are atss. Not all options are available on all atss.') tlpAtsConfigThresholdEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 4, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex")) if mibBuilder.loadTexts: tlpAtsConfigThresholdEntry.setStatus('current') if mibBuilder.loadTexts: tlpAtsConfigThresholdEntry.setDescription('An entry containing configurable threshold options for a particular ats.') tlpAtsConfigOverCurrentThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 4, 1, 1), Unsigned32()).setUnits('0.1 Amps').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsConfigOverCurrentThreshold.setStatus('current') if mibBuilder.loadTexts: tlpAtsConfigOverCurrentThreshold.setDescription('The output current measurement at which an over current condition is reported. This value may not be supported on all models. If not supported, this value will return ERROR_NO_SUCH_NAME.') tlpAtsConfigOverTemperatureThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 4, 1, 2), Unsigned32()).setUnits('0.1 Centigrade').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsConfigOverTemperatureThreshold.setStatus('current') if mibBuilder.loadTexts: tlpAtsConfigOverTemperatureThreshold.setDescription('The system temperature at which an over temperature condition is reported. This value may not be supported on all models. If not supported, this value will return ERROR_NO_SUCH_NAME.') tlpAtsConfigOverVoltageThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 4, 1, 3), Unsigned32()).setUnits('0.1 Volts').setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsConfigOverVoltageThreshold.setStatus('current') if mibBuilder.loadTexts: tlpAtsConfigOverVoltageThreshold.setDescription('The input voltage measurement at which an over voltage condition is reported. This value may not be supported on all models. If not supported, this value will return ERROR_NO_SUCH_NAME.') tlpAtsConfigOverLoadThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 4, 1, 4), Unsigned32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAtsConfigOverLoadThreshold.setStatus('current') if mibBuilder.loadTexts: tlpAtsConfigOverLoadThreshold.setDescription('The system load at which an overload condition is reported. This value may not be supported on all models. If not supported, this value will return ERROR_NO_SUCH_NAME.') tlpCoolingIdentNumCooling = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 5, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpCoolingIdentNumCooling.setStatus('current') if mibBuilder.loadTexts: tlpCoolingIdentNumCooling.setDescription('The number of cooling devices that this agent is currently managing.') tlpKvmIdentNumKvm = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 6, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpKvmIdentNumKvm.setStatus('current') if mibBuilder.loadTexts: tlpKvmIdentNumKvm.setDescription('The number of kvm devices that this agent is currently managing.') tlpRackTrackIdentNumRackTrack = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 7, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpRackTrackIdentNumRackTrack.setStatus('current') if mibBuilder.loadTexts: tlpRackTrackIdentNumRackTrack.setDescription('The number of rack track devices that this agent is currently managing.') tlpSwitchIdentNumSwitch = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 8, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpSwitchIdentNumSwitch.setStatus('current') if mibBuilder.loadTexts: tlpSwitchIdentNumSwitch.setDescription('The number of switch devices that this agent is currently managing.') tlpAgentType = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8))).clone(namedValues=NamedValues(("unknown", 0), ("pal", 1), ("pansa", 2), ("delta", 3), ("sinetica", 4), ("netos6", 5), ("netos7", 6), ("panms", 7), ("nmc5", 8)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAgentType.setStatus('current') if mibBuilder.loadTexts: tlpAgentType.setDescription('The type of PowerAlert engine providing this data.') tlpAgentVersion = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAgentVersion.setStatus('current') if mibBuilder.loadTexts: tlpAgentVersion.setDescription('The version of the agent software.') tlpAgentDriverVersion = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 1, 3), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAgentDriverVersion.setStatus('current') if mibBuilder.loadTexts: tlpAgentDriverVersion.setDescription('The driver version of the agent software.') tlpAgentMAC = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 1, 4), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAgentMAC.setStatus('current') if mibBuilder.loadTexts: tlpAgentMAC.setDescription('The MAC Address of the agent.') tlpAgentSerialNum = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 1, 5), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAgentSerialNum.setStatus('current') if mibBuilder.loadTexts: tlpAgentSerialNum.setDescription('Serial number of the web card providing the agent data. This value is only supported by a web card agent. PowerAlert for PC (PAL) agents do not support this value and will return ERROR_NO_SUCH_NAME.') tlpAgentUuid = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 1, 6), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAgentUuid.setStatus('current') if mibBuilder.loadTexts: tlpAgentUuid.setDescription('Universally unique identifier for this host in the form 8-4-4-4-12 for a total of 36 characters (32 alphanumeric characters and four hyphens). For example: 550e8400-e29b-41d4-a716-446655440000.') tlpAgentAttributesSupports = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 1)) tlpAgentAttributesSupportsHTTP = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 1, 1), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAgentAttributesSupportsHTTP.setStatus('current') if mibBuilder.loadTexts: tlpAgentAttributesSupportsHTTP.setDescription('Indicates whether the agent supports HTTP connections.') tlpAgentAttributesSupportsHTTPS = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 1, 2), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAgentAttributesSupportsHTTPS.setStatus('current') if mibBuilder.loadTexts: tlpAgentAttributesSupportsHTTPS.setDescription('Indicates whether the agent supports HTTPS connections.') tlpAgentAttributesSupportsFTP = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 1, 3), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAgentAttributesSupportsFTP.setStatus('current') if mibBuilder.loadTexts: tlpAgentAttributesSupportsFTP.setDescription('Indicates whether the agent supports FTP connections.') tlpAgentAttributesSupportsTelnetMenu = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 1, 4), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAgentAttributesSupportsTelnetMenu.setStatus('current') if mibBuilder.loadTexts: tlpAgentAttributesSupportsTelnetMenu.setDescription('Indicates whether the agent supports Telnet menu connections.') tlpAgentAttributesSupportsTelnetCLI = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 1, 5), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAgentAttributesSupportsTelnetCLI.setStatus('current') if mibBuilder.loadTexts: tlpAgentAttributesSupportsTelnetCLI.setDescription('Indicates whether the agent supports Telnet CLI connections.') tlpAgentAttributesSupportsSSHMenu = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 1, 6), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAgentAttributesSupportsSSHMenu.setStatus('current') if mibBuilder.loadTexts: tlpAgentAttributesSupportsSSHMenu.setDescription('Indicates whether the agent supports SSH menu connections.') tlpAgentAttributesSupportsSSHCLI = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 1, 7), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAgentAttributesSupportsSSHCLI.setStatus('current') if mibBuilder.loadTexts: tlpAgentAttributesSupportsSSHCLI.setDescription('Indicates whether the agent supports SSH CLI connections.') tlpAgentAttributesSupportsSNMP = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 1, 8), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAgentAttributesSupportsSNMP.setStatus('current') if mibBuilder.loadTexts: tlpAgentAttributesSupportsSNMP.setDescription('Indicates whether the agent supports SNMP connections.') tlpAgentAttributesSupportsSNMPTrap = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 1, 9), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAgentAttributesSupportsSNMPTrap.setStatus('current') if mibBuilder.loadTexts: tlpAgentAttributesSupportsSNMPTrap.setDescription('Indicates whether the agent supports listening for SNMP traps. This is only applicable for network monitoring applications, PowerAlert Shutdown Agent for an example, that connect to a web card or PowerAlert Local and listen for outbound traps. As such, this value is not supported and will always return 2(false) for a web card or PowerAlert Local.') tlpAgentAttributesAutostart = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 2)) tlpAgentAttributesAutostartHTTP = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 2, 1), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAgentAttributesAutostartHTTP.setStatus('current') if mibBuilder.loadTexts: tlpAgentAttributesAutostartHTTP.setDescription('Indicates whether the agent autostarts HTTP services.') tlpAgentAttributesAutostartHTTPS = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 2, 2), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAgentAttributesAutostartHTTPS.setStatus('current') if mibBuilder.loadTexts: tlpAgentAttributesAutostartHTTPS.setDescription('Indicates whether the agent autostarts HTTPS services.') tlpAgentAttributesAutostartFTP = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 2, 3), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAgentAttributesAutostartFTP.setStatus('current') if mibBuilder.loadTexts: tlpAgentAttributesAutostartFTP.setDescription('Indicates whether the agent autostarts FTP services.') tlpAgentAttributesAutostartTelnetMenu = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 2, 4), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAgentAttributesAutostartTelnetMenu.setStatus('current') if mibBuilder.loadTexts: tlpAgentAttributesAutostartTelnetMenu.setDescription('Indicates whether the agent autostarts Telnet menu services.') tlpAgentAttributesAutostartTelnetCLI = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 2, 5), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAgentAttributesAutostartTelnetCLI.setStatus('current') if mibBuilder.loadTexts: tlpAgentAttributesAutostartTelnetCLI.setDescription('Indicates whether the agent autostarts Telnet CLI services.') tlpAgentAttributesAutostartSSHMenu = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 2, 6), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAgentAttributesAutostartSSHMenu.setStatus('current') if mibBuilder.loadTexts: tlpAgentAttributesAutostartSSHMenu.setDescription('Indicates whether the agent autostarts SSH menu services.') tlpAgentAttributesAutostartSSHCLI = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 2, 7), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAgentAttributesAutostartSSHCLI.setStatus('current') if mibBuilder.loadTexts: tlpAgentAttributesAutostartSSHCLI.setDescription('Indicates whether the agent autostarts SSH CLI services.') tlpAgentAttributesAutostartSNMP = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 2, 8), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAgentAttributesAutostartSNMP.setStatus('current') if mibBuilder.loadTexts: tlpAgentAttributesAutostartSNMP.setDescription('Indicates whether the agent autostarts SNMP services.') tlpAgentAttributesSnmp = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 3)) tlpAgentAttributesSNMPv1Enabled = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 3, 1), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAgentAttributesSNMPv1Enabled.setStatus('current') if mibBuilder.loadTexts: tlpAgentAttributesSNMPv1Enabled.setDescription('Indicates whether the agent will allow SNMPv1 connections.') tlpAgentAttributesSNMPv2cEnabled = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 3, 2), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAgentAttributesSNMPv2cEnabled.setStatus('current') if mibBuilder.loadTexts: tlpAgentAttributesSNMPv2cEnabled.setDescription('Indicates whether the agent will allow SNMPv2c connections.') tlpAgentAttributesSNMPv3Enabled = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 3, 3), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAgentAttributesSNMPv3Enabled.setStatus('current') if mibBuilder.loadTexts: tlpAgentAttributesSNMPv3Enabled.setDescription('Indicates whether the agent will allow SNMPv3 connections.') tlpAgentAttributesPorts = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 4)) tlpAgentAttributesHTTPPort = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 4, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAgentAttributesHTTPPort.setStatus('current') if mibBuilder.loadTexts: tlpAgentAttributesHTTPPort.setDescription('The port used for HTTP communications.') tlpAgentAttributesHTTPSPort = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 4, 2), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAgentAttributesHTTPSPort.setStatus('current') if mibBuilder.loadTexts: tlpAgentAttributesHTTPSPort.setDescription('The port used for HTTPS communications.') tlpAgentAttributesFTPPort = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 4, 3), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAgentAttributesFTPPort.setStatus('current') if mibBuilder.loadTexts: tlpAgentAttributesFTPPort.setDescription('The port used for FTP communications.') tlpAgentAttributesTelnetMenuPort = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 4, 4), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAgentAttributesTelnetMenuPort.setStatus('current') if mibBuilder.loadTexts: tlpAgentAttributesTelnetMenuPort.setDescription('The port used for Telnet Menu communications.') tlpAgentAttributesTelnetCLIPort = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 4, 5), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAgentAttributesTelnetCLIPort.setStatus('current') if mibBuilder.loadTexts: tlpAgentAttributesTelnetCLIPort.setDescription('The port used for Telnet CLI communications.') tlpAgentAttributesSSHMenuPort = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 4, 6), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAgentAttributesSSHMenuPort.setStatus('current') if mibBuilder.loadTexts: tlpAgentAttributesSSHMenuPort.setDescription('The port used for SSH Menu communications.') tlpAgentAttributesSSHCLIPort = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 4, 7), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAgentAttributesSSHCLIPort.setStatus('current') if mibBuilder.loadTexts: tlpAgentAttributesSSHCLIPort.setDescription('The port used for SSH CLI communications.') tlpAgentAttributesSNMPPort = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 4, 8), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAgentAttributesSNMPPort.setStatus('current') if mibBuilder.loadTexts: tlpAgentAttributesSNMPPort.setDescription('The port used for SNMP communications.') tlpAgentAttributesSNMPTrapPort = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 4, 9), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAgentAttributesSNMPTrapPort.setStatus('current') if mibBuilder.loadTexts: tlpAgentAttributesSNMPTrapPort.setDescription('The port used for SNMP trap and notifications.') tlpAgentConfigRemoteRegistration = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 2, 1, 1), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAgentConfigRemoteRegistration.setStatus('current') if mibBuilder.loadTexts: tlpAgentConfigRemoteRegistration.setDescription("Registers an SNMP contact's IP address and the port on which the contact is listening for SNMP traps. Setting this value is used to CREATE a table entry in a non-standard way. Getting this value will return a string INADDR_ANY and any port number. The port number should always be included. When unregistering an SNMP contact, the requester's IP address should be provided with a port number of 0. When setting or unsetting this OID, the IP address string should never be 0 nor should it be empty. The registration uses its default community string to register each contact. To use a community other than the default, then it must be appended to the end of the string delimited with a comma. The address should be of the format 0.0.0.0:00000 for IPv4. If IPv6 is supported, use the bracket-enclosed format given in IETF RFC 2732 Section 2, with the following examples: [FEDC:BA98:7654:3210:FEDC:BA98:7654:3210]:80 [1080:0:0:0:8:800:200C:417A]:162 [3ffe:2a00:100:7031::1]:162 [1080::8:800:200C:417A]:162,myCommunity [::192.9.5.5]:162,myCommunity [::FFFF:129.144.52.38]:80 [2010:836B:4179::836B:4179]:162") tlpAgentConfigCurrentTime = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 2, 1, 2), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAgentConfigCurrentTime.setStatus('current') if mibBuilder.loadTexts: tlpAgentConfigCurrentTime.setDescription('The current date and time of the system.') tlpAgentNumEmailContacts = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAgentNumEmailContacts.setStatus('current') if mibBuilder.loadTexts: tlpAgentNumEmailContacts.setDescription('The number of email contacts currently defined in the agent.') tlpAgentEmailContactTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 1, 2), ) if mibBuilder.loadTexts: tlpAgentEmailContactTable.setStatus('current') if mibBuilder.loadTexts: tlpAgentEmailContactTable.setDescription('A list of email contact entries. The number of entries is given by the value of tlpAgentNumEmailContacts.') tlpAgentEmailContactEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 1, 2, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpAgentEmailContactIndex")) if mibBuilder.loadTexts: tlpAgentEmailContactEntry.setStatus('current') if mibBuilder.loadTexts: tlpAgentEmailContactEntry.setDescription('An entry containing the details of an email contact.') tlpAgentEmailContactIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 1, 2, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAgentEmailContactIndex.setStatus('current') if mibBuilder.loadTexts: tlpAgentEmailContactIndex.setDescription('The table row index for the email contact.') tlpAgentEmailContactRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 1, 2, 1, 2), RowStatus()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAgentEmailContactRowStatus.setStatus('current') if mibBuilder.loadTexts: tlpAgentEmailContactRowStatus.setDescription('Row status for the tlpAgentEmailContactTable.') tlpAgentEmailContactName = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 1, 2, 1, 3), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAgentEmailContactName.setStatus('current') if mibBuilder.loadTexts: tlpAgentEmailContactName.setDescription('The name of the email contact.') tlpAgentEmailContactAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 1, 2, 1, 4), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAgentEmailContactAddress.setStatus('current') if mibBuilder.loadTexts: tlpAgentEmailContactAddress.setDescription('The address of the email contact.') tlpAgentNumSnmpContacts = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 2, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAgentNumSnmpContacts.setStatus('current') if mibBuilder.loadTexts: tlpAgentNumSnmpContacts.setDescription('The number of SNMP contacts currently defined in the agent.') tlpAgentSnmpContactTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 2, 2), ) if mibBuilder.loadTexts: tlpAgentSnmpContactTable.setStatus('current') if mibBuilder.loadTexts: tlpAgentSnmpContactTable.setDescription('A list of SNMP contact entries. The number of entries is given by the value of tlpAgentNumSnmpContacts.') tlpAgentSnmpContactEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 2, 2, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpAgentSnmpContactIndex")) if mibBuilder.loadTexts: tlpAgentSnmpContactEntry.setStatus('current') if mibBuilder.loadTexts: tlpAgentSnmpContactEntry.setDescription('An entry containing the details of an SNMP contact.') tlpAgentSnmpContactIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 2, 2, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAgentSnmpContactIndex.setStatus('current') if mibBuilder.loadTexts: tlpAgentSnmpContactIndex.setDescription('The table row index for the SNMP contact.') tlpAgentSnmpContactRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 2, 2, 1, 2), RowStatus()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAgentSnmpContactRowStatus.setStatus('current') if mibBuilder.loadTexts: tlpAgentSnmpContactRowStatus.setDescription('Row status for the tlpAgentSnmpContactTable.') tlpAgentSnmpContactName = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 2, 2, 1, 3), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAgentSnmpContactName.setStatus('current') if mibBuilder.loadTexts: tlpAgentSnmpContactName.setDescription('The name of the SNMP contact.') tlpAgentSnmpContactIpAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 2, 2, 1, 4), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAgentSnmpContactIpAddress.setStatus('current') if mibBuilder.loadTexts: tlpAgentSnmpContactIpAddress.setDescription('The IP address of the SNMP contact.') tlpAgentSnmpContactPort = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 2, 2, 1, 5), Unsigned32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAgentSnmpContactPort.setStatus('current') if mibBuilder.loadTexts: tlpAgentSnmpContactPort.setDescription('The port of the SNMP contact.') tlpAgentSnmpContactSnmpVersion = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 2, 2, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("snmpv1", 1), ("snmpv2c", 2), ("snmpv3", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAgentSnmpContactSnmpVersion.setStatus('current') if mibBuilder.loadTexts: tlpAgentSnmpContactSnmpVersion.setDescription('The SNMP contact version to use for sending traps.') tlpAgentSnmpContactSecurityName = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 2, 2, 1, 7), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAgentSnmpContactSecurityName.setStatus('current') if mibBuilder.loadTexts: tlpAgentSnmpContactSecurityName.setDescription('The security name for the SNMP contact.') tlpAgentSnmpContactPrivPassword = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 2, 2, 1, 8), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAgentSnmpContactPrivPassword.setStatus('current') if mibBuilder.loadTexts: tlpAgentSnmpContactPrivPassword.setDescription('The privacy password to use for sending V3 traps to the SNMP contact.') tlpAgentSnmpContactAuthPassword = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 2, 2, 1, 9), DisplayString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAgentSnmpContactAuthPassword.setStatus('current') if mibBuilder.loadTexts: tlpAgentSnmpContactAuthPassword.setDescription('The authentication password to use for sending V3 traps to the SNMP contact.') tlpAlarmsPresent = MibScalar((1, 3, 6, 1, 4, 1, 850, 1, 3, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAlarmsPresent.setStatus('current') if mibBuilder.loadTexts: tlpAlarmsPresent.setDescription('The present number of active alarm conditions.') tlpAlarmTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 3, 2), ) if mibBuilder.loadTexts: tlpAlarmTable.setStatus('current') if mibBuilder.loadTexts: tlpAlarmTable.setDescription('A list of alarm conditions for all devices managed by this agent. This table contains zero, one, or many rows at any moment, depending upon the number of alarm conditions in effect or conditions not acnowledged. The agent creates a row in the table each time a condition is detected and deletes that row when that condition no longer pertains (becomes inactive and is acknowledged). The agent creates the first row with tlpAlarmId equal to 1, and increments the value of tlpAlarmId each time a new row is created, wrapping to the first free value greater than or equal to 1 when the maximum value of tlpAlarmId would otherwise be exceeded. Consequently, after multiple operations, the table may become sparse (e.g., containing entries for rows 95, 100, 101, and 203) and the entries should not be assumed to be in chronological order because tlpAlarmId might have wrapped. The number of rows in the table at any given time is reflected by the value of tlpAlarmsPresent.') tlpAlarmEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 3, 2, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpAlarmId")) if mibBuilder.loadTexts: tlpAlarmEntry.setStatus('current') if mibBuilder.loadTexts: tlpAlarmEntry.setDescription('An entry containing information application to a particular alarm.') tlpAlarmId = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 3, 2, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAlarmId.setStatus('current') if mibBuilder.loadTexts: tlpAlarmId.setDescription('A unique identifier for an alarm condition. This value will remain constant for the duration of the alarm condition.') tlpAlarmDescr = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 3, 2, 1, 2), ObjectIdentifier()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAlarmDescr.setStatus('current') if mibBuilder.loadTexts: tlpAlarmDescr.setDescription('A reference of the alarm description object. The object referenced should not be accessbile, but rather be used to provide a unique description for the alarm condition. The object referenced will be a well known alarm object associated with the device on which the alarm condition is active.') tlpAlarmTime = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 3, 2, 1, 3), TimeStamp()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAlarmTime.setStatus('current') if mibBuilder.loadTexts: tlpAlarmTime.setDescription('The value of sysUpTime when the alarm condition was detected. If the alarm condition was detected at the time of agent startup and presumably existed before agent startup, the value of tlpAlarmsTime shall equal 0.') tlpAlarmTableRef = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 3, 2, 1, 4), ObjectIdentifier()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAlarmTableRef.setStatus('current') if mibBuilder.loadTexts: tlpAlarmTableRef.setDescription('This value references the OID of a table object applicable to the alarm condition. This, in conjunction with the table row as defined by tlpAlarmTableRowRef, specifies the object/row within this table to which the alarm condition applies. Example 1 -- The following sample values will be returned for a UPS on battery: tlpAlarmId 28 tlpAlarmDescr tlpUpsAlarmOnBattery tlpAlarmTime 12345678 tlpAlarmTableRef tlpDeviceTable tlpAlarmTableRowRef tlpDeviceIndex.2 tlpAlarmDetail On Battery tlpAlarmType warning tlpAlarmState active tlpAlarmAcknowledged notAcknowledged In the above example, tlpAlarmTableRef references the device table and tlpAlarmTableRowRef references the 2nd managed device in that table. Example 2 -- The following sample values will be returned for a PDU with a load turned off: tlpAlarmId 46 tlpAlarmDescr tlpPduAlarmLoadOff tlpAlarmTime 12345678 tlpAlarmTableRef tlpPduOutletTable tlpAlarmTableRowRef tlpOutletIndex.1.4 tlpAlarmDetail Load Off tlpAlarmType warning tlpAlarmState active tlpAlarmAcknowledged acknowledged In the above example, tlpAlarmTableRef references the pdu outlet table and tlpAlarmTableRowRef references the 4th outlet on the 1st managed device.') tlpAlarmTableRowRef = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 3, 2, 1, 5), ObjectIdentifier()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAlarmTableRowRef.setStatus('current') if mibBuilder.loadTexts: tlpAlarmTableRowRef.setDescription('This value is used in conjunction with tlpAlarmTableRef to define the object associated with this alarm condition. See the description of tlpAlarmTableRef for more information.') tlpAlarmDetail = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 3, 2, 1, 6), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAlarmDetail.setStatus('current') if mibBuilder.loadTexts: tlpAlarmDetail.setDescription('A textual description of the alarm condition.') tlpAlarmType = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 3, 2, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("critical", 1), ("warning", 2), ("info", 3), ("status", 4), ("offline", 5), ("custom", 6)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAlarmType.setStatus('current') if mibBuilder.loadTexts: tlpAlarmType.setDescription('The category/group of this alarm.') tlpAlarmState = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 3, 2, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("active", 1), ("inactive", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAlarmState.setStatus('current') if mibBuilder.loadTexts: tlpAlarmState.setDescription('The current state of this alarm condition. An active(1) alarm is a condition that currently exists. An inactive(2) alarm is a condition that no longer exists because the alarm either cleared or was resolved. Each alarm condition must be cleared and acknowledged before it is removed from this table (see tlpAlarmAcknowledged).') tlpAlarmAcknowledged = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 3, 2, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("notAcknowledged", 1), ("acknowledged", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAlarmAcknowledged.setStatus('current') if mibBuilder.loadTexts: tlpAlarmAcknowledged.setDescription('Denotes whether the alarm condition has been acknowledged. The agent will return notAcknowledged(1) if the condition has not been acknowledged, or acknowledged(2) when acknowledged. Writing the value acknowledged(2) for an alarm acknowledges the alarm condition. Each alarm condition must be cleared and acknowledged before it is removed from this table; therefore, even if acknowledged, the alarm will remain in this table until the alarm becomes inactive as denoted by tlpAlarmState.') tlpAlarmCommunicationsLost = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 2, 1)) if mibBuilder.loadTexts: tlpAlarmCommunicationsLost.setStatus('current') if mibBuilder.loadTexts: tlpAlarmCommunicationsLost.setDescription('A problem has been encountered in the communications between the agent and the device.') tlpAlarmUserDefined = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 2, 2)) tlpAlarmUserDefined01 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 2, 2, 1)) if mibBuilder.loadTexts: tlpAlarmUserDefined01.setStatus('current') if mibBuilder.loadTexts: tlpAlarmUserDefined01.setDescription('User-defined event 1 is in alarm.') tlpAlarmUserDefined02 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 2, 2, 2)) if mibBuilder.loadTexts: tlpAlarmUserDefined02.setStatus('current') if mibBuilder.loadTexts: tlpAlarmUserDefined02.setDescription('User-defined event 2 is in alarm.') tlpAlarmUserDefined03 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 2, 2, 3)) if mibBuilder.loadTexts: tlpAlarmUserDefined03.setStatus('current') if mibBuilder.loadTexts: tlpAlarmUserDefined03.setDescription('User-defined event 3 is in alarm.') tlpAlarmUserDefined04 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 2, 2, 4)) if mibBuilder.loadTexts: tlpAlarmUserDefined04.setStatus('current') if mibBuilder.loadTexts: tlpAlarmUserDefined04.setDescription('User-defined event 4 is in alarm.') tlpAlarmUserDefined05 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 2, 2, 5)) if mibBuilder.loadTexts: tlpAlarmUserDefined05.setStatus('current') if mibBuilder.loadTexts: tlpAlarmUserDefined05.setDescription('User-defined event 5 is in alarm.') tlpAlarmUserDefined06 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 2, 2, 6)) if mibBuilder.loadTexts: tlpAlarmUserDefined06.setStatus('current') if mibBuilder.loadTexts: tlpAlarmUserDefined06.setDescription('User-defined event 6 is in alarm.') tlpAlarmUserDefined07 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 2, 2, 7)) if mibBuilder.loadTexts: tlpAlarmUserDefined07.setStatus('current') if mibBuilder.loadTexts: tlpAlarmUserDefined07.setDescription('User-defined event 7 is in alarm.') tlpAlarmUserDefined08 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 2, 2, 8)) if mibBuilder.loadTexts: tlpAlarmUserDefined08.setStatus('current') if mibBuilder.loadTexts: tlpAlarmUserDefined08.setDescription('User-defined event 8 is in alarm.') tlpAlarmUserDefined09 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 2, 2, 9)) if mibBuilder.loadTexts: tlpAlarmUserDefined09.setStatus('current') if mibBuilder.loadTexts: tlpAlarmUserDefined09.setDescription('User-defined event 9 is in alarm.') tlpUpsAlarmBatteryBad = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 1)) if mibBuilder.loadTexts: tlpUpsAlarmBatteryBad.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmBatteryBad.setDescription('One or more batteries have been determined to require replacement.') tlpUpsAlarmOnBattery = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 2)) if mibBuilder.loadTexts: tlpUpsAlarmOnBattery.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmOnBattery.setDescription('The UPS is drawing power from the batteries.') tlpUpsAlarmLowBattery = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 3)) if mibBuilder.loadTexts: tlpUpsAlarmLowBattery.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLowBattery.setDescription('The remaining battery charge is less than or equal to the percentage of capacity warning specified by tlpUpsConfigBatteryCapacityThreshold.') tlpUpsAlarmDepletedBattery = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 4)) if mibBuilder.loadTexts: tlpUpsAlarmDepletedBattery.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmDepletedBattery.setDescription('The UPS will be unable to sustain the present load when and if the utility power is lost.') tlpUpsAlarmTempBad = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 5)) if mibBuilder.loadTexts: tlpUpsAlarmTempBad.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmTempBad.setDescription('A temperature is out of tolerance.') tlpUpsAlarmInputBad = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 6)) if mibBuilder.loadTexts: tlpUpsAlarmInputBad.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmInputBad.setDescription('An input condition is out of tolerance.') tlpUpsAlarmOutputBad = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 7)) if mibBuilder.loadTexts: tlpUpsAlarmOutputBad.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmOutputBad.setDescription('An output condition (other than OutputOverload) is out of tolerance.') tlpUpsAlarmOutputOverload = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 8)) if mibBuilder.loadTexts: tlpUpsAlarmOutputOverload.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmOutputOverload.setDescription('The output load exceeds the UPS output capacity.') tlpUpsAlarmOnBypass = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 9)) if mibBuilder.loadTexts: tlpUpsAlarmOnBypass.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmOnBypass.setDescription('The Bypass is presently engaged on the UPS.') tlpUpsAlarmBypassBad = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 10)) if mibBuilder.loadTexts: tlpUpsAlarmBypassBad.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmBypassBad.setDescription('The Bypass is out of tolerance.') tlpUpsAlarmOutputOffAsRequested = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 11)) if mibBuilder.loadTexts: tlpUpsAlarmOutputOffAsRequested.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmOutputOffAsRequested.setDescription('The UPS has shutdown as requested, i.e., the output is off.') tlpUpsAlarmUpsOffAsRequested = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 12)) if mibBuilder.loadTexts: tlpUpsAlarmUpsOffAsRequested.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmUpsOffAsRequested.setDescription('The entire UPS has shutdown as commanded.') tlpUpsAlarmChargerFailed = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 13)) if mibBuilder.loadTexts: tlpUpsAlarmChargerFailed.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmChargerFailed.setDescription('An uncorrected problem has been detected within the UPS charger subsystem.') tlpUpsAlarmUpsOutputOff = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 14)) if mibBuilder.loadTexts: tlpUpsAlarmUpsOutputOff.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmUpsOutputOff.setDescription('The output of the UPS is in the off state.') tlpUpsAlarmUpsSystemOff = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 15)) if mibBuilder.loadTexts: tlpUpsAlarmUpsSystemOff.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmUpsSystemOff.setDescription('The UPS system is in the off state.') tlpUpsAlarmFanFailure = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 16)) if mibBuilder.loadTexts: tlpUpsAlarmFanFailure.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmFanFailure.setDescription('The failure of one or more fans in the UPS has been detected.') tlpUpsAlarmFuseFailure = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 17)) if mibBuilder.loadTexts: tlpUpsAlarmFuseFailure.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmFuseFailure.setDescription('The failure of one or more fuses has been detected.') tlpUpsAlarmGeneralFault = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 18)) if mibBuilder.loadTexts: tlpUpsAlarmGeneralFault.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmGeneralFault.setDescription('A general fault in the UPS has been detected.') tlpUpsAlarmDiagnosticTestFailed = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 19)) if mibBuilder.loadTexts: tlpUpsAlarmDiagnosticTestFailed.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmDiagnosticTestFailed.setDescription('The result of the last diagnostic test indicates a failure.') tlpUpsAlarmAwaitingPower = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 20)) if mibBuilder.loadTexts: tlpUpsAlarmAwaitingPower.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmAwaitingPower.setDescription('The UPS output is off and the UPS is awaiting the return of input power.') tlpUpsAlarmShutdownPending = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 21)) if mibBuilder.loadTexts: tlpUpsAlarmShutdownPending.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmShutdownPending.setDescription('A tlpUpsShutdownAfterDelay countdown is underway.') tlpUpsAlarmShutdownImminent = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 22)) if mibBuilder.loadTexts: tlpUpsAlarmShutdownImminent.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmShutdownImminent.setDescription('The UPS will turn off power to the load in less than 5 seconds; this may be either a timed shutdown or a low battery shutdown.') tlpUpsAlarmLoadLevelAboveThreshold = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 23)) tlpUpsAlarmLoadLevelAboveThresholdTotal = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 23, 1)) if mibBuilder.loadTexts: tlpUpsAlarmLoadLevelAboveThresholdTotal.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadLevelAboveThresholdTotal.setDescription('The total load level is above the designated threshold.') tlpUpsAlarmLoadLevelAboveThresholdPhase1 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 23, 2)) if mibBuilder.loadTexts: tlpUpsAlarmLoadLevelAboveThresholdPhase1.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadLevelAboveThresholdPhase1.setDescription('The load level on phase 1 exceeds load limits.') tlpUpsAlarmLoadLevelAboveThresholdPhase2 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 23, 3)) if mibBuilder.loadTexts: tlpUpsAlarmLoadLevelAboveThresholdPhase2.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadLevelAboveThresholdPhase2.setDescription('The load level on phase 2 exceeds load limits.') tlpUpsAlarmLoadLevelAboveThresholdPhase3 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 23, 4)) if mibBuilder.loadTexts: tlpUpsAlarmLoadLevelAboveThresholdPhase3.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadLevelAboveThresholdPhase3.setDescription('The load level on phase 3 exceeds load limits.') tlpUpsAlarmOutputCurrentChanged = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 24)) if mibBuilder.loadTexts: tlpUpsAlarmOutputCurrentChanged.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmOutputCurrentChanged.setDescription('The output current changed from its last known value.') tlpUpsAlarmBatteryAgeAboveThreshold = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 25)) if mibBuilder.loadTexts: tlpUpsAlarmBatteryAgeAboveThreshold.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmBatteryAgeAboveThreshold.setDescription('One or more batteries have been determined to require replacement.') tlpUpsAlarmLoadOff = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26)) tlpUpsAlarmLoadOff01 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 1)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff01.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadOff01.setDescription('Load 1 is off.') tlpUpsAlarmLoadOff02 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 2)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff02.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadOff02.setDescription('Load 2 is off.') tlpUpsAlarmLoadOff03 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 3)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff03.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadOff03.setDescription('Load 3 is off.') tlpUpsAlarmLoadOff04 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 4)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff04.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadOff04.setDescription('Load 4 is off.') tlpUpsAlarmLoadOff05 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 5)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff05.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadOff05.setDescription('Load 5 is off.') tlpUpsAlarmLoadOff06 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 6)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff06.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadOff06.setDescription('Load 6 is off.') tlpUpsAlarmLoadOff07 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 7)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff07.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadOff07.setDescription('Load 7 is off.') tlpUpsAlarmLoadOff08 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 8)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff08.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadOff08.setDescription('Load 8 is off.') tlpUpsAlarmLoadOff09 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 9)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff09.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadOff09.setDescription('Load 9 is off.') tlpUpsAlarmLoadOff10 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 10)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff10.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadOff10.setDescription('Load 10 is off.') tlpUpsAlarmLoadOff11 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 11)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff11.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadOff11.setDescription('Load 11 is off.') tlpUpsAlarmLoadOff12 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 12)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff12.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadOff12.setDescription('Load 12 is off.') tlpUpsAlarmLoadOff13 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 13)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff13.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadOff13.setDescription('Load 13 is off.') tlpUpsAlarmLoadOff14 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 14)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff14.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadOff14.setDescription('Load 14 is off.') tlpUpsAlarmLoadOff15 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 15)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff15.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadOff15.setDescription('Load 15 is off.') tlpUpsAlarmLoadOff16 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 16)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff16.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadOff16.setDescription('Load 16 is off.') tlpUpsAlarmLoadOff17 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 17)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff17.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadOff17.setDescription('Load 17 is off.') tlpUpsAlarmLoadOff18 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 18)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff18.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadOff18.setDescription('Load 18 is off.') tlpUpsAlarmLoadOff19 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 19)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff19.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadOff19.setDescription('Load 19 is off.') tlpUpsAlarmLoadOff20 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 20)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff20.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadOff20.setDescription('Load 20 is off.') tlpUpsAlarmLoadOff21 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 21)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff21.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadOff21.setDescription('Load 21 is off.') tlpUpsAlarmLoadOff22 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 22)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff22.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadOff22.setDescription('Load 22 is off.') tlpUpsAlarmLoadOff23 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 23)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff23.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadOff23.setDescription('Load 23 is off.') tlpUpsAlarmLoadOff24 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 24)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff24.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadOff24.setDescription('Load 24 is off.') tlpUpsAlarmLoadOff25 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 25)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff25.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadOff25.setDescription('Load 25 is off.') tlpUpsAlarmLoadOff26 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 26)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff26.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadOff26.setDescription('Load 26 is off.') tlpUpsAlarmLoadOff27 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 27)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff27.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadOff27.setDescription('Load 27 is off.') tlpUpsAlarmLoadOff28 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 28)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff28.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadOff28.setDescription('Load 28 is off.') tlpUpsAlarmLoadOff29 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 29)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff29.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadOff29.setDescription('Load 29 is off.') tlpUpsAlarmLoadOff30 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 30)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff30.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadOff30.setDescription('Load 30 is off.') tlpUpsAlarmLoadOff31 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 31)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff31.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadOff31.setDescription('Load 31 is off.') tlpUpsAlarmLoadOff32 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 32)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff32.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadOff32.setDescription('Load 32 is off.') tlpUpsAlarmLoadOff33 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 33)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff33.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadOff33.setDescription('Load 33 is off.') tlpUpsAlarmLoadOff34 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 34)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff34.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadOff34.setDescription('Load 34 is off.') tlpUpsAlarmLoadOff35 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 35)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff35.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadOff35.setDescription('Load 35 is off.') tlpUpsAlarmLoadOff36 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 36)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff36.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadOff36.setDescription('Load 36 is off.') tlpUpsAlarmLoadOff37 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 37)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff37.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadOff37.setDescription('Load 37 is off.') tlpUpsAlarmLoadOff38 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 38)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff38.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadOff38.setDescription('Load 38 is off.') tlpUpsAlarmLoadOff39 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 39)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff39.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadOff39.setDescription('Load 39 is off.') tlpUpsAlarmLoadOff40 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 40)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff40.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadOff40.setDescription('Load 40 is off.') tlpUpsAlarmCurrentAboveThreshold = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 27)) tlpUpsAlarmCurrentAboveThreshold1 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 27, 1)) if mibBuilder.loadTexts: tlpUpsAlarmCurrentAboveThreshold1.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmCurrentAboveThreshold1.setDescription('The output current on phase 1 exceeds load limits.') tlpUpsAlarmCurrentAboveThreshold2 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 27, 2)) if mibBuilder.loadTexts: tlpUpsAlarmCurrentAboveThreshold2.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmCurrentAboveThreshold2.setDescription('The output current on phase 2 exceeds load limits.') tlpUpsAlarmCurrentAboveThreshold3 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 27, 3)) if mibBuilder.loadTexts: tlpUpsAlarmCurrentAboveThreshold3.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmCurrentAboveThreshold3.setDescription('The output current on phase 3 exceeds load limits.') tlpUpsAlarmRuntimeBelowWarningLevel = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 28)) if mibBuilder.loadTexts: tlpUpsAlarmRuntimeBelowWarningLevel.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmRuntimeBelowWarningLevel.setDescription('The battery seconds remaining is below warning level.') tlpUpsAlarmBusStartVoltageLow = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 29)) if mibBuilder.loadTexts: tlpUpsAlarmBusStartVoltageLow.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmBusStartVoltageLow.setDescription('The inverter start up bus voltage is too low.') tlpUpsAlarmBusOverVoltage = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 30)) if mibBuilder.loadTexts: tlpUpsAlarmBusOverVoltage.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmBusOverVoltage.setDescription('The inverter bus voltage is too high.') tlpUpsAlarmBusUnderVoltage = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 31)) if mibBuilder.loadTexts: tlpUpsAlarmBusUnderVoltage.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmBusUnderVoltage.setDescription('The inverter bus voltage is too low.') tlpUpsAlarmBusVoltageUnbalanced = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 32)) if mibBuilder.loadTexts: tlpUpsAlarmBusVoltageUnbalanced.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmBusVoltageUnbalanced.setDescription('The inverter bus voltage is not balanced.') tlpUpsAlarmInverterSoftStartBad = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 33)) if mibBuilder.loadTexts: tlpUpsAlarmInverterSoftStartBad.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmInverterSoftStartBad.setDescription('The inverter bus voltage cannot reach desired voltage within a specified duration.') tlpUpsAlarmInverterOverVoltage = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 34)) if mibBuilder.loadTexts: tlpUpsAlarmInverterOverVoltage.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmInverterOverVoltage.setDescription('The inverter voltage is too high.') tlpUpsAlarmInverterUnderVoltage = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 35)) if mibBuilder.loadTexts: tlpUpsAlarmInverterUnderVoltage.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmInverterUnderVoltage.setDescription('The inverter voltage is too low.') tlpUpsAlarmInverterCircuitBad = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 36)) if mibBuilder.loadTexts: tlpUpsAlarmInverterCircuitBad.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmInverterCircuitBad.setDescription('The inverter output is shorted.') tlpUpsAlarmBatteryOverVoltage = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 37)) if mibBuilder.loadTexts: tlpUpsAlarmBatteryOverVoltage.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmBatteryOverVoltage.setDescription('The battery voltage is too high.') tlpUpsAlarmBatteryUnderVoltage = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 38)) if mibBuilder.loadTexts: tlpUpsAlarmBatteryUnderVoltage.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmBatteryUnderVoltage.setDescription('The battery voltage is too low.') tlpUpsAlarmSiteWiringFault = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 39)) if mibBuilder.loadTexts: tlpUpsAlarmSiteWiringFault.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmSiteWiringFault.setDescription('The utility input wiring is faulty.') tlpUpsAlarmOverTemperatureProtection = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 40)) if mibBuilder.loadTexts: tlpUpsAlarmOverTemperatureProtection.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmOverTemperatureProtection.setDescription('The over temperature protection is activated.') tlpUpsAlarmOverCharged = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 41)) if mibBuilder.loadTexts: tlpUpsAlarmOverCharged.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmOverCharged.setDescription('The UPS is over charged.') tlpUpsAlarmEPOActive = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 42)) if mibBuilder.loadTexts: tlpUpsAlarmEPOActive.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmEPOActive.setDescription('The EPO is currently activate.') tlpUpsAlarmBypassFrequencyBad = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 43)) if mibBuilder.loadTexts: tlpUpsAlarmBypassFrequencyBad.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmBypassFrequencyBad.setDescription('The bypass frequency is out of tolerance.') tlpUpsAlarmExternalSmartBatteryAgeAboveThreshold = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 44)) if mibBuilder.loadTexts: tlpUpsAlarmExternalSmartBatteryAgeAboveThreshold.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmExternalSmartBatteryAgeAboveThreshold.setDescription('One or more external smart batteries have been determined to require replacement.') tlpUpsAlarmExternalNonSmartBatteryAgeAboveThreshold = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 45)) if mibBuilder.loadTexts: tlpUpsAlarmExternalNonSmartBatteryAgeAboveThreshold.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmExternalNonSmartBatteryAgeAboveThreshold.setDescription('One or more external non-smart batteries have been determined to require replacement.') tlpUpsAlarmSmartBatteryCommLost = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 46)) if mibBuilder.loadTexts: tlpUpsAlarmSmartBatteryCommLost.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmSmartBatteryCommLost.setDescription('Communications with the smart batteries was lost.') tlpUpsAlarmLoadsNotAllOn = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 47)) if mibBuilder.loadTexts: tlpUpsAlarmLoadsNotAllOn.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadsNotAllOn.setDescription('One of more loads are not on.') tlpPduAlarmLoadLevelAboveThreshold = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 1)) if mibBuilder.loadTexts: tlpPduAlarmLoadLevelAboveThreshold.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadLevelAboveThreshold.setDescription('The load level is above the designated threshold.') tlpPduAlarmInputBad = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 2)) if mibBuilder.loadTexts: tlpPduAlarmInputBad.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmInputBad.setDescription('An input condition is out of tolerance.') tlpPduAlarmOutputBad = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 3)) if mibBuilder.loadTexts: tlpPduAlarmOutputBad.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmOutputBad.setDescription('An output condition (other than OutputOverload) is out of tolerance.') tlpPduAlarmOutputOverload = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 4)) if mibBuilder.loadTexts: tlpPduAlarmOutputOverload.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmOutputOverload.setDescription('The output load exceeds the pdu output capacity.') tlpPduAlarmOutputOff = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 5)) if mibBuilder.loadTexts: tlpPduAlarmOutputOff.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmOutputOff.setDescription('The output of the pdu is in the off state.') tlpPduAlarmLoadOff = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6)) tlpPduAlarmLoadOff01 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 1)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff01.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadOff01.setDescription('Load 1 is off.') tlpPduAlarmLoadOff02 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 2)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff02.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadOff02.setDescription('Load 2 is off.') tlpPduAlarmLoadOff03 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 3)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff03.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadOff03.setDescription('Load 3 is off.') tlpPduAlarmLoadOff04 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 4)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff04.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadOff04.setDescription('Load 4 is off.') tlpPduAlarmLoadOff05 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 5)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff05.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadOff05.setDescription('Load 5 is off.') tlpPduAlarmLoadOff06 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 6)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff06.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadOff06.setDescription('Load 6 is off.') tlpPduAlarmLoadOff07 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 7)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff07.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadOff07.setDescription('Load 7 is off.') tlpPduAlarmLoadOff08 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 8)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff08.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadOff08.setDescription('Load 8 is off.') tlpPduAlarmLoadOff09 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 9)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff09.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadOff09.setDescription('Load 9 is off.') tlpPduAlarmLoadOff10 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 10)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff10.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadOff10.setDescription('Load 10 is off.') tlpPduAlarmLoadOff11 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 11)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff11.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadOff11.setDescription('Load 11 is off.') tlpPduAlarmLoadOff12 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 12)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff12.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadOff12.setDescription('Load 12 is off.') tlpPduAlarmLoadOff13 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 13)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff13.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadOff13.setDescription('Load 13 is off.') tlpPduAlarmLoadOff14 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 14)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff14.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadOff14.setDescription('Load 14 is off.') tlpPduAlarmLoadOff15 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 15)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff15.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadOff15.setDescription('Load 15 is off.') tlpPduAlarmLoadOff16 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 16)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff16.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadOff16.setDescription('Load 16 is off.') tlpPduAlarmLoadOff17 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 17)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff17.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadOff17.setDescription('Load 17 is off.') tlpPduAlarmLoadOff18 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 18)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff18.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadOff18.setDescription('Load 18 is off.') tlpPduAlarmLoadOff19 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 19)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff19.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadOff19.setDescription('Load 19 is off.') tlpPduAlarmLoadOff20 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 20)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff20.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadOff20.setDescription('Load 20 is off.') tlpPduAlarmLoadOff21 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 21)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff21.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadOff21.setDescription('Load 21 is off.') tlpPduAlarmLoadOff22 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 22)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff22.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadOff22.setDescription('Load 22 is off.') tlpPduAlarmLoadOff23 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 23)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff23.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadOff23.setDescription('Load 23 is off.') tlpPduAlarmLoadOff24 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 24)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff24.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadOff24.setDescription('Load 24 is off.') tlpPduAlarmLoadOff25 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 25)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff25.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadOff25.setDescription('Load 25 is off.') tlpPduAlarmLoadOff26 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 26)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff26.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadOff26.setDescription('Load 26 is off.') tlpPduAlarmLoadOff27 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 27)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff27.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadOff27.setDescription('Load 27 is off.') tlpPduAlarmLoadOff28 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 28)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff28.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadOff28.setDescription('Load 28 is off.') tlpPduAlarmLoadOff29 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 29)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff29.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadOff29.setDescription('Load 29 is off.') tlpPduAlarmLoadOff30 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 30)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff30.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadOff30.setDescription('Load 30 is off.') tlpPduAlarmLoadOff31 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 31)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff31.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadOff31.setDescription('Load 31 is off.') tlpPduAlarmLoadOff32 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 32)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff32.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadOff32.setDescription('Load 32 is off.') tlpPduAlarmLoadOff33 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 33)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff33.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadOff33.setDescription('Load 33 is off.') tlpPduAlarmLoadOff34 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 34)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff34.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadOff34.setDescription('Load 34 is off.') tlpPduAlarmLoadOff35 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 35)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff35.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadOff35.setDescription('Load 35 is off.') tlpPduAlarmLoadOff36 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 36)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff36.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadOff36.setDescription('Load 36 is off.') tlpPduAlarmLoadOff37 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 37)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff37.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadOff37.setDescription('Load 37 is off.') tlpPduAlarmLoadOff38 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 38)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff38.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadOff38.setDescription('Load 38 is off.') tlpPduAlarmLoadOff39 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 39)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff39.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadOff39.setDescription('Load 39 is off.') tlpPduAlarmLoadOff40 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 40)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff40.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadOff40.setDescription('Load 40 is off.') tlpPduAlarmCircuitBreakerOpen = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 7)) tlpPduAlarmCircuitBreakerOpen01 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 7, 1)) if mibBuilder.loadTexts: tlpPduAlarmCircuitBreakerOpen01.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmCircuitBreakerOpen01.setDescription('Circuit breaker 1 is open.') tlpPduAlarmCircuitBreakerOpen02 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 7, 2)) if mibBuilder.loadTexts: tlpPduAlarmCircuitBreakerOpen02.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmCircuitBreakerOpen02.setDescription('Circuit breaker 2 is open.') tlpPduAlarmCircuitBreakerOpen03 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 7, 3)) if mibBuilder.loadTexts: tlpPduAlarmCircuitBreakerOpen03.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmCircuitBreakerOpen03.setDescription('Circuit breaker 3 is open.') tlpPduAlarmCircuitBreakerOpen04 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 7, 4)) if mibBuilder.loadTexts: tlpPduAlarmCircuitBreakerOpen04.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmCircuitBreakerOpen04.setDescription('Circuit breaker 4 is open.') tlpPduAlarmCircuitBreakerOpen05 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 7, 5)) if mibBuilder.loadTexts: tlpPduAlarmCircuitBreakerOpen05.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmCircuitBreakerOpen05.setDescription('Circuit breaker 5 is open.') tlpPduAlarmCircuitBreakerOpen06 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 7, 6)) if mibBuilder.loadTexts: tlpPduAlarmCircuitBreakerOpen06.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmCircuitBreakerOpen06.setDescription('Circuit breaker 6 is open.') tlpPduAlarmCurrentAboveThreshold = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 8)) tlpPduAlarmCurrentAboveThreshold1 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 8, 1)) if mibBuilder.loadTexts: tlpPduAlarmCurrentAboveThreshold1.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmCurrentAboveThreshold1.setDescription('The output current on phase 1 exceeds load limits.') tlpPduAlarmCurrentAboveThreshold2 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 8, 2)) if mibBuilder.loadTexts: tlpPduAlarmCurrentAboveThreshold2.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmCurrentAboveThreshold2.setDescription('The output current on phase 2 exceeds load limits.') tlpPduAlarmCurrentAboveThreshold3 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 8, 3)) if mibBuilder.loadTexts: tlpPduAlarmCurrentAboveThreshold3.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmCurrentAboveThreshold3.setDescription('The output current on phase 3 exceeds load limits.') tlpPduAlarmLoadsNotAllOn = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 9)) if mibBuilder.loadTexts: tlpPduAlarmLoadsNotAllOn.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadsNotAllOn.setDescription('One of more loads are not on.') tlpEnvAlarmTemperatureBeyondLimits = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 5, 1)) if mibBuilder.loadTexts: tlpEnvAlarmTemperatureBeyondLimits.setStatus('current') if mibBuilder.loadTexts: tlpEnvAlarmTemperatureBeyondLimits.setDescription('The temperature exceeds limits.') tlpEnvAlarmHumidityBeyondLimits = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 5, 2)) if mibBuilder.loadTexts: tlpEnvAlarmHumidityBeyondLimits.setStatus('current') if mibBuilder.loadTexts: tlpEnvAlarmHumidityBeyondLimits.setDescription('The humidity exceeds limits.') tlpEnvAlarmInputContact = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 5, 3)) tlpEnvAlarmInputContact01 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 5, 3, 1)) if mibBuilder.loadTexts: tlpEnvAlarmInputContact01.setStatus('current') if mibBuilder.loadTexts: tlpEnvAlarmInputContact01.setDescription('Input contact 1 is in alarm.') tlpEnvAlarmInputContact02 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 5, 3, 2)) if mibBuilder.loadTexts: tlpEnvAlarmInputContact02.setStatus('current') if mibBuilder.loadTexts: tlpEnvAlarmInputContact02.setDescription('Input contact 2 is in alarm.') tlpEnvAlarmInputContact03 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 5, 3, 3)) if mibBuilder.loadTexts: tlpEnvAlarmInputContact03.setStatus('current') if mibBuilder.loadTexts: tlpEnvAlarmInputContact03.setDescription('Input contact 3 is in alarm.') tlpEnvAlarmInputContact04 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 5, 3, 4)) if mibBuilder.loadTexts: tlpEnvAlarmInputContact04.setStatus('current') if mibBuilder.loadTexts: tlpEnvAlarmInputContact04.setDescription('Input contact 4 is in alarm.') tlpEnvAlarmOutputContact = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 5, 4)) tlpEnvAlarmOutputContact01 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 5, 4, 1)) if mibBuilder.loadTexts: tlpEnvAlarmOutputContact01.setStatus('current') if mibBuilder.loadTexts: tlpEnvAlarmOutputContact01.setDescription('Output contact 1 is in alarm.') tlpEnvAlarmOutputContact02 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 5, 4, 2)) if mibBuilder.loadTexts: tlpEnvAlarmOutputContact02.setStatus('current') if mibBuilder.loadTexts: tlpEnvAlarmOutputContact02.setDescription('Output contact 2 is in alarm.') tlpEnvAlarmOutputContact03 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 5, 4, 3)) if mibBuilder.loadTexts: tlpEnvAlarmOutputContact03.setStatus('current') if mibBuilder.loadTexts: tlpEnvAlarmOutputContact03.setDescription('Output contact 3 is in alarm.') tlpEnvAlarmOutputContact04 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 5, 4, 4)) if mibBuilder.loadTexts: tlpEnvAlarmOutputContact04.setStatus('current') if mibBuilder.loadTexts: tlpEnvAlarmOutputContact04.setDescription('Output contact 4 is in alarm.') tlpAtsAlarmOutage = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 1)) tlpAtsAlarmSource1Outage = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 1, 1)) if mibBuilder.loadTexts: tlpAtsAlarmSource1Outage.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmSource1Outage.setDescription('Input on source 1 is not present. For atss with the designation of primary and secondary, this alarm denotes input on the primary source is not present.') tlpAtsAlarmSource2Outage = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 1, 2)) if mibBuilder.loadTexts: tlpAtsAlarmSource2Outage.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmSource2Outage.setDescription('Input on source 2 is not present. For atss with the designation of primary and secondary, this alarm denotes input on the secondary source is not present.') tlpAtsAlarmTemperature = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 2)) tlpAtsAlarmSystemTemperature = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 2, 1)) if mibBuilder.loadTexts: tlpAtsAlarmSystemTemperature.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmSystemTemperature.setDescription('The system temperature is out of tolerance.') tlpAtsAlarmSource1Temperature = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 2, 2)) if mibBuilder.loadTexts: tlpAtsAlarmSource1Temperature.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmSource1Temperature.setDescription('The source 1 temperature is out of tolerance.') tlpAtsAlarmSource2Temperature = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 2, 3)) if mibBuilder.loadTexts: tlpAtsAlarmSource2Temperature.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmSource2Temperature.setDescription('The source 2 temperature is out of tolerance.') tlpAtsAlarmLoadLevelAboveThreshold = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 3)) if mibBuilder.loadTexts: tlpAtsAlarmLoadLevelAboveThreshold.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadLevelAboveThreshold.setDescription('The load level is above the designated threshold.') tlpAtsAlarmInputBad = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 4)) if mibBuilder.loadTexts: tlpAtsAlarmInputBad.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmInputBad.setDescription('An input condition is out of tolerance.') tlpAtsAlarmOutputBad = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 5)) if mibBuilder.loadTexts: tlpAtsAlarmOutputBad.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmOutputBad.setDescription('An output condition (other than OutputOverload) is out of tolerance.') tlpAtsAlarmOutputOverload = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 6)) if mibBuilder.loadTexts: tlpAtsAlarmOutputOverload.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmOutputOverload.setDescription('The output load exceeds the ats output capacity.') tlpAtsAlarmOutputOff = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 7)) if mibBuilder.loadTexts: tlpAtsAlarmOutputOff.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmOutputOff.setDescription('The output of the ats is in the off state.') tlpAtsAlarmLoadOff = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8)) tlpAtsAlarmLoadOff01 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 1)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff01.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadOff01.setDescription('Load 1 is off.') tlpAtsAlarmLoadOff02 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 2)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff02.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadOff02.setDescription('Load 2 is off.') tlpAtsAlarmLoadOff03 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 3)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff03.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadOff03.setDescription('Load 3 is off.') tlpAtsAlarmLoadOff04 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 4)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff04.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadOff04.setDescription('Load 4 is off.') tlpAtsAlarmLoadOff05 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 5)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff05.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadOff05.setDescription('Load 5 is off.') tlpAtsAlarmLoadOff06 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 6)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff06.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadOff06.setDescription('Load 6 is off.') tlpAtsAlarmLoadOff07 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 7)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff07.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadOff07.setDescription('Load 7 is off.') tlpAtsAlarmLoadOff08 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 8)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff08.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadOff08.setDescription('Load 8 is off.') tlpAtsAlarmLoadOff09 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 9)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff09.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadOff09.setDescription('Load 9 is off.') tlpAtsAlarmLoadOff10 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 10)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff10.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadOff10.setDescription('Load 10 is off.') tlpAtsAlarmLoadOff11 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 11)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff11.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadOff11.setDescription('Load 11 is off.') tlpAtsAlarmLoadOff12 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 12)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff12.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadOff12.setDescription('Load 12 is off.') tlpAtsAlarmLoadOff13 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 13)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff13.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadOff13.setDescription('Load 13 is off.') tlpAtsAlarmLoadOff14 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 14)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff14.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadOff14.setDescription('Load 14 is off.') tlpAtsAlarmLoadOff15 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 15)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff15.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadOff15.setDescription('Load 15 is off.') tlpAtsAlarmLoadOff16 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 16)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff16.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadOff16.setDescription('Load 16 is off.') tlpAtsAlarmLoadOff17 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 17)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff17.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadOff17.setDescription('Load 17 is off.') tlpAtsAlarmLoadOff18 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 18)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff18.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadOff18.setDescription('Load 18 is off.') tlpAtsAlarmLoadOff19 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 19)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff19.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadOff19.setDescription('Load 19 is off.') tlpAtsAlarmLoadOff20 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 20)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff20.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadOff20.setDescription('Load 20 is off.') tlpAtsAlarmLoadOff21 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 21)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff21.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadOff21.setDescription('Load 21 is off.') tlpAtsAlarmLoadOff22 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 22)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff22.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadOff22.setDescription('Load 22 is off.') tlpAtsAlarmLoadOff23 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 23)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff23.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadOff23.setDescription('Load 23 is off.') tlpAtsAlarmLoadOff24 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 24)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff24.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadOff24.setDescription('Load 24 is off.') tlpAtsAlarmLoadOff25 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 25)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff25.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadOff25.setDescription('Load 25 is off.') tlpAtsAlarmLoadOff26 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 26)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff26.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadOff26.setDescription('Load 26 is off.') tlpAtsAlarmLoadOff27 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 27)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff27.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadOff27.setDescription('Load 27 is off.') tlpAtsAlarmLoadOff28 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 28)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff28.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadOff28.setDescription('Load 28 is off.') tlpAtsAlarmLoadOff29 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 29)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff29.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadOff29.setDescription('Load 29 is off.') tlpAtsAlarmLoadOff30 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 30)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff30.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadOff30.setDescription('Load 30 is off.') tlpAtsAlarmLoadOff31 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 31)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff31.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadOff31.setDescription('Load 31 is off.') tlpAtsAlarmLoadOff32 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 32)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff32.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadOff32.setDescription('Load 32 is off.') tlpAtsAlarmLoadOff33 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 33)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff33.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadOff33.setDescription('Load 33 is off.') tlpAtsAlarmLoadOff34 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 34)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff34.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadOff34.setDescription('Load 34 is off.') tlpAtsAlarmLoadOff35 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 35)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff35.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadOff35.setDescription('Load 35 is off.') tlpAtsAlarmLoadOff36 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 36)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff36.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadOff36.setDescription('Load 36 is off.') tlpAtsAlarmLoadOff37 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 37)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff37.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadOff37.setDescription('Load 37 is off.') tlpAtsAlarmLoadOff38 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 38)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff38.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadOff38.setDescription('Load 38 is off.') tlpAtsAlarmLoadOff39 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 39)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff39.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadOff39.setDescription('Load 39 is off.') tlpAtsAlarmLoadOff40 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 40)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff40.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadOff40.setDescription('Load 40 is off.') tlpAtsAlarmCircuitBreakerOpen = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 9)) tlpAtsAlarmCircuitBreakerOpen01 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 9, 1)) if mibBuilder.loadTexts: tlpAtsAlarmCircuitBreakerOpen01.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmCircuitBreakerOpen01.setDescription('Circuit breaker 1 is open.') tlpAtsAlarmCircuitBreakerOpen02 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 9, 2)) if mibBuilder.loadTexts: tlpAtsAlarmCircuitBreakerOpen02.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmCircuitBreakerOpen02.setDescription('Circuit breaker 2 is open.') tlpAtsAlarmCircuitBreakerOpen03 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 9, 3)) if mibBuilder.loadTexts: tlpAtsAlarmCircuitBreakerOpen03.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmCircuitBreakerOpen03.setDescription('Circuit breaker 3 is open.') tlpAtsAlarmCircuitBreakerOpen04 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 9, 4)) if mibBuilder.loadTexts: tlpAtsAlarmCircuitBreakerOpen04.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmCircuitBreakerOpen04.setDescription('Circuit breaker 4 is open.') tlpAtsAlarmCircuitBreakerOpen05 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 9, 5)) if mibBuilder.loadTexts: tlpAtsAlarmCircuitBreakerOpen05.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmCircuitBreakerOpen05.setDescription('Circuit breaker 5 is open.') tlpAtsAlarmCircuitBreakerOpen06 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 9, 6)) if mibBuilder.loadTexts: tlpAtsAlarmCircuitBreakerOpen06.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmCircuitBreakerOpen06.setDescription('Circuit breaker 6 is open.') tlpAtsAlarmCurrentAboveThreshold = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 10)) tlpAtsAlarmCurrentAboveThresholdA1 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 10, 1)) if mibBuilder.loadTexts: tlpAtsAlarmCurrentAboveThresholdA1.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmCurrentAboveThresholdA1.setDescription('The output current on input source 1 phase 1 exceeds load limits.') tlpAtsAlarmCurrentAboveThresholdA2 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 10, 2)) if mibBuilder.loadTexts: tlpAtsAlarmCurrentAboveThresholdA2.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmCurrentAboveThresholdA2.setDescription('The output current on input source 1 phase 2 exceeds load limits.') tlpAtsAlarmCurrentAboveThresholdA3 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 10, 3)) if mibBuilder.loadTexts: tlpAtsAlarmCurrentAboveThresholdA3.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmCurrentAboveThresholdA3.setDescription('The output current on input source 1 phase 3 exceeds load limits.') tlpAtsAlarmCurrentAboveThresholdB1 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 10, 4)) if mibBuilder.loadTexts: tlpAtsAlarmCurrentAboveThresholdB1.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmCurrentAboveThresholdB1.setDescription('The output current on input source 2 phase 1 exceeds load limits.') tlpAtsAlarmCurrentAboveThresholdB2 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 10, 5)) if mibBuilder.loadTexts: tlpAtsAlarmCurrentAboveThresholdB2.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmCurrentAboveThresholdB2.setDescription('The output current on input source 2 phase 2 exceeds load limits.') tlpAtsAlarmCurrentAboveThresholdB3 = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 10, 6)) if mibBuilder.loadTexts: tlpAtsAlarmCurrentAboveThresholdB3.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmCurrentAboveThresholdB3.setDescription('The output current on input source 2 phase 3 exceeds load limits.') tlpAtsAlarmLoadsNotAllOn = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 11)) if mibBuilder.loadTexts: tlpAtsAlarmLoadsNotAllOn.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadsNotAllOn.setDescription('One of more loads are not on.') tlpAtsAlarmGeneralFault = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 12)) if mibBuilder.loadTexts: tlpAtsAlarmGeneralFault.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmGeneralFault.setDescription('A general fault in the ats has been detected.') tlpAtsAlarmVoltage = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 13)) tlpAtsAlarmOverVoltage = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 13, 1)) if mibBuilder.loadTexts: tlpAtsAlarmOverVoltage.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmOverVoltage.setDescription('The input voltage is out of tolerance.') tlpAtsAlarmSource1OverVoltage = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 13, 2)) if mibBuilder.loadTexts: tlpAtsAlarmSource1OverVoltage.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmSource1OverVoltage.setDescription('The voltage on source 1 is out of tolerance.') tlpAtsAlarmSource2OverVoltage = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 13, 3)) if mibBuilder.loadTexts: tlpAtsAlarmSource2OverVoltage.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmSource2OverVoltage.setDescription('The voltage on source 2 is out of tolerance.') tlpAtsAlarmFrequency = MibIdentifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 14)) tlpAtsAlarmSource1InvalidFrequency = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 14, 1)) if mibBuilder.loadTexts: tlpAtsAlarmSource1InvalidFrequency.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmSource1InvalidFrequency.setDescription('The voltage on source 1 is out of tolerance.') tlpAtsAlarmSource2InvalidFrequency = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 14, 2)) if mibBuilder.loadTexts: tlpAtsAlarmSource2InvalidFrequency.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmSource2InvalidFrequency.setDescription('The voltage on source 2 is out of tolerance.') tlpCoolingAlarmSupplyAirSensorFault = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 1)) if mibBuilder.loadTexts: tlpCoolingAlarmSupplyAirSensorFault.setStatus('current') if mibBuilder.loadTexts: tlpCoolingAlarmSupplyAirSensorFault.setDescription('The supply air sensor is in fault.') tlpCoolingAlarmReturnAirSensorFault = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 2)) if mibBuilder.loadTexts: tlpCoolingAlarmReturnAirSensorFault.setStatus('current') if mibBuilder.loadTexts: tlpCoolingAlarmReturnAirSensorFault.setDescription('The return air sensor is in fault.') tlpCoolingAlarmCondenserInletAirSensorFault = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 3)) if mibBuilder.loadTexts: tlpCoolingAlarmCondenserInletAirSensorFault.setStatus('current') if mibBuilder.loadTexts: tlpCoolingAlarmCondenserInletAirSensorFault.setDescription('The condenser inlet air sensor is in fault.') tlpCoolingAlarmCondenserOutletAirSensorFault = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 4)) if mibBuilder.loadTexts: tlpCoolingAlarmCondenserOutletAirSensorFault.setStatus('current') if mibBuilder.loadTexts: tlpCoolingAlarmCondenserOutletAirSensorFault.setDescription('The condenser outlet air sensor is in fault.') tlpCoolingAlarmSuctionTemperatureSensorFault = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 5)) if mibBuilder.loadTexts: tlpCoolingAlarmSuctionTemperatureSensorFault.setStatus('current') if mibBuilder.loadTexts: tlpCoolingAlarmSuctionTemperatureSensorFault.setDescription('The suction temperature sensor is in fault.') tlpCoolingAlarmEvaporatorTemperatureSensorFault = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 6)) if mibBuilder.loadTexts: tlpCoolingAlarmEvaporatorTemperatureSensorFault.setStatus('current') if mibBuilder.loadTexts: tlpCoolingAlarmEvaporatorTemperatureSensorFault.setDescription('The evaporator temperature sensor is in fault.') tlpCoolingAlarmAirFilterClogged = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 7)) if mibBuilder.loadTexts: tlpCoolingAlarmAirFilterClogged.setStatus('current') if mibBuilder.loadTexts: tlpCoolingAlarmAirFilterClogged.setDescription('The air filter is clogged.') tlpCoolingAlarmAirFilterRunHoursViolation = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 8)) if mibBuilder.loadTexts: tlpCoolingAlarmAirFilterRunHoursViolation.setStatus('current') if mibBuilder.loadTexts: tlpCoolingAlarmAirFilterRunHoursViolation.setDescription('The air filter run hours was violated.') tlpCoolingAlarmSuctionPressureSensorFault = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 9)) if mibBuilder.loadTexts: tlpCoolingAlarmSuctionPressureSensorFault.setStatus('current') if mibBuilder.loadTexts: tlpCoolingAlarmSuctionPressureSensorFault.setDescription('The suction pressure sensor is in fault.') tlpCoolingAlarmInverterCommunicationsFault = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 10)) if mibBuilder.loadTexts: tlpCoolingAlarmInverterCommunicationsFault.setStatus('current') if mibBuilder.loadTexts: tlpCoolingAlarmInverterCommunicationsFault.setDescription('The inverter communications is in fault.') tlpCoolingAlarmRemoteShutdownViaInputContact = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 11)) if mibBuilder.loadTexts: tlpCoolingAlarmRemoteShutdownViaInputContact.setStatus('current') if mibBuilder.loadTexts: tlpCoolingAlarmRemoteShutdownViaInputContact.setDescription('A remote shutdown was triggerd by an input contact.') tlpCoolingAlarmCondensatePumpFault = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 12)) if mibBuilder.loadTexts: tlpCoolingAlarmCondensatePumpFault.setStatus('current') if mibBuilder.loadTexts: tlpCoolingAlarmCondensatePumpFault.setDescription('The condensate pump is in fault.') tlpCoolingAlarmLowRefrigerantStartupFault = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 13)) if mibBuilder.loadTexts: tlpCoolingAlarmLowRefrigerantStartupFault.setStatus('current') if mibBuilder.loadTexts: tlpCoolingAlarmLowRefrigerantStartupFault.setDescription('The low refrigerant startup is in fault.') tlpCoolingAlarmCondenserFanFault = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 14)) if mibBuilder.loadTexts: tlpCoolingAlarmCondenserFanFault.setStatus('current') if mibBuilder.loadTexts: tlpCoolingAlarmCondenserFanFault.setDescription('The condenser fan is in fault.') tlpCoolingAlarmCondenserFailure = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 15)) if mibBuilder.loadTexts: tlpCoolingAlarmCondenserFailure.setStatus('current') if mibBuilder.loadTexts: tlpCoolingAlarmCondenserFailure.setDescription('The condenser has failed.') tlpCoolingAlarmEvaporatorCoolingFailure = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 16)) if mibBuilder.loadTexts: tlpCoolingAlarmEvaporatorCoolingFailure.setStatus('current') if mibBuilder.loadTexts: tlpCoolingAlarmEvaporatorCoolingFailure.setDescription('The evaporator cooling is in fault.') tlpCoolingAlarmReturnAirTempHigh = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 17)) if mibBuilder.loadTexts: tlpCoolingAlarmReturnAirTempHigh.setStatus('current') if mibBuilder.loadTexts: tlpCoolingAlarmReturnAirTempHigh.setDescription('The return air temperature is high.') tlpCoolingAlarmSupplyAirTempHigh = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 18)) if mibBuilder.loadTexts: tlpCoolingAlarmSupplyAirTempHigh.setStatus('current') if mibBuilder.loadTexts: tlpCoolingAlarmSupplyAirTempHigh.setDescription('The supply air temperature is high.') tlpCoolingAlarmEvaporatorFailure = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 19)) if mibBuilder.loadTexts: tlpCoolingAlarmEvaporatorFailure.setStatus('current') if mibBuilder.loadTexts: tlpCoolingAlarmEvaporatorFailure.setDescription('The evaporator has failed.') tlpCoolingAlarmEvaporatorFreezeUp = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 20)) if mibBuilder.loadTexts: tlpCoolingAlarmEvaporatorFreezeUp.setStatus('current') if mibBuilder.loadTexts: tlpCoolingAlarmEvaporatorFreezeUp.setDescription('The evaporator is frozen.') tlpCoolingAlarmDischargePressureHigh = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 21)) if mibBuilder.loadTexts: tlpCoolingAlarmDischargePressureHigh.setStatus('current') if mibBuilder.loadTexts: tlpCoolingAlarmDischargePressureHigh.setDescription('The discharge pressure is high.') tlpCoolingAlarmPressureGaugeFailure = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 22)) if mibBuilder.loadTexts: tlpCoolingAlarmPressureGaugeFailure.setStatus('current') if mibBuilder.loadTexts: tlpCoolingAlarmPressureGaugeFailure.setDescription('The pressure gauge has failed.') tlpCoolingAlarmDischargePressurePersistentHigh = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 23)) if mibBuilder.loadTexts: tlpCoolingAlarmDischargePressurePersistentHigh.setStatus('current') if mibBuilder.loadTexts: tlpCoolingAlarmDischargePressurePersistentHigh.setDescription('The discharge pressure is persistently high.') tlpCoolingAlarmSuctionPressureLowStartFailure = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 24)) if mibBuilder.loadTexts: tlpCoolingAlarmSuctionPressureLowStartFailure.setStatus('current') if mibBuilder.loadTexts: tlpCoolingAlarmSuctionPressureLowStartFailure.setDescription('Cannot start due to low suction pressure.') tlpCoolingAlarmSuctionPressureLow = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 25)) if mibBuilder.loadTexts: tlpCoolingAlarmSuctionPressureLow.setStatus('current') if mibBuilder.loadTexts: tlpCoolingAlarmSuctionPressureLow.setDescription('The suction pressure is low.') tlpCoolingAlarmSuctionPressurePersistentLow = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 26)) if mibBuilder.loadTexts: tlpCoolingAlarmSuctionPressurePersistentLow.setStatus('current') if mibBuilder.loadTexts: tlpCoolingAlarmSuctionPressurePersistentLow.setDescription('The suction pressure is persistently low.') tlpCoolingAlarmStartupLinePressureImbalance = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 27)) if mibBuilder.loadTexts: tlpCoolingAlarmStartupLinePressureImbalance.setStatus('current') if mibBuilder.loadTexts: tlpCoolingAlarmStartupLinePressureImbalance.setDescription('The startup line pressure is in imbalance.') tlpCoolingAlarmCompressorFailure = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 28)) if mibBuilder.loadTexts: tlpCoolingAlarmCompressorFailure.setStatus('current') if mibBuilder.loadTexts: tlpCoolingAlarmCompressorFailure.setDescription('The compressor has failed.') tlpCoolingAlarmCurrentLimit = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 29)) if mibBuilder.loadTexts: tlpCoolingAlarmCurrentLimit.setStatus('current') if mibBuilder.loadTexts: tlpCoolingAlarmCurrentLimit.setDescription('The current is out of range.') tlpCoolingAlarmWaterLeak = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 30)) if mibBuilder.loadTexts: tlpCoolingAlarmWaterLeak.setStatus('current') if mibBuilder.loadTexts: tlpCoolingAlarmWaterLeak.setDescription('Water is leaking.') tlpCoolingAlarmFanUnderCurrent = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 31)) if mibBuilder.loadTexts: tlpCoolingAlarmFanUnderCurrent.setStatus('current') if mibBuilder.loadTexts: tlpCoolingAlarmFanUnderCurrent.setDescription('The fan is under current.') tlpCoolingAlarmFanOverCurrent = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 32)) if mibBuilder.loadTexts: tlpCoolingAlarmFanOverCurrent.setStatus('current') if mibBuilder.loadTexts: tlpCoolingAlarmFanOverCurrent.setDescription('The fan is over current.') tlpCoolingAlarmDischargePressureSensorFault = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 33)) if mibBuilder.loadTexts: tlpCoolingAlarmDischargePressureSensorFault.setStatus('current') if mibBuilder.loadTexts: tlpCoolingAlarmDischargePressureSensorFault.setDescription('The discharge pressure sensor is in fault.') tlpCoolingAlarmWaterFull = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 34)) if mibBuilder.loadTexts: tlpCoolingAlarmWaterFull.setStatus('current') if mibBuilder.loadTexts: tlpCoolingAlarmWaterFull.setDescription('Water is Full.') tlpCoolingAlarmAutoCoolingOn = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 35)) if mibBuilder.loadTexts: tlpCoolingAlarmAutoCoolingOn.setStatus('current') if mibBuilder.loadTexts: tlpCoolingAlarmAutoCoolingOn.setDescription('Automatic cooling was activated to lower the temperature below the remote set point.') tlpCoolingAlarmPowerButtonPressed = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 36)) if mibBuilder.loadTexts: tlpCoolingAlarmPowerButtonPressed.setStatus('current') if mibBuilder.loadTexts: tlpCoolingAlarmPowerButtonPressed.setDescription('Power button was pressed on the front panel.') tlpCoolingAlarmDisconnectedFromDevice = ObjectIdentity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 37)) if mibBuilder.loadTexts: tlpCoolingAlarmDisconnectedFromDevice.setStatus('current') if mibBuilder.loadTexts: tlpCoolingAlarmDisconnectedFromDevice.setDescription('The device communications is disconnected.') tlpAlarmControlTable = MibTable((1, 3, 6, 1, 4, 1, 850, 1, 3, 4, 1), ) if mibBuilder.loadTexts: tlpAlarmControlTable.setStatus('current') if mibBuilder.loadTexts: tlpAlarmControlTable.setDescription('A list of alarm conditions supported for each device managed by this agent. This table contains zero, one, or many rows depending upon the number of available alarms managed by each device.') tlpAlarmControlEntry = MibTableRow((1, 3, 6, 1, 4, 1, 850, 1, 3, 4, 1, 1), ).setIndexNames((0, "TRIPPLITE-PRODUCTS", "tlpDeviceIndex"), (0, "TRIPPLITE-PRODUCTS", "tlpAlarmControlIndex")) if mibBuilder.loadTexts: tlpAlarmControlEntry.setStatus('current') if mibBuilder.loadTexts: tlpAlarmControlEntry.setDescription('An entry containing details for a particular alarm condition.') tlpAlarmControlIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 3, 4, 1, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAlarmControlIndex.setStatus('current') if mibBuilder.loadTexts: tlpAlarmControlIndex.setDescription('The table row index for this alarm control entry for this device. The index of any one row represents the index of the alarm entry within the agent system. As such, the index values for any one device is not guaranteed to start with 1 or be numerically sequential.') tlpAlarmControlDescr = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 3, 4, 1, 1, 2), ObjectIdentifier()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAlarmControlDescr.setStatus('current') if mibBuilder.loadTexts: tlpAlarmControlDescr.setDescription('A reference of the alarm description object. The object referenced should not be accessbile, but rather be used to provide a unique description for the alarm condition. The object referenced will be a well known alarm object associated with the device on which the alarm condition is active. This will be the same object description of an alarm when in alarm as referenced by tlpAlarmDescr.') tlpAlarmControlDetail = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 3, 4, 1, 1, 3), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlpAlarmControlDetail.setStatus('current') if mibBuilder.loadTexts: tlpAlarmControlDetail.setDescription('A textual description of the alarm condition. This will be the same textual description of an alarm when in alarm as referenced by tlpAlarmDetail.') tlpAlarmControlSeverity = MibTableColumn((1, 3, 6, 1, 4, 1, 850, 1, 3, 4, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("critical", 1), ("warning", 2), ("info", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: tlpAlarmControlSeverity.setStatus('current') if mibBuilder.loadTexts: tlpAlarmControlSeverity.setDescription('The severity of this alarm, which can be configured as desired for each alarm condition. This will be the same severity used when in alarm as referenced by tlpAlarmType.') tlpNotificationsAlarmEntryAdded = NotificationType((1, 3, 6, 1, 4, 1, 850, 1, 4, 1, 1)).setObjects(("TRIPPLITE-PRODUCTS", "tlpAlarmId"), ("TRIPPLITE-PRODUCTS", "tlpAlarmDescr"), ("TRIPPLITE-PRODUCTS", "tlpAlarmTime"), ("TRIPPLITE-PRODUCTS", "tlpAlarmTableRef"), ("TRIPPLITE-PRODUCTS", "tlpAlarmTableRowRef"), ("TRIPPLITE-PRODUCTS", "tlpAlarmDetail"), ("TRIPPLITE-PRODUCTS", "tlpAlarmType")) if mibBuilder.loadTexts: tlpNotificationsAlarmEntryAdded.setStatus('current') if mibBuilder.loadTexts: tlpNotificationsAlarmEntryAdded.setDescription('This notification is sent each time an alarm condition is inserted into the device alarm table, tlpAlarmTable.') tlpNotificationsAlarmEntryRemoved = NotificationType((1, 3, 6, 1, 4, 1, 850, 1, 4, 1, 2)).setObjects(("TRIPPLITE-PRODUCTS", "tlpAlarmId"), ("TRIPPLITE-PRODUCTS", "tlpAlarmDescr"), ("TRIPPLITE-PRODUCTS", "tlpAlarmTime"), ("TRIPPLITE-PRODUCTS", "tlpAlarmTableRef"), ("TRIPPLITE-PRODUCTS", "tlpAlarmTableRowRef"), ("TRIPPLITE-PRODUCTS", "tlpAlarmDetail"), ("TRIPPLITE-PRODUCTS", "tlpAlarmType")) if mibBuilder.loadTexts: tlpNotificationsAlarmEntryRemoved.setStatus('current') if mibBuilder.loadTexts: tlpNotificationsAlarmEntryRemoved.setDescription('This notification is sent each time an alarm condition is removed from the device alarm table, tlpAlarmTable.') tlpNotifySystemStartup = NotificationType((1, 3, 6, 1, 4, 1, 850, 1, 4, 1, 3)) if mibBuilder.loadTexts: tlpNotifySystemStartup.setStatus('current') if mibBuilder.loadTexts: tlpNotifySystemStartup.setDescription("Used to inform another entity of an agent's startup. The varbinds that follow are: OBJ1 = tlpAgentType Obj1Value = The type of engine providing this data OBJ2 = tlpAgentVersion Obj2Value = The current version of the engine OBJ3 = tlpAgentMAC Obj3Value = The MAC address of the engine OBJ4 = tlpAgentSerialNum Obj4Value = The serial number of the web card [should be 0 on PC] --- if this trap is extended, place all static OIDs above this mark. all objects below --- the number of devices (tlpDeviceNumDevices) is explicit as per device for enumeration by --- the target receiver OBJ5 = tlpDeviceNumDevices Obj5Value = The number of devices attached --- The following objects will be replicated per each device: OBJ6 = The OID for an entry of tlpDeviceManufacturer, indexed by device Obj6Value = The device's manufacturer OBJ7 = The OID for an entry of tlpDeviceModel, indexed by device Obj7Value = The device's model name OBJ8 = The OID for an entry of tlpDeviceName, indexed by device Obj8Value = The device's display name OBJ9 = The OID for an entry of tlpDeviceLocation, indexed by device Obj9Value = The device's location OBJ10 = The OID for an entry of tlpDeviceRegion, indexed by device Obj10Value= The device's region OBJ11 = The OID for an entry of tlpDeviceProtocol, indexed by device Obj11Value= The device's protocol (display string format) ") tlpNotifySystemShutdown = NotificationType((1, 3, 6, 1, 4, 1, 850, 1, 4, 1, 4)) if mibBuilder.loadTexts: tlpNotifySystemShutdown.setStatus('current') if mibBuilder.loadTexts: tlpNotifySystemShutdown.setDescription("Used to inform another entity of an agent's shutdown. The varbinds that follow are: OBJ1 = tlpAgentType Obj1Value = The type of engine providing this data OBJ2 = tlpAgentVersion Obj2Value = The current version of the engine OBJ3 = tlpAgentMAC Obj3Value = The MAC address of the engine OBJ4 = tlpAgentSerialNum Obj4Value = The serial number of the web card [should be 0 on PC] --- if this trap is extended, place all static OIDs above this mark. all objects below --- the number of devices (tlpDeviceNumDevices) is explicit as per device for enumeration by --- the target receiver OBJ5 = tlpDeviceNumDevices Obj5Value = The number of devices attached --- The following objects will be replicated per each device: OBJ6 = The OID for an entry of tlpDeviceManufacturer, indexed by device Obj6Value = The device's manufacturer OBJ7 = The OID for an entry of tlpDeviceModel, indexed by device Obj7Value = The device's model name OBJ8 = The OID for an entry of tlpDeviceName, indexed by device Obj8Value = The device's display name OBJ9 = The OID for an entry of tlpDeviceLocation, indexed by device Obj9Value = The device's location OBJ10 = The OID for an entry of tlpDeviceRegion, indexed by device Obj10Value= The device's region OBJ11 = The OID for an entry of tlpDeviceProtocol, indexed by device Obj11Value= The device's protocol (display string format) ") tlpNotifySystemUpdate = NotificationType((1, 3, 6, 1, 4, 1, 850, 1, 4, 1, 5)) if mibBuilder.loadTexts: tlpNotifySystemUpdate.setStatus('current') if mibBuilder.loadTexts: tlpNotifySystemUpdate.setDescription("Used to inform another entity of an engine's startup. The varbinds that follow are: OBJ1 = tlpAgentType Obj1Value = The type of engine providing this data OBJ2 = tlpAgentVersion Obj2Value = The current version of the engine OBJ3 = tlpAgentMAC Obj3Value = The MAC address of the engine OBJ4 = tlpAgentSerialNum Obj4Value = The serial number of the web card [should be 0 on PC] --- if this trap is extended, place all static OIDs above this mark. all objects below --- the number of devices (tlpDeviceNumDevices) is explicit as per device for enumeration by --- the target receiver OBJ5 = tlpDeviceNumDevices Obj5Value = The number of devices attached --- The following objects will be replicated per each device: OBJ6 = The OID for an entry of tlpDeviceManufacturer, indexed by device Obj6Value = The device's manufacturer OBJ7 = The OID for an entry of tlpDeviceModel, indexed by device Obj7Value = The device's model name OBJ8 = The OID for an entry of tlpDeviceName, indexed by device Obj8Value = The device's display name OBJ9 = The OID for an entry of tlpDeviceLocation, indexed by device Obj9Value = The device's location OBJ10 = The OID for an entry of tlpDeviceRegion, indexed by device Obj10Value= The device's region OBJ11 = The OID for an entry of tlpDeviceProtocol, indexed by device Obj11Value= The device's protocol (display string format) ") mibBuilder.exportSymbols("TRIPPLITE-PRODUCTS", tlpPduAlarmLoadOff19=tlpPduAlarmLoadOff19, tlpDeviceLocation=tlpDeviceLocation, tlpPduIdentNumOutlets=tlpPduIdentNumOutlets, tlpAtsIdentEntry=tlpAtsIdentEntry, tlpCoolingAlarmAutoCoolingOn=tlpCoolingAlarmAutoCoolingOn, tlpAtsInputBadVoltageThreshold=tlpAtsInputBadVoltageThreshold, tlpSoftware=tlpSoftware, tlpAtsCircuitCurrentMax=tlpAtsCircuitCurrentMax, tlpUpsAlarmBusOverVoltage=tlpUpsAlarmBusOverVoltage, tlpUpsControlUpsOff=tlpUpsControlUpsOff, tlpUpsAlarmTempBad=tlpUpsAlarmTempBad, tlpUpsBatteryPackConfigCapacityUnits=tlpUpsBatteryPackConfigCapacityUnits, tlpUpsBatteryPackDetailEntry=tlpUpsBatteryPackDetailEntry, tlpPduOutletShedDelay=tlpPduOutletShedDelay, tlpUpsAlarmDepletedBattery=tlpUpsAlarmDepletedBattery, tlpPduOutletPhase=tlpPduOutletPhase, tlpAlarmTableRowRef=tlpAlarmTableRowRef, tlpPduDevicePowerOnDelay=tlpPduDevicePowerOnDelay, tlpAtsSupportsTable=tlpAtsSupportsTable, tlpEnvTemperatureTable=tlpEnvTemperatureTable, tlpAtsAlarmSource1Temperature=tlpAtsAlarmSource1Temperature, tlpUpsDevicePowerOnDelay=tlpUpsDevicePowerOnDelay, tlpUpsAlarmOutputCurrentChanged=tlpUpsAlarmOutputCurrentChanged, tlpAtsAlarmLoadOff37=tlpAtsAlarmLoadOff37, tlpAtsOutputActivePower=tlpAtsOutputActivePower, tlpUpsDeviceMainLoadState=tlpUpsDeviceMainLoadState, tlpPduOutputActivePower=tlpPduOutputActivePower, tlpUpsAlarmLoadOff39=tlpUpsAlarmLoadOff39, tlpEnvAlarmInputContact02=tlpEnvAlarmInputContact02, tlpAtsIdentNumOutletGroups=tlpAtsIdentNumOutletGroups, tlpAgentAttributesAutostart=tlpAgentAttributesAutostart, tlpAtsDisplayUnits=tlpAtsDisplayUnits, tlpAtsDeviceEntry=tlpAtsDeviceEntry, tlpCoolingAlarmCompressorFailure=tlpCoolingAlarmCompressorFailure, tlpUpsBypassLineCurrent=tlpUpsBypassLineCurrent, tlpUpsAlarmUpsOutputOff=tlpUpsAlarmUpsOutputOff, tlpUpsConfigOverLoadThreshold=tlpUpsConfigOverLoadThreshold, tlpAtsInputPhaseVoltageMax=tlpAtsInputPhaseVoltageMax, tlpUpsAlarmLoadLevelAboveThresholdPhase2=tlpUpsAlarmLoadLevelAboveThresholdPhase2, tlpPduControlTable=tlpPduControlTable, tlpUpsIdentNumPhases=tlpUpsIdentNumPhases, tlpAtsAlarmCircuitBreakerOpen04=tlpAtsAlarmCircuitBreakerOpen04, tlpUpsOutletGroupDescription=tlpUpsOutletGroupDescription, tlpDeviceName=tlpDeviceName, tlpSwitchControl=tlpSwitchControl, tlpAlarmUserDefined05=tlpAlarmUserDefined05, tlpAgentSnmpContactEntry=tlpAgentSnmpContactEntry, tlpCoolingDevice=tlpCoolingDevice, tlpAtsDeviceAggregatePowerFactor=tlpAtsDeviceAggregatePowerFactor, tlpUpsOutletCurrent=tlpUpsOutletCurrent, tlpPduInputNominalVoltage=tlpPduInputNominalVoltage, tlpUpsBatteryPackIdentModel=tlpUpsBatteryPackIdentModel, tlpAtsConfigVoltageRangeLimitsTable=tlpAtsConfigVoltageRangeLimitsTable, tlpAtsBreaker=tlpAtsBreaker, tlpPduDetail=tlpPduDetail, tlpPduControlPduReboot=tlpPduControlPduReboot, tlpAtsAlarmLoadOff16=tlpAtsAlarmLoadOff16, tlpPduSupportsOutletGroup=tlpPduSupportsOutletGroup, tlpPduOutletGroupCommand=tlpPduOutletGroupCommand, tlpAgentEmailContactEntry=tlpAgentEmailContactEntry, tlpEnvHumidityEntry=tlpEnvHumidityEntry, tlpEnvConfigTable=tlpEnvConfigTable, tlpAtsConfigSource2ReturnTime=tlpAtsConfigSource2ReturnTime, tlpAtsIdent=tlpAtsIdent, tlpCoolingAlarmAirFilterClogged=tlpCoolingAlarmAirFilterClogged, tlpCoolingAlarmAirFilterRunHoursViolation=tlpCoolingAlarmAirFilterRunHoursViolation, tlpUpsOutput=tlpUpsOutput, tlpAtsDeviceOutputPowerTotal=tlpAtsDeviceOutputPowerTotal, tlpPduInputHighTransferVoltageLowerBound=tlpPduInputHighTransferVoltageLowerBound, tlpUpsIdentTable=tlpUpsIdentTable, tlpUpsConfigBypassUpperLimitVoltage=tlpUpsConfigBypassUpperLimitVoltage, tlpPduInputEntry=tlpPduInputEntry, tlpAtsAlarmLoadOff10=tlpAtsAlarmLoadOff10, tlpDeviceTypes=tlpDeviceTypes, tlpPduDeviceAggregatePowerFactor=tlpPduDeviceAggregatePowerFactor, tlpAtsAlarmLoadOff25=tlpAtsAlarmLoadOff25, tlpUpsWatchdogTable=tlpUpsWatchdogTable, tlpEnvIdentTempSupported=tlpEnvIdentTempSupported, tlpPdu=tlpPdu, tlpEnvInputContactEntry=tlpEnvInputContactEntry, tlpAtsAlarmLoadOff32=tlpAtsAlarmLoadOff32, tlpUpsSupportsOutletGroup=tlpUpsSupportsOutletGroup, tlpUpsConfigOutputVoltage=tlpUpsConfigOutputVoltage, tlpUps=tlpUps, tlpUpsBypassLineVoltage=tlpUpsBypassLineVoltage, tlpAtsDeviceTemperatureC=tlpAtsDeviceTemperatureC, tlpPduOutletGroupEntry=tlpPduOutletGroupEntry, tlpDeviceIdentDateInstalled=tlpDeviceIdentDateInstalled, tlpUpsAlarmLoadOff40=tlpUpsAlarmLoadOff40, tlpAgentAlarms=tlpAgentAlarms, tlpAtsHeatsinkTemperatureF=tlpAtsHeatsinkTemperatureF, tlpPduDevicePhaseImbalance=tlpPduDevicePhaseImbalance, tlpPduCircuitPowerFactor=tlpPduCircuitPowerFactor, tlpAgentEmailContactIndex=tlpAgentEmailContactIndex, tlpUpsOutletName=tlpUpsOutletName, tlpPduOutputPowerFactor=tlpPduOutputPowerFactor, tlpUpsAlarmLoadOff13=tlpUpsAlarmLoadOff13, tlpPduOutletGroupIndex=tlpPduOutletGroupIndex, tlpPduOutputVoltage=tlpPduOutputVoltage, tlpAtsControl=tlpAtsControl, tlpEnvirosense=tlpEnvirosense, tlpUpsOutputNominalVoltage=tlpUpsOutputNominalVoltage, tlpUpsConfigAutoRampOnTransition=tlpUpsConfigAutoRampOnTransition, tlpUpsConfig=tlpUpsConfig, tlpSwitchDetail=tlpSwitchDetail, tlpAtsIdentTable=tlpAtsIdentTable, tlpAtsInputCurrentLimit=tlpAtsInputCurrentLimit, tlpAtsCircuitTotalCurrent=tlpAtsCircuitTotalCurrent, tlpAtsDisplayIntensity=tlpAtsDisplayIntensity, tlpAtsConfigThresholdTable=tlpAtsConfigThresholdTable, tlpAgentMAC=tlpAgentMAC, tlpPduAlarmLoadOff03=tlpPduAlarmLoadOff03, tlpAtsAlarmOutputBad=tlpAtsAlarmOutputBad, tlpPduBreaker=tlpPduBreaker, tlpUpsConfigAutoRestartLowVoltageCutoff=tlpUpsConfigAutoRestartLowVoltageCutoff, tlpAtsCircuitEntry=tlpAtsCircuitEntry, tlpAtsAlarmLoadOff11=tlpAtsAlarmLoadOff11, tlpPduControlPduOff=tlpPduControlPduOff, tlpAtsDetail=tlpAtsDetail, tlpPduOutlet=tlpPduOutlet, tlpUpsAlarmLoadOff03=tlpUpsAlarmLoadOff03, tlpPduAlarmLoadOff24=tlpPduAlarmLoadOff24, tlpUpsAlarmLoadOff27=tlpUpsAlarmLoadOff27, tlpPduInputTable=tlpPduInputTable, tlpUpsInputPhaseFrequency=tlpUpsInputPhaseFrequency, tlpAtsOutletEntry=tlpAtsOutletEntry, tlpPduAlarmLoadOff=tlpPduAlarmLoadOff, tlpCoolingAlarmDischargePressureHigh=tlpCoolingAlarmDischargePressureHigh, tlpPduBreakerEntry=tlpPduBreakerEntry, tlpUpsConfigThresholdEntry=tlpUpsConfigThresholdEntry, tlpAlarmControlDetail=tlpAlarmControlDetail, tlpAtsDeviceMainLoadControllable=tlpAtsDeviceMainLoadControllable, tlpUpsBatteryPackIdentManufacturer=tlpUpsBatteryPackIdentManufacturer, tlpEnvAlarms=tlpEnvAlarms, tlpPduDeviceTotalInputPowerRating=tlpPduDeviceTotalInputPowerRating, tlpAtsInputNominalVoltagePhaseToNeutral=tlpAtsInputNominalVoltagePhaseToNeutral, tlpUpsBatteryPackConfigDesignCapacity=tlpUpsBatteryPackConfigDesignCapacity, tlpNotifications=tlpNotifications, tlpAlarmUserDefined=tlpAlarmUserDefined, tlpAgentSnmpContacts=tlpAgentSnmpContacts, tlpDeviceManufacturer=tlpDeviceManufacturer, tlpUpsControlUpsReboot=tlpUpsControlUpsReboot, tlpAtsAlarmCircuitBreakerOpen05=tlpAtsAlarmCircuitBreakerOpen05, tlpUpsBypassLineIndex=tlpUpsBypassLineIndex, tlpPduHeatsinkEntry=tlpPduHeatsinkEntry, tlpUpsConfigLineSensitivity=tlpUpsConfigLineSensitivity, tlpAtsAlarmCurrentAboveThresholdA2=tlpAtsAlarmCurrentAboveThresholdA2, tlpAtsOutletTable=tlpAtsOutletTable, tlpAlarmsPresent=tlpAlarmsPresent, tlpAtsDeviceOutputCurrentPrecision=tlpAtsDeviceOutputCurrentPrecision, tlpAtsIdentNumBreakers=tlpAtsIdentNumBreakers, tlpUpsAlarmAwaitingPower=tlpUpsAlarmAwaitingPower, tlpUpsBatteryPackDetailTable=tlpUpsBatteryPackDetailTable, tlpAgentEmailContactRowStatus=tlpAgentEmailContactRowStatus, tlpEnvDetail=tlpEnvDetail, tlpEnvIdentEntry=tlpEnvIdentEntry, tlpCoolingAlarmDischargePressureSensorFault=tlpCoolingAlarmDischargePressureSensorFault, tlpAtsAlarmLoadOff13=tlpAtsAlarmLoadOff13, tlpPduAlarmInputBad=tlpPduAlarmInputBad, tlpCoolingAlarmSuctionTemperatureSensorFault=tlpCoolingAlarmSuctionTemperatureSensorFault, tlpPduSupportsEnergywise=tlpPduSupportsEnergywise, tlpPduDisplayAutoScroll=tlpPduDisplayAutoScroll, tlpAtsInputNominalVoltagePhaseToPhase=tlpAtsInputNominalVoltagePhaseToPhase, tlpPduAlarmLoadOff02=tlpPduAlarmLoadOff02, tlpUpsOutputSource=tlpUpsOutputSource, tlpPduAlarmLoadOff01=tlpPduAlarmLoadOff01, tlpUpsSupportsEntry=tlpUpsSupportsEntry, tlpUpsOutputLineEntry=tlpUpsOutputLineEntry, tlpUpsAlarmBypassBad=tlpUpsAlarmBypassBad, tlpPduOutletGroupName=tlpPduOutletGroupName, tlpPduOutputCurrent=tlpPduOutputCurrent, tlpAtsOutputSource=tlpAtsOutputSource, tlpEnvAlarmTemperatureBeyondLimits=tlpEnvAlarmTemperatureBeyondLimits, tlpAtsConfigThresholdEntry=tlpAtsConfigThresholdEntry, tlpCoolingAlarmEvaporatorFailure=tlpCoolingAlarmEvaporatorFailure, tlpEnvIdentNumEnvirosense=tlpEnvIdentNumEnvirosense, tlpUpsAlarmLoadOff15=tlpUpsAlarmLoadOff15, tlpAtsAlarmLoadOff28=tlpAtsAlarmLoadOff28, tlpAtsConfigVoltageRangeEntry=tlpAtsConfigVoltageRangeEntry, tlpPduOutletCurrent=tlpPduOutletCurrent, tlpAtsInputSourceInUse=tlpAtsInputSourceInUse, tlpCoolingAlarmSuctionPressureLowStartFailure=tlpCoolingAlarmSuctionPressureLowStartFailure, tlpPduHeatsink=tlpPduHeatsink, tlpUpsIdentNumUps=tlpUpsIdentNumUps, tlpUpsOutletCommand=tlpUpsOutletCommand, tlpUpsConfigEntry=tlpUpsConfigEntry, tlpPduInputPhaseVoltageMin=tlpPduInputPhaseVoltageMin, tlpAtsDisplayScheme=tlpAtsDisplayScheme, tlpUpsAlarmLoadOff21=tlpUpsAlarmLoadOff21, tlpDeviceIdentEntry=tlpDeviceIdentEntry, tlpUpsAlarmFanFailure=tlpUpsAlarmFanFailure, tlpAtsOutletShedAction=tlpAtsOutletShedAction, tlpPduSupportsRampShed=tlpPduSupportsRampShed, tlpUpsDeviceMainLoadControllable=tlpUpsDeviceMainLoadControllable, tlpEnvTemperatureF=tlpEnvTemperatureF, tlpUpsAlarmCurrentAboveThreshold2=tlpUpsAlarmCurrentAboveThreshold2, tlpUpsAlarmInverterSoftStartBad=tlpUpsAlarmInverterSoftStartBad, tlpAlarmControlDescr=tlpAlarmControlDescr, tlpAtsDisplayTable=tlpAtsDisplayTable, tlpAtsAlarmVoltage=tlpAtsAlarmVoltage, tlpUpsControlEntry=tlpUpsControlEntry, tlpUpsInputPhaseVoltage=tlpUpsInputPhaseVoltage, tlpAtsInputPhaseVoltageMin=tlpAtsInputPhaseVoltageMin, tlpPduOutletState=tlpPduOutletState, tlpPduControl=tlpPduControl, tlpPduOutletCircuit=tlpPduOutletCircuit, tlpAgentAttributesSNMPv3Enabled=tlpAgentAttributesSNMPv3Enabled, tlpPduHeatsinkTable=tlpPduHeatsinkTable, tlpAgentAttributes=tlpAgentAttributes, tlpAtsAlarmLoadOff40=tlpAtsAlarmLoadOff40, tlpUpsOutputFrequency=tlpUpsOutputFrequency, tlpUpsConfigLowBatteryThreshold=tlpUpsConfigLowBatteryThreshold, tlpCoolingDetail=tlpCoolingDetail, tlpPduInputNominalVoltagePhaseToPhase=tlpPduInputNominalVoltagePhaseToPhase, tlpPduCircuitCurrentMin=tlpPduCircuitCurrentMin, tlpAtsOutputTable=tlpAtsOutputTable, tlpAtsAlarmLoadOff01=tlpAtsAlarmLoadOff01, tlpPduControlRamp=tlpPduControlRamp, tlpCoolingAlarmReturnAirSensorFault=tlpCoolingAlarmReturnAirSensorFault, tlpCoolingAlarmStartupLinePressureImbalance=tlpCoolingAlarmStartupLinePressureImbalance, tlpPduDevice=tlpPduDevice, tlpRackTrackIdent=tlpRackTrackIdent, tlpPduCircuit=tlpPduCircuit, tlpAtsInputBadTransferVoltageLowerBound=tlpAtsInputBadTransferVoltageLowerBound, tlpAtsHeatsinkEntry=tlpAtsHeatsinkEntry, tlpDeviceType=tlpDeviceType, tlpAtsConfigSource2TransferSet=tlpAtsConfigSource2TransferSet, tlpAtsOutletShedDelay=tlpAtsOutletShedDelay, tlpAtsConfigOverVoltageThreshold=tlpAtsConfigOverVoltageThreshold, tlpAtsAlarmLoadOff04=tlpAtsAlarmLoadOff04, tlpUpsConfigThresholdTable=tlpUpsConfigThresholdTable, tlpDeviceStatus=tlpDeviceStatus, tlpUpsBatteryPackDetailLastReplaceDate=tlpUpsBatteryPackDetailLastReplaceDate, tlpUpsDeviceTestResultsStatus=tlpUpsDeviceTestResultsStatus, tlpAtsAlarmLoadOff15=tlpAtsAlarmLoadOff15, tlpUpsBypassTable=tlpUpsBypassTable, tlpUpsAlarmLoadOff08=tlpUpsAlarmLoadOff08, tlpUpsBypass=tlpUpsBypass, tlpAtsOutletGroup=tlpAtsOutletGroup, tlpCoolingAlarmCurrentLimit=tlpCoolingAlarmCurrentLimit, tlpUpsInputHighTransferVoltageUpperBound=tlpUpsInputHighTransferVoltageUpperBound, tlpKvmIdent=tlpKvmIdent, tlpAgentAttributesSupportsFTP=tlpAgentAttributesSupportsFTP, tlpUpsOutputLinePower=tlpUpsOutputLinePower, tlpAtsOutletGroupIndex=tlpAtsOutletGroupIndex, tlpPduIdentTable=tlpPduIdentTable, tlpUpsOutletVoltage=tlpUpsOutletVoltage, tlpUpsAlarmUpsOffAsRequested=tlpUpsAlarmUpsOffAsRequested, tlpAtsOutletIndex=tlpAtsOutletIndex, tlpAgentSnmpContactPrivPassword=tlpAgentSnmpContactPrivPassword, tlpPduOutputPhase=tlpPduOutputPhase, tlpEnvAlarmHumidityBeyondLimits=tlpEnvAlarmHumidityBeyondLimits, tlpAgentEmailContactTable=tlpAgentEmailContactTable, tlpUpsWatchdogEntry=tlpUpsWatchdogEntry) mibBuilder.exportSymbols("TRIPPLITE-PRODUCTS", tlpUpsAlarmOnBypass=tlpUpsAlarmOnBypass, tlpAtsConfigEntry=tlpAtsConfigEntry, tlpPduAlarmCircuitBreakerOpen04=tlpPduAlarmCircuitBreakerOpen04, tlpAtsCircuit=tlpAtsCircuit, tlpUpsOutputLineCurrent=tlpUpsOutputLineCurrent, tlpSwitch=tlpSwitch, tlpPduCircuitEntry=tlpPduCircuitEntry, tlpCoolingAlarmEvaporatorCoolingFailure=tlpCoolingAlarmEvaporatorCoolingFailure, tlpUpsInputNominalFrequency=tlpUpsInputNominalFrequency, tlpPduCircuitIndex=tlpPduCircuitIndex, tlpAtsSupportsRampShed=tlpAtsSupportsRampShed, tlpAtsOutletRampDelay=tlpAtsOutletRampDelay, tlpPduAlarmLoadOff37=tlpPduAlarmLoadOff37, tlpAtsAlarmCircuitBreakerOpen02=tlpAtsAlarmCircuitBreakerOpen02, tlpUpsBatteryPackConfigChemistry=tlpUpsBatteryPackConfigChemistry, tlpPduAlarmLoadOff30=tlpPduAlarmLoadOff30, tlpAtsAlarmLoadOff20=tlpAtsAlarmLoadOff20, tlpAtsOutputPhaseType=tlpAtsOutputPhaseType, tlpUpsAlarmOnBattery=tlpUpsAlarmOnBattery, tlpDeviceIdentTotalUptime=tlpDeviceIdentTotalUptime, tlpUpsAlarmInverterCircuitBad=tlpUpsAlarmInverterCircuitBad, tlpAtsIdentNumAts=tlpAtsIdentNumAts, tlpUpsIdent=tlpUpsIdent, tlpAtsCircuitCurrentLimit=tlpAtsCircuitCurrentLimit, tlpAgentSnmpContactIndex=tlpAgentSnmpContactIndex, tlpAtsDeviceMainLoadCommand=tlpAtsDeviceMainLoadCommand, tlpAtsInputBadTransferVoltageUpperBound=tlpAtsInputBadTransferVoltageUpperBound, tlpUpsBatteryPackConfigCellsPerBattery=tlpUpsBatteryPackConfigCellsPerBattery, tlpUpsInputEntry=tlpUpsInputEntry, tlpAgentAttributesSSHCLIPort=tlpAgentAttributesSSHCLIPort, tlpUpsIdentNumInputs=tlpUpsIdentNumInputs, tlpUpsAlarmOutputOffAsRequested=tlpUpsAlarmOutputOffAsRequested, tlpUpsDeviceTable=tlpUpsDeviceTable, tlpPduInputLowTransferVoltage=tlpPduInputLowTransferVoltage, tlpEnvInputContactIndex=tlpEnvInputContactIndex, tlpAtsConfigSourceBrownoutSetMaximum=tlpAtsConfigSourceBrownoutSetMaximum, tlpPduDisplayIntensity=tlpPduDisplayIntensity, tlpUpsBatteryPackDetailNextReplaceDate=tlpUpsBatteryPackDetailNextReplaceDate, tlpAtsInputPhaseVoltage=tlpAtsInputPhaseVoltage, tlpAtsConfigVoltageRangeLimitsEntry=tlpAtsConfigVoltageRangeLimitsEntry, tlpPduIdentEntry=tlpPduIdentEntry, tlpAlarmId=tlpAlarmId, tlpAtsIdentNumPhases=tlpAtsIdentNumPhases, tlpUpsDeviceEntry=tlpUpsDeviceEntry, tlpCoolingAlarmWaterLeak=tlpCoolingAlarmWaterLeak, tlpPduDeviceOutputCurrentPrecision=tlpPduDeviceOutputCurrentPrecision, tlpUpsAlarmLoadOff18=tlpUpsAlarmLoadOff18, tlpUpsAlarmLoadOff19=tlpUpsAlarmLoadOff19, tlpUpsConfigAutoRestartAfterShutdown=tlpUpsConfigAutoRestartAfterShutdown, tlpRackTrackAlarms=tlpRackTrackAlarms, tlpAtsAlarmLoadOff35=tlpAtsAlarmLoadOff35, tlpPduOutputTable=tlpPduOutputTable, tlpPduDisplayScheme=tlpPduDisplayScheme, tlpPduOutletBank=tlpPduOutletBank, tlpUpsBatteryPackConfigBatteriesPerString=tlpUpsBatteryPackConfigBatteriesPerString, tlpCoolingAlarmSupplyAirSensorFault=tlpCoolingAlarmSupplyAirSensorFault, tlpAtsAlarmLoadOff26=tlpAtsAlarmLoadOff26, tlpCoolingAlarmSupplyAirTempHigh=tlpCoolingAlarmSupplyAirTempHigh, tlpUpsInput=tlpUpsInput, tlpUpsBypassFrequency=tlpUpsBypassFrequency, tlpPduAlarmLoadsNotAllOn=tlpPduAlarmLoadsNotAllOn, tlpPduAlarmLoadOff32=tlpPduAlarmLoadOff32, tlpUpsConfigAudibleStatus=tlpUpsConfigAudibleStatus, tlpUpsOutletGroupCommand=tlpUpsOutletGroupCommand, tlpUpsBypassEntry=tlpUpsBypassEntry, tlpUpsDetail=tlpUpsDetail, tlpPduIdentNumPdu=tlpPduIdentNumPdu, tlpAtsInputBadTransferVoltage=tlpAtsInputBadTransferVoltage, tlpUpsBatteryPackDetailTemperatureC=tlpUpsBatteryPackDetailTemperatureC, tlpPduControlEntry=tlpPduControlEntry, tlpPduDeviceMainLoadCommand=tlpPduDeviceMainLoadCommand, tlpUpsAlarms=tlpUpsAlarms, tlpPduSupportsTable=tlpPduSupportsTable, tlpPduHeatsinkTemperatureC=tlpPduHeatsinkTemperatureC, tlpNotifySystemShutdown=tlpNotifySystemShutdown, tlpUpsAlarmInverterUnderVoltage=tlpUpsAlarmInverterUnderVoltage, tlpUpsOutletGroupIndex=tlpUpsOutletGroupIndex, tlpAtsConfigSource1ReturnTime=tlpAtsConfigSource1ReturnTime, tlpUpsBatteryPackIdentFirmware=tlpUpsBatteryPackIdentFirmware, tlpUpsOutletRampAction=tlpUpsOutletRampAction, tlpPduIdentNumCircuits=tlpPduIdentNumCircuits, tlpAtsConfigAutoRampOnTransition=tlpAtsConfigAutoRampOnTransition, tlpCoolingIdentNumCooling=tlpCoolingIdentNumCooling, tlpAgentContacts=tlpAgentContacts, tlpUpsSupportsEnergywise=tlpUpsSupportsEnergywise, tlpAgentAttributesAutostartHTTP=tlpAgentAttributesAutostartHTTP, tlpUpsSupportsTable=tlpUpsSupportsTable, tlpUpsInputPhaseVoltageMin=tlpUpsInputPhaseVoltageMin, tlpUpsWatchdogSecsBeforeReboot=tlpUpsWatchdogSecsBeforeReboot, tlpAgentEmailContactName=tlpAgentEmailContactName, tlpEnvTemperatureC=tlpEnvTemperatureC, tlpAgentAttributesSNMPTrapPort=tlpAgentAttributesSNMPTrapPort, tlpAtsAlarmLoadOff21=tlpAtsAlarmLoadOff21, tlpEnvOutputContactIndex=tlpEnvOutputContactIndex, tlpEnvIdentHumiditySupported=tlpEnvIdentHumiditySupported, tlpUpsAlarmShutdownImminent=tlpUpsAlarmShutdownImminent, tlpAtsAlarms=tlpAtsAlarms, tlpPduDeviceTable=tlpPduDeviceTable, tlpAtsOutputCurrentMax=tlpAtsOutputCurrentMax, tlpUpsConfigAutoBatteryTest=tlpUpsConfigAutoBatteryTest, tlpAtsAlarmLoadOff12=tlpAtsAlarmLoadOff12, tlpEnvAlarmOutputContact01=tlpEnvAlarmOutputContact01, tlpPduAlarmLoadOff29=tlpPduAlarmLoadOff29, tlpUpsInputPhaseCurrent=tlpUpsInputPhaseCurrent, tlpEnvTemperatureLowLimit=tlpEnvTemperatureLowLimit, tlpAtsCircuitPhase=tlpAtsCircuitPhase, tlpAtsConfigHighVoltageTransfer=tlpAtsConfigHighVoltageTransfer, tlpPduAlarmLoadOff22=tlpPduAlarmLoadOff22, tlpAts=tlpAts, tlpPduAlarms=tlpPduAlarms, tlpAgentAttributesAutostartFTP=tlpAgentAttributesAutostartFTP, tlpSwitchIdent=tlpSwitchIdent, tlpUpsAlarmShutdownPending=tlpUpsAlarmShutdownPending, tlpUpsEstimatedChargeRemaining=tlpUpsEstimatedChargeRemaining, tlpUpsInputPhaseEntry=tlpUpsInputPhaseEntry, tlpUpsInputPhaseIndex=tlpUpsInputPhaseIndex, tlpAtsOutletName=tlpAtsOutletName, tlpUpsInputHighTransferVoltageLowerBound=tlpUpsInputHighTransferVoltageLowerBound, tlpUpsBatterySummaryTable=tlpUpsBatterySummaryTable, tlpAtsConfigSource1BrownoutSet=tlpAtsConfigSource1BrownoutSet, tlpUpsOutputTable=tlpUpsOutputTable, tlpPduIdentNumInputs=tlpPduIdentNumInputs, tlpEnvInputContactTable=tlpEnvInputContactTable, tlpPduAlarmLoadOff12=tlpPduAlarmLoadOff12, tlpPduAlarmCircuitBreakerOpen03=tlpPduAlarmCircuitBreakerOpen03, tlpAgentAttributesSNMPPort=tlpAgentAttributesSNMPPort, tlpUpsAlarmLoadOff35=tlpUpsAlarmLoadOff35, tlpPduDeviceMainLoadState=tlpPduDeviceMainLoadState, tlpAgentAttributesAutostartTelnetMenu=tlpAgentAttributesAutostartTelnetMenu, tlpAlarmUserDefined01=tlpAlarmUserDefined01, tlpUpsControlShed=tlpUpsControlShed, tlpAtsControlAtsOn=tlpAtsControlAtsOn, tlpUpsBatteryPackDetailCycleCount=tlpUpsBatteryPackDetailCycleCount, tlpPduInputHighTransferVoltage=tlpPduInputHighTransferVoltage, tlpAlarmEntry=tlpAlarmEntry, tlpPduAlarmCircuitBreakerOpen=tlpPduAlarmCircuitBreakerOpen, tlpUpsOutputLinePercentLoad=tlpUpsOutputLinePercentLoad, tlpUpsDevice=tlpUpsDevice, tlpPduAlarmCurrentAboveThreshold2=tlpPduAlarmCurrentAboveThreshold2, tlpUpsAlarmLoadOff10=tlpUpsAlarmLoadOff10, tlpEnvInputContactName=tlpEnvInputContactName, tlpUpsOutletGroupName=tlpUpsOutletGroupName, tlpAtsConfigOverTemperatureThreshold=tlpAtsConfigOverTemperatureThreshold, tlpAtsAlarmLoadsNotAllOn=tlpAtsAlarmLoadsNotAllOn, tlpPduAlarmLoadOff23=tlpPduAlarmLoadOff23, tlpAtsAlarmLoadOff34=tlpAtsAlarmLoadOff34, tlpAtsOutputCurrent=tlpAtsOutputCurrent, tlpCoolingAlarmDischargePressurePersistentHigh=tlpCoolingAlarmDischargePressurePersistentHigh, tlpRackTrackDevice=tlpRackTrackDevice, tlpEnvTemperatureInAlarm=tlpEnvTemperatureInAlarm, tlpAtsAlarmLoadOff31=tlpAtsAlarmLoadOff31, tlpUpsOutletShedAction=tlpUpsOutletShedAction, tlpAtsAlarmLoadOff29=tlpAtsAlarmLoadOff29, tlpAgentSnmpContactSnmpVersion=tlpAgentSnmpContactSnmpVersion, tlpEnvTemperatureHighLimit=tlpEnvTemperatureHighLimit, tlpPduIdentNumPhases=tlpPduIdentNumPhases, tlpAlarmUserDefined02=tlpAlarmUserDefined02, tlpAtsAlarmCurrentAboveThresholdB2=tlpAtsAlarmCurrentAboveThresholdB2, tlpAtsAlarmLoadOff27=tlpAtsAlarmLoadOff27, tlpPduIdentNumHeatsinks=tlpPduIdentNumHeatsinks, tlpUpsAlarmLoadLevelAboveThresholdPhase3=tlpUpsAlarmLoadLevelAboveThresholdPhase3, tlpUpsBatteryPackConfigMaxCellVoltage=tlpUpsBatteryPackConfigMaxCellVoltage, tlpAtsAlarmOutage=tlpAtsAlarmOutage, tlpPduHeatsinkTemperatureF=tlpPduHeatsinkTemperatureF, tlpUpsAlarmLoadOff33=tlpUpsAlarmLoadOff33, tlpAtsIdentNumHeatsinks=tlpAtsIdentNumHeatsinks, tlpAtsConfigSourceBrownoutSetMinimum=tlpAtsConfigSourceBrownoutSetMinimum, tlpCoolingAlarmCondenserOutletAirSensorFault=tlpCoolingAlarmCondenserOutletAirSensorFault, tlpPduInputPhaseVoltage=tlpPduInputPhaseVoltage, tlpAtsDevicePowerOnDelay=tlpAtsDevicePowerOnDelay, tlpAgentAttributesTelnetCLIPort=tlpAgentAttributesTelnetCLIPort, tlpUpsBatteryPackConfigLocation=tlpUpsBatteryPackConfigLocation, tlpUpsAlarmLoadLevelAboveThresholdPhase1=tlpUpsAlarmLoadLevelAboveThresholdPhase1, tlpUpsAlarmOutputOverload=tlpUpsAlarmOutputOverload, tlpPduAlarmCurrentAboveThreshold=tlpPduAlarmCurrentAboveThreshold, tlpUpsAlarmBusVoltageUnbalanced=tlpUpsAlarmBusVoltageUnbalanced, tlpUpsInputTable=tlpUpsInputTable, tlpPduOutletGroupState=tlpPduOutletGroupState, tlpUpsIdentEntry=tlpUpsIdentEntry, tlpAgentVersion=tlpAgentVersion, tlpUpsAlarmLoadOff37=tlpUpsAlarmLoadOff37, tlpAlarmControlTable=tlpAlarmControlTable, tlpUpsAlarmLoadOff02=tlpUpsAlarmLoadOff02, tlpPduAlarmOutputBad=tlpPduAlarmOutputBad, tlpCoolingAlarmPressureGaugeFailure=tlpCoolingAlarmPressureGaugeFailure, tlpCoolingAlarms=tlpCoolingAlarms, tlpDeviceModel=tlpDeviceModel, tlpPduDisplayEntry=tlpPduDisplayEntry, tlpAtsDisplayAutoScroll=tlpAtsDisplayAutoScroll, tlpPduCircuitUtilization=tlpPduCircuitUtilization, tlpAgentAttributesSnmp=tlpAgentAttributesSnmp, tlpPduAlarmLoadOff04=tlpPduAlarmLoadOff04, tlpAtsAlarmSource1Outage=tlpAtsAlarmSource1Outage, tlpUpsOutputLineIndex=tlpUpsOutputLineIndex, tlpAtsControlRamp=tlpAtsControlRamp, tlpAgentAttributesTelnetMenuPort=tlpAgentAttributesTelnetMenuPort, tlpDevice=tlpDevice, tlpPduDeviceOutputPowerTotal=tlpPduDeviceOutputPowerTotal, tlpUpsAlarmFuseFailure=tlpUpsAlarmFuseFailure, tlpPduAlarmCurrentAboveThreshold3=tlpPduAlarmCurrentAboveThreshold3, tlpAtsConfigLowVoltageReset=tlpAtsConfigLowVoltageReset, tlpAtsInput=tlpAtsInput, tlpUpsAlarmBatteryUnderVoltage=tlpUpsAlarmBatteryUnderVoltage, tlpAtsIdentNumOutlets=tlpAtsIdentNumOutlets, tlpUpsBattery=tlpUpsBattery, tlpAtsConfigHighVoltageReset=tlpAtsConfigHighVoltageReset, tlpAgentAttributesSupports=tlpAgentAttributesSupports, tlpUpsBatteryPackConfigCellCapacity=tlpUpsBatteryPackConfigCellCapacity, tlpAgentAttributesSupportsSNMPTrap=tlpAgentAttributesSupportsSNMPTrap, tlpPduAlarmLoadOff08=tlpPduAlarmLoadOff08, tlpAtsControlAtsReboot=tlpAtsControlAtsReboot, tlpDeviceIdentTable=tlpDeviceIdentTable, tlpAlarmUserDefined06=tlpAlarmUserDefined06, tlpUpsDeviceTemperatureC=tlpUpsDeviceTemperatureC, tlpPduAlarmCircuitBreakerOpen01=tlpPduAlarmCircuitBreakerOpen01, tlpAtsOutletControllable=tlpAtsOutletControllable, tlpPduAlarmLoadOff39=tlpPduAlarmLoadOff39, tlpPduOutletGroupDescription=tlpPduOutletGroupDescription, tlpUpsAlarmLoadLevelAboveThresholdTotal=tlpUpsAlarmLoadLevelAboveThresholdTotal, tlpAtsOutletCircuit=tlpAtsOutletCircuit, tlpEnvHumidityLowLimit=tlpEnvHumidityLowLimit, tlpAgentAttributesSupportsSSHMenu=tlpAgentAttributesSupportsSSHMenu, tlpAtsCircuitIndex=tlpAtsCircuitIndex, tlpUpsOutletRampDelay=tlpUpsOutletRampDelay, tlpAgentAttributesSNMPv2cEnabled=tlpAgentAttributesSNMPv2cEnabled, tlpPduAlarmLoadOff20=tlpPduAlarmLoadOff20, tlpAtsOutletGroupRowStatus=tlpAtsOutletGroupRowStatus, tlpAgentSnmpContactSecurityName=tlpAgentSnmpContactSecurityName, tlpCoolingAlarmInverterCommunicationsFault=tlpCoolingAlarmInverterCommunicationsFault, tlpUpsOutputLineTable=tlpUpsOutputLineTable, tlpUpsOutletGroupState=tlpUpsOutletGroupState, tlpAtsControlTable=tlpAtsControlTable, tlpUpsAlarmInputBad=tlpUpsAlarmInputBad, tlpUpsOutletDescription=tlpUpsOutletDescription, tlpUpsControlBypass=tlpUpsControlBypass, tlpAtsOutputPowerFactor=tlpAtsOutputPowerFactor, tlpAtsAlarmCircuitBreakerOpen=tlpAtsAlarmCircuitBreakerOpen, tlpUpsBatteryPackIdentSerialNum=tlpUpsBatteryPackIdentSerialNum, tlpAtsInputSourceAvailability=tlpAtsInputSourceAvailability, tlpUpsInputLowTransferVoltage=tlpUpsInputLowTransferVoltage, tlpEnvAlarmOutputContact04=tlpEnvAlarmOutputContact04, tlpAtsInputHighTransferVoltageLowerBound=tlpAtsInputHighTransferVoltageLowerBound, tlpAtsOutletCurrent=tlpAtsOutletCurrent, tlpUpsBatteryStatus=tlpUpsBatteryStatus, tlpUpsInputPhasePower=tlpUpsInputPhasePower, tlpUpsOutletGroup=tlpUpsOutletGroup, tlpAgentAttributesHTTPSPort=tlpAgentAttributesHTTPSPort, tlpUpsAlarmBatteryBad=tlpUpsAlarmBatteryBad, tlpEnvInputContactCurrentState=tlpEnvInputContactCurrentState, tlpUpsAlarmLoadOff11=tlpUpsAlarmLoadOff11, tlpUpsAlarmLoadOff30=tlpUpsAlarmLoadOff30, tlpUpsAlarmLoadOff29=tlpUpsAlarmLoadOff29, tlpUpsConfigInputFrequency=tlpUpsConfigInputFrequency, tlpAtsAlarmLoadOff02=tlpAtsAlarmLoadOff02) mibBuilder.exportSymbols("TRIPPLITE-PRODUCTS", tlpUpsAlarmBatteryOverVoltage=tlpUpsAlarmBatteryOverVoltage, tlpAtsOutletGroupState=tlpAtsOutletGroupState, tlpAtsHeatsinkTable=tlpAtsHeatsinkTable, tlpUpsAlarmGeneralFault=tlpUpsAlarmGeneralFault, tlpUpsAlarmLoadOff=tlpUpsAlarmLoadOff, tlpAtsAlarmCurrentAboveThresholdB1=tlpAtsAlarmCurrentAboveThresholdB1, tlpUpsConfigBatteryAgeThreshold=tlpUpsConfigBatteryAgeThreshold, tlpAtsDeviceGeneralFault=tlpAtsDeviceGeneralFault, tlpPduHeatsinkIndex=tlpPduHeatsinkIndex, tlpUpsBatteryPackConfigTable=tlpUpsBatteryPackConfigTable, tlpAgentSnmpContactRowStatus=tlpAgentSnmpContactRowStatus, tlpUpsInputPhaseVoltageMax=tlpUpsInputPhaseVoltageMax, tlpUpsAlarmLoadsNotAllOn=tlpUpsAlarmLoadsNotAllOn, tlpAtsOutletDescription=tlpAtsOutletDescription, tlpAtsAlarmLoadOff33=tlpAtsAlarmLoadOff33, tlpAgentEmailContactAddress=tlpAgentEmailContactAddress, tlpCoolingAlarmCondensatePumpFault=tlpCoolingAlarmCondensatePumpFault, tlpPduAlarmLoadOff35=tlpPduAlarmLoadOff35, tlpAtsConfigLowVoltageTransfer=tlpAtsConfigLowVoltageTransfer, tlpPduInputPhasePhaseType=tlpPduInputPhasePhaseType, tlpAgentType=tlpAgentType, tlpAgentUuid=tlpAgentUuid, tlpUpsDeviceTemperatureF=tlpUpsDeviceTemperatureF, tlpUpsBatteryPackConfigMinCellVoltage=tlpUpsBatteryPackConfigMinCellVoltage, tlpUpsOutputLineFrequency=tlpUpsOutputLineFrequency, tlpAgentDriverVersion=tlpAgentDriverVersion, tlpPduAlarmLoadOff33=tlpPduAlarmLoadOff33, tlpUpsSupportsOutletCurrentPower=tlpUpsSupportsOutletCurrentPower, tlpAgentAttributesAutostartSSHMenu=tlpAgentAttributesAutostartSSHMenu, tlpPduOutletGroup=tlpPduOutletGroup, tlpAtsConfigOverLoadThreshold=tlpAtsConfigOverLoadThreshold, tlpPduInputPhaseCurrent=tlpPduInputPhaseCurrent, tlpUpsConfigAutoRestartTable=tlpUpsConfigAutoRestartTable, tlpAlarmAcknowledged=tlpAlarmAcknowledged, tlpPduOutletShedAction=tlpPduOutletShedAction, tlpUpsAlarmCurrentAboveThreshold=tlpUpsAlarmCurrentAboveThreshold, tlpPduOutletRampDelay=tlpPduOutletRampDelay, tlpAtsAlarmLoadOff07=tlpAtsAlarmLoadOff07, tlpEnvIdentTable=tlpEnvIdentTable, tlpCoolingIdent=tlpCoolingIdent, tlpDeviceIndex=tlpDeviceIndex, tlpEnvHumidityInAlarm=tlpEnvHumidityInAlarm, tlpEnvOutputContactTable=tlpEnvOutputContactTable, tlpUpsWatchdogSupported=tlpUpsWatchdogSupported, tlpUpsWatchdog=tlpUpsWatchdog, tlpDeviceIdentCommPortName=tlpDeviceIdentCommPortName, tlpAtsAlarmSource2Temperature=tlpAtsAlarmSource2Temperature, tlpUpsBatteryDetailCapacity=tlpUpsBatteryDetailCapacity, tlpAtsOutletGroupEntry=tlpAtsOutletGroupEntry, tlpUpsAlarmLoadOff12=tlpUpsAlarmLoadOff12, tlpPduConfigTable=tlpPduConfigTable, tlpAgentAttributesSSHMenuPort=tlpAgentAttributesSSHMenuPort, tlpAtsAlarmLoadOff14=tlpAtsAlarmLoadOff14, tlpCoolingAlarmSuctionPressurePersistentLow=tlpCoolingAlarmSuctionPressurePersistentLow, tlpPduOutputEntry=tlpPduOutputEntry, tlpDeviceTable=tlpDeviceTable, tlpAtsAlarmLoadOff23=tlpAtsAlarmLoadOff23, tlpPduIdent=tlpPduIdent, tlpRackTrackControl=tlpRackTrackControl, tlpUpsInputPhaseTable=tlpUpsInputPhaseTable, tlpKvmIdentNumKvm=tlpKvmIdentNumKvm, tlpEnvAlarmInputContact01=tlpEnvAlarmInputContact01, tlpPduCircuitTable=tlpPduCircuitTable, tlpAtsOutletRampAction=tlpAtsOutletRampAction, tlpAtsCircuitInputVoltage=tlpAtsCircuitInputVoltage, tlpAtsInputHighTransferVoltage=tlpAtsInputHighTransferVoltage, tlpAgentAttributesHTTPPort=tlpAgentAttributesHTTPPort, tlpPduBreakerStatus=tlpPduBreakerStatus, tlpPduInput=tlpPduInput, tlpAgentNumEmailContacts=tlpAgentNumEmailContacts, tlpAtsDisplayOrientation=tlpAtsDisplayOrientation, tlpPduAlarmLoadOff06=tlpPduAlarmLoadOff06, tlpUpsOutputEntry=tlpUpsOutputEntry, tlpPduOutletEntry=tlpPduOutletEntry, tlpUpsBatteryRunTimeRemaining=tlpUpsBatteryRunTimeRemaining, tlpPduOutputCurrentMin=tlpPduOutputCurrentMin, tlpPduOutletGroupRowStatus=tlpPduOutletGroupRowStatus, tlpAtsOutletPhase=tlpAtsOutletPhase, tlpUpsAlarmBusUnderVoltage=tlpUpsAlarmBusUnderVoltage, tlpUpsConfigOutputFrequency=tlpUpsConfigOutputFrequency, tlpPduAlarmOutputOff=tlpPduAlarmOutputOff, tlpAtsAlarmSource2OverVoltage=tlpAtsAlarmSource2OverVoltage, tlpUpsControlUpsOn=tlpUpsControlUpsOn, tlpAlarmControlSeverity=tlpAlarmControlSeverity, tlpCoolingAlarmPowerButtonPressed=tlpCoolingAlarmPowerButtonPressed, tlpPduCircuitCurrentMax=tlpPduCircuitCurrentMax, tlpUpsOutletGroupEntry=tlpUpsOutletGroupEntry, tlpPduOutput=tlpPduOutput, tlpDeviceIdentCurrentUptime=tlpDeviceIdentCurrentUptime, tlpUpsAlarmEPOActive=tlpUpsAlarmEPOActive, tlpPduOutletControllable=tlpPduOutletControllable, tlpKvmDevice=tlpKvmDevice, tlpDeviceIdentCommPortType=tlpDeviceIdentCommPortType, tlpPduInputNominalVoltagePhaseToNeutral=tlpPduInputNominalVoltagePhaseToNeutral, tlpNotify=tlpNotify, tlpUpsAlarmLoadOff06=tlpUpsAlarmLoadOff06, tlpPduInputLowTransferVoltageUpperBound=tlpPduInputLowTransferVoltageUpperBound, tlpAtsInputSourceTransitionCount=tlpAtsInputSourceTransitionCount, tlpPduOutletGroupTable=tlpPduOutletGroupTable, tlpUpsBatteryDetailTable=tlpUpsBatteryDetailTable, tlpUpsOutletEntry=tlpUpsOutletEntry, tlpAtsConfigSourceSelect=tlpAtsConfigSourceSelect, tlpUpsOutlet=tlpUpsOutlet, tlpPduCircuitPhase=tlpPduCircuitPhase, tlpAtsConfigSource1TransferReset=tlpAtsConfigSource1TransferReset, tlpPduAlarmCircuitBreakerOpen02=tlpPduAlarmCircuitBreakerOpen02, tlpEnvAlarmOutputContact03=tlpEnvAlarmOutputContact03, tlpPduOutputPhaseType=tlpPduOutputPhaseType, tlpAlarmUserDefined08=tlpAlarmUserDefined08, tlpEnvHumidityHumidity=tlpEnvHumidityHumidity, tlpAtsOutputVoltage=tlpAtsOutputVoltage, tlpPduDeviceMainLoadControllable=tlpPduDeviceMainLoadControllable, tlpAtsHeatsinkTemperatureC=tlpAtsHeatsinkTemperatureC, tlpAtsInputPhaseCurrent=tlpAtsInputPhaseCurrent, tlpPduIdentNumOutputs=tlpPduIdentNumOutputs, tlpUpsAlarmLoadOff24=tlpUpsAlarmLoadOff24, tlpPduAlarmLoadOff05=tlpPduAlarmLoadOff05, tlpDeviceIdentHardwareVersion=tlpDeviceIdentHardwareVersion, tlpCoolingAlarmFanOverCurrent=tlpCoolingAlarmFanOverCurrent, tlpPduOutletDescription=tlpPduOutletDescription, tlpEnvIdent=tlpEnvIdent, tlpCoolingAlarmCondenserInletAirSensorFault=tlpCoolingAlarmCondenserInletAirSensorFault, tlpUpsInputHighTransferVoltage=tlpUpsInputHighTransferVoltage, tlpAtsControlEntry=tlpAtsControlEntry, tlpUpsControlSelfTest=tlpUpsControlSelfTest, tlpUpsBatteryPackIdentIndex=tlpUpsBatteryPackIdentIndex, tlpPduControlPduOn=tlpPduControlPduOn, tlpEnvNumOutputContacts=tlpEnvNumOutputContacts, tlpAtsControlAtsOff=tlpAtsControlAtsOff, tlpAgentSnmpContactPort=tlpAgentSnmpContactPort, tlpPduHeatsinkStatus=tlpPduHeatsinkStatus, tlpPduDisplayTable=tlpPduDisplayTable, tlpPduOutputSource=tlpPduOutputSource, tlpAtsHeatsinkIndex=tlpAtsHeatsinkIndex, tlpAgentSnmpContactName=tlpAgentSnmpContactName, tlpUpsBatteryPackDetailTemperatureF=tlpUpsBatteryPackDetailTemperatureF, tlpUpsAlarmLoadOff25=tlpUpsAlarmLoadOff25, tlpUpsConfigAutoRestartDelayedWakeup=tlpUpsConfigAutoRestartDelayedWakeup, tlpPduCircuitTotalCurrent=tlpPduCircuitTotalCurrent, tlpAgentConfig=tlpAgentConfig, tlpUpsConfigEconomicMode=tlpUpsConfigEconomicMode, tlpAtsInputEntry=tlpAtsInputEntry, tlpUpsAlarmLoadOff26=tlpUpsAlarmLoadOff26, tlpAtsAlarmLoadOff24=tlpAtsAlarmLoadOff24, tlpPduInputPhaseEntry=tlpPduInputPhaseEntry, tlpAgentIdent=tlpAgentIdent, tlpCoolingAlarmLowRefrigerantStartupFault=tlpCoolingAlarmLowRefrigerantStartupFault, tlpSwitchConfig=tlpSwitchConfig, tlpSwitchDevice=tlpSwitchDevice, tlpUpsBatteryPackIdentSKU=tlpUpsBatteryPackIdentSKU, tlpPduDisplayUnits=tlpPduDisplayUnits, tlpUpsConfigLowBatteryTime=tlpUpsConfigLowBatteryTime, tlpUpsIdentNumBypass=tlpUpsIdentNumBypass, tlpUpsControlRamp=tlpUpsControlRamp, tlpAtsCircuitUtilization=tlpAtsCircuitUtilization, tlpAgentAttributesAutostartSSHCLI=tlpAgentAttributesAutostartSSHCLI, tlpUpsAlarmExternalNonSmartBatteryAgeAboveThreshold=tlpUpsAlarmExternalNonSmartBatteryAgeAboveThreshold, tlpRackTrackConfig=tlpRackTrackConfig, tlpPduAlarmLoadOff09=tlpPduAlarmLoadOff09, tlpAtsAlarmOutputOff=tlpAtsAlarmOutputOff, tlpEnvInputContactNormalState=tlpEnvInputContactNormalState, tlpUpsOutletState=tlpUpsOutletState, tlpHardware=tlpHardware, tlpAtsConfigSourceTransferSetMaximum=tlpAtsConfigSourceTransferSetMaximum, tlpEnvAlarmOutputContact=tlpEnvAlarmOutputContact, tlpUpsAlarmCurrentAboveThreshold1=tlpUpsAlarmCurrentAboveThreshold1, tlpAtsAlarmOutputOverload=tlpAtsAlarmOutputOverload, tlpUpsAlarmSiteWiringFault=tlpUpsAlarmSiteWiringFault, tlpCoolingAlarmEvaporatorFreezeUp=tlpCoolingAlarmEvaporatorFreezeUp, tlpDeviceNumDevices=tlpDeviceNumDevices, tlpPduAlarmLoadOff26=tlpPduAlarmLoadOff26, tlpUpsAlarmLoadOff32=tlpUpsAlarmLoadOff32, tlpAtsAlarmSource2InvalidFrequency=tlpAtsAlarmSource2InvalidFrequency, tlpKvmAlarms=tlpKvmAlarms, tlpUpsOutletIndex=tlpUpsOutletIndex, tlpAtsConfigTable=tlpAtsConfigTable, tlpAgentAttributesSupportsTelnetCLI=tlpAgentAttributesSupportsTelnetCLI, tlpCoolingAlarmEvaporatorTemperatureSensorFault=tlpCoolingAlarmEvaporatorTemperatureSensorFault, tlpUpsConfigFaultAction=tlpUpsConfigFaultAction, tlpUpsBypassLineEntry=tlpUpsBypassLineEntry, tlpPduConfig=tlpPduConfig, tlpEnvTemperatureEntry=tlpEnvTemperatureEntry, tlpAgentAttributesSupportsTelnetMenu=tlpAgentAttributesSupportsTelnetMenu, tlpAlarmType=tlpAlarmType, tlpPduIdentNumBreakers=tlpPduIdentNumBreakers, tlpAlarms=tlpAlarms, tlpPduCircuitInputVoltage=tlpPduCircuitInputVoltage, tlpAgentSerialNum=tlpAgentSerialNum, tlpPduAlarmLoadOff31=tlpPduAlarmLoadOff31, tlpAtsAlarmOverVoltage=tlpAtsAlarmOverVoltage, tlpAtsOutletCommand=tlpAtsOutletCommand, tlpNotificationsAlarmEntryRemoved=tlpNotificationsAlarmEntryRemoved, tlpAlarmDescr=tlpAlarmDescr, tlpAtsConfig=tlpAtsConfig, tlpAlarmControlIndex=tlpAlarmControlIndex, tlpAtsDisplayEntry=tlpAtsDisplayEntry, tlpPduBreakerTable=tlpPduBreakerTable, tlpAtsCircuitPowerFactor=tlpAtsCircuitPowerFactor, tlpAtsCircuitTable=tlpAtsCircuitTable, tlpCoolingControl=tlpCoolingControl, tlpAtsInputPhaseType=tlpAtsInputPhaseType, tlpDeviceIdentProtocol=tlpDeviceIdentProtocol, tlpAtsAlarmSystemTemperature=tlpAtsAlarmSystemTemperature, tlpAtsAlarmLoadOff09=tlpAtsAlarmLoadOff09, tlpEnvHumidityTable=tlpEnvHumidityTable, tlpAtsOutletState=tlpAtsOutletState, tlpAtsAlarmCurrentAboveThresholdA1=tlpAtsAlarmCurrentAboveThresholdA1, tlpAgentAttributesFTPPort=tlpAgentAttributesFTPPort, tlpUpsAlarmLoadOff07=tlpUpsAlarmLoadOff07, tlpPduAlarmCurrentAboveThreshold1=tlpPduAlarmCurrentAboveThreshold1, tlpUpsConfigAutoRestartInverterShutdown=tlpUpsConfigAutoRestartInverterShutdown, tlpUpsConfigAutoRestartOverTemperature=tlpUpsConfigAutoRestartOverTemperature, tlpAtsInputTable=tlpAtsInputTable, tlpSwitchIdentNumSwitch=tlpSwitchIdentNumSwitch, tlpAtsAlarmLoadOff39=tlpAtsAlarmLoadOff39, tlpAtsOutletVoltage=tlpAtsOutletVoltage, tlpPduControlShed=tlpPduControlShed, tlpAtsAlarmTemperature=tlpAtsAlarmTemperature, tlpUpsAlarmDiagnosticTestFailed=tlpUpsAlarmDiagnosticTestFailed, tlpDeviceRegion=tlpDeviceRegion, tlpAlarmState=tlpAlarmState, tlpUpsAlarmLoadOff17=tlpUpsAlarmLoadOff17, tlpEnvOutputContactCurrentState=tlpEnvOutputContactCurrentState, tlpPduOutletCommand=tlpPduOutletCommand, tlpAtsDeviceMainLoadState=tlpAtsDeviceMainLoadState, tlpPduInputPhaseFrequency=tlpPduInputPhaseFrequency, tlpUpsAlarmLoadOff20=tlpUpsAlarmLoadOff20, tlpAgentAttributesAutostartTelnetCLI=tlpAgentAttributesAutostartTelnetCLI, tlpUpsConfigBypassUpperLimitPercent=tlpUpsConfigBypassUpperLimitPercent, tlpEnvAlarmInputContact03=tlpEnvAlarmInputContact03, tlpUpsAlarmInverterOverVoltage=tlpUpsAlarmInverterOverVoltage, tlpUpsBypassLineTable=tlpUpsBypassLineTable, tlpUpsOutletGroupRowStatus=tlpUpsOutletGroupRowStatus, tlpAtsAlarmLoadOff30=tlpAtsAlarmLoadOff30, tlpEnvConfig=tlpEnvConfig, tlpKvmControl=tlpKvmControl, tlpUpsAlarmLoadOff01=tlpUpsAlarmLoadOff01, tlpAtsSupportsEntry=tlpAtsSupportsEntry, tlpAtsSupportsOutletCurrentPower=tlpAtsSupportsOutletCurrentPower, tlpPduAlarmLoadOff07=tlpPduAlarmLoadOff07, tlpAtsControlShed=tlpAtsControlShed, tlpUpsOutputLineVoltage=tlpUpsOutputLineVoltage, tlpPduInputHighTransferVoltageUpperBound=tlpPduInputHighTransferVoltageUpperBound, tlpUpsConfigOffMode=tlpUpsConfigOffMode, tlpPduOutletPower=tlpPduOutletPower, tlpAlarmsWellKnown=tlpAlarmsWellKnown, tlpUpsOutletGroupTable=tlpUpsOutletGroupTable, tlpUpsAlarmLoadOff16=tlpUpsAlarmLoadOff16, tlpUpsConfigBypassLowerLimitVoltage=tlpUpsConfigBypassLowerLimitVoltage, tlpAtsConfigSource2TransferReset=tlpAtsConfigSource2TransferReset, tlpDeviceIdentSerialNum=tlpDeviceIdentSerialNum, tlpPduDeviceTemperatureF=tlpPduDeviceTemperatureF, tlpDeviceID=tlpDeviceID, tlpAtsInputPhaseEntry=tlpAtsInputPhaseEntry) mibBuilder.exportSymbols("TRIPPLITE-PRODUCTS", tlpPduDisplayOrientation=tlpPduDisplayOrientation, tlpEnvHumidityHighLimit=tlpEnvHumidityHighLimit, tlpAtsAlarmLoadOff22=tlpAtsAlarmLoadOff22, tlpPduOutletName=tlpPduOutletName, tlpAtsAlarmSource1OverVoltage=tlpAtsAlarmSource1OverVoltage, tlpPduOutletVoltage=tlpPduOutletVoltage, tlpPduAlarmLoadOff13=tlpPduAlarmLoadOff13, tlpPduSupportsEntry=tlpPduSupportsEntry, tlpPduAlarmLoadOff28=tlpPduAlarmLoadOff28, tlpUpsBatteryDetailCurrent=tlpUpsBatteryDetailCurrent, tlpAlarmUserDefined03=tlpAlarmUserDefined03, tlpUpsAlarmCurrentAboveThreshold3=tlpUpsAlarmCurrentAboveThreshold3, tlpPduInputLowTransferVoltageLowerBound=tlpPduInputLowTransferVoltageLowerBound, tlpUpsBatteryPackIdentEntry=tlpUpsBatteryPackIdentEntry, tlpDeviceIdentFirmwareVersion=tlpDeviceIdentFirmwareVersion, tlpUpsAlarmSmartBatteryCommLost=tlpUpsAlarmSmartBatteryCommLost, tlpAtsOutput=tlpAtsOutput, tlpPduSupportsOutletVoltage=tlpPduSupportsOutletVoltage, tlpAlarmTableRef=tlpAlarmTableRef, tlpPduAlarmLoadOff34=tlpPduAlarmLoadOff34, tlpPduInputCurrentLimit=tlpPduInputCurrentLimit, tlpDeviceAlarms=tlpDeviceAlarms, tlpUpsAlarmOverTemperatureProtection=tlpUpsAlarmOverTemperatureProtection, tlpAtsAlarmCircuitBreakerOpen03=tlpAtsAlarmCircuitBreakerOpen03, tlpAtsOutputPhase=tlpAtsOutputPhase, tlpEnvAlarmInputContact04=tlpEnvAlarmInputContact04, tlpPduAlarmLoadLevelAboveThreshold=tlpPduAlarmLoadLevelAboveThreshold, tlpUpsOutletTable=tlpUpsOutletTable, tlpUpsConfigAutoShedOnTransition=tlpUpsConfigAutoShedOnTransition, tlpAtsOutputEntry=tlpAtsOutputEntry, tlpAgentAttributesSupportsSSHCLI=tlpAgentAttributesSupportsSSHCLI, tlpAgentAttributesAutostartSNMP=tlpAgentAttributesAutostartSNMP, tlpPduAlarmLoadOff25=tlpPduAlarmLoadOff25, tlpUpsIdentNumOutlets=tlpUpsIdentNumOutlets, tlpAgentAttributesSupportsHTTPS=tlpAgentAttributesSupportsHTTPS, tlpUpsInputLowTransferVoltageUpperBound=tlpUpsInputLowTransferVoltageUpperBound, tlpPduAlarmOutputOverload=tlpPduAlarmOutputOverload, tlpAtsAlarmLoadOff17=tlpAtsAlarmLoadOff17, tlpUpsIdentNumBatteryPacks=tlpUpsIdentNumBatteryPacks, tlpUpsConfigInputVoltage=tlpUpsConfigInputVoltage, tlpAtsConfigSource2BrownoutSet=tlpAtsConfigSource2BrownoutSet, tlpUpsAlarmUpsSystemOff=tlpUpsAlarmUpsSystemOff, tlpEnvOutputContactName=tlpEnvOutputContactName, tlpCoolingAlarmDisconnectedFromDevice=tlpCoolingAlarmDisconnectedFromDevice, tlpUpsIdentNumOutputs=tlpUpsIdentNumOutputs, tlpAtsAlarmLoadOff=tlpAtsAlarmLoadOff, tlpPduAlarmLoadOff14=tlpPduAlarmLoadOff14, tlpAtsControlResetGeneralFault=tlpAtsControlResetGeneralFault, tlpUpsAlarmLoadOff22=tlpUpsAlarmLoadOff22, tlpEnvInputContactInAlarm=tlpEnvInputContactInAlarm, tlpAtsConfigAutoShedOnTransition=tlpAtsConfigAutoShedOnTransition, tlpAlarmControl=tlpAlarmControl, tlpPduCircuitCurrentLimit=tlpPduCircuitCurrentLimit, tlpCoolingAlarmFanUnderCurrent=tlpCoolingAlarmFanUnderCurrent, tlpAtsAlarmLoadOff36=tlpAtsAlarmLoadOff36, tlpUpsBypassLinePower=tlpUpsBypassLinePower, tlpUpsConfigTable=tlpUpsConfigTable, tlpUpsAlarmLoadOff23=tlpUpsAlarmLoadOff23, tlpPduOutputCurrentMax=tlpPduOutputCurrentMax, tlpUpsAlarmLoadOff34=tlpUpsAlarmLoadOff34, tlpAtsOutletBank=tlpAtsOutletBank, tlpAlarmDetail=tlpAlarmDetail, tlpAtsBreakerEntry=tlpAtsBreakerEntry, tlpSwitchAlarms=tlpSwitchAlarms, tlpAtsAlarmCircuitBreakerOpen01=tlpAtsAlarmCircuitBreakerOpen01, tlpAtsInputPhaseFrequency=tlpAtsInputPhaseFrequency, tlpUpsInputLineBads=tlpUpsInputLineBads, tlpAtsInputPhaseIndex=tlpAtsInputPhaseIndex, tlpAgentSnmpContactIpAddress=tlpAgentSnmpContactIpAddress, tlpAlarmTable=tlpAlarmTable, tlpUpsBatteryPackConfigStyle=tlpUpsBatteryPackConfigStyle, tlpAtsAlarmLoadOff05=tlpAtsAlarmLoadOff05, tlpUpsBatteryDetailVoltage=tlpUpsBatteryDetailVoltage, tlpUpsAlarmBusStartVoltageLow=tlpUpsAlarmBusStartVoltageLow, tlpCooling=tlpCooling, tlpAgentConfigCurrentTime=tlpAgentConfigCurrentTime, tlpPduOutputIndex=tlpPduOutputIndex, tlpAtsAlarmLoadOff06=tlpAtsAlarmLoadOff06, tlpCoolingAlarmWaterFull=tlpCoolingAlarmWaterFull, tlpDeviceEntry=tlpDeviceEntry, tlpUpsDeviceMainLoadCommand=tlpUpsDeviceMainLoadCommand, tlpUpsAlarmLoadOff14=tlpUpsAlarmLoadOff14, tlpDeviceDetail=tlpDeviceDetail, tlpEnvOutputContactInAlarm=tlpEnvOutputContactInAlarm, tlpAtsOutputCurrentMin=tlpAtsOutputCurrentMin, tlpAtsAlarmFrequency=tlpAtsAlarmFrequency, tlpRackTrack=tlpRackTrack, tlpKvmConfig=tlpKvmConfig, tlpUpsBatteryPackIdentTable=tlpUpsBatteryPackIdentTable, tlpEnvOutputContactNormalState=tlpEnvOutputContactNormalState, tlpAtsAlarmLoadOff03=tlpAtsAlarmLoadOff03, tlpUpsAlarmLoadLevelAboveThreshold=tlpUpsAlarmLoadLevelAboveThreshold, tlpUpsAlarmRuntimeBelowWarningLevel=tlpUpsAlarmRuntimeBelowWarningLevel, tlpDeviceRowStatus=tlpDeviceRowStatus, tlpPduDeviceTemperatureC=tlpPduDeviceTemperatureC, tlpCoolingAlarmCondenserFanFault=tlpCoolingAlarmCondenserFanFault, tlpAtsOutlet=tlpAtsOutlet, tlpAtsConfigVoltageRangeTable=tlpAtsConfigVoltageRangeTable, tlpCoolingConfig=tlpCoolingConfig, tlpAtsAlarmCurrentAboveThresholdB3=tlpAtsAlarmCurrentAboveThresholdB3, tlpAlarmUserDefined07=tlpAlarmUserDefined07, tlpAtsOutletGroupTable=tlpAtsOutletGroupTable, tlpEnvAlarmOutputContact02=tlpEnvAlarmOutputContact02, tlpPduCircuitTotalPower=tlpPduCircuitTotalPower, tlpPduConfigInputVoltage=tlpPduConfigInputVoltage, tlpPduIdentNumOutletGroups=tlpPduIdentNumOutletGroups, tlpCoolingAlarmReturnAirTempHigh=tlpCoolingAlarmReturnAirTempHigh, tlpUpsConfigAutoRestartOverLoad=tlpUpsConfigAutoRestartOverLoad, tlpAgentAttributesSupportsHTTP=tlpAgentAttributesSupportsHTTP, tlpAlarmTime=tlpAlarmTime, tlpUpsBatteryDetailEntry=tlpUpsBatteryDetailEntry, tlpAtsOutletGroupDescription=tlpAtsOutletGroupDescription, tlpUpsBatteryDetailChargerStatus=tlpUpsBatteryDetailChargerStatus, tlpUpsInputLowTransferVoltageLowerBound=tlpUpsInputLowTransferVoltageLowerBound, tlpAlarmControlEntry=tlpAlarmControlEntry, tlpAtsDevice=tlpAtsDevice, tlpPduOutletRampAction=tlpPduOutletRampAction, tlpEnvOutputContactEntry=tlpEnvOutputContactEntry, tlpAtsSupportsOutletVoltage=tlpAtsSupportsOutletVoltage, tlpUpsAlarmLoadOff36=tlpUpsAlarmLoadOff36, tlpAtsDevicePhaseImbalance=tlpAtsDevicePhaseImbalance, tlpUpsOutletControllable=tlpUpsOutletControllable, tlpPduAlarmLoadOff40=tlpPduAlarmLoadOff40, tlpEnvAlarmInputContact=tlpEnvAlarmInputContact, tlpAtsAlarmCircuitBreakerOpen06=tlpAtsAlarmCircuitBreakerOpen06, tlpUpsAlarmLoadOff28=tlpUpsAlarmLoadOff28, tlpPduSupportsOutletCurrentPower=tlpPduSupportsOutletCurrentPower, tlpAgentAttributesSNMPv1Enabled=tlpAgentAttributesSNMPv1Enabled, tlpPduConfigEntry=tlpPduConfigEntry, tlpPduAlarmLoadOff18=tlpPduAlarmLoadOff18, tlpAtsBreakerIndex=tlpAtsBreakerIndex, tlpAtsAlarmCurrentAboveThresholdA3=tlpAtsAlarmCurrentAboveThresholdA3, tlpUpsOutletPower=tlpUpsOutletPower, tlpPduOutletTable=tlpPduOutletTable, tlpAtsConfigSource1TransferSet=tlpAtsConfigSource1TransferSet, tlpPduInputPhaseVoltageMax=tlpPduInputPhaseVoltageMax, tlpPduAlarmLoadOff15=tlpPduAlarmLoadOff15, tlpPduAlarmCircuitBreakerOpen05=tlpPduAlarmCircuitBreakerOpen05, tlpAlarmUserDefined09=tlpAlarmUserDefined09, tlpUpsAlarmBatteryAgeAboveThreshold=tlpUpsAlarmBatteryAgeAboveThreshold, tlpAtsBreakerTable=tlpAtsBreakerTable, tlpAgentSettings=tlpAgentSettings, tlpPduAlarmLoadOff36=tlpPduAlarmLoadOff36, tlpAtsIdentNumOutputs=tlpAtsIdentNumOutputs, tlpUpsConfigColdStart=tlpUpsConfigColdStart, tlpKvm=tlpKvm, tlpUpsAlarmLoadOff09=tlpUpsAlarmLoadOff09, tlpAtsAlarmSource1InvalidFrequency=tlpAtsAlarmSource1InvalidFrequency, tlpAtsDeviceTotalInputPowerRating=tlpAtsDeviceTotalInputPowerRating, tlpAtsDeviceTable=tlpAtsDeviceTable, tlpUpsOutletShedDelay=tlpUpsOutletShedDelay, tlpPduBreakerIndex=tlpPduBreakerIndex, tlpAtsConfigInputVoltage=tlpAtsConfigInputVoltage, tlpAgentConfigRemoteRegistration=tlpAgentConfigRemoteRegistration, tlpUpsAlarmOverCharged=tlpUpsAlarmOverCharged, tlpUpsAlarmLoadOff04=tlpUpsAlarmLoadOff04, tlpUpsBatteryPackDetailAge=tlpUpsBatteryPackDetailAge, tlpProducts=tlpProducts, tlpAtsIdentNumCircuits=tlpAtsIdentNumCircuits, tlpPduInputPhaseTable=tlpPduInputPhaseTable, tlpUpsEstimatedMinutesRemaining=tlpUpsEstimatedMinutesRemaining, tlpCoolingAlarmSuctionPressureLow=tlpCoolingAlarmSuctionPressureLow, tlpAtsOutletGroupName=tlpAtsOutletGroupName, tlpUpsAlarmBypassFrequencyBad=tlpUpsAlarmBypassFrequencyBad, tlpAtsOutputIndex=tlpAtsOutputIndex, tlpAtsHeatsinkStatus=tlpAtsHeatsinkStatus, tlpRackTrackIdentNumRackTrack=tlpRackTrackIdentNumRackTrack, tlpUpsAlarmLoadOff31=tlpUpsAlarmLoadOff31, tlpAtsAlarmLoadOff38=tlpAtsAlarmLoadOff38, tlpAtsAlarmCurrentAboveThreshold=tlpAtsAlarmCurrentAboveThreshold, tlpUpsAlarmLoadOff38=tlpUpsAlarmLoadOff38, tlpCoolingAlarmRemoteShutdownViaInputContact=tlpCoolingAlarmRemoteShutdownViaInputContact, tlpAtsOutletGroupCommand=tlpAtsOutletGroupCommand, tlpAtsOutletPower=tlpAtsOutletPower, tlpAgentEmailContacts=tlpAgentEmailContacts, tlpUpsBatteryDetailCharge=tlpUpsBatteryDetailCharge, tlpUpsConfigAutoRestartEntry=tlpUpsConfigAutoRestartEntry, tlpUpsSupportsOutletVoltage=tlpUpsSupportsOutletVoltage, tlpAtsIdentNumInputs=tlpAtsIdentNumInputs, tlpAtsAlarmGeneralFault=tlpAtsAlarmGeneralFault, tlpAtsConfigOverCurrentThreshold=tlpAtsConfigOverCurrentThreshold, tlpAgentSnmpContactTable=tlpAgentSnmpContactTable, tlpUpsDeviceTestDate=tlpUpsDeviceTestDate, tlpAtsAlarmLoadOff18=tlpAtsAlarmLoadOff18, tlpAtsInputFairVoltageThreshold=tlpAtsInputFairVoltageThreshold, tlpUpsAlarmLowBattery=tlpUpsAlarmLowBattery, tlpCoolingAlarmCondenserFailure=tlpCoolingAlarmCondenserFailure, tlpNotifySystemStartup=tlpNotifySystemStartup, tlpRackTrackDetail=tlpRackTrackDetail, tlpNotifySystemUpdate=tlpNotifySystemUpdate, tlpUpsControlTable=tlpUpsControlTable, tlpAtsAlarmLoadLevelAboveThreshold=tlpAtsAlarmLoadLevelAboveThreshold, tlpPduAlarmLoadOff17=tlpPduAlarmLoadOff17, tlpAtsSupportsOutletGroup=tlpAtsSupportsOutletGroup, tlpAgentNumSnmpContacts=tlpAgentNumSnmpContacts, tlpAtsConfigSourceTransferSetMinimum=tlpAtsConfigSourceTransferSetMinimum, tlpEnvConfigEntry=tlpEnvConfigEntry, tlpAgentAttributesAutostartHTTPS=tlpAgentAttributesAutostartHTTPS, tlpPduDeviceEntry=tlpPduDeviceEntry, tlpPduAlarmLoadOff10=tlpPduAlarmLoadOff10, tlpUpsSecondsOnBattery=tlpUpsSecondsOnBattery, tlpAtsAlarmLoadOff19=tlpAtsAlarmLoadOff19, tlpUpsBatteryPackConfigNumBatteries=tlpUpsBatteryPackConfigNumBatteries, tlpUpsAlarmOutputBad=tlpUpsAlarmOutputBad, tlpPduInputPhaseIndex=tlpPduInputPhaseIndex, tlpUpsAlarmExternalSmartBatteryAgeAboveThreshold=tlpUpsAlarmExternalSmartBatteryAgeAboveThreshold, tlpUpsSupportsRampShed=tlpUpsSupportsRampShed, tlpAgentSnmpContactAuthPassword=tlpAgentSnmpContactAuthPassword, tlpAlarmCommunicationsLost=tlpAlarmCommunicationsLost, tlpPduAlarmLoadOff38=tlpPduAlarmLoadOff38, tlpAtsInputPhaseTable=tlpAtsInputPhaseTable, tlpUpsBatteryPackConfigEntry=tlpUpsBatteryPackConfigEntry, tlpCoolingInput=tlpCoolingInput, tlpUpsBatteryPackConfigStrings=tlpUpsBatteryPackConfigStrings, tlpEnvNumInputContacts=tlpEnvNumInputContacts, tlpAgentAttributesPorts=tlpAgentAttributesPorts, tlpPduOutletIndex=tlpPduOutletIndex, tlpAtsInputLineIndex=tlpAtsInputLineIndex, tlpAtsBreakerStatus=tlpAtsBreakerStatus, tlpUpsInputNominalVoltage=tlpUpsInputNominalVoltage, tlpUpsAlarmLoadOff05=tlpUpsAlarmLoadOff05, tlpCoolingOutput=tlpCoolingOutput, tlpKvmDetail=tlpKvmDetail, tlpAgentDetails=tlpAgentDetails, tlpAlarmUserDefined04=tlpAlarmUserDefined04, tlpUpsBatteryPackDetailCondition=tlpUpsBatteryPackDetailCondition, tlpPduAlarmLoadOff11=tlpPduAlarmLoadOff11, tlpPduAlarmLoadOff21=tlpPduAlarmLoadOff21, tlpAtsCircuitTotalPower=tlpAtsCircuitTotalPower, tlpAtsHeatsink=tlpAtsHeatsink, tlpAtsCircuitCurrentMin=tlpAtsCircuitCurrentMin, tlpCoolingAlarmSuctionPressureSensorFault=tlpCoolingAlarmSuctionPressureSensorFault, tlpNotificationsAlarmEntryAdded=tlpNotificationsAlarmEntryAdded, tlpAtsDeviceTemperatureF=tlpAtsDeviceTemperatureF, tlpPduAlarmCircuitBreakerOpen06=tlpPduAlarmCircuitBreakerOpen06, tlpAtsAlarmInputBad=tlpAtsAlarmInputBad, tlpAtsAlarmSource2Outage=tlpAtsAlarmSource2Outage, tlpPduAlarmLoadOff16=tlpPduAlarmLoadOff16, tlpUpsConfigBypassLowerLimitPercent=tlpUpsConfigBypassLowerLimitPercent, tlpUpsIdentNumOutletGroups=tlpUpsIdentNumOutletGroups, tlpUpsBatterySummaryEntry=tlpUpsBatterySummaryEntry, tlpAgentAttributesSupportsSNMP=tlpAgentAttributesSupportsSNMP, tlpUpsAlarmChargerFailed=tlpUpsAlarmChargerFailed, tlpAtsAlarmLoadOff08=tlpAtsAlarmLoadOff08, tlpAtsInputNominalVoltage=tlpAtsInputNominalVoltage, tlpAtsSupportsEnergywise=tlpAtsSupportsEnergywise, tlpAtsInputHighTransferVoltageUpperBound=tlpAtsInputHighTransferVoltageUpperBound, PYSNMP_MODULE_ID=tlpProducts, tlpPduAlarmLoadOff27=tlpPduAlarmLoadOff27, tlpUpsControl=tlpUpsControl)
(octet_string, integer, object_identifier) = mibBuilder.importSymbols('ASN1', 'OctetString', 'Integer', 'ObjectIdentifier') (named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues') (value_range_constraint, constraints_intersection, value_size_constraint, single_value_constraint, constraints_union) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ValueRangeConstraint', 'ConstraintsIntersection', 'ValueSizeConstraint', 'SingleValueConstraint', 'ConstraintsUnion') (module_compliance, notification_group, object_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'NotificationGroup', 'ObjectGroup') (bits, module_identity, gauge32, mib_scalar, mib_table, mib_table_row, mib_table_column, unsigned32, ip_address, notification_type, counter64, object_identity, enterprises, iso, time_ticks, integer32, counter32, mib_identifier) = mibBuilder.importSymbols('SNMPv2-SMI', 'Bits', 'ModuleIdentity', 'Gauge32', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'Unsigned32', 'IpAddress', 'NotificationType', 'Counter64', 'ObjectIdentity', 'enterprises', 'iso', 'TimeTicks', 'Integer32', 'Counter32', 'MibIdentifier') (textual_convention, row_status, time_stamp, display_string, truth_value) = mibBuilder.importSymbols('SNMPv2-TC', 'TextualConvention', 'RowStatus', 'TimeStamp', 'DisplayString', 'TruthValue') (tripplite,) = mibBuilder.importSymbols('TRIPPLITE', 'tripplite') tlp_products = module_identity((1, 3, 6, 1, 4, 1, 850, 1)) tlpProducts.setRevisions(('2016-06-22 11:15', '2016-02-02 11:15', '2016-01-25 12:30', '2016-01-20 12:00', '2016-01-08 11:40', '2015-11-25 13:00', '2015-11-10 13:00', '2015-10-16 12:30', '2015-08-19 12:00', '2014-12-04 10:00', '2014-04-14 09:00')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): if mibBuilder.loadTexts: tlpProducts.setRevisionsDescriptions(('Refactored MIB to extend from tripplite.mib', 'Redefined tlpUpsAlarmLoadLevelAboveThreshold', 'Redefined Reworked tlpAgentAttributes', 'Added tlpDeviceIdentUptime', 'Added tlpAtsConfigVoltageRangeLimitsTable', 'Refactored UPS, PDU and ATS input sections', 'Refactored tlpUps', 'Added tlpAtsConfigSource#ReturnTime', 'Added tlpAtsConfigThresholdTable', 'Created ATS device-specific section', 'Consolidated and Released for PAL v12.07.007x')) if mibBuilder.loadTexts: tlpProducts.setLastUpdated('201606221115Z') if mibBuilder.loadTexts: tlpProducts.setOrganization('Tripp Lite') if mibBuilder.loadTexts: tlpProducts.setContactInfo('Software Engineering Tripp Lite 1111 W. 35th St. Chicago, IL 60609') if mibBuilder.loadTexts: tlpProducts.setDescription('This MIB module defines MIB objects which provide mechanisms for remote management capabilities of Tripp Lite PowerAlert and related software.') tlp_hardware = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1)) tlp_software = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 2)) tlp_alarms = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 3)) tlp_notify = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 4)) tlp_device = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 1)) tlp_device_detail = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 2)) tlp_device_types = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3)) tlp_ups = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1)) tlp_pdu = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2)) tlp_envirosense = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3)) tlp_ats = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4)) tlp_cooling = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 5)) tlp_kvm = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 6)) tlp_rack_track = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 7)) tlp_switch = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 8)) tlp_ups_ident = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1)) tlp_ups_device = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 2)) tlp_ups_detail = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3)) tlp_ups_control = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 4)) tlp_ups_config = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5)) tlp_ups_battery = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1)) tlp_ups_input = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2)) tlp_ups_output = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 3)) tlp_ups_bypass = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 4)) tlp_ups_outlet = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5)) tlp_ups_watchdog = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 6)) tlp_pdu_ident = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1)) tlp_pdu_device = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 2)) tlp_pdu_detail = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3)) tlp_pdu_control = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 4)) tlp_pdu_config = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 5)) tlp_pdu_input = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1)) tlp_pdu_output = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 2)) tlp_pdu_outlet = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3)) tlp_pdu_circuit = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 4)) tlp_pdu_breaker = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 5)) tlp_pdu_heatsink = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 6)) tlp_env_ident = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 1)) tlp_env_detail = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3)) tlp_env_config = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 5)) tlp_ats_ident = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1)) tlp_ats_device = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 2)) tlp_ats_detail = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3)) tlp_ats_control = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 4)) tlp_ats_config = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5)) tlp_ats_input = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1)) tlp_ats_output = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 2)) tlp_ats_outlet = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3)) tlp_ats_circuit = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 4)) tlp_ats_breaker = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 5)) tlp_ats_heatsink = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 6)) tlp_cooling_ident = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 5, 1)) tlp_cooling_device = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 5, 2)) tlp_cooling_detail = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 5, 3)) tlp_cooling_control = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 5, 4)) tlp_cooling_config = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 5, 5)) tlp_cooling_input = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 5, 3, 1)) tlp_cooling_output = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 5, 3, 2)) tlp_kvm_ident = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 6, 1)) tlp_kvm_device = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 6, 2)) tlp_kvm_detail = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 6, 3)) tlp_kvm_control = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 6, 4)) tlp_kvm_config = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 6, 5)) tlp_rack_track_ident = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 7, 1)) tlp_rack_track_device = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 7, 2)) tlp_rack_track_detail = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 7, 3)) tlp_rack_track_control = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 7, 4)) tlp_rack_track_config = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 7, 5)) tlp_switch_ident = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 8, 1)) tlp_switch_device = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 8, 2)) tlp_switch_detail = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 8, 3)) tlp_switch_control = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 8, 4)) tlp_switch_config = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 8, 5)) tlp_agent_details = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 2, 1)) tlp_agent_settings = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 2, 2)) tlp_agent_contacts = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 2, 3)) tlp_agent_ident = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 1)) tlp_agent_attributes = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2)) tlp_agent_config = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 2, 2, 1)) tlp_agent_email_contacts = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 1)) tlp_agent_snmp_contacts = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 2)) tlp_alarms_well_known = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3)) tlp_alarm_control = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 4)) tlp_agent_alarms = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 1)) tlp_device_alarms = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 2)) tlp_ups_alarms = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3)) tlp_pdu_alarms = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4)) tlp_env_alarms = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 5)) tlp_ats_alarms = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6)) tlp_cooling_alarms = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7)) tlp_kvm_alarms = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 8)) tlp_rack_track_alarms = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 9)) tlp_switch_alarms = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 10)) tlp_notifications = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 4, 1)) tlp_device_num_devices = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 1, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpDeviceNumDevices.setStatus('current') if mibBuilder.loadTexts: tlpDeviceNumDevices.setDescription('The number of devices that this agent is currently managing.') tlp_device_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 1, 2)) if mibBuilder.loadTexts: tlpDeviceTable.setStatus('current') if mibBuilder.loadTexts: tlpDeviceTable.setDescription('A list of device table entries. The number of entries is given by the value of tlpDevicesNumDevices.') tlp_device_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 1, 2, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex')) if mibBuilder.loadTexts: tlpDeviceEntry.setStatus('current') if mibBuilder.loadTexts: tlpDeviceEntry.setDescription('An entry containing information applicable to a particular device managed by this agent.') tlp_device_index = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 1, 2, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpDeviceIndex.setStatus('current') if mibBuilder.loadTexts: tlpDeviceIndex.setDescription('The table row index for the device.') tlp_device_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 1, 2, 1, 2), row_status()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpDeviceRowStatus.setStatus('current') if mibBuilder.loadTexts: tlpDeviceRowStatus.setDescription('Used with table edits to indicate the status of a given row in tlDeviceTable.') tlp_device_type = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 1, 2, 1, 3), object_identifier()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpDeviceType.setStatus('current') if mibBuilder.loadTexts: tlpDeviceType.setDescription('The type of device. One of the appropriate hardware types: ups, pdu, envirosense, etc.') tlp_device_manufacturer = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 1, 2, 1, 4), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpDeviceManufacturer.setStatus('current') if mibBuilder.loadTexts: tlpDeviceManufacturer.setDescription('The name of the manufacturer.') tlp_device_model = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 1, 2, 1, 5), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpDeviceModel.setStatus('current') if mibBuilder.loadTexts: tlpDeviceModel.setDescription('The model designation.') tlp_device_name = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 1, 2, 1, 6), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpDeviceName.setStatus('current') if mibBuilder.loadTexts: tlpDeviceName.setDescription('A user-supplied name for the device.') tlp_device_id = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 1, 2, 1, 7), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpDeviceID.setStatus('current') if mibBuilder.loadTexts: tlpDeviceID.setDescription('A user-supplied ID for the device.') tlp_device_location = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 1, 2, 1, 8), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpDeviceLocation.setStatus('current') if mibBuilder.loadTexts: tlpDeviceLocation.setDescription('A user-supplied location for the device.') tlp_device_region = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 1, 2, 1, 9), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpDeviceRegion.setStatus('current') if mibBuilder.loadTexts: tlpDeviceRegion.setDescription('A user-supplied region for the device.') tlp_device_status = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 1, 2, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('none', 0), ('critical', 1), ('warning', 2), ('info', 3), ('status', 4), ('offline', 5), ('custom', 6), ('configuration', 7)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpDeviceStatus.setStatus('current') if mibBuilder.loadTexts: tlpDeviceStatus.setDescription('The currently most critical alarm status for the device.') tlp_device_ident_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 2, 1)) if mibBuilder.loadTexts: tlpDeviceIdentTable.setStatus('current') if mibBuilder.loadTexts: tlpDeviceIdentTable.setDescription('The identity details of each device in device table. The number of entries is given by the value of tlpDevicesNumDevices.') tlp_device_ident_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 2, 1, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex')) if mibBuilder.loadTexts: tlpDeviceIdentEntry.setStatus('current') if mibBuilder.loadTexts: tlpDeviceIdentEntry.setDescription('An entry containing details for a particular device.') tlp_device_ident_protocol = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 2, 1, 1, 1), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpDeviceIdentProtocol.setStatus('current') if mibBuilder.loadTexts: tlpDeviceIdentProtocol.setDescription('The Tripplite protocol used to communicate with the device.') tlp_device_ident_comm_port_type = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 2, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5))).clone(namedValues=named_values(('unknown', 0), ('serial', 1), ('usb', 2), ('hid', 3), ('simulated', 4), ('unittest', 5)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpDeviceIdentCommPortType.setStatus('current') if mibBuilder.loadTexts: tlpDeviceIdentCommPortType.setDescription('The type of communications port used to connect with the device.') tlp_device_ident_comm_port_name = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 2, 1, 1, 3), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpDeviceIdentCommPortName.setStatus('current') if mibBuilder.loadTexts: tlpDeviceIdentCommPortName.setDescription('The name of the communications port.') tlp_device_ident_firmware_version = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 2, 1, 1, 4), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpDeviceIdentFirmwareVersion.setStatus('current') if mibBuilder.loadTexts: tlpDeviceIdentFirmwareVersion.setDescription('The firmware version of the device.') tlp_device_ident_serial_num = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 2, 1, 1, 5), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpDeviceIdentSerialNum.setStatus('current') if mibBuilder.loadTexts: tlpDeviceIdentSerialNum.setDescription('The serial number of the device.') tlp_device_ident_date_installed = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 2, 1, 1, 6), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpDeviceIdentDateInstalled.setStatus('current') if mibBuilder.loadTexts: tlpDeviceIdentDateInstalled.setDescription('The installation date for this device in the format of mm/dd/yyyy.') tlp_device_ident_hardware_version = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 2, 1, 1, 7), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpDeviceIdentHardwareVersion.setStatus('current') if mibBuilder.loadTexts: tlpDeviceIdentHardwareVersion.setDescription('The hardware revision of the device. This value will return ERROR_NO_SUCH_NAME if not supported by the device.') tlp_device_ident_current_uptime = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 2, 1, 1, 8), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpDeviceIdentCurrentUptime.setStatus('current') if mibBuilder.loadTexts: tlpDeviceIdentCurrentUptime.setDescription('The device uptime since its last startup. The format of this value is a comma- delimited string representing days, hours and minutes. For example, the value of 123,4,5 represents 123 days, 4 hours and 5 minutes. This value will return ERROR_NO_SUCH_NAME if not supported by the device.') tlp_device_ident_total_uptime = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 2, 1, 1, 9), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpDeviceIdentTotalUptime.setStatus('current') if mibBuilder.loadTexts: tlpDeviceIdentTotalUptime.setDescription('The cumulative (total) uptime for the device. The format of this value is a comma- delimited string representing days, hours and minutes. For example, the value of 123,4,5 represents 123 days, 4 hours and 5 minutes. This value will return ERROR_NO_SUCH_NAME if not supported by the device.') tlp_ups_ident_num_ups = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsIdentNumUps.setStatus('current') if mibBuilder.loadTexts: tlpUpsIdentNumUps.setDescription('The number of ups devices that this agent is currently managing.') tlp_ups_ident_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 2)) if mibBuilder.loadTexts: tlpUpsIdentTable.setStatus('current') if mibBuilder.loadTexts: tlpUpsIdentTable.setDescription('The identity details of each ups in device table. This is a sparse dependent table, and will contain some subset of devices that are upss.') tlp_ups_ident_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 2, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex')) if mibBuilder.loadTexts: tlpUpsIdentEntry.setStatus('current') if mibBuilder.loadTexts: tlpUpsIdentEntry.setDescription('An entry containing details for a particular ups.') tlp_ups_ident_num_inputs = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 2, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsIdentNumInputs.setStatus('current') if mibBuilder.loadTexts: tlpUpsIdentNumInputs.setDescription('The number of input lines supported by the ups.') tlp_ups_ident_num_outputs = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 2, 1, 2), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsIdentNumOutputs.setStatus('current') if mibBuilder.loadTexts: tlpUpsIdentNumOutputs.setDescription('The number of output lines supported by the ups.') tlp_ups_ident_num_bypass = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 2, 1, 3), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsIdentNumBypass.setStatus('current') if mibBuilder.loadTexts: tlpUpsIdentNumBypass.setDescription('The number of bypass lines supported by the ups.') tlp_ups_ident_num_phases = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 2, 1, 4), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsIdentNumPhases.setStatus('current') if mibBuilder.loadTexts: tlpUpsIdentNumPhases.setDescription('The number of phases supported by the ups.') tlp_ups_ident_num_outlets = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 2, 1, 5), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsIdentNumOutlets.setStatus('current') if mibBuilder.loadTexts: tlpUpsIdentNumOutlets.setDescription('The number of receptacles supported by the ups.') tlp_ups_ident_num_outlet_groups = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 2, 1, 6), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsIdentNumOutletGroups.setStatus('current') if mibBuilder.loadTexts: tlpUpsIdentNumOutletGroups.setDescription('The number of receptacle groups supported by the ups.') tlp_ups_ident_num_battery_packs = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 2, 1, 7), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsIdentNumBatteryPacks.setStatus('current') if mibBuilder.loadTexts: tlpUpsIdentNumBatteryPacks.setDescription('The number of battery packs, internal and external combined, supported by the ups.') tlp_ups_supports_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 3)) if mibBuilder.loadTexts: tlpUpsSupportsTable.setStatus('current') if mibBuilder.loadTexts: tlpUpsSupportsTable.setDescription('The supported details of each ups in device table. This is a sparse dependent table, and will contain some subset of devices that are upss.') tlp_ups_supports_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 3, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex')) if mibBuilder.loadTexts: tlpUpsSupportsEntry.setStatus('current') if mibBuilder.loadTexts: tlpUpsSupportsEntry.setDescription('An entry containing supported details for a particular ups.') tlp_ups_supports_energywise = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 3, 1, 1), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsSupportsEnergywise.setStatus('current') if mibBuilder.loadTexts: tlpUpsSupportsEnergywise.setDescription('Indicates whether the ups supports Cisco EnergyWise.') tlp_ups_supports_ramp_shed = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 3, 1, 2), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsSupportsRampShed.setStatus('current') if mibBuilder.loadTexts: tlpUpsSupportsRampShed.setDescription('Indicates whether the ups supports ramping and shedding.') tlp_ups_supports_outlet_group = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 3, 1, 3), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsSupportsOutletGroup.setStatus('current') if mibBuilder.loadTexts: tlpUpsSupportsOutletGroup.setDescription('Indicates whether the ups supports outlet groups.') tlp_ups_supports_outlet_current_power = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 3, 1, 4), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsSupportsOutletCurrentPower.setStatus('current') if mibBuilder.loadTexts: tlpUpsSupportsOutletCurrentPower.setDescription('Indicates whether the ups reports individual receptacle current and power measurements. Devices that do not support individual receptacle measurements will always return ERROR_NO_SUCH_NAME for tlpUpsOutletCurrent and tlpUpsOutletPower.') tlp_ups_supports_outlet_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 1, 3, 1, 5), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsSupportsOutletVoltage.setStatus('current') if mibBuilder.loadTexts: tlpUpsSupportsOutletVoltage.setDescription('Indicates whether the ups reports individual receptacle voltage measurements. Devices that do not support individual receptacle measurements will always return ERROR_NO_SUCH_NAME for tlpUpsOutletVoltage.') tlp_ups_device_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 2, 1)) if mibBuilder.loadTexts: tlpUpsDeviceTable.setStatus('current') if mibBuilder.loadTexts: tlpUpsDeviceTable.setDescription('The device details of each ups in device table. This is a sparse dependent table, and will contain some subset of devices that are upss.') tlp_ups_device_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 2, 1, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex')) if mibBuilder.loadTexts: tlpUpsDeviceEntry.setStatus('current') if mibBuilder.loadTexts: tlpUpsDeviceEntry.setDescription('An entry containing device details for a particular ups.') tlp_ups_device_main_load_state = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 2, 1, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('unknown', 0), ('off', 1), ('on', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsDeviceMainLoadState.setStatus('current') if mibBuilder.loadTexts: tlpUpsDeviceMainLoadState.setDescription('The current state of the main output of the device.') tlp_ups_device_main_load_controllable = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 2, 1, 1, 2), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsDeviceMainLoadControllable.setStatus('current') if mibBuilder.loadTexts: tlpUpsDeviceMainLoadControllable.setDescription('Indicates whether or not the main output is controllable, and whether the ups can be turned off and on.') tlp_ups_device_main_load_command = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 2, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('idle', 0), ('turnOff', 1), ('turnOn', 2), ('cycle', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsDeviceMainLoadCommand.setStatus('current') if mibBuilder.loadTexts: tlpUpsDeviceMainLoadCommand.setDescription('Reading this value will always return 0. Setting this value to turnOff(1) will turn off the main output of the ups. Setting this value to turnOn(2) will turn on the main output of the ups. Setting this value to cycle(3) will turn off the main output, then turn it back on.') tlp_ups_device_power_on_delay = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 2, 1, 1, 4), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsDevicePowerOnDelay.setStatus('current') if mibBuilder.loadTexts: tlpUpsDevicePowerOnDelay.setDescription('The configurable delay value, which sets the amount of additional time a given device will wait before it connects to a valid AC source. By default the delay value is set to 0.') tlp_ups_device_test_date = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 2, 1, 1, 5), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsDeviceTestDate.setStatus('current') if mibBuilder.loadTexts: tlpUpsDeviceTestDate.setDescription('The date of the last self-test run on the ups, in the format YYYY-MM-DD.') tlp_ups_device_test_results_status = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 2, 1, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9))).clone(namedValues=named_values(('noTest', 0), ('doneAndPassed', 1), ('doneAndWarning', 2), ('doneAndError', 3), ('aborted', 4), ('inProgress', 5), ('noTestInitiated', 6), ('badBattery', 7), ('overCurrent', 8), ('batteryFailed', 9)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsDeviceTestResultsStatus.setStatus('current') if mibBuilder.loadTexts: tlpUpsDeviceTestResultsStatus.setDescription('The result of the last self-test run on the ups.') tlp_ups_device_temperature_c = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 2, 1, 1, 7), integer32()).setUnits('degrees Centigrade').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsDeviceTemperatureC.setStatus('current') if mibBuilder.loadTexts: tlpUpsDeviceTemperatureC.setDescription('The ambient temperature at or near the ups casing. Temperature measurements are not supported on all models. If not supported, this value will always return ERROR_NO_SUCH_NAME.') tlp_ups_device_temperature_f = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 2, 1, 1, 8), integer32()).setUnits('degrees Farenheit').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsDeviceTemperatureF.setStatus('current') if mibBuilder.loadTexts: tlpUpsDeviceTemperatureF.setDescription('The ambient temperature at or near the ups casing. Temperature measurements are not supported on all models. If not supported, this value will always return ERROR_NO_SUCH_NAME.') tlp_ups_battery_summary_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 1)) if mibBuilder.loadTexts: tlpUpsBatterySummaryTable.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatterySummaryTable.setDescription('The battery system summary of each ups in the device table. This is a sparse dependent table, and will contain the number of entries based upon the number of upss managed by the agent as reported by tlpUpsIdentNumUps.') tlp_ups_battery_summary_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 1, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex')) if mibBuilder.loadTexts: tlpUpsBatterySummaryEntry.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatterySummaryEntry.setDescription('An entry containing information applicable to a particular battery system managed by this agent.') tlp_ups_battery_status = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 1, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('unknown', 1), ('batteryNormal', 2), ('batteryLow', 3), ('batteryDepleted', 4)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsBatteryStatus.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatteryStatus.setDescription("The indication of the capacity remaining in the UPS system's batteries. A value of batteryNormal indicates that the remaining run-time is greater than tlpUpsConfigLowBattTime. A value of batteryLow indicates that the remaining battery run-time is less than or equal to tlpUpsConfigLowBattTime. A value of batteryDepleted indicates that the UPS will be unable to sustain the present load when and if the utility power is lost (including the possibility that the utility power is currently absent and the UPS is unable to sustain the output).") tlp_ups_seconds_on_battery = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 1, 1, 2), unsigned32()).setUnits('seconds').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsSecondsOnBattery.setStatus('current') if mibBuilder.loadTexts: tlpUpsSecondsOnBattery.setDescription('If the unit is on battery power, the elapsed time since the UPS last switched to battery power, or the time since the network management subsystem was last restarted, whichever is less. Zero shall be returned if the unit is not on battery power.') tlp_ups_estimated_minutes_remaining = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 1, 1, 3), unsigned32()).setUnits('minutes').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsEstimatedMinutesRemaining.setStatus('current') if mibBuilder.loadTexts: tlpUpsEstimatedMinutesRemaining.setDescription('An estimate of the time to battery charge depletion under the present load conditions if the utility power is off and remains off, or if it were to be lost and remain off.') tlp_ups_estimated_charge_remaining = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 1, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(0, 100))).setUnits('percent').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsEstimatedChargeRemaining.setStatus('current') if mibBuilder.loadTexts: tlpUpsEstimatedChargeRemaining.setDescription('An estimate of the battery charge remaining expressed as a percent of full charge.') tlp_ups_battery_run_time_remaining = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 1, 1, 5), time_ticks()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsBatteryRunTimeRemaining.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatteryRunTimeRemaining.setDescription('The run time remaining before batteries are exhausted. If the device does not support run time remaining, then the agent reports ERROR_NO_SUCH_NAME.') tlp_ups_battery_detail_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 2)) if mibBuilder.loadTexts: tlpUpsBatteryDetailTable.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatteryDetailTable.setDescription('The battery detail of each ups in the device table. This is a sparse dependent table, and will contain the number of entries based upon the number of upss managed by the agent as reported by tlpUpsIdentNumUps.') tlp_ups_battery_detail_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 2, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex')) if mibBuilder.loadTexts: tlpUpsBatteryDetailEntry.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatteryDetailEntry.setDescription('An entry containing information applicable to a particular battery system managed by this agent.') tlp_ups_battery_detail_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 2, 1, 1), unsigned32()).setUnits('0.1 Volt DC').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsBatteryDetailVoltage.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatteryDetailVoltage.setDescription('The magnitude of the present battery voltage.') tlp_ups_battery_detail_current = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 2, 1, 2), unsigned32()).setUnits('0.1 Amp DC').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsBatteryDetailCurrent.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatteryDetailCurrent.setDescription('The present battery current.') tlp_ups_battery_detail_capacity = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 2, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 100))).setUnits('percent').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsBatteryDetailCapacity.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatteryDetailCapacity.setDescription('The estimated remaining battery capacity expressed as a percent of full capacity.') tlp_ups_battery_detail_charge = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5))).clone(namedValues=named_values(('floating', 0), ('charging', 1), ('resting', 2), ('discharging', 3), ('normal', 4), ('standby', 5)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsBatteryDetailCharge.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatteryDetailCharge.setDescription('Denotes the charge state of the battery.') tlp_ups_battery_detail_charger_status = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 2, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('ok', 0), ('inFaultCondition', 1)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsBatteryDetailChargerStatus.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatteryDetailChargerStatus.setDescription('The status of the battery charger. If the device does not support this value, then the agent will report ERROR_NO_SUCH_NAME.') tlp_ups_battery_pack_ident_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 3)) if mibBuilder.loadTexts: tlpUpsBatteryPackIdentTable.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatteryPackIdentTable.setDescription('The battery identification details for each ups in the device table. This is a sparse dependent table, and will contain the number of entries based upon the number of upss managed by the agent as reported by upsIdentNumUps and the number of battery battery packs per each as reported by tlpUpsNumBatteryPacks.') tlp_ups_battery_pack_ident_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 3, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex'), (0, 'TRIPPLITE-PRODUCTS', 'tlpUpsBatteryPackIdentIndex')) if mibBuilder.loadTexts: tlpUpsBatteryPackIdentEntry.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatteryPackIdentEntry.setDescription('An entry containing information applicable to a particular battery pack managed by this agent.') tlp_ups_battery_pack_ident_index = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 3, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsBatteryPackIdentIndex.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatteryPackIdentIndex.setDescription('The table row index for the ups battery pack.') tlp_ups_battery_pack_ident_manufacturer = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 3, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsBatteryPackIdentManufacturer.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatteryPackIdentManufacturer.setDescription('The manufacturer of the battery pack. If the device does not support this value, then the agent reports ERROR_NO_SUCH_NAME.') tlp_ups_battery_pack_ident_model = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 3, 1, 3), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsBatteryPackIdentModel.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatteryPackIdentModel.setDescription('The model or device name of the battery pack. If the device does not support this value, then the agent reports ERROR_NO_SUCH_NAME.') tlp_ups_battery_pack_ident_serial_num = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 3, 1, 4), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsBatteryPackIdentSerialNum.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatteryPackIdentSerialNum.setDescription('The serial number of the battery pack. If the device does not support this value, then the agent reports ERROR_NO_SUCH_NAME.') tlp_ups_battery_pack_ident_firmware = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 3, 1, 5), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsBatteryPackIdentFirmware.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatteryPackIdentFirmware.setDescription('The firmware of the battery pack. If the device does not support this value, then the agent reports ERROR_NO_SUCH_NAME.') tlp_ups_battery_pack_ident_sku = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 3, 1, 6), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsBatteryPackIdentSKU.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatteryPackIdentSKU.setDescription('The SKU of the battery pack. If the device does not support this value, then the agent reports ERROR_NO_SUCH_NAME.') tlp_ups_battery_pack_config_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 4)) if mibBuilder.loadTexts: tlpUpsBatteryPackConfigTable.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatteryPackConfigTable.setDescription('The battery configuration details for each ups in the device table. This is a sparse dependent table, and will contain the number of entries based upon the number of upss managed by the agent as reported by upsIdentNumUps and the number of battery battery packs per each as reported by tlpUpsNumBatteryPacks.') tlp_ups_battery_pack_config_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 4, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex'), (0, 'TRIPPLITE-PRODUCTS', 'tlpUpsBatteryPackIdentIndex')) if mibBuilder.loadTexts: tlpUpsBatteryPackConfigEntry.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatteryPackConfigEntry.setDescription('An entry containing information applicable to a particular battery pack managed by this agent.') tlp_ups_battery_pack_config_chemistry = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 4, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('unknown', 0), ('leadAcid', 1), ('nickelCadmium', 2), ('lithiumIon', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsBatteryPackConfigChemistry.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatteryPackConfigChemistry.setDescription('The type of battery pack.') tlp_ups_battery_pack_config_style = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 4, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('unknown', 0), ('nonsmart', 1), ('smart', 2), ('bms', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsBatteryPackConfigStyle.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatteryPackConfigStyle.setDescription('The style of battery pack.') tlp_ups_battery_pack_config_location = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 4, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('unknown', 0), ('internal', 1), ('external', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsBatteryPackConfigLocation.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatteryPackConfigLocation.setDescription('The location of the battery pack.') tlp_ups_battery_pack_config_strings = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 4, 1, 4), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsBatteryPackConfigStrings.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatteryPackConfigStrings.setDescription('The number of series strings in parallel contained in the battery pack. If the device does not support this value, then the agent will report ERROR_NO_SUCH_NAME.') tlp_ups_battery_pack_config_batteries_per_string = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 4, 1, 5), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsBatteryPackConfigBatteriesPerString.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatteryPackConfigBatteriesPerString.setDescription('The number of battery per each string in the battery pack. If the device does not support this value, then the agent will report ERROR_NO_SUCH_NAME.') tlp_ups_battery_pack_config_cells_per_battery = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 4, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 4, 6))).clone(namedValues=named_values(('unknown', 0), ('one', 1), ('two', 2), ('four', 4), ('six', 6)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsBatteryPackConfigCellsPerBattery.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatteryPackConfigCellsPerBattery.setDescription('The number of cells per battery..') tlp_ups_battery_pack_config_num_batteries = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 4, 1, 7), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsBatteryPackConfigNumBatteries.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatteryPackConfigNumBatteries.setDescription('The total number of batteries contained in the battery pack. If the device does not support this value, then the agent will report ERROR_NO_SUCH_NAME.') tlp_ups_battery_pack_config_capacity_units = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 4, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('mAHr', 0), ('mWHr', 1)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsBatteryPackConfigCapacityUnits.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatteryPackConfigCapacityUnits.setDescription('The units of measurement used for tlpUpsBatteryPackConfigDesignCapacity and tlpUpsBatteryPackConfigCellCapacity. If supported, this value will report either mAHR(1), amps per hour, or mWhr(1), watts per hour. If the device does not support this value, then the agent will report ERROR_NO_SUCH_NAME.') tlp_ups_battery_pack_config_design_capacity = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 4, 1, 9), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsBatteryPackConfigDesignCapacity.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatteryPackConfigDesignCapacity.setDescription('The theoretical or nominal capacity of the battery pack in the measurement defined by tlpUpsBatteryPackConfigCapacityUnits. If the device does not support this value, then the agent will report ERROR_NO_SUCH_NAME.') tlp_ups_battery_pack_config_cell_capacity = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 4, 1, 10), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsBatteryPackConfigCellCapacity.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatteryPackConfigCellCapacity.setDescription('The capacity of the batteries in the measurement defined by tlpUpsBatteryPackConfigCapacityUnits. If the device does not support this value, then the agent will report ERROR_NO_SUCH_NAME.') tlp_ups_battery_pack_config_min_cell_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 4, 1, 11), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsBatteryPackConfigMinCellVoltage.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatteryPackConfigMinCellVoltage.setDescription('The minimum cell voltage for the batteries. If the device does not support this value, then the agent will report ERROR_NO_SUCH_NAME.') tlp_ups_battery_pack_config_max_cell_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 4, 1, 12), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsBatteryPackConfigMaxCellVoltage.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatteryPackConfigMaxCellVoltage.setDescription('The maximum cell voltage for the batteries. If the device does not support this value, then the agent will report ERROR_NO_SUCH_NAME.') tlp_ups_battery_pack_detail_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 5)) if mibBuilder.loadTexts: tlpUpsBatteryPackDetailTable.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatteryPackDetailTable.setDescription('The details of each battery pack for each ups in the device table. This is a sparse dependent table, and will contain the number of entries based upon the number of upss and battery packs managed by the agent as reported by tlpUpsIdentNumUps and tlpUpsIdentNumBatteryPacks.') tlp_ups_battery_pack_detail_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 5, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex'), (0, 'TRIPPLITE-PRODUCTS', 'tlpUpsBatteryPackIdentIndex')) if mibBuilder.loadTexts: tlpUpsBatteryPackDetailEntry.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatteryPackDetailEntry.setDescription('An entry containing information applicable to a particular battery system managed by this agent.') tlp_ups_battery_pack_detail_condition = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 5, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('unknown', 0), ('good', 1), ('weak', 2), ('bad', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsBatteryPackDetailCondition.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatteryPackDetailCondition.setDescription('The condition of the battery. A bad battery should be replaced.') tlp_ups_battery_pack_detail_temperature_c = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 5, 1, 2), unsigned32()).setUnits('degrees Centigrade').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsBatteryPackDetailTemperatureC.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatteryPackDetailTemperatureC.setDescription('The ambient temperature at or near the UPS Battery casing.') tlp_ups_battery_pack_detail_temperature_f = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 5, 1, 3), unsigned32()).setUnits('0.1 degrees Farenheit').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsBatteryPackDetailTemperatureF.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatteryPackDetailTemperatureF.setDescription('The ambient temperature at or near the UPS Battery casing.') tlp_ups_battery_pack_detail_age = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 5, 1, 4), unsigned32()).setUnits('0.1 Years').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsBatteryPackDetailAge.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatteryPackDetailAge.setDescription('The age of the battery in years. This is equal to the current date minus tlpUpsBatteryPackIdentInstallDate.') tlp_ups_battery_pack_detail_last_replace_date = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 5, 1, 5), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsBatteryPackDetailLastReplaceDate.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatteryPackDetailLastReplaceDate.setDescription('The date when the batteries were last replaced in YYYYMMDD format.') tlp_ups_battery_pack_detail_next_replace_date = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 5, 1, 6), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsBatteryPackDetailNextReplaceDate.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatteryPackDetailNextReplaceDate.setDescription('The date when the batteries should next be replaced in YYYYMMDD format.') tlp_ups_battery_pack_detail_cycle_count = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 1, 5, 1, 7), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsBatteryPackDetailCycleCount.setStatus('current') if mibBuilder.loadTexts: tlpUpsBatteryPackDetailCycleCount.setDescription('The number of times the battery went into invert mode. This number is incremented by 1 each time the unit goes on battery mode (with the exception of Self Test mode). If the device does not support this value, then the agent will report ERROR_NO_SUCH_NAME.') tlp_ups_input_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 1)) if mibBuilder.loadTexts: tlpUpsInputTable.setStatus('current') if mibBuilder.loadTexts: tlpUpsInputTable.setDescription('The input details of each ups in the device table. This is a sparse dependent table, and will contain the number of entries based upon the number of upss managed by the agent as reported by tlpUpsIdentNumUps.') tlp_ups_input_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 1, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex')) if mibBuilder.loadTexts: tlpUpsInputEntry.setStatus('current') if mibBuilder.loadTexts: tlpUpsInputEntry.setDescription('An entry containing information applicable to all input lines per each ups managed by this agent.') tlp_ups_input_line_bads = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 1, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsInputLineBads.setStatus('current') if mibBuilder.loadTexts: tlpUpsInputLineBads.setDescription('A count of the number of times the input entered an out-of-tolerance condition as defined by the manufacturer. This count is incremented by one each time the input transitions from zero out-of-tolerance lines to one or more input lines out-of-tolerance. This value is not supported on all units. If the ups does not support this value, then the agent reports ERROR_NO_SUCH_NAME.') tlp_ups_input_nominal_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 1, 1, 2), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsInputNominalVoltage.setStatus('current') if mibBuilder.loadTexts: tlpUpsInputNominalVoltage.setDescription('The nominal value of the input line voltage. This value may not be supported on all models. If not supported, this value will return ERROR_NO_SUCH_NAME.') tlp_ups_input_nominal_frequency = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 1, 1, 3), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsInputNominalFrequency.setStatus('current') if mibBuilder.loadTexts: tlpUpsInputNominalFrequency.setDescription('The nominal value of the input line frequency. This value may not be supported on all models. If not supported, this value will return ERROR_NO_SUCH_NAME.') tlp_ups_input_low_transfer_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 1, 1, 4), unsigned32()).setUnits('0.1 Volts').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsInputLowTransferVoltage.setStatus('current') if mibBuilder.loadTexts: tlpUpsInputLowTransferVoltage.setDescription('The minimum line voltage allowed before the ups system transfers to battery backup.') tlp_ups_input_low_transfer_voltage_lower_bound = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 1, 1, 5), unsigned32()).setUnits('0.1 Volts').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsInputLowTransferVoltageLowerBound.setStatus('current') if mibBuilder.loadTexts: tlpUpsInputLowTransferVoltageLowerBound.setDescription('The lower boundary value of tlpUpsInputLowTransferVoltage as dictated by the hardware of the unit.') tlp_ups_input_low_transfer_voltage_upper_bound = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 1, 1, 6), unsigned32()).setUnits('0.1 Volts').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsInputLowTransferVoltageUpperBound.setStatus('current') if mibBuilder.loadTexts: tlpUpsInputLowTransferVoltageUpperBound.setDescription('The upper boundary value of tlpUpsInputLowTransferVoltage as dictated by the hardware of the unit.') tlp_ups_input_high_transfer_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 1, 1, 7), unsigned32()).setUnits('0.1 Volts').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsInputHighTransferVoltage.setStatus('current') if mibBuilder.loadTexts: tlpUpsInputHighTransferVoltage.setDescription('The maximum line voltage allowed before the ups system transfers to battery backup.') tlp_ups_input_high_transfer_voltage_lower_bound = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 1, 1, 8), unsigned32()).setUnits('0.1 Volts').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsInputHighTransferVoltageLowerBound.setStatus('current') if mibBuilder.loadTexts: tlpUpsInputHighTransferVoltageLowerBound.setDescription('The lower boundary value of tlpUpsInputHighTransferVoltage as dictated by the hardware of the unit.') tlp_ups_input_high_transfer_voltage_upper_bound = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 1, 1, 9), unsigned32()).setUnits('0.1 Volts').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsInputHighTransferVoltageUpperBound.setStatus('current') if mibBuilder.loadTexts: tlpUpsInputHighTransferVoltageUpperBound.setDescription('The upper boundary value of tlpUpsInputHighTransferVoltage as dictated by the hardware of the unit.') tlp_ups_input_phase_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 2)) if mibBuilder.loadTexts: tlpUpsInputPhaseTable.setStatus('current') if mibBuilder.loadTexts: tlpUpsInputPhaseTable.setDescription('The input phase details of each ups in the device table. This is a sparse dependent table, and will contain the number of entries based upon the number of upss managed by the agent as reported by tlpUpsIdentNumUps and tlpUpsIdentNumPhases.') tlp_ups_input_phase_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 2, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex'), (0, 'TRIPPLITE-PRODUCTS', 'tlpUpsInputPhaseIndex')) if mibBuilder.loadTexts: tlpUpsInputPhaseEntry.setStatus('current') if mibBuilder.loadTexts: tlpUpsInputPhaseEntry.setDescription('An entry containing information applicable to a particular input phase managed by this agent.') tlp_ups_input_phase_index = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 2, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsInputPhaseIndex.setStatus('current') if mibBuilder.loadTexts: tlpUpsInputPhaseIndex.setDescription('The table row index for the ups input phase.') tlp_ups_input_phase_frequency = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 2, 1, 2), unsigned32()).setUnits('0.1 Hertz').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsInputPhaseFrequency.setStatus('current') if mibBuilder.loadTexts: tlpUpsInputPhaseFrequency.setDescription('The present input frequency for a given input line.') tlp_ups_input_phase_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 2, 1, 3), unsigned32()).setUnits('0.1 Volt DC').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsInputPhaseVoltage.setStatus('current') if mibBuilder.loadTexts: tlpUpsInputPhaseVoltage.setDescription('The magnitude of the present input voltage for a given input line.') tlp_ups_input_phase_voltage_min = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 2, 1, 4), unsigned32()).setUnits('0.1 Volt DC').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsInputPhaseVoltageMin.setStatus('current') if mibBuilder.loadTexts: tlpUpsInputPhaseVoltageMin.setDescription('The minimum input voltage value since the last reset of this value for a given input line. If any value is written to either tlpUpsInputVoltageMin or tlpUpsInputVoltageMax, both will be reset to their appropriate minimum and maximum values.') tlp_ups_input_phase_voltage_max = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 2, 1, 5), unsigned32()).setUnits('0.1 Volt DC').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsInputPhaseVoltageMax.setStatus('current') if mibBuilder.loadTexts: tlpUpsInputPhaseVoltageMax.setDescription('The maximum input voltage value since the last reset of this value for a given input line. If any value is written to either tlpUpsInputVoltageMin or tlpUpsInputVoltageMax, both will be reset to their appropriate minimum and maximum values.') tlp_ups_input_phase_current = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 2, 1, 6), unsigned32()).setUnits('0.01 Amp DC').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsInputPhaseCurrent.setStatus('current') if mibBuilder.loadTexts: tlpUpsInputPhaseCurrent.setDescription('The magnitude of the present input current.') tlp_ups_input_phase_power = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 2, 2, 1, 7), unsigned32()).setUnits('Watts').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsInputPhasePower.setStatus('current') if mibBuilder.loadTexts: tlpUpsInputPhasePower.setDescription('The magnitude of the present input true power.') tlp_ups_output_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 3, 1)) if mibBuilder.loadTexts: tlpUpsOutputTable.setStatus('current') if mibBuilder.loadTexts: tlpUpsOutputTable.setDescription('The output details of each ups in the device table. This is a sparse dependent table, and will contain the number of entries based upon the number of upss managed by the agent as reported by tlpUpsIdentNumUps.') tlp_ups_output_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 3, 1, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex')) if mibBuilder.loadTexts: tlpUpsOutputEntry.setStatus('current') if mibBuilder.loadTexts: tlpUpsOutputEntry.setDescription('An entry containing information applicable to a particular output line managed by this agent.') tlp_ups_output_source = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 3, 1, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9))).clone(namedValues=named_values(('unknown', 0), ('other', 1), ('none', 2), ('normal', 3), ('bypass', 4), ('battery', 5), ('boosting', 6), ('reducing', 7), ('second', 8), ('economy', 9)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsOutputSource.setStatus('current') if mibBuilder.loadTexts: tlpUpsOutputSource.setDescription('The present source of output power. The enumeration none(2) indicates that there is no source of output power (and therefore no output power), for example, the system has opened the output breaker.') tlp_ups_output_nominal_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 3, 1, 1, 2), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsOutputNominalVoltage.setStatus('current') if mibBuilder.loadTexts: tlpUpsOutputNominalVoltage.setDescription('The nominal value of the output voltage. This value may not be supported on all models. If not supported, the agent reports ERROR_NO_SUCH_NAME.') tlp_ups_output_frequency = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 3, 1, 1, 3), unsigned32()).setUnits('0.1 Hertz').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsOutputFrequency.setStatus('current') if mibBuilder.loadTexts: tlpUpsOutputFrequency.setDescription('The present output frequency. The output frequency on most ups devices is common across all output lines. Some ups devices, however, maintain the output frequency per each line. If a common frequency is supported by the ups, then this frequency will contain the common frequency value. If not supported, the agent reports ERROR_NO_SUCH_NAME.') tlp_ups_output_line_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 3, 2)) if mibBuilder.loadTexts: tlpUpsOutputLineTable.setStatus('current') if mibBuilder.loadTexts: tlpUpsOutputLineTable.setDescription('The output line details of each ups in the device table. This is a sparse dependent table, and will contain the number of entries based upon the number of upss managed by the agent as reported by tlpUpsIdentNumUps.') tlp_ups_output_line_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 3, 2, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex'), (0, 'TRIPPLITE-PRODUCTS', 'tlpUpsOutputLineIndex')) if mibBuilder.loadTexts: tlpUpsOutputLineEntry.setStatus('current') if mibBuilder.loadTexts: tlpUpsOutputLineEntry.setDescription('An entry containing information applicable to a particular output line managed by this agent.') tlp_ups_output_line_index = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 3, 2, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsOutputLineIndex.setStatus('current') if mibBuilder.loadTexts: tlpUpsOutputLineIndex.setDescription('The table row index for the ups output line.') tlp_ups_output_line_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 3, 2, 1, 2), unsigned32()).setUnits('0.1 Volt DC').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsOutputLineVoltage.setStatus('current') if mibBuilder.loadTexts: tlpUpsOutputLineVoltage.setDescription('The magnitude of the present output voltage for a given output line.') tlp_ups_output_line_current = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 3, 2, 1, 3), unsigned32()).setUnits('0.1 Amp').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsOutputLineCurrent.setStatus('current') if mibBuilder.loadTexts: tlpUpsOutputLineCurrent.setDescription('The present output current.') tlp_ups_output_line_power = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 3, 2, 1, 4), unsigned32()).setUnits('Watts').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsOutputLinePower.setStatus('current') if mibBuilder.loadTexts: tlpUpsOutputLinePower.setDescription('The present output true power.') tlp_ups_output_line_percent_load = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 3, 2, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(0, 200))).setUnits('percent').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsOutputLinePercentLoad.setStatus('current') if mibBuilder.loadTexts: tlpUpsOutputLinePercentLoad.setDescription('The percentage of the UPS power capacity presently being used on this output line, i.e., the greater of the percent load of true power capacity and the percent load of VA.') tlp_ups_output_line_frequency = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 3, 2, 1, 6), unsigned32()).setUnits('0.1 Hertz').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsOutputLineFrequency.setStatus('current') if mibBuilder.loadTexts: tlpUpsOutputLineFrequency.setDescription('The present output frequency on this output line. The output frequency on most ups devices is common across all output lines. Some ups devices, however, maintain the output frequency per each line. If a per line frequency is supported by the ups, then this frequency value will reports the value of this line. If not supported, the agent reports ERROR_NO_SUCH_NAME.') tlp_ups_bypass_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 4, 1)) if mibBuilder.loadTexts: tlpUpsBypassTable.setStatus('current') if mibBuilder.loadTexts: tlpUpsBypassTable.setDescription('The bypass details of each ups in the device table. This is a sparse dependent table, and will contain the number of entries based upon the number of upss managed by the agent as reported by tlpUpsIdentNumUps.') tlp_ups_bypass_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 4, 1, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex')) if mibBuilder.loadTexts: tlpUpsBypassEntry.setStatus('current') if mibBuilder.loadTexts: tlpUpsBypassEntry.setDescription('An entry containing information applicable to all input lines per each ups managed by this agent.') tlp_ups_bypass_frequency = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 4, 1, 1, 1), unsigned32()).setUnits('0.1 Hertz').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsBypassFrequency.setStatus('current') if mibBuilder.loadTexts: tlpUpsBypassFrequency.setDescription('The present bypass frequency.') tlp_ups_bypass_line_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 4, 2)) if mibBuilder.loadTexts: tlpUpsBypassLineTable.setStatus('current') if mibBuilder.loadTexts: tlpUpsBypassLineTable.setDescription('The bypass line details of each ups in the device table. This is a sparse dependent table, and will contain the number of entries based upon the number of upss managed by the agent as reported by tlpUpsIdentNumUps.') tlp_ups_bypass_line_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 4, 2, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex'), (0, 'TRIPPLITE-PRODUCTS', 'tlpUpsBypassLineIndex')) if mibBuilder.loadTexts: tlpUpsBypassLineEntry.setStatus('current') if mibBuilder.loadTexts: tlpUpsBypassLineEntry.setDescription('An entry containing information applicable to a particular bypass line managed by this agent.') tlp_ups_bypass_line_index = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 4, 2, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsBypassLineIndex.setStatus('current') if mibBuilder.loadTexts: tlpUpsBypassLineIndex.setDescription('The bypass line identifier.') tlp_ups_bypass_line_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 4, 2, 1, 2), unsigned32()).setUnits('0.1 Volt DC').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsBypassLineVoltage.setStatus('current') if mibBuilder.loadTexts: tlpUpsBypassLineVoltage.setDescription('The present bypass voltage.') tlp_ups_bypass_line_current = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 4, 2, 1, 3), unsigned32()).setUnits('0.1 Amp').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsBypassLineCurrent.setStatus('current') if mibBuilder.loadTexts: tlpUpsBypassLineCurrent.setDescription('The present bypass current.') tlp_ups_bypass_line_power = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 4, 2, 1, 4), unsigned32()).setUnits('Watts').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsBypassLinePower.setStatus('current') if mibBuilder.loadTexts: tlpUpsBypassLinePower.setDescription('The present true power conveyed by the bypass.') tlp_ups_outlet_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 1)) if mibBuilder.loadTexts: tlpUpsOutletTable.setStatus('current') if mibBuilder.loadTexts: tlpUpsOutletTable.setDescription('The details of each ups outlet in the device table. This is a sparse dependent table, and will contain the number of entries based upon the number of upss managed by the agent as reported by tlpUpsIdentNumUps.') tlp_ups_outlet_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 1, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex'), (0, 'TRIPPLITE-PRODUCTS', 'tlpUpsOutletIndex')) if mibBuilder.loadTexts: tlpUpsOutletEntry.setStatus('current') if mibBuilder.loadTexts: tlpUpsOutletEntry.setDescription('An entry containing information applicable to a particular outlet managed by this agent.') tlp_ups_outlet_index = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 1, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsOutletIndex.setStatus('current') if mibBuilder.loadTexts: tlpUpsOutletIndex.setDescription('The table row index for the ups outlet.') tlp_ups_outlet_name = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 1, 1, 2), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsOutletName.setStatus('current') if mibBuilder.loadTexts: tlpUpsOutletName.setDescription('A user-definable string identifying the name of the outlet.') tlp_ups_outlet_description = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 1, 1, 3), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsOutletDescription.setStatus('current') if mibBuilder.loadTexts: tlpUpsOutletDescription.setDescription('A user-definable string identifying the device(s) connected to the given outlet.') tlp_ups_outlet_state = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 1, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('unknown', 0), ('off', 1), ('on', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsOutletState.setStatus('current') if mibBuilder.loadTexts: tlpUpsOutletState.setDescription('The current state of the outlet.') tlp_ups_outlet_controllable = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 1, 1, 5), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsOutletControllable.setStatus('current') if mibBuilder.loadTexts: tlpUpsOutletControllable.setDescription('Denotes whether this outlet is controllable.') tlp_ups_outlet_command = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 1, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('idle', 0), ('turnOff', 1), ('turnOn', 2), ('cycle', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsOutletCommand.setStatus('current') if mibBuilder.loadTexts: tlpUpsOutletCommand.setDescription('Reading this value will always return 0. Setting this value to turnOff(1) will turn off the outlet. Setting this value to turnOn(2) will turn on the outlet. Setting this value to cycle(3) will turn the outlet off, then turn it back on.') tlp_ups_outlet_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 1, 1, 7), unsigned32()).setUnits('0.1 Volt DC').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsOutletVoltage.setStatus('current') if mibBuilder.loadTexts: tlpUpsOutletVoltage.setDescription('The magnitude of the present output voltage for a given outlet. If the voltage measurement is not supported for an individual receptacle regardless whether device-wide or just for this receptacle, then this value will always return ERROR_NO_SUCH_NAME. Device-wide support for receptacle voltage measurements is denoted by tlpUpsSupportsOutletVoltage.') tlp_ups_outlet_current = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 1, 1, 8), unsigned32()).setUnits('0.01 RMS Amp').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsOutletCurrent.setStatus('current') if mibBuilder.loadTexts: tlpUpsOutletCurrent.setDescription('The present output current, in hundreths of amps, of a given outlet. If the current measurement is not supported for an individual receptacle regardless whether device-wide or just for this receptacle, then this value will always return ERROR_NO_SUCH_NAME. Device-wide support for receptacle current measurements is denoted by tlpUpsSupportsCurrentPower.') tlp_ups_outlet_power = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 1, 1, 9), unsigned32()).setUnits('Watts').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsOutletPower.setStatus('current') if mibBuilder.loadTexts: tlpUpsOutletPower.setDescription('The output power of a given outlet. If the power measurement is not supported for an individual receptacle regardless whether device-wide or just for this receptacle, then this value will always return ERROR_NO_SUCH_NAME. Device-wide support for receptacle power measurements is denoted by tlpUpsSupportsCurrentPower.') tlp_ups_outlet_ramp_action = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 1, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('remainOff', 0), ('turnOnAfterDelay', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsOutletRampAction.setStatus('current') if mibBuilder.loadTexts: tlpUpsOutletRampAction.setDescription('The ramp action to take on a given outlet when powering on the device. If this receptacle is not controllable, as denoted by tlpUpsOutletControllable, then this value will always return ERROR_NO_SUCH_NAME.') tlp_ups_outlet_ramp_delay = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 1, 1, 11), integer32()).setUnits('seconds').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsOutletRampDelay.setStatus('current') if mibBuilder.loadTexts: tlpUpsOutletRampDelay.setDescription('The number of seconds to delay before powering on the given outlet. If this receptacle is not controllable, as denoted by tlpUpsOutletControllable, then this value will always return ERROR_NO_SUCH_NAME.') tlp_ups_outlet_shed_action = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 1, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('remainOn', 0), ('turnOffAfterDelay', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsOutletShedAction.setStatus('current') if mibBuilder.loadTexts: tlpUpsOutletShedAction.setDescription('The shed action to take on a given outlet when powering off the device. If this receptacle is not controllable, as denoted by tlpUpsOutletControllable, then this value will always return ERROR_NO_SUCH_NAME.') tlp_ups_outlet_shed_delay = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 1, 1, 13), integer32()).setUnits('seconds').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsOutletShedDelay.setStatus('current') if mibBuilder.loadTexts: tlpUpsOutletShedDelay.setDescription('The number of seconds to delay before powering off the given outlet. If this receptacle is not controllable, as denoted by tlpUpsOutletControllable, then this value will always return ERROR_NO_SUCH_NAME.') tlp_ups_outlet_group = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 1, 1, 14), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsOutletGroup.setStatus('current') if mibBuilder.loadTexts: tlpUpsOutletGroup.setDescription('The tlpUpsOutletGroupIndex group index of the respective group to which the given outlet is assigned, or zero (0) if the given outlet is not grouped.') tlp_ups_outlet_group_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 2)) if mibBuilder.loadTexts: tlpUpsOutletGroupTable.setStatus('current') if mibBuilder.loadTexts: tlpUpsOutletGroupTable.setDescription('The receptacle grouping details of each ups in device table. This is a sparse dependent table, and will contain the number of entries based upon the value of tlpUpsIdentNumOutletGroups per each device.') tlp_ups_outlet_group_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 2, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex'), (0, 'TRIPPLITE-PRODUCTS', 'tlpUpsOutletGroupIndex')) if mibBuilder.loadTexts: tlpUpsOutletGroupEntry.setStatus('current') if mibBuilder.loadTexts: tlpUpsOutletGroupEntry.setDescription('An entry containing information applicable to a particular outlet group managed by this agent.') tlp_ups_outlet_group_index = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 2, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsOutletGroupIndex.setStatus('current') if mibBuilder.loadTexts: tlpUpsOutletGroupIndex.setDescription('The table row index for the ups outlet group.') tlp_ups_outlet_group_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 2, 1, 2), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsOutletGroupRowStatus.setStatus('current') if mibBuilder.loadTexts: tlpUpsOutletGroupRowStatus.setDescription('Row status for the tlpUpsOutletGroupTable') tlp_ups_outlet_group_name = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 2, 1, 3), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsOutletGroupName.setStatus('current') if mibBuilder.loadTexts: tlpUpsOutletGroupName.setDescription('The name of this outlet group.') tlp_ups_outlet_group_description = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 2, 1, 4), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsOutletGroupDescription.setStatus('current') if mibBuilder.loadTexts: tlpUpsOutletGroupDescription.setDescription('A description for this outlet group.') tlp_ups_outlet_group_state = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 2, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('unknown', 0), ('off', 1), ('on', 2), ('mixed', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsOutletGroupState.setStatus('current') if mibBuilder.loadTexts: tlpUpsOutletGroupState.setDescription('The current state of the outlet group. This value will report off(1) if all outlets in the group are off, on(2) if all outlets in the group are on, mixed(3) if some outlets in the group are off and others are on, or unknown(0) if the state of the outlets cannot be determined.') tlp_ups_outlet_group_command = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 5, 2, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('idle', 0), ('turnOff', 1), ('turnOn', 2), ('cycle', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsOutletGroupCommand.setStatus('current') if mibBuilder.loadTexts: tlpUpsOutletGroupCommand.setDescription('Reading this value will always return 0. Setting this value to turnOff(1) will turn off every outlet associated with the group. Setting this value to turnOn(2) will turn on every outlet associated with the group. Setting this value to cycle(3) will turn off every outlet associated with the group, then turn each outlet back on.') tlp_ups_watchdog_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 6, 1)) if mibBuilder.loadTexts: tlpUpsWatchdogTable.setStatus('current') if mibBuilder.loadTexts: tlpUpsWatchdogTable.setDescription('The watchdog details of each ups in device table. This is a sparse dependent table, and will contain some subset of devices that are upss.') tlp_ups_watchdog_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 6, 1, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex')) if mibBuilder.loadTexts: tlpUpsWatchdogEntry.setStatus('current') if mibBuilder.loadTexts: tlpUpsWatchdogEntry.setDescription('An entry containing watchdog details for a particular ups.') tlp_ups_watchdog_supported = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 6, 1, 1, 1), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpUpsWatchdogSupported.setStatus('current') if mibBuilder.loadTexts: tlpUpsWatchdogSupported.setDescription('Indicates whether or not this ups supports a watchdog reboot.') tlp_ups_watchdog_secs_before_reboot = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 3, 6, 1, 1, 2), unsigned32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsWatchdogSecsBeforeReboot.setStatus('current') if mibBuilder.loadTexts: tlpUpsWatchdogSecsBeforeReboot.setDescription('The maximum number of seconds that can expire between polls that the engine makes to the ups for data. If this time runs out, then the ups will cycle its outputs. Set this to zero to turns disable this feature.') tlp_ups_control_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 4, 1)) if mibBuilder.loadTexts: tlpUpsControlTable.setStatus('current') if mibBuilder.loadTexts: tlpUpsControlTable.setDescription('The actionable controls for each ups in device table. This is a sparse dependent table, and will contain some subset of devices that are upss.') tlp_ups_control_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 4, 1, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex')) if mibBuilder.loadTexts: tlpUpsControlEntry.setStatus('current') if mibBuilder.loadTexts: tlpUpsControlEntry.setDescription('An entry containing controls for a particular ups.') tlp_ups_control_self_test = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 4, 1, 1, 1), truth_value()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsControlSelfTest.setStatus('current') if mibBuilder.loadTexts: tlpUpsControlSelfTest.setDescription('Set to TRUE to initiate a self test on the ups.') tlp_ups_control_ramp = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 4, 1, 1, 2), truth_value()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsControlRamp.setStatus('current') if mibBuilder.loadTexts: tlpUpsControlRamp.setDescription('Set to TRUE to initiate the pre-designated ramp sequence on the ups.') tlp_ups_control_shed = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 4, 1, 1, 3), truth_value()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsControlShed.setStatus('current') if mibBuilder.loadTexts: tlpUpsControlShed.setDescription('Set to TRUE to initiate the pre-designated shed sequence on the ups.') tlp_ups_control_ups_on = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 4, 1, 1, 4), truth_value()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsControlUpsOn.setStatus('current') if mibBuilder.loadTexts: tlpUpsControlUpsOn.setDescription('Set to TRUE to turn the ups on.') tlp_ups_control_ups_off = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 4, 1, 1, 5), truth_value()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsControlUpsOff.setStatus('current') if mibBuilder.loadTexts: tlpUpsControlUpsOff.setDescription('Set to TRUE to turn the ups off.') tlp_ups_control_ups_reboot = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 4, 1, 1, 6), truth_value()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsControlUpsReboot.setStatus('current') if mibBuilder.loadTexts: tlpUpsControlUpsReboot.setDescription('Set to TRUE to reboot the ups.') tlp_ups_control_bypass = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 4, 1, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disable', 0), ('enable', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsControlBypass.setStatus('current') if mibBuilder.loadTexts: tlpUpsControlBypass.setDescription('This switches the ups in and out of bypass mode. This value returns the current bypass mode: disable(0) if the ups is not in bypass mode, enable(1) if the ups is in bypass mode. Set to disable(0) to exit bypass mode, or enable(1) to enter bypass mode. If switching bypass mode is not supported, this value will return ERROR_NO_SUCH_NAME.') tlp_ups_config_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1)) if mibBuilder.loadTexts: tlpUpsConfigTable.setStatus('current') if mibBuilder.loadTexts: tlpUpsConfigTable.setDescription('The configuration details of each ups in the device table. This is a sparse dependent table, and will contain the number of entries based upon the number of upss managed by the agent as reported by tlpUpsIdentNumUps.') tlp_ups_config_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex')) if mibBuilder.loadTexts: tlpUpsConfigEntry.setStatus('current') if mibBuilder.loadTexts: tlpUpsConfigEntry.setDescription('An entry containing information applicable to all input lines per each ups managed by this agent.') tlp_ups_config_input_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 1), unsigned32()).setUnits('Volts').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsConfigInputVoltage.setStatus('current') if mibBuilder.loadTexts: tlpUpsConfigInputVoltage.setDescription('The nominal value of the input line voltage. This value may not be supported on all models. If not supported, this value will return ERROR_NO_SUCH_NAME. This value may not be writable on all models. If not writable, the value will be rejected and an appropriate error message will be returned.') tlp_ups_config_input_frequency = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 2), unsigned32()).setUnits('0.1 Hertz').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsConfigInputFrequency.setStatus('current') if mibBuilder.loadTexts: tlpUpsConfigInputFrequency.setDescription('The nominal input frequency. On those systems which support read-write access to this object, if there is an attempt to set this variable to a value that is not supported, the request must be rejected and the agent shall respond with an appropriate error message, i.e., badValue for SNMPv1, or inconsistentValue for SNMPv2.') tlp_ups_config_output_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 3), unsigned32()).setUnits('Volts').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsConfigOutputVoltage.setStatus('current') if mibBuilder.loadTexts: tlpUpsConfigOutputVoltage.setDescription('The nominal value of the output voltage. This value may not be supported on all models. If not supported, the agent reports ERROR_NO_SUCH_NAME. This value may not be writable on all models. If not writable, the value will be rejected and an appropriate error message will be returned.') tlp_ups_config_output_frequency = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 4), unsigned32()).setUnits('0.1 Hertz').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsConfigOutputFrequency.setStatus('current') if mibBuilder.loadTexts: tlpUpsConfigOutputFrequency.setDescription('The nominal output frequency. On those systems which support read-write access to this object, if there is an attempt to set this variable to a value that is not supported, the request will be rejected and the agent will respond with an appropriate error message.') tlp_ups_config_audible_status = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('disabled', 1), ('enabled', 2), ('muted', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsConfigAudibleStatus.setStatus('current') if mibBuilder.loadTexts: tlpUpsConfigAudibleStatus.setDescription('The requested state of the audible alarm. When in the disabled state, the audible alarm should never sound. The enabled state is self- describing. Setting this object to muted(3) when the audible alarm is sounding shall temporarily silence the alarm. It will remain muted until it would normally stop sounding and the value returned for read operations during this period shall equal muted(3). At the end of this period, the value shall revert to enabled(2). Writes of the value muted(3) when the audible alarm is not sounding shall be accepted but otherwise shall have no effect.') tlp_ups_config_auto_battery_test = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4))).clone(namedValues=named_values(('disabled', 0), ('biweekly', 1), ('monthly', 2), ('quarterly', 3), ('semiannually', 4)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsConfigAutoBatteryTest.setStatus('current') if mibBuilder.loadTexts: tlpUpsConfigAutoBatteryTest.setDescription('When disabled(0), the ups will not perform an automatic battery selftest. When set to another value, the ups will perform an automatic selftest in the approximate period defined by each respective enumerated value. This feature is generally not recommended.') tlp_ups_config_auto_restart_after_shutdown = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disabled', 0), ('enabled', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsConfigAutoRestartAfterShutdown.setStatus('current') if mibBuilder.loadTexts: tlpUpsConfigAutoRestartAfterShutdown.setDescription('When enabled(1), the ups should autorestart after a shutdown from battery mode if valid AC is applied. When disabled(0), the ups should not autorestart when AC is restored and instead power up into standby mode.') tlp_ups_config_auto_ramp_on_transition = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disabled', 0), ('enabled', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsConfigAutoRampOnTransition.setStatus('current') if mibBuilder.loadTexts: tlpUpsConfigAutoRampOnTransition.setDescription('When enabled(1), the ups should perform its preconfigured ramp sequence when valid AC is restored while in battery mode. If this value is not supported by the ups, then this value will always return ERROR_NO_SUCH_NAME.') tlp_ups_config_auto_shed_on_transition = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disabled', 0), ('enabled', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsConfigAutoShedOnTransition.setStatus('current') if mibBuilder.loadTexts: tlpUpsConfigAutoShedOnTransition.setDescription('When enabled(1), the ups should perform its preconfigured shed sequence when valid AC is lost causing the ups to enter battery mode. If this value is not supported by the ups, then this value will always return ERROR_NO_SUCH_NAME.') tlp_ups_config_bypass_lower_limit_percent = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(-20, -5))).setUnits('percent').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsConfigBypassLowerLimitPercent.setStatus('current') if mibBuilder.loadTexts: tlpUpsConfigBypassLowerLimitPercent.setDescription('The lowest AC input voltage allowed to be output to the load while in bypass mode. This setting is expressed as a percentage from nominal voltage. If this value is not supported by the ups, then this value will always return ERROR_NO_SUCH_NAME.') tlp_ups_config_bypass_upper_limit_percent = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 11), integer32().subtype(subtypeSpec=value_range_constraint(5, 20))).setUnits('percent').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsConfigBypassUpperLimitPercent.setStatus('current') if mibBuilder.loadTexts: tlpUpsConfigBypassUpperLimitPercent.setDescription('The highest AC input voltage allowed to be output to the load while in bypass mode. This setting is expressed as a percentage from nominal voltage. If this value is not supported by the ups, then this value will always return ERROR_NO_SUCH_NAME.') tlp_ups_config_bypass_lower_limit_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 12), unsigned32()).setUnits('Volts').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsConfigBypassLowerLimitVoltage.setStatus('current') if mibBuilder.loadTexts: tlpUpsConfigBypassLowerLimitVoltage.setDescription('The lowest AC input voltage allowed to be output to the load while in bypass mode. If this value is not supported by the ups, then this value will always return ERROR_NO_SUCH_NAME.') tlp_ups_config_bypass_upper_limit_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 13), unsigned32()).setUnits('Volts').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsConfigBypassUpperLimitVoltage.setStatus('current') if mibBuilder.loadTexts: tlpUpsConfigBypassUpperLimitVoltage.setDescription('The highest AC input voltage allowed to be output to the load while in bypass mode. If this value is not supported by the ups, then this value will always return ERROR_NO_SUCH_NAME.') tlp_ups_config_cold_start = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 14), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disabled', 0), ('enabled', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsConfigColdStart.setStatus('current') if mibBuilder.loadTexts: tlpUpsConfigColdStart.setDescription('This option enables or disables the ability to turn the ups on without AC supplied. If this value is not supported by the ups, then this value will always return ERROR_NO_SUCH_NAME.') tlp_ups_config_economic_mode = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 15), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5))).clone(namedValues=named_values(('online', 0), ('economy', 1), ('constant50Hz', 2), ('constant60Hz', 3), ('constantAuto', 4), ('autoAdaptive', 5)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsConfigEconomicMode.setStatus('current') if mibBuilder.loadTexts: tlpUpsConfigEconomicMode.setDescription('The configurable economic mode options for the ups. The online(0) mode is the default configuration of most upss, which is synonymous as having the economic mode disabled. The economy(1) mode is the typical configuration to run in economy mode, which is synonymous as having the economic mode enabled. Constant50Hz(2) is a power strategy, which fixes the output frequency at 50Hz. Constant60Hz(3) is a power stragegy, which fixes the output frequency at 60Hz. ConstantAuto(4) regulates the output frequency at nominal input frequency. AutoAdaptive(5) mode will cause the ups to automatically switch between online(0), maximum quality, and economy(1), maximum efficiency, to improve efficiency during stable utility periods and improve output regulation during unstable utility periods. Not all values are supported by all upss. Most upss, if supportive of economic mode, only supports online(0) and economy(1). If the ups does not support economic mode, then this value will always return ERROR_NO_SUCH_NAME.') tlp_ups_config_fault_action = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 16), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('bypass', 0), ('standby', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsConfigFaultAction.setStatus('current') if mibBuilder.loadTexts: tlpUpsConfigFaultAction.setDescription('Determines the action to take if the output needs to be shut down due to a fault condition, limited by the type of fault incurred. When configured for bypass(0), the ups will go to bypass on a fault condition. When configured for standby(1), the ups will go to standby mode on a fault condition. Either configuration will be valid as long as AC input is within normal line voltage and frequency limits when the fault condition occurs. If the line is outside these limits, the ups will turn off. If this value is not supported by the ups, then this value will always return ERROR_NO_SUCH_NAME.') tlp_ups_config_off_mode = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 17), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('standby', 0), ('bypass', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsConfigOffMode.setStatus('current') if mibBuilder.loadTexts: tlpUpsConfigOffMode.setDescription('This option governs what mode the ups should go into when AC input is available, but the load is either off or not battery backed up. If this setting is configured for bypass(1), the intention is that any time the ups would normally go into standby mode, it would instead go into bypass mode. Note that this setting does not dictate the mode for fault conditions, which is governed by tlpUpsConfigFaultAction. If this value is not supported by the ups, then this value will always return ERROR_NO_SUCH_NAME.') tlp_ups_config_line_sensitivity = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 1, 1, 18), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('normal', 0), ('reduced', 1), ('fullyReduced', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsConfigLineSensitivity.setStatus('current') if mibBuilder.loadTexts: tlpUpsConfigLineSensitivity.setDescription('Adjusts the AC line voltage sensitivity setting. If this value is not supported by the ups, then this value will always return ERROR_NO_SUCH_NAME.') tlp_ups_config_auto_restart_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 2)) if mibBuilder.loadTexts: tlpUpsConfigAutoRestartTable.setStatus('current') if mibBuilder.loadTexts: tlpUpsConfigAutoRestartTable.setDescription('The configurable automatic restart options of each ups in device table. This is a sparse dependent table, and will contain some subset of devices that are upss. Not all options are available on all upss.') tlp_ups_config_auto_restart_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 2, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex')) if mibBuilder.loadTexts: tlpUpsConfigAutoRestartEntry.setStatus('current') if mibBuilder.loadTexts: tlpUpsConfigAutoRestartEntry.setDescription('An entry containing configurable automatic restart options for a particular ups.') tlp_ups_config_auto_restart_inverter_shutdown = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 2, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disabled', 0), ('enabled', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsConfigAutoRestartInverterShutdown.setStatus('current') if mibBuilder.loadTexts: tlpUpsConfigAutoRestartInverterShutdown.setDescription('If enabled(1) and the ups is turned off from invert mode (via user interaction), if line becomes valid, the ups will automatically go to line mode. If disabled(0), the ups will turn back on and go to standby mode instead.') tlp_ups_config_auto_restart_delayed_wakeup = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 2, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disabled', 0), ('enabled', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsConfigAutoRestartDelayedWakeup.setStatus('current') if mibBuilder.loadTexts: tlpUpsConfigAutoRestartDelayedWakeup.setDescription('If enabled(1) and power fails during a DelayBeforeStartup and line remains invalid after the timeout expires, the ups will be set to turn back on automatically. If disabled(0), the ups will turn back on and go to standby mode instead.') tlp_ups_config_auto_restart_low_voltage_cutoff = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 2, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disabled', 0), ('enabled', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsConfigAutoRestartLowVoltageCutoff.setStatus('current') if mibBuilder.loadTexts: tlpUpsConfigAutoRestartLowVoltageCutoff.setDescription('If enabled(1) and the ups is turned off from invert mode (via low voltage cutoff), if line becomes valid, the ups will automatically go to line mode. If disabled(0), the ups will turn back on and go to standby mode instead.') tlp_ups_config_auto_restart_over_load = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disabled', 0), ('enabled', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsConfigAutoRestartOverLoad.setStatus('current') if mibBuilder.loadTexts: tlpUpsConfigAutoRestartOverLoad.setDescription('If enabled(1) and the ups is turned off from invert mode (via overload), if line becomes valid, the ups will automatically go to line mode. If disabled(0), the ups will turn back on and go to standby mode instead.') tlp_ups_config_auto_restart_over_temperature = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 2, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disabled', 0), ('enabled', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsConfigAutoRestartOverTemperature.setStatus('current') if mibBuilder.loadTexts: tlpUpsConfigAutoRestartOverTemperature.setDescription('If enabled(1) and the ups is turned off from invert mode (via over temperature), if line becomes valid, the ups will automatically go to line mode. If disabled(0), the ups will turn back on and go to standby mode instead.') tlp_ups_config_threshold_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 3)) if mibBuilder.loadTexts: tlpUpsConfigThresholdTable.setStatus('current') if mibBuilder.loadTexts: tlpUpsConfigThresholdTable.setDescription('The configurable threshold options of each ups in device table. This is a sparse dependent table, and will contain some subset of devices that are upss. Not all options are available on all upss.') tlp_ups_config_threshold_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 3, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex')) if mibBuilder.loadTexts: tlpUpsConfigThresholdEntry.setStatus('current') if mibBuilder.loadTexts: tlpUpsConfigThresholdEntry.setDescription('An entry containing configurable threshold options for a particular ups.') tlp_ups_config_battery_age_threshold = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 3, 1, 1), unsigned32()).setUnits('months').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsConfigBatteryAgeThreshold.setStatus('current') if mibBuilder.loadTexts: tlpUpsConfigBatteryAgeThreshold.setDescription('The number of months for a battery to be in service. The battery age alarm, tlpUpsAlarmBatteryAgeAboveThreshold, is triggered when the current date exceeds tlpUpsBatteryPackIdentInstallDate by tlpUpsConfigBatteryAgeThreshold months.') tlp_ups_config_low_battery_threshold = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 3, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(5, 95))).setUnits('percent').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsConfigLowBatteryThreshold.setStatus('current') if mibBuilder.loadTexts: tlpUpsConfigLowBatteryThreshold.setDescription('This value denotes the percentage of battery capacity remaining warning level. The low battery alarm, tlpUpsAlarmLowBattery, is triggered when tlpUpsEstimatedChargeRemaining drops below this value.') tlp_ups_config_low_battery_time = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 3, 1, 3), unsigned32()).setUnits('seconds').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsConfigLowBatteryTime.setStatus('current') if mibBuilder.loadTexts: tlpUpsConfigLowBatteryTime.setDescription('The value in seconds of tlpUpsEstimatedMinutesRemaining at which a lowBattery condition is declared. For agents which support only discrete (discontinuous) values, then the agent shall round up to the next supported value. If the requested value is larger than the largest supported value, then the largest supported value shall be selected.') tlp_ups_config_over_load_threshold = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 1, 5, 3, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(5, 105))).setUnits('percent').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpUpsConfigOverLoadThreshold.setStatus('current') if mibBuilder.loadTexts: tlpUpsConfigOverLoadThreshold.setDescription('This value denotes the percentage of load at which the overload condition occurs. The overload alarm, tlpUpsAlarmOutputOverload, is triggered when the percentage of output load exceeds this value.') tlp_pdu_ident_num_pdu = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduIdentNumPdu.setStatus('current') if mibBuilder.loadTexts: tlpPduIdentNumPdu.setDescription('The number of pdu devices that this agent is currently managing.') tlp_pdu_ident_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 2)) if mibBuilder.loadTexts: tlpPduIdentTable.setStatus('current') if mibBuilder.loadTexts: tlpPduIdentTable.setDescription('The identity details of each pdu in device table. This is a sparse dependent table, and will contain some subset of devices that are pdus.') tlp_pdu_ident_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 2, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex')) if mibBuilder.loadTexts: tlpPduIdentEntry.setStatus('current') if mibBuilder.loadTexts: tlpPduIdentEntry.setDescription('An entry containing details for a particular pdu.') tlp_pdu_ident_num_inputs = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 2, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduIdentNumInputs.setStatus('current') if mibBuilder.loadTexts: tlpPduIdentNumInputs.setDescription('The number of input lines supported by the pdu.') tlp_pdu_ident_num_outputs = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 2, 1, 2), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduIdentNumOutputs.setStatus('current') if mibBuilder.loadTexts: tlpPduIdentNumOutputs.setDescription('The number of output lines supported by the pdu.') tlp_pdu_ident_num_phases = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 2, 1, 3), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduIdentNumPhases.setStatus('current') if mibBuilder.loadTexts: tlpPduIdentNumPhases.setDescription('The number of phases supported by the pdu.') tlp_pdu_ident_num_outlets = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 2, 1, 4), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduIdentNumOutlets.setStatus('current') if mibBuilder.loadTexts: tlpPduIdentNumOutlets.setDescription('The number of receptacles supported by the pdu.') tlp_pdu_ident_num_outlet_groups = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 2, 1, 5), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduIdentNumOutletGroups.setStatus('current') if mibBuilder.loadTexts: tlpPduIdentNumOutletGroups.setDescription('The number of receptacle groups supported by the pdu.') tlp_pdu_ident_num_circuits = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 2, 1, 6), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduIdentNumCircuits.setStatus('current') if mibBuilder.loadTexts: tlpPduIdentNumCircuits.setDescription('The number of circuits supported by the pdu.') tlp_pdu_ident_num_breakers = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 2, 1, 7), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduIdentNumBreakers.setStatus('current') if mibBuilder.loadTexts: tlpPduIdentNumBreakers.setDescription('The number of bank breakers supported by the pdu.') tlp_pdu_ident_num_heatsinks = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 2, 1, 8), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduIdentNumHeatsinks.setStatus('current') if mibBuilder.loadTexts: tlpPduIdentNumHeatsinks.setDescription('The number of heatsink thermistors supported by the pdu.') tlp_pdu_supports_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 3)) if mibBuilder.loadTexts: tlpPduSupportsTable.setStatus('current') if mibBuilder.loadTexts: tlpPduSupportsTable.setDescription('The supported details of each pdu in device table. This is a sparse dependent table, and will contain some subset of devices that are pdus.') tlp_pdu_supports_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 3, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex')) if mibBuilder.loadTexts: tlpPduSupportsEntry.setStatus('current') if mibBuilder.loadTexts: tlpPduSupportsEntry.setDescription('An entry containing supported details for a particular pdu.') tlp_pdu_supports_energywise = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 3, 1, 1), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduSupportsEnergywise.setStatus('current') if mibBuilder.loadTexts: tlpPduSupportsEnergywise.setDescription('Indicates whether the pdu supports Cisco EnergyWise.') tlp_pdu_supports_ramp_shed = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 3, 1, 2), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduSupportsRampShed.setStatus('current') if mibBuilder.loadTexts: tlpPduSupportsRampShed.setDescription('Indicates whether the pdu supports ramping and shedding.') tlp_pdu_supports_outlet_group = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 3, 1, 3), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduSupportsOutletGroup.setStatus('current') if mibBuilder.loadTexts: tlpPduSupportsOutletGroup.setDescription('Indicates whether the pdu supports outlet groups.') tlp_pdu_supports_outlet_current_power = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 3, 1, 4), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduSupportsOutletCurrentPower.setStatus('current') if mibBuilder.loadTexts: tlpPduSupportsOutletCurrentPower.setDescription('Indicates whether the pdu reports individual receptacle current and power measurements. Devices that do not support individual receptacle measurements will always return ERROR_NO_SUCH_NAME for tlpPduOutletCurrent and tlpPduOutletPower.') tlp_pdu_supports_outlet_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 3, 1, 5), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduSupportsOutletVoltage.setStatus('current') if mibBuilder.loadTexts: tlpPduSupportsOutletVoltage.setDescription('Indicates whether the pdu reports individual receptacle voltage measurements. Devices that do not support individual receptacle measurements will always return ERROR_NO_SUCH_NAME for tlpPduOutletVoltage.') tlp_pdu_display_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 4)) if mibBuilder.loadTexts: tlpPduDisplayTable.setStatus('current') if mibBuilder.loadTexts: tlpPduDisplayTable.setDescription('The display details of each pdu in device table. This is a sparse dependent table, and will contain some subset of devices that are pdus.') tlp_pdu_display_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 4, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex')) if mibBuilder.loadTexts: tlpPduDisplayEntry.setStatus('current') if mibBuilder.loadTexts: tlpPduDisplayEntry.setDescription('An entry containing display details for a particular pdu.') tlp_pdu_display_scheme = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 4, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('schemeReverse', 0), ('schemeNormal', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpPduDisplayScheme.setStatus('current') if mibBuilder.loadTexts: tlpPduDisplayScheme.setDescription('Indicates the display scheme of the LED display. The value schemeReverse(0) indicates the tricolor LED indicator uses an alternate pattern. The value schemeNormal(1) indicates the LED indicator uses the standard pattern. This value may not be supported on all models. If not supported, the value will always return schemeNormal(1).') tlp_pdu_display_orientation = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 4, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('displayNormal', 0), ('displayReverse', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpPduDisplayOrientation.setStatus('current') if mibBuilder.loadTexts: tlpPduDisplayOrientation.setDescription('Indicates the physical orientation of the LED display. The value displayNormal(0) indicates the display is right-side-up (normal). The value displayReverse(1) indicates the display is upside-down. This value may not be supported on all models. If not supported, the value will always return displayNormal(0).') tlp_pdu_display_auto_scroll = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 4, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('scrollDisabled', 0), ('scrollEnabled', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpPduDisplayAutoScroll.setStatus('current') if mibBuilder.loadTexts: tlpPduDisplayAutoScroll.setDescription('Indicates whether the LED display automatically scrolls through displaying status values.') tlp_pdu_display_intensity = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 4, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('intensity25', 1), ('intensity50', 2), ('intensity75', 3), ('intensity100', 4)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpPduDisplayIntensity.setStatus('current') if mibBuilder.loadTexts: tlpPduDisplayIntensity.setDescription('Indicates the intensity, as a percentage, of the LED display. The value intensity100(4) indicates the display is at 100% intensity. The other values indicate the display is at a lesser intensity based upon the respective percentage denoted.') tlp_pdu_display_units = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 1, 4, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('normal', 0), ('metric', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpPduDisplayUnits.setStatus('current') if mibBuilder.loadTexts: tlpPduDisplayUnits.setDescription('Indicates the units of measurement displayed on the LED display. The value normal(0) indicates that a temperature value, for example, is displayed in degrees Farenheit. The value metric(1) indicates a temperature value is displayed in degrees Celsius.') tlp_pdu_device_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 2, 1)) if mibBuilder.loadTexts: tlpPduDeviceTable.setStatus('current') if mibBuilder.loadTexts: tlpPduDeviceTable.setDescription('The device details of each pdu in device table. This is a sparse dependent table, and will contain some subset of devices that are pdus.') tlp_pdu_device_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 2, 1, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex')) if mibBuilder.loadTexts: tlpPduDeviceEntry.setStatus('current') if mibBuilder.loadTexts: tlpPduDeviceEntry.setDescription('An entry containing device details for a particular pdu.') tlp_pdu_device_main_load_state = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 2, 1, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('unknown', 0), ('off', 1), ('on', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduDeviceMainLoadState.setStatus('current') if mibBuilder.loadTexts: tlpPduDeviceMainLoadState.setDescription('The current state of the main output of the device.') tlp_pdu_device_main_load_controllable = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 2, 1, 1, 2), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduDeviceMainLoadControllable.setStatus('current') if mibBuilder.loadTexts: tlpPduDeviceMainLoadControllable.setDescription('Indicates whether or not the main output is controllable, and whether the ups can be turned off and on.') tlp_pdu_device_main_load_command = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 2, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('idle', 0), ('turnOff', 1), ('turnOn', 2), ('cycle', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpPduDeviceMainLoadCommand.setStatus('current') if mibBuilder.loadTexts: tlpPduDeviceMainLoadCommand.setDescription('Reading this value will always return 0. Setting this value to turnOff(1) will turn off the main output of the ups. Setting this value to turnOn(2) will turn on the main output of the ups. Setting this value to cycle(3) will turn off the main output, then turn it back on.') tlp_pdu_device_power_on_delay = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 2, 1, 1, 4), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpPduDevicePowerOnDelay.setStatus('current') if mibBuilder.loadTexts: tlpPduDevicePowerOnDelay.setDescription('The configurable delay value, which sets the amount of additional time a given device will wait before it connects to a valid AC source. By default the delay value is set to 0. For devices with multiple AC input sources, this delay only applies to the primary input source.') tlp_pdu_device_total_input_power_rating = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 2, 1, 1, 5), integer32()).setUnits('Watts').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduDeviceTotalInputPowerRating.setStatus('current') if mibBuilder.loadTexts: tlpPduDeviceTotalInputPowerRating.setDescription('The total input power rating of all phases on the device. This value may not be supported on all models. If not supported, this value will always return ERROR_NO_SUCH_NAME.') tlp_pdu_device_temperature_c = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 2, 1, 1, 6), integer32()).setUnits('degrees Centigrade').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduDeviceTemperatureC.setStatus('current') if mibBuilder.loadTexts: tlpPduDeviceTemperatureC.setDescription('The ambient temperature at or near the PDU casing. Temperature measurements are not supported on all models. If not supported, this value will always return ERROR_NO_SUCH_NAME.') tlp_pdu_device_temperature_f = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 2, 1, 1, 7), integer32()).setUnits('degrees Farenheit').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduDeviceTemperatureF.setStatus('current') if mibBuilder.loadTexts: tlpPduDeviceTemperatureF.setDescription('The ambient temperature at or near the PDU casing. Temperature measurements are not supported on all models. If not supported, this value will always return ERROR_NO_SUCH_NAME.') tlp_pdu_device_phase_imbalance = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 2, 1, 1, 8), integer32().subtype(subtypeSpec=value_range_constraint(0, 200))).setUnits('percent').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduDevicePhaseImbalance.setStatus('current') if mibBuilder.loadTexts: tlpPduDevicePhaseImbalance.setDescription('The percentage of imbalance of the three phases. This value is in the range from 0% imbalance to 100% imbalance. The lower the value, the better balanced the phases are. If all load is on a single phase, the imbalance is defined as 100%.') tlp_pdu_device_output_power_total = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 2, 1, 1, 9), unsigned32()).setUnits('Watts').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduDeviceOutputPowerTotal.setStatus('current') if mibBuilder.loadTexts: tlpPduDeviceOutputPowerTotal.setDescription('The AC output total power for all circuits.') tlp_pdu_device_aggregate_power_factor = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 2, 1, 1, 10), unsigned32()).setUnits('0.1 Watts').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduDeviceAggregatePowerFactor.setStatus('current') if mibBuilder.loadTexts: tlpPduDeviceAggregatePowerFactor.setDescription('The aggregrate power factor of all phases.') tlp_pdu_device_output_current_precision = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 2, 1, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('none', 0), ('tenths', 1), ('hundredths', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduDeviceOutputCurrentPrecision.setStatus('current') if mibBuilder.loadTexts: tlpPduDeviceOutputCurrentPrecision.setDescription('Output current is reported by tlpPduOutputCurrent, tlpPduOutputCurrentMin and tlpPduOutputCurrentMax. These values are all reported in hundredths (0.01A), which accommodates all models; however, on any given device the actual precision may vary. This value describes the actual precision, which can be used as a divisor against the output current values to obtain the true output current measurement. For example, if tlpPduOutputCurrent reports 530 and tlpPduDeviceOutputCurrentPrecision is tenths(1), then the actual output current is 5.3.') tlp_pdu_input_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 1)) if mibBuilder.loadTexts: tlpPduInputTable.setStatus('current') if mibBuilder.loadTexts: tlpPduInputTable.setDescription('The input details of each pdu in device table. This is a sparse dependent table, and will contain the number of entries based upon the number of pdus managed by the agent as reported by tlpPduIdentNumPdus.') tlp_pdu_input_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 1, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex')) if mibBuilder.loadTexts: tlpPduInputEntry.setStatus('current') if mibBuilder.loadTexts: tlpPduInputEntry.setDescription('An entry containing information applicable to a particular pdu managed by this agent.') tlp_pdu_input_nominal_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 1, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduInputNominalVoltage.setStatus('current') if mibBuilder.loadTexts: tlpPduInputNominalVoltage.setDescription('The nominal value of the input line voltage. This value may not be supported on all models. If not supported, this value will return ERROR_NO_SUCH_NAME.') tlp_pdu_input_nominal_voltage_phase_to_phase = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 1, 1, 2), unsigned32()).setUnits('0.1 Volt DC').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduInputNominalVoltagePhaseToPhase.setStatus('current') if mibBuilder.loadTexts: tlpPduInputNominalVoltagePhaseToPhase.setDescription('The nominal value of the input line voltage as measured from phase to phase. This value may not be supported on all models. If not supported, this value will always return zero.') tlp_pdu_input_nominal_voltage_phase_to_neutral = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 1, 1, 3), unsigned32()).setUnits('0.1 Volt DC').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduInputNominalVoltagePhaseToNeutral.setStatus('current') if mibBuilder.loadTexts: tlpPduInputNominalVoltagePhaseToNeutral.setDescription('The nominal value of the input line voltage as measured from phase to neutral. This value may not be supported on all models. If not supported, this value will always return zero.') tlp_pdu_input_low_transfer_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 1, 1, 4), unsigned32()).setUnits('0.1 Volts').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduInputLowTransferVoltage.setStatus('current') if mibBuilder.loadTexts: tlpPduInputLowTransferVoltage.setDescription('The minimum line voltage allowed before the unit disconnects the AC input connection. This value may not be writable on all models. If not writable, the value will be rejected and an appropriate error message will be returned. When supported, the minimum and maximum values allowed are dictated by tlpPduInputLowTransferVoltageLowerBound and tlpPduInputLowTransferVoltageUpperBound respectively.') tlp_pdu_input_low_transfer_voltage_lower_bound = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 1, 1, 5), unsigned32()).setUnits('Volts').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduInputLowTransferVoltageLowerBound.setStatus('current') if mibBuilder.loadTexts: tlpPduInputLowTransferVoltageLowerBound.setDescription('The lower boundary value of tlpPduInputLowTransferVoltage as dictated by the hardware of the unit.') tlp_pdu_input_low_transfer_voltage_upper_bound = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 1, 1, 6), unsigned32()).setUnits('Volts').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduInputLowTransferVoltageUpperBound.setStatus('current') if mibBuilder.loadTexts: tlpPduInputLowTransferVoltageUpperBound.setDescription('The upper boundary value of tlpPduInputLowTransferVoltage as dictated by the hardware of the unit.') tlp_pdu_input_high_transfer_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 1, 1, 7), unsigned32()).setUnits('0.1 Volts').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduInputHighTransferVoltage.setStatus('current') if mibBuilder.loadTexts: tlpPduInputHighTransferVoltage.setDescription('The maximum line voltage allowed before the unit disconnects the AC input connection. This value may not be writable on all models. If not writable, the value will be rejected and an appropriate error message will be returned. When supported, the minimum and maximum values allowed are dictated by tlpPduInputHighTransferVoltageLowerBound and tlpPduInputHighTransferVoltageUpperBound respectively.') tlp_pdu_input_high_transfer_voltage_lower_bound = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 1, 1, 8), unsigned32()).setUnits('Volts').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduInputHighTransferVoltageLowerBound.setStatus('current') if mibBuilder.loadTexts: tlpPduInputHighTransferVoltageLowerBound.setDescription('The lower boundary value of tlpPduInputHighTransferVoltage as dictated by the hardware of the unit.') tlp_pdu_input_high_transfer_voltage_upper_bound = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 1, 1, 9), unsigned32()).setUnits('Volts').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduInputHighTransferVoltageUpperBound.setStatus('current') if mibBuilder.loadTexts: tlpPduInputHighTransferVoltageUpperBound.setDescription('The upper boundary value of tlpPduInputHighTransferVoltage as dictated by the hardware of the unit.') tlp_pdu_input_current_limit = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 1, 1, 10), unsigned32()).setUnits('Amp DC').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduInputCurrentLimit.setStatus('current') if mibBuilder.loadTexts: tlpPduInputCurrentLimit.setDescription('The capacity of each phase conductor in the pdu limited by the AC input cord or any other potential limiting factors unique to a given unit.') tlp_pdu_input_phase_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 2)) if mibBuilder.loadTexts: tlpPduInputPhaseTable.setStatus('current') if mibBuilder.loadTexts: tlpPduInputPhaseTable.setDescription('The input phase details of each pdu in device table. This is a sparse dependent table, and will contain the number of entries based upon the value of tlpPduIdentNumInputs and tlpPduIdentNumPhases per each device.') tlp_pdu_input_phase_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 2, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex'), (0, 'TRIPPLITE-PRODUCTS', 'tlpPduInputPhaseIndex')) if mibBuilder.loadTexts: tlpPduInputPhaseEntry.setStatus('current') if mibBuilder.loadTexts: tlpPduInputPhaseEntry.setDescription('An entry containing information applicable to a particular input phase managed by this agent.') tlp_pdu_input_phase_index = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 2, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduInputPhaseIndex.setStatus('current') if mibBuilder.loadTexts: tlpPduInputPhaseIndex.setDescription('The table row index for the pdu phase.') tlp_pdu_input_phase_phase_type = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 2, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('phaseToNeutral', 0), ('phaseToPhase', 1)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduInputPhasePhaseType.setStatus('current') if mibBuilder.loadTexts: tlpPduInputPhasePhaseType.setDescription('Denotes whether measurements are phase to neutral(0) or phase to phase(1).') tlp_pdu_input_phase_frequency = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 2, 1, 3), unsigned32()).setUnits('0.1 Hertz').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduInputPhaseFrequency.setStatus('current') if mibBuilder.loadTexts: tlpPduInputPhaseFrequency.setDescription('The present input frequency for a given phase.') tlp_pdu_input_phase_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 2, 1, 4), unsigned32()).setUnits('0.1 Volt DC').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduInputPhaseVoltage.setStatus('current') if mibBuilder.loadTexts: tlpPduInputPhaseVoltage.setDescription('The magnitude of the present input voltage for a given phase.') tlp_pdu_input_phase_voltage_min = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 2, 1, 5), unsigned32()).setUnits('0.1 Volt DC').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpPduInputPhaseVoltageMin.setStatus('current') if mibBuilder.loadTexts: tlpPduInputPhaseVoltageMin.setDescription('The minimum input voltage value since the last reset of this value for a given phase. If any value is written to either tlpPduInputVoltageMin or tlpPduInputVoltageMax, both will be reset to their appropriate minimum and maximum values.') tlp_pdu_input_phase_voltage_max = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 2, 1, 6), unsigned32()).setUnits('0.1 Volt DC').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpPduInputPhaseVoltageMax.setStatus('current') if mibBuilder.loadTexts: tlpPduInputPhaseVoltageMax.setDescription('The maximum input voltage value since the last reset of this value for a given phase. If any value is written to either tlpPduInputVoltageMin or tlpPduInputVoltageMax, both will be reset to their appropriate minimum and maximum values.') tlp_pdu_input_phase_current = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 1, 2, 1, 7), unsigned32()).setUnits('0.01 Amp DC').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduInputPhaseCurrent.setStatus('current') if mibBuilder.loadTexts: tlpPduInputPhaseCurrent.setDescription('The magnitude of the present input current for a given phase.') tlp_pdu_output_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 2, 1)) if mibBuilder.loadTexts: tlpPduOutputTable.setStatus('current') if mibBuilder.loadTexts: tlpPduOutputTable.setDescription('The output details of each pdu in device table. This is a sparse dependent table, and will contain the number of entries based upon the value of tlpPduIdentNumOutputs per each device.') tlp_pdu_output_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 2, 1, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex'), (0, 'TRIPPLITE-PRODUCTS', 'tlpPduOutputIndex')) if mibBuilder.loadTexts: tlpPduOutputEntry.setStatus('current') if mibBuilder.loadTexts: tlpPduOutputEntry.setDescription('An entry containing output information applicable to a particular phase managed by this agent.') tlp_pdu_output_index = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 2, 1, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduOutputIndex.setStatus('current') if mibBuilder.loadTexts: tlpPduOutputIndex.setDescription('The table row index for the pdu phase.') tlp_pdu_output_phase = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 2, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('phase1', 1), ('phase2', 2), ('phase3', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduOutputPhase.setStatus('current') if mibBuilder.loadTexts: tlpPduOutputPhase.setDescription('Indicates the phase associated with the output line.') tlp_pdu_output_phase_type = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 2, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('phaseToNeutral', 0), ('phaseToPhase', 1)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduOutputPhaseType.setStatus('current') if mibBuilder.loadTexts: tlpPduOutputPhaseType.setDescription('Denotes whether measurements are phase to neutral(0) or phase to phase(1).') tlp_pdu_output_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 2, 1, 1, 4), unsigned32()).setUnits('0.1 Volt DC').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduOutputVoltage.setStatus('current') if mibBuilder.loadTexts: tlpPduOutputVoltage.setDescription('The magnitude of the present output voltage for a given output line.') tlp_pdu_output_current = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 2, 1, 1, 5), unsigned32()).setUnits('0.01 Amp DC').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduOutputCurrent.setStatus('current') if mibBuilder.loadTexts: tlpPduOutputCurrent.setDescription('The output current, in hundreths of amps, for a given phase.') tlp_pdu_output_current_min = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 2, 1, 1, 6), unsigned32()).setUnits('0.01 Amp DC').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduOutputCurrentMin.setStatus('current') if mibBuilder.loadTexts: tlpPduOutputCurrentMin.setDescription('The minimum current observed for a given phase since last reset.') tlp_pdu_output_current_max = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 2, 1, 1, 7), unsigned32()).setUnits('0.01 Amp DC').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduOutputCurrentMax.setStatus('current') if mibBuilder.loadTexts: tlpPduOutputCurrentMax.setDescription('The maximum current observed for a given phase since last reset.') tlp_pdu_output_active_power = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 2, 1, 1, 8), unsigned32()).setUnits('Watts').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduOutputActivePower.setStatus('current') if mibBuilder.loadTexts: tlpPduOutputActivePower.setDescription('The output power for a given phase.') tlp_pdu_output_power_factor = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 2, 1, 1, 9), unsigned32()).setUnits('0.01 percent').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduOutputPowerFactor.setStatus('current') if mibBuilder.loadTexts: tlpPduOutputPowerFactor.setDescription('The output power factor, in hundreths of a percent, for a given phase.') tlp_pdu_output_source = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 2, 1, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('none', 0), ('normal', 1)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduOutputSource.setStatus('current') if mibBuilder.loadTexts: tlpPduOutputSource.setDescription('The present source of output power. The enumeration none(0) indicates that there is no source of output power (and therefore no output power), for example, the system has opened the output breaker.') tlp_pdu_outlet_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1)) if mibBuilder.loadTexts: tlpPduOutletTable.setStatus('current') if mibBuilder.loadTexts: tlpPduOutletTable.setDescription('The receptacle status details of each pdu in device table. This is a sparse dependent table, and will contain the number of entries based upon the value of tlpPduIdentNumOutlets per each device.') tlp_pdu_outlet_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex'), (0, 'TRIPPLITE-PRODUCTS', 'tlpPduOutletIndex')) if mibBuilder.loadTexts: tlpPduOutletEntry.setStatus('current') if mibBuilder.loadTexts: tlpPduOutletEntry.setDescription('An entry containing information applicable to a particular outlet managed by this agent.') tlp_pdu_outlet_index = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduOutletIndex.setStatus('current') if mibBuilder.loadTexts: tlpPduOutletIndex.setDescription('The table row index for the pdu outlet.') tlp_pdu_outlet_name = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 2), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpPduOutletName.setStatus('current') if mibBuilder.loadTexts: tlpPduOutletName.setDescription('A user-definable string identifying the name of the outlet.') tlp_pdu_outlet_description = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 3), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpPduOutletDescription.setStatus('current') if mibBuilder.loadTexts: tlpPduOutletDescription.setDescription('A user-definable string identifying the device(s) connected to the given outlet.') tlp_pdu_outlet_state = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('unknown', 0), ('off', 1), ('on', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduOutletState.setStatus('current') if mibBuilder.loadTexts: tlpPduOutletState.setDescription('The current state of the outlet.') tlp_pdu_outlet_controllable = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 5), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduOutletControllable.setStatus('current') if mibBuilder.loadTexts: tlpPduOutletControllable.setDescription('Denotes whether this outlet is controllable.') tlp_pdu_outlet_command = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('idle', 0), ('turnOff', 1), ('turnOn', 2), ('cycle', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpPduOutletCommand.setStatus('current') if mibBuilder.loadTexts: tlpPduOutletCommand.setDescription('Reading this value will always return 0. Setting this value to turnOff(1) will turn off the outlet. Setting this value to turnOn(2) will turn on the outlet. Setting this value to cycle(3) will turn the outlet off, then turn it back on.') tlp_pdu_outlet_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 7), unsigned32()).setUnits('0.1 Volt DC').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduOutletVoltage.setStatus('current') if mibBuilder.loadTexts: tlpPduOutletVoltage.setDescription('The magnitude of the present output voltage for a given outlet. If the voltage measurement is not supported for an individual receptacle regardless whether device-wide or just for this receptacle, then this value will always return ERROR_NO_SUCH_NAME. Device-wide support for receptacle voltage measurements is denoted by tlpPduSupportsOutletVoltage.') tlp_pdu_outlet_current = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 8), unsigned32()).setUnits('0.01 RMS Amp').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduOutletCurrent.setStatus('current') if mibBuilder.loadTexts: tlpPduOutletCurrent.setDescription('The present output current, in hundreths of amps, of a given outlet. If the current measurement is not supported for an individual receptacle regardless whether device-wide or just for this receptacle, then this value will always return ERROR_NO_SUCH_NAME. Device-wide support for receptacle current measurements is denoted by tlpPduSupportsCurrentPower.') tlp_pdu_outlet_power = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 9), unsigned32()).setUnits('Watts').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduOutletPower.setStatus('current') if mibBuilder.loadTexts: tlpPduOutletPower.setDescription('The output power of a given outlet. If the power measurement is not supported for an individual receptacle regardless whether device-wide or just for this receptacle, then this value will always return ERROR_NO_SUCH_NAME. Device-wide support for receptacle power measurements is denoted by tlpPduSupportsCurrentPower.') tlp_pdu_outlet_ramp_action = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('remainOff', 0), ('turnOnAfterDelay', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpPduOutletRampAction.setStatus('current') if mibBuilder.loadTexts: tlpPduOutletRampAction.setDescription('The ramp action to take on a given outlet when powering on the device. If this receptacle is not controllable, as denoted by tlpPduOutletControllable, then this value will always return ERROR_NO_SUCH_NAME.') tlp_pdu_outlet_ramp_delay = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 11), integer32()).setUnits('seconds').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpPduOutletRampDelay.setStatus('current') if mibBuilder.loadTexts: tlpPduOutletRampDelay.setDescription('The number of seconds to delay before powering on the given outlet. If this receptacle is not controllable, as denoted by tlpPduOutletControllable, then this value will always return ERROR_NO_SUCH_NAME.') tlp_pdu_outlet_shed_action = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('remainOn', 0), ('turnOffAfterDelay', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpPduOutletShedAction.setStatus('current') if mibBuilder.loadTexts: tlpPduOutletShedAction.setDescription('The shed action to take on a given outlet when powering off the device. If this receptacle is not controllable, as denoted by tlpPduOutletControllable, then this value will always return ERROR_NO_SUCH_NAME.') tlp_pdu_outlet_shed_delay = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 13), integer32()).setUnits('seconds').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpPduOutletShedDelay.setStatus('current') if mibBuilder.loadTexts: tlpPduOutletShedDelay.setDescription('The number of seconds to delay before powering off the given outlet. If this receptacle is not controllable, as denoted by tlpPduOutletControllable, then this value will always return ERROR_NO_SUCH_NAME.') tlp_pdu_outlet_group = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 14), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpPduOutletGroup.setStatus('current') if mibBuilder.loadTexts: tlpPduOutletGroup.setDescription('The tlpPduOutletGroupIndex group index of the respective group to which the given outlet is assigned, or zero (0) if the given outlet is not grouped.') tlp_pdu_outlet_bank = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 15), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduOutletBank.setStatus('current') if mibBuilder.loadTexts: tlpPduOutletBank.setDescription('Indicates on which bank the given outlet is located.') tlp_pdu_outlet_circuit = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 16), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduOutletCircuit.setStatus('current') if mibBuilder.loadTexts: tlpPduOutletCircuit.setDescription('Indicates on which circuit the given outlet is wired.') tlp_pdu_outlet_phase = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 1, 1, 17), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('unknown', 0), ('phase1', 1), ('phase2', 2), ('phase3', 3), ('phase1-2', 4), ('phase2-3', 5), ('phase3-1', 6)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduOutletPhase.setStatus('current') if mibBuilder.loadTexts: tlpPduOutletPhase.setDescription('Indicates on which phase or phases the given outlet is associated. For single phase devices, this object will always return phase1(1). For 3-phase devices with outlets wired to a single phase, this object will return phase1(1), phase2(2) or phase3(3). For 3-phase devices with outlets wired to two phases, this object will return phase1-2(4) for phases 1 and 2, phase2-3(5) for phases 2 and 3, and phase3-1(6) for phases 3 and 1. Devices that do not report phase connections will return unknown(0).') tlp_pdu_outlet_group_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 2)) if mibBuilder.loadTexts: tlpPduOutletGroupTable.setStatus('current') if mibBuilder.loadTexts: tlpPduOutletGroupTable.setDescription('The receptacle grouping details of each pdu in device table. This is a sparse dependent table, and will contain the number of entries based upon the value of tlpPduIdentNumOutletGroups per each device.') tlp_pdu_outlet_group_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 2, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex'), (0, 'TRIPPLITE-PRODUCTS', 'tlpPduOutletGroupIndex')) if mibBuilder.loadTexts: tlpPduOutletGroupEntry.setStatus('current') if mibBuilder.loadTexts: tlpPduOutletGroupEntry.setDescription('An entry containing information applicable to a particular outlet group managed by this agent.') tlp_pdu_outlet_group_index = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 2, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduOutletGroupIndex.setStatus('current') if mibBuilder.loadTexts: tlpPduOutletGroupIndex.setDescription('The table row index for the pdu outlet group.') tlp_pdu_outlet_group_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 2, 1, 2), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpPduOutletGroupRowStatus.setStatus('current') if mibBuilder.loadTexts: tlpPduOutletGroupRowStatus.setDescription('Row status for the tlpPduOutletGroupTable') tlp_pdu_outlet_group_name = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 2, 1, 3), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpPduOutletGroupName.setStatus('current') if mibBuilder.loadTexts: tlpPduOutletGroupName.setDescription('The name of this outlet group.') tlp_pdu_outlet_group_description = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 2, 1, 4), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpPduOutletGroupDescription.setStatus('current') if mibBuilder.loadTexts: tlpPduOutletGroupDescription.setDescription('A description for this outlet group.') tlp_pdu_outlet_group_state = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 2, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('unknown', 0), ('off', 1), ('on', 2), ('mixed', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduOutletGroupState.setStatus('current') if mibBuilder.loadTexts: tlpPduOutletGroupState.setDescription('The current state of the outlet group. This value will report off(1) if all outlets in the group are off, on(2) if all outlets in the group are on, mixed(3) if some outlets in the group are off and others are on, or unknown(0) if the state of the outlets cannot be determined.') tlp_pdu_outlet_group_command = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 3, 2, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('turnOff', 1), ('turnOn', 2), ('cycle', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpPduOutletGroupCommand.setStatus('current') if mibBuilder.loadTexts: tlpPduOutletGroupCommand.setDescription('Reading this value will always return 0. Setting this value to turnOff(1) will turn off every outlet associated with the group. Setting this value to turnOn(2) will turn on every outlet associated with the group. Setting this value to cycle(3) will turn off every outlet associated with the group, then turn each outlet back on.') tlp_pdu_circuit_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 4, 1)) if mibBuilder.loadTexts: tlpPduCircuitTable.setStatus('current') if mibBuilder.loadTexts: tlpPduCircuitTable.setDescription('A list of pdu circuit table entries. The number of entries is given by the value of tlpPduIdentNumCircuits.') tlp_pdu_circuit_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 4, 1, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex'), (0, 'TRIPPLITE-PRODUCTS', 'tlpPduCircuitIndex')) if mibBuilder.loadTexts: tlpPduCircuitEntry.setStatus('current') if mibBuilder.loadTexts: tlpPduCircuitEntry.setDescription('An entry containing information applicable to a particular circuit managed by this agent.') tlp_pdu_circuit_index = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 4, 1, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduCircuitIndex.setStatus('current') if mibBuilder.loadTexts: tlpPduCircuitIndex.setDescription('The table row index for the pdu circuit.') tlp_pdu_circuit_phase = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 4, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('unknown', 0), ('phase1', 1), ('phase2', 2), ('phase3', 3), ('phase1-2', 4), ('phase2-3', 5), ('phase3-1', 6)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduCircuitPhase.setStatus('current') if mibBuilder.loadTexts: tlpPduCircuitPhase.setDescription('Indicates on which phase or phases the given circuit is wired. For single phase devices, this object will always return phase1(1). For 3-phase devices with outlets wired to a single phase, this object will return phase1(1), phase2(2) or phase3(3). For 3-phase devices with outlets wired to two phases, this object will return phase1-2(4) for phases 1 and 2, phase2-3(5) for phases 2 and 3, and phase3-1(6) for phases 3 and 1. Devices that do not report phase connections will return unknown(0).') tlp_pdu_circuit_input_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 4, 1, 1, 3), integer32()).setUnits('0.1 Volt DC').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduCircuitInputVoltage.setStatus('current') if mibBuilder.loadTexts: tlpPduCircuitInputVoltage.setDescription('The input voltage for a circuit.') tlp_pdu_circuit_total_current = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 4, 1, 1, 4), integer32()).setUnits('0.01 Amp DC').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduCircuitTotalCurrent.setStatus('current') if mibBuilder.loadTexts: tlpPduCircuitTotalCurrent.setDescription('The total current for all receptacles in a given circuit.') tlp_pdu_circuit_current_limit = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 4, 1, 1, 5), integer32()).setUnits('0.01 Amp DC').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduCircuitCurrentLimit.setStatus('current') if mibBuilder.loadTexts: tlpPduCircuitCurrentLimit.setDescription('The current capacity of a circuit in the system limited by the circuit breaker or wiring used in a given unit.') tlp_pdu_circuit_current_min = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 4, 1, 1, 6), integer32()).setUnits('0.01 Amp DC').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduCircuitCurrentMin.setStatus('current') if mibBuilder.loadTexts: tlpPduCircuitCurrentMin.setDescription('The minimum total current for all receptacles in a given circuit since last reset.') tlp_pdu_circuit_current_max = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 4, 1, 1, 7), integer32()).setUnits('0.01 Amp DC').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduCircuitCurrentMax.setStatus('current') if mibBuilder.loadTexts: tlpPduCircuitCurrentMax.setDescription('The maximum total current for all receptacles in a given circuit since last reset.') tlp_pdu_circuit_total_power = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 4, 1, 1, 8), integer32()).setUnits('Watts').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduCircuitTotalPower.setStatus('current') if mibBuilder.loadTexts: tlpPduCircuitTotalPower.setDescription('The total power for all receptacles in a given circuit.') tlp_pdu_circuit_power_factor = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 4, 1, 1, 9), integer32().subtype(subtypeSpec=value_range_constraint(0, 200))).setUnits('percent').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduCircuitPowerFactor.setStatus('current') if mibBuilder.loadTexts: tlpPduCircuitPowerFactor.setDescription('The power factor for all receptacles in a given circuit.') tlp_pdu_circuit_utilization = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 4, 1, 1, 10), unsigned32()).setUnits('0.01 %').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduCircuitUtilization.setStatus('current') if mibBuilder.loadTexts: tlpPduCircuitUtilization.setDescription('The percentage of utilization of a given circuit. This is typically a calculation of tlpPduCircuitTotalCurrent / tlpPduCircuitCurrentLimit.') tlp_pdu_breaker_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 5, 1)) if mibBuilder.loadTexts: tlpPduBreakerTable.setStatus('current') if mibBuilder.loadTexts: tlpPduBreakerTable.setDescription('A list of pdu bank breaker table entries. The number of entries is given by the value of tlpPduIdentNumBreakers.') tlp_pdu_breaker_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 5, 1, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex'), (0, 'TRIPPLITE-PRODUCTS', 'tlpPduBreakerIndex')) if mibBuilder.loadTexts: tlpPduBreakerEntry.setStatus('current') if mibBuilder.loadTexts: tlpPduBreakerEntry.setDescription('An entry containing information applicable to a particular bank breaker managed by this agent.') tlp_pdu_breaker_index = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 5, 1, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduBreakerIndex.setStatus('current') if mibBuilder.loadTexts: tlpPduBreakerIndex.setDescription('The table row index for the pdu bank breaker.') tlp_pdu_breaker_status = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 5, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('open', 0), ('closed', 1), ('notInstalled', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduBreakerStatus.setStatus('current') if mibBuilder.loadTexts: tlpPduBreakerStatus.setDescription('Indicates whether the bank breaker is open(0), closed(1) or not installed(2).') tlp_pdu_heatsink_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 6, 1)) if mibBuilder.loadTexts: tlpPduHeatsinkTable.setStatus('current') if mibBuilder.loadTexts: tlpPduHeatsinkTable.setDescription('A list of pdu heatsink thermistor table entries. The number of entries is given by the value of tlpPduIdentNumHeatsinks.') tlp_pdu_heatsink_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 6, 1, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex'), (0, 'TRIPPLITE-PRODUCTS', 'tlpPduHeatsinkIndex')) if mibBuilder.loadTexts: tlpPduHeatsinkEntry.setStatus('current') if mibBuilder.loadTexts: tlpPduHeatsinkEntry.setDescription('An entry containing information applicable to a particular heatsink thermistor managed by this agent.') tlp_pdu_heatsink_index = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 6, 1, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduHeatsinkIndex.setStatus('current') if mibBuilder.loadTexts: tlpPduHeatsinkIndex.setDescription('The table row index for the pdu heatsink thermistor.') tlp_pdu_heatsink_status = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 6, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('notAvailable', 0), ('available', 1)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduHeatsinkStatus.setStatus('current') if mibBuilder.loadTexts: tlpPduHeatsinkStatus.setDescription('Indicates whether the heatsink thermistor is available. The entry will return notAvailable(0) if a thermistor is either non-existent or disconnected, or available(1) when connected.') tlp_pdu_heatsink_temperature_c = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 6, 1, 1, 3), integer32()).setUnits('0.1 degrees Centigrade').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduHeatsinkTemperatureC.setStatus('current') if mibBuilder.loadTexts: tlpPduHeatsinkTemperatureC.setDescription('The temperature at the heatsink termistor in tenths degrees Centigrade. Heatsink temperature measurements are not supported on all models. If not supported, this value will always return ERROR_NO_SUCH_NAME.') tlp_pdu_heatsink_temperature_f = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 3, 6, 1, 1, 4), integer32()).setUnits('0.1 degrees Farenheit').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpPduHeatsinkTemperatureF.setStatus('current') if mibBuilder.loadTexts: tlpPduHeatsinkTemperatureF.setDescription('The temperature at the heatsink termistor in tenths degrees Farenheit. Heatsink temperature measurements are not supported on all models. If not supported, this value will always return ERROR_NO_SUCH_NAME.') tlp_pdu_control_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 4, 1)) if mibBuilder.loadTexts: tlpPduControlTable.setStatus('current') if mibBuilder.loadTexts: tlpPduControlTable.setDescription('The actionable controls for each pdu in device table. This is a sparse dependent table, and will contain some subset of devices that are pdus.') tlp_pdu_control_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 4, 1, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex')) if mibBuilder.loadTexts: tlpPduControlEntry.setStatus('current') if mibBuilder.loadTexts: tlpPduControlEntry.setDescription('An entry containing controls for a particular pdu.') tlp_pdu_control_ramp = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 4, 1, 1, 1), truth_value()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpPduControlRamp.setStatus('current') if mibBuilder.loadTexts: tlpPduControlRamp.setDescription('Set to TRUE to initiate the pre-designated ramp sequence on the pdu.') tlp_pdu_control_shed = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 4, 1, 1, 2), truth_value()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpPduControlShed.setStatus('current') if mibBuilder.loadTexts: tlpPduControlShed.setDescription('Set to TRUE to initiate the pre-designated shed sequence on the pdu.') tlp_pdu_control_pdu_on = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 4, 1, 1, 3), truth_value()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpPduControlPduOn.setStatus('current') if mibBuilder.loadTexts: tlpPduControlPduOn.setDescription('Set to TRUE to turn the pdu on.') tlp_pdu_control_pdu_off = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 4, 1, 1, 4), truth_value()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpPduControlPduOff.setStatus('current') if mibBuilder.loadTexts: tlpPduControlPduOff.setDescription('Set to TRUE to turn the pdu off.') tlp_pdu_control_pdu_reboot = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 4, 1, 1, 5), truth_value()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpPduControlPduReboot.setStatus('current') if mibBuilder.loadTexts: tlpPduControlPduReboot.setDescription('Set to TRUE to reboot the pdu.') tlp_pdu_config_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 5, 1)) if mibBuilder.loadTexts: tlpPduConfigTable.setStatus('current') if mibBuilder.loadTexts: tlpPduConfigTable.setDescription('The configuration options of each pdu in device table. This is a sparse dependent table, and will contain some subset of devices that are pdus. Not all options are available on all pdus.') tlp_pdu_config_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 5, 1, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex')) if mibBuilder.loadTexts: tlpPduConfigEntry.setStatus('current') if mibBuilder.loadTexts: tlpPduConfigEntry.setDescription('An entry containing configuration options for a particular pdu.') tlp_pdu_config_input_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 2, 5, 1, 1, 1), unsigned32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpPduConfigInputVoltage.setStatus('current') if mibBuilder.loadTexts: tlpPduConfigInputVoltage.setDescription('The nominal value of the input line voltage. This value may not be supported on all models. If not supported, this value will return ERROR_NO_SUCH_NAME. This value may not be writable on all models. If not writable, the value will be rejected and an appropriate error message will be returned.') tlp_env_ident_num_envirosense = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpEnvIdentNumEnvirosense.setStatus('current') if mibBuilder.loadTexts: tlpEnvIdentNumEnvirosense.setDescription('The number of envirosense devices that this agent is currently managing.') tlp_env_ident_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 1, 2)) if mibBuilder.loadTexts: tlpEnvIdentTable.setStatus('current') if mibBuilder.loadTexts: tlpEnvIdentTable.setDescription('The identity details of each envirosense in device table. The number of entries is given by the value of tlpDevicesNumDevices.') tlp_env_ident_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 1, 2, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex')) if mibBuilder.loadTexts: tlpEnvIdentEntry.setStatus('current') if mibBuilder.loadTexts: tlpEnvIdentEntry.setDescription('An entry containing details for a particular envirosense.') tlp_env_ident_temp_supported = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 1, 2, 1, 1), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpEnvIdentTempSupported.setStatus('current') if mibBuilder.loadTexts: tlpEnvIdentTempSupported.setDescription('Indicates whether or not temperature is supported.') tlp_env_ident_humidity_supported = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 1, 2, 1, 2), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpEnvIdentHumiditySupported.setStatus('current') if mibBuilder.loadTexts: tlpEnvIdentHumiditySupported.setDescription('Indicates whether or not temperature is supported.') tlp_env_num_input_contacts = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 1, 2, 1, 3), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpEnvNumInputContacts.setStatus('current') if mibBuilder.loadTexts: tlpEnvNumInputContacts.setDescription('The number of input contacts supported by the envirosense.') tlp_env_num_output_contacts = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 1, 2, 1, 4), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpEnvNumOutputContacts.setStatus('current') if mibBuilder.loadTexts: tlpEnvNumOutputContacts.setDescription('The number of output contacts supported by the envirosense.') tlp_env_temperature_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 1)) if mibBuilder.loadTexts: tlpEnvTemperatureTable.setStatus('current') if mibBuilder.loadTexts: tlpEnvTemperatureTable.setDescription('The temperature details of each envirosense in device table. The number of entries is given by the value of tlpDevicesNumDevices.') tlp_env_temperature_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 1, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex')) if mibBuilder.loadTexts: tlpEnvTemperatureEntry.setStatus('current') if mibBuilder.loadTexts: tlpEnvTemperatureEntry.setDescription('An entry containing temperature details for a particular envirosense.') tlp_env_temperature_c = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 1, 1, 1), integer32()).setUnits('degrees Centigrade').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpEnvTemperatureC.setStatus('current') if mibBuilder.loadTexts: tlpEnvTemperatureC.setDescription('The ambient temperature.') tlp_env_temperature_f = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 1, 1, 2), integer32()).setUnits('0.1 degrees Farenheit').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpEnvTemperatureF.setStatus('current') if mibBuilder.loadTexts: tlpEnvTemperatureF.setDescription('The ambient temperature.') tlp_env_temperature_in_alarm = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 1, 1, 3), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpEnvTemperatureInAlarm.setStatus('current') if mibBuilder.loadTexts: tlpEnvTemperatureInAlarm.setDescription('Indicates whether or not temperature is in alarm.') tlp_env_humidity_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 2)) if mibBuilder.loadTexts: tlpEnvHumidityTable.setStatus('current') if mibBuilder.loadTexts: tlpEnvHumidityTable.setDescription('The humidity details of each envirosense in device table. The number of entries is given by the value of tlpDevicesNumDevices.') tlp_env_humidity_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 2, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex')) if mibBuilder.loadTexts: tlpEnvHumidityEntry.setStatus('current') if mibBuilder.loadTexts: tlpEnvHumidityEntry.setDescription('An entry containing humidity details for a particular envirosense.') tlp_env_humidity_humidity = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 100))).setUnits('percent').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpEnvHumidityHumidity.setStatus('current') if mibBuilder.loadTexts: tlpEnvHumidityHumidity.setDescription('The ambient humidity.') tlp_env_humidity_in_alarm = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 2, 1, 2), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpEnvHumidityInAlarm.setStatus('current') if mibBuilder.loadTexts: tlpEnvHumidityInAlarm.setDescription('Indicates whether or not humidity is in alarm.') tlp_env_input_contact_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 3)) if mibBuilder.loadTexts: tlpEnvInputContactTable.setStatus('current') if mibBuilder.loadTexts: tlpEnvInputContactTable.setDescription('The input contact details of each envirosense in device table. The number of entries is given by the value of tlpDevicesNumDevices.') tlp_env_input_contact_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 3, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex'), (0, 'TRIPPLITE-PRODUCTS', 'tlpEnvInputContactIndex')) if mibBuilder.loadTexts: tlpEnvInputContactEntry.setStatus('current') if mibBuilder.loadTexts: tlpEnvInputContactEntry.setDescription('An entry containing input contact details for a particular envirosense.') tlp_env_input_contact_index = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 3, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpEnvInputContactIndex.setStatus('current') if mibBuilder.loadTexts: tlpEnvInputContactIndex.setDescription('The table row index for the envirosense input contact details.') tlp_env_input_contact_name = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 3, 1, 2), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpEnvInputContactName.setStatus('current') if mibBuilder.loadTexts: tlpEnvInputContactName.setDescription('The name or description of the contact.') tlp_env_input_contact_normal_state = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 3, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('open', 0), ('closed', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpEnvInputContactNormalState.setStatus('current') if mibBuilder.loadTexts: tlpEnvInputContactNormalState.setDescription('The normal operating position of the contact.') tlp_env_input_contact_current_state = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 3, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('open', 0), ('closed', 1)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpEnvInputContactCurrentState.setStatus('current') if mibBuilder.loadTexts: tlpEnvInputContactCurrentState.setDescription('The current state of the contact.') tlp_env_input_contact_in_alarm = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 3, 1, 5), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpEnvInputContactInAlarm.setStatus('current') if mibBuilder.loadTexts: tlpEnvInputContactInAlarm.setDescription('Indicates whether or not the contact is in alarm.') tlp_env_output_contact_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 4)) if mibBuilder.loadTexts: tlpEnvOutputContactTable.setStatus('current') if mibBuilder.loadTexts: tlpEnvOutputContactTable.setDescription('The output contact details of each envirosense in device table. The number of entries is given by the value of tlpDevicesNumDevices.') tlp_env_output_contact_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 4, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex'), (0, 'TRIPPLITE-PRODUCTS', 'tlpEnvOutputContactIndex')) if mibBuilder.loadTexts: tlpEnvOutputContactEntry.setStatus('current') if mibBuilder.loadTexts: tlpEnvOutputContactEntry.setDescription('An entry containing output contact details for a particular envirosense.') tlp_env_output_contact_index = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 4, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpEnvOutputContactIndex.setStatus('current') if mibBuilder.loadTexts: tlpEnvOutputContactIndex.setDescription('The table row index for the envirosense output contact details.') tlp_env_output_contact_name = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 4, 1, 2), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpEnvOutputContactName.setStatus('current') if mibBuilder.loadTexts: tlpEnvOutputContactName.setDescription('The name or description of the contact.') tlp_env_output_contact_normal_state = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 4, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('open', 0), ('closed', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpEnvOutputContactNormalState.setStatus('current') if mibBuilder.loadTexts: tlpEnvOutputContactNormalState.setDescription('The normal operating position of the contact.') tlp_env_output_contact_current_state = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 4, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('open', 0), ('closed', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpEnvOutputContactCurrentState.setStatus('current') if mibBuilder.loadTexts: tlpEnvOutputContactCurrentState.setDescription('The current state of the contact.') tlp_env_output_contact_in_alarm = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 3, 4, 1, 5), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpEnvOutputContactInAlarm.setStatus('current') if mibBuilder.loadTexts: tlpEnvOutputContactInAlarm.setDescription('Indicates whether or not the contact is in alarm.') tlp_env_config_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 5, 1)) if mibBuilder.loadTexts: tlpEnvConfigTable.setStatus('current') if mibBuilder.loadTexts: tlpEnvConfigTable.setDescription('The configuration options of each envirosense in device table. This is a sparse dependent table, and will contain some subset of devices that are envirosenses. Not all options are available on all envirosenses.') tlp_env_config_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 5, 1, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex')) if mibBuilder.loadTexts: tlpEnvConfigEntry.setStatus('current') if mibBuilder.loadTexts: tlpEnvConfigEntry.setDescription('An entry containing configuration options for a particular envirosenses.') tlp_env_temperature_low_limit = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 5, 1, 1, 1), integer32()).setUnits('degrees Farenheit').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpEnvTemperatureLowLimit.setStatus('current') if mibBuilder.loadTexts: tlpEnvTemperatureLowLimit.setDescription('The lower alarm limit for ambient temperature.') tlp_env_temperature_high_limit = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 5, 1, 1, 2), integer32()).setUnits('degrees Farenheit').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpEnvTemperatureHighLimit.setStatus('current') if mibBuilder.loadTexts: tlpEnvTemperatureHighLimit.setDescription('The upper alarm limit for ambient temperature.') tlp_env_humidity_low_limit = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 5, 1, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 100))).setUnits('percent').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpEnvHumidityLowLimit.setStatus('current') if mibBuilder.loadTexts: tlpEnvHumidityLowLimit.setDescription('The lower alarm limit for ambient humidity.') tlp_env_humidity_high_limit = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 3, 5, 1, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(0, 100))).setUnits('percent').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpEnvHumidityHighLimit.setStatus('current') if mibBuilder.loadTexts: tlpEnvHumidityHighLimit.setDescription('The upper alarm limit for ambient humidity.') tlp_ats_ident_num_ats = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsIdentNumAts.setStatus('current') if mibBuilder.loadTexts: tlpAtsIdentNumAts.setDescription('The number of ats devices that this agent is currently managing.') tlp_ats_ident_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 2)) if mibBuilder.loadTexts: tlpAtsIdentTable.setStatus('current') if mibBuilder.loadTexts: tlpAtsIdentTable.setDescription('The identity details of each ats in device table. This is a sparse dependent table, and will contain some subset of devices that are atss.') tlp_ats_ident_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 2, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex')) if mibBuilder.loadTexts: tlpAtsIdentEntry.setStatus('current') if mibBuilder.loadTexts: tlpAtsIdentEntry.setDescription('An entry containing details for a particular ats.') tlp_ats_ident_num_inputs = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 2, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsIdentNumInputs.setStatus('current') if mibBuilder.loadTexts: tlpAtsIdentNumInputs.setDescription('The number of inputs supported by the ats.') tlp_ats_ident_num_outputs = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 2, 1, 2), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsIdentNumOutputs.setStatus('current') if mibBuilder.loadTexts: tlpAtsIdentNumOutputs.setDescription('The number of outputs supported by the ats.') tlp_ats_ident_num_phases = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 2, 1, 3), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsIdentNumPhases.setStatus('current') if mibBuilder.loadTexts: tlpAtsIdentNumPhases.setDescription('The number of phases per input supported by the ats.') tlp_ats_ident_num_outlets = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 2, 1, 4), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsIdentNumOutlets.setStatus('current') if mibBuilder.loadTexts: tlpAtsIdentNumOutlets.setDescription('The number of receptacles supported by the ats.') tlp_ats_ident_num_outlet_groups = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 2, 1, 5), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsIdentNumOutletGroups.setStatus('current') if mibBuilder.loadTexts: tlpAtsIdentNumOutletGroups.setDescription('The number of receptacle groups supported by the ats.') tlp_ats_ident_num_circuits = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 2, 1, 6), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsIdentNumCircuits.setStatus('current') if mibBuilder.loadTexts: tlpAtsIdentNumCircuits.setDescription('The number of circuits supported by the ats.') tlp_ats_ident_num_breakers = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 2, 1, 7), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsIdentNumBreakers.setStatus('current') if mibBuilder.loadTexts: tlpAtsIdentNumBreakers.setDescription('The number of bank breakers supported by the ats.') tlp_ats_ident_num_heatsinks = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 2, 1, 8), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsIdentNumHeatsinks.setStatus('current') if mibBuilder.loadTexts: tlpAtsIdentNumHeatsinks.setDescription('The number of heatsink thermistors supported by the ats.') tlp_ats_supports_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 3)) if mibBuilder.loadTexts: tlpAtsSupportsTable.setStatus('current') if mibBuilder.loadTexts: tlpAtsSupportsTable.setDescription('The supported details of each ats in device table. This is a sparse dependent table, and will contain some subset of devices that are atss.') tlp_ats_supports_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 3, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex')) if mibBuilder.loadTexts: tlpAtsSupportsEntry.setStatus('current') if mibBuilder.loadTexts: tlpAtsSupportsEntry.setDescription('An entry containing supported details for a particular ats.') tlp_ats_supports_energywise = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 3, 1, 1), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsSupportsEnergywise.setStatus('current') if mibBuilder.loadTexts: tlpAtsSupportsEnergywise.setDescription('Indicates whether the ats supports Cisco EnergyWise.') tlp_ats_supports_ramp_shed = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 3, 1, 2), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsSupportsRampShed.setStatus('current') if mibBuilder.loadTexts: tlpAtsSupportsRampShed.setDescription('Indicates whether the ats supports ramping and shedding.') tlp_ats_supports_outlet_group = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 3, 1, 3), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsSupportsOutletGroup.setStatus('current') if mibBuilder.loadTexts: tlpAtsSupportsOutletGroup.setDescription('Indicates whether the ats supports outlet groups.') tlp_ats_supports_outlet_current_power = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 3, 1, 4), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsSupportsOutletCurrentPower.setStatus('current') if mibBuilder.loadTexts: tlpAtsSupportsOutletCurrentPower.setDescription('Indicates whether the ats reports individual receptacle current and power measurements. Devices that do not support individual receptacle measurements will always return ERROR_NO_SUCH_NAME for tlpAtsOutletCurrent and tlpAtsOutletPower.') tlp_ats_supports_outlet_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 3, 1, 5), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsSupportsOutletVoltage.setStatus('current') if mibBuilder.loadTexts: tlpAtsSupportsOutletVoltage.setDescription('Indicates whether the ats reports individual receptacle voltage measurements. Devices that do not support individual receptacle measurements will always return ERROR_NO_SUCH_NAME for tlpAtsOutletVoltage.') tlp_ats_display_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 4)) if mibBuilder.loadTexts: tlpAtsDisplayTable.setStatus('current') if mibBuilder.loadTexts: tlpAtsDisplayTable.setDescription('The display details of each ats in device table. This is a sparse dependent table, and will contain some subset of devices that are atss.') tlp_ats_display_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 4, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex')) if mibBuilder.loadTexts: tlpAtsDisplayEntry.setStatus('current') if mibBuilder.loadTexts: tlpAtsDisplayEntry.setDescription('An entry containing display details for a particular ats.') tlp_ats_display_scheme = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 4, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('schemeReverse', 0), ('schemeNormal', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsDisplayScheme.setStatus('current') if mibBuilder.loadTexts: tlpAtsDisplayScheme.setDescription('Indicates the display scheme of the LED display. The value schemeReverse(0) indicates the tricolor LED indicator uses an alternate pattern. The value schemeNormal(1) indicates the LED indicator uses the standard pattern. This value may not be supported on all models. If not supported, the value will always return schemeNormal(1).') tlp_ats_display_orientation = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 4, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('displayNormal', 0), ('displayReverse', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsDisplayOrientation.setStatus('current') if mibBuilder.loadTexts: tlpAtsDisplayOrientation.setDescription('Indicates the physical orientation of the LED display. The value displayNormal(0) indicates the display is right-side-up (normal). The value displayReverse(1) indicates the display is upside-down. This value may not be supported on all models. If not supported, the value will always return displayNormal(0).') tlp_ats_display_auto_scroll = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 4, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('scrollDisabled', 0), ('scrollEnabled', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsDisplayAutoScroll.setStatus('current') if mibBuilder.loadTexts: tlpAtsDisplayAutoScroll.setDescription('Indicates whether the LED display automatically scrolls through displaying status values.') tlp_ats_display_intensity = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 4, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('intensity25', 1), ('intensity50', 2), ('intensity75', 3), ('intensity100', 4)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsDisplayIntensity.setStatus('current') if mibBuilder.loadTexts: tlpAtsDisplayIntensity.setDescription('Indicates the intensity, as a percentage, of the LED display. The value intensity100(4) indicates the display is at 100% intensity. The other values indicate the display is at a lesser intensity based upon the respective percentage denoted.') tlp_ats_display_units = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 1, 4, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('normal', 0), ('metric', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsDisplayUnits.setStatus('current') if mibBuilder.loadTexts: tlpAtsDisplayUnits.setDescription('Indicates the units of measurement displayed on the LED display. The value normal(0) indicates that a temperature value, for example, is displayed in degrees Farenheit. The value metric(1) indicates a temperature value is displayed in degrees Celsius.') tlp_ats_device_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 2, 1)) if mibBuilder.loadTexts: tlpAtsDeviceTable.setStatus('current') if mibBuilder.loadTexts: tlpAtsDeviceTable.setDescription('The device details of each ats in device table. This is a sparse dependent table, and will contain some subset of devices that are atss.') tlp_ats_device_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 2, 1, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex')) if mibBuilder.loadTexts: tlpAtsDeviceEntry.setStatus('current') if mibBuilder.loadTexts: tlpAtsDeviceEntry.setDescription('An entry containing device details for a particular ats.') tlp_ats_device_main_load_state = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 2, 1, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('unknown', 0), ('off', 1), ('on', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsDeviceMainLoadState.setStatus('current') if mibBuilder.loadTexts: tlpAtsDeviceMainLoadState.setDescription('The current state of the main output of the device.') tlp_ats_device_main_load_controllable = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 2, 1, 1, 2), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsDeviceMainLoadControllable.setStatus('current') if mibBuilder.loadTexts: tlpAtsDeviceMainLoadControllable.setDescription('Indicates whether or not the main output is controllable, and whether the ups can be turned off and on.') tlp_ats_device_main_load_command = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 2, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('idle', 0), ('turnOff', 1), ('turnOn', 2), ('cycle', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsDeviceMainLoadCommand.setStatus('current') if mibBuilder.loadTexts: tlpAtsDeviceMainLoadCommand.setDescription('Reading this value will always return 0. Setting this value to turnOff(1) will turn off the main output of the ups. Setting this value to turnOn(2) will turn on the main output of the ups. Setting this value to cycle(3) will turn off the main output, then turn it back on.') tlp_ats_device_power_on_delay = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 2, 1, 1, 4), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsDevicePowerOnDelay.setStatus('current') if mibBuilder.loadTexts: tlpAtsDevicePowerOnDelay.setDescription('The configurable delay value, which sets the amount of additional time a given device will wait before it connects to a valid AC source. By default the delay value is set to 0. For devices with multiple AC input sources, this delay only applies to the primary input source.') tlp_ats_device_total_input_power_rating = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 2, 1, 1, 5), integer32()).setUnits('Watts').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsDeviceTotalInputPowerRating.setStatus('current') if mibBuilder.loadTexts: tlpAtsDeviceTotalInputPowerRating.setDescription('The total input power rating of all phases on the device. This value may not be supported on all models. If not supported, this value will always return ERROR_NO_SUCH_NAME.') tlp_ats_device_temperature_c = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 2, 1, 1, 6), integer32()).setUnits('degrees Centigrade').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsDeviceTemperatureC.setStatus('current') if mibBuilder.loadTexts: tlpAtsDeviceTemperatureC.setDescription('The ambient temperature at or near the ats casing. Temperature measurements are not supported on all models. If not supported, this value will always return ERROR_NO_SUCH_NAME.') tlp_ats_device_temperature_f = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 2, 1, 1, 7), integer32()).setUnits('degrees Farenheit').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsDeviceTemperatureF.setStatus('current') if mibBuilder.loadTexts: tlpAtsDeviceTemperatureF.setDescription('The ambient temperature at or near the ats casing. Temperature measurements are not supported on all models. If not supported, this value will always return ERROR_NO_SUCH_NAME.') tlp_ats_device_phase_imbalance = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 2, 1, 1, 8), integer32().subtype(subtypeSpec=value_range_constraint(0, 200))).setUnits('percent').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsDevicePhaseImbalance.setStatus('current') if mibBuilder.loadTexts: tlpAtsDevicePhaseImbalance.setDescription('The percentage of imbalance of the three phases. This value is in the range from 0% imbalance to 100% imbalance. The lower the value, the better balanced the phases are. If all load is on a single phase, the imbalance is defined as 100%.') tlp_ats_device_output_power_total = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 2, 1, 1, 9), unsigned32()).setUnits('Watts').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsDeviceOutputPowerTotal.setStatus('current') if mibBuilder.loadTexts: tlpAtsDeviceOutputPowerTotal.setDescription('The AC output total power for all circuits.') tlp_ats_device_aggregate_power_factor = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 2, 1, 1, 10), unsigned32()).setUnits('0.1 Watts').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsDeviceAggregatePowerFactor.setStatus('current') if mibBuilder.loadTexts: tlpAtsDeviceAggregatePowerFactor.setDescription('The aggregrate power factor of all phases.') tlp_ats_device_output_current_precision = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 2, 1, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('none', 0), ('tenths', 1), ('hundredths', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsDeviceOutputCurrentPrecision.setStatus('current') if mibBuilder.loadTexts: tlpAtsDeviceOutputCurrentPrecision.setDescription('Output current is reported by tlpAtsOutputCurrent, tlpAtsOutputCurrentMin and tlpAtsOutputCurrentMax. These values are all reported in hundredths (0.01A), which accommodates all models; however, on any given device the actual precision may vary. This value describes the actual precision, which can be used as a divisor against the output current values to obtain the true output current measurement. For example, if tlpAtsOutputCurrent reports 530 and tlpAtsDeviceOutputCurrentPrecision is tenths(1), then the actual output current is 5.3.') tlp_ats_device_general_fault = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 2, 1, 1, 12), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsDeviceGeneralFault.setStatus('current') if mibBuilder.loadTexts: tlpAtsDeviceGeneralFault.setDescription('Indicates whether or not the ats is in a system fault condition. When the ats is in such a fault condition, the condition can be cleared with tlpAtsControlResetGeneralFault.') tlp_ats_input_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1)) if mibBuilder.loadTexts: tlpAtsInputTable.setStatus('current') if mibBuilder.loadTexts: tlpAtsInputTable.setDescription('The input details of each ats in device table. This is a sparse dependent table, and will contain the number of entries based upon the number of atss managed by the agent as reported by tlpAtsIdentNumAts.') tlp_ats_input_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex')) if mibBuilder.loadTexts: tlpAtsInputEntry.setStatus('current') if mibBuilder.loadTexts: tlpAtsInputEntry.setDescription('An entry containing information applicable to a particular primary input phase managed by this agent.') tlp_ats_input_nominal_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsInputNominalVoltage.setStatus('current') if mibBuilder.loadTexts: tlpAtsInputNominalVoltage.setDescription('The nominal value of the input line voltage. This value may not be supported on all models. If not supported, this value will return ERROR_NO_SUCH_NAME.') tlp_ats_input_nominal_voltage_phase_to_phase = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1, 1, 2), unsigned32()).setUnits('0.1 Volt DC').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsInputNominalVoltagePhaseToPhase.setStatus('current') if mibBuilder.loadTexts: tlpAtsInputNominalVoltagePhaseToPhase.setDescription('The nominal value of the input line voltage as measured from phase to phase. This value may not be supported on all models. If not supported, this value will always return zero.') tlp_ats_input_nominal_voltage_phase_to_neutral = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1, 1, 3), unsigned32()).setUnits('0.1 Volt DC').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsInputNominalVoltagePhaseToNeutral.setStatus('current') if mibBuilder.loadTexts: tlpAtsInputNominalVoltagePhaseToNeutral.setDescription('The nominal value of the input line voltage as measured from phase to neutral. This value may not be supported on all models. If not supported, this value will always return zero.') tlp_ats_input_bad_transfer_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1, 1, 4), unsigned32()).setUnits('0.1 Volts').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsInputBadTransferVoltage.setStatus('current') if mibBuilder.loadTexts: tlpAtsInputBadTransferVoltage.setDescription('The minimum line voltage allowed before the unit disconnects the AC input connection.') tlp_ats_input_bad_transfer_voltage_lower_bound = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1, 1, 5), unsigned32()).setUnits('Volts').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsInputBadTransferVoltageLowerBound.setStatus('current') if mibBuilder.loadTexts: tlpAtsInputBadTransferVoltageLowerBound.setDescription('The lower boundary value of tlpAtsInputBadTransferVoltage as dictated by the hardware of the unit.') tlp_ats_input_bad_transfer_voltage_upper_bound = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1, 1, 6), unsigned32()).setUnits('Volts').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsInputBadTransferVoltageUpperBound.setStatus('current') if mibBuilder.loadTexts: tlpAtsInputBadTransferVoltageUpperBound.setDescription('The upper boundary value of tlpAtsInputBadTransferVoltage as dictated by the hardware of the unit.') tlp_ats_input_high_transfer_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1, 1, 7), unsigned32()).setUnits('0.1 Volts').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsInputHighTransferVoltage.setStatus('current') if mibBuilder.loadTexts: tlpAtsInputHighTransferVoltage.setDescription('The maximum line voltage allowed before the unit disconnects the AC input connection.') tlp_ats_input_high_transfer_voltage_lower_bound = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1, 1, 8), unsigned32()).setUnits('Volts').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsInputHighTransferVoltageLowerBound.setStatus('current') if mibBuilder.loadTexts: tlpAtsInputHighTransferVoltageLowerBound.setDescription('The lower boundary value of tlpAtsInputHighTransferVoltage as dictated by the hardware of the unit.') tlp_ats_input_high_transfer_voltage_upper_bound = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1, 1, 9), unsigned32()).setUnits('Volts').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsInputHighTransferVoltageUpperBound.setStatus('current') if mibBuilder.loadTexts: tlpAtsInputHighTransferVoltageUpperBound.setDescription('The upper boundary value of tlpAtsInputHighTransferVoltage as dictated by the hardware of the unit.') tlp_ats_input_fair_voltage_threshold = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1, 1, 10), unsigned32()).setUnits('Volts').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsInputFairVoltageThreshold.setStatus('current') if mibBuilder.loadTexts: tlpAtsInputFairVoltageThreshold.setDescription('The voltage level at which the device will transition between sources.') tlp_ats_input_bad_voltage_threshold = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1, 1, 11), unsigned32()).setUnits('Volts').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsInputBadVoltageThreshold.setStatus('current') if mibBuilder.loadTexts: tlpAtsInputBadVoltageThreshold.setDescription('The minimum line voltage allowed before the device disconnects the AC input connection.') tlp_ats_input_source_availability = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('none', 0), ('inputSourceA', 1), ('inputSourceB', 2), ('inputSourceAB', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsInputSourceAvailability.setStatus('current') if mibBuilder.loadTexts: tlpAtsInputSourceAvailability.setDescription('The determination as to which of two AC input lines are available. The agent will return either inputSourceA(1) or inputSourceB(2) if only one line is available, or inputSourceAB(3) if both lines are available. The agent will never return none(0) since the device will be powered off if neither line is available.') tlp_ats_input_source_in_use = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('inputSourceA', 0), ('inputSourceB', 1)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsInputSourceInUse.setStatus('current') if mibBuilder.loadTexts: tlpAtsInputSourceInUse.setDescription('The determination as to which one of two AC input lines is in use. Not all devices support the reporting of which source is currently in use. If not supported, this value will always return ERROR_NO_SUCH_NAME.') tlp_ats_input_source_transition_count = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1, 1, 14), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsInputSourceTransitionCount.setStatus('current') if mibBuilder.loadTexts: tlpAtsInputSourceTransitionCount.setDescription('The number of times the device transitions between primary and secondary sources. Most devices are limied to 65533 transitions, after which the value will not increment. If not supported, this value will always return ERROR_NO_SUCH_NAME.') tlp_ats_input_current_limit = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 1, 1, 15), unsigned32()).setUnits('Amp DC').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsInputCurrentLimit.setStatus('current') if mibBuilder.loadTexts: tlpAtsInputCurrentLimit.setDescription('The capacity of each phase conductor in the ats limited by the AC input cord or any other potential limiting factors unique to a given unit. If not supported, this value will always return ERROR_NO_SUCH_NAME.') tlp_ats_input_phase_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 2)) if mibBuilder.loadTexts: tlpAtsInputPhaseTable.setStatus('current') if mibBuilder.loadTexts: tlpAtsInputPhaseTable.setDescription('The input phase details of each ats in device table. This is a sparse dependent table, and will contain the number of entries based upon the value of tlpAtsIdentNumInputs and tlpAtsIdentNumPhases per each device.') tlp_ats_input_phase_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 2, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex'), (0, 'TRIPPLITE-PRODUCTS', 'tlpAtsInputLineIndex'), (0, 'TRIPPLITE-PRODUCTS', 'tlpAtsInputPhaseIndex')) if mibBuilder.loadTexts: tlpAtsInputPhaseEntry.setStatus('current') if mibBuilder.loadTexts: tlpAtsInputPhaseEntry.setDescription('An entry containing information applicable to a particular primary input phase managed by this agent.') tlp_ats_input_line_index = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 2, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsInputLineIndex.setStatus('current') if mibBuilder.loadTexts: tlpAtsInputLineIndex.setDescription('The table row index for the input line on the ats.') tlp_ats_input_phase_index = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 2, 1, 2), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsInputPhaseIndex.setStatus('current') if mibBuilder.loadTexts: tlpAtsInputPhaseIndex.setDescription('The table row index for the input phase for the input line.') tlp_ats_input_phase_type = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 2, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('phaseToNeutral', 0), ('phaseToPhase', 1)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsInputPhaseType.setStatus('current') if mibBuilder.loadTexts: tlpAtsInputPhaseType.setDescription('Denotes whether measurements are phase to neutral(0) or phase to phase(1).') tlp_ats_input_phase_frequency = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 2, 1, 4), unsigned32()).setUnits('0.1 Hertz').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsInputPhaseFrequency.setStatus('current') if mibBuilder.loadTexts: tlpAtsInputPhaseFrequency.setDescription('The present input frequency for a given phase.') tlp_ats_input_phase_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 2, 1, 5), unsigned32()).setUnits('0.1 Volt DC').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsInputPhaseVoltage.setStatus('current') if mibBuilder.loadTexts: tlpAtsInputPhaseVoltage.setDescription('The magnitude of the present input voltage for a given phase.') tlp_ats_input_phase_voltage_min = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 2, 1, 6), unsigned32()).setUnits('0.1 Volt DC').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsInputPhaseVoltageMin.setStatus('current') if mibBuilder.loadTexts: tlpAtsInputPhaseVoltageMin.setDescription('The minimum input voltage value since the last reset of this value for a given phase. If any value is written to either tlpAtsInputVoltageMin or tlpAtsInputVoltageMax, both will be reset to their appropriate minimum and maximum values.') tlp_ats_input_phase_voltage_max = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 2, 1, 7), unsigned32()).setUnits('0.1 Volt DC').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsInputPhaseVoltageMax.setStatus('current') if mibBuilder.loadTexts: tlpAtsInputPhaseVoltageMax.setDescription('The maximum input voltage value since the last reset of this value for a given phase. If any value is written to either tlpAtsInputVoltageMin or tlpAtsInputVoltageMax, both will be reset to their appropriate minimum and maximum values.') tlp_ats_input_phase_current = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 1, 2, 1, 8), unsigned32()).setUnits('0.01 Amp DC').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsInputPhaseCurrent.setStatus('current') if mibBuilder.loadTexts: tlpAtsInputPhaseCurrent.setDescription('The magnitude of the present input current for a given phase.') tlp_ats_output_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 2, 1)) if mibBuilder.loadTexts: tlpAtsOutputTable.setStatus('current') if mibBuilder.loadTexts: tlpAtsOutputTable.setDescription('The output details of each ats in device table. This is a sparse dependent table, and will contain the number of entries based upon the value of tlpAtsIdentNumOutputs per each device.') tlp_ats_output_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 2, 1, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex'), (0, 'TRIPPLITE-PRODUCTS', 'tlpAtsOutputIndex')) if mibBuilder.loadTexts: tlpAtsOutputEntry.setStatus('current') if mibBuilder.loadTexts: tlpAtsOutputEntry.setDescription('An entry containing output information applicable to a particular phase managed by this agent.') tlp_ats_output_index = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 2, 1, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsOutputIndex.setStatus('current') if mibBuilder.loadTexts: tlpAtsOutputIndex.setDescription('The table row index for the ats phase.') tlp_ats_output_phase = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 2, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('phase1', 1), ('phase2', 2), ('phase3', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsOutputPhase.setStatus('current') if mibBuilder.loadTexts: tlpAtsOutputPhase.setDescription('Indicates the phase associated with the output line.') tlp_ats_output_phase_type = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 2, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('phaseToNeutral', 0), ('phaseToPhase', 1)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsOutputPhaseType.setStatus('current') if mibBuilder.loadTexts: tlpAtsOutputPhaseType.setDescription('Denotes whether measurements are phase to neutral(0) or phase to phase(1).') tlp_ats_output_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 2, 1, 1, 4), unsigned32()).setUnits('0.1 Volt DC').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsOutputVoltage.setStatus('current') if mibBuilder.loadTexts: tlpAtsOutputVoltage.setDescription('The magnitude of the present output voltage for a given output line.') tlp_ats_output_current = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 2, 1, 1, 5), unsigned32()).setUnits('0.01 Amp DC').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsOutputCurrent.setStatus('current') if mibBuilder.loadTexts: tlpAtsOutputCurrent.setDescription('The output current, in hundreths of amps, for a given phase.') tlp_ats_output_current_min = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 2, 1, 1, 6), unsigned32()).setUnits('0.01 Amp DC').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsOutputCurrentMin.setStatus('current') if mibBuilder.loadTexts: tlpAtsOutputCurrentMin.setDescription('The minimum current observed for a given phase since last reset.') tlp_ats_output_current_max = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 2, 1, 1, 7), unsigned32()).setUnits('0.01 Amp DC').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsOutputCurrentMax.setStatus('current') if mibBuilder.loadTexts: tlpAtsOutputCurrentMax.setDescription('The maximum current observed for a given phase since last reset.') tlp_ats_output_active_power = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 2, 1, 1, 8), unsigned32()).setUnits('Watts').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsOutputActivePower.setStatus('current') if mibBuilder.loadTexts: tlpAtsOutputActivePower.setDescription('The output power for a given phase.') tlp_ats_output_power_factor = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 2, 1, 1, 9), unsigned32()).setUnits('0.01 percent').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsOutputPowerFactor.setStatus('current') if mibBuilder.loadTexts: tlpAtsOutputPowerFactor.setDescription('The output power factor, in hundreths of a percent, for a given phase.') tlp_ats_output_source = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 2, 1, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('none', 0), ('normal', 1)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsOutputSource.setStatus('current') if mibBuilder.loadTexts: tlpAtsOutputSource.setDescription('The present source of output power. The enumeration none(0) indicates that there is no source of output power (and therefore no output power), for example, the system has opened the output breaker.') tlp_ats_outlet_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1)) if mibBuilder.loadTexts: tlpAtsOutletTable.setStatus('current') if mibBuilder.loadTexts: tlpAtsOutletTable.setDescription('The receptacle status details of each ats in device table. This is a sparse dependent table, and will contain the number of entries based upon the value of tlpAtsIdentNumOutlets per each device.') tlp_ats_outlet_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex'), (0, 'TRIPPLITE-PRODUCTS', 'tlpAtsOutletIndex')) if mibBuilder.loadTexts: tlpAtsOutletEntry.setStatus('current') if mibBuilder.loadTexts: tlpAtsOutletEntry.setDescription('An entry containing information applicable to a particular outlet managed by this agent.') tlp_ats_outlet_index = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsOutletIndex.setStatus('current') if mibBuilder.loadTexts: tlpAtsOutletIndex.setDescription('The table row index for the ats outlet.') tlp_ats_outlet_name = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 2), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsOutletName.setStatus('current') if mibBuilder.loadTexts: tlpAtsOutletName.setDescription('A user-definable string identifying the name of the outlet.') tlp_ats_outlet_description = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 3), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsOutletDescription.setStatus('current') if mibBuilder.loadTexts: tlpAtsOutletDescription.setDescription('A user-definable string identifying the device(s) connected to the given outlet.') tlp_ats_outlet_state = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('unknown', 0), ('off', 1), ('on', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsOutletState.setStatus('current') if mibBuilder.loadTexts: tlpAtsOutletState.setDescription('The current state of the outlet.') tlp_ats_outlet_controllable = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 5), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsOutletControllable.setStatus('current') if mibBuilder.loadTexts: tlpAtsOutletControllable.setDescription('Denotes whether this outlet is controllable.') tlp_ats_outlet_command = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('idle', 0), ('turnOff', 1), ('turnOn', 2), ('cycle', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsOutletCommand.setStatus('current') if mibBuilder.loadTexts: tlpAtsOutletCommand.setDescription('Reading this value will always return 0. Setting this value to turnOff(1) will turn off the outlet. Setting this value to turnOn(2) will turn on the outlet. Setting this value to cycle(3) will turn the outlet off, then turn it back on.') tlp_ats_outlet_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 7), unsigned32()).setUnits('0.1 Volt DC').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsOutletVoltage.setStatus('current') if mibBuilder.loadTexts: tlpAtsOutletVoltage.setDescription('The magnitude of the present output voltage for a given outlet. If the voltage measurement is not supported for an individual receptacle regardless whether device-wide or just for this receptacle, then this value will always return ERROR_NO_SUCH_NAME. Device-wide support for receptacle voltage measurements is denoted by tlpAtsSupportsOutletVoltage.') tlp_ats_outlet_current = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 8), unsigned32()).setUnits('0.01 RMS Amp').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsOutletCurrent.setStatus('current') if mibBuilder.loadTexts: tlpAtsOutletCurrent.setDescription('The present output current, in hundreths of amps, of a given outlet. If the current measurement is not supported for an individual receptacle regardless whether device-wide or just for this receptacle, then this value will always return ERROR_NO_SUCH_NAME. Device-wide support for receptacle current measurements is denoted by tlpAtsSupportsCurrentPower.') tlp_ats_outlet_power = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 9), unsigned32()).setUnits('Watts').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsOutletPower.setStatus('current') if mibBuilder.loadTexts: tlpAtsOutletPower.setDescription('The output power of a given outlet. If the power measurement is not supported for an individual receptacle regardless whether device-wide or just for this receptacle, then this value will always return ERROR_NO_SUCH_NAME. Device-wide support for receptacle power measurements is denoted by tlpAtsSupportsCurrentPower.') tlp_ats_outlet_ramp_action = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('remainOff', 0), ('turnOnAfterDelay', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsOutletRampAction.setStatus('current') if mibBuilder.loadTexts: tlpAtsOutletRampAction.setDescription('The ramp action to take on a given outlet when powering on the device. If this receptacle is not controllable, as denoted by tlpAtsOutletControllable, then this value will always return ERROR_NO_SUCH_NAME.') tlp_ats_outlet_ramp_delay = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 11), integer32()).setUnits('seconds').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsOutletRampDelay.setStatus('current') if mibBuilder.loadTexts: tlpAtsOutletRampDelay.setDescription('The number of seconds to delay before powering on the given outlet. If this receptacle is not controllable, as denoted by tlpAtsOutletControllable, then this value will always return ERROR_NO_SUCH_NAME.') tlp_ats_outlet_shed_action = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('remainOn', 0), ('turnOffAfterDelay', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsOutletShedAction.setStatus('current') if mibBuilder.loadTexts: tlpAtsOutletShedAction.setDescription('The shed action to take on a given outlet when powering off the device. If this receptacle is not controllable, as denoted by tlpAtsOutletControllable, then this value will always return ERROR_NO_SUCH_NAME.') tlp_ats_outlet_shed_delay = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 13), integer32()).setUnits('seconds').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsOutletShedDelay.setStatus('current') if mibBuilder.loadTexts: tlpAtsOutletShedDelay.setDescription('The number of seconds to delay before powering off the given outlet. If this receptacle is not controllable, as denoted by tlpAtsOutletControllable, then this value will always return ERROR_NO_SUCH_NAME.') tlp_ats_outlet_group = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 14), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsOutletGroup.setStatus('current') if mibBuilder.loadTexts: tlpAtsOutletGroup.setDescription('The tlpAtsOutletGroupIndex group index of the respective group to which the given outlet is assigned, or zero (0) if the given outlet is not grouped.') tlp_ats_outlet_bank = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 15), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsOutletBank.setStatus('current') if mibBuilder.loadTexts: tlpAtsOutletBank.setDescription('Indicates on which bank the given outlet is located.') tlp_ats_outlet_circuit = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 16), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsOutletCircuit.setStatus('current') if mibBuilder.loadTexts: tlpAtsOutletCircuit.setDescription('Indicates on which circuit the given outlet is wired.') tlp_ats_outlet_phase = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 1, 1, 17), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('unknown', 0), ('phase1', 1), ('phase2', 2), ('phase3', 3), ('phase1-2', 4), ('phase2-3', 5), ('phase3-1', 6)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsOutletPhase.setStatus('current') if mibBuilder.loadTexts: tlpAtsOutletPhase.setDescription('Indicates on which phase or phases the given outlet is associated. For single phase devices, this object will always return phase1(1). For 3-phase devices with outlets wired to a single phase, this object will return phase1(1), phase2(2) or phase3(3). For 3-phase devices with outlets wired to two phases, this object will return phase1-2(4) for phases 1 and 2, phase2-3(5) for phases 2 and 3, and phase3-1(6) for phases 3 and 1. Devices that do not report phase connections will return unknown(0).') tlp_ats_outlet_group_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 2)) if mibBuilder.loadTexts: tlpAtsOutletGroupTable.setStatus('current') if mibBuilder.loadTexts: tlpAtsOutletGroupTable.setDescription('The receptacle grouping details of each ats in device table. This is a sparse dependent table, and will contain the number of entries based upon the value of tlpAtsIdentNumOutletGroups per each device.') tlp_ats_outlet_group_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 2, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex'), (0, 'TRIPPLITE-PRODUCTS', 'tlpAtsOutletGroupIndex')) if mibBuilder.loadTexts: tlpAtsOutletGroupEntry.setStatus('current') if mibBuilder.loadTexts: tlpAtsOutletGroupEntry.setDescription('An entry containing information applicable to a particular outlet group managed by this agent.') tlp_ats_outlet_group_index = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 2, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsOutletGroupIndex.setStatus('current') if mibBuilder.loadTexts: tlpAtsOutletGroupIndex.setDescription('The table row index for the ats outlet group.') tlp_ats_outlet_group_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 2, 1, 2), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsOutletGroupRowStatus.setStatus('current') if mibBuilder.loadTexts: tlpAtsOutletGroupRowStatus.setDescription('Row status for the tlpAtsOutletGroupTable') tlp_ats_outlet_group_name = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 2, 1, 3), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsOutletGroupName.setStatus('current') if mibBuilder.loadTexts: tlpAtsOutletGroupName.setDescription('The name of this outlet group.') tlp_ats_outlet_group_description = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 2, 1, 4), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsOutletGroupDescription.setStatus('current') if mibBuilder.loadTexts: tlpAtsOutletGroupDescription.setDescription('A description for this outlet group.') tlp_ats_outlet_group_state = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 2, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('unknown', 0), ('off', 1), ('on', 2), ('mixed', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsOutletGroupState.setStatus('current') if mibBuilder.loadTexts: tlpAtsOutletGroupState.setDescription('The current state of the outlet group. This value will report off(1) if all outlets in the group are off, on(2) if all outlets in the group are on, mixed(3) if some outlets in the group are off and others are on, or unknown(0) if the state of the outlets cannot be determined.') tlp_ats_outlet_group_command = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 3, 2, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('turnOff', 1), ('turnOn', 2), ('cycle', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsOutletGroupCommand.setStatus('current') if mibBuilder.loadTexts: tlpAtsOutletGroupCommand.setDescription('Reading this value will always return 0. Setting this value to turnOff(1) will turn off every outlet associated with the group. Setting this value to turnOn(2) will turn on every outlet associated with the group. Setting this value to cycle(3) will turn off every outlet associated with the group, then turn each outlet back on.') tlp_ats_circuit_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 4, 1)) if mibBuilder.loadTexts: tlpAtsCircuitTable.setStatus('current') if mibBuilder.loadTexts: tlpAtsCircuitTable.setDescription('A list of ats circuit table entries. The number of entries is given by the value of tlpAtsIdentNumCircuits.') tlp_ats_circuit_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 4, 1, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex'), (0, 'TRIPPLITE-PRODUCTS', 'tlpAtsCircuitIndex')) if mibBuilder.loadTexts: tlpAtsCircuitEntry.setStatus('current') if mibBuilder.loadTexts: tlpAtsCircuitEntry.setDescription('An entry containing information applicable to a particular circuit managed by this agent.') tlp_ats_circuit_index = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 4, 1, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsCircuitIndex.setStatus('current') if mibBuilder.loadTexts: tlpAtsCircuitIndex.setDescription('The table row index for the ats circuit.') tlp_ats_circuit_phase = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 4, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('unknown', 0), ('phase1', 1), ('phase2', 2), ('phase3', 3), ('phase1-2', 4), ('phase2-3', 5), ('phase3-1', 6)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsCircuitPhase.setStatus('current') if mibBuilder.loadTexts: tlpAtsCircuitPhase.setDescription('Indicates on which phase or phases the given circuit is wired. For single phase devices, this object will always return phase1(1). For 3-phase devices with outlets wired to a single phase, this object will return phase1(1), phase2(2) or phase3(3). For 3-phase devices with outlets wired to two phases, this object will return phase1-2(4) for phases 1 and 2, phase2-3(5) for phases 2 and 3, and phase3-1(6) for phases 3 and 1. Devices that do not report phase connections will return unknown(0).') tlp_ats_circuit_input_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 4, 1, 1, 3), integer32()).setUnits('0.1 Volt DC').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsCircuitInputVoltage.setStatus('current') if mibBuilder.loadTexts: tlpAtsCircuitInputVoltage.setDescription('The input voltage for a circuit.') tlp_ats_circuit_total_current = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 4, 1, 1, 4), integer32()).setUnits('0.01 Amp DC').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsCircuitTotalCurrent.setStatus('current') if mibBuilder.loadTexts: tlpAtsCircuitTotalCurrent.setDescription('The total current for all receptacles in a given circuit.') tlp_ats_circuit_current_limit = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 4, 1, 1, 5), integer32()).setUnits('0.01 Amp DC').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsCircuitCurrentLimit.setStatus('current') if mibBuilder.loadTexts: tlpAtsCircuitCurrentLimit.setDescription('The current capacity of a circuit in the system limited by the circuit breaker or wiring used in a given unit.') tlp_ats_circuit_current_min = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 4, 1, 1, 6), integer32()).setUnits('0.01 Amp DC').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsCircuitCurrentMin.setStatus('current') if mibBuilder.loadTexts: tlpAtsCircuitCurrentMin.setDescription('The minimum total current for all receptacles in a given circuit since last reset.') tlp_ats_circuit_current_max = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 4, 1, 1, 7), integer32()).setUnits('0.01 Amp DC').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsCircuitCurrentMax.setStatus('current') if mibBuilder.loadTexts: tlpAtsCircuitCurrentMax.setDescription('The maximum total current for all receptacles in a given circuit since last reset.') tlp_ats_circuit_total_power = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 4, 1, 1, 8), integer32()).setUnits('Watts').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsCircuitTotalPower.setStatus('current') if mibBuilder.loadTexts: tlpAtsCircuitTotalPower.setDescription('The total power for all receptacles in a given circuit.') tlp_ats_circuit_power_factor = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 4, 1, 1, 9), integer32().subtype(subtypeSpec=value_range_constraint(0, 200))).setUnits('percent').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsCircuitPowerFactor.setStatus('current') if mibBuilder.loadTexts: tlpAtsCircuitPowerFactor.setDescription('The power factor for all receptacles in a given circuit.') tlp_ats_circuit_utilization = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 4, 1, 1, 10), unsigned32()).setUnits('0.01 %').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsCircuitUtilization.setStatus('current') if mibBuilder.loadTexts: tlpAtsCircuitUtilization.setDescription('The percentage of utilization of a given circuit. This is typically a calculation of tlpAtsCircuitTotalCurrent / tlpAtsCircuitCurrentLimit.') tlp_ats_breaker_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 5, 1)) if mibBuilder.loadTexts: tlpAtsBreakerTable.setStatus('current') if mibBuilder.loadTexts: tlpAtsBreakerTable.setDescription('A list of ats bank breaker table entries. The number of entries is given by the value of tlpAtsIdentNumBreakers.') tlp_ats_breaker_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 5, 1, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex'), (0, 'TRIPPLITE-PRODUCTS', 'tlpAtsBreakerIndex')) if mibBuilder.loadTexts: tlpAtsBreakerEntry.setStatus('current') if mibBuilder.loadTexts: tlpAtsBreakerEntry.setDescription('An entry containing information applicable to a particular bank breaker managed by this agent.') tlp_ats_breaker_index = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 5, 1, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsBreakerIndex.setStatus('current') if mibBuilder.loadTexts: tlpAtsBreakerIndex.setDescription('The table row index for the ats bank breaker.') tlp_ats_breaker_status = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 5, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('open', 0), ('closed', 1), ('notInstalled', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsBreakerStatus.setStatus('current') if mibBuilder.loadTexts: tlpAtsBreakerStatus.setDescription('Indicates whether the bank breaker is open(0), closed(1) or not installed(2).') tlp_ats_heatsink_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 6, 1)) if mibBuilder.loadTexts: tlpAtsHeatsinkTable.setStatus('current') if mibBuilder.loadTexts: tlpAtsHeatsinkTable.setDescription('A list of ats heatsink thermistor table entries. The number of entries is given by the value of tlpAtsIdentNumHeatsinks.') tlp_ats_heatsink_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 6, 1, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex'), (0, 'TRIPPLITE-PRODUCTS', 'tlpAtsHeatsinkIndex')) if mibBuilder.loadTexts: tlpAtsHeatsinkEntry.setStatus('current') if mibBuilder.loadTexts: tlpAtsHeatsinkEntry.setDescription('An entry containing information applicable to a particular heatsink thermistor managed by this agent.') tlp_ats_heatsink_index = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 6, 1, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsHeatsinkIndex.setStatus('current') if mibBuilder.loadTexts: tlpAtsHeatsinkIndex.setDescription('The table row index for the ats heatsink thermistor.') tlp_ats_heatsink_status = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 6, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('notAvailable', 0), ('available', 1)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsHeatsinkStatus.setStatus('current') if mibBuilder.loadTexts: tlpAtsHeatsinkStatus.setDescription('Indicates whether the heatsink thermistor is available. The entry will return notAvailable(0) if a thermistor is either non-existent or disconnected, or available(1) when connected.') tlp_ats_heatsink_temperature_c = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 6, 1, 1, 3), integer32()).setUnits('0.1 degrees Centigrade').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsHeatsinkTemperatureC.setStatus('current') if mibBuilder.loadTexts: tlpAtsHeatsinkTemperatureC.setDescription('The temperature at the heatsink termistor in tenths degrees Centigrade. Heatsink temperature measurements are not supported on all models. If not supported, this value will always return ERROR_NO_SUCH_NAME.') tlp_ats_heatsink_temperature_f = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 3, 6, 1, 1, 4), integer32()).setUnits('0.1 degrees Farenheit').setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAtsHeatsinkTemperatureF.setStatus('current') if mibBuilder.loadTexts: tlpAtsHeatsinkTemperatureF.setDescription('The temperature at the heatsink termistor in tenths degrees Farenheit. Heatsink temperature measurements are not supported on all models. If not supported, this value will always return ERROR_NO_SUCH_NAME.') tlp_ats_control_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 4, 1)) if mibBuilder.loadTexts: tlpAtsControlTable.setStatus('current') if mibBuilder.loadTexts: tlpAtsControlTable.setDescription('The actionable controls for each ats in device table. This is a sparse dependent table, and will contain some subset of devices that are atss.') tlp_ats_control_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 4, 1, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex')) if mibBuilder.loadTexts: tlpAtsControlEntry.setStatus('current') if mibBuilder.loadTexts: tlpAtsControlEntry.setDescription('An entry containing controls for a particular ats.') tlp_ats_control_ramp = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 4, 1, 1, 1), truth_value()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsControlRamp.setStatus('current') if mibBuilder.loadTexts: tlpAtsControlRamp.setDescription('Set to TRUE to initiate the pre-designated ramp sequence on the ats.') tlp_ats_control_shed = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 4, 1, 1, 2), truth_value()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsControlShed.setStatus('current') if mibBuilder.loadTexts: tlpAtsControlShed.setDescription('Set to TRUE to initiate the pre-designated shed sequence on the ats.') tlp_ats_control_ats_on = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 4, 1, 1, 3), truth_value()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsControlAtsOn.setStatus('current') if mibBuilder.loadTexts: tlpAtsControlAtsOn.setDescription('Set to TRUE to turn the ats on.') tlp_ats_control_ats_off = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 4, 1, 1, 4), truth_value()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsControlAtsOff.setStatus('current') if mibBuilder.loadTexts: tlpAtsControlAtsOff.setDescription('Set to TRUE to turn the ats off.') tlp_ats_control_ats_reboot = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 4, 1, 1, 5), truth_value()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsControlAtsReboot.setStatus('current') if mibBuilder.loadTexts: tlpAtsControlAtsReboot.setDescription('Set to TRUE to reboot the ats.') tlp_ats_control_reset_general_fault = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 4, 1, 1, 6), truth_value()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsControlResetGeneralFault.setStatus('current') if mibBuilder.loadTexts: tlpAtsControlResetGeneralFault.setDescription('Set to TRUE to reset the general fault alarm indicated by tlpAtsDeviceGeneralFault.') tlp_ats_config_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 1)) if mibBuilder.loadTexts: tlpAtsConfigTable.setStatus('current') if mibBuilder.loadTexts: tlpAtsConfigTable.setDescription('The configuration options of each ats in device table. This is a sparse dependent table, and will contain some subset of devices that are atss. Not all options are available on all atss.') tlp_ats_config_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 1, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex')) if mibBuilder.loadTexts: tlpAtsConfigEntry.setStatus('current') if mibBuilder.loadTexts: tlpAtsConfigEntry.setDescription('An entry containing configuration options for a particular ats.') tlp_ats_config_input_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 1, 1, 1), unsigned32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsConfigInputVoltage.setStatus('current') if mibBuilder.loadTexts: tlpAtsConfigInputVoltage.setDescription('The nominal value of the input line voltage. This value may not be supported on all models. If not supported, this value will return ERROR_NO_SUCH_NAME. This value may not be writable on all models. If not writable, the value will be rejected and an appropriate error message will be returned.') tlp_ats_config_source_select = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('inputSourceA', 1), ('inputSourceB', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsConfigSourceSelect.setStatus('current') if mibBuilder.loadTexts: tlpAtsConfigSourceSelect.setDescription('The determination as to which of two AC input lines is designated as the primary input source. The other is designated as the secondary input source. This value will always return inputSourceA(1) for devices with a single input source. Setting this value is supported only on selected models.') tlp_ats_config_source1_return_time = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 1, 1, 3), unsigned32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsConfigSource1ReturnTime.setStatus('current') if mibBuilder.loadTexts: tlpAtsConfigSource1ReturnTime.setDescription('The nominal time to delay a transition to Source 1, if it is the preferred source.') tlp_ats_config_source2_return_time = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 1, 1, 4), unsigned32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsConfigSource2ReturnTime.setStatus('current') if mibBuilder.loadTexts: tlpAtsConfigSource2ReturnTime.setDescription('The nominal time to delay a transition to Source 2, if it is the preferred source.') tlp_ats_config_auto_ramp_on_transition = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 1, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disabled', 0), ('enabled', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsConfigAutoRampOnTransition.setStatus('current') if mibBuilder.loadTexts: tlpAtsConfigAutoRampOnTransition.setDescription('When enabled(1), the ats should perform its preconfigured ramp sequence when the input source transfers from its designated secondary source to its designated primary source. This value not supported on all ats devices. If not supported, then this value will always return ERROR_NO_SUCH_NAME.') tlp_ats_config_auto_shed_on_transition = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 1, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disabled', 0), ('enabled', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsConfigAutoShedOnTransition.setStatus('current') if mibBuilder.loadTexts: tlpAtsConfigAutoShedOnTransition.setDescription('When enabled(1), the ats should perform its preconfigured shed sequence when the input source transfers from its designated primary source to its designated secondary source. This value not supported on all ats devices. If not supported, then this value will always return ERROR_NO_SUCH_NAME.') tlp_ats_config_voltage_range_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 2)) if mibBuilder.loadTexts: tlpAtsConfigVoltageRangeTable.setStatus('current') if mibBuilder.loadTexts: tlpAtsConfigVoltageRangeTable.setDescription('The voltage range options in this table is intended to configure the operating voltages of an ats. This is a sparse dependent table, and will contain some subset of devices that are atss. All voltage points defined in this table are listed in a specific order from high to low. All voltage points must satsify the conditions and ranges defined for each point. Any point violating any of the relative limits will be rejected. For optimal operation, it is recommended that tlpAtsConfigHighVoltageReset be set lower than tlpAtsConfigHighVoltageTransfer by a margin no less than 1% of tlpAtsConfigHighVoltageTransfer; and that tlpAtsConfigSource1TransferReset (tlpAtsConfigSource2TransferReset) be set higher than tlpAtsConfigSource1BrownoutSet (tlpAtsConfigSource2BrownoutSet) by a margin no less than 1% of tlpAtsConfigSource1BrownoutSet (tlpAtsConfigSource2BrownoutSet). *The upper limit of line voltage is tlpAtsInputHighTransferVoltageUpperBound. The lower limit of line voltage is tlpAtsInputBadTransferVoltageLowerBound. All minimum and maximum limits for each voltage point are all exlusive unless indicated otherwise.') tlp_ats_config_voltage_range_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 2, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex')) if mibBuilder.loadTexts: tlpAtsConfigVoltageRangeEntry.setStatus('current') if mibBuilder.loadTexts: tlpAtsConfigVoltageRangeEntry.setDescription('An entry containing voltage range configuration options for a particular ats.') tlp_ats_config_high_voltage_transfer = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 2, 1, 1), unsigned32()).setUnits('0.1 Volts').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsConfigHighVoltageTransfer.setStatus('current') if mibBuilder.loadTexts: tlpAtsConfigHighVoltageTransfer.setDescription('The maximum line voltage allowed before the unit disconnects the AC input connection. The maximum value allowed is dictated by tlpAtsInputHighTransferVoltageUpperBound (inclusively). The minimum value allowed is dictated by tlpAtsConfigHighVoltageReset. This value may not be configurable on all models. If not supported, this value will return ERROR_NO_SUCH_NAME.') tlp_ats_config_high_voltage_reset = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 2, 1, 2), unsigned32()).setUnits('0.1 Volts').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsConfigHighVoltageReset.setStatus('current') if mibBuilder.loadTexts: tlpAtsConfigHighVoltageReset.setDescription('If a unit is disconnected due to over-voltage, the line voltage has to fall below this value before the unit re-connects the AC input connection. The maximum value allowed is dictated by tlpAtsConfigHighVoltageTransfer. The minimum value allowed is dictated by the greater of tlpAtsConfigSource1TransferReset and tlpAtsConfigSource2TransferReset. If not supported, this value will return ERROR_NO_SUCH_NAME.') tlp_ats_config_source1_transfer_reset = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 2, 1, 3), unsigned32()).setUnits('0.1 Volts').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsConfigSource1TransferReset.setStatus('current') if mibBuilder.loadTexts: tlpAtsConfigSource1TransferReset.setDescription('If input source 1 voltage level is above this value, a unit connected to source 2 will transition to source 1 (if it is the preferred source). The maximum value allowed is dictated by tlpAtsConfigHighVoltageReset. The minimum value allowed is dictated by tlpAtsConfigSource1BrownoutSet. If not supported, this value will return ERROR_NO_SUCH_NAME.') tlp_ats_config_source1_brownout_set = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 2, 1, 4), unsigned32()).setUnits('0.1 Volts').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsConfigSource1BrownoutSet.setStatus('current') if mibBuilder.loadTexts: tlpAtsConfigSource1BrownoutSet.setDescription('This value dictates the voltage level below which source 1 goes into a brown out condition. The maximum value allowed is dictated by tlpAtsConfigSource1TransferReset. The minimum value allowed is dictated by tlpAtsConfigSource1TransferSet. If not supported, this value will return ERROR_NO_SUCH_NAME.') tlp_ats_config_source1_transfer_set = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 2, 1, 5), unsigned32()).setUnits('0.1 Volts').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsConfigSource1TransferSet.setStatus('current') if mibBuilder.loadTexts: tlpAtsConfigSource1TransferSet.setDescription('If input source 1 voltage level falls below this value, a unit connected to source 1 will transition to source 2 (if it is in fair condition as denoted by tlpAtsConfigSource2TransferSet). The maximum value allowed is dictated by tlpAtsConfigSource1BrownoutSet. The minimum value allowed is dictated by tlpAtsConfigLowVoltageReset. If not supported, this value will return ERROR_NO_SUCH_NAME.') tlp_ats_config_source2_transfer_reset = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 2, 1, 6), unsigned32()).setUnits('0.1 Volts').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsConfigSource2TransferReset.setStatus('current') if mibBuilder.loadTexts: tlpAtsConfigSource2TransferReset.setDescription('If input source 2 voltage level is above this value, a unit connected to source 1 will transition to source 2 (if it is the preferred source). The maximum value allowed is dictated by tlpAtsConfigHighVoltageReset. The minimum value allowed is dictated by tlpAtsConfigSource2BrownoutSet. If not supported, this value will return ERROR_NO_SUCH_NAME.') tlp_ats_config_source2_brownout_set = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 2, 1, 7), unsigned32()).setUnits('0.1 Volts').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsConfigSource2BrownoutSet.setStatus('current') if mibBuilder.loadTexts: tlpAtsConfigSource2BrownoutSet.setDescription('This value dictates the voltage level below which source 2 goes into a brown out condition. The maximum value allowed is dictated by tlpAtsConfigSource2TransferReset. The minimum value allowed is dictated by tlpAtsConfigSource2TransferSet. If not supported, this value will return ERROR_NO_SUCH_NAME.') tlp_ats_config_source2_transfer_set = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 2, 1, 8), unsigned32()).setUnits('0.1 Volts').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsConfigSource2TransferSet.setStatus('current') if mibBuilder.loadTexts: tlpAtsConfigSource2TransferSet.setDescription('If input source 2 voltage level falls below this value, a unit connected to source 2 will transition to source 1 (if it is in fair condition as denoted by tlpAtsConfigSource1TransferSet). The maximum value allowed is dictated by tlpAtsConfigSource2BrownoutSet. The minimum value allowed is dictated by tlpAtsConfigLowVoltageReset. If not supported, this value will return ERROR_NO_SUCH_NAME.') tlp_ats_config_low_voltage_reset = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 2, 1, 9), unsigned32()).setUnits('0.1 Volts').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsConfigLowVoltageReset.setStatus('current') if mibBuilder.loadTexts: tlpAtsConfigLowVoltageReset.setDescription('If a unit is disconnected due to under-voltage or is not powered up yet, the line voltage has to rise above this value before the unit gets connected to the AC input connection. The maximum value allowed is dictated by the lesser value of tlpAtsConfigSource1TransferSet and tlpAtsConfigSource2TransferSet. The minimum value allowed is dictated by tlpAtsConfigLowVoltageTransfer. If not supported, this value will return ERROR_NO_SUCH_NAME.') tlp_ats_config_low_voltage_transfer = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 2, 1, 10), unsigned32()).setUnits('0.1 Volts').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsConfigLowVoltageTransfer.setStatus('current') if mibBuilder.loadTexts: tlpAtsConfigLowVoltageTransfer.setDescription('The minimum line voltage allowed before the unit disconnects the AC input connection. The maximum value allowed is dictated by tlpAtsConfigLowVoltageReset. The minimum value allowed is dictated by tlpAtsInputBadTransferVoltageLowerBound (inclusively). If not supported, this value will return ERROR_NO_SUCH_NAME.') tlp_ats_config_voltage_range_limits_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 3)) if mibBuilder.loadTexts: tlpAtsConfigVoltageRangeLimitsTable.setStatus('current') if mibBuilder.loadTexts: tlpAtsConfigVoltageRangeLimitsTable.setDescription('The voltage range table, as documented by tlpAtsConfigVoltageRangeTable requires that all changes adhere with stack order, from high transfer voltage down to low transfer voltage. In addition to stack order, certain voltage range values have limits defining the absolute minimum and absolute maximum for such values. Any voltage value violating any respective limit defined herein will be rejected.') tlp_ats_config_voltage_range_limits_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 3, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex')) if mibBuilder.loadTexts: tlpAtsConfigVoltageRangeLimitsEntry.setStatus('current') if mibBuilder.loadTexts: tlpAtsConfigVoltageRangeLimitsEntry.setDescription('An entry containing voltage range limits configuration options for a particular ats.') tlp_ats_config_source_brownout_set_minimum = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 3, 1, 1), unsigned32()).setUnits('0.1 Volts').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsConfigSourceBrownoutSetMinimum.setStatus('current') if mibBuilder.loadTexts: tlpAtsConfigSourceBrownoutSetMinimum.setDescription('This value dictates the absolute lower limit by which tlpAtsConfigSource1BrownoutSet and tlpAtsConfigSource2BrownoutSet can be set. tlpAtsConfigSource1TransferSet and tlpAtsConfigSource2TransferSet, respectively, are also used when determining the lowest value a brownout value can be set at any given time. If not supported, this value will return ERROR_NO_SUCH_NAME.') tlp_ats_config_source_brownout_set_maximum = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 3, 1, 2), unsigned32()).setUnits('0.1 Volts').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsConfigSourceBrownoutSetMaximum.setStatus('current') if mibBuilder.loadTexts: tlpAtsConfigSourceBrownoutSetMaximum.setDescription('This value dictates the absolute upper limit by which tlpAtsConfigSource1BrownoutSet and tlpAtsConfigSource2BrownoutSet can be set. tlpAtsConfigSource1TransferReset and tlpAtsConfigSource2TransferReset, respectively, are also used when determining the greatest value a brownout value can be set at any given time. If not supported, this value will return ERROR_NO_SUCH_NAME.') tlp_ats_config_source_transfer_set_minimum = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 3, 1, 3), unsigned32()).setUnits('0.1 Volts').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsConfigSourceTransferSetMinimum.setStatus('current') if mibBuilder.loadTexts: tlpAtsConfigSourceTransferSetMinimum.setDescription('This value dictates the absolute lower limit by which tlpAtsConfigSource1TransferSet and tlpAtsConfigSource2TransferSet can be set. tlpAtsConfigLowVoltageReset is also used when determining the lowest value a transferset value can be set at any given time. If not supported, this value will return ERROR_NO_SUCH_NAME.') tlp_ats_config_source_transfer_set_maximum = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 3, 1, 4), unsigned32()).setUnits('0.1 Volts').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsConfigSourceTransferSetMaximum.setStatus('current') if mibBuilder.loadTexts: tlpAtsConfigSourceTransferSetMaximum.setDescription('This value dictates the absolute upper limit by which tlpAtsConfigSource1TransferSet and tlpAtsConfigSource2TransferSet can be set. tlpAtsConfigSource1BrownoutSet and tlpAtsConfigSource2BrownoutSet, respectively, are also used when determining the greatest value a transferset value can be set at any given time. If not supported, this value will return ERROR_NO_SUCH_NAME.') tlp_ats_config_threshold_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 4)) if mibBuilder.loadTexts: tlpAtsConfigThresholdTable.setStatus('current') if mibBuilder.loadTexts: tlpAtsConfigThresholdTable.setDescription('The configurable threshold options of each ats in device table. This is a sparse dependent table, and will contain some subset of devices that are atss. Not all options are available on all atss.') tlp_ats_config_threshold_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 4, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex')) if mibBuilder.loadTexts: tlpAtsConfigThresholdEntry.setStatus('current') if mibBuilder.loadTexts: tlpAtsConfigThresholdEntry.setDescription('An entry containing configurable threshold options for a particular ats.') tlp_ats_config_over_current_threshold = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 4, 1, 1), unsigned32()).setUnits('0.1 Amps').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsConfigOverCurrentThreshold.setStatus('current') if mibBuilder.loadTexts: tlpAtsConfigOverCurrentThreshold.setDescription('The output current measurement at which an over current condition is reported. This value may not be supported on all models. If not supported, this value will return ERROR_NO_SUCH_NAME.') tlp_ats_config_over_temperature_threshold = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 4, 1, 2), unsigned32()).setUnits('0.1 Centigrade').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsConfigOverTemperatureThreshold.setStatus('current') if mibBuilder.loadTexts: tlpAtsConfigOverTemperatureThreshold.setDescription('The system temperature at which an over temperature condition is reported. This value may not be supported on all models. If not supported, this value will return ERROR_NO_SUCH_NAME.') tlp_ats_config_over_voltage_threshold = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 4, 1, 3), unsigned32()).setUnits('0.1 Volts').setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsConfigOverVoltageThreshold.setStatus('current') if mibBuilder.loadTexts: tlpAtsConfigOverVoltageThreshold.setDescription('The input voltage measurement at which an over voltage condition is reported. This value may not be supported on all models. If not supported, this value will return ERROR_NO_SUCH_NAME.') tlp_ats_config_over_load_threshold = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 4, 5, 4, 1, 4), unsigned32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAtsConfigOverLoadThreshold.setStatus('current') if mibBuilder.loadTexts: tlpAtsConfigOverLoadThreshold.setDescription('The system load at which an overload condition is reported. This value may not be supported on all models. If not supported, this value will return ERROR_NO_SUCH_NAME.') tlp_cooling_ident_num_cooling = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 5, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpCoolingIdentNumCooling.setStatus('current') if mibBuilder.loadTexts: tlpCoolingIdentNumCooling.setDescription('The number of cooling devices that this agent is currently managing.') tlp_kvm_ident_num_kvm = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 6, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpKvmIdentNumKvm.setStatus('current') if mibBuilder.loadTexts: tlpKvmIdentNumKvm.setDescription('The number of kvm devices that this agent is currently managing.') tlp_rack_track_ident_num_rack_track = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 7, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpRackTrackIdentNumRackTrack.setStatus('current') if mibBuilder.loadTexts: tlpRackTrackIdentNumRackTrack.setDescription('The number of rack track devices that this agent is currently managing.') tlp_switch_ident_num_switch = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 1, 3, 8, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpSwitchIdentNumSwitch.setStatus('current') if mibBuilder.loadTexts: tlpSwitchIdentNumSwitch.setDescription('The number of switch devices that this agent is currently managing.') tlp_agent_type = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8))).clone(namedValues=named_values(('unknown', 0), ('pal', 1), ('pansa', 2), ('delta', 3), ('sinetica', 4), ('netos6', 5), ('netos7', 6), ('panms', 7), ('nmc5', 8)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAgentType.setStatus('current') if mibBuilder.loadTexts: tlpAgentType.setDescription('The type of PowerAlert engine providing this data.') tlp_agent_version = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAgentVersion.setStatus('current') if mibBuilder.loadTexts: tlpAgentVersion.setDescription('The version of the agent software.') tlp_agent_driver_version = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 1, 3), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAgentDriverVersion.setStatus('current') if mibBuilder.loadTexts: tlpAgentDriverVersion.setDescription('The driver version of the agent software.') tlp_agent_mac = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 1, 4), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAgentMAC.setStatus('current') if mibBuilder.loadTexts: tlpAgentMAC.setDescription('The MAC Address of the agent.') tlp_agent_serial_num = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 1, 5), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAgentSerialNum.setStatus('current') if mibBuilder.loadTexts: tlpAgentSerialNum.setDescription('Serial number of the web card providing the agent data. This value is only supported by a web card agent. PowerAlert for PC (PAL) agents do not support this value and will return ERROR_NO_SUCH_NAME.') tlp_agent_uuid = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 1, 6), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAgentUuid.setStatus('current') if mibBuilder.loadTexts: tlpAgentUuid.setDescription('Universally unique identifier for this host in the form 8-4-4-4-12 for a total of 36 characters (32 alphanumeric characters and four hyphens). For example: 550e8400-e29b-41d4-a716-446655440000.') tlp_agent_attributes_supports = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 1)) tlp_agent_attributes_supports_http = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 1, 1), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAgentAttributesSupportsHTTP.setStatus('current') if mibBuilder.loadTexts: tlpAgentAttributesSupportsHTTP.setDescription('Indicates whether the agent supports HTTP connections.') tlp_agent_attributes_supports_https = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 1, 2), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAgentAttributesSupportsHTTPS.setStatus('current') if mibBuilder.loadTexts: tlpAgentAttributesSupportsHTTPS.setDescription('Indicates whether the agent supports HTTPS connections.') tlp_agent_attributes_supports_ftp = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 1, 3), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAgentAttributesSupportsFTP.setStatus('current') if mibBuilder.loadTexts: tlpAgentAttributesSupportsFTP.setDescription('Indicates whether the agent supports FTP connections.') tlp_agent_attributes_supports_telnet_menu = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 1, 4), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAgentAttributesSupportsTelnetMenu.setStatus('current') if mibBuilder.loadTexts: tlpAgentAttributesSupportsTelnetMenu.setDescription('Indicates whether the agent supports Telnet menu connections.') tlp_agent_attributes_supports_telnet_cli = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 1, 5), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAgentAttributesSupportsTelnetCLI.setStatus('current') if mibBuilder.loadTexts: tlpAgentAttributesSupportsTelnetCLI.setDescription('Indicates whether the agent supports Telnet CLI connections.') tlp_agent_attributes_supports_ssh_menu = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 1, 6), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAgentAttributesSupportsSSHMenu.setStatus('current') if mibBuilder.loadTexts: tlpAgentAttributesSupportsSSHMenu.setDescription('Indicates whether the agent supports SSH menu connections.') tlp_agent_attributes_supports_sshcli = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 1, 7), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAgentAttributesSupportsSSHCLI.setStatus('current') if mibBuilder.loadTexts: tlpAgentAttributesSupportsSSHCLI.setDescription('Indicates whether the agent supports SSH CLI connections.') tlp_agent_attributes_supports_snmp = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 1, 8), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAgentAttributesSupportsSNMP.setStatus('current') if mibBuilder.loadTexts: tlpAgentAttributesSupportsSNMP.setDescription('Indicates whether the agent supports SNMP connections.') tlp_agent_attributes_supports_snmp_trap = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 1, 9), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAgentAttributesSupportsSNMPTrap.setStatus('current') if mibBuilder.loadTexts: tlpAgentAttributesSupportsSNMPTrap.setDescription('Indicates whether the agent supports listening for SNMP traps. This is only applicable for network monitoring applications, PowerAlert Shutdown Agent for an example, that connect to a web card or PowerAlert Local and listen for outbound traps. As such, this value is not supported and will always return 2(false) for a web card or PowerAlert Local.') tlp_agent_attributes_autostart = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 2)) tlp_agent_attributes_autostart_http = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 2, 1), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAgentAttributesAutostartHTTP.setStatus('current') if mibBuilder.loadTexts: tlpAgentAttributesAutostartHTTP.setDescription('Indicates whether the agent autostarts HTTP services.') tlp_agent_attributes_autostart_https = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 2, 2), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAgentAttributesAutostartHTTPS.setStatus('current') if mibBuilder.loadTexts: tlpAgentAttributesAutostartHTTPS.setDescription('Indicates whether the agent autostarts HTTPS services.') tlp_agent_attributes_autostart_ftp = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 2, 3), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAgentAttributesAutostartFTP.setStatus('current') if mibBuilder.loadTexts: tlpAgentAttributesAutostartFTP.setDescription('Indicates whether the agent autostarts FTP services.') tlp_agent_attributes_autostart_telnet_menu = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 2, 4), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAgentAttributesAutostartTelnetMenu.setStatus('current') if mibBuilder.loadTexts: tlpAgentAttributesAutostartTelnetMenu.setDescription('Indicates whether the agent autostarts Telnet menu services.') tlp_agent_attributes_autostart_telnet_cli = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 2, 5), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAgentAttributesAutostartTelnetCLI.setStatus('current') if mibBuilder.loadTexts: tlpAgentAttributesAutostartTelnetCLI.setDescription('Indicates whether the agent autostarts Telnet CLI services.') tlp_agent_attributes_autostart_ssh_menu = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 2, 6), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAgentAttributesAutostartSSHMenu.setStatus('current') if mibBuilder.loadTexts: tlpAgentAttributesAutostartSSHMenu.setDescription('Indicates whether the agent autostarts SSH menu services.') tlp_agent_attributes_autostart_sshcli = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 2, 7), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAgentAttributesAutostartSSHCLI.setStatus('current') if mibBuilder.loadTexts: tlpAgentAttributesAutostartSSHCLI.setDescription('Indicates whether the agent autostarts SSH CLI services.') tlp_agent_attributes_autostart_snmp = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 2, 8), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAgentAttributesAutostartSNMP.setStatus('current') if mibBuilder.loadTexts: tlpAgentAttributesAutostartSNMP.setDescription('Indicates whether the agent autostarts SNMP services.') tlp_agent_attributes_snmp = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 3)) tlp_agent_attributes_snm_pv1_enabled = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 3, 1), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAgentAttributesSNMPv1Enabled.setStatus('current') if mibBuilder.loadTexts: tlpAgentAttributesSNMPv1Enabled.setDescription('Indicates whether the agent will allow SNMPv1 connections.') tlp_agent_attributes_snm_pv2c_enabled = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 3, 2), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAgentAttributesSNMPv2cEnabled.setStatus('current') if mibBuilder.loadTexts: tlpAgentAttributesSNMPv2cEnabled.setDescription('Indicates whether the agent will allow SNMPv2c connections.') tlp_agent_attributes_snm_pv3_enabled = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 3, 3), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAgentAttributesSNMPv3Enabled.setStatus('current') if mibBuilder.loadTexts: tlpAgentAttributesSNMPv3Enabled.setDescription('Indicates whether the agent will allow SNMPv3 connections.') tlp_agent_attributes_ports = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 4)) tlp_agent_attributes_http_port = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 4, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAgentAttributesHTTPPort.setStatus('current') if mibBuilder.loadTexts: tlpAgentAttributesHTTPPort.setDescription('The port used for HTTP communications.') tlp_agent_attributes_https_port = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 4, 2), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAgentAttributesHTTPSPort.setStatus('current') if mibBuilder.loadTexts: tlpAgentAttributesHTTPSPort.setDescription('The port used for HTTPS communications.') tlp_agent_attributes_ftp_port = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 4, 3), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAgentAttributesFTPPort.setStatus('current') if mibBuilder.loadTexts: tlpAgentAttributesFTPPort.setDescription('The port used for FTP communications.') tlp_agent_attributes_telnet_menu_port = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 4, 4), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAgentAttributesTelnetMenuPort.setStatus('current') if mibBuilder.loadTexts: tlpAgentAttributesTelnetMenuPort.setDescription('The port used for Telnet Menu communications.') tlp_agent_attributes_telnet_cli_port = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 4, 5), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAgentAttributesTelnetCLIPort.setStatus('current') if mibBuilder.loadTexts: tlpAgentAttributesTelnetCLIPort.setDescription('The port used for Telnet CLI communications.') tlp_agent_attributes_ssh_menu_port = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 4, 6), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAgentAttributesSSHMenuPort.setStatus('current') if mibBuilder.loadTexts: tlpAgentAttributesSSHMenuPort.setDescription('The port used for SSH Menu communications.') tlp_agent_attributes_sshcli_port = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 4, 7), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAgentAttributesSSHCLIPort.setStatus('current') if mibBuilder.loadTexts: tlpAgentAttributesSSHCLIPort.setDescription('The port used for SSH CLI communications.') tlp_agent_attributes_snmp_port = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 4, 8), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAgentAttributesSNMPPort.setStatus('current') if mibBuilder.loadTexts: tlpAgentAttributesSNMPPort.setDescription('The port used for SNMP communications.') tlp_agent_attributes_snmp_trap_port = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 1, 2, 4, 9), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAgentAttributesSNMPTrapPort.setStatus('current') if mibBuilder.loadTexts: tlpAgentAttributesSNMPTrapPort.setDescription('The port used for SNMP trap and notifications.') tlp_agent_config_remote_registration = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 2, 1, 1), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAgentConfigRemoteRegistration.setStatus('current') if mibBuilder.loadTexts: tlpAgentConfigRemoteRegistration.setDescription("Registers an SNMP contact's IP address and the port on which the contact is listening for SNMP traps. Setting this value is used to CREATE a table entry in a non-standard way. Getting this value will return a string INADDR_ANY and any port number. The port number should always be included. When unregistering an SNMP contact, the requester's IP address should be provided with a port number of 0. When setting or unsetting this OID, the IP address string should never be 0 nor should it be empty. The registration uses its default community string to register each contact. To use a community other than the default, then it must be appended to the end of the string delimited with a comma. The address should be of the format 0.0.0.0:00000 for IPv4. If IPv6 is supported, use the bracket-enclosed format given in IETF RFC 2732 Section 2, with the following examples: [FEDC:BA98:7654:3210:FEDC:BA98:7654:3210]:80 [1080:0:0:0:8:800:200C:417A]:162 [3ffe:2a00:100:7031::1]:162 [1080::8:800:200C:417A]:162,myCommunity [::192.9.5.5]:162,myCommunity [::FFFF:129.144.52.38]:80 [2010:836B:4179::836B:4179]:162") tlp_agent_config_current_time = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 2, 1, 2), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAgentConfigCurrentTime.setStatus('current') if mibBuilder.loadTexts: tlpAgentConfigCurrentTime.setDescription('The current date and time of the system.') tlp_agent_num_email_contacts = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAgentNumEmailContacts.setStatus('current') if mibBuilder.loadTexts: tlpAgentNumEmailContacts.setDescription('The number of email contacts currently defined in the agent.') tlp_agent_email_contact_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 1, 2)) if mibBuilder.loadTexts: tlpAgentEmailContactTable.setStatus('current') if mibBuilder.loadTexts: tlpAgentEmailContactTable.setDescription('A list of email contact entries. The number of entries is given by the value of tlpAgentNumEmailContacts.') tlp_agent_email_contact_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 1, 2, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpAgentEmailContactIndex')) if mibBuilder.loadTexts: tlpAgentEmailContactEntry.setStatus('current') if mibBuilder.loadTexts: tlpAgentEmailContactEntry.setDescription('An entry containing the details of an email contact.') tlp_agent_email_contact_index = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 1, 2, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAgentEmailContactIndex.setStatus('current') if mibBuilder.loadTexts: tlpAgentEmailContactIndex.setDescription('The table row index for the email contact.') tlp_agent_email_contact_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 1, 2, 1, 2), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAgentEmailContactRowStatus.setStatus('current') if mibBuilder.loadTexts: tlpAgentEmailContactRowStatus.setDescription('Row status for the tlpAgentEmailContactTable.') tlp_agent_email_contact_name = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 1, 2, 1, 3), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAgentEmailContactName.setStatus('current') if mibBuilder.loadTexts: tlpAgentEmailContactName.setDescription('The name of the email contact.') tlp_agent_email_contact_address = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 1, 2, 1, 4), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAgentEmailContactAddress.setStatus('current') if mibBuilder.loadTexts: tlpAgentEmailContactAddress.setDescription('The address of the email contact.') tlp_agent_num_snmp_contacts = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 2, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAgentNumSnmpContacts.setStatus('current') if mibBuilder.loadTexts: tlpAgentNumSnmpContacts.setDescription('The number of SNMP contacts currently defined in the agent.') tlp_agent_snmp_contact_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 2, 2)) if mibBuilder.loadTexts: tlpAgentSnmpContactTable.setStatus('current') if mibBuilder.loadTexts: tlpAgentSnmpContactTable.setDescription('A list of SNMP contact entries. The number of entries is given by the value of tlpAgentNumSnmpContacts.') tlp_agent_snmp_contact_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 2, 2, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpAgentSnmpContactIndex')) if mibBuilder.loadTexts: tlpAgentSnmpContactEntry.setStatus('current') if mibBuilder.loadTexts: tlpAgentSnmpContactEntry.setDescription('An entry containing the details of an SNMP contact.') tlp_agent_snmp_contact_index = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 2, 2, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAgentSnmpContactIndex.setStatus('current') if mibBuilder.loadTexts: tlpAgentSnmpContactIndex.setDescription('The table row index for the SNMP contact.') tlp_agent_snmp_contact_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 2, 2, 1, 2), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAgentSnmpContactRowStatus.setStatus('current') if mibBuilder.loadTexts: tlpAgentSnmpContactRowStatus.setDescription('Row status for the tlpAgentSnmpContactTable.') tlp_agent_snmp_contact_name = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 2, 2, 1, 3), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAgentSnmpContactName.setStatus('current') if mibBuilder.loadTexts: tlpAgentSnmpContactName.setDescription('The name of the SNMP contact.') tlp_agent_snmp_contact_ip_address = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 2, 2, 1, 4), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAgentSnmpContactIpAddress.setStatus('current') if mibBuilder.loadTexts: tlpAgentSnmpContactIpAddress.setDescription('The IP address of the SNMP contact.') tlp_agent_snmp_contact_port = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 2, 2, 1, 5), unsigned32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAgentSnmpContactPort.setStatus('current') if mibBuilder.loadTexts: tlpAgentSnmpContactPort.setDescription('The port of the SNMP contact.') tlp_agent_snmp_contact_snmp_version = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 2, 2, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('snmpv1', 1), ('snmpv2c', 2), ('snmpv3', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAgentSnmpContactSnmpVersion.setStatus('current') if mibBuilder.loadTexts: tlpAgentSnmpContactSnmpVersion.setDescription('The SNMP contact version to use for sending traps.') tlp_agent_snmp_contact_security_name = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 2, 2, 1, 7), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAgentSnmpContactSecurityName.setStatus('current') if mibBuilder.loadTexts: tlpAgentSnmpContactSecurityName.setDescription('The security name for the SNMP contact.') tlp_agent_snmp_contact_priv_password = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 2, 2, 1, 8), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAgentSnmpContactPrivPassword.setStatus('current') if mibBuilder.loadTexts: tlpAgentSnmpContactPrivPassword.setDescription('The privacy password to use for sending V3 traps to the SNMP contact.') tlp_agent_snmp_contact_auth_password = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 2, 3, 2, 2, 1, 9), display_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAgentSnmpContactAuthPassword.setStatus('current') if mibBuilder.loadTexts: tlpAgentSnmpContactAuthPassword.setDescription('The authentication password to use for sending V3 traps to the SNMP contact.') tlp_alarms_present = mib_scalar((1, 3, 6, 1, 4, 1, 850, 1, 3, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAlarmsPresent.setStatus('current') if mibBuilder.loadTexts: tlpAlarmsPresent.setDescription('The present number of active alarm conditions.') tlp_alarm_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 3, 2)) if mibBuilder.loadTexts: tlpAlarmTable.setStatus('current') if mibBuilder.loadTexts: tlpAlarmTable.setDescription('A list of alarm conditions for all devices managed by this agent. This table contains zero, one, or many rows at any moment, depending upon the number of alarm conditions in effect or conditions not acnowledged. The agent creates a row in the table each time a condition is detected and deletes that row when that condition no longer pertains (becomes inactive and is acknowledged). The agent creates the first row with tlpAlarmId equal to 1, and increments the value of tlpAlarmId each time a new row is created, wrapping to the first free value greater than or equal to 1 when the maximum value of tlpAlarmId would otherwise be exceeded. Consequently, after multiple operations, the table may become sparse (e.g., containing entries for rows 95, 100, 101, and 203) and the entries should not be assumed to be in chronological order because tlpAlarmId might have wrapped. The number of rows in the table at any given time is reflected by the value of tlpAlarmsPresent.') tlp_alarm_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 3, 2, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpAlarmId')) if mibBuilder.loadTexts: tlpAlarmEntry.setStatus('current') if mibBuilder.loadTexts: tlpAlarmEntry.setDescription('An entry containing information application to a particular alarm.') tlp_alarm_id = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 3, 2, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAlarmId.setStatus('current') if mibBuilder.loadTexts: tlpAlarmId.setDescription('A unique identifier for an alarm condition. This value will remain constant for the duration of the alarm condition.') tlp_alarm_descr = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 3, 2, 1, 2), object_identifier()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAlarmDescr.setStatus('current') if mibBuilder.loadTexts: tlpAlarmDescr.setDescription('A reference of the alarm description object. The object referenced should not be accessbile, but rather be used to provide a unique description for the alarm condition. The object referenced will be a well known alarm object associated with the device on which the alarm condition is active.') tlp_alarm_time = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 3, 2, 1, 3), time_stamp()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAlarmTime.setStatus('current') if mibBuilder.loadTexts: tlpAlarmTime.setDescription('The value of sysUpTime when the alarm condition was detected. If the alarm condition was detected at the time of agent startup and presumably existed before agent startup, the value of tlpAlarmsTime shall equal 0.') tlp_alarm_table_ref = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 3, 2, 1, 4), object_identifier()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAlarmTableRef.setStatus('current') if mibBuilder.loadTexts: tlpAlarmTableRef.setDescription('This value references the OID of a table object applicable to the alarm condition. This, in conjunction with the table row as defined by tlpAlarmTableRowRef, specifies the object/row within this table to which the alarm condition applies. Example 1 -- The following sample values will be returned for a UPS on battery: tlpAlarmId 28 tlpAlarmDescr tlpUpsAlarmOnBattery tlpAlarmTime 12345678 tlpAlarmTableRef tlpDeviceTable tlpAlarmTableRowRef tlpDeviceIndex.2 tlpAlarmDetail On Battery tlpAlarmType warning tlpAlarmState active tlpAlarmAcknowledged notAcknowledged In the above example, tlpAlarmTableRef references the device table and tlpAlarmTableRowRef references the 2nd managed device in that table. Example 2 -- The following sample values will be returned for a PDU with a load turned off: tlpAlarmId 46 tlpAlarmDescr tlpPduAlarmLoadOff tlpAlarmTime 12345678 tlpAlarmTableRef tlpPduOutletTable tlpAlarmTableRowRef tlpOutletIndex.1.4 tlpAlarmDetail Load Off tlpAlarmType warning tlpAlarmState active tlpAlarmAcknowledged acknowledged In the above example, tlpAlarmTableRef references the pdu outlet table and tlpAlarmTableRowRef references the 4th outlet on the 1st managed device.') tlp_alarm_table_row_ref = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 3, 2, 1, 5), object_identifier()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAlarmTableRowRef.setStatus('current') if mibBuilder.loadTexts: tlpAlarmTableRowRef.setDescription('This value is used in conjunction with tlpAlarmTableRef to define the object associated with this alarm condition. See the description of tlpAlarmTableRef for more information.') tlp_alarm_detail = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 3, 2, 1, 6), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAlarmDetail.setStatus('current') if mibBuilder.loadTexts: tlpAlarmDetail.setDescription('A textual description of the alarm condition.') tlp_alarm_type = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 3, 2, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('critical', 1), ('warning', 2), ('info', 3), ('status', 4), ('offline', 5), ('custom', 6)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAlarmType.setStatus('current') if mibBuilder.loadTexts: tlpAlarmType.setDescription('The category/group of this alarm.') tlp_alarm_state = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 3, 2, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('active', 1), ('inactive', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAlarmState.setStatus('current') if mibBuilder.loadTexts: tlpAlarmState.setDescription('The current state of this alarm condition. An active(1) alarm is a condition that currently exists. An inactive(2) alarm is a condition that no longer exists because the alarm either cleared or was resolved. Each alarm condition must be cleared and acknowledged before it is removed from this table (see tlpAlarmAcknowledged).') tlp_alarm_acknowledged = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 3, 2, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('notAcknowledged', 1), ('acknowledged', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAlarmAcknowledged.setStatus('current') if mibBuilder.loadTexts: tlpAlarmAcknowledged.setDescription('Denotes whether the alarm condition has been acknowledged. The agent will return notAcknowledged(1) if the condition has not been acknowledged, or acknowledged(2) when acknowledged. Writing the value acknowledged(2) for an alarm acknowledges the alarm condition. Each alarm condition must be cleared and acknowledged before it is removed from this table; therefore, even if acknowledged, the alarm will remain in this table until the alarm becomes inactive as denoted by tlpAlarmState.') tlp_alarm_communications_lost = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 2, 1)) if mibBuilder.loadTexts: tlpAlarmCommunicationsLost.setStatus('current') if mibBuilder.loadTexts: tlpAlarmCommunicationsLost.setDescription('A problem has been encountered in the communications between the agent and the device.') tlp_alarm_user_defined = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 2, 2)) tlp_alarm_user_defined01 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 2, 2, 1)) if mibBuilder.loadTexts: tlpAlarmUserDefined01.setStatus('current') if mibBuilder.loadTexts: tlpAlarmUserDefined01.setDescription('User-defined event 1 is in alarm.') tlp_alarm_user_defined02 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 2, 2, 2)) if mibBuilder.loadTexts: tlpAlarmUserDefined02.setStatus('current') if mibBuilder.loadTexts: tlpAlarmUserDefined02.setDescription('User-defined event 2 is in alarm.') tlp_alarm_user_defined03 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 2, 2, 3)) if mibBuilder.loadTexts: tlpAlarmUserDefined03.setStatus('current') if mibBuilder.loadTexts: tlpAlarmUserDefined03.setDescription('User-defined event 3 is in alarm.') tlp_alarm_user_defined04 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 2, 2, 4)) if mibBuilder.loadTexts: tlpAlarmUserDefined04.setStatus('current') if mibBuilder.loadTexts: tlpAlarmUserDefined04.setDescription('User-defined event 4 is in alarm.') tlp_alarm_user_defined05 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 2, 2, 5)) if mibBuilder.loadTexts: tlpAlarmUserDefined05.setStatus('current') if mibBuilder.loadTexts: tlpAlarmUserDefined05.setDescription('User-defined event 5 is in alarm.') tlp_alarm_user_defined06 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 2, 2, 6)) if mibBuilder.loadTexts: tlpAlarmUserDefined06.setStatus('current') if mibBuilder.loadTexts: tlpAlarmUserDefined06.setDescription('User-defined event 6 is in alarm.') tlp_alarm_user_defined07 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 2, 2, 7)) if mibBuilder.loadTexts: tlpAlarmUserDefined07.setStatus('current') if mibBuilder.loadTexts: tlpAlarmUserDefined07.setDescription('User-defined event 7 is in alarm.') tlp_alarm_user_defined08 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 2, 2, 8)) if mibBuilder.loadTexts: tlpAlarmUserDefined08.setStatus('current') if mibBuilder.loadTexts: tlpAlarmUserDefined08.setDescription('User-defined event 8 is in alarm.') tlp_alarm_user_defined09 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 2, 2, 9)) if mibBuilder.loadTexts: tlpAlarmUserDefined09.setStatus('current') if mibBuilder.loadTexts: tlpAlarmUserDefined09.setDescription('User-defined event 9 is in alarm.') tlp_ups_alarm_battery_bad = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 1)) if mibBuilder.loadTexts: tlpUpsAlarmBatteryBad.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmBatteryBad.setDescription('One or more batteries have been determined to require replacement.') tlp_ups_alarm_on_battery = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 2)) if mibBuilder.loadTexts: tlpUpsAlarmOnBattery.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmOnBattery.setDescription('The UPS is drawing power from the batteries.') tlp_ups_alarm_low_battery = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 3)) if mibBuilder.loadTexts: tlpUpsAlarmLowBattery.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLowBattery.setDescription('The remaining battery charge is less than or equal to the percentage of capacity warning specified by tlpUpsConfigBatteryCapacityThreshold.') tlp_ups_alarm_depleted_battery = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 4)) if mibBuilder.loadTexts: tlpUpsAlarmDepletedBattery.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmDepletedBattery.setDescription('The UPS will be unable to sustain the present load when and if the utility power is lost.') tlp_ups_alarm_temp_bad = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 5)) if mibBuilder.loadTexts: tlpUpsAlarmTempBad.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmTempBad.setDescription('A temperature is out of tolerance.') tlp_ups_alarm_input_bad = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 6)) if mibBuilder.loadTexts: tlpUpsAlarmInputBad.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmInputBad.setDescription('An input condition is out of tolerance.') tlp_ups_alarm_output_bad = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 7)) if mibBuilder.loadTexts: tlpUpsAlarmOutputBad.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmOutputBad.setDescription('An output condition (other than OutputOverload) is out of tolerance.') tlp_ups_alarm_output_overload = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 8)) if mibBuilder.loadTexts: tlpUpsAlarmOutputOverload.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmOutputOverload.setDescription('The output load exceeds the UPS output capacity.') tlp_ups_alarm_on_bypass = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 9)) if mibBuilder.loadTexts: tlpUpsAlarmOnBypass.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmOnBypass.setDescription('The Bypass is presently engaged on the UPS.') tlp_ups_alarm_bypass_bad = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 10)) if mibBuilder.loadTexts: tlpUpsAlarmBypassBad.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmBypassBad.setDescription('The Bypass is out of tolerance.') tlp_ups_alarm_output_off_as_requested = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 11)) if mibBuilder.loadTexts: tlpUpsAlarmOutputOffAsRequested.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmOutputOffAsRequested.setDescription('The UPS has shutdown as requested, i.e., the output is off.') tlp_ups_alarm_ups_off_as_requested = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 12)) if mibBuilder.loadTexts: tlpUpsAlarmUpsOffAsRequested.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmUpsOffAsRequested.setDescription('The entire UPS has shutdown as commanded.') tlp_ups_alarm_charger_failed = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 13)) if mibBuilder.loadTexts: tlpUpsAlarmChargerFailed.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmChargerFailed.setDescription('An uncorrected problem has been detected within the UPS charger subsystem.') tlp_ups_alarm_ups_output_off = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 14)) if mibBuilder.loadTexts: tlpUpsAlarmUpsOutputOff.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmUpsOutputOff.setDescription('The output of the UPS is in the off state.') tlp_ups_alarm_ups_system_off = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 15)) if mibBuilder.loadTexts: tlpUpsAlarmUpsSystemOff.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmUpsSystemOff.setDescription('The UPS system is in the off state.') tlp_ups_alarm_fan_failure = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 16)) if mibBuilder.loadTexts: tlpUpsAlarmFanFailure.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmFanFailure.setDescription('The failure of one or more fans in the UPS has been detected.') tlp_ups_alarm_fuse_failure = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 17)) if mibBuilder.loadTexts: tlpUpsAlarmFuseFailure.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmFuseFailure.setDescription('The failure of one or more fuses has been detected.') tlp_ups_alarm_general_fault = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 18)) if mibBuilder.loadTexts: tlpUpsAlarmGeneralFault.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmGeneralFault.setDescription('A general fault in the UPS has been detected.') tlp_ups_alarm_diagnostic_test_failed = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 19)) if mibBuilder.loadTexts: tlpUpsAlarmDiagnosticTestFailed.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmDiagnosticTestFailed.setDescription('The result of the last diagnostic test indicates a failure.') tlp_ups_alarm_awaiting_power = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 20)) if mibBuilder.loadTexts: tlpUpsAlarmAwaitingPower.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmAwaitingPower.setDescription('The UPS output is off and the UPS is awaiting the return of input power.') tlp_ups_alarm_shutdown_pending = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 21)) if mibBuilder.loadTexts: tlpUpsAlarmShutdownPending.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmShutdownPending.setDescription('A tlpUpsShutdownAfterDelay countdown is underway.') tlp_ups_alarm_shutdown_imminent = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 22)) if mibBuilder.loadTexts: tlpUpsAlarmShutdownImminent.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmShutdownImminent.setDescription('The UPS will turn off power to the load in less than 5 seconds; this may be either a timed shutdown or a low battery shutdown.') tlp_ups_alarm_load_level_above_threshold = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 23)) tlp_ups_alarm_load_level_above_threshold_total = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 23, 1)) if mibBuilder.loadTexts: tlpUpsAlarmLoadLevelAboveThresholdTotal.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadLevelAboveThresholdTotal.setDescription('The total load level is above the designated threshold.') tlp_ups_alarm_load_level_above_threshold_phase1 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 23, 2)) if mibBuilder.loadTexts: tlpUpsAlarmLoadLevelAboveThresholdPhase1.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadLevelAboveThresholdPhase1.setDescription('The load level on phase 1 exceeds load limits.') tlp_ups_alarm_load_level_above_threshold_phase2 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 23, 3)) if mibBuilder.loadTexts: tlpUpsAlarmLoadLevelAboveThresholdPhase2.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadLevelAboveThresholdPhase2.setDescription('The load level on phase 2 exceeds load limits.') tlp_ups_alarm_load_level_above_threshold_phase3 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 23, 4)) if mibBuilder.loadTexts: tlpUpsAlarmLoadLevelAboveThresholdPhase3.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadLevelAboveThresholdPhase3.setDescription('The load level on phase 3 exceeds load limits.') tlp_ups_alarm_output_current_changed = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 24)) if mibBuilder.loadTexts: tlpUpsAlarmOutputCurrentChanged.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmOutputCurrentChanged.setDescription('The output current changed from its last known value.') tlp_ups_alarm_battery_age_above_threshold = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 25)) if mibBuilder.loadTexts: tlpUpsAlarmBatteryAgeAboveThreshold.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmBatteryAgeAboveThreshold.setDescription('One or more batteries have been determined to require replacement.') tlp_ups_alarm_load_off = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26)) tlp_ups_alarm_load_off01 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 1)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff01.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadOff01.setDescription('Load 1 is off.') tlp_ups_alarm_load_off02 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 2)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff02.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadOff02.setDescription('Load 2 is off.') tlp_ups_alarm_load_off03 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 3)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff03.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadOff03.setDescription('Load 3 is off.') tlp_ups_alarm_load_off04 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 4)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff04.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadOff04.setDescription('Load 4 is off.') tlp_ups_alarm_load_off05 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 5)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff05.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadOff05.setDescription('Load 5 is off.') tlp_ups_alarm_load_off06 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 6)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff06.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadOff06.setDescription('Load 6 is off.') tlp_ups_alarm_load_off07 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 7)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff07.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadOff07.setDescription('Load 7 is off.') tlp_ups_alarm_load_off08 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 8)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff08.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadOff08.setDescription('Load 8 is off.') tlp_ups_alarm_load_off09 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 9)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff09.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadOff09.setDescription('Load 9 is off.') tlp_ups_alarm_load_off10 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 10)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff10.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadOff10.setDescription('Load 10 is off.') tlp_ups_alarm_load_off11 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 11)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff11.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadOff11.setDescription('Load 11 is off.') tlp_ups_alarm_load_off12 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 12)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff12.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadOff12.setDescription('Load 12 is off.') tlp_ups_alarm_load_off13 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 13)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff13.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadOff13.setDescription('Load 13 is off.') tlp_ups_alarm_load_off14 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 14)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff14.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadOff14.setDescription('Load 14 is off.') tlp_ups_alarm_load_off15 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 15)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff15.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadOff15.setDescription('Load 15 is off.') tlp_ups_alarm_load_off16 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 16)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff16.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadOff16.setDescription('Load 16 is off.') tlp_ups_alarm_load_off17 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 17)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff17.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadOff17.setDescription('Load 17 is off.') tlp_ups_alarm_load_off18 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 18)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff18.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadOff18.setDescription('Load 18 is off.') tlp_ups_alarm_load_off19 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 19)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff19.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadOff19.setDescription('Load 19 is off.') tlp_ups_alarm_load_off20 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 20)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff20.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadOff20.setDescription('Load 20 is off.') tlp_ups_alarm_load_off21 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 21)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff21.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadOff21.setDescription('Load 21 is off.') tlp_ups_alarm_load_off22 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 22)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff22.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadOff22.setDescription('Load 22 is off.') tlp_ups_alarm_load_off23 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 23)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff23.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadOff23.setDescription('Load 23 is off.') tlp_ups_alarm_load_off24 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 24)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff24.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadOff24.setDescription('Load 24 is off.') tlp_ups_alarm_load_off25 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 25)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff25.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadOff25.setDescription('Load 25 is off.') tlp_ups_alarm_load_off26 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 26)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff26.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadOff26.setDescription('Load 26 is off.') tlp_ups_alarm_load_off27 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 27)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff27.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadOff27.setDescription('Load 27 is off.') tlp_ups_alarm_load_off28 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 28)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff28.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadOff28.setDescription('Load 28 is off.') tlp_ups_alarm_load_off29 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 29)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff29.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadOff29.setDescription('Load 29 is off.') tlp_ups_alarm_load_off30 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 30)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff30.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadOff30.setDescription('Load 30 is off.') tlp_ups_alarm_load_off31 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 31)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff31.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadOff31.setDescription('Load 31 is off.') tlp_ups_alarm_load_off32 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 32)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff32.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadOff32.setDescription('Load 32 is off.') tlp_ups_alarm_load_off33 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 33)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff33.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadOff33.setDescription('Load 33 is off.') tlp_ups_alarm_load_off34 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 34)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff34.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadOff34.setDescription('Load 34 is off.') tlp_ups_alarm_load_off35 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 35)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff35.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadOff35.setDescription('Load 35 is off.') tlp_ups_alarm_load_off36 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 36)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff36.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadOff36.setDescription('Load 36 is off.') tlp_ups_alarm_load_off37 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 37)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff37.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadOff37.setDescription('Load 37 is off.') tlp_ups_alarm_load_off38 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 38)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff38.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadOff38.setDescription('Load 38 is off.') tlp_ups_alarm_load_off39 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 39)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff39.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadOff39.setDescription('Load 39 is off.') tlp_ups_alarm_load_off40 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 26, 40)) if mibBuilder.loadTexts: tlpUpsAlarmLoadOff40.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadOff40.setDescription('Load 40 is off.') tlp_ups_alarm_current_above_threshold = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 27)) tlp_ups_alarm_current_above_threshold1 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 27, 1)) if mibBuilder.loadTexts: tlpUpsAlarmCurrentAboveThreshold1.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmCurrentAboveThreshold1.setDescription('The output current on phase 1 exceeds load limits.') tlp_ups_alarm_current_above_threshold2 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 27, 2)) if mibBuilder.loadTexts: tlpUpsAlarmCurrentAboveThreshold2.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmCurrentAboveThreshold2.setDescription('The output current on phase 2 exceeds load limits.') tlp_ups_alarm_current_above_threshold3 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 27, 3)) if mibBuilder.loadTexts: tlpUpsAlarmCurrentAboveThreshold3.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmCurrentAboveThreshold3.setDescription('The output current on phase 3 exceeds load limits.') tlp_ups_alarm_runtime_below_warning_level = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 28)) if mibBuilder.loadTexts: tlpUpsAlarmRuntimeBelowWarningLevel.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmRuntimeBelowWarningLevel.setDescription('The battery seconds remaining is below warning level.') tlp_ups_alarm_bus_start_voltage_low = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 29)) if mibBuilder.loadTexts: tlpUpsAlarmBusStartVoltageLow.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmBusStartVoltageLow.setDescription('The inverter start up bus voltage is too low.') tlp_ups_alarm_bus_over_voltage = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 30)) if mibBuilder.loadTexts: tlpUpsAlarmBusOverVoltage.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmBusOverVoltage.setDescription('The inverter bus voltage is too high.') tlp_ups_alarm_bus_under_voltage = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 31)) if mibBuilder.loadTexts: tlpUpsAlarmBusUnderVoltage.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmBusUnderVoltage.setDescription('The inverter bus voltage is too low.') tlp_ups_alarm_bus_voltage_unbalanced = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 32)) if mibBuilder.loadTexts: tlpUpsAlarmBusVoltageUnbalanced.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmBusVoltageUnbalanced.setDescription('The inverter bus voltage is not balanced.') tlp_ups_alarm_inverter_soft_start_bad = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 33)) if mibBuilder.loadTexts: tlpUpsAlarmInverterSoftStartBad.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmInverterSoftStartBad.setDescription('The inverter bus voltage cannot reach desired voltage within a specified duration.') tlp_ups_alarm_inverter_over_voltage = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 34)) if mibBuilder.loadTexts: tlpUpsAlarmInverterOverVoltage.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmInverterOverVoltage.setDescription('The inverter voltage is too high.') tlp_ups_alarm_inverter_under_voltage = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 35)) if mibBuilder.loadTexts: tlpUpsAlarmInverterUnderVoltage.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmInverterUnderVoltage.setDescription('The inverter voltage is too low.') tlp_ups_alarm_inverter_circuit_bad = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 36)) if mibBuilder.loadTexts: tlpUpsAlarmInverterCircuitBad.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmInverterCircuitBad.setDescription('The inverter output is shorted.') tlp_ups_alarm_battery_over_voltage = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 37)) if mibBuilder.loadTexts: tlpUpsAlarmBatteryOverVoltage.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmBatteryOverVoltage.setDescription('The battery voltage is too high.') tlp_ups_alarm_battery_under_voltage = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 38)) if mibBuilder.loadTexts: tlpUpsAlarmBatteryUnderVoltage.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmBatteryUnderVoltage.setDescription('The battery voltage is too low.') tlp_ups_alarm_site_wiring_fault = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 39)) if mibBuilder.loadTexts: tlpUpsAlarmSiteWiringFault.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmSiteWiringFault.setDescription('The utility input wiring is faulty.') tlp_ups_alarm_over_temperature_protection = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 40)) if mibBuilder.loadTexts: tlpUpsAlarmOverTemperatureProtection.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmOverTemperatureProtection.setDescription('The over temperature protection is activated.') tlp_ups_alarm_over_charged = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 41)) if mibBuilder.loadTexts: tlpUpsAlarmOverCharged.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmOverCharged.setDescription('The UPS is over charged.') tlp_ups_alarm_epo_active = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 42)) if mibBuilder.loadTexts: tlpUpsAlarmEPOActive.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmEPOActive.setDescription('The EPO is currently activate.') tlp_ups_alarm_bypass_frequency_bad = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 43)) if mibBuilder.loadTexts: tlpUpsAlarmBypassFrequencyBad.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmBypassFrequencyBad.setDescription('The bypass frequency is out of tolerance.') tlp_ups_alarm_external_smart_battery_age_above_threshold = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 44)) if mibBuilder.loadTexts: tlpUpsAlarmExternalSmartBatteryAgeAboveThreshold.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmExternalSmartBatteryAgeAboveThreshold.setDescription('One or more external smart batteries have been determined to require replacement.') tlp_ups_alarm_external_non_smart_battery_age_above_threshold = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 45)) if mibBuilder.loadTexts: tlpUpsAlarmExternalNonSmartBatteryAgeAboveThreshold.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmExternalNonSmartBatteryAgeAboveThreshold.setDescription('One or more external non-smart batteries have been determined to require replacement.') tlp_ups_alarm_smart_battery_comm_lost = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 46)) if mibBuilder.loadTexts: tlpUpsAlarmSmartBatteryCommLost.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmSmartBatteryCommLost.setDescription('Communications with the smart batteries was lost.') tlp_ups_alarm_loads_not_all_on = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 3, 47)) if mibBuilder.loadTexts: tlpUpsAlarmLoadsNotAllOn.setStatus('current') if mibBuilder.loadTexts: tlpUpsAlarmLoadsNotAllOn.setDescription('One of more loads are not on.') tlp_pdu_alarm_load_level_above_threshold = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 1)) if mibBuilder.loadTexts: tlpPduAlarmLoadLevelAboveThreshold.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadLevelAboveThreshold.setDescription('The load level is above the designated threshold.') tlp_pdu_alarm_input_bad = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 2)) if mibBuilder.loadTexts: tlpPduAlarmInputBad.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmInputBad.setDescription('An input condition is out of tolerance.') tlp_pdu_alarm_output_bad = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 3)) if mibBuilder.loadTexts: tlpPduAlarmOutputBad.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmOutputBad.setDescription('An output condition (other than OutputOverload) is out of tolerance.') tlp_pdu_alarm_output_overload = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 4)) if mibBuilder.loadTexts: tlpPduAlarmOutputOverload.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmOutputOverload.setDescription('The output load exceeds the pdu output capacity.') tlp_pdu_alarm_output_off = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 5)) if mibBuilder.loadTexts: tlpPduAlarmOutputOff.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmOutputOff.setDescription('The output of the pdu is in the off state.') tlp_pdu_alarm_load_off = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6)) tlp_pdu_alarm_load_off01 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 1)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff01.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadOff01.setDescription('Load 1 is off.') tlp_pdu_alarm_load_off02 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 2)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff02.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadOff02.setDescription('Load 2 is off.') tlp_pdu_alarm_load_off03 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 3)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff03.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadOff03.setDescription('Load 3 is off.') tlp_pdu_alarm_load_off04 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 4)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff04.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadOff04.setDescription('Load 4 is off.') tlp_pdu_alarm_load_off05 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 5)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff05.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadOff05.setDescription('Load 5 is off.') tlp_pdu_alarm_load_off06 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 6)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff06.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadOff06.setDescription('Load 6 is off.') tlp_pdu_alarm_load_off07 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 7)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff07.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadOff07.setDescription('Load 7 is off.') tlp_pdu_alarm_load_off08 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 8)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff08.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadOff08.setDescription('Load 8 is off.') tlp_pdu_alarm_load_off09 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 9)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff09.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadOff09.setDescription('Load 9 is off.') tlp_pdu_alarm_load_off10 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 10)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff10.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadOff10.setDescription('Load 10 is off.') tlp_pdu_alarm_load_off11 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 11)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff11.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadOff11.setDescription('Load 11 is off.') tlp_pdu_alarm_load_off12 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 12)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff12.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadOff12.setDescription('Load 12 is off.') tlp_pdu_alarm_load_off13 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 13)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff13.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadOff13.setDescription('Load 13 is off.') tlp_pdu_alarm_load_off14 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 14)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff14.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadOff14.setDescription('Load 14 is off.') tlp_pdu_alarm_load_off15 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 15)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff15.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadOff15.setDescription('Load 15 is off.') tlp_pdu_alarm_load_off16 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 16)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff16.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadOff16.setDescription('Load 16 is off.') tlp_pdu_alarm_load_off17 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 17)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff17.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadOff17.setDescription('Load 17 is off.') tlp_pdu_alarm_load_off18 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 18)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff18.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadOff18.setDescription('Load 18 is off.') tlp_pdu_alarm_load_off19 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 19)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff19.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadOff19.setDescription('Load 19 is off.') tlp_pdu_alarm_load_off20 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 20)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff20.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadOff20.setDescription('Load 20 is off.') tlp_pdu_alarm_load_off21 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 21)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff21.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadOff21.setDescription('Load 21 is off.') tlp_pdu_alarm_load_off22 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 22)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff22.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadOff22.setDescription('Load 22 is off.') tlp_pdu_alarm_load_off23 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 23)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff23.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadOff23.setDescription('Load 23 is off.') tlp_pdu_alarm_load_off24 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 24)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff24.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadOff24.setDescription('Load 24 is off.') tlp_pdu_alarm_load_off25 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 25)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff25.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadOff25.setDescription('Load 25 is off.') tlp_pdu_alarm_load_off26 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 26)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff26.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadOff26.setDescription('Load 26 is off.') tlp_pdu_alarm_load_off27 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 27)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff27.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadOff27.setDescription('Load 27 is off.') tlp_pdu_alarm_load_off28 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 28)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff28.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadOff28.setDescription('Load 28 is off.') tlp_pdu_alarm_load_off29 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 29)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff29.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadOff29.setDescription('Load 29 is off.') tlp_pdu_alarm_load_off30 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 30)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff30.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadOff30.setDescription('Load 30 is off.') tlp_pdu_alarm_load_off31 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 31)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff31.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadOff31.setDescription('Load 31 is off.') tlp_pdu_alarm_load_off32 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 32)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff32.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadOff32.setDescription('Load 32 is off.') tlp_pdu_alarm_load_off33 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 33)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff33.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadOff33.setDescription('Load 33 is off.') tlp_pdu_alarm_load_off34 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 34)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff34.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadOff34.setDescription('Load 34 is off.') tlp_pdu_alarm_load_off35 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 35)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff35.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadOff35.setDescription('Load 35 is off.') tlp_pdu_alarm_load_off36 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 36)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff36.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadOff36.setDescription('Load 36 is off.') tlp_pdu_alarm_load_off37 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 37)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff37.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadOff37.setDescription('Load 37 is off.') tlp_pdu_alarm_load_off38 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 38)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff38.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadOff38.setDescription('Load 38 is off.') tlp_pdu_alarm_load_off39 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 39)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff39.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadOff39.setDescription('Load 39 is off.') tlp_pdu_alarm_load_off40 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 6, 40)) if mibBuilder.loadTexts: tlpPduAlarmLoadOff40.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadOff40.setDescription('Load 40 is off.') tlp_pdu_alarm_circuit_breaker_open = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 7)) tlp_pdu_alarm_circuit_breaker_open01 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 7, 1)) if mibBuilder.loadTexts: tlpPduAlarmCircuitBreakerOpen01.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmCircuitBreakerOpen01.setDescription('Circuit breaker 1 is open.') tlp_pdu_alarm_circuit_breaker_open02 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 7, 2)) if mibBuilder.loadTexts: tlpPduAlarmCircuitBreakerOpen02.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmCircuitBreakerOpen02.setDescription('Circuit breaker 2 is open.') tlp_pdu_alarm_circuit_breaker_open03 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 7, 3)) if mibBuilder.loadTexts: tlpPduAlarmCircuitBreakerOpen03.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmCircuitBreakerOpen03.setDescription('Circuit breaker 3 is open.') tlp_pdu_alarm_circuit_breaker_open04 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 7, 4)) if mibBuilder.loadTexts: tlpPduAlarmCircuitBreakerOpen04.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmCircuitBreakerOpen04.setDescription('Circuit breaker 4 is open.') tlp_pdu_alarm_circuit_breaker_open05 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 7, 5)) if mibBuilder.loadTexts: tlpPduAlarmCircuitBreakerOpen05.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmCircuitBreakerOpen05.setDescription('Circuit breaker 5 is open.') tlp_pdu_alarm_circuit_breaker_open06 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 7, 6)) if mibBuilder.loadTexts: tlpPduAlarmCircuitBreakerOpen06.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmCircuitBreakerOpen06.setDescription('Circuit breaker 6 is open.') tlp_pdu_alarm_current_above_threshold = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 8)) tlp_pdu_alarm_current_above_threshold1 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 8, 1)) if mibBuilder.loadTexts: tlpPduAlarmCurrentAboveThreshold1.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmCurrentAboveThreshold1.setDescription('The output current on phase 1 exceeds load limits.') tlp_pdu_alarm_current_above_threshold2 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 8, 2)) if mibBuilder.loadTexts: tlpPduAlarmCurrentAboveThreshold2.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmCurrentAboveThreshold2.setDescription('The output current on phase 2 exceeds load limits.') tlp_pdu_alarm_current_above_threshold3 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 8, 3)) if mibBuilder.loadTexts: tlpPduAlarmCurrentAboveThreshold3.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmCurrentAboveThreshold3.setDescription('The output current on phase 3 exceeds load limits.') tlp_pdu_alarm_loads_not_all_on = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 4, 9)) if mibBuilder.loadTexts: tlpPduAlarmLoadsNotAllOn.setStatus('current') if mibBuilder.loadTexts: tlpPduAlarmLoadsNotAllOn.setDescription('One of more loads are not on.') tlp_env_alarm_temperature_beyond_limits = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 5, 1)) if mibBuilder.loadTexts: tlpEnvAlarmTemperatureBeyondLimits.setStatus('current') if mibBuilder.loadTexts: tlpEnvAlarmTemperatureBeyondLimits.setDescription('The temperature exceeds limits.') tlp_env_alarm_humidity_beyond_limits = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 5, 2)) if mibBuilder.loadTexts: tlpEnvAlarmHumidityBeyondLimits.setStatus('current') if mibBuilder.loadTexts: tlpEnvAlarmHumidityBeyondLimits.setDescription('The humidity exceeds limits.') tlp_env_alarm_input_contact = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 5, 3)) tlp_env_alarm_input_contact01 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 5, 3, 1)) if mibBuilder.loadTexts: tlpEnvAlarmInputContact01.setStatus('current') if mibBuilder.loadTexts: tlpEnvAlarmInputContact01.setDescription('Input contact 1 is in alarm.') tlp_env_alarm_input_contact02 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 5, 3, 2)) if mibBuilder.loadTexts: tlpEnvAlarmInputContact02.setStatus('current') if mibBuilder.loadTexts: tlpEnvAlarmInputContact02.setDescription('Input contact 2 is in alarm.') tlp_env_alarm_input_contact03 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 5, 3, 3)) if mibBuilder.loadTexts: tlpEnvAlarmInputContact03.setStatus('current') if mibBuilder.loadTexts: tlpEnvAlarmInputContact03.setDescription('Input contact 3 is in alarm.') tlp_env_alarm_input_contact04 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 5, 3, 4)) if mibBuilder.loadTexts: tlpEnvAlarmInputContact04.setStatus('current') if mibBuilder.loadTexts: tlpEnvAlarmInputContact04.setDescription('Input contact 4 is in alarm.') tlp_env_alarm_output_contact = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 5, 4)) tlp_env_alarm_output_contact01 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 5, 4, 1)) if mibBuilder.loadTexts: tlpEnvAlarmOutputContact01.setStatus('current') if mibBuilder.loadTexts: tlpEnvAlarmOutputContact01.setDescription('Output contact 1 is in alarm.') tlp_env_alarm_output_contact02 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 5, 4, 2)) if mibBuilder.loadTexts: tlpEnvAlarmOutputContact02.setStatus('current') if mibBuilder.loadTexts: tlpEnvAlarmOutputContact02.setDescription('Output contact 2 is in alarm.') tlp_env_alarm_output_contact03 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 5, 4, 3)) if mibBuilder.loadTexts: tlpEnvAlarmOutputContact03.setStatus('current') if mibBuilder.loadTexts: tlpEnvAlarmOutputContact03.setDescription('Output contact 3 is in alarm.') tlp_env_alarm_output_contact04 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 5, 4, 4)) if mibBuilder.loadTexts: tlpEnvAlarmOutputContact04.setStatus('current') if mibBuilder.loadTexts: tlpEnvAlarmOutputContact04.setDescription('Output contact 4 is in alarm.') tlp_ats_alarm_outage = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 1)) tlp_ats_alarm_source1_outage = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 1, 1)) if mibBuilder.loadTexts: tlpAtsAlarmSource1Outage.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmSource1Outage.setDescription('Input on source 1 is not present. For atss with the designation of primary and secondary, this alarm denotes input on the primary source is not present.') tlp_ats_alarm_source2_outage = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 1, 2)) if mibBuilder.loadTexts: tlpAtsAlarmSource2Outage.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmSource2Outage.setDescription('Input on source 2 is not present. For atss with the designation of primary and secondary, this alarm denotes input on the secondary source is not present.') tlp_ats_alarm_temperature = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 2)) tlp_ats_alarm_system_temperature = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 2, 1)) if mibBuilder.loadTexts: tlpAtsAlarmSystemTemperature.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmSystemTemperature.setDescription('The system temperature is out of tolerance.') tlp_ats_alarm_source1_temperature = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 2, 2)) if mibBuilder.loadTexts: tlpAtsAlarmSource1Temperature.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmSource1Temperature.setDescription('The source 1 temperature is out of tolerance.') tlp_ats_alarm_source2_temperature = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 2, 3)) if mibBuilder.loadTexts: tlpAtsAlarmSource2Temperature.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmSource2Temperature.setDescription('The source 2 temperature is out of tolerance.') tlp_ats_alarm_load_level_above_threshold = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 3)) if mibBuilder.loadTexts: tlpAtsAlarmLoadLevelAboveThreshold.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadLevelAboveThreshold.setDescription('The load level is above the designated threshold.') tlp_ats_alarm_input_bad = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 4)) if mibBuilder.loadTexts: tlpAtsAlarmInputBad.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmInputBad.setDescription('An input condition is out of tolerance.') tlp_ats_alarm_output_bad = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 5)) if mibBuilder.loadTexts: tlpAtsAlarmOutputBad.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmOutputBad.setDescription('An output condition (other than OutputOverload) is out of tolerance.') tlp_ats_alarm_output_overload = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 6)) if mibBuilder.loadTexts: tlpAtsAlarmOutputOverload.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmOutputOverload.setDescription('The output load exceeds the ats output capacity.') tlp_ats_alarm_output_off = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 7)) if mibBuilder.loadTexts: tlpAtsAlarmOutputOff.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmOutputOff.setDescription('The output of the ats is in the off state.') tlp_ats_alarm_load_off = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8)) tlp_ats_alarm_load_off01 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 1)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff01.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadOff01.setDescription('Load 1 is off.') tlp_ats_alarm_load_off02 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 2)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff02.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadOff02.setDescription('Load 2 is off.') tlp_ats_alarm_load_off03 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 3)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff03.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadOff03.setDescription('Load 3 is off.') tlp_ats_alarm_load_off04 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 4)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff04.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadOff04.setDescription('Load 4 is off.') tlp_ats_alarm_load_off05 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 5)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff05.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadOff05.setDescription('Load 5 is off.') tlp_ats_alarm_load_off06 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 6)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff06.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadOff06.setDescription('Load 6 is off.') tlp_ats_alarm_load_off07 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 7)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff07.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadOff07.setDescription('Load 7 is off.') tlp_ats_alarm_load_off08 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 8)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff08.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadOff08.setDescription('Load 8 is off.') tlp_ats_alarm_load_off09 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 9)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff09.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadOff09.setDescription('Load 9 is off.') tlp_ats_alarm_load_off10 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 10)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff10.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadOff10.setDescription('Load 10 is off.') tlp_ats_alarm_load_off11 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 11)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff11.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadOff11.setDescription('Load 11 is off.') tlp_ats_alarm_load_off12 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 12)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff12.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadOff12.setDescription('Load 12 is off.') tlp_ats_alarm_load_off13 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 13)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff13.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadOff13.setDescription('Load 13 is off.') tlp_ats_alarm_load_off14 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 14)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff14.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadOff14.setDescription('Load 14 is off.') tlp_ats_alarm_load_off15 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 15)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff15.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadOff15.setDescription('Load 15 is off.') tlp_ats_alarm_load_off16 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 16)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff16.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadOff16.setDescription('Load 16 is off.') tlp_ats_alarm_load_off17 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 17)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff17.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadOff17.setDescription('Load 17 is off.') tlp_ats_alarm_load_off18 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 18)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff18.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadOff18.setDescription('Load 18 is off.') tlp_ats_alarm_load_off19 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 19)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff19.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadOff19.setDescription('Load 19 is off.') tlp_ats_alarm_load_off20 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 20)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff20.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadOff20.setDescription('Load 20 is off.') tlp_ats_alarm_load_off21 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 21)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff21.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadOff21.setDescription('Load 21 is off.') tlp_ats_alarm_load_off22 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 22)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff22.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadOff22.setDescription('Load 22 is off.') tlp_ats_alarm_load_off23 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 23)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff23.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadOff23.setDescription('Load 23 is off.') tlp_ats_alarm_load_off24 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 24)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff24.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadOff24.setDescription('Load 24 is off.') tlp_ats_alarm_load_off25 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 25)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff25.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadOff25.setDescription('Load 25 is off.') tlp_ats_alarm_load_off26 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 26)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff26.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadOff26.setDescription('Load 26 is off.') tlp_ats_alarm_load_off27 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 27)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff27.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadOff27.setDescription('Load 27 is off.') tlp_ats_alarm_load_off28 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 28)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff28.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadOff28.setDescription('Load 28 is off.') tlp_ats_alarm_load_off29 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 29)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff29.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadOff29.setDescription('Load 29 is off.') tlp_ats_alarm_load_off30 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 30)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff30.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadOff30.setDescription('Load 30 is off.') tlp_ats_alarm_load_off31 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 31)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff31.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadOff31.setDescription('Load 31 is off.') tlp_ats_alarm_load_off32 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 32)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff32.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadOff32.setDescription('Load 32 is off.') tlp_ats_alarm_load_off33 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 33)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff33.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadOff33.setDescription('Load 33 is off.') tlp_ats_alarm_load_off34 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 34)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff34.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadOff34.setDescription('Load 34 is off.') tlp_ats_alarm_load_off35 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 35)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff35.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadOff35.setDescription('Load 35 is off.') tlp_ats_alarm_load_off36 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 36)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff36.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadOff36.setDescription('Load 36 is off.') tlp_ats_alarm_load_off37 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 37)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff37.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadOff37.setDescription('Load 37 is off.') tlp_ats_alarm_load_off38 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 38)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff38.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadOff38.setDescription('Load 38 is off.') tlp_ats_alarm_load_off39 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 39)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff39.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadOff39.setDescription('Load 39 is off.') tlp_ats_alarm_load_off40 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 8, 40)) if mibBuilder.loadTexts: tlpAtsAlarmLoadOff40.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadOff40.setDescription('Load 40 is off.') tlp_ats_alarm_circuit_breaker_open = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 9)) tlp_ats_alarm_circuit_breaker_open01 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 9, 1)) if mibBuilder.loadTexts: tlpAtsAlarmCircuitBreakerOpen01.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmCircuitBreakerOpen01.setDescription('Circuit breaker 1 is open.') tlp_ats_alarm_circuit_breaker_open02 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 9, 2)) if mibBuilder.loadTexts: tlpAtsAlarmCircuitBreakerOpen02.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmCircuitBreakerOpen02.setDescription('Circuit breaker 2 is open.') tlp_ats_alarm_circuit_breaker_open03 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 9, 3)) if mibBuilder.loadTexts: tlpAtsAlarmCircuitBreakerOpen03.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmCircuitBreakerOpen03.setDescription('Circuit breaker 3 is open.') tlp_ats_alarm_circuit_breaker_open04 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 9, 4)) if mibBuilder.loadTexts: tlpAtsAlarmCircuitBreakerOpen04.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmCircuitBreakerOpen04.setDescription('Circuit breaker 4 is open.') tlp_ats_alarm_circuit_breaker_open05 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 9, 5)) if mibBuilder.loadTexts: tlpAtsAlarmCircuitBreakerOpen05.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmCircuitBreakerOpen05.setDescription('Circuit breaker 5 is open.') tlp_ats_alarm_circuit_breaker_open06 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 9, 6)) if mibBuilder.loadTexts: tlpAtsAlarmCircuitBreakerOpen06.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmCircuitBreakerOpen06.setDescription('Circuit breaker 6 is open.') tlp_ats_alarm_current_above_threshold = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 10)) tlp_ats_alarm_current_above_threshold_a1 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 10, 1)) if mibBuilder.loadTexts: tlpAtsAlarmCurrentAboveThresholdA1.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmCurrentAboveThresholdA1.setDescription('The output current on input source 1 phase 1 exceeds load limits.') tlp_ats_alarm_current_above_threshold_a2 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 10, 2)) if mibBuilder.loadTexts: tlpAtsAlarmCurrentAboveThresholdA2.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmCurrentAboveThresholdA2.setDescription('The output current on input source 1 phase 2 exceeds load limits.') tlp_ats_alarm_current_above_threshold_a3 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 10, 3)) if mibBuilder.loadTexts: tlpAtsAlarmCurrentAboveThresholdA3.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmCurrentAboveThresholdA3.setDescription('The output current on input source 1 phase 3 exceeds load limits.') tlp_ats_alarm_current_above_threshold_b1 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 10, 4)) if mibBuilder.loadTexts: tlpAtsAlarmCurrentAboveThresholdB1.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmCurrentAboveThresholdB1.setDescription('The output current on input source 2 phase 1 exceeds load limits.') tlp_ats_alarm_current_above_threshold_b2 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 10, 5)) if mibBuilder.loadTexts: tlpAtsAlarmCurrentAboveThresholdB2.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmCurrentAboveThresholdB2.setDescription('The output current on input source 2 phase 2 exceeds load limits.') tlp_ats_alarm_current_above_threshold_b3 = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 10, 6)) if mibBuilder.loadTexts: tlpAtsAlarmCurrentAboveThresholdB3.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmCurrentAboveThresholdB3.setDescription('The output current on input source 2 phase 3 exceeds load limits.') tlp_ats_alarm_loads_not_all_on = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 11)) if mibBuilder.loadTexts: tlpAtsAlarmLoadsNotAllOn.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmLoadsNotAllOn.setDescription('One of more loads are not on.') tlp_ats_alarm_general_fault = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 12)) if mibBuilder.loadTexts: tlpAtsAlarmGeneralFault.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmGeneralFault.setDescription('A general fault in the ats has been detected.') tlp_ats_alarm_voltage = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 13)) tlp_ats_alarm_over_voltage = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 13, 1)) if mibBuilder.loadTexts: tlpAtsAlarmOverVoltage.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmOverVoltage.setDescription('The input voltage is out of tolerance.') tlp_ats_alarm_source1_over_voltage = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 13, 2)) if mibBuilder.loadTexts: tlpAtsAlarmSource1OverVoltage.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmSource1OverVoltage.setDescription('The voltage on source 1 is out of tolerance.') tlp_ats_alarm_source2_over_voltage = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 13, 3)) if mibBuilder.loadTexts: tlpAtsAlarmSource2OverVoltage.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmSource2OverVoltage.setDescription('The voltage on source 2 is out of tolerance.') tlp_ats_alarm_frequency = mib_identifier((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 14)) tlp_ats_alarm_source1_invalid_frequency = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 14, 1)) if mibBuilder.loadTexts: tlpAtsAlarmSource1InvalidFrequency.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmSource1InvalidFrequency.setDescription('The voltage on source 1 is out of tolerance.') tlp_ats_alarm_source2_invalid_frequency = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 6, 14, 2)) if mibBuilder.loadTexts: tlpAtsAlarmSource2InvalidFrequency.setStatus('current') if mibBuilder.loadTexts: tlpAtsAlarmSource2InvalidFrequency.setDescription('The voltage on source 2 is out of tolerance.') tlp_cooling_alarm_supply_air_sensor_fault = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 1)) if mibBuilder.loadTexts: tlpCoolingAlarmSupplyAirSensorFault.setStatus('current') if mibBuilder.loadTexts: tlpCoolingAlarmSupplyAirSensorFault.setDescription('The supply air sensor is in fault.') tlp_cooling_alarm_return_air_sensor_fault = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 2)) if mibBuilder.loadTexts: tlpCoolingAlarmReturnAirSensorFault.setStatus('current') if mibBuilder.loadTexts: tlpCoolingAlarmReturnAirSensorFault.setDescription('The return air sensor is in fault.') tlp_cooling_alarm_condenser_inlet_air_sensor_fault = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 3)) if mibBuilder.loadTexts: tlpCoolingAlarmCondenserInletAirSensorFault.setStatus('current') if mibBuilder.loadTexts: tlpCoolingAlarmCondenserInletAirSensorFault.setDescription('The condenser inlet air sensor is in fault.') tlp_cooling_alarm_condenser_outlet_air_sensor_fault = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 4)) if mibBuilder.loadTexts: tlpCoolingAlarmCondenserOutletAirSensorFault.setStatus('current') if mibBuilder.loadTexts: tlpCoolingAlarmCondenserOutletAirSensorFault.setDescription('The condenser outlet air sensor is in fault.') tlp_cooling_alarm_suction_temperature_sensor_fault = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 5)) if mibBuilder.loadTexts: tlpCoolingAlarmSuctionTemperatureSensorFault.setStatus('current') if mibBuilder.loadTexts: tlpCoolingAlarmSuctionTemperatureSensorFault.setDescription('The suction temperature sensor is in fault.') tlp_cooling_alarm_evaporator_temperature_sensor_fault = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 6)) if mibBuilder.loadTexts: tlpCoolingAlarmEvaporatorTemperatureSensorFault.setStatus('current') if mibBuilder.loadTexts: tlpCoolingAlarmEvaporatorTemperatureSensorFault.setDescription('The evaporator temperature sensor is in fault.') tlp_cooling_alarm_air_filter_clogged = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 7)) if mibBuilder.loadTexts: tlpCoolingAlarmAirFilterClogged.setStatus('current') if mibBuilder.loadTexts: tlpCoolingAlarmAirFilterClogged.setDescription('The air filter is clogged.') tlp_cooling_alarm_air_filter_run_hours_violation = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 8)) if mibBuilder.loadTexts: tlpCoolingAlarmAirFilterRunHoursViolation.setStatus('current') if mibBuilder.loadTexts: tlpCoolingAlarmAirFilterRunHoursViolation.setDescription('The air filter run hours was violated.') tlp_cooling_alarm_suction_pressure_sensor_fault = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 9)) if mibBuilder.loadTexts: tlpCoolingAlarmSuctionPressureSensorFault.setStatus('current') if mibBuilder.loadTexts: tlpCoolingAlarmSuctionPressureSensorFault.setDescription('The suction pressure sensor is in fault.') tlp_cooling_alarm_inverter_communications_fault = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 10)) if mibBuilder.loadTexts: tlpCoolingAlarmInverterCommunicationsFault.setStatus('current') if mibBuilder.loadTexts: tlpCoolingAlarmInverterCommunicationsFault.setDescription('The inverter communications is in fault.') tlp_cooling_alarm_remote_shutdown_via_input_contact = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 11)) if mibBuilder.loadTexts: tlpCoolingAlarmRemoteShutdownViaInputContact.setStatus('current') if mibBuilder.loadTexts: tlpCoolingAlarmRemoteShutdownViaInputContact.setDescription('A remote shutdown was triggerd by an input contact.') tlp_cooling_alarm_condensate_pump_fault = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 12)) if mibBuilder.loadTexts: tlpCoolingAlarmCondensatePumpFault.setStatus('current') if mibBuilder.loadTexts: tlpCoolingAlarmCondensatePumpFault.setDescription('The condensate pump is in fault.') tlp_cooling_alarm_low_refrigerant_startup_fault = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 13)) if mibBuilder.loadTexts: tlpCoolingAlarmLowRefrigerantStartupFault.setStatus('current') if mibBuilder.loadTexts: tlpCoolingAlarmLowRefrigerantStartupFault.setDescription('The low refrigerant startup is in fault.') tlp_cooling_alarm_condenser_fan_fault = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 14)) if mibBuilder.loadTexts: tlpCoolingAlarmCondenserFanFault.setStatus('current') if mibBuilder.loadTexts: tlpCoolingAlarmCondenserFanFault.setDescription('The condenser fan is in fault.') tlp_cooling_alarm_condenser_failure = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 15)) if mibBuilder.loadTexts: tlpCoolingAlarmCondenserFailure.setStatus('current') if mibBuilder.loadTexts: tlpCoolingAlarmCondenserFailure.setDescription('The condenser has failed.') tlp_cooling_alarm_evaporator_cooling_failure = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 16)) if mibBuilder.loadTexts: tlpCoolingAlarmEvaporatorCoolingFailure.setStatus('current') if mibBuilder.loadTexts: tlpCoolingAlarmEvaporatorCoolingFailure.setDescription('The evaporator cooling is in fault.') tlp_cooling_alarm_return_air_temp_high = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 17)) if mibBuilder.loadTexts: tlpCoolingAlarmReturnAirTempHigh.setStatus('current') if mibBuilder.loadTexts: tlpCoolingAlarmReturnAirTempHigh.setDescription('The return air temperature is high.') tlp_cooling_alarm_supply_air_temp_high = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 18)) if mibBuilder.loadTexts: tlpCoolingAlarmSupplyAirTempHigh.setStatus('current') if mibBuilder.loadTexts: tlpCoolingAlarmSupplyAirTempHigh.setDescription('The supply air temperature is high.') tlp_cooling_alarm_evaporator_failure = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 19)) if mibBuilder.loadTexts: tlpCoolingAlarmEvaporatorFailure.setStatus('current') if mibBuilder.loadTexts: tlpCoolingAlarmEvaporatorFailure.setDescription('The evaporator has failed.') tlp_cooling_alarm_evaporator_freeze_up = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 20)) if mibBuilder.loadTexts: tlpCoolingAlarmEvaporatorFreezeUp.setStatus('current') if mibBuilder.loadTexts: tlpCoolingAlarmEvaporatorFreezeUp.setDescription('The evaporator is frozen.') tlp_cooling_alarm_discharge_pressure_high = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 21)) if mibBuilder.loadTexts: tlpCoolingAlarmDischargePressureHigh.setStatus('current') if mibBuilder.loadTexts: tlpCoolingAlarmDischargePressureHigh.setDescription('The discharge pressure is high.') tlp_cooling_alarm_pressure_gauge_failure = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 22)) if mibBuilder.loadTexts: tlpCoolingAlarmPressureGaugeFailure.setStatus('current') if mibBuilder.loadTexts: tlpCoolingAlarmPressureGaugeFailure.setDescription('The pressure gauge has failed.') tlp_cooling_alarm_discharge_pressure_persistent_high = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 23)) if mibBuilder.loadTexts: tlpCoolingAlarmDischargePressurePersistentHigh.setStatus('current') if mibBuilder.loadTexts: tlpCoolingAlarmDischargePressurePersistentHigh.setDescription('The discharge pressure is persistently high.') tlp_cooling_alarm_suction_pressure_low_start_failure = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 24)) if mibBuilder.loadTexts: tlpCoolingAlarmSuctionPressureLowStartFailure.setStatus('current') if mibBuilder.loadTexts: tlpCoolingAlarmSuctionPressureLowStartFailure.setDescription('Cannot start due to low suction pressure.') tlp_cooling_alarm_suction_pressure_low = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 25)) if mibBuilder.loadTexts: tlpCoolingAlarmSuctionPressureLow.setStatus('current') if mibBuilder.loadTexts: tlpCoolingAlarmSuctionPressureLow.setDescription('The suction pressure is low.') tlp_cooling_alarm_suction_pressure_persistent_low = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 26)) if mibBuilder.loadTexts: tlpCoolingAlarmSuctionPressurePersistentLow.setStatus('current') if mibBuilder.loadTexts: tlpCoolingAlarmSuctionPressurePersistentLow.setDescription('The suction pressure is persistently low.') tlp_cooling_alarm_startup_line_pressure_imbalance = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 27)) if mibBuilder.loadTexts: tlpCoolingAlarmStartupLinePressureImbalance.setStatus('current') if mibBuilder.loadTexts: tlpCoolingAlarmStartupLinePressureImbalance.setDescription('The startup line pressure is in imbalance.') tlp_cooling_alarm_compressor_failure = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 28)) if mibBuilder.loadTexts: tlpCoolingAlarmCompressorFailure.setStatus('current') if mibBuilder.loadTexts: tlpCoolingAlarmCompressorFailure.setDescription('The compressor has failed.') tlp_cooling_alarm_current_limit = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 29)) if mibBuilder.loadTexts: tlpCoolingAlarmCurrentLimit.setStatus('current') if mibBuilder.loadTexts: tlpCoolingAlarmCurrentLimit.setDescription('The current is out of range.') tlp_cooling_alarm_water_leak = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 30)) if mibBuilder.loadTexts: tlpCoolingAlarmWaterLeak.setStatus('current') if mibBuilder.loadTexts: tlpCoolingAlarmWaterLeak.setDescription('Water is leaking.') tlp_cooling_alarm_fan_under_current = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 31)) if mibBuilder.loadTexts: tlpCoolingAlarmFanUnderCurrent.setStatus('current') if mibBuilder.loadTexts: tlpCoolingAlarmFanUnderCurrent.setDescription('The fan is under current.') tlp_cooling_alarm_fan_over_current = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 32)) if mibBuilder.loadTexts: tlpCoolingAlarmFanOverCurrent.setStatus('current') if mibBuilder.loadTexts: tlpCoolingAlarmFanOverCurrent.setDescription('The fan is over current.') tlp_cooling_alarm_discharge_pressure_sensor_fault = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 33)) if mibBuilder.loadTexts: tlpCoolingAlarmDischargePressureSensorFault.setStatus('current') if mibBuilder.loadTexts: tlpCoolingAlarmDischargePressureSensorFault.setDescription('The discharge pressure sensor is in fault.') tlp_cooling_alarm_water_full = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 34)) if mibBuilder.loadTexts: tlpCoolingAlarmWaterFull.setStatus('current') if mibBuilder.loadTexts: tlpCoolingAlarmWaterFull.setDescription('Water is Full.') tlp_cooling_alarm_auto_cooling_on = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 35)) if mibBuilder.loadTexts: tlpCoolingAlarmAutoCoolingOn.setStatus('current') if mibBuilder.loadTexts: tlpCoolingAlarmAutoCoolingOn.setDescription('Automatic cooling was activated to lower the temperature below the remote set point.') tlp_cooling_alarm_power_button_pressed = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 36)) if mibBuilder.loadTexts: tlpCoolingAlarmPowerButtonPressed.setStatus('current') if mibBuilder.loadTexts: tlpCoolingAlarmPowerButtonPressed.setDescription('Power button was pressed on the front panel.') tlp_cooling_alarm_disconnected_from_device = object_identity((1, 3, 6, 1, 4, 1, 850, 1, 3, 3, 7, 37)) if mibBuilder.loadTexts: tlpCoolingAlarmDisconnectedFromDevice.setStatus('current') if mibBuilder.loadTexts: tlpCoolingAlarmDisconnectedFromDevice.setDescription('The device communications is disconnected.') tlp_alarm_control_table = mib_table((1, 3, 6, 1, 4, 1, 850, 1, 3, 4, 1)) if mibBuilder.loadTexts: tlpAlarmControlTable.setStatus('current') if mibBuilder.loadTexts: tlpAlarmControlTable.setDescription('A list of alarm conditions supported for each device managed by this agent. This table contains zero, one, or many rows depending upon the number of available alarms managed by each device.') tlp_alarm_control_entry = mib_table_row((1, 3, 6, 1, 4, 1, 850, 1, 3, 4, 1, 1)).setIndexNames((0, 'TRIPPLITE-PRODUCTS', 'tlpDeviceIndex'), (0, 'TRIPPLITE-PRODUCTS', 'tlpAlarmControlIndex')) if mibBuilder.loadTexts: tlpAlarmControlEntry.setStatus('current') if mibBuilder.loadTexts: tlpAlarmControlEntry.setDescription('An entry containing details for a particular alarm condition.') tlp_alarm_control_index = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 3, 4, 1, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAlarmControlIndex.setStatus('current') if mibBuilder.loadTexts: tlpAlarmControlIndex.setDescription('The table row index for this alarm control entry for this device. The index of any one row represents the index of the alarm entry within the agent system. As such, the index values for any one device is not guaranteed to start with 1 or be numerically sequential.') tlp_alarm_control_descr = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 3, 4, 1, 1, 2), object_identifier()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAlarmControlDescr.setStatus('current') if mibBuilder.loadTexts: tlpAlarmControlDescr.setDescription('A reference of the alarm description object. The object referenced should not be accessbile, but rather be used to provide a unique description for the alarm condition. The object referenced will be a well known alarm object associated with the device on which the alarm condition is active. This will be the same object description of an alarm when in alarm as referenced by tlpAlarmDescr.') tlp_alarm_control_detail = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 3, 4, 1, 1, 3), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlpAlarmControlDetail.setStatus('current') if mibBuilder.loadTexts: tlpAlarmControlDetail.setDescription('A textual description of the alarm condition. This will be the same textual description of an alarm when in alarm as referenced by tlpAlarmDetail.') tlp_alarm_control_severity = mib_table_column((1, 3, 6, 1, 4, 1, 850, 1, 3, 4, 1, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('critical', 1), ('warning', 2), ('info', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: tlpAlarmControlSeverity.setStatus('current') if mibBuilder.loadTexts: tlpAlarmControlSeverity.setDescription('The severity of this alarm, which can be configured as desired for each alarm condition. This will be the same severity used when in alarm as referenced by tlpAlarmType.') tlp_notifications_alarm_entry_added = notification_type((1, 3, 6, 1, 4, 1, 850, 1, 4, 1, 1)).setObjects(('TRIPPLITE-PRODUCTS', 'tlpAlarmId'), ('TRIPPLITE-PRODUCTS', 'tlpAlarmDescr'), ('TRIPPLITE-PRODUCTS', 'tlpAlarmTime'), ('TRIPPLITE-PRODUCTS', 'tlpAlarmTableRef'), ('TRIPPLITE-PRODUCTS', 'tlpAlarmTableRowRef'), ('TRIPPLITE-PRODUCTS', 'tlpAlarmDetail'), ('TRIPPLITE-PRODUCTS', 'tlpAlarmType')) if mibBuilder.loadTexts: tlpNotificationsAlarmEntryAdded.setStatus('current') if mibBuilder.loadTexts: tlpNotificationsAlarmEntryAdded.setDescription('This notification is sent each time an alarm condition is inserted into the device alarm table, tlpAlarmTable.') tlp_notifications_alarm_entry_removed = notification_type((1, 3, 6, 1, 4, 1, 850, 1, 4, 1, 2)).setObjects(('TRIPPLITE-PRODUCTS', 'tlpAlarmId'), ('TRIPPLITE-PRODUCTS', 'tlpAlarmDescr'), ('TRIPPLITE-PRODUCTS', 'tlpAlarmTime'), ('TRIPPLITE-PRODUCTS', 'tlpAlarmTableRef'), ('TRIPPLITE-PRODUCTS', 'tlpAlarmTableRowRef'), ('TRIPPLITE-PRODUCTS', 'tlpAlarmDetail'), ('TRIPPLITE-PRODUCTS', 'tlpAlarmType')) if mibBuilder.loadTexts: tlpNotificationsAlarmEntryRemoved.setStatus('current') if mibBuilder.loadTexts: tlpNotificationsAlarmEntryRemoved.setDescription('This notification is sent each time an alarm condition is removed from the device alarm table, tlpAlarmTable.') tlp_notify_system_startup = notification_type((1, 3, 6, 1, 4, 1, 850, 1, 4, 1, 3)) if mibBuilder.loadTexts: tlpNotifySystemStartup.setStatus('current') if mibBuilder.loadTexts: tlpNotifySystemStartup.setDescription("Used to inform another entity of an agent's startup. The varbinds that follow are: OBJ1 = tlpAgentType Obj1Value = The type of engine providing this data OBJ2 = tlpAgentVersion Obj2Value = The current version of the engine OBJ3 = tlpAgentMAC Obj3Value = The MAC address of the engine OBJ4 = tlpAgentSerialNum Obj4Value = The serial number of the web card [should be 0 on PC] --- if this trap is extended, place all static OIDs above this mark. all objects below --- the number of devices (tlpDeviceNumDevices) is explicit as per device for enumeration by --- the target receiver OBJ5 = tlpDeviceNumDevices Obj5Value = The number of devices attached --- The following objects will be replicated per each device: OBJ6 = The OID for an entry of tlpDeviceManufacturer, indexed by device Obj6Value = The device's manufacturer OBJ7 = The OID for an entry of tlpDeviceModel, indexed by device Obj7Value = The device's model name OBJ8 = The OID for an entry of tlpDeviceName, indexed by device Obj8Value = The device's display name OBJ9 = The OID for an entry of tlpDeviceLocation, indexed by device Obj9Value = The device's location OBJ10 = The OID for an entry of tlpDeviceRegion, indexed by device Obj10Value= The device's region OBJ11 = The OID for an entry of tlpDeviceProtocol, indexed by device Obj11Value= The device's protocol (display string format) ") tlp_notify_system_shutdown = notification_type((1, 3, 6, 1, 4, 1, 850, 1, 4, 1, 4)) if mibBuilder.loadTexts: tlpNotifySystemShutdown.setStatus('current') if mibBuilder.loadTexts: tlpNotifySystemShutdown.setDescription("Used to inform another entity of an agent's shutdown. The varbinds that follow are: OBJ1 = tlpAgentType Obj1Value = The type of engine providing this data OBJ2 = tlpAgentVersion Obj2Value = The current version of the engine OBJ3 = tlpAgentMAC Obj3Value = The MAC address of the engine OBJ4 = tlpAgentSerialNum Obj4Value = The serial number of the web card [should be 0 on PC] --- if this trap is extended, place all static OIDs above this mark. all objects below --- the number of devices (tlpDeviceNumDevices) is explicit as per device for enumeration by --- the target receiver OBJ5 = tlpDeviceNumDevices Obj5Value = The number of devices attached --- The following objects will be replicated per each device: OBJ6 = The OID for an entry of tlpDeviceManufacturer, indexed by device Obj6Value = The device's manufacturer OBJ7 = The OID for an entry of tlpDeviceModel, indexed by device Obj7Value = The device's model name OBJ8 = The OID for an entry of tlpDeviceName, indexed by device Obj8Value = The device's display name OBJ9 = The OID for an entry of tlpDeviceLocation, indexed by device Obj9Value = The device's location OBJ10 = The OID for an entry of tlpDeviceRegion, indexed by device Obj10Value= The device's region OBJ11 = The OID for an entry of tlpDeviceProtocol, indexed by device Obj11Value= The device's protocol (display string format) ") tlp_notify_system_update = notification_type((1, 3, 6, 1, 4, 1, 850, 1, 4, 1, 5)) if mibBuilder.loadTexts: tlpNotifySystemUpdate.setStatus('current') if mibBuilder.loadTexts: tlpNotifySystemUpdate.setDescription("Used to inform another entity of an engine's startup. The varbinds that follow are: OBJ1 = tlpAgentType Obj1Value = The type of engine providing this data OBJ2 = tlpAgentVersion Obj2Value = The current version of the engine OBJ3 = tlpAgentMAC Obj3Value = The MAC address of the engine OBJ4 = tlpAgentSerialNum Obj4Value = The serial number of the web card [should be 0 on PC] --- if this trap is extended, place all static OIDs above this mark. all objects below --- the number of devices (tlpDeviceNumDevices) is explicit as per device for enumeration by --- the target receiver OBJ5 = tlpDeviceNumDevices Obj5Value = The number of devices attached --- The following objects will be replicated per each device: OBJ6 = The OID for an entry of tlpDeviceManufacturer, indexed by device Obj6Value = The device's manufacturer OBJ7 = The OID for an entry of tlpDeviceModel, indexed by device Obj7Value = The device's model name OBJ8 = The OID for an entry of tlpDeviceName, indexed by device Obj8Value = The device's display name OBJ9 = The OID for an entry of tlpDeviceLocation, indexed by device Obj9Value = The device's location OBJ10 = The OID for an entry of tlpDeviceRegion, indexed by device Obj10Value= The device's region OBJ11 = The OID for an entry of tlpDeviceProtocol, indexed by device Obj11Value= The device's protocol (display string format) ") mibBuilder.exportSymbols('TRIPPLITE-PRODUCTS', tlpPduAlarmLoadOff19=tlpPduAlarmLoadOff19, tlpDeviceLocation=tlpDeviceLocation, tlpPduIdentNumOutlets=tlpPduIdentNumOutlets, tlpAtsIdentEntry=tlpAtsIdentEntry, tlpCoolingAlarmAutoCoolingOn=tlpCoolingAlarmAutoCoolingOn, tlpAtsInputBadVoltageThreshold=tlpAtsInputBadVoltageThreshold, tlpSoftware=tlpSoftware, tlpAtsCircuitCurrentMax=tlpAtsCircuitCurrentMax, tlpUpsAlarmBusOverVoltage=tlpUpsAlarmBusOverVoltage, tlpUpsControlUpsOff=tlpUpsControlUpsOff, tlpUpsAlarmTempBad=tlpUpsAlarmTempBad, tlpUpsBatteryPackConfigCapacityUnits=tlpUpsBatteryPackConfigCapacityUnits, tlpUpsBatteryPackDetailEntry=tlpUpsBatteryPackDetailEntry, tlpPduOutletShedDelay=tlpPduOutletShedDelay, tlpUpsAlarmDepletedBattery=tlpUpsAlarmDepletedBattery, tlpPduOutletPhase=tlpPduOutletPhase, tlpAlarmTableRowRef=tlpAlarmTableRowRef, tlpPduDevicePowerOnDelay=tlpPduDevicePowerOnDelay, tlpAtsSupportsTable=tlpAtsSupportsTable, tlpEnvTemperatureTable=tlpEnvTemperatureTable, tlpAtsAlarmSource1Temperature=tlpAtsAlarmSource1Temperature, tlpUpsDevicePowerOnDelay=tlpUpsDevicePowerOnDelay, tlpUpsAlarmOutputCurrentChanged=tlpUpsAlarmOutputCurrentChanged, tlpAtsAlarmLoadOff37=tlpAtsAlarmLoadOff37, tlpAtsOutputActivePower=tlpAtsOutputActivePower, tlpUpsDeviceMainLoadState=tlpUpsDeviceMainLoadState, tlpPduOutputActivePower=tlpPduOutputActivePower, tlpUpsAlarmLoadOff39=tlpUpsAlarmLoadOff39, tlpEnvAlarmInputContact02=tlpEnvAlarmInputContact02, tlpAtsIdentNumOutletGroups=tlpAtsIdentNumOutletGroups, tlpAgentAttributesAutostart=tlpAgentAttributesAutostart, tlpAtsDisplayUnits=tlpAtsDisplayUnits, tlpAtsDeviceEntry=tlpAtsDeviceEntry, tlpCoolingAlarmCompressorFailure=tlpCoolingAlarmCompressorFailure, tlpUpsBypassLineCurrent=tlpUpsBypassLineCurrent, tlpUpsAlarmUpsOutputOff=tlpUpsAlarmUpsOutputOff, tlpUpsConfigOverLoadThreshold=tlpUpsConfigOverLoadThreshold, tlpAtsInputPhaseVoltageMax=tlpAtsInputPhaseVoltageMax, tlpUpsAlarmLoadLevelAboveThresholdPhase2=tlpUpsAlarmLoadLevelAboveThresholdPhase2, tlpPduControlTable=tlpPduControlTable, tlpUpsIdentNumPhases=tlpUpsIdentNumPhases, tlpAtsAlarmCircuitBreakerOpen04=tlpAtsAlarmCircuitBreakerOpen04, tlpUpsOutletGroupDescription=tlpUpsOutletGroupDescription, tlpDeviceName=tlpDeviceName, tlpSwitchControl=tlpSwitchControl, tlpAlarmUserDefined05=tlpAlarmUserDefined05, tlpAgentSnmpContactEntry=tlpAgentSnmpContactEntry, tlpCoolingDevice=tlpCoolingDevice, tlpAtsDeviceAggregatePowerFactor=tlpAtsDeviceAggregatePowerFactor, tlpUpsOutletCurrent=tlpUpsOutletCurrent, tlpPduInputNominalVoltage=tlpPduInputNominalVoltage, tlpUpsBatteryPackIdentModel=tlpUpsBatteryPackIdentModel, tlpAtsConfigVoltageRangeLimitsTable=tlpAtsConfigVoltageRangeLimitsTable, tlpAtsBreaker=tlpAtsBreaker, tlpPduDetail=tlpPduDetail, tlpPduControlPduReboot=tlpPduControlPduReboot, tlpAtsAlarmLoadOff16=tlpAtsAlarmLoadOff16, tlpPduSupportsOutletGroup=tlpPduSupportsOutletGroup, tlpPduOutletGroupCommand=tlpPduOutletGroupCommand, tlpAgentEmailContactEntry=tlpAgentEmailContactEntry, tlpEnvHumidityEntry=tlpEnvHumidityEntry, tlpEnvConfigTable=tlpEnvConfigTable, tlpAtsConfigSource2ReturnTime=tlpAtsConfigSource2ReturnTime, tlpAtsIdent=tlpAtsIdent, tlpCoolingAlarmAirFilterClogged=tlpCoolingAlarmAirFilterClogged, tlpCoolingAlarmAirFilterRunHoursViolation=tlpCoolingAlarmAirFilterRunHoursViolation, tlpUpsOutput=tlpUpsOutput, tlpAtsDeviceOutputPowerTotal=tlpAtsDeviceOutputPowerTotal, tlpPduInputHighTransferVoltageLowerBound=tlpPduInputHighTransferVoltageLowerBound, tlpUpsIdentTable=tlpUpsIdentTable, tlpUpsConfigBypassUpperLimitVoltage=tlpUpsConfigBypassUpperLimitVoltage, tlpPduInputEntry=tlpPduInputEntry, tlpAtsAlarmLoadOff10=tlpAtsAlarmLoadOff10, tlpDeviceTypes=tlpDeviceTypes, tlpPduDeviceAggregatePowerFactor=tlpPduDeviceAggregatePowerFactor, tlpAtsAlarmLoadOff25=tlpAtsAlarmLoadOff25, tlpUpsWatchdogTable=tlpUpsWatchdogTable, tlpEnvIdentTempSupported=tlpEnvIdentTempSupported, tlpPdu=tlpPdu, tlpEnvInputContactEntry=tlpEnvInputContactEntry, tlpAtsAlarmLoadOff32=tlpAtsAlarmLoadOff32, tlpUpsSupportsOutletGroup=tlpUpsSupportsOutletGroup, tlpUpsConfigOutputVoltage=tlpUpsConfigOutputVoltage, tlpUps=tlpUps, tlpUpsBypassLineVoltage=tlpUpsBypassLineVoltage, tlpAtsDeviceTemperatureC=tlpAtsDeviceTemperatureC, tlpPduOutletGroupEntry=tlpPduOutletGroupEntry, tlpDeviceIdentDateInstalled=tlpDeviceIdentDateInstalled, tlpUpsAlarmLoadOff40=tlpUpsAlarmLoadOff40, tlpAgentAlarms=tlpAgentAlarms, tlpAtsHeatsinkTemperatureF=tlpAtsHeatsinkTemperatureF, tlpPduDevicePhaseImbalance=tlpPduDevicePhaseImbalance, tlpPduCircuitPowerFactor=tlpPduCircuitPowerFactor, tlpAgentEmailContactIndex=tlpAgentEmailContactIndex, tlpUpsOutletName=tlpUpsOutletName, tlpPduOutputPowerFactor=tlpPduOutputPowerFactor, tlpUpsAlarmLoadOff13=tlpUpsAlarmLoadOff13, tlpPduOutletGroupIndex=tlpPduOutletGroupIndex, tlpPduOutputVoltage=tlpPduOutputVoltage, tlpAtsControl=tlpAtsControl, tlpEnvirosense=tlpEnvirosense, tlpUpsOutputNominalVoltage=tlpUpsOutputNominalVoltage, tlpUpsConfigAutoRampOnTransition=tlpUpsConfigAutoRampOnTransition, tlpUpsConfig=tlpUpsConfig, tlpSwitchDetail=tlpSwitchDetail, tlpAtsIdentTable=tlpAtsIdentTable, tlpAtsInputCurrentLimit=tlpAtsInputCurrentLimit, tlpAtsCircuitTotalCurrent=tlpAtsCircuitTotalCurrent, tlpAtsDisplayIntensity=tlpAtsDisplayIntensity, tlpAtsConfigThresholdTable=tlpAtsConfigThresholdTable, tlpAgentMAC=tlpAgentMAC, tlpPduAlarmLoadOff03=tlpPduAlarmLoadOff03, tlpAtsAlarmOutputBad=tlpAtsAlarmOutputBad, tlpPduBreaker=tlpPduBreaker, tlpUpsConfigAutoRestartLowVoltageCutoff=tlpUpsConfigAutoRestartLowVoltageCutoff, tlpAtsCircuitEntry=tlpAtsCircuitEntry, tlpAtsAlarmLoadOff11=tlpAtsAlarmLoadOff11, tlpPduControlPduOff=tlpPduControlPduOff, tlpAtsDetail=tlpAtsDetail, tlpPduOutlet=tlpPduOutlet, tlpUpsAlarmLoadOff03=tlpUpsAlarmLoadOff03, tlpPduAlarmLoadOff24=tlpPduAlarmLoadOff24, tlpUpsAlarmLoadOff27=tlpUpsAlarmLoadOff27, tlpPduInputTable=tlpPduInputTable, tlpUpsInputPhaseFrequency=tlpUpsInputPhaseFrequency, tlpAtsOutletEntry=tlpAtsOutletEntry, tlpPduAlarmLoadOff=tlpPduAlarmLoadOff, tlpCoolingAlarmDischargePressureHigh=tlpCoolingAlarmDischargePressureHigh, tlpPduBreakerEntry=tlpPduBreakerEntry, tlpUpsConfigThresholdEntry=tlpUpsConfigThresholdEntry, tlpAlarmControlDetail=tlpAlarmControlDetail, tlpAtsDeviceMainLoadControllable=tlpAtsDeviceMainLoadControllable, tlpUpsBatteryPackIdentManufacturer=tlpUpsBatteryPackIdentManufacturer, tlpEnvAlarms=tlpEnvAlarms, tlpPduDeviceTotalInputPowerRating=tlpPduDeviceTotalInputPowerRating, tlpAtsInputNominalVoltagePhaseToNeutral=tlpAtsInputNominalVoltagePhaseToNeutral, tlpUpsBatteryPackConfigDesignCapacity=tlpUpsBatteryPackConfigDesignCapacity, tlpNotifications=tlpNotifications, tlpAlarmUserDefined=tlpAlarmUserDefined, tlpAgentSnmpContacts=tlpAgentSnmpContacts, tlpDeviceManufacturer=tlpDeviceManufacturer, tlpUpsControlUpsReboot=tlpUpsControlUpsReboot, tlpAtsAlarmCircuitBreakerOpen05=tlpAtsAlarmCircuitBreakerOpen05, tlpUpsBypassLineIndex=tlpUpsBypassLineIndex, tlpPduHeatsinkEntry=tlpPduHeatsinkEntry, tlpUpsConfigLineSensitivity=tlpUpsConfigLineSensitivity, tlpAtsAlarmCurrentAboveThresholdA2=tlpAtsAlarmCurrentAboveThresholdA2, tlpAtsOutletTable=tlpAtsOutletTable, tlpAlarmsPresent=tlpAlarmsPresent, tlpAtsDeviceOutputCurrentPrecision=tlpAtsDeviceOutputCurrentPrecision, tlpAtsIdentNumBreakers=tlpAtsIdentNumBreakers, tlpUpsAlarmAwaitingPower=tlpUpsAlarmAwaitingPower, tlpUpsBatteryPackDetailTable=tlpUpsBatteryPackDetailTable, tlpAgentEmailContactRowStatus=tlpAgentEmailContactRowStatus, tlpEnvDetail=tlpEnvDetail, tlpEnvIdentEntry=tlpEnvIdentEntry, tlpCoolingAlarmDischargePressureSensorFault=tlpCoolingAlarmDischargePressureSensorFault, tlpAtsAlarmLoadOff13=tlpAtsAlarmLoadOff13, tlpPduAlarmInputBad=tlpPduAlarmInputBad, tlpCoolingAlarmSuctionTemperatureSensorFault=tlpCoolingAlarmSuctionTemperatureSensorFault, tlpPduSupportsEnergywise=tlpPduSupportsEnergywise, tlpPduDisplayAutoScroll=tlpPduDisplayAutoScroll, tlpAtsInputNominalVoltagePhaseToPhase=tlpAtsInputNominalVoltagePhaseToPhase, tlpPduAlarmLoadOff02=tlpPduAlarmLoadOff02, tlpUpsOutputSource=tlpUpsOutputSource, tlpPduAlarmLoadOff01=tlpPduAlarmLoadOff01, tlpUpsSupportsEntry=tlpUpsSupportsEntry, tlpUpsOutputLineEntry=tlpUpsOutputLineEntry, tlpUpsAlarmBypassBad=tlpUpsAlarmBypassBad, tlpPduOutletGroupName=tlpPduOutletGroupName, tlpPduOutputCurrent=tlpPduOutputCurrent, tlpAtsOutputSource=tlpAtsOutputSource, tlpEnvAlarmTemperatureBeyondLimits=tlpEnvAlarmTemperatureBeyondLimits, tlpAtsConfigThresholdEntry=tlpAtsConfigThresholdEntry, tlpCoolingAlarmEvaporatorFailure=tlpCoolingAlarmEvaporatorFailure, tlpEnvIdentNumEnvirosense=tlpEnvIdentNumEnvirosense, tlpUpsAlarmLoadOff15=tlpUpsAlarmLoadOff15, tlpAtsAlarmLoadOff28=tlpAtsAlarmLoadOff28, tlpAtsConfigVoltageRangeEntry=tlpAtsConfigVoltageRangeEntry, tlpPduOutletCurrent=tlpPduOutletCurrent, tlpAtsInputSourceInUse=tlpAtsInputSourceInUse, tlpCoolingAlarmSuctionPressureLowStartFailure=tlpCoolingAlarmSuctionPressureLowStartFailure, tlpPduHeatsink=tlpPduHeatsink, tlpUpsIdentNumUps=tlpUpsIdentNumUps, tlpUpsOutletCommand=tlpUpsOutletCommand, tlpUpsConfigEntry=tlpUpsConfigEntry, tlpPduInputPhaseVoltageMin=tlpPduInputPhaseVoltageMin, tlpAtsDisplayScheme=tlpAtsDisplayScheme, tlpUpsAlarmLoadOff21=tlpUpsAlarmLoadOff21, tlpDeviceIdentEntry=tlpDeviceIdentEntry, tlpUpsAlarmFanFailure=tlpUpsAlarmFanFailure, tlpAtsOutletShedAction=tlpAtsOutletShedAction, tlpPduSupportsRampShed=tlpPduSupportsRampShed, tlpUpsDeviceMainLoadControllable=tlpUpsDeviceMainLoadControllable, tlpEnvTemperatureF=tlpEnvTemperatureF, tlpUpsAlarmCurrentAboveThreshold2=tlpUpsAlarmCurrentAboveThreshold2, tlpUpsAlarmInverterSoftStartBad=tlpUpsAlarmInverterSoftStartBad, tlpAlarmControlDescr=tlpAlarmControlDescr, tlpAtsDisplayTable=tlpAtsDisplayTable, tlpAtsAlarmVoltage=tlpAtsAlarmVoltage, tlpUpsControlEntry=tlpUpsControlEntry, tlpUpsInputPhaseVoltage=tlpUpsInputPhaseVoltage, tlpAtsInputPhaseVoltageMin=tlpAtsInputPhaseVoltageMin, tlpPduOutletState=tlpPduOutletState, tlpPduControl=tlpPduControl, tlpPduOutletCircuit=tlpPduOutletCircuit, tlpAgentAttributesSNMPv3Enabled=tlpAgentAttributesSNMPv3Enabled, tlpPduHeatsinkTable=tlpPduHeatsinkTable, tlpAgentAttributes=tlpAgentAttributes, tlpAtsAlarmLoadOff40=tlpAtsAlarmLoadOff40, tlpUpsOutputFrequency=tlpUpsOutputFrequency, tlpUpsConfigLowBatteryThreshold=tlpUpsConfigLowBatteryThreshold, tlpCoolingDetail=tlpCoolingDetail, tlpPduInputNominalVoltagePhaseToPhase=tlpPduInputNominalVoltagePhaseToPhase, tlpPduCircuitCurrentMin=tlpPduCircuitCurrentMin, tlpAtsOutputTable=tlpAtsOutputTable, tlpAtsAlarmLoadOff01=tlpAtsAlarmLoadOff01, tlpPduControlRamp=tlpPduControlRamp, tlpCoolingAlarmReturnAirSensorFault=tlpCoolingAlarmReturnAirSensorFault, tlpCoolingAlarmStartupLinePressureImbalance=tlpCoolingAlarmStartupLinePressureImbalance, tlpPduDevice=tlpPduDevice, tlpRackTrackIdent=tlpRackTrackIdent, tlpPduCircuit=tlpPduCircuit, tlpAtsInputBadTransferVoltageLowerBound=tlpAtsInputBadTransferVoltageLowerBound, tlpAtsHeatsinkEntry=tlpAtsHeatsinkEntry, tlpDeviceType=tlpDeviceType, tlpAtsConfigSource2TransferSet=tlpAtsConfigSource2TransferSet, tlpAtsOutletShedDelay=tlpAtsOutletShedDelay, tlpAtsConfigOverVoltageThreshold=tlpAtsConfigOverVoltageThreshold, tlpAtsAlarmLoadOff04=tlpAtsAlarmLoadOff04, tlpUpsConfigThresholdTable=tlpUpsConfigThresholdTable, tlpDeviceStatus=tlpDeviceStatus, tlpUpsBatteryPackDetailLastReplaceDate=tlpUpsBatteryPackDetailLastReplaceDate, tlpUpsDeviceTestResultsStatus=tlpUpsDeviceTestResultsStatus, tlpAtsAlarmLoadOff15=tlpAtsAlarmLoadOff15, tlpUpsBypassTable=tlpUpsBypassTable, tlpUpsAlarmLoadOff08=tlpUpsAlarmLoadOff08, tlpUpsBypass=tlpUpsBypass, tlpAtsOutletGroup=tlpAtsOutletGroup, tlpCoolingAlarmCurrentLimit=tlpCoolingAlarmCurrentLimit, tlpUpsInputHighTransferVoltageUpperBound=tlpUpsInputHighTransferVoltageUpperBound, tlpKvmIdent=tlpKvmIdent, tlpAgentAttributesSupportsFTP=tlpAgentAttributesSupportsFTP, tlpUpsOutputLinePower=tlpUpsOutputLinePower, tlpAtsOutletGroupIndex=tlpAtsOutletGroupIndex, tlpPduIdentTable=tlpPduIdentTable, tlpUpsOutletVoltage=tlpUpsOutletVoltage, tlpUpsAlarmUpsOffAsRequested=tlpUpsAlarmUpsOffAsRequested, tlpAtsOutletIndex=tlpAtsOutletIndex, tlpAgentSnmpContactPrivPassword=tlpAgentSnmpContactPrivPassword, tlpPduOutputPhase=tlpPduOutputPhase, tlpEnvAlarmHumidityBeyondLimits=tlpEnvAlarmHumidityBeyondLimits, tlpAgentEmailContactTable=tlpAgentEmailContactTable, tlpUpsWatchdogEntry=tlpUpsWatchdogEntry) mibBuilder.exportSymbols('TRIPPLITE-PRODUCTS', tlpUpsAlarmOnBypass=tlpUpsAlarmOnBypass, tlpAtsConfigEntry=tlpAtsConfigEntry, tlpPduAlarmCircuitBreakerOpen04=tlpPduAlarmCircuitBreakerOpen04, tlpAtsCircuit=tlpAtsCircuit, tlpUpsOutputLineCurrent=tlpUpsOutputLineCurrent, tlpSwitch=tlpSwitch, tlpPduCircuitEntry=tlpPduCircuitEntry, tlpCoolingAlarmEvaporatorCoolingFailure=tlpCoolingAlarmEvaporatorCoolingFailure, tlpUpsInputNominalFrequency=tlpUpsInputNominalFrequency, tlpPduCircuitIndex=tlpPduCircuitIndex, tlpAtsSupportsRampShed=tlpAtsSupportsRampShed, tlpAtsOutletRampDelay=tlpAtsOutletRampDelay, tlpPduAlarmLoadOff37=tlpPduAlarmLoadOff37, tlpAtsAlarmCircuitBreakerOpen02=tlpAtsAlarmCircuitBreakerOpen02, tlpUpsBatteryPackConfigChemistry=tlpUpsBatteryPackConfigChemistry, tlpPduAlarmLoadOff30=tlpPduAlarmLoadOff30, tlpAtsAlarmLoadOff20=tlpAtsAlarmLoadOff20, tlpAtsOutputPhaseType=tlpAtsOutputPhaseType, tlpUpsAlarmOnBattery=tlpUpsAlarmOnBattery, tlpDeviceIdentTotalUptime=tlpDeviceIdentTotalUptime, tlpUpsAlarmInverterCircuitBad=tlpUpsAlarmInverterCircuitBad, tlpAtsIdentNumAts=tlpAtsIdentNumAts, tlpUpsIdent=tlpUpsIdent, tlpAtsCircuitCurrentLimit=tlpAtsCircuitCurrentLimit, tlpAgentSnmpContactIndex=tlpAgentSnmpContactIndex, tlpAtsDeviceMainLoadCommand=tlpAtsDeviceMainLoadCommand, tlpAtsInputBadTransferVoltageUpperBound=tlpAtsInputBadTransferVoltageUpperBound, tlpUpsBatteryPackConfigCellsPerBattery=tlpUpsBatteryPackConfigCellsPerBattery, tlpUpsInputEntry=tlpUpsInputEntry, tlpAgentAttributesSSHCLIPort=tlpAgentAttributesSSHCLIPort, tlpUpsIdentNumInputs=tlpUpsIdentNumInputs, tlpUpsAlarmOutputOffAsRequested=tlpUpsAlarmOutputOffAsRequested, tlpUpsDeviceTable=tlpUpsDeviceTable, tlpPduInputLowTransferVoltage=tlpPduInputLowTransferVoltage, tlpEnvInputContactIndex=tlpEnvInputContactIndex, tlpAtsConfigSourceBrownoutSetMaximum=tlpAtsConfigSourceBrownoutSetMaximum, tlpPduDisplayIntensity=tlpPduDisplayIntensity, tlpUpsBatteryPackDetailNextReplaceDate=tlpUpsBatteryPackDetailNextReplaceDate, tlpAtsInputPhaseVoltage=tlpAtsInputPhaseVoltage, tlpAtsConfigVoltageRangeLimitsEntry=tlpAtsConfigVoltageRangeLimitsEntry, tlpPduIdentEntry=tlpPduIdentEntry, tlpAlarmId=tlpAlarmId, tlpAtsIdentNumPhases=tlpAtsIdentNumPhases, tlpUpsDeviceEntry=tlpUpsDeviceEntry, tlpCoolingAlarmWaterLeak=tlpCoolingAlarmWaterLeak, tlpPduDeviceOutputCurrentPrecision=tlpPduDeviceOutputCurrentPrecision, tlpUpsAlarmLoadOff18=tlpUpsAlarmLoadOff18, tlpUpsAlarmLoadOff19=tlpUpsAlarmLoadOff19, tlpUpsConfigAutoRestartAfterShutdown=tlpUpsConfigAutoRestartAfterShutdown, tlpRackTrackAlarms=tlpRackTrackAlarms, tlpAtsAlarmLoadOff35=tlpAtsAlarmLoadOff35, tlpPduOutputTable=tlpPduOutputTable, tlpPduDisplayScheme=tlpPduDisplayScheme, tlpPduOutletBank=tlpPduOutletBank, tlpUpsBatteryPackConfigBatteriesPerString=tlpUpsBatteryPackConfigBatteriesPerString, tlpCoolingAlarmSupplyAirSensorFault=tlpCoolingAlarmSupplyAirSensorFault, tlpAtsAlarmLoadOff26=tlpAtsAlarmLoadOff26, tlpCoolingAlarmSupplyAirTempHigh=tlpCoolingAlarmSupplyAirTempHigh, tlpUpsInput=tlpUpsInput, tlpUpsBypassFrequency=tlpUpsBypassFrequency, tlpPduAlarmLoadsNotAllOn=tlpPduAlarmLoadsNotAllOn, tlpPduAlarmLoadOff32=tlpPduAlarmLoadOff32, tlpUpsConfigAudibleStatus=tlpUpsConfigAudibleStatus, tlpUpsOutletGroupCommand=tlpUpsOutletGroupCommand, tlpUpsBypassEntry=tlpUpsBypassEntry, tlpUpsDetail=tlpUpsDetail, tlpPduIdentNumPdu=tlpPduIdentNumPdu, tlpAtsInputBadTransferVoltage=tlpAtsInputBadTransferVoltage, tlpUpsBatteryPackDetailTemperatureC=tlpUpsBatteryPackDetailTemperatureC, tlpPduControlEntry=tlpPduControlEntry, tlpPduDeviceMainLoadCommand=tlpPduDeviceMainLoadCommand, tlpUpsAlarms=tlpUpsAlarms, tlpPduSupportsTable=tlpPduSupportsTable, tlpPduHeatsinkTemperatureC=tlpPduHeatsinkTemperatureC, tlpNotifySystemShutdown=tlpNotifySystemShutdown, tlpUpsAlarmInverterUnderVoltage=tlpUpsAlarmInverterUnderVoltage, tlpUpsOutletGroupIndex=tlpUpsOutletGroupIndex, tlpAtsConfigSource1ReturnTime=tlpAtsConfigSource1ReturnTime, tlpUpsBatteryPackIdentFirmware=tlpUpsBatteryPackIdentFirmware, tlpUpsOutletRampAction=tlpUpsOutletRampAction, tlpPduIdentNumCircuits=tlpPduIdentNumCircuits, tlpAtsConfigAutoRampOnTransition=tlpAtsConfigAutoRampOnTransition, tlpCoolingIdentNumCooling=tlpCoolingIdentNumCooling, tlpAgentContacts=tlpAgentContacts, tlpUpsSupportsEnergywise=tlpUpsSupportsEnergywise, tlpAgentAttributesAutostartHTTP=tlpAgentAttributesAutostartHTTP, tlpUpsSupportsTable=tlpUpsSupportsTable, tlpUpsInputPhaseVoltageMin=tlpUpsInputPhaseVoltageMin, tlpUpsWatchdogSecsBeforeReboot=tlpUpsWatchdogSecsBeforeReboot, tlpAgentEmailContactName=tlpAgentEmailContactName, tlpEnvTemperatureC=tlpEnvTemperatureC, tlpAgentAttributesSNMPTrapPort=tlpAgentAttributesSNMPTrapPort, tlpAtsAlarmLoadOff21=tlpAtsAlarmLoadOff21, tlpEnvOutputContactIndex=tlpEnvOutputContactIndex, tlpEnvIdentHumiditySupported=tlpEnvIdentHumiditySupported, tlpUpsAlarmShutdownImminent=tlpUpsAlarmShutdownImminent, tlpAtsAlarms=tlpAtsAlarms, tlpPduDeviceTable=tlpPduDeviceTable, tlpAtsOutputCurrentMax=tlpAtsOutputCurrentMax, tlpUpsConfigAutoBatteryTest=tlpUpsConfigAutoBatteryTest, tlpAtsAlarmLoadOff12=tlpAtsAlarmLoadOff12, tlpEnvAlarmOutputContact01=tlpEnvAlarmOutputContact01, tlpPduAlarmLoadOff29=tlpPduAlarmLoadOff29, tlpUpsInputPhaseCurrent=tlpUpsInputPhaseCurrent, tlpEnvTemperatureLowLimit=tlpEnvTemperatureLowLimit, tlpAtsCircuitPhase=tlpAtsCircuitPhase, tlpAtsConfigHighVoltageTransfer=tlpAtsConfigHighVoltageTransfer, tlpPduAlarmLoadOff22=tlpPduAlarmLoadOff22, tlpAts=tlpAts, tlpPduAlarms=tlpPduAlarms, tlpAgentAttributesAutostartFTP=tlpAgentAttributesAutostartFTP, tlpSwitchIdent=tlpSwitchIdent, tlpUpsAlarmShutdownPending=tlpUpsAlarmShutdownPending, tlpUpsEstimatedChargeRemaining=tlpUpsEstimatedChargeRemaining, tlpUpsInputPhaseEntry=tlpUpsInputPhaseEntry, tlpUpsInputPhaseIndex=tlpUpsInputPhaseIndex, tlpAtsOutletName=tlpAtsOutletName, tlpUpsInputHighTransferVoltageLowerBound=tlpUpsInputHighTransferVoltageLowerBound, tlpUpsBatterySummaryTable=tlpUpsBatterySummaryTable, tlpAtsConfigSource1BrownoutSet=tlpAtsConfigSource1BrownoutSet, tlpUpsOutputTable=tlpUpsOutputTable, tlpPduIdentNumInputs=tlpPduIdentNumInputs, tlpEnvInputContactTable=tlpEnvInputContactTable, tlpPduAlarmLoadOff12=tlpPduAlarmLoadOff12, tlpPduAlarmCircuitBreakerOpen03=tlpPduAlarmCircuitBreakerOpen03, tlpAgentAttributesSNMPPort=tlpAgentAttributesSNMPPort, tlpUpsAlarmLoadOff35=tlpUpsAlarmLoadOff35, tlpPduDeviceMainLoadState=tlpPduDeviceMainLoadState, tlpAgentAttributesAutostartTelnetMenu=tlpAgentAttributesAutostartTelnetMenu, tlpAlarmUserDefined01=tlpAlarmUserDefined01, tlpUpsControlShed=tlpUpsControlShed, tlpAtsControlAtsOn=tlpAtsControlAtsOn, tlpUpsBatteryPackDetailCycleCount=tlpUpsBatteryPackDetailCycleCount, tlpPduInputHighTransferVoltage=tlpPduInputHighTransferVoltage, tlpAlarmEntry=tlpAlarmEntry, tlpPduAlarmCircuitBreakerOpen=tlpPduAlarmCircuitBreakerOpen, tlpUpsOutputLinePercentLoad=tlpUpsOutputLinePercentLoad, tlpUpsDevice=tlpUpsDevice, tlpPduAlarmCurrentAboveThreshold2=tlpPduAlarmCurrentAboveThreshold2, tlpUpsAlarmLoadOff10=tlpUpsAlarmLoadOff10, tlpEnvInputContactName=tlpEnvInputContactName, tlpUpsOutletGroupName=tlpUpsOutletGroupName, tlpAtsConfigOverTemperatureThreshold=tlpAtsConfigOverTemperatureThreshold, tlpAtsAlarmLoadsNotAllOn=tlpAtsAlarmLoadsNotAllOn, tlpPduAlarmLoadOff23=tlpPduAlarmLoadOff23, tlpAtsAlarmLoadOff34=tlpAtsAlarmLoadOff34, tlpAtsOutputCurrent=tlpAtsOutputCurrent, tlpCoolingAlarmDischargePressurePersistentHigh=tlpCoolingAlarmDischargePressurePersistentHigh, tlpRackTrackDevice=tlpRackTrackDevice, tlpEnvTemperatureInAlarm=tlpEnvTemperatureInAlarm, tlpAtsAlarmLoadOff31=tlpAtsAlarmLoadOff31, tlpUpsOutletShedAction=tlpUpsOutletShedAction, tlpAtsAlarmLoadOff29=tlpAtsAlarmLoadOff29, tlpAgentSnmpContactSnmpVersion=tlpAgentSnmpContactSnmpVersion, tlpEnvTemperatureHighLimit=tlpEnvTemperatureHighLimit, tlpPduIdentNumPhases=tlpPduIdentNumPhases, tlpAlarmUserDefined02=tlpAlarmUserDefined02, tlpAtsAlarmCurrentAboveThresholdB2=tlpAtsAlarmCurrentAboveThresholdB2, tlpAtsAlarmLoadOff27=tlpAtsAlarmLoadOff27, tlpPduIdentNumHeatsinks=tlpPduIdentNumHeatsinks, tlpUpsAlarmLoadLevelAboveThresholdPhase3=tlpUpsAlarmLoadLevelAboveThresholdPhase3, tlpUpsBatteryPackConfigMaxCellVoltage=tlpUpsBatteryPackConfigMaxCellVoltage, tlpAtsAlarmOutage=tlpAtsAlarmOutage, tlpPduHeatsinkTemperatureF=tlpPduHeatsinkTemperatureF, tlpUpsAlarmLoadOff33=tlpUpsAlarmLoadOff33, tlpAtsIdentNumHeatsinks=tlpAtsIdentNumHeatsinks, tlpAtsConfigSourceBrownoutSetMinimum=tlpAtsConfigSourceBrownoutSetMinimum, tlpCoolingAlarmCondenserOutletAirSensorFault=tlpCoolingAlarmCondenserOutletAirSensorFault, tlpPduInputPhaseVoltage=tlpPduInputPhaseVoltage, tlpAtsDevicePowerOnDelay=tlpAtsDevicePowerOnDelay, tlpAgentAttributesTelnetCLIPort=tlpAgentAttributesTelnetCLIPort, tlpUpsBatteryPackConfigLocation=tlpUpsBatteryPackConfigLocation, tlpUpsAlarmLoadLevelAboveThresholdPhase1=tlpUpsAlarmLoadLevelAboveThresholdPhase1, tlpUpsAlarmOutputOverload=tlpUpsAlarmOutputOverload, tlpPduAlarmCurrentAboveThreshold=tlpPduAlarmCurrentAboveThreshold, tlpUpsAlarmBusVoltageUnbalanced=tlpUpsAlarmBusVoltageUnbalanced, tlpUpsInputTable=tlpUpsInputTable, tlpPduOutletGroupState=tlpPduOutletGroupState, tlpUpsIdentEntry=tlpUpsIdentEntry, tlpAgentVersion=tlpAgentVersion, tlpUpsAlarmLoadOff37=tlpUpsAlarmLoadOff37, tlpAlarmControlTable=tlpAlarmControlTable, tlpUpsAlarmLoadOff02=tlpUpsAlarmLoadOff02, tlpPduAlarmOutputBad=tlpPduAlarmOutputBad, tlpCoolingAlarmPressureGaugeFailure=tlpCoolingAlarmPressureGaugeFailure, tlpCoolingAlarms=tlpCoolingAlarms, tlpDeviceModel=tlpDeviceModel, tlpPduDisplayEntry=tlpPduDisplayEntry, tlpAtsDisplayAutoScroll=tlpAtsDisplayAutoScroll, tlpPduCircuitUtilization=tlpPduCircuitUtilization, tlpAgentAttributesSnmp=tlpAgentAttributesSnmp, tlpPduAlarmLoadOff04=tlpPduAlarmLoadOff04, tlpAtsAlarmSource1Outage=tlpAtsAlarmSource1Outage, tlpUpsOutputLineIndex=tlpUpsOutputLineIndex, tlpAtsControlRamp=tlpAtsControlRamp, tlpAgentAttributesTelnetMenuPort=tlpAgentAttributesTelnetMenuPort, tlpDevice=tlpDevice, tlpPduDeviceOutputPowerTotal=tlpPduDeviceOutputPowerTotal, tlpUpsAlarmFuseFailure=tlpUpsAlarmFuseFailure, tlpPduAlarmCurrentAboveThreshold3=tlpPduAlarmCurrentAboveThreshold3, tlpAtsConfigLowVoltageReset=tlpAtsConfigLowVoltageReset, tlpAtsInput=tlpAtsInput, tlpUpsAlarmBatteryUnderVoltage=tlpUpsAlarmBatteryUnderVoltage, tlpAtsIdentNumOutlets=tlpAtsIdentNumOutlets, tlpUpsBattery=tlpUpsBattery, tlpAtsConfigHighVoltageReset=tlpAtsConfigHighVoltageReset, tlpAgentAttributesSupports=tlpAgentAttributesSupports, tlpUpsBatteryPackConfigCellCapacity=tlpUpsBatteryPackConfigCellCapacity, tlpAgentAttributesSupportsSNMPTrap=tlpAgentAttributesSupportsSNMPTrap, tlpPduAlarmLoadOff08=tlpPduAlarmLoadOff08, tlpAtsControlAtsReboot=tlpAtsControlAtsReboot, tlpDeviceIdentTable=tlpDeviceIdentTable, tlpAlarmUserDefined06=tlpAlarmUserDefined06, tlpUpsDeviceTemperatureC=tlpUpsDeviceTemperatureC, tlpPduAlarmCircuitBreakerOpen01=tlpPduAlarmCircuitBreakerOpen01, tlpAtsOutletControllable=tlpAtsOutletControllable, tlpPduAlarmLoadOff39=tlpPduAlarmLoadOff39, tlpPduOutletGroupDescription=tlpPduOutletGroupDescription, tlpUpsAlarmLoadLevelAboveThresholdTotal=tlpUpsAlarmLoadLevelAboveThresholdTotal, tlpAtsOutletCircuit=tlpAtsOutletCircuit, tlpEnvHumidityLowLimit=tlpEnvHumidityLowLimit, tlpAgentAttributesSupportsSSHMenu=tlpAgentAttributesSupportsSSHMenu, tlpAtsCircuitIndex=tlpAtsCircuitIndex, tlpUpsOutletRampDelay=tlpUpsOutletRampDelay, tlpAgentAttributesSNMPv2cEnabled=tlpAgentAttributesSNMPv2cEnabled, tlpPduAlarmLoadOff20=tlpPduAlarmLoadOff20, tlpAtsOutletGroupRowStatus=tlpAtsOutletGroupRowStatus, tlpAgentSnmpContactSecurityName=tlpAgentSnmpContactSecurityName, tlpCoolingAlarmInverterCommunicationsFault=tlpCoolingAlarmInverterCommunicationsFault, tlpUpsOutputLineTable=tlpUpsOutputLineTable, tlpUpsOutletGroupState=tlpUpsOutletGroupState, tlpAtsControlTable=tlpAtsControlTable, tlpUpsAlarmInputBad=tlpUpsAlarmInputBad, tlpUpsOutletDescription=tlpUpsOutletDescription, tlpUpsControlBypass=tlpUpsControlBypass, tlpAtsOutputPowerFactor=tlpAtsOutputPowerFactor, tlpAtsAlarmCircuitBreakerOpen=tlpAtsAlarmCircuitBreakerOpen, tlpUpsBatteryPackIdentSerialNum=tlpUpsBatteryPackIdentSerialNum, tlpAtsInputSourceAvailability=tlpAtsInputSourceAvailability, tlpUpsInputLowTransferVoltage=tlpUpsInputLowTransferVoltage, tlpEnvAlarmOutputContact04=tlpEnvAlarmOutputContact04, tlpAtsInputHighTransferVoltageLowerBound=tlpAtsInputHighTransferVoltageLowerBound, tlpAtsOutletCurrent=tlpAtsOutletCurrent, tlpUpsBatteryStatus=tlpUpsBatteryStatus, tlpUpsInputPhasePower=tlpUpsInputPhasePower, tlpUpsOutletGroup=tlpUpsOutletGroup, tlpAgentAttributesHTTPSPort=tlpAgentAttributesHTTPSPort, tlpUpsAlarmBatteryBad=tlpUpsAlarmBatteryBad, tlpEnvInputContactCurrentState=tlpEnvInputContactCurrentState, tlpUpsAlarmLoadOff11=tlpUpsAlarmLoadOff11, tlpUpsAlarmLoadOff30=tlpUpsAlarmLoadOff30, tlpUpsAlarmLoadOff29=tlpUpsAlarmLoadOff29, tlpUpsConfigInputFrequency=tlpUpsConfigInputFrequency, tlpAtsAlarmLoadOff02=tlpAtsAlarmLoadOff02) mibBuilder.exportSymbols('TRIPPLITE-PRODUCTS', tlpUpsAlarmBatteryOverVoltage=tlpUpsAlarmBatteryOverVoltage, tlpAtsOutletGroupState=tlpAtsOutletGroupState, tlpAtsHeatsinkTable=tlpAtsHeatsinkTable, tlpUpsAlarmGeneralFault=tlpUpsAlarmGeneralFault, tlpUpsAlarmLoadOff=tlpUpsAlarmLoadOff, tlpAtsAlarmCurrentAboveThresholdB1=tlpAtsAlarmCurrentAboveThresholdB1, tlpUpsConfigBatteryAgeThreshold=tlpUpsConfigBatteryAgeThreshold, tlpAtsDeviceGeneralFault=tlpAtsDeviceGeneralFault, tlpPduHeatsinkIndex=tlpPduHeatsinkIndex, tlpUpsBatteryPackConfigTable=tlpUpsBatteryPackConfigTable, tlpAgentSnmpContactRowStatus=tlpAgentSnmpContactRowStatus, tlpUpsInputPhaseVoltageMax=tlpUpsInputPhaseVoltageMax, tlpUpsAlarmLoadsNotAllOn=tlpUpsAlarmLoadsNotAllOn, tlpAtsOutletDescription=tlpAtsOutletDescription, tlpAtsAlarmLoadOff33=tlpAtsAlarmLoadOff33, tlpAgentEmailContactAddress=tlpAgentEmailContactAddress, tlpCoolingAlarmCondensatePumpFault=tlpCoolingAlarmCondensatePumpFault, tlpPduAlarmLoadOff35=tlpPduAlarmLoadOff35, tlpAtsConfigLowVoltageTransfer=tlpAtsConfigLowVoltageTransfer, tlpPduInputPhasePhaseType=tlpPduInputPhasePhaseType, tlpAgentType=tlpAgentType, tlpAgentUuid=tlpAgentUuid, tlpUpsDeviceTemperatureF=tlpUpsDeviceTemperatureF, tlpUpsBatteryPackConfigMinCellVoltage=tlpUpsBatteryPackConfigMinCellVoltage, tlpUpsOutputLineFrequency=tlpUpsOutputLineFrequency, tlpAgentDriverVersion=tlpAgentDriverVersion, tlpPduAlarmLoadOff33=tlpPduAlarmLoadOff33, tlpUpsSupportsOutletCurrentPower=tlpUpsSupportsOutletCurrentPower, tlpAgentAttributesAutostartSSHMenu=tlpAgentAttributesAutostartSSHMenu, tlpPduOutletGroup=tlpPduOutletGroup, tlpAtsConfigOverLoadThreshold=tlpAtsConfigOverLoadThreshold, tlpPduInputPhaseCurrent=tlpPduInputPhaseCurrent, tlpUpsConfigAutoRestartTable=tlpUpsConfigAutoRestartTable, tlpAlarmAcknowledged=tlpAlarmAcknowledged, tlpPduOutletShedAction=tlpPduOutletShedAction, tlpUpsAlarmCurrentAboveThreshold=tlpUpsAlarmCurrentAboveThreshold, tlpPduOutletRampDelay=tlpPduOutletRampDelay, tlpAtsAlarmLoadOff07=tlpAtsAlarmLoadOff07, tlpEnvIdentTable=tlpEnvIdentTable, tlpCoolingIdent=tlpCoolingIdent, tlpDeviceIndex=tlpDeviceIndex, tlpEnvHumidityInAlarm=tlpEnvHumidityInAlarm, tlpEnvOutputContactTable=tlpEnvOutputContactTable, tlpUpsWatchdogSupported=tlpUpsWatchdogSupported, tlpUpsWatchdog=tlpUpsWatchdog, tlpDeviceIdentCommPortName=tlpDeviceIdentCommPortName, tlpAtsAlarmSource2Temperature=tlpAtsAlarmSource2Temperature, tlpUpsBatteryDetailCapacity=tlpUpsBatteryDetailCapacity, tlpAtsOutletGroupEntry=tlpAtsOutletGroupEntry, tlpUpsAlarmLoadOff12=tlpUpsAlarmLoadOff12, tlpPduConfigTable=tlpPduConfigTable, tlpAgentAttributesSSHMenuPort=tlpAgentAttributesSSHMenuPort, tlpAtsAlarmLoadOff14=tlpAtsAlarmLoadOff14, tlpCoolingAlarmSuctionPressurePersistentLow=tlpCoolingAlarmSuctionPressurePersistentLow, tlpPduOutputEntry=tlpPduOutputEntry, tlpDeviceTable=tlpDeviceTable, tlpAtsAlarmLoadOff23=tlpAtsAlarmLoadOff23, tlpPduIdent=tlpPduIdent, tlpRackTrackControl=tlpRackTrackControl, tlpUpsInputPhaseTable=tlpUpsInputPhaseTable, tlpKvmIdentNumKvm=tlpKvmIdentNumKvm, tlpEnvAlarmInputContact01=tlpEnvAlarmInputContact01, tlpPduCircuitTable=tlpPduCircuitTable, tlpAtsOutletRampAction=tlpAtsOutletRampAction, tlpAtsCircuitInputVoltage=tlpAtsCircuitInputVoltage, tlpAtsInputHighTransferVoltage=tlpAtsInputHighTransferVoltage, tlpAgentAttributesHTTPPort=tlpAgentAttributesHTTPPort, tlpPduBreakerStatus=tlpPduBreakerStatus, tlpPduInput=tlpPduInput, tlpAgentNumEmailContacts=tlpAgentNumEmailContacts, tlpAtsDisplayOrientation=tlpAtsDisplayOrientation, tlpPduAlarmLoadOff06=tlpPduAlarmLoadOff06, tlpUpsOutputEntry=tlpUpsOutputEntry, tlpPduOutletEntry=tlpPduOutletEntry, tlpUpsBatteryRunTimeRemaining=tlpUpsBatteryRunTimeRemaining, tlpPduOutputCurrentMin=tlpPduOutputCurrentMin, tlpPduOutletGroupRowStatus=tlpPduOutletGroupRowStatus, tlpAtsOutletPhase=tlpAtsOutletPhase, tlpUpsAlarmBusUnderVoltage=tlpUpsAlarmBusUnderVoltage, tlpUpsConfigOutputFrequency=tlpUpsConfigOutputFrequency, tlpPduAlarmOutputOff=tlpPduAlarmOutputOff, tlpAtsAlarmSource2OverVoltage=tlpAtsAlarmSource2OverVoltage, tlpUpsControlUpsOn=tlpUpsControlUpsOn, tlpAlarmControlSeverity=tlpAlarmControlSeverity, tlpCoolingAlarmPowerButtonPressed=tlpCoolingAlarmPowerButtonPressed, tlpPduCircuitCurrentMax=tlpPduCircuitCurrentMax, tlpUpsOutletGroupEntry=tlpUpsOutletGroupEntry, tlpPduOutput=tlpPduOutput, tlpDeviceIdentCurrentUptime=tlpDeviceIdentCurrentUptime, tlpUpsAlarmEPOActive=tlpUpsAlarmEPOActive, tlpPduOutletControllable=tlpPduOutletControllable, tlpKvmDevice=tlpKvmDevice, tlpDeviceIdentCommPortType=tlpDeviceIdentCommPortType, tlpPduInputNominalVoltagePhaseToNeutral=tlpPduInputNominalVoltagePhaseToNeutral, tlpNotify=tlpNotify, tlpUpsAlarmLoadOff06=tlpUpsAlarmLoadOff06, tlpPduInputLowTransferVoltageUpperBound=tlpPduInputLowTransferVoltageUpperBound, tlpAtsInputSourceTransitionCount=tlpAtsInputSourceTransitionCount, tlpPduOutletGroupTable=tlpPduOutletGroupTable, tlpUpsBatteryDetailTable=tlpUpsBatteryDetailTable, tlpUpsOutletEntry=tlpUpsOutletEntry, tlpAtsConfigSourceSelect=tlpAtsConfigSourceSelect, tlpUpsOutlet=tlpUpsOutlet, tlpPduCircuitPhase=tlpPduCircuitPhase, tlpAtsConfigSource1TransferReset=tlpAtsConfigSource1TransferReset, tlpPduAlarmCircuitBreakerOpen02=tlpPduAlarmCircuitBreakerOpen02, tlpEnvAlarmOutputContact03=tlpEnvAlarmOutputContact03, tlpPduOutputPhaseType=tlpPduOutputPhaseType, tlpAlarmUserDefined08=tlpAlarmUserDefined08, tlpEnvHumidityHumidity=tlpEnvHumidityHumidity, tlpAtsOutputVoltage=tlpAtsOutputVoltage, tlpPduDeviceMainLoadControllable=tlpPduDeviceMainLoadControllable, tlpAtsHeatsinkTemperatureC=tlpAtsHeatsinkTemperatureC, tlpAtsInputPhaseCurrent=tlpAtsInputPhaseCurrent, tlpPduIdentNumOutputs=tlpPduIdentNumOutputs, tlpUpsAlarmLoadOff24=tlpUpsAlarmLoadOff24, tlpPduAlarmLoadOff05=tlpPduAlarmLoadOff05, tlpDeviceIdentHardwareVersion=tlpDeviceIdentHardwareVersion, tlpCoolingAlarmFanOverCurrent=tlpCoolingAlarmFanOverCurrent, tlpPduOutletDescription=tlpPduOutletDescription, tlpEnvIdent=tlpEnvIdent, tlpCoolingAlarmCondenserInletAirSensorFault=tlpCoolingAlarmCondenserInletAirSensorFault, tlpUpsInputHighTransferVoltage=tlpUpsInputHighTransferVoltage, tlpAtsControlEntry=tlpAtsControlEntry, tlpUpsControlSelfTest=tlpUpsControlSelfTest, tlpUpsBatteryPackIdentIndex=tlpUpsBatteryPackIdentIndex, tlpPduControlPduOn=tlpPduControlPduOn, tlpEnvNumOutputContacts=tlpEnvNumOutputContacts, tlpAtsControlAtsOff=tlpAtsControlAtsOff, tlpAgentSnmpContactPort=tlpAgentSnmpContactPort, tlpPduHeatsinkStatus=tlpPduHeatsinkStatus, tlpPduDisplayTable=tlpPduDisplayTable, tlpPduOutputSource=tlpPduOutputSource, tlpAtsHeatsinkIndex=tlpAtsHeatsinkIndex, tlpAgentSnmpContactName=tlpAgentSnmpContactName, tlpUpsBatteryPackDetailTemperatureF=tlpUpsBatteryPackDetailTemperatureF, tlpUpsAlarmLoadOff25=tlpUpsAlarmLoadOff25, tlpUpsConfigAutoRestartDelayedWakeup=tlpUpsConfigAutoRestartDelayedWakeup, tlpPduCircuitTotalCurrent=tlpPduCircuitTotalCurrent, tlpAgentConfig=tlpAgentConfig, tlpUpsConfigEconomicMode=tlpUpsConfigEconomicMode, tlpAtsInputEntry=tlpAtsInputEntry, tlpUpsAlarmLoadOff26=tlpUpsAlarmLoadOff26, tlpAtsAlarmLoadOff24=tlpAtsAlarmLoadOff24, tlpPduInputPhaseEntry=tlpPduInputPhaseEntry, tlpAgentIdent=tlpAgentIdent, tlpCoolingAlarmLowRefrigerantStartupFault=tlpCoolingAlarmLowRefrigerantStartupFault, tlpSwitchConfig=tlpSwitchConfig, tlpSwitchDevice=tlpSwitchDevice, tlpUpsBatteryPackIdentSKU=tlpUpsBatteryPackIdentSKU, tlpPduDisplayUnits=tlpPduDisplayUnits, tlpUpsConfigLowBatteryTime=tlpUpsConfigLowBatteryTime, tlpUpsIdentNumBypass=tlpUpsIdentNumBypass, tlpUpsControlRamp=tlpUpsControlRamp, tlpAtsCircuitUtilization=tlpAtsCircuitUtilization, tlpAgentAttributesAutostartSSHCLI=tlpAgentAttributesAutostartSSHCLI, tlpUpsAlarmExternalNonSmartBatteryAgeAboveThreshold=tlpUpsAlarmExternalNonSmartBatteryAgeAboveThreshold, tlpRackTrackConfig=tlpRackTrackConfig, tlpPduAlarmLoadOff09=tlpPduAlarmLoadOff09, tlpAtsAlarmOutputOff=tlpAtsAlarmOutputOff, tlpEnvInputContactNormalState=tlpEnvInputContactNormalState, tlpUpsOutletState=tlpUpsOutletState, tlpHardware=tlpHardware, tlpAtsConfigSourceTransferSetMaximum=tlpAtsConfigSourceTransferSetMaximum, tlpEnvAlarmOutputContact=tlpEnvAlarmOutputContact, tlpUpsAlarmCurrentAboveThreshold1=tlpUpsAlarmCurrentAboveThreshold1, tlpAtsAlarmOutputOverload=tlpAtsAlarmOutputOverload, tlpUpsAlarmSiteWiringFault=tlpUpsAlarmSiteWiringFault, tlpCoolingAlarmEvaporatorFreezeUp=tlpCoolingAlarmEvaporatorFreezeUp, tlpDeviceNumDevices=tlpDeviceNumDevices, tlpPduAlarmLoadOff26=tlpPduAlarmLoadOff26, tlpUpsAlarmLoadOff32=tlpUpsAlarmLoadOff32, tlpAtsAlarmSource2InvalidFrequency=tlpAtsAlarmSource2InvalidFrequency, tlpKvmAlarms=tlpKvmAlarms, tlpUpsOutletIndex=tlpUpsOutletIndex, tlpAtsConfigTable=tlpAtsConfigTable, tlpAgentAttributesSupportsTelnetCLI=tlpAgentAttributesSupportsTelnetCLI, tlpCoolingAlarmEvaporatorTemperatureSensorFault=tlpCoolingAlarmEvaporatorTemperatureSensorFault, tlpUpsConfigFaultAction=tlpUpsConfigFaultAction, tlpUpsBypassLineEntry=tlpUpsBypassLineEntry, tlpPduConfig=tlpPduConfig, tlpEnvTemperatureEntry=tlpEnvTemperatureEntry, tlpAgentAttributesSupportsTelnetMenu=tlpAgentAttributesSupportsTelnetMenu, tlpAlarmType=tlpAlarmType, tlpPduIdentNumBreakers=tlpPduIdentNumBreakers, tlpAlarms=tlpAlarms, tlpPduCircuitInputVoltage=tlpPduCircuitInputVoltage, tlpAgentSerialNum=tlpAgentSerialNum, tlpPduAlarmLoadOff31=tlpPduAlarmLoadOff31, tlpAtsAlarmOverVoltage=tlpAtsAlarmOverVoltage, tlpAtsOutletCommand=tlpAtsOutletCommand, tlpNotificationsAlarmEntryRemoved=tlpNotificationsAlarmEntryRemoved, tlpAlarmDescr=tlpAlarmDescr, tlpAtsConfig=tlpAtsConfig, tlpAlarmControlIndex=tlpAlarmControlIndex, tlpAtsDisplayEntry=tlpAtsDisplayEntry, tlpPduBreakerTable=tlpPduBreakerTable, tlpAtsCircuitPowerFactor=tlpAtsCircuitPowerFactor, tlpAtsCircuitTable=tlpAtsCircuitTable, tlpCoolingControl=tlpCoolingControl, tlpAtsInputPhaseType=tlpAtsInputPhaseType, tlpDeviceIdentProtocol=tlpDeviceIdentProtocol, tlpAtsAlarmSystemTemperature=tlpAtsAlarmSystemTemperature, tlpAtsAlarmLoadOff09=tlpAtsAlarmLoadOff09, tlpEnvHumidityTable=tlpEnvHumidityTable, tlpAtsOutletState=tlpAtsOutletState, tlpAtsAlarmCurrentAboveThresholdA1=tlpAtsAlarmCurrentAboveThresholdA1, tlpAgentAttributesFTPPort=tlpAgentAttributesFTPPort, tlpUpsAlarmLoadOff07=tlpUpsAlarmLoadOff07, tlpPduAlarmCurrentAboveThreshold1=tlpPduAlarmCurrentAboveThreshold1, tlpUpsConfigAutoRestartInverterShutdown=tlpUpsConfigAutoRestartInverterShutdown, tlpUpsConfigAutoRestartOverTemperature=tlpUpsConfigAutoRestartOverTemperature, tlpAtsInputTable=tlpAtsInputTable, tlpSwitchIdentNumSwitch=tlpSwitchIdentNumSwitch, tlpAtsAlarmLoadOff39=tlpAtsAlarmLoadOff39, tlpAtsOutletVoltage=tlpAtsOutletVoltage, tlpPduControlShed=tlpPduControlShed, tlpAtsAlarmTemperature=tlpAtsAlarmTemperature, tlpUpsAlarmDiagnosticTestFailed=tlpUpsAlarmDiagnosticTestFailed, tlpDeviceRegion=tlpDeviceRegion, tlpAlarmState=tlpAlarmState, tlpUpsAlarmLoadOff17=tlpUpsAlarmLoadOff17, tlpEnvOutputContactCurrentState=tlpEnvOutputContactCurrentState, tlpPduOutletCommand=tlpPduOutletCommand, tlpAtsDeviceMainLoadState=tlpAtsDeviceMainLoadState, tlpPduInputPhaseFrequency=tlpPduInputPhaseFrequency, tlpUpsAlarmLoadOff20=tlpUpsAlarmLoadOff20, tlpAgentAttributesAutostartTelnetCLI=tlpAgentAttributesAutostartTelnetCLI, tlpUpsConfigBypassUpperLimitPercent=tlpUpsConfigBypassUpperLimitPercent, tlpEnvAlarmInputContact03=tlpEnvAlarmInputContact03, tlpUpsAlarmInverterOverVoltage=tlpUpsAlarmInverterOverVoltage, tlpUpsBypassLineTable=tlpUpsBypassLineTable, tlpUpsOutletGroupRowStatus=tlpUpsOutletGroupRowStatus, tlpAtsAlarmLoadOff30=tlpAtsAlarmLoadOff30, tlpEnvConfig=tlpEnvConfig, tlpKvmControl=tlpKvmControl, tlpUpsAlarmLoadOff01=tlpUpsAlarmLoadOff01, tlpAtsSupportsEntry=tlpAtsSupportsEntry, tlpAtsSupportsOutletCurrentPower=tlpAtsSupportsOutletCurrentPower, tlpPduAlarmLoadOff07=tlpPduAlarmLoadOff07, tlpAtsControlShed=tlpAtsControlShed, tlpUpsOutputLineVoltage=tlpUpsOutputLineVoltage, tlpPduInputHighTransferVoltageUpperBound=tlpPduInputHighTransferVoltageUpperBound, tlpUpsConfigOffMode=tlpUpsConfigOffMode, tlpPduOutletPower=tlpPduOutletPower, tlpAlarmsWellKnown=tlpAlarmsWellKnown, tlpUpsOutletGroupTable=tlpUpsOutletGroupTable, tlpUpsAlarmLoadOff16=tlpUpsAlarmLoadOff16, tlpUpsConfigBypassLowerLimitVoltage=tlpUpsConfigBypassLowerLimitVoltage, tlpAtsConfigSource2TransferReset=tlpAtsConfigSource2TransferReset, tlpDeviceIdentSerialNum=tlpDeviceIdentSerialNum, tlpPduDeviceTemperatureF=tlpPduDeviceTemperatureF, tlpDeviceID=tlpDeviceID, tlpAtsInputPhaseEntry=tlpAtsInputPhaseEntry) mibBuilder.exportSymbols('TRIPPLITE-PRODUCTS', tlpPduDisplayOrientation=tlpPduDisplayOrientation, tlpEnvHumidityHighLimit=tlpEnvHumidityHighLimit, tlpAtsAlarmLoadOff22=tlpAtsAlarmLoadOff22, tlpPduOutletName=tlpPduOutletName, tlpAtsAlarmSource1OverVoltage=tlpAtsAlarmSource1OverVoltage, tlpPduOutletVoltage=tlpPduOutletVoltage, tlpPduAlarmLoadOff13=tlpPduAlarmLoadOff13, tlpPduSupportsEntry=tlpPduSupportsEntry, tlpPduAlarmLoadOff28=tlpPduAlarmLoadOff28, tlpUpsBatteryDetailCurrent=tlpUpsBatteryDetailCurrent, tlpAlarmUserDefined03=tlpAlarmUserDefined03, tlpUpsAlarmCurrentAboveThreshold3=tlpUpsAlarmCurrentAboveThreshold3, tlpPduInputLowTransferVoltageLowerBound=tlpPduInputLowTransferVoltageLowerBound, tlpUpsBatteryPackIdentEntry=tlpUpsBatteryPackIdentEntry, tlpDeviceIdentFirmwareVersion=tlpDeviceIdentFirmwareVersion, tlpUpsAlarmSmartBatteryCommLost=tlpUpsAlarmSmartBatteryCommLost, tlpAtsOutput=tlpAtsOutput, tlpPduSupportsOutletVoltage=tlpPduSupportsOutletVoltage, tlpAlarmTableRef=tlpAlarmTableRef, tlpPduAlarmLoadOff34=tlpPduAlarmLoadOff34, tlpPduInputCurrentLimit=tlpPduInputCurrentLimit, tlpDeviceAlarms=tlpDeviceAlarms, tlpUpsAlarmOverTemperatureProtection=tlpUpsAlarmOverTemperatureProtection, tlpAtsAlarmCircuitBreakerOpen03=tlpAtsAlarmCircuitBreakerOpen03, tlpAtsOutputPhase=tlpAtsOutputPhase, tlpEnvAlarmInputContact04=tlpEnvAlarmInputContact04, tlpPduAlarmLoadLevelAboveThreshold=tlpPduAlarmLoadLevelAboveThreshold, tlpUpsOutletTable=tlpUpsOutletTable, tlpUpsConfigAutoShedOnTransition=tlpUpsConfigAutoShedOnTransition, tlpAtsOutputEntry=tlpAtsOutputEntry, tlpAgentAttributesSupportsSSHCLI=tlpAgentAttributesSupportsSSHCLI, tlpAgentAttributesAutostartSNMP=tlpAgentAttributesAutostartSNMP, tlpPduAlarmLoadOff25=tlpPduAlarmLoadOff25, tlpUpsIdentNumOutlets=tlpUpsIdentNumOutlets, tlpAgentAttributesSupportsHTTPS=tlpAgentAttributesSupportsHTTPS, tlpUpsInputLowTransferVoltageUpperBound=tlpUpsInputLowTransferVoltageUpperBound, tlpPduAlarmOutputOverload=tlpPduAlarmOutputOverload, tlpAtsAlarmLoadOff17=tlpAtsAlarmLoadOff17, tlpUpsIdentNumBatteryPacks=tlpUpsIdentNumBatteryPacks, tlpUpsConfigInputVoltage=tlpUpsConfigInputVoltage, tlpAtsConfigSource2BrownoutSet=tlpAtsConfigSource2BrownoutSet, tlpUpsAlarmUpsSystemOff=tlpUpsAlarmUpsSystemOff, tlpEnvOutputContactName=tlpEnvOutputContactName, tlpCoolingAlarmDisconnectedFromDevice=tlpCoolingAlarmDisconnectedFromDevice, tlpUpsIdentNumOutputs=tlpUpsIdentNumOutputs, tlpAtsAlarmLoadOff=tlpAtsAlarmLoadOff, tlpPduAlarmLoadOff14=tlpPduAlarmLoadOff14, tlpAtsControlResetGeneralFault=tlpAtsControlResetGeneralFault, tlpUpsAlarmLoadOff22=tlpUpsAlarmLoadOff22, tlpEnvInputContactInAlarm=tlpEnvInputContactInAlarm, tlpAtsConfigAutoShedOnTransition=tlpAtsConfigAutoShedOnTransition, tlpAlarmControl=tlpAlarmControl, tlpPduCircuitCurrentLimit=tlpPduCircuitCurrentLimit, tlpCoolingAlarmFanUnderCurrent=tlpCoolingAlarmFanUnderCurrent, tlpAtsAlarmLoadOff36=tlpAtsAlarmLoadOff36, tlpUpsBypassLinePower=tlpUpsBypassLinePower, tlpUpsConfigTable=tlpUpsConfigTable, tlpUpsAlarmLoadOff23=tlpUpsAlarmLoadOff23, tlpPduOutputCurrentMax=tlpPduOutputCurrentMax, tlpUpsAlarmLoadOff34=tlpUpsAlarmLoadOff34, tlpAtsOutletBank=tlpAtsOutletBank, tlpAlarmDetail=tlpAlarmDetail, tlpAtsBreakerEntry=tlpAtsBreakerEntry, tlpSwitchAlarms=tlpSwitchAlarms, tlpAtsAlarmCircuitBreakerOpen01=tlpAtsAlarmCircuitBreakerOpen01, tlpAtsInputPhaseFrequency=tlpAtsInputPhaseFrequency, tlpUpsInputLineBads=tlpUpsInputLineBads, tlpAtsInputPhaseIndex=tlpAtsInputPhaseIndex, tlpAgentSnmpContactIpAddress=tlpAgentSnmpContactIpAddress, tlpAlarmTable=tlpAlarmTable, tlpUpsBatteryPackConfigStyle=tlpUpsBatteryPackConfigStyle, tlpAtsAlarmLoadOff05=tlpAtsAlarmLoadOff05, tlpUpsBatteryDetailVoltage=tlpUpsBatteryDetailVoltage, tlpUpsAlarmBusStartVoltageLow=tlpUpsAlarmBusStartVoltageLow, tlpCooling=tlpCooling, tlpAgentConfigCurrentTime=tlpAgentConfigCurrentTime, tlpPduOutputIndex=tlpPduOutputIndex, tlpAtsAlarmLoadOff06=tlpAtsAlarmLoadOff06, tlpCoolingAlarmWaterFull=tlpCoolingAlarmWaterFull, tlpDeviceEntry=tlpDeviceEntry, tlpUpsDeviceMainLoadCommand=tlpUpsDeviceMainLoadCommand, tlpUpsAlarmLoadOff14=tlpUpsAlarmLoadOff14, tlpDeviceDetail=tlpDeviceDetail, tlpEnvOutputContactInAlarm=tlpEnvOutputContactInAlarm, tlpAtsOutputCurrentMin=tlpAtsOutputCurrentMin, tlpAtsAlarmFrequency=tlpAtsAlarmFrequency, tlpRackTrack=tlpRackTrack, tlpKvmConfig=tlpKvmConfig, tlpUpsBatteryPackIdentTable=tlpUpsBatteryPackIdentTable, tlpEnvOutputContactNormalState=tlpEnvOutputContactNormalState, tlpAtsAlarmLoadOff03=tlpAtsAlarmLoadOff03, tlpUpsAlarmLoadLevelAboveThreshold=tlpUpsAlarmLoadLevelAboveThreshold, tlpUpsAlarmRuntimeBelowWarningLevel=tlpUpsAlarmRuntimeBelowWarningLevel, tlpDeviceRowStatus=tlpDeviceRowStatus, tlpPduDeviceTemperatureC=tlpPduDeviceTemperatureC, tlpCoolingAlarmCondenserFanFault=tlpCoolingAlarmCondenserFanFault, tlpAtsOutlet=tlpAtsOutlet, tlpAtsConfigVoltageRangeTable=tlpAtsConfigVoltageRangeTable, tlpCoolingConfig=tlpCoolingConfig, tlpAtsAlarmCurrentAboveThresholdB3=tlpAtsAlarmCurrentAboveThresholdB3, tlpAlarmUserDefined07=tlpAlarmUserDefined07, tlpAtsOutletGroupTable=tlpAtsOutletGroupTable, tlpEnvAlarmOutputContact02=tlpEnvAlarmOutputContact02, tlpPduCircuitTotalPower=tlpPduCircuitTotalPower, tlpPduConfigInputVoltage=tlpPduConfigInputVoltage, tlpPduIdentNumOutletGroups=tlpPduIdentNumOutletGroups, tlpCoolingAlarmReturnAirTempHigh=tlpCoolingAlarmReturnAirTempHigh, tlpUpsConfigAutoRestartOverLoad=tlpUpsConfigAutoRestartOverLoad, tlpAgentAttributesSupportsHTTP=tlpAgentAttributesSupportsHTTP, tlpAlarmTime=tlpAlarmTime, tlpUpsBatteryDetailEntry=tlpUpsBatteryDetailEntry, tlpAtsOutletGroupDescription=tlpAtsOutletGroupDescription, tlpUpsBatteryDetailChargerStatus=tlpUpsBatteryDetailChargerStatus, tlpUpsInputLowTransferVoltageLowerBound=tlpUpsInputLowTransferVoltageLowerBound, tlpAlarmControlEntry=tlpAlarmControlEntry, tlpAtsDevice=tlpAtsDevice, tlpPduOutletRampAction=tlpPduOutletRampAction, tlpEnvOutputContactEntry=tlpEnvOutputContactEntry, tlpAtsSupportsOutletVoltage=tlpAtsSupportsOutletVoltage, tlpUpsAlarmLoadOff36=tlpUpsAlarmLoadOff36, tlpAtsDevicePhaseImbalance=tlpAtsDevicePhaseImbalance, tlpUpsOutletControllable=tlpUpsOutletControllable, tlpPduAlarmLoadOff40=tlpPduAlarmLoadOff40, tlpEnvAlarmInputContact=tlpEnvAlarmInputContact, tlpAtsAlarmCircuitBreakerOpen06=tlpAtsAlarmCircuitBreakerOpen06, tlpUpsAlarmLoadOff28=tlpUpsAlarmLoadOff28, tlpPduSupportsOutletCurrentPower=tlpPduSupportsOutletCurrentPower, tlpAgentAttributesSNMPv1Enabled=tlpAgentAttributesSNMPv1Enabled, tlpPduConfigEntry=tlpPduConfigEntry, tlpPduAlarmLoadOff18=tlpPduAlarmLoadOff18, tlpAtsBreakerIndex=tlpAtsBreakerIndex, tlpAtsAlarmCurrentAboveThresholdA3=tlpAtsAlarmCurrentAboveThresholdA3, tlpUpsOutletPower=tlpUpsOutletPower, tlpPduOutletTable=tlpPduOutletTable, tlpAtsConfigSource1TransferSet=tlpAtsConfigSource1TransferSet, tlpPduInputPhaseVoltageMax=tlpPduInputPhaseVoltageMax, tlpPduAlarmLoadOff15=tlpPduAlarmLoadOff15, tlpPduAlarmCircuitBreakerOpen05=tlpPduAlarmCircuitBreakerOpen05, tlpAlarmUserDefined09=tlpAlarmUserDefined09, tlpUpsAlarmBatteryAgeAboveThreshold=tlpUpsAlarmBatteryAgeAboveThreshold, tlpAtsBreakerTable=tlpAtsBreakerTable, tlpAgentSettings=tlpAgentSettings, tlpPduAlarmLoadOff36=tlpPduAlarmLoadOff36, tlpAtsIdentNumOutputs=tlpAtsIdentNumOutputs, tlpUpsConfigColdStart=tlpUpsConfigColdStart, tlpKvm=tlpKvm, tlpUpsAlarmLoadOff09=tlpUpsAlarmLoadOff09, tlpAtsAlarmSource1InvalidFrequency=tlpAtsAlarmSource1InvalidFrequency, tlpAtsDeviceTotalInputPowerRating=tlpAtsDeviceTotalInputPowerRating, tlpAtsDeviceTable=tlpAtsDeviceTable, tlpUpsOutletShedDelay=tlpUpsOutletShedDelay, tlpPduBreakerIndex=tlpPduBreakerIndex, tlpAtsConfigInputVoltage=tlpAtsConfigInputVoltage, tlpAgentConfigRemoteRegistration=tlpAgentConfigRemoteRegistration, tlpUpsAlarmOverCharged=tlpUpsAlarmOverCharged, tlpUpsAlarmLoadOff04=tlpUpsAlarmLoadOff04, tlpUpsBatteryPackDetailAge=tlpUpsBatteryPackDetailAge, tlpProducts=tlpProducts, tlpAtsIdentNumCircuits=tlpAtsIdentNumCircuits, tlpPduInputPhaseTable=tlpPduInputPhaseTable, tlpUpsEstimatedMinutesRemaining=tlpUpsEstimatedMinutesRemaining, tlpCoolingAlarmSuctionPressureLow=tlpCoolingAlarmSuctionPressureLow, tlpAtsOutletGroupName=tlpAtsOutletGroupName, tlpUpsAlarmBypassFrequencyBad=tlpUpsAlarmBypassFrequencyBad, tlpAtsOutputIndex=tlpAtsOutputIndex, tlpAtsHeatsinkStatus=tlpAtsHeatsinkStatus, tlpRackTrackIdentNumRackTrack=tlpRackTrackIdentNumRackTrack, tlpUpsAlarmLoadOff31=tlpUpsAlarmLoadOff31, tlpAtsAlarmLoadOff38=tlpAtsAlarmLoadOff38, tlpAtsAlarmCurrentAboveThreshold=tlpAtsAlarmCurrentAboveThreshold, tlpUpsAlarmLoadOff38=tlpUpsAlarmLoadOff38, tlpCoolingAlarmRemoteShutdownViaInputContact=tlpCoolingAlarmRemoteShutdownViaInputContact, tlpAtsOutletGroupCommand=tlpAtsOutletGroupCommand, tlpAtsOutletPower=tlpAtsOutletPower, tlpAgentEmailContacts=tlpAgentEmailContacts, tlpUpsBatteryDetailCharge=tlpUpsBatteryDetailCharge, tlpUpsConfigAutoRestartEntry=tlpUpsConfigAutoRestartEntry, tlpUpsSupportsOutletVoltage=tlpUpsSupportsOutletVoltage, tlpAtsIdentNumInputs=tlpAtsIdentNumInputs, tlpAtsAlarmGeneralFault=tlpAtsAlarmGeneralFault, tlpAtsConfigOverCurrentThreshold=tlpAtsConfigOverCurrentThreshold, tlpAgentSnmpContactTable=tlpAgentSnmpContactTable, tlpUpsDeviceTestDate=tlpUpsDeviceTestDate, tlpAtsAlarmLoadOff18=tlpAtsAlarmLoadOff18, tlpAtsInputFairVoltageThreshold=tlpAtsInputFairVoltageThreshold, tlpUpsAlarmLowBattery=tlpUpsAlarmLowBattery, tlpCoolingAlarmCondenserFailure=tlpCoolingAlarmCondenserFailure, tlpNotifySystemStartup=tlpNotifySystemStartup, tlpRackTrackDetail=tlpRackTrackDetail, tlpNotifySystemUpdate=tlpNotifySystemUpdate, tlpUpsControlTable=tlpUpsControlTable, tlpAtsAlarmLoadLevelAboveThreshold=tlpAtsAlarmLoadLevelAboveThreshold, tlpPduAlarmLoadOff17=tlpPduAlarmLoadOff17, tlpAtsSupportsOutletGroup=tlpAtsSupportsOutletGroup, tlpAgentNumSnmpContacts=tlpAgentNumSnmpContacts, tlpAtsConfigSourceTransferSetMinimum=tlpAtsConfigSourceTransferSetMinimum, tlpEnvConfigEntry=tlpEnvConfigEntry, tlpAgentAttributesAutostartHTTPS=tlpAgentAttributesAutostartHTTPS, tlpPduDeviceEntry=tlpPduDeviceEntry, tlpPduAlarmLoadOff10=tlpPduAlarmLoadOff10, tlpUpsSecondsOnBattery=tlpUpsSecondsOnBattery, tlpAtsAlarmLoadOff19=tlpAtsAlarmLoadOff19, tlpUpsBatteryPackConfigNumBatteries=tlpUpsBatteryPackConfigNumBatteries, tlpUpsAlarmOutputBad=tlpUpsAlarmOutputBad, tlpPduInputPhaseIndex=tlpPduInputPhaseIndex, tlpUpsAlarmExternalSmartBatteryAgeAboveThreshold=tlpUpsAlarmExternalSmartBatteryAgeAboveThreshold, tlpUpsSupportsRampShed=tlpUpsSupportsRampShed, tlpAgentSnmpContactAuthPassword=tlpAgentSnmpContactAuthPassword, tlpAlarmCommunicationsLost=tlpAlarmCommunicationsLost, tlpPduAlarmLoadOff38=tlpPduAlarmLoadOff38, tlpAtsInputPhaseTable=tlpAtsInputPhaseTable, tlpUpsBatteryPackConfigEntry=tlpUpsBatteryPackConfigEntry, tlpCoolingInput=tlpCoolingInput, tlpUpsBatteryPackConfigStrings=tlpUpsBatteryPackConfigStrings, tlpEnvNumInputContacts=tlpEnvNumInputContacts, tlpAgentAttributesPorts=tlpAgentAttributesPorts, tlpPduOutletIndex=tlpPduOutletIndex, tlpAtsInputLineIndex=tlpAtsInputLineIndex, tlpAtsBreakerStatus=tlpAtsBreakerStatus, tlpUpsInputNominalVoltage=tlpUpsInputNominalVoltage, tlpUpsAlarmLoadOff05=tlpUpsAlarmLoadOff05, tlpCoolingOutput=tlpCoolingOutput, tlpKvmDetail=tlpKvmDetail, tlpAgentDetails=tlpAgentDetails, tlpAlarmUserDefined04=tlpAlarmUserDefined04, tlpUpsBatteryPackDetailCondition=tlpUpsBatteryPackDetailCondition, tlpPduAlarmLoadOff11=tlpPduAlarmLoadOff11, tlpPduAlarmLoadOff21=tlpPduAlarmLoadOff21, tlpAtsCircuitTotalPower=tlpAtsCircuitTotalPower, tlpAtsHeatsink=tlpAtsHeatsink, tlpAtsCircuitCurrentMin=tlpAtsCircuitCurrentMin, tlpCoolingAlarmSuctionPressureSensorFault=tlpCoolingAlarmSuctionPressureSensorFault, tlpNotificationsAlarmEntryAdded=tlpNotificationsAlarmEntryAdded, tlpAtsDeviceTemperatureF=tlpAtsDeviceTemperatureF, tlpPduAlarmCircuitBreakerOpen06=tlpPduAlarmCircuitBreakerOpen06, tlpAtsAlarmInputBad=tlpAtsAlarmInputBad, tlpAtsAlarmSource2Outage=tlpAtsAlarmSource2Outage, tlpPduAlarmLoadOff16=tlpPduAlarmLoadOff16, tlpUpsConfigBypassLowerLimitPercent=tlpUpsConfigBypassLowerLimitPercent, tlpUpsIdentNumOutletGroups=tlpUpsIdentNumOutletGroups, tlpUpsBatterySummaryEntry=tlpUpsBatterySummaryEntry, tlpAgentAttributesSupportsSNMP=tlpAgentAttributesSupportsSNMP, tlpUpsAlarmChargerFailed=tlpUpsAlarmChargerFailed, tlpAtsAlarmLoadOff08=tlpAtsAlarmLoadOff08, tlpAtsInputNominalVoltage=tlpAtsInputNominalVoltage, tlpAtsSupportsEnergywise=tlpAtsSupportsEnergywise, tlpAtsInputHighTransferVoltageUpperBound=tlpAtsInputHighTransferVoltageUpperBound, PYSNMP_MODULE_ID=tlpProducts, tlpPduAlarmLoadOff27=tlpPduAlarmLoadOff27, tlpUpsControl=tlpUpsControl)
def _tool_config( executable, additional_tools = [], args = [], env = {}, execution_requirements = {}): return struct( executable = executable, additional_tools = additional_tools, args = args, env = env, execution_requirements = execution_requirements, ) action_names = struct( BUILD = "SPMBuild", ) actions = struct( tool_config = _tool_config, )
def _tool_config(executable, additional_tools=[], args=[], env={}, execution_requirements={}): return struct(executable=executable, additional_tools=additional_tools, args=args, env=env, execution_requirements=execution_requirements) action_names = struct(BUILD='SPMBuild') actions = struct(tool_config=_tool_config)
#!/usr/bin/env python3 # -*- coding: utf-8 -*- __author__ = 'ipetrash' # TODO: from dev_window # from PySide.QtWebKit import * # # QWebSettings.globalSettings().setAttribute(QWebSettings.DeveloperExtrasEnabled, True) # # self.view = QWebView() # self.setCentralWidget(self.view) # # self.view.load('https://twitter.com/Misty_Shadow') # self.doc = self.view.page().mainFrame().documentElement() # # def el_text(el, css_selector): # return el.findFirst(css_selector).toPlainText() # # profile = self.doc.findFirst('.ProfileHeaderCard') # # profile_info = { # 'name': el_text(profile, '.ProfileHeaderCard-name'), # 'screenname': el_text(profile, '.ProfileHeaderCard-screenname'), # 'location': el_text(profile, '.ProfileHeaderCard-location'), # 'url': el_text(profile, '.ProfileHeaderCard-url'), # 'joinDate': el_text(profile, '.ProfileHeaderCard-joinDate'), # 'birthdate': el_text(profile, '.ProfileHeaderCard-birthdate'), # } # # text_mess = '' # # for k in sorted(profile_info.keys()): # text_mess += '{}: {}'.format(k, profile_info[k].strip()) + '\n' # # print(text_mess) # # QMessageBox.information(self, None, text_mess)
__author__ = 'ipetrash'
# -------------- # settings pw = ph = 500 amount = 24 factor = 1/3 regular = False cell_s = pw / (amount + 2) # -------------- # function(s) def I(pos, s): x, y = pos polygon( (-s/2, -s/2), (-s/2, +s/2), (-s/2 * factor, +s/2), (-s/2 * factor, +s/2 * (1 - factor)/2), (+s/2 * factor, +s/2 * (1 - factor)/2), (+s/2 * factor, +s/2), (+s/2, +s/2), (+s/2, -s/2), (+s/2 * factor, -s/2), (+s/2 * factor, -s/2 * (1 - factor)/2), (-s/2 * factor, -s/2 * (1 - factor)/2), (-s/2 * factor, -s/2), ) # -------------- # drawings newPage(pw, ph) translate(cell_s * 1.5, cell_s * 1.5) for x in range(amount): for y in range(amount): with savedState(): translate(x * cell_s, y*cell_s) if regular: if (x + y) %2: rotate(90) else: if random() > .5: rotate(90) I((0, 0), cell_s) # saveImage('rotating_H.jpg')
pw = ph = 500 amount = 24 factor = 1 / 3 regular = False cell_s = pw / (amount + 2) def i(pos, s): (x, y) = pos polygon((-s / 2, -s / 2), (-s / 2, +s / 2), (-s / 2 * factor, +s / 2), (-s / 2 * factor, +s / 2 * (1 - factor) / 2), (+s / 2 * factor, +s / 2 * (1 - factor) / 2), (+s / 2 * factor, +s / 2), (+s / 2, +s / 2), (+s / 2, -s / 2), (+s / 2 * factor, -s / 2), (+s / 2 * factor, -s / 2 * (1 - factor) / 2), (-s / 2 * factor, -s / 2 * (1 - factor) / 2), (-s / 2 * factor, -s / 2)) new_page(pw, ph) translate(cell_s * 1.5, cell_s * 1.5) for x in range(amount): for y in range(amount): with saved_state(): translate(x * cell_s, y * cell_s) if regular: if (x + y) % 2: rotate(90) elif random() > 0.5: rotate(90) i((0, 0), cell_s)
newline = "\n" with open("AoC6.txt", 'r') as File1: info = [] for line in File1: if line == "\n": info.append("\n\n") else: info.append(f'''{line.split(newline)[0]}\n''') # print(info) customs = [] customs = "".join(info).split("\n\n") # print(customs) for i in range(len(customs)): customs[i] = customs[i].split("\n") try: customs[i].remove('') except ValueError: pass answers = [] # print(customs) for group in customs: answered = {} count = 0 occurrences = 0 for answer in group: for question in answer: if question not in answered: answered[question] = 1 else: answered[question] += 1 for key, value in answered.items(): # print(group) if answered[key] == len(group): count += 1 # print(answered) answers.append(count) # print(answers) print(sum(answers))
newline = '\n' with open('AoC6.txt', 'r') as file1: info = [] for line in File1: if line == '\n': info.append('\n\n') else: info.append(f'{line.split(newline)[0]}\n') customs = [] customs = ''.join(info).split('\n\n') for i in range(len(customs)): customs[i] = customs[i].split('\n') try: customs[i].remove('') except ValueError: pass answers = [] for group in customs: answered = {} count = 0 occurrences = 0 for answer in group: for question in answer: if question not in answered: answered[question] = 1 else: answered[question] += 1 for (key, value) in answered.items(): if answered[key] == len(group): count += 1 answers.append(count) print(sum(answers))
sum0 = 0 # If i is divisible by 3 or 5, add to sum for i in range(100): if (i%3 == 0 or i%5==0): sum0 += i # Print answer print('The sum is: ' + str(sum0))
sum0 = 0 for i in range(100): if i % 3 == 0 or i % 5 == 0: sum0 += i print('The sum is: ' + str(sum0))
{ 'targets': [ { 'target_name': 'kexec', 'sources': [ 'src/kexec.cc' ], 'defines': [ '<!@(node -v |grep "v4" > /dev/null && echo "__NODE_V4__" || true)', '<!@(node -v |grep "v0.1[12]" > /dev/null && echo "__NODE_V0_11_OR_12__" || true)', '<!@(command -v iojs > /dev/null && echo "__NODE_V0_11_OR_12__" || true)', '<!@(node -v |grep "v0.10" > /dev/null && echo "__NODE_V0_10__" || true)', ] } ] }
{'targets': [{'target_name': 'kexec', 'sources': ['src/kexec.cc'], 'defines': ['<!@(node -v |grep "v4" > /dev/null && echo "__NODE_V4__" || true)', '<!@(node -v |grep "v0.1[12]" > /dev/null && echo "__NODE_V0_11_OR_12__" || true)', '<!@(command -v iojs > /dev/null && echo "__NODE_V0_11_OR_12__" || true)', '<!@(node -v |grep "v0.10" > /dev/null && echo "__NODE_V0_10__" || true)']}]}
class Solution: def chalkReplacer(self, chalk: List[int], k: int) -> int: i = 0 sumchalk = sum(chalk) k = k % sumchalk while k >= 0: k -= chalk[i] i = (i + 1) % len(chalk) return (i + len(chalk) - 1) % len(chalk)
class Solution: def chalk_replacer(self, chalk: List[int], k: int) -> int: i = 0 sumchalk = sum(chalk) k = k % sumchalk while k >= 0: k -= chalk[i] i = (i + 1) % len(chalk) return (i + len(chalk) - 1) % len(chalk)
expected_output = { "instance": { "master": { "areas": { "0.0.0.1": { "interfaces": { "ge-0/0/4.0": { "state": "PtToPt", "dr_id": "10.16.2.1", "bdr_id": "10.64.2.4", "nbrs_count": 1, } } } } } } }
expected_output = {'instance': {'master': {'areas': {'0.0.0.1': {'interfaces': {'ge-0/0/4.0': {'state': 'PtToPt', 'dr_id': '10.16.2.1', 'bdr_id': '10.64.2.4', 'nbrs_count': 1}}}}}}}
class TrainData: def __init__(self, batch_size): self.batch_size = batch_size self.train_size = 0 self.validation_size = 0 def next_batch(self): raise NotImplementedError def validation_data(self): # validation data for early stopping of vae training # should include normal data only raise NotImplementedError def validation_samples(self, size=2): raise NotImplementedError def test_data(self): # test data to compute novelty score on raise NotImplementedError
class Traindata: def __init__(self, batch_size): self.batch_size = batch_size self.train_size = 0 self.validation_size = 0 def next_batch(self): raise NotImplementedError def validation_data(self): raise NotImplementedError def validation_samples(self, size=2): raise NotImplementedError def test_data(self): raise NotImplementedError
cars = ['bmw', 'audi', 'toyota', 'subaru'] print(cars) print(sorted(cars)) print(cars) cars.sort() print(cars)
cars = ['bmw', 'audi', 'toyota', 'subaru'] print(cars) print(sorted(cars)) print(cars) cars.sort() print(cars)
HOST_SORUCE = "ip_of_the_mysql_host" SCHEMA_SORUCE = "world" USER_SORUCE = "root" PASSWORD_SORUCE = "rootpassword" PORT_SORUCE = 6603 HOST_METADATA = "ip_of_the_mysql_host" SCHEMA_METADATA = "demo" USER_METADATA = "demo" PASSWORD_METADATA = "metadata" PORT_METADATA = 6603
host_soruce = 'ip_of_the_mysql_host' schema_soruce = 'world' user_soruce = 'root' password_soruce = 'rootpassword' port_soruce = 6603 host_metadata = 'ip_of_the_mysql_host' schema_metadata = 'demo' user_metadata = 'demo' password_metadata = 'metadata' port_metadata = 6603