blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
3
616
content_id
stringlengths
40
40
detected_licenses
sequencelengths
0
112
license_type
stringclasses
2 values
repo_name
stringlengths
5
115
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
777 values
visit_date
timestamp[us]date
2015-08-06 10:31:46
2023-09-06 10:44:38
revision_date
timestamp[us]date
1970-01-01 02:38:32
2037-05-03 13:00:00
committer_date
timestamp[us]date
1970-01-01 02:38:32
2023-09-06 01:08:06
github_id
int64
4.92k
681M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
22 values
gha_event_created_at
timestamp[us]date
2012-06-04 01:52:49
2023-09-14 21:59:50
gha_created_at
timestamp[us]date
2008-05-22 07:58:19
2023-08-21 12:35:19
gha_language
stringclasses
149 values
src_encoding
stringclasses
26 values
language
stringclasses
1 value
is_vendor
bool
2 classes
is_generated
bool
2 classes
length_bytes
int64
3
10.2M
extension
stringclasses
188 values
content
stringlengths
3
10.2M
authors
sequencelengths
1
1
author_id
stringlengths
1
132
277537b8ae7e47142a220286372b6306e21c780c
a024fe3b05dd320a7860165dd72ebd832ce6e484
/account_cajas/models/payment_group.py
833df438839be2ce04c80b1330df47f33925d155
[]
no_license
acostaw/erp_odoo
97d02a675908e441cf8e1ba4e3dcbc62691f8dec
2437997b650c9fdbf6a6f007c0a1fea2aab018e2
refs/heads/main
2023-04-19T14:52:48.877851
2021-04-22T18:40:07
2021-04-22T18:40:07
360,644,871
0
0
null
null
null
null
UTF-8
Python
false
false
3,102
py
from odoo import fields, api, models, exceptions class PaymentGroup(models.Model): _inherit = 'grupo_account_payment.payment.group' caja_session_id = fields.Many2one( 'account.caja.session', string="Sesión de caja") def get_sesion(self): sesion = self.env['account.caja.session'].search( [('company_id', '=', self.company_id.id or self.env.user.company_id.id), ('user_id', '=', self.env.user.id), ('state', '=', 'proceso')]) return sesion def button_confirmar(self): for i in self: for j in i.payment_ids: caja = i.get_sesion().caja_id if j.journal_id.id not in caja.journal_ids.ids: raise exceptions.ValidationError('No se puede crear una linea de pago en el diario %s, el mismo no está habilitado para ésta caja.' %j.journal_id.name) super(PaymentGroup, i).button_confirmar() for j in i.payment_ids: sesion = i.get_sesion() for s in sesion.statement_ids.filtered(lambda x: x.journal_id == j.journal_id): monto = j.amount if i.payment_type == 'outbound': monto = monto*-1 s.write( {'line_ids': [(0, 0, {'journal_entry_ids': [(6, 0, j.move_line_ids.filtered(lambda z:z.debit > 0).ids)], 'date': fields.Date.today(), 'name': i.name, 'partner_id':i.partner_id.id, 'amount':monto,'payment_id':j.id})]}) @api.model def create(self, vals): if vals.get('payment_type') == 'inbound': session = self.get_sesion() if session: vals['caja_session_id'] = session.id else: raise exceptions.ValidationError( 'No existe ninguna sesión de caja abierta para el usuario %s. Antes debe abrir una.' % (self.env.user.name)) return super(PaymentGroup, self).create(vals) def button_cancelar(self): for i in self: if i.payment_type == 'inbound': if i.caja_session_id and i.caja_session_id.state in ['proceso', 'cierre']: super(PaymentGroup, i).button_cancelar() for payment in i.payment_ids: for st in i.caja_session_id.statement_ids: lines = st.line_ids.filtered( lambda l: l.payment_id == payment) if lines: lines.unlink() if i.caja_session_id.state == 'cierre' and st.journal_id.type == 'bank': st.write( {'balance_end_real': st.balance_end_real-payment.amount}) return else: raise exceptions.ValidationError( 'Sólo se puede cancelar un recibo si su sesión de caja está abierta o en proceso de cierre.') else: super(PaymentGroup, i).button_cancelar()
0f7ba2626ddb918345b5b65b7b33821c1416ba0d
63daf225819636397fda6ef7e52783331c27f295
/cbb/taobao/top/api/rest/WangwangEserviceNewevalsGetRequest.py
6ec015f4437fc789e6fe969e968f93ce8d6d80c1
[]
no_license
cash2one/language-Python
e332ecfb4e9321a11407b29987ee64d44e552b15
8adb4f2fd2f023f9cc89b4edce1da5f71a3332ab
refs/heads/master
2021-06-16T15:15:08.346420
2017-04-20T02:44:16
2017-04-20T02:44:16
112,173,361
1
0
null
2017-11-27T09:08:57
2017-11-27T09:08:57
null
UTF-8
Python
false
false
370
py
''' Created by auto_sdk on 2014.03.24 ''' from top.api.base import RestApi class WangwangEserviceNewevalsGetRequest(RestApi): def __init__(self,domain='gw.api.taobao.com',port=80): RestApi.__init__(self,domain, port) self.btime = None self.etime = None self.query_ids = None def getapiname(self): return 'taobao.wangwang.eservice.newevals.get'
d948e6f2cea3277ef12bf61e893e539a196cdc75
ae326c4e6a2b2d5b67fa8d175249ef90f6a3021a
/leo/external/npyscreen/wgbutton.py
3c3864dccecbf6a1b774d0f84bc4e561b11aed17
[ "MIT" ]
permissive
frakel/leo-editor
f95e6c77d60485d80fddfbeaf35db961cf691177
b574118ee3b7ffe8344fa0d00dac603096117ac7
refs/heads/master
2020-03-28T10:40:24.621077
2018-10-23T14:39:31
2018-10-23T14:39:31
148,132,817
0
0
MIT
2018-09-10T09:40:18
2018-09-10T09:40:18
null
UTF-8
Python
false
false
4,629
py
#@+leo-ver=5-thin #@+node:ekr.20170428084207.524: * @file ../external/npyscreen/wgbutton.py #!/usr/bin/python #@+others #@+node:ekr.20170428084207.525: ** Declarations import curses import locale # import weakref from . import npysGlobalOptions as GlobalOptions # from . import wgwidget as widget from . import wgcheckbox as checkbox #@+node:ekr.20170428084207.526: ** class MiniButton class MiniButton(checkbox._ToggleControl): DEFAULT_CURSOR_COLOR = None #@+others #@+node:ekr.20170428084207.527: *3* __init__ def __init__(self, screen, name='Button', cursor_color=None, *args, **keywords): self.encoding = 'utf-8' self.cursor_color = cursor_color or self.__class__.DEFAULT_CURSOR_COLOR if GlobalOptions.ASCII_ONLY or locale.getpreferredencoding() == 'US-ASCII': self._force_ascii = True else: self._force_ascii = False self.name = self.safe_string(name) self.label_width = len(name) + 2 super(MiniButton, self).__init__(screen, *args, **keywords) if 'color' in keywords: self.color = keywords['color'] else: self.color = 'CONTROL' #@+node:ekr.20170428084207.528: *3* calculate_area_needed def calculate_area_needed(self): return 1, self.label_width+2 #@+node:ekr.20170428084207.529: *3* MiniButton.update def update(self, clear=True): if clear: self.clear() if self.hidden: self.clear() return False if self.value and self.do_colors(): self.parent.curses_pad.addstr(self.rely, self.relx, '>', self.parent.theme_manager.findPair(self)) self.parent.curses_pad.addstr(self.rely, self.relx+self.width-1, '<', self.parent.theme_manager.findPair(self)) elif self.value: self.parent.curses_pad.addstr(self.rely, self.relx, '>') self.parent.curses_pad.addstr(self.rely, self.relx+self.width-1, '<') if self.editing: button_state = curses.A_STANDOUT else: button_state = curses.A_NORMAL button_name = self.name if isinstance(button_name, bytes): button_name = button_name.decode(self.encoding, 'replace') button_name = button_name.center(self.label_width) if self.do_colors(): if self.cursor_color: if self.editing: button_attributes = self.parent.theme_manager.findPair(self, self.cursor_color) else: button_attributes = self.parent.theme_manager.findPair(self, self.color) else: button_attributes = self.parent.theme_manager.findPair(self, self.color) | button_state else: button_attributes = button_state self.add_line(self.rely, self.relx+1, button_name, self.make_attributes_list(button_name, button_attributes), self.label_width ) #@-others #@+node:ekr.20170428084207.530: ** class MiniButtonPress class MiniButtonPress(MiniButton): # NB. The when_pressed_function functionality is potentially dangerous. It can set up # a circular reference that the garbage collector will never free. # If this is a risk for your program, it is best to subclass this object and # override when_pressed_function instead. Otherwise your program will leak memory. #@+others #@+node:ekr.20170428084207.531: *3* __init__ def __init__(self, screen, when_pressed_function=None, *args, **keywords): super(MiniButtonPress, self).__init__(screen, *args, **keywords) self.when_pressed_function = when_pressed_function #@+node:ekr.20170428084207.532: *3* set_up_handlers def set_up_handlers(self): '''MiniButtonPress.set_up_handlers.''' super(MiniButtonPress, self).set_up_handlers() self.handlers.update({ curses.ascii.NL: self.h_toggle, curses.ascii.CR: self.h_toggle, }) #@+node:ekr.20170428084207.533: *3* destroy def destroy(self): self.when_pressed_function = None del self.when_pressed_function #@+node:ekr.20170428084207.534: *3* h_toggle def h_toggle(self, ch): self.value = True self.display() if self.when_pressed_function: self.when_pressed_function() else: self.whenPressed() self.value = False self.display() #@+node:ekr.20170428084207.535: *3* whenPressed def whenPressed(self): pass #@-others #@-others #@@language python #@@tabwidth -4 #@-leo
298d140fe1ca68d7da2b2955a7a16d0ea3e33fb9
5a281cb78335e06c631181720546f6876005d4e5
/zaqar-8.0.0/zaqar/api/v2/response.py
d21d69c7c5b7498626cfe10c752628278f624316
[ "Apache-2.0" ]
permissive
scottwedge/OpenStack-Stein
d25b2a5bb54a714fc23f0ff0c11fb1fdacad85e8
7077d1f602031dace92916f14e36b124f474de15
refs/heads/master
2021-03-22T16:07:19.561504
2020-03-15T01:31:10
2020-03-15T01:31:10
247,380,811
0
0
Apache-2.0
2020-03-15T01:24:15
2020-03-15T01:24:15
null
UTF-8
Python
false
false
15,561
py
# Copyright (c) 2013 Rackspace, Inc. # # 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. from zaqar.common.api import api from zaqar.common import consts class ResponseSchema(api.Api): """Define validation schema for json response.""" def __init__(self, limits): self.limits = limits age = { "type": "number", "minimum": 0 } message = { "type": "object", "properties": { "id": { "type": "string", }, "href": { "type": "string", "pattern": "^(/v1/queues/[a-zA-Z0-9_-]{1,64}" "/messages/[a-zA-Z0-9_-]+)(\?claim_id=[a-zA-Z0-9_-]+)?$" }, "age": age, "ttl": { "type": "number", "minimum": 1, "maximum": self.limits.max_message_ttl }, "body": { "type": "object" }, "checksum": { "type": "string", }, }, "required": ["href", "ttl", "age", "body", "id"], "additionalProperties": False, } claim_href = { "type": "string", "pattern": "^(/v2/queues/[a-zA-Z0-9_-]{1,64}" "/messages/[a-zA-Z0-9_-]+)" "\?claim_id=[a-zA-Z0-9_-]+$" } flavor = { 'type': 'object', 'properties': { 'href': { 'type': 'string', 'pattern': '^/v2/flavors/[a-zA-Z0-9_-]{1,64}$' }, 'pool': { 'type': 'string', }, 'project': { 'type': 'string' }, 'capabilities': { 'type': 'object', 'additionalProperties': True } }, 'required': ['href', 'pool', 'project'], 'additionalProperties': False, } self.schema = { consts.MESSAGE_GET_MANY: { 'type': 'object', 'properties': { 'messages': { "type": "array", "items": message, "minItems": 1, "maxItems": self.limits.max_messages_per_page } }, 'required': ['messages'], 'additionalProperties': False, }, consts.QUEUE_LIST: { 'type': 'object', 'properties': { 'links': { 'type': 'array', 'items': { 'type': 'object', 'properties': { 'rel': { 'type': 'string', 'enum': ['next'], }, 'href': { 'type': 'string', "pattern": "^/v2/queues\?", } }, 'required': ['rel', 'href'], 'additionalProperties': False, }, 'minItems': 1, 'maxItems': 1, }, 'queues': { 'type': 'array', 'items': { 'type': 'object', 'properties': { 'name': { 'type': 'string', 'pattern': '^[a-zA-Z0-9_-]{1,64}$' }, 'href': { 'type': 'string', 'pattern': '^/v2/queues/' '[a-zA-Z0-9_-]{1,64}$', }, 'metadata': { 'type': 'object', } }, 'required': ['name', 'href'], 'additionalProperties': False, }, 'minItems': 1, 'maxItems': self.limits.max_queues_per_page, } }, 'required': ['links', 'queues'], 'additionalProperties': False, }, consts.QUEUE_GET_STATS: { 'type': 'object', 'properties': { 'messages': { 'type': 'object', 'properties': { 'free': { 'type': 'number', 'minimum': 0 }, 'claimed': { 'type': 'number', 'minimum': 0 }, 'total': { 'type': 'number', 'minimum': 0 }, 'oldest': { 'type': 'object' }, 'newest': { 'type': 'object' } }, 'required': ['free', 'claimed', 'total'], 'additionalProperties': False } }, 'required': ['messages'], 'additionalProperties': False }, consts.POOL_LIST: { 'type': 'object', 'properties': { 'links': { 'type': 'array', 'items': { 'type': 'object', 'properties': { 'rel': { 'type': 'string' }, 'href': { 'type': 'string', 'pattern': '^/v2/pools\?' } }, 'required': ['rel', 'href'], 'additionalProperties': False } }, 'pools': { 'type': 'array', 'items': { 'type': 'object', 'properties': { 'href': { 'type': 'string', 'pattern': '^/v2/' 'pools/[a-zA-Z0-9_-]{1,64}$' }, 'weight': { 'type': 'number', 'minimum': -1 }, 'name': { 'type': 'string' }, 'uri': { 'type': 'string' }, 'flavor': { 'type': ['string', 'null'] }, 'options': { 'type': 'object', 'additionalProperties': True } }, 'required': ['href', 'weight', 'uri'], 'additionalProperties': False, }, } }, 'required': ['links', 'pools'], 'additionalProperties': False }, consts.MESSAGE_LIST: { 'type': 'object', 'properties': { 'links': { 'type': 'array', 'items': { 'type': 'object', 'properties': { 'rel': { 'type': 'string' }, 'href': { 'type': 'string', 'pattern': '^/v2/queues/[a-zA-Z0-9_-]+' '/messages\?(.)*$' } }, 'required': ['rel', 'href'], 'additionalProperties': False } }, 'messages': { "type": "array", "items": message, "minItems": 0, "maxItems": self.limits.max_messages_per_claim_or_pop } } }, consts.POOL_GET_DETAIL: { 'type': 'object', 'properties': { 'name': { 'type': 'string' }, 'uri': { 'type': 'string' }, 'flavor': { 'type': ['string', 'null'] }, 'weight': { 'type': 'number', 'minimum': -1 }, 'href': { 'type': 'string', 'pattern': '^/v2/pools/' '[a-zA-Z0-9_\-]+$' }, 'options': { 'type': 'object', 'additionalProperties': True } }, 'required': ['uri', 'weight', 'href'], 'additionalProperties': False }, consts.CLAIM_CREATE: { 'type': 'object', 'properties': { 'messages': { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "string", }, "href": claim_href, "ttl": { "type": "number", "minimum": 1, "maximum": self.limits.max_message_ttl }, "age": age, "body": { "type": "object" }, "checksum": { "type": "string", }, }, "required": ["href", "ttl", "age", "body", "id"], "additionalProperties": False, }, "minItems": 1, "maxItems": self.limits.max_messages_per_page } }, 'required': ['messages'], 'additionalProperties': False }, consts.CLAIM_GET: { 'type': 'object', 'properties': { 'age': age, 'ttl': { 'type': 'number', 'minimum': 0, 'maximum': self.limits.max_claim_ttl }, 'href': { 'type': 'string', 'pattern': '^/v2/queues/[a-zA-Z0-9_-]+' '/claims/[a-zA-Z0-9_-]+$' }, 'messages': { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "string", }, "href": claim_href, "ttl": { "type": "number", "minimum": 1, "maximum": self.limits.max_message_ttl }, "age": age, "body": { "type": "object" } }, "required": ["href", "ttl", "age", "body", "id"], "additionalProperties": False, }, "minItems": 1, "maxItems": self.limits.max_messages_per_page } }, 'required': ['age', 'ttl', 'messages', 'href'], 'additionalProperties': False }, consts.FLAVOR_LIST: { 'type': 'object', 'properties': { 'links': { 'type': 'array', 'items': { 'type': 'object', 'properties': { 'rel': { 'type': 'string' }, 'href': { 'type': 'string', 'pattern': '^/v2/flavors\?' } }, 'required': ['rel', 'href'], 'additionalProperties': False } }, 'flavors': { 'type': 'array', 'items': flavor, } }, 'required': ['links', 'flavors'], 'additionalProperties': False } }
[ "Wayne [email protected]" ]
cbec1b9899516b898ddf2b75425a155a5e2e9388
5aa80aab7a75d76b0aa838bf8f74a276a12c876e
/src/dns/scripts/del_virtual_dns.py
d01e287f11d833d931e334fea48bc13f10915239
[ "Apache-2.0", "LicenseRef-scancode-warranty-disclaimer" ]
permissive
tungstenfabric/tf-controller
83b6d58afadb5697b540b5345711a5b2af90d201
f825fde287f4eb2089aba2225ca73eeab3888040
refs/heads/master
2023-08-28T02:56:27.329584
2023-08-20T12:15:38
2023-08-20T12:31:34
231,070,970
55
29
Apache-2.0
2023-07-23T01:38:17
2019-12-31T10:24:38
C++
UTF-8
Python
false
false
2,811
py
#!/usr/bin/python # #Copyright (c) 2013 Juniper Networks, Inc. All rights reserved. # from __future__ import print_function from future import standard_library standard_library.install_aliases() from builtins import object import sys import argparse from six.moves import configparser from provision_dns import DnsProvisioner from requests.exceptions import ConnectionError class DelVirtualDns(object): def __init__(self, args_str = None): self._args = None if not args_str: args_str = ' '.join(sys.argv[1:]) self._parse_args(args_str) try: dp_obj = DnsProvisioner(self._args.admin_user, self._args.admin_password, self._args.admin_tenant_name, self._args.api_server_ip, self._args.api_server_port) except ConnectionError: print('Connection to API server failed ') return dp_obj.del_virtual_dns(self._args.fq_name) #end __init__ def _parse_args(self, args_str): ''' Eg. python del_virtual_dns.py --fq_name default-domain:vdns1 ''' # Source any specified config/ini file # Turn off help, so we print all options in response to -h conf_parser = argparse.ArgumentParser(add_help = False) args, remaining_argv = conf_parser.parse_known_args(args_str.split()) defaults = { 'api_server_ip' : '127.0.0.1', 'api_server_port' : '8082', 'admin_user': None, 'admin_password': None, 'admin_tenant_name': None } # Don't surpress add_help here so it will handle -h parser = argparse.ArgumentParser( # Inherit options from config_parser parents=[conf_parser], # print script description with -h/--help description=__doc__, # Don't mess with format of description formatter_class=argparse.RawDescriptionHelpFormatter, ) parser.set_defaults(**defaults) parser.add_argument("--fq_name", help = "Fully qualified Virtual DNS Name") parser.add_argument("--api_server_ip", help = "IP address of api server") parser.add_argument("--api_server_port", help = "Port of api server") parser.add_argument("--admin_user", help = "Name of keystone admin user") parser.add_argument("--admin_password", help = "Password of keystone admin user") parser.add_argument("--admin_tenant_name", help = "Tenamt name for keystone admin user") self._args = parser.parse_args(remaining_argv) #end _parse_args # end class DelVirtualDns def main(args_str = None): DelVirtualDns(args_str) #end main if __name__ == "__main__": main()
51f512a009d612d8737cedcd92ab98789dd019e2
13f5984be7be77852e4de29ab98d5494a7fc6767
/LeetCode/029两数相除.py
1156923f619001bb4fb9a6633818ed77385df8ac
[]
no_license
YuanXianguo/Python-Interview-Master
4252514763fc3f563d9b94e751aa873de1719f91
2f73786e8c51dbd248341559de171e18f67f9bf2
refs/heads/master
2020-11-26T18:14:50.190812
2019-12-20T02:18:03
2019-12-20T02:18:03
229,169,825
0
0
null
null
null
null
UTF-8
Python
false
false
1,793
py
""" 给定两个整数,被除数 dividend 和除数 divisor。将两数相除,要求不使用乘法、除法和 mod 运算符。 返回被除数 dividend 除以除数 divisor 得到的商。 """ def divide(dividend, divisor): if dividend > 0 and divisor > 0 or dividend < 0 and divisor < 0: sign = 1 # 判断是否异号 else: sign = -1 m = 1 # 记录当前除数是原除数的倍数 cnt = 0 # 记数 dd, dr = abs(dividend), abs(divisor) while dd >= abs(divisor): if dd < dr: # 如果当前除数太大,就重置除数 dr = abs(divisor) m = 1 dd -= dr cnt += m dr <<= 1 # 除数扩大为2倍 m <<= 1 # 更新倍数 if sign == - 1: # 如果异号 cnt = -cnt if cnt < -pow(2, 31) or cnt > pow(2, 31) - 1: cnt = pow(2, 31) - 1 return cnt class Solution: def divide(self, dividend: int, divisor: int): n = 1 cnt = 0 tmp_ds = abs(divisor) tmp_dd = abs(dividend) while tmp_dd >= abs(divisor): tmp_dd -= tmp_ds cnt += n tmp_ds += tmp_ds # 更新除数和倍数 n += n if tmp_dd < tmp_ds: # 重置除数和倍数 tmp_ds = abs(divisor) n = 1 if (dividend > 0 and divisor > 0) or (dividend < 0 and divisor < 0): sign = 1 else: sign = -1 if sign < 0: cnt = - cnt if not - pow(2, 31) <= cnt <= pow(2, 31) - 1: cnt = pow(2, 31) - 1 return cnt if __name__ == '__main__': print(divide(10, 3)) print(divide(10, 2)) print(divide(-1, -1)) print(divide(-1, 1)) print(divide(10, -2)) print(divide(10, -3))
27d2228fcf7d6359ffa01c55e6fa92812d23a53d
c7a6f8ed434c86b4cdae9c6144b9dd557e594f78
/ECE364/.PyCharm40/system/python_stubs/348993582/gtk/gdk/EventMask.py
d9b44af804a2c42a9f51aefc54aa18bc8e118408
[]
no_license
ArbalestV/Purdue-Coursework
75d979bbe72106975812b1d46b7d854e16e8e15e
ee7f86145edb41c17aefcd442fa42353a9e1b5d1
refs/heads/master
2020-08-29T05:27:52.342264
2018-04-03T17:59:01
2018-04-03T17:59:01
null
0
0
null
null
null
null
UTF-8
Python
false
false
1,178
py
# encoding: utf-8 # module gtk.gdk # from /usr/lib64/python2.6/site-packages/gtk-2.0/bonobo/ui.so # by generator 1.136 # no doc # imports from exceptions import Warning import gio as __gio import gobject as __gobject import gobject._gobject as __gobject__gobject import pango as __pango import pangocairo as __pangocairo class EventMask(__gobject.GFlags): # no doc def __init__(self, *args, **kwargs): # real signature unknown pass __weakref__ = property(lambda self: object(), lambda self, v: None, lambda self: None) # default """list of weak references to the object (if defined)""" __dict__ = None # (!) real value is '' __flags_values__ = { 2: 2, 4: 4, 8: 8, 16: 16, 32: 32, 64: 64, 128: 128, 256: 256, 512: 512, 1024: 1024, 2048: 2048, 4096: 4096, 8192: 8192, 16384: 16384, 32768: 32768, 65536: 65536, 131072: 131072, 262144: 262144, 524288: 524288, 1048576: 1048576, 2097152: 2097152, 4194302: 4194302, } __gtype__ = None # (!) real value is ''
16ea2edf996fdde207855365be0fe52b0d5e8b2d
05b0162d5ee7ab74f71ad4f21d5188a8735dfaef
/plugins/modules/telemetry_info.py
bda5b2c9f1557fd1446ffb91c4bca170ffd1fd56
[ "MIT" ]
permissive
steinzi/ansible-ise
567b2e6d04ce3ca6fbdbb6d0f15cd1913a1e215a
0add9c8858ed8e0e5e7219fbaf0c936b6d7cc6c0
refs/heads/main
2023-06-25T15:28:22.252820
2021-07-23T14:21:40
2021-07-23T14:21:40
388,820,896
0
0
MIT
2021-07-23T14:03:07
2021-07-23T14:03:06
null
UTF-8
Python
false
false
2,955
py
#!/usr/bin/python # -*- coding: utf-8 -*- # Copyright (c) 2021, Cisco Systems # GNU General Public License v3.0+ (see LICENSE or https://www.gnu.org/licenses/gpl-3.0.txt) DOCUMENTATION = r""" --- module: telemetry_info short_description: Information module for Telemetry Info description: - Get all Telemetry Info. - Get Telemetry Info by id. version_added: '1.0.0' author: Rafael Campos (@racampos) options: id: description: - Id path parameter. type: str page: description: - Page query parameter. Page number. type: int size: description: - Size query parameter. Number of objects returned per page. type: int filter: description: - > Filter query parameter. <br/> **Simple filtering** should be available through the filter query string parameter. The structure of a filter is a triplet of field operator and value separated with dots. More than one filter can be sent. The logical operator common to ALL filter criteria will be by default AND, and can be changed by using the "filterType=or" query string parameter. Each resource Data model description should specify if an attribute is a filtered field. <br/> Operator | Description <br/> ------------|----------------- <br/> EQ | Equals <br/> NEQ | Not Equals <br/> GT | Greater Than <br/> LT | Less Then <br/> STARTSW | Starts With <br/> NSTARTSW | Not Starts With <br/> ENDSW | Ends With <br/> NENDSW | Not Ends With <br/> CONTAINS | Contains <br/> NCONTAINS | Not Contains <br/>. type: list filterType: description: - > FilterType query parameter. The logical operator common to ALL filter criteria will be by default AND, and can be changed by using the parameter. type: str requirements: - ciscoisesdk seealso: # Reference by Internet resource - name: Telemetry Info reference description: Complete reference of the Telemetry Info object model. link: https://ciscoisesdk.readthedocs.io/en/latest/api/api.html#v3-0-0-summary """ EXAMPLES = r""" - name: Get all Telemetry Info cisco.ise.telemetry_info: ise_hostname: "{{ise_hostname}}" ise_username: "{{ise_username}}" ise_password: "{{ise_password}}" ise_verify: "{{ise_verify}}" page: 1 size: 20 filter: [] filterType: AND register: result - name: Get Telemetry Info by id cisco.ise.telemetry_info: ise_hostname: "{{ise_hostname}}" ise_username: "{{ise_username}}" ise_password: "{{ise_password}}" ise_verify: "{{ise_verify}}" id: string register: result """ RETURN = r""" ise_response: description: A dictionary or list with the response returned by the Cisco ISE Python SDK returned: always type: dict sample: > { "id": "string", "status": "string", "deploymentId": "string", "udiSN": "string", "link": { "rel": "string", "href": "string", "type": "string" } } """
d4c171602f31cd1882324afc4197bdd92fee1638
ee4f7d4a0d81e902520b339dd77e5960014fa339
/migrations/versions/bf3e0c0e76b8_.py
41ff51012432dcaffd146da5ebd531869980da86
[]
no_license
davejonesbkk/flask_by_example
96b8865fa9ab31f0887412ef152de221bf7661f3
9d9fad6afc85ed4cdbbd2f583029a3c29e2d035f
refs/heads/master
2016-09-12T20:56:51.007430
2016-05-08T04:39:56
2016-05-08T04:39:56
58,139,690
0
0
null
null
null
null
UTF-8
Python
false
false
849
py
"""empty message Revision ID: bf3e0c0e76b8 Revises: None Create Date: 2016-05-07 13:52:41.241555 """ # revision identifiers, used by Alembic. revision = 'bf3e0c0e76b8' down_revision = None from alembic import op import sqlalchemy as sa from sqlalchemy.dialects import postgresql def upgrade(): ### commands auto generated by Alembic - please adjust! ### op.create_table('results', sa.Column('id', sa.Integer(), nullable=False), sa.Column('url', sa.String(), nullable=True), sa.Column('result_all', postgresql.JSON(), nullable=True), sa.Column('result_no_stop_words', postgresql.JSON(), nullable=True), sa.PrimaryKeyConstraint('id') ) ### end Alembic commands ### def downgrade(): ### commands auto generated by Alembic - please adjust! ### op.drop_table('results') ### end Alembic commands ###
a412918ce5dcec8fee3151308724b448fd5d6002
433ca57245fe15afd309323e82f3bdf3287b4831
/core/migrations/0008_auto_20160307_2140.py
62fda1323eb7db7c7c2c7350624efb31a595440e
[]
no_license
greenteamer/ceiling-django
db5170faada0f1582c744fa28c638e8671dc2ab9
b4a469ae7d2ce6ed36ae51af60633de1fdb43ea4
refs/heads/master
2020-04-09T19:01:40.273226
2018-12-05T14:39:15
2018-12-05T14:39:15
160,531,789
0
0
null
null
null
null
UTF-8
Python
false
false
1,360
py
# -*- coding: utf-8 -*- # Generated by Django 1.9.4 on 2016-03-07 21:40 from __future__ import unicode_literals from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('core', '0007_auto_20160307_2129'), ] operations = [ migrations.CreateModel( name='Partners', fields=[ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('name', models.CharField(max_length=50, verbose_name='\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438')), ('logo', models.ImageField(blank=True, null=True, upload_to='partners', verbose_name='\u043b\u043e\u0433\u043e\u0442\u0438\u043f \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438')), ], options={ 'verbose_name': '\u041f\u0430\u0440\u0442\u043d\u0435\u0440', 'verbose_name_plural': '\u041f\u0430\u0440\u0442\u043d\u0435\u0442\u044b', }, ), migrations.AlterField( model_name='review', name='photo', field=models.ImageField(blank=True, null=True, upload_to='reviews', verbose_name='\u0424\u043e\u0442\u043e \u043a\u043b\u0438\u0435\u043d\u0442\u0430'), ), ]
5fcadfe2c989d6236fd9e16b9ef2e8f43df5ac97
acb8e84e3b9c987fcab341f799f41d5a5ec4d587
/langs/4/kxe.py
c40379199b994eb20da11cca988f332d3ab394a2
[]
no_license
G4te-Keep3r/HowdyHackers
46bfad63eafe5ac515da363e1c75fa6f4b9bca32
fb6d391aaecb60ab5c4650d4ae2ddd599fd85db2
refs/heads/master
2020-08-01T12:08:10.782018
2016-11-13T20:45:50
2016-11-13T20:45:50
73,624,224
0
1
null
null
null
null
UTF-8
Python
false
false
486
py
import sys def printFunction(lineRemaining): if lineRemaining[0] == '"' and lineRemaining[-1] == '"': if len(lineRemaining) > 2: #data to print lineRemaining = lineRemaining[1:-1] print ' '.join(lineRemaining) else: print def main(fileName): with open(fileName) as f: for line in f: data = line.split() if data[0] == 'kXE': printFunction(data[1:]) else: print 'ERROR' return if __name__ == '__main__': main(sys.argv[1])
b5b8943bbb5130ddcfdefa25858db25f6cc56290
1166cad08dd1b57ce5a48721fac9c3c58426c431
/pyBlackScholesAnalytics/example_options_IV.py
76e281499403f56f0972f935f50a534b04a368c3
[]
no_license
gabrielepompa88/IT-For-Business-And-Finance-2019-20
411956bc1999b1bc3a83494ac23e5d32cb6bf263
7c0ecab93a13ebcd62de0d00615320fee0af6bb4
refs/heads/master
2021-07-16T09:49:41.808308
2021-03-07T12:35:37
2021-03-07T12:35:37
241,672,404
6
6
null
null
null
null
UTF-8
Python
false
false
5,627
py
""" Created by: Gabriele Pompa ([email protected]) File: example_options_IV.py Created on Tue Jul 14 2020 - Version: 1.0 Description: This script shows usage of PlainVanillaOption and DigitalOption classes to compute of Black-Scholes implied volatility surfaces for plain-vanilla and digital option contracts. """ import numpy as np import pandas as pd import warnings from market.market import MarketEnvironment from options.options import PlainVanillaOption, DigitalOption warnings.filterwarnings("ignore") def option_factory(mkt_env, plain_or_digital, option_type): option_dispatcher = { "plain_vanilla": {"call": PlainVanillaOption(mkt_env), "put": PlainVanillaOption(mkt_env, option_type="put") }, "digital": {"call": DigitalOption(mkt_env), "put": DigitalOption(mkt_env, option_type="put") } } return option_dispatcher[plain_or_digital][option_type] def main(): # # Black-Scholes implied volatility calculation with user-defined 'sigma' # parameter surface, used to evaluate the quality of the implied volatility # calculation. # # output format: pd.DataFrame np_output = False # default market environment market_env = MarketEnvironment() print(market_env) # define option style and type opt_style = "plain_vanilla" # "digital" opt_type = "call" # "call" # "put" option = option_factory(market_env, opt_style, opt_type) print(option) # K K_vector = [50, 75, 100, 125, 150] # tau: a date-range of 5 valuation dates between t and T-10d n = 6 valuation_date = option.get_t() expiration_date = option.get_T() t_vector = pd.date_range(start=valuation_date, end=expiration_date-pd.Timedelta(days=25), periods=n) # sigma (qualitatively reproducing the smile) k, tau = np.meshgrid(K_vector, option.time_to_maturity(t=t_vector)) sigma_grid_K = 0.01 + ((k - 100)**2)/(100*k)/tau # pricing parameters param_dict = {"S": 100, "K": K_vector, "t": t_vector, "sigma": sigma_grid_K, "r": 0.01, "np_output": np_output} print("Parameters:") print("S: {}".format(param_dict["S"])) print("K: {}".format(param_dict["K"])) print("t: {}".format(param_dict["t"])) print("sigma: \n{}".format(param_dict["sigma"])) print("r: {}\n".format(param_dict["r"])) # expected implied volatility: is the 'sigma' parameter with which the # target price has been generated expected_IV = pd.DataFrame(data=param_dict["sigma"], columns=K_vector, index=t_vector) expected_IV.rename_axis('K', axis = 'columns', inplace=True) expected_IV.rename_axis('t', axis = 'rows', inplace=True) print("\nExpected Kxt Implied volatiltiy Surface: \n", expected_IV) # # Without target_price in input: param_dict['sigma'] parameter is # used to construct target price, used in minimization # print("\n--- WITHOUT target_price in input ---\n") # newton method param_dict["minimization_method"] = "Newton" newton_IV = option.implied_volatility(**param_dict) RMSE_newton = np.sqrt(np.nanmean((newton_IV - expected_IV)**2)) RMSRE_newton = np.sqrt(np.nanmean(((newton_IV - expected_IV)/expected_IV)**2)) print("\nImplied Volatility - Newton method - Metrics (NaN excluded): RMSE={:.1E}, RMSRE={:.1E}:\n"\ .format(RMSE_newton, RMSRE_newton), newton_IV) # Least=Squares method param_dict["minimization_method"] = "Least-Squares" ls_IV = option.implied_volatility(**param_dict) RMSE_ls = np.sqrt(np.nanmean((ls_IV - expected_IV)**2)) RMSRE_ls = np.sqrt(np.nanmean(((ls_IV - expected_IV)/expected_IV)**2)) print("\nImplied Volatility - Least-Squares constrained method - Metrics (NaN excluded): RMSE={:.1E}, RMSRE={:.1E}:\n"\ .format(RMSE_ls, RMSRE_ls), ls_IV) # # With target_price in input: target_price, but no param_dict['sigma'], # is used in minimization. # print("\n--- WITH target_price in input ---\n") # compute target price target_price = option.price(**param_dict) print("\nTarget Price in input: \n", target_price) # Add target_price to parameters dictionary: param_dict['target_price'] = target_price # newton method param_dict["minimization_method"] = "Newton" newton_IV = option.implied_volatility(**param_dict) RMSE_newton = np.sqrt(np.nanmean((newton_IV - expected_IV)**2)) RMSRE_newton = np.sqrt(np.nanmean(((newton_IV - expected_IV)/expected_IV)**2)) print("\nImplied Volatility - Newton method - Metrics (NaN excluded): RMSE={:.1E}, RMSRE={:.1E}:\n"\ .format(RMSE_newton, RMSRE_newton), newton_IV) # Least=Squares method param_dict["minimization_method"] = "Least-Squares" ls_IV = option.implied_volatility(**param_dict) RMSE_ls = np.sqrt(np.nanmean((ls_IV - expected_IV)**2)) RMSRE_ls = np.sqrt(np.nanmean(((ls_IV - expected_IV)/expected_IV)**2)) print("\nImplied Volatility - Least-Squares constrained method - Metrics (NaN excluded): RMSE={:.1E}, RMSRE={:.1E}:\n"\ .format(RMSE_ls, RMSRE_ls), ls_IV) #----------------------------- usage example ---------------------------------# if __name__ == "__main__": main()
20837687ebe33143cbbc0a6ecf06987128e7ddcd
e5d83ede8521027b05d9b91c43be8cab168610e6
/0x0F-python-object_relational_mapping/11-model_state_insert.py
3b320438e74aeaf232b7feb9798f734e04f290b2
[]
no_license
Danielo814/holbertonschool-higher_level_programming
8918c3a6a9c136137761d47c5162b650708dd5cd
832b692529198bbee44d2733464aedfe650bff7e
refs/heads/master
2020-03-28T11:09:00.343055
2019-02-22T03:33:54
2019-02-22T03:33:54
148,181,433
1
0
null
null
null
null
UTF-8
Python
false
false
658
py
#!/usr/bin/python3 """ '11-model_state_insert' module, uses sqlalchemy to list state objects from a database """ if __name__ == '__main__': from model_state import Base, State from sqlalchemy import create_engine from sqlalchemy.orm import sessionmaker import sys engine = create_engine("mysql+mysqldb://{}:{}@localhost/{}" .format(sys.argv[1], sys.argv[2], sys.argv[3])) Base.metadata.create_all(bind=engine) Session = sessionmaker(bind=engine) session = Session() state = State(name="Louisiana") session.add(state) session.commit() print("{}".format(state.id)) session.close()
59c36e7a733d2586f940c8d7f2cda193587e2e64
321b4ed83b6874eeb512027eaa0b17b0daf3c289
/631/631.design-excel-sum-formula.233766026.Accepted.leetcode.py
43c751d9a3847fbc50be93236347e9397d60a780
[]
no_license
huangyingw/submissions
7a610613bdb03f1223cdec5f6ccc4391149ca618
bfac1238ecef8b03e54842b852f6fec111abedfa
refs/heads/master
2023-07-25T09:56:46.814504
2023-07-16T07:38:36
2023-07-16T07:38:36
143,352,065
0
1
null
null
null
null
UTF-8
Python
false
false
1,185
py
class Excel(object): def _indices(self, r, c): return [r - 1, ord(c) - ord("A")] def __init__(self, H, W): rows, cols = self._indices(H, W) self.excel = [[0 for _ in range(cols + 1)] for _ in range(rows + 1)] def set(self, r, c, v): r, c, = self._indices(r, c) self.excel[r][c] = v def get(self, r, c): r, c = self._indices(r, c) return self.get_i(r, c) def get_i(self, r, c): contents = self.excel[r][c] if isinstance(contents, int): return contents total = 0 for cells in contents: cell_range = cells.split(":") r1, c1 = self._indices(int(cell_range[0][1:]), cell_range[0][0]) if len(cell_range) == 1: r2, c2 = r1, c1 else: r2, c2 = self._indices(int(cell_range[1][1:]), cell_range[1][0]) for row in range(r1, r2 + 1): for col in range(c1, c2 + 1): total += self.get_i(row, col) return total def sum(self, r, c, strs): r, c = self._indices(r, c) self.excel[r][c] = strs return self.get_i(r, c)
181c63752e67f0a960150c332ecb3bf92cf34a26
acb8e84e3b9c987fcab341f799f41d5a5ec4d587
/langs/9/vtv.py
505b75b184887e252648e4584542cf114b232a69
[]
no_license
G4te-Keep3r/HowdyHackers
46bfad63eafe5ac515da363e1c75fa6f4b9bca32
fb6d391aaecb60ab5c4650d4ae2ddd599fd85db2
refs/heads/master
2020-08-01T12:08:10.782018
2016-11-13T20:45:50
2016-11-13T20:45:50
73,624,224
0
1
null
null
null
null
UTF-8
Python
false
false
486
py
import sys def printFunction(lineRemaining): if lineRemaining[0] == '"' and lineRemaining[-1] == '"': if len(lineRemaining) > 2: #data to print lineRemaining = lineRemaining[1:-1] print ' '.join(lineRemaining) else: print def main(fileName): with open(fileName) as f: for line in f: data = line.split() if data[0] == 'vTV': printFunction(data[1:]) else: print 'ERROR' return if __name__ == '__main__': main(sys.argv[1])
365ceaa7222b7532942e6aad67b9545a9a634088
65c3e7139829829dd1410228e17f85c285ab0706
/Aniyom Ebenezer/phase 1/python 2 basis/Day_25_Challenge_Solution/Question 5 Solution.py
5ceac0d832e2fe6730aa996bf1728961909326a7
[ "MIT" ]
permissive
eaniyom/python-challenge-solutions
167e9d897d0a72f1e264ff2fed0e4cc5541b0164
21f91e06421afe06b472d391429ee2138c918c38
refs/heads/master
2022-11-24T02:57:39.920755
2020-08-05T09:23:04
2020-08-05T09:23:04
277,686,791
1
0
MIT
2020-07-07T01:31:00
2020-07-07T01:30:59
null
UTF-8
Python
false
false
686
py
""" From Wikipedia: An isogram (also known as a "nonpattern word") is a logological term for a word or phrase without a repeating letter. It is also used by some people to mean a word or phrase in which each letter appears the same number of times, not necessarily just once. Conveniently, the word itself is an isogram in both senses of the word, making it autological. Write a Python program to check whether a given string is an "isogram" or not. Sample Output: False True True False """ def check_isogram(str1): return len(str1) == len(set(str1.lower())) print(check_isogram("w3resource")) print(check_isogram("w3r")) print(check_isogram("Python")) print(check_isogram("Java"))
7a592cdf6a9b54e598ddd17945122d921db69bb3
7548c8efccb43b1d8daec719bd7d8ad4a4d03630
/Check Completeness of a Binary Tree/Leetcode_958.py
0a338ef629921b6783c50f373af6e33940a2e591
[]
no_license
arw2019/AlgorithmsDataStructures
fdb2d462ded327857d72245721d3c9677ba1617b
9164c21ab011c90944f844e3c359093ce6180223
refs/heads/master
2023-02-17T11:50:07.418705
2021-01-19T19:37:17
2021-01-19T19:37:17
204,222,584
0
0
null
null
null
null
UTF-8
Python
false
false
492
py
# Definition for a binary tree node. # class TreeNode: # def __init__(self, x): # self.val = x # self.left = None # self.right = None from collections import deque class Solution: def isCompleteTree(self, root: TreeNode) -> bool: levelOrder = [root] i = 0 while levelOrder[i]: levelOrder.append(levelOrder[i].left) levelOrder.append(levelOrder[i].right) i += 1 return not any(levelOrder[i:])
e3d45c0faaf86b27d3e9a66e838c30803505fdcd
acb8e84e3b9c987fcab341f799f41d5a5ec4d587
/langs/8/sN5.py
37a225513018600c0b319a3af69b558ec72dabd4
[]
no_license
G4te-Keep3r/HowdyHackers
46bfad63eafe5ac515da363e1c75fa6f4b9bca32
fb6d391aaecb60ab5c4650d4ae2ddd599fd85db2
refs/heads/master
2020-08-01T12:08:10.782018
2016-11-13T20:45:50
2016-11-13T20:45:50
73,624,224
0
1
null
null
null
null
UTF-8
Python
false
false
486
py
import sys def printFunction(lineRemaining): if lineRemaining[0] == '"' and lineRemaining[-1] == '"': if len(lineRemaining) > 2: #data to print lineRemaining = lineRemaining[1:-1] print ' '.join(lineRemaining) else: print def main(fileName): with open(fileName) as f: for line in f: data = line.split() if data[0] == 'sN5': printFunction(data[1:]) else: print 'ERROR' return if __name__ == '__main__': main(sys.argv[1])
5a14f95c907ff7ad332c002c84f30f49f49b8cdf
2059f378d07c7c067aca01b835502472a2eb3f27
/app/run.py
362e8d3b40fee57c62f770dd56f46083595f82c5
[]
no_license
zhangliang852469/FlaskLogin
d51a79d63c4a812dc6764f1892efb7ba37c13b9f
fbdccdca5cfb947b6a77cbb27e17d9792799463c
refs/heads/master
2020-04-23T20:10:12.595991
2019-02-19T07:44:13
2019-02-19T07:44:13
171,430,398
0
0
null
null
null
null
UTF-8
Python
false
false
93
py
#!/usr/bin/env python3 # -*- coding:utf-8 -*- from app import app app.run( debug=True )
3a38b3a0c03e6b40a19ba9eca87d5c6ad252d8c7
853d4cec42071b76a80be38c58ffe0fbf9b9dc34
/venv/Lib/site-packages/pip/_vendor/distlib/version.py
df4c094a926591eda8f0a2f518c0a097f745ebc2
[]
no_license
msainTesting/TwitterAnalysis
5e1646dbf40badf887a86e125ef30a9edaa622a4
b1204346508ba3e3922a52380ead5a8f7079726b
refs/heads/main
2023-08-28T08:29:28.924620
2021-11-04T12:36:30
2021-11-04T12:36:30
424,242,582
0
0
null
null
null
null
UTF-8
Python
false
false
24,252
py
# -*- coding: utf-8 -*- # # Copyright (C) 2012-2017 The Python Software Foundation. # See LICENSE.txt and CONTRIBUTORS.txt. # """ Implementation of a flexible versioning scheme providing support for PEP-440, setuptools-compatible and semantic versioning. """ import logging import re from .compat import string_types from .util import parse_requirement __all__ = ['NormalizedVersion', 'NormalizedMatcher', 'LegacyVersion', 'LegacyMatcher', 'SemanticVersion', 'SemanticMatcher', 'UnsupportedVersionError', 'get_scheme'] logger = logging.getLogger(__name__) class UnsupportedVersionError(ValueError): """This is an unsupported version.""" pass class Version(object): def __init__(self, s): self._string = s = s.strip() self._parts = parts = self.parse(s) assert isinstance(parts, tuple) assert len(parts) > 0 def parse(self, s): raise NotImplementedError('please implement in a subclass') def _check_compatible(self, other): if type(self) != type(other): raise TypeError('cannot compare %r and %r' % (self, other)) def __eq__(self, other): self._check_compatible(other) return self._parts == other._parts def __ne__(self, other): return not self.__eq__(other) def __lt__(self, other): self._check_compatible(other) return self._parts < other._parts def __gt__(self, other): return not (self.__lt__(other) or self.__eq__(other)) def __le__(self, other): return self.__lt__(other) or self.__eq__(other) def __ge__(self, other): return self.__gt__(other) or self.__eq__(other) # See http://docs.python.org/reference/datamodel#object.__hash__ def __hash__(self): return hash(self._parts) def __repr__(self): return "%s('%s')" % (self.__class__.__name__, self._string) def __str__(self): return self._string @property def is_prerelease(self): raise NotImplementedError('Please implement in subclasses.') class Matcher(object): version_class = None # value is either a callable or the name of a method _operators = { '<': lambda v, c, p: v < c, '>': lambda v, c, p: v > c, '<=': lambda v, c, p: v == c or v < c, '>=': lambda v, c, p: v == c or v > c, '==': lambda v, c, p: v == c, '===': lambda v, c, p: v == c, # by default, compatible => >=. '~=': lambda v, c, p: v == c or v > c, '!=': lambda v, c, p: v != c, } # this is a method only to support alternative implementations # via overriding def parse_requirement(self, s): return parse_requirement(s) def __init__(self, s): if self.version_class is None: raise ValueError('Please specify a version class') self._string = s = s.strip() r = self.parse_requirement(s) if not r: raise ValueError('Not valid: %r' % s) self.name = r.name self.key = self.name.lower() # for case-insensitive comparisons clist = [] if r.constraints: # import pdb; pdb.set_trace() for op, s in r.constraints: if s.endswith('.*'): if op not in ('==', '!='): raise ValueError('\'.*\' not allowed for ' '%r constraints' % op) # Could be a partial version (e.g. for '2.*') which # won't parse as a version, so keep it as a string vn, prefix = s[:-2], True # Just to check that vn is a valid version self.version_class(vn) else: # Should parse as a version, so we can create an # instance for the comparison vn, prefix = self.version_class(s), False clist.append((op, vn, prefix)) self._parts = tuple(clist) def match(self, version): """ Check if the provided version matches the constraints. :param version: The version to match against this instance. :type version: String or :class:`Version` instance. """ if isinstance(version, string_types): version = self.version_class(version) for operator, constraint, prefix in self._parts: f = self._operators.get(operator) if isinstance(f, string_types): f = getattr(self, f) if not f: msg = ('%r not implemented ' 'for %s' % (operator, self.__class__.__name__)) raise NotImplementedError(msg) if not f(version, constraint, prefix): return False return True @property def exact_version(self): result = None if len(self._parts) == 1 and self._parts[0][0] in ('==', '==='): result = self._parts[0][1] return result def _check_compatible(self, other): if type(self) != type(other) or self.name != other.name: raise TypeError('cannot compare %s and %s' % (self, other)) def __eq__(self, other): self._check_compatible(other) return self.key == other.key and self._parts == other._parts def __ne__(self, other): return not self.__eq__(other) # See http://docs.python.org/reference/datamodel#object.__hash__ def __hash__(self): return hash(self.key) + hash(self._parts) def __repr__(self): return "%s(%r)" % (self.__class__.__name__, self._string) def __str__(self): return self._string PEP440_VERSION_RE = re.compile(r'^v?(\d+!)?(\d+(\.\d+)*)((a|b|c|rc)(\d+))?' r'(\.(post)(\d+))?(\.(dev)(\d+))?' r'(\+([a-zA-Z\d]+(\.[a-zA-Z\d]+)?))?$') def _pep_440_key(s): s = s.strip() m = PEP440_VERSION_RE.match(s) if not m: raise UnsupportedVersionError('Not a valid version: %s' % s) groups = m.groups() nums = tuple(int(v) for v in groups[1].split('.')) while len(nums) > 1 and nums[-1] == 0: nums = nums[:-1] if not groups[0]: epoch = 0 else: epoch = int(groups[0][:-1]) pre = groups[4:6] post = groups[7:9] dev = groups[10:12] local = groups[13] if pre == (None, None): pre = () else: pre = pre[0], int(pre[1]) if post == (None, None): post = () else: post = post[0], int(post[1]) if dev == (None, None): dev = () else: dev = dev[0], int(dev[1]) if local is None: local = () else: parts = [] for part in local.split('.'): # to ensure that numeric compares as > lexicographic, avoid # comparing them directly, but encode a tuple which ensures # correct sorting if part.isdigit(): part = (1, int(part)) else: part = (0, part) parts.append(part) local = tuple(parts) if not pre: # either before pre-release, or final release and after if not post and dev: # before pre-release pre = ('a', -1) # to sort before a0 else: pre = ('z',) # to sort after all pre-releases # now look at the state of post and dev. if not post: post = ('_',) # sort before 'a' if not dev: dev = ('final',) #print('%s -> %s' % (s, m.groups())) return epoch, nums, pre, post, dev, local _normalized_key = _pep_440_key class NormalizedVersion(Version): """A rational version. Good: 1.2 # equivalent to "1.2.0" 1.2.0 1.2a1 1.2.3a2 1.2.3b1 1.2.3c1 1.2.3.4 TODO: fill this out Bad: 1 # minimum two numbers 1.2a # release level must have a release serial 1.2.3b """ def parse(self, s): result = _normalized_key(s) # _normalized_key loses trailing zeroes in the release # clause, since that's needed to ensure that X.Y == X.Y.0 == X.Y.0.0 # However, PEP 440 prefix matching needs it: for example, # (~= 1.4.5.0) matches differently to (~= 1.4.5.0.0). m = PEP440_VERSION_RE.match(s) # must succeed groups = m.groups() self._release_clause = tuple(int(v) for v in groups[1].split('.')) return result PREREL_TAGS = set(['a', 'b', 'c', 'rc', 'dev']) @property def is_prerelease(self): return any(t[0] in self.PREREL_TAGS for t in self._parts if t) def _match_prefix(x, y): x = str(x) y = str(y) if x == y: return True if not x.startswith(y): return False n = len(y) return x[n] == '.' class NormalizedMatcher(Matcher): version_class = NormalizedVersion # value is either a callable or the name of a method _operators = { '~=': '_match_compatible', '<': '_match_lt', '>': '_match_gt', '<=': '_match_le', '>=': '_match_ge', '==': '_match_eq', '===': '_match_arbitrary', '!=': '_match_ne', } def _adjust_local(self, version, constraint, prefix): if prefix: strip_local = '+' not in constraint and version._parts[-1] else: # both constraint and version are # NormalizedVersion instances. # If constraint does not have a local component, # ensure the version doesn't, either. strip_local = not constraint._parts[-1] and version._parts[-1] if strip_local: s = version._string.split('+', 1)[0] version = self.version_class(s) return version, constraint def _match_lt(self, version, constraint, prefix): version, constraint = self._adjust_local(version, constraint, prefix) if version >= constraint: return False release_clause = constraint._release_clause pfx = '.'.join([str(i) for i in release_clause]) return not _match_prefix(version, pfx) def _match_gt(self, version, constraint, prefix): version, constraint = self._adjust_local(version, constraint, prefix) if version <= constraint: return False release_clause = constraint._release_clause pfx = '.'.join([str(i) for i in release_clause]) return not _match_prefix(version, pfx) def _match_le(self, version, constraint, prefix): version, constraint = self._adjust_local(version, constraint, prefix) return version <= constraint def _match_ge(self, version, constraint, prefix): version, constraint = self._adjust_local(version, constraint, prefix) return version >= constraint def _match_eq(self, version, constraint, prefix): version, constraint = self._adjust_local(version, constraint, prefix) if not prefix: result = (version == constraint) else: result = _match_prefix(version, constraint) return result def _match_arbitrary(self, version, constraint, prefix): return str(version) == str(constraint) def _match_ne(self, version, constraint, prefix): version, constraint = self._adjust_local(version, constraint, prefix) if not prefix: result = (version != constraint) else: result = not _match_prefix(version, constraint) return result def _match_compatible(self, version, constraint, prefix): version, constraint = self._adjust_local(version, constraint, prefix) if version == constraint: return True if version < constraint: return False # if not prefix: # return True release_clause = constraint._release_clause if len(release_clause) > 1: release_clause = release_clause[:-1] pfx = '.'.join([str(i) for i in release_clause]) return _match_prefix(version, pfx) _REPLACEMENTS = ( (re.compile('[.+-]$'), ''), # remove trailing puncts (re.compile(r'^[.](\d)'), r'0.\1'), # .N -> 0.N at start (re.compile('^[.-]'), ''), # remove leading puncts (re.compile(r'^\((.*)\)$'), r'\1'), # remove parentheses (re.compile(r'^v(ersion)?\s*(\d+)'), r'\2'), # remove leading v(ersion) (re.compile(r'^r(ev)?\s*(\d+)'), r'\2'), # remove leading v(ersion) (re.compile('[.]{2,}'), '.'), # multiple runs of '.' (re.compile(r'\b(alfa|apha)\b'), 'alpha'), # misspelt alpha (re.compile(r'\b(pre-alpha|prealpha)\b'), 'pre.alpha'), # standardise (re.compile(r'\(beta\)$'), 'beta'), # remove parentheses ) _SUFFIX_REPLACEMENTS = ( (re.compile('^[:~._+-]+'), ''), # remove leading puncts (re.compile('[,*")([\\]]'), ''), # remove unwanted chars (re.compile('[~:+_ -]'), '.'), # replace illegal chars (re.compile('[.]{2,}'), '.'), # multiple runs of '.' (re.compile(r'\.$'), ''), # trailing '.' ) _NUMERIC_PREFIX = re.compile(r'(\d+(\.\d+)*)') def _suggest_semantic_version(s): """ Try to suggest a semantic form for a version for which _suggest_normalized_version couldn't come up with anything. """ result = s.strip().lower() for pat, repl in _REPLACEMENTS: result = pat.sub(repl, result) if not result: result = '0.0.0' # Now look for numeric prefix, and separate it out from # the rest. #import pdb; pdb.set_trace() m = _NUMERIC_PREFIX.match(result) if not m: prefix = '0.0.0' suffix = result else: prefix = m.groups()[0].split('.') prefix = [int(i) for i in prefix] while len(prefix) < 3: prefix.append(0) if len(prefix) == 3: suffix = result[m.end():] else: suffix = '.'.join([str(i) for i in prefix[3:]]) + result[m.end():] prefix = prefix[:3] prefix = '.'.join([str(i) for i in prefix]) suffix = suffix.strip() if suffix: #import pdb; pdb.set_trace() # massage the suffix. for pat, repl in _SUFFIX_REPLACEMENTS: suffix = pat.sub(repl, suffix) if not suffix: result = prefix else: sep = '-' if 'dev' in suffix else '+' result = prefix + sep + suffix if not is_semver(result): result = None return result def _suggest_normalized_version(s): """Suggest a normalized version close to the given version string. If you have a version string that isn't rational (i.e. NormalizedVersion doesn't like it) then you might be able to get an equivalent (or close) rational version from this function. This does a number of simple normalizations to the given string, based on observation of versions currently in use on PyPI. Given a dump of those version during PyCon 2009, 4287 of them: - 2312 (53.93%) match NormalizedVersion without change with the automatic suggestion - 3474 (81.04%) match when using this suggestion method @param s {str} An irrational version string. @returns A rational version string, or None, if couldn't determine one. """ try: _normalized_key(s) return s # already rational except UnsupportedVersionError: pass rs = s.lower() # part of this could use maketrans for orig, repl in (('-alpha', 'a'), ('-beta', 'b'), ('alpha', 'a'), ('beta', 'b'), ('rc', 'c'), ('-final', ''), ('-pre', 'c'), ('-release', ''), ('.release', ''), ('-stable', ''), ('+', '.'), ('_', '.'), (' ', ''), ('.final', ''), ('final', '')): rs = rs.replace(orig, repl) # if something ends with dev or pre, we add a 0 rs = re.sub(r"pre$", r"pre0", rs) rs = re.sub(r"dev$", r"dev0", rs) # if we have something like "b-2" or "a.2" at the end of the # version, that is probably beta, alpha, etc # let's remove the dash or dot rs = re.sub(r"([abc]|rc)[\-\.](\d+)$", r"\1\2", rs) # 1.0-dev-r371 -> 1.0.dev371 # 0.1-dev-r79 -> 0.1.dev79 rs = re.sub(r"[\-\.](dev)[\-\.]?r?(\d+)$", r".\1\2", rs) # Clean: 2.0.a.3, 2.0.b1, 0.9.0~c1 rs = re.sub(r"[.~]?([abc])\.?", r"\1", rs) # Clean: v0.3, v1.0 if rs.startswith('v'): rs = rs[1:] # Clean leading '0's on numbers. #TODO: unintended side-effect on, e.g., "2003.05.09" # PyPI stats: 77 (~2%) better rs = re.sub(r"\b0+(\d+)(?!\d)", r"\1", rs) # Clean a/b/c with no version. E.g. "1.0a" -> "1.0a0". Setuptools infers # zero. # PyPI stats: 245 (7.56%) better rs = re.sub(r"(\d+[abc])$", r"\g<1>0", rs) # the 'dev-rNNN' tag is a dev tag rs = re.sub(r"\.?(dev-r|dev\.r)\.?(\d+)$", r".dev\2", rs) # clean the - when used as a pre delimiter rs = re.sub(r"-(a|b|c)(\d+)$", r"\1\2", rs) # a terminal "dev" or "devel" can be changed into ".dev0" rs = re.sub(r"[\.\-](dev|devel)$", r".dev0", rs) # a terminal "dev" can be changed into ".dev0" rs = re.sub(r"(?![\.\-])dev$", r".dev0", rs) # a terminal "final" or "stable" can be removed rs = re.sub(r"(final|stable)$", "", rs) # The 'r' and the '-' tags are post release tags # 0.4a1.r10 -> 0.4a1.post10 # 0.9.33-17222 -> 0.9.33.post17222 # 0.9.33-r17222 -> 0.9.33.post17222 rs = re.sub(r"\.?(r|-|-r)\.?(\d+)$", r".post\2", rs) # Clean 'r' instead of 'dev' usage: # 0.9.33+r17222 -> 0.9.33.dev17222 # 1.0dev123 -> 1.0.dev123 # 1.0.git123 -> 1.0.dev123 # 1.0.bzr123 -> 1.0.dev123 # 0.1a0dev.123 -> 0.1a0.dev123 # PyPI stats: ~150 (~4%) better rs = re.sub(r"\.?(dev|git|bzr)\.?(\d+)$", r".dev\2", rs) # Clean '.pre' (normalized from '-pre' above) instead of 'c' usage: # 0.2.pre1 -> 0.2c1 # 0.2-c1 -> 0.2c1 # 1.0preview123 -> 1.0c123 # PyPI stats: ~21 (0.62%) better rs = re.sub(r"\.?(pre|preview|-c)(\d+)$", r"c\g<2>", rs) # Tcl/Tk uses "px" for their post release markers rs = re.sub(r"p(\d+)$", r".post\1", rs) try: _normalized_key(rs) except UnsupportedVersionError: rs = None return rs # # Legacy version processing (distribute-compatible) # _VERSION_PART = re.compile(r'([a-z]+|\d+|[\.-])', re.I) _VERSION_REPLACE = { 'pre': 'c', 'preview': 'c', '-': 'final-', 'rc': 'c', 'dev': '@', '': None, '.': None, } def _legacy_key(s): def get_parts(s): result = [] for p in _VERSION_PART.split(s.lower()): p = _VERSION_REPLACE.get(p, p) if p: if '0' <= p[:1] <= '9': p = p.zfill(8) else: p = '*' + p result.append(p) result.append('*final') return result result = [] for p in get_parts(s): if p.startswith('*'): if p < '*final': while result and result[-1] == '*final-': result.pop() while result and result[-1] == '00000000': result.pop() result.append(p) return tuple(result) class LegacyVersion(Version): def parse(self, s): return _legacy_key(s) @property def is_prerelease(self): result = False for x in self._parts: if (isinstance(x, string_types) and x.startswith('*') and x < '*final'): result = True break return result class LegacyMatcher(Matcher): version_class = LegacyVersion _operators = dict(Matcher._operators) _operators['~='] = '_match_compatible' numeric_re = re.compile(r'^(\d+(\.\d+)*)') def _match_compatible(self, version, constraint, prefix): if version < constraint: return False m = self.numeric_re.match(str(constraint)) if not m: logger.warning('Cannot compute compatible match for version %s ' ' and constraint %s', version, constraint) return True s = m.groups()[0] if '.' in s: s = s.rsplit('.', 1)[0] return _match_prefix(version, s) # # Semantic versioning # _SEMVER_RE = re.compile(r'^(\d+)\.(\d+)\.(\d+)' r'(-[a-z0-9]+(\.[a-z0-9-]+)*)?' r'(\+[a-z0-9]+(\.[a-z0-9-]+)*)?$', re.I) def is_semver(s): return _SEMVER_RE.match(s) def _semantic_key(s): def make_tuple(s, absent): if s is None: result = (absent,) else: parts = s[1:].split('.') # We can't compare ints and strings on Python 3, so fudge it # by zero-filling numeric values so simulate a numeric comparison result = tuple([p.zfill(8) if p.isdigit() else p for p in parts]) return result m = is_semver(s) if not m: raise UnsupportedVersionError(s) groups = m.groups() major, minor, patch = [int(i) for i in groups[:3]] # choose the '|' and '*' so that versions sort correctly pre, build = make_tuple(groups[3], '|'), make_tuple(groups[5], '*') return (major, minor, patch), pre, build class SemanticVersion(Version): def parse(self, s): return _semantic_key(s) @property def is_prerelease(self): return self._parts[1][0] != '|' class SemanticMatcher(Matcher): version_class = SemanticVersion class VersionScheme(object): def __init__(self, key, matcher, suggester=None): self.key = key self.matcher = matcher self.suggester = suggester def is_valid_version(self, s): try: self.matcher.version_class(s) result = True except UnsupportedVersionError: result = False return result def is_valid_matcher(self, s): try: self.matcher(s) result = True except UnsupportedVersionError: result = False return result def is_valid_constraint_list(self, s): """ Used for processing some metadata fields """ # See issue #140. Be tolerant of a single trailing comma. if s.endswith(','): s = s[:-1] return self.is_valid_matcher('dummy_name (%s)' % s) def suggest(self, s): if self.suggester is None: result = None else: result = self.suggester(s) return result _SCHEMES = { 'normalized': VersionScheme(_normalized_key, NormalizedMatcher, _suggest_normalized_version), 'legacy': VersionScheme(_legacy_key, LegacyMatcher, lambda self, s: s), 'semantic': VersionScheme(_semantic_key, SemanticMatcher, _suggest_semantic_version), } _SCHEMES['default'] = _SCHEMES['normalized'] def get_scheme(name): if name not in _SCHEMES: raise ValueError('unknown scheme name: %r' % name) return _SCHEMES[name]
743fb306d02fdd8647e4e3fdc698e0da32610bad
f13acd0d707ea9ab0d2f2f010717b35adcee142f
/upsolve/ABC/abc077/c/main.py
0d82c8873315de4343231f2620a0fa633e717d3a
[ "CC0-1.0", "LicenseRef-scancode-public-domain" ]
permissive
KATO-Hiro/AtCoder
126b9fe89fa3a7cffcbd1c29d42394e7d02fa7c7
bf43320bc1af606bfbd23c610b3432cddd1806b9
refs/heads/master
2023-08-18T20:06:42.876863
2023-08-17T23:45:21
2023-08-17T23:45:21
121,067,516
4
0
CC0-1.0
2023-09-14T21:59:38
2018-02-11T00:32:45
Python
UTF-8
Python
false
false
1,196
py
# -*- coding: utf-8 -*- from bisect import bisect_left, bisect_right from typing import List def bisect_lt(sorted_array: List[int], value: int): """Find the largest element < x and its index, or None if it doesn't exist.""" if sorted_array[0] < value: index: int = bisect_left(sorted_array, value) - 1 return index, sorted_array[index] return None, None def bisect_gt(sorted_array: List[int], value: int): """Find the smallest element > x and its index, or None if it doesn't exist.""" if sorted_array[-1] > value: index: int = bisect_right(sorted_array, value) return index, sorted_array[index] return None, None def main(): import sys input = sys.stdin.readline n = int(input()) a = sorted(list(map(int, input().split()))) b = sorted(list(map(int, input().split()))) c = sorted(list(map(int, input().split()))) # bを固定して、aとcを二分探索 ans = 0 for bi in b: i, _ = bisect_lt(a, bi) j, _ = bisect_gt(c, bi) if i is None or j is None: continue ans += (i + 1) * (n - j) print(ans) if __name__ == "__main__": main()
78a0851ea9299d16a556f87dd0545a5c9477d748
21dfcc44840cb94058bcd014946f2a38fbf30c54
/scripts/EmuSo.py
d0f8e85d777d129c382cb83107cca556152999c8
[ "SGI-B-2.0", "MIT", "Libpng", "BSD-3-Clause", "LicenseRef-scancode-glut", "Zlib", "LicenseRef-scancode-public-domain", "BSD-2-Clause", "Unlicense" ]
permissive
nigels-com/regal
819a74deeeac00860bcb6f21c3e59ccad1b78448
3f1a06d5c098339d30221c9e999640e4c5437a0b
refs/heads/master
2020-12-14T16:19:29.701418
2015-10-18T08:57:48
2015-10-18T08:58:56
9,986,650
2
3
null
2014-07-12T07:28:49
2013-05-10T17:35:20
C++
UTF-8
Python
false
false
3,670
py
#!/usr/bin/python -B soFormulae = { # TODO 'GenSamplers' : { 'entries' : [ 'glGenSamplers' ], 'impl' : [ '_context->so->GenSamplers( ${arg0plus} );' ], }, 'DeleteSamplers' : { 'entries' : [ 'glDeleteSamplers' ], 'impl' : [ '_context->so->DeleteSamplers( ${arg0plus} );' ], }, 'IsSampler' : { 'entries' : [ 'glIsSampler' ], 'impl' : [ 'return _context->so->IsSampler( ${arg0} );' ], }, 'BindSampler' : { 'entries' : [ 'glBindSampler' ], 'impl' : [ '_context->so->BindSampler( ${arg0plus} );' ], }, 'GetSamplerParameterv' : { 'entries' : [ 'glGetSamplerParameter(I|)(u|)(f|i)v' ], 'impl' : [ 'RegalAssert(_context);', 'if ( !_context->so->GetSamplerParameterv( *_context, ${arg0plus} )) {', ' _context->dispatcher.emulation.glGetSamplerParameter${m1}${m2}${m3}v( ${arg0plus} );', '}', ] }, 'SamplerParameter' : { 'entries' : [ 'glSamplerParameter(I|)(u|)(f|i)(v|)' ], 'impl' : [ 'RegalAssert(_context);', 'if ( !_context->so->SamplerParameter${m4}( *_context, ${arg0plus} )) {', ' _context->dispatcher.emulation.glSamplerParameter${m1}${m2}${m3}${m4}( ${arg0plus} );', '}', ] }, 'ActiveTexture' : { 'entries' : [ 'glActiveTexture(ARB|)' ], 'impl' : [ 'RegalAssert(_context);', 'if ( !_context->so->ActiveTexture( *_context, ${arg0plus} ) ) {', ' _context->dispatcher.emulation.glActiveTexture( ${arg0plus} );', '}', ] }, 'GenTextures' : { 'entries' : [ 'glGenTextures' ], 'impl' : [ 'RegalAssert(_context);', '_context->so->GenTextures( *_context, ${arg0plus} );' ], }, 'DeleteTextures' : { 'entries' : [ 'glDeleteTextures' ], 'prefix' : [ 'RegalAssert(_context);', '_context->so->DeleteTextures( *_context, ${arg0plus} );' ], }, 'BindTexture' : { 'entries' : [ 'glBindTexture' ], 'impl' : [ 'RegalAssert(_context);', 'if ( !_context->so->BindTexture( *_context, ${arg0plus} ) ) {', ' _context->dispatcher.emulation.glBindTexture( ${arg0plus} );', '}', ] }, 'TexParameter' : { 'entries' : [ 'glTexParameter(I|)(u|)(f|i)(v|)(EXT|)' ], 'impl' : [ 'RegalAssert(_context);', 'if ( !_context->so->TexParameter${m4}( *_context, ${arg0plus} ) ) {', ' _context->dispatcher.emulation.glTexParameter${m1}${m2}${m3}${m4}( ${arg0plus} );', '}', ] }, 'GetTexParameterv' : { 'entries' : [ 'glGetTexParameter(I|)(u|)(f|i)v' ], 'impl' : [ 'RegalAssert(_context);', 'if ( !_context->so->GetTexParameterv( *_context, ${arg0plus} ) ) {', ' _context->dispatcher.emulation.glGetTexParameter${m1}${m2}${m3}v( ${arg0plus} );', '}', ] }, 'Get' : { 'entries' : [ 'glGet(Double|Float|Integer|Integer64)v' ], 'impl' : [ 'if ( !_context->so->Get( ${arg0plus} ) ) {', ' _context->dispatcher.emulation.glGet${m1}v( ${arg0plus} );', '}', ] }, 'PreDraw' : { 'entries' : [ 'gl(Multi|)Draw(Range|)(Arrays|Element|Elements)(Instanced|Indirect|BaseVertex|InstancedBaseVertex|Array|)(ARB|EXT|AMD|ATI|APPLE|)' ], 'prefix' : [ 'RegalAssert(_context);', '_context->so->PreDraw( *_context );', ], }, }
833bef43af8a0f95c7a90575647b304575e902ec
85a9ffeccb64f6159adbd164ff98edf4ac315e33
/pysnmp/CISCO-UNIFIED-COMPUTING-COMPUTE-MIB.py
dbf7b723c65e8058719374600bb894515432ab32
[ "Apache-2.0" ]
permissive
agustinhenze/mibs.snmplabs.com
5d7d5d4da84424c5f5a1ed2752f5043ae00019fb
1fc5c07860542b89212f4c8ab807057d9a9206c7
refs/heads/master
2020-12-26T12:41:41.132395
2019-08-16T15:51:41
2019-08-16T15:53:57
237,512,469
0
0
Apache-2.0
2020-01-31T20:41:36
2020-01-31T20:41:35
null
UTF-8
Python
false
false
393,280
py
# # PySNMP MIB module CISCO-UNIFIED-COMPUTING-COMPUTE-MIB (http://snmplabs.com/pysmi) # ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/CISCO-UNIFIED-COMPUTING-COMPUTE-MIB # Produced by pysmi-0.3.4 at Mon Apr 29 17:58:42 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") ConstraintsIntersection, ValueRangeConstraint, ValueSizeConstraint, ConstraintsUnion, SingleValueConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsIntersection", "ValueRangeConstraint", "ValueSizeConstraint", "ConstraintsUnion", "SingleValueConstraint") ciscoMgmt, = mibBuilder.importSymbols("CISCO-SMI", "ciscoMgmt") CiscoAlarmSeverity, CiscoInetAddressMask, TimeIntervalSec, CiscoNetworkAddress, Unsigned64 = mibBuilder.importSymbols("CISCO-TC", "CiscoAlarmSeverity", "CiscoInetAddressMask", "TimeIntervalSec", "CiscoNetworkAddress", "Unsigned64") ciscoUnifiedComputingMIBObjects, CucsManagedObjectId, CucsManagedObjectDn = mibBuilder.importSymbols("CISCO-UNIFIED-COMPUTING-MIB", "ciscoUnifiedComputingMIBObjects", "CucsManagedObjectId", "CucsManagedObjectDn") CucsComputeBladeFsmTaskFlags, CucsComputeMode, CucsConditionRemoteInvRslt, CucsComputeAvailability, CucsPoolPoolAssignmentOrder, CucsFsmCompletion, CucsComputeKvmMgmtPolicyVmediaEncryption, CucsComputeRackQualMinId, CucsComputeAssociation, CucsLsOperState, CucsComputeRackUnitFsmCurrentFsm, CucsComputeEquipmentConstraintType, CucsComputeLinkAggregation, CucsComputeAdminState, CucsComputePsuClusterState, CucsComputeBladeEpId, CucsComputePooledEnclosureComputeSlotSlotId, CucsComputePhysicalLowVoltageMemory, CucsFsmFsmStageStatus, CucsComputeBladeSlotId, CucsComputeSlotQualMaxId, CucsComputeRackUnitFsmTaskItem, CucsComputeServerUnitChassisId, CucsComputeABoardPower, CucsComputeRackUnitMbTempStatsHistThresholded, CucsTrigAdminState, CucsComputePCIeFatalStatsThresholded, CucsFsmFlags, CucsComputePowerTransitionSrc, CucsComputeServerUnitServerInstanceId, CucsComputePhysicalFsmTaskItem, CucsComputeBladeFsmTaskItem, CucsComputeIssues, CucsComputePhysicalFsmCurrentFsm, CucsComputeDiscovery, CucsEquipmentFanSpeedPolicyFault, CucsEquipmentSlotStatus, CucsComputeScrubAction, CucsTrigAckPrevOperState, CucsComputePCIeFatalReceiveStatsThresholded, CucsEquipmentOperability, CucsComputeCartridgeDiscovery, CucsComputePsuRedundancy, CucsTrigAckOperState, CucsComputeChassisDiscPolicyMulticastHwHash, CucsComputeCheckPoint, CucsComputePsuRedundancyOperState, CucsComputeMbTempStatsThresholded, CucsComputeRackUnitFsmStageName, CucsComputeAdminMemoryState, CucsComputeInstanceIdQualMinId, CucsEquipmentPowerState, CucsComputeChassisQualMaxId, CucsComputePhysicalFsmStageName, CucsComputeInstanceIdQualMaxId, CucsComputeIOHubEnvStatsHistThresholded, CucsComputeBladeFsmCurrentFsm, CucsComputeBladeFsmStageName, CucsEquipmentConnectionStatus, CucsComputePhysicalFsmTaskFlags, CucsComputeChassisConnPolicyChassisId, CucsComputeServerMgmtDiscAction, CucsComputeBladeEpSlotId, CucsComputeServerTypeCapType, CucsComputeMbPowerStatsThresholded, CucsComputeRackUnitMbTempStatsThresholded, CucsComputeOwner, CucsTrigAckDisr, CucsComputeAdminTrigger, CucsEquipmentSensorThresholdStatus, CucsComputeAdminPowerState, CucsNetworkSwitchId, CucsComputeRackQualMaxId, CucsComputeServerDiscPolicyFsmStageName, CucsComputeRackUnitId, CucsEquipmentBoardConnectorType, CucsComputeAlarmSeverity, CucsComputeChassisDiscAction, CucsComputeServerUnitFsmTaskItem, CucsComputeUpgradeStatus, CucsComputeSlotQualMinId, CucsTrigTrigState, CucsTrigAckChanges, CucsComputeServerDiscPolicyFsmCurrentFsm, CucsComputePciCapOrder, CucsComputeServerUnitSlotId, CucsPolicyPolicyOwner, CucsComputeMemoryUnitConstraintType, CucsComputeBlackListing, CucsComputeCartridgeSlotId, CucsComputePsuControlRedundancy, CucsComputePCIeFatalCompletionStatsThresholded, CucsComputePCIeFatalProtocolStatsThresholded, CucsComputeMbPowerStatsHistThresholded, CucsComputeServerUnitFsmCurrentFsm, CucsComputeIOHubEnvStatsThresholded, CucsComputeServerDiscPolicyFsmTaskItem, CucsEquipmentBoardAggregationRole, CucsComputePooledRackUnitId, CucsComputeMbTempStatsHistThresholded, CucsComputeServerUnitFsmStageName, CucsEquipmentPresence, CucsComputePooledSlotSlotId, CucsComputeAdminLinkAggregation, CucsComputeServerUnitFsmTaskFlags, CucsComputePsuRedundancyOperQualifier, CucsComputeChassisQualMinId, CucsComputeRackUnitFsmTaskFlags, CucsComputePooledEnclosureComputeSlotServerInstanceId, CucsTrigAckChangeDetails, CucsComputeConnectivityRebalancing = mibBuilder.importSymbols("CISCO-UNIFIED-COMPUTING-TC-MIB", "CucsComputeBladeFsmTaskFlags", "CucsComputeMode", "CucsConditionRemoteInvRslt", "CucsComputeAvailability", "CucsPoolPoolAssignmentOrder", "CucsFsmCompletion", "CucsComputeKvmMgmtPolicyVmediaEncryption", "CucsComputeRackQualMinId", "CucsComputeAssociation", "CucsLsOperState", "CucsComputeRackUnitFsmCurrentFsm", "CucsComputeEquipmentConstraintType", "CucsComputeLinkAggregation", "CucsComputeAdminState", "CucsComputePsuClusterState", "CucsComputeBladeEpId", "CucsComputePooledEnclosureComputeSlotSlotId", "CucsComputePhysicalLowVoltageMemory", "CucsFsmFsmStageStatus", "CucsComputeBladeSlotId", "CucsComputeSlotQualMaxId", "CucsComputeRackUnitFsmTaskItem", "CucsComputeServerUnitChassisId", "CucsComputeABoardPower", "CucsComputeRackUnitMbTempStatsHistThresholded", "CucsTrigAdminState", "CucsComputePCIeFatalStatsThresholded", "CucsFsmFlags", "CucsComputePowerTransitionSrc", "CucsComputeServerUnitServerInstanceId", "CucsComputePhysicalFsmTaskItem", "CucsComputeBladeFsmTaskItem", "CucsComputeIssues", "CucsComputePhysicalFsmCurrentFsm", "CucsComputeDiscovery", "CucsEquipmentFanSpeedPolicyFault", "CucsEquipmentSlotStatus", "CucsComputeScrubAction", "CucsTrigAckPrevOperState", "CucsComputePCIeFatalReceiveStatsThresholded", "CucsEquipmentOperability", "CucsComputeCartridgeDiscovery", "CucsComputePsuRedundancy", "CucsTrigAckOperState", "CucsComputeChassisDiscPolicyMulticastHwHash", "CucsComputeCheckPoint", "CucsComputePsuRedundancyOperState", "CucsComputeMbTempStatsThresholded", "CucsComputeRackUnitFsmStageName", "CucsComputeAdminMemoryState", "CucsComputeInstanceIdQualMinId", "CucsEquipmentPowerState", "CucsComputeChassisQualMaxId", "CucsComputePhysicalFsmStageName", "CucsComputeInstanceIdQualMaxId", "CucsComputeIOHubEnvStatsHistThresholded", "CucsComputeBladeFsmCurrentFsm", "CucsComputeBladeFsmStageName", "CucsEquipmentConnectionStatus", "CucsComputePhysicalFsmTaskFlags", "CucsComputeChassisConnPolicyChassisId", "CucsComputeServerMgmtDiscAction", "CucsComputeBladeEpSlotId", "CucsComputeServerTypeCapType", "CucsComputeMbPowerStatsThresholded", "CucsComputeRackUnitMbTempStatsThresholded", "CucsComputeOwner", "CucsTrigAckDisr", "CucsComputeAdminTrigger", "CucsEquipmentSensorThresholdStatus", "CucsComputeAdminPowerState", "CucsNetworkSwitchId", "CucsComputeRackQualMaxId", "CucsComputeServerDiscPolicyFsmStageName", "CucsComputeRackUnitId", "CucsEquipmentBoardConnectorType", "CucsComputeAlarmSeverity", "CucsComputeChassisDiscAction", "CucsComputeServerUnitFsmTaskItem", "CucsComputeUpgradeStatus", "CucsComputeSlotQualMinId", "CucsTrigTrigState", "CucsTrigAckChanges", "CucsComputeServerDiscPolicyFsmCurrentFsm", "CucsComputePciCapOrder", "CucsComputeServerUnitSlotId", "CucsPolicyPolicyOwner", "CucsComputeMemoryUnitConstraintType", "CucsComputeBlackListing", "CucsComputeCartridgeSlotId", "CucsComputePsuControlRedundancy", "CucsComputePCIeFatalCompletionStatsThresholded", "CucsComputePCIeFatalProtocolStatsThresholded", "CucsComputeMbPowerStatsHistThresholded", "CucsComputeServerUnitFsmCurrentFsm", "CucsComputeIOHubEnvStatsThresholded", "CucsComputeServerDiscPolicyFsmTaskItem", "CucsEquipmentBoardAggregationRole", "CucsComputePooledRackUnitId", "CucsComputeMbTempStatsHistThresholded", "CucsComputeServerUnitFsmStageName", "CucsEquipmentPresence", "CucsComputePooledSlotSlotId", "CucsComputeAdminLinkAggregation", "CucsComputeServerUnitFsmTaskFlags", "CucsComputePsuRedundancyOperQualifier", "CucsComputeChassisQualMinId", "CucsComputeRackUnitFsmTaskFlags", "CucsComputePooledEnclosureComputeSlotServerInstanceId", "CucsTrigAckChangeDetails", "CucsComputeConnectivityRebalancing") InetAddressIPv4, InetAddressIPv6 = mibBuilder.importSymbols("INET-ADDRESS-MIB", "InetAddressIPv4", "InetAddressIPv6") SnmpAdminString, = mibBuilder.importSymbols("SNMP-FRAMEWORK-MIB", "SnmpAdminString") ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup") MibScalar, MibTable, MibTableRow, MibTableColumn, IpAddress, ObjectIdentity, Integer32, MibIdentifier, Counter64, Unsigned32, Bits, Counter32, NotificationType, ModuleIdentity, iso, TimeTicks, Gauge32 = mibBuilder.importSymbols("SNMPv2-SMI", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "IpAddress", "ObjectIdentity", "Integer32", "MibIdentifier", "Counter64", "Unsigned32", "Bits", "Counter32", "NotificationType", "ModuleIdentity", "iso", "TimeTicks", "Gauge32") TimeInterval, TruthValue, RowPointer, DisplayString, DateAndTime, TimeStamp, TextualConvention, MacAddress = mibBuilder.importSymbols("SNMPv2-TC", "TimeInterval", "TruthValue", "RowPointer", "DisplayString", "DateAndTime", "TimeStamp", "TextualConvention", "MacAddress") cucsComputeObjects = ModuleIdentity((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9)) if mibBuilder.loadTexts: cucsComputeObjects.setLastUpdated('201601180000Z') if mibBuilder.loadTexts: cucsComputeObjects.setOrganization('Cisco Systems Inc.') cucsComputeAutoconfigPolicyTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 1), ) if mibBuilder.loadTexts: cucsComputeAutoconfigPolicyTable.setStatus('current') cucsComputeAutoconfigPolicyEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 1, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-COMPUTE-MIB", "cucsComputeAutoconfigPolicyInstanceId")) if mibBuilder.loadTexts: cucsComputeAutoconfigPolicyEntry.setStatus('current') cucsComputeAutoconfigPolicyInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 1, 1, 1), CucsManagedObjectId()) if mibBuilder.loadTexts: cucsComputeAutoconfigPolicyInstanceId.setStatus('current') cucsComputeAutoconfigPolicyDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 1, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeAutoconfigPolicyDn.setStatus('current') cucsComputeAutoconfigPolicyRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 1, 1, 3), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeAutoconfigPolicyRn.setStatus('current') cucsComputeAutoconfigPolicyDescr = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 1, 1, 4), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeAutoconfigPolicyDescr.setStatus('current') cucsComputeAutoconfigPolicyDstDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 1, 1, 5), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeAutoconfigPolicyDstDn.setStatus('current') cucsComputeAutoconfigPolicyIntId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 1, 1, 6), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeAutoconfigPolicyIntId.setStatus('current') cucsComputeAutoconfigPolicyName = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 1, 1, 7), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeAutoconfigPolicyName.setStatus('current') cucsComputeAutoconfigPolicyQualifier = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 1, 1, 8), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeAutoconfigPolicyQualifier.setStatus('current') cucsComputeAutoconfigPolicySrcTemplName = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 1, 1, 9), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeAutoconfigPolicySrcTemplName.setStatus('current') cucsComputeAutoconfigPolicyPolicyLevel = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 1, 1, 10), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeAutoconfigPolicyPolicyLevel.setStatus('current') cucsComputeAutoconfigPolicyPolicyOwner = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 1, 1, 11), CucsPolicyPolicyOwner()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeAutoconfigPolicyPolicyOwner.setStatus('current') cucsComputeAutoconfigPolicyOperQualifier = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 1, 1, 12), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeAutoconfigPolicyOperQualifier.setStatus('current') cucsComputeBladeTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 2), ) if mibBuilder.loadTexts: cucsComputeBladeTable.setStatus('current') cucsComputeBladeEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 2, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-COMPUTE-MIB", "cucsComputeBladeInstanceId")) if mibBuilder.loadTexts: cucsComputeBladeEntry.setStatus('current') cucsComputeBladeInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 2, 1, 1), CucsManagedObjectId()) if mibBuilder.loadTexts: cucsComputeBladeInstanceId.setStatus('current') cucsComputeBladeDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 2, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeDn.setStatus('current') cucsComputeBladeRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 2, 1, 3), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeRn.setStatus('current') cucsComputeBladeAdminPower = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 2, 1, 4), CucsComputeAdminPowerState()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeAdminPower.setStatus('current') cucsComputeBladeAdminState = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 2, 1, 5), CucsComputeAdminState()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeAdminState.setStatus('current') cucsComputeBladeAssignedToDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 2, 1, 6), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeAssignedToDn.setStatus('current') cucsComputeBladeAssociation = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 2, 1, 7), CucsComputeAssociation()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeAssociation.setStatus('current') cucsComputeBladeAvailability = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 2, 1, 8), CucsComputeAvailability()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeAvailability.setStatus('current') cucsComputeBladeAvailableMemory = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 2, 1, 9), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeAvailableMemory.setStatus('current') cucsComputeBladeChassisId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 2, 1, 10), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeChassisId.setStatus('current') cucsComputeBladeCheckPoint = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 2, 1, 11), CucsComputeCheckPoint()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeCheckPoint.setStatus('current') cucsComputeBladeConnPath = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 2, 1, 12), CucsEquipmentConnectionStatus()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeConnPath.setStatus('current') cucsComputeBladeConnStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 2, 1, 13), CucsEquipmentConnectionStatus()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeConnStatus.setStatus('current') cucsComputeBladeDescr = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 2, 1, 14), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeDescr.setStatus('current') cucsComputeBladeDiscovery = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 2, 1, 15), CucsComputeDiscovery()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeDiscovery.setStatus('current') cucsComputeBladeFltAggr = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 2, 1, 16), Unsigned64()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeFltAggr.setStatus('current') cucsComputeBladeFsmDescr = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 2, 1, 17), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeFsmDescr.setStatus('current') cucsComputeBladeFsmFlags = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 2, 1, 18), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeFsmFlags.setStatus('current') cucsComputeBladeFsmPrev = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 2, 1, 19), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeFsmPrev.setStatus('current') cucsComputeBladeFsmProgr = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 2, 1, 20), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeFsmProgr.setStatus('current') cucsComputeBladeFsmRmtInvErrCode = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 2, 1, 21), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeFsmRmtInvErrCode.setStatus('current') cucsComputeBladeFsmRmtInvErrDescr = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 2, 1, 22), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeFsmRmtInvErrDescr.setStatus('current') cucsComputeBladeFsmRmtInvRslt = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 2, 1, 23), CucsConditionRemoteInvRslt()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeFsmRmtInvRslt.setStatus('current') cucsComputeBladeFsmStageDescr = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 2, 1, 24), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeFsmStageDescr.setStatus('current') cucsComputeBladeFsmStamp = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 2, 1, 25), DateAndTime()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeFsmStamp.setStatus('current') cucsComputeBladeFsmStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 2, 1, 26), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeFsmStatus.setStatus('current') cucsComputeBladeFsmTry = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 2, 1, 27), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeFsmTry.setStatus('current') cucsComputeBladeIntId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 2, 1, 28), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeIntId.setStatus('current') cucsComputeBladeLc = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 2, 1, 29), CucsComputeAdminTrigger()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeLc.setStatus('current') cucsComputeBladeLcTs = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 2, 1, 30), DateAndTime()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeLcTs.setStatus('current') cucsComputeBladeManagingInst = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 2, 1, 31), CucsNetworkSwitchId()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeManagingInst.setStatus('current') cucsComputeBladeModel = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 2, 1, 32), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeModel.setStatus('current') cucsComputeBladeName = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 2, 1, 33), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeName.setStatus('current') cucsComputeBladeNumOfAdaptors = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 2, 1, 34), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeNumOfAdaptors.setStatus('current') cucsComputeBladeNumOfCores = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 2, 1, 35), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeNumOfCores.setStatus('current') cucsComputeBladeNumOfCpus = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 2, 1, 36), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeNumOfCpus.setStatus('current') cucsComputeBladeNumOfEthHostIfs = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 2, 1, 37), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeNumOfEthHostIfs.setStatus('current') cucsComputeBladeNumOfFcHostIfs = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 2, 1, 38), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeNumOfFcHostIfs.setStatus('current') cucsComputeBladeNumOfThreads = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 2, 1, 39), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeNumOfThreads.setStatus('current') cucsComputeBladeOperPower = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 2, 1, 40), CucsEquipmentPowerState()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeOperPower.setStatus('current') cucsComputeBladeOperQualifier = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 2, 1, 41), CucsComputeIssues()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeOperQualifier.setStatus('current') cucsComputeBladeOperState = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 2, 1, 42), CucsLsOperState()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeOperState.setStatus('current') cucsComputeBladeOperability = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 2, 1, 43), CucsEquipmentOperability()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeOperability.setStatus('current') cucsComputeBladeOriginalUuid = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 2, 1, 44), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeOriginalUuid.setStatus('current') cucsComputeBladePresence = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 2, 1, 45), CucsEquipmentSlotStatus()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladePresence.setStatus('current') cucsComputeBladeRevision = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 2, 1, 46), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeRevision.setStatus('current') cucsComputeBladeSerial = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 2, 1, 47), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeSerial.setStatus('current') cucsComputeBladeServerId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 2, 1, 48), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeServerId.setStatus('current') cucsComputeBladeSlotId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 2, 1, 49), CucsComputeBladeSlotId()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeSlotId.setStatus('current') cucsComputeBladeTotalMemory = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 2, 1, 50), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeTotalMemory.setStatus('current') cucsComputeBladeUsrLbl = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 2, 1, 51), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeUsrLbl.setStatus('current') cucsComputeBladeUuid = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 2, 1, 52), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeUuid.setStatus('current') cucsComputeBladeVendor = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 2, 1, 53), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeVendor.setStatus('current') cucsComputeBladeNumOfCoresEnabled = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 2, 1, 54), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeNumOfCoresEnabled.setStatus('current') cucsComputeBladeLowVoltageMemory = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 2, 1, 55), CucsComputePhysicalLowVoltageMemory()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeLowVoltageMemory.setStatus('current') cucsComputeBladeMemorySpeed = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 2, 1, 56), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeMemorySpeed.setStatus('current') cucsComputeBladeMfgTime = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 2, 1, 57), DateAndTime()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeMfgTime.setStatus('current') cucsComputeBladePartNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 2, 1, 58), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladePartNumber.setStatus('current') cucsComputeBladeVid = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 2, 1, 59), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeVid.setStatus('current') cucsComputeBladePolicyLevel = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 2, 1, 60), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladePolicyLevel.setStatus('current') cucsComputeBladePolicyOwner = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 2, 1, 61), CucsPolicyPolicyOwner()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladePolicyOwner.setStatus('current') cucsComputeBladeLocalId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 2, 1, 62), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeLocalId.setStatus('current') cucsComputeBladeScaledMode = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 2, 1, 63), CucsComputeMode()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeScaledMode.setStatus('current') cucsComputeBladeUpgradeScenario = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 2, 1, 64), CucsComputeUpgradeStatus()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeUpgradeScenario.setStatus('current') cucsComputeBladeOperPwrTransSrc = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 2, 1, 65), CucsComputePowerTransitionSrc()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeOperPwrTransSrc.setStatus('current') cucsComputeBladeDiscoveryStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 2, 1, 66), CucsEquipmentConnectionStatus()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeDiscoveryStatus.setStatus('current') cucsComputeBladeNumOf40GAdaptorsWithOldFw = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 2, 1, 68), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeNumOf40GAdaptorsWithOldFw.setStatus('current') cucsComputeBladeNumOf40GAdaptorsWithUnknownFw = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 2, 1, 69), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeNumOf40GAdaptorsWithUnknownFw.setStatus('current') cucsComputeBladeDiscPolicyTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 3), ) if mibBuilder.loadTexts: cucsComputeBladeDiscPolicyTable.setStatus('current') cucsComputeBladeDiscPolicyEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 3, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-COMPUTE-MIB", "cucsComputeBladeDiscPolicyInstanceId")) if mibBuilder.loadTexts: cucsComputeBladeDiscPolicyEntry.setStatus('current') cucsComputeBladeDiscPolicyInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 3, 1, 1), CucsManagedObjectId()) if mibBuilder.loadTexts: cucsComputeBladeDiscPolicyInstanceId.setStatus('current') cucsComputeBladeDiscPolicyDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 3, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeDiscPolicyDn.setStatus('current') cucsComputeBladeDiscPolicyRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 3, 1, 3), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeDiscPolicyRn.setStatus('current') cucsComputeBladeDiscPolicyAction = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 3, 1, 4), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeDiscPolicyAction.setStatus('current') cucsComputeBladeDiscPolicyDescr = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 3, 1, 5), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeDiscPolicyDescr.setStatus('current') cucsComputeBladeDiscPolicyIntId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 3, 1, 6), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeDiscPolicyIntId.setStatus('current') cucsComputeBladeDiscPolicyName = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 3, 1, 7), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeDiscPolicyName.setStatus('current') cucsComputeBladeDiscPolicyQualifier = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 3, 1, 8), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeDiscPolicyQualifier.setStatus('current') cucsComputeBladeDiscPolicyScrubPolicyName = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 3, 1, 9), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeDiscPolicyScrubPolicyName.setStatus('current') cucsComputeBladeDiscPolicyPolicyLevel = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 3, 1, 10), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeDiscPolicyPolicyLevel.setStatus('current') cucsComputeBladeDiscPolicyPolicyOwner = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 3, 1, 11), CucsPolicyPolicyOwner()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeDiscPolicyPolicyOwner.setStatus('current') cucsComputeBladeEpTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 66), ) if mibBuilder.loadTexts: cucsComputeBladeEpTable.setStatus('current') cucsComputeBladeEpEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 66, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-COMPUTE-MIB", "cucsComputeBladeEpInstanceId")) if mibBuilder.loadTexts: cucsComputeBladeEpEntry.setStatus('current') cucsComputeBladeEpInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 66, 1, 1), CucsManagedObjectId()) if mibBuilder.loadTexts: cucsComputeBladeEpInstanceId.setStatus('current') cucsComputeBladeEpDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 66, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeEpDn.setStatus('current') cucsComputeBladeEpRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 66, 1, 3), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeEpRn.setStatus('current') cucsComputeBladeEpAdminState = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 66, 1, 4), CucsComputeAdminState()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeEpAdminState.setStatus('current') cucsComputeBladeEpChassisId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 66, 1, 5), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeEpChassisId.setStatus('current') cucsComputeBladeEpEpDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 66, 1, 6), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeEpEpDn.setStatus('current') cucsComputeBladeEpId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 66, 1, 7), CucsComputeBladeEpId()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeEpId.setStatus('current') cucsComputeBladeEpOperQualifierReason = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 66, 1, 8), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeEpOperQualifierReason.setStatus('current') cucsComputeBladeEpOperState = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 66, 1, 9), CucsLsOperState()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeEpOperState.setStatus('current') cucsComputeBladeEpPeerPresence = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 66, 1, 10), CucsEquipmentSlotStatus()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeEpPeerPresence.setStatus('current') cucsComputeBladeEpPresence = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 66, 1, 11), CucsEquipmentSlotStatus()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeEpPresence.setStatus('current') cucsComputeBladeEpSlotId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 66, 1, 12), CucsComputeBladeEpSlotId()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeEpSlotId.setStatus('current') cucsComputeBladeFsmTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 48), ) if mibBuilder.loadTexts: cucsComputeBladeFsmTable.setStatus('current') cucsComputeBladeFsmEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 48, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-COMPUTE-MIB", "cucsComputeBladeFsmInstanceId")) if mibBuilder.loadTexts: cucsComputeBladeFsmEntry.setStatus('current') cucsComputeBladeFsmInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 48, 1, 1), CucsManagedObjectId()) if mibBuilder.loadTexts: cucsComputeBladeFsmInstanceId.setStatus('current') cucsComputeBladeFsmDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 48, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeFsmDn.setStatus('current') cucsComputeBladeFsmRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 48, 1, 3), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeFsmRn.setStatus('current') cucsComputeBladeFsmCompletionTime = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 48, 1, 4), DateAndTime()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeFsmCompletionTime.setStatus('current') cucsComputeBladeFsmCurrentFsm = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 48, 1, 5), CucsComputeBladeFsmCurrentFsm()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeFsmCurrentFsm.setStatus('current') cucsComputeBladeFsmDescrData = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 48, 1, 6), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeFsmDescrData.setStatus('current') cucsComputeBladeFsmFsmStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 48, 1, 7), CucsFsmFsmStageStatus()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeFsmFsmStatus.setStatus('current') cucsComputeBladeFsmProgress = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 48, 1, 8), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeFsmProgress.setStatus('current') cucsComputeBladeFsmRmtErrCode = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 48, 1, 9), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeFsmRmtErrCode.setStatus('current') cucsComputeBladeFsmRmtErrDescr = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 48, 1, 10), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeFsmRmtErrDescr.setStatus('current') cucsComputeBladeFsmRmtRslt = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 48, 1, 11), CucsConditionRemoteInvRslt()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeFsmRmtRslt.setStatus('current') cucsComputeBladeFsmStageTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 49), ) if mibBuilder.loadTexts: cucsComputeBladeFsmStageTable.setStatus('current') cucsComputeBladeFsmStageEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 49, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-COMPUTE-MIB", "cucsComputeBladeFsmStageInstanceId")) if mibBuilder.loadTexts: cucsComputeBladeFsmStageEntry.setStatus('current') cucsComputeBladeFsmStageInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 49, 1, 1), CucsManagedObjectId()) if mibBuilder.loadTexts: cucsComputeBladeFsmStageInstanceId.setStatus('current') cucsComputeBladeFsmStageDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 49, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeFsmStageDn.setStatus('current') cucsComputeBladeFsmStageRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 49, 1, 3), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeFsmStageRn.setStatus('current') cucsComputeBladeFsmStageDescrData = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 49, 1, 4), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeFsmStageDescrData.setStatus('current') cucsComputeBladeFsmStageLastUpdateTime = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 49, 1, 5), DateAndTime()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeFsmStageLastUpdateTime.setStatus('current') cucsComputeBladeFsmStageName = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 49, 1, 6), CucsComputeBladeFsmStageName()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeFsmStageName.setStatus('current') cucsComputeBladeFsmStageOrder = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 49, 1, 7), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeFsmStageOrder.setStatus('current') cucsComputeBladeFsmStageRetry = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 49, 1, 8), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeFsmStageRetry.setStatus('current') cucsComputeBladeFsmStageStageStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 49, 1, 9), CucsFsmFsmStageStatus()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeFsmStageStageStatus.setStatus('current') cucsComputeBladeFsmTaskTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 4), ) if mibBuilder.loadTexts: cucsComputeBladeFsmTaskTable.setStatus('current') cucsComputeBladeFsmTaskEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 4, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-COMPUTE-MIB", "cucsComputeBladeFsmTaskInstanceId")) if mibBuilder.loadTexts: cucsComputeBladeFsmTaskEntry.setStatus('current') cucsComputeBladeFsmTaskInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 4, 1, 1), CucsManagedObjectId()) if mibBuilder.loadTexts: cucsComputeBladeFsmTaskInstanceId.setStatus('current') cucsComputeBladeFsmTaskDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 4, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeFsmTaskDn.setStatus('current') cucsComputeBladeFsmTaskRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 4, 1, 3), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeFsmTaskRn.setStatus('current') cucsComputeBladeFsmTaskCompletion = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 4, 1, 4), CucsFsmCompletion()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeFsmTaskCompletion.setStatus('current') cucsComputeBladeFsmTaskFlags = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 4, 1, 5), CucsComputeBladeFsmTaskFlags()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeFsmTaskFlags.setStatus('current') cucsComputeBladeFsmTaskItem = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 4, 1, 6), CucsComputeBladeFsmTaskItem()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeFsmTaskItem.setStatus('current') cucsComputeBladeFsmTaskSeqId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 4, 1, 7), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeFsmTaskSeqId.setStatus('current') cucsComputeBladeInheritPolicyTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 5), ) if mibBuilder.loadTexts: cucsComputeBladeInheritPolicyTable.setStatus('current') cucsComputeBladeInheritPolicyEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 5, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-COMPUTE-MIB", "cucsComputeBladeInheritPolicyInstanceId")) if mibBuilder.loadTexts: cucsComputeBladeInheritPolicyEntry.setStatus('current') cucsComputeBladeInheritPolicyInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 5, 1, 1), CucsManagedObjectId()) if mibBuilder.loadTexts: cucsComputeBladeInheritPolicyInstanceId.setStatus('current') cucsComputeBladeInheritPolicyDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 5, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeInheritPolicyDn.setStatus('current') cucsComputeBladeInheritPolicyRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 5, 1, 3), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeInheritPolicyRn.setStatus('current') cucsComputeBladeInheritPolicyDescr = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 5, 1, 4), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeInheritPolicyDescr.setStatus('current') cucsComputeBladeInheritPolicyDstDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 5, 1, 5), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeInheritPolicyDstDn.setStatus('current') cucsComputeBladeInheritPolicyIntId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 5, 1, 6), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeInheritPolicyIntId.setStatus('current') cucsComputeBladeInheritPolicyName = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 5, 1, 7), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeInheritPolicyName.setStatus('current') cucsComputeBladeInheritPolicyQualifier = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 5, 1, 8), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeInheritPolicyQualifier.setStatus('current') cucsComputeBladeInheritPolicyPolicyLevel = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 5, 1, 9), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeInheritPolicyPolicyLevel.setStatus('current') cucsComputeBladeInheritPolicyPolicyOwner = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 5, 1, 10), CucsPolicyPolicyOwner()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeInheritPolicyPolicyOwner.setStatus('current') cucsComputeBladeInheritPolicyOperQualifier = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 5, 1, 11), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBladeInheritPolicyOperQualifier.setStatus('current') cucsComputeBoardTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 6), ) if mibBuilder.loadTexts: cucsComputeBoardTable.setStatus('current') cucsComputeBoardEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 6, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-COMPUTE-MIB", "cucsComputeBoardInstanceId")) if mibBuilder.loadTexts: cucsComputeBoardEntry.setStatus('current') cucsComputeBoardInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 6, 1, 1), CucsManagedObjectId()) if mibBuilder.loadTexts: cucsComputeBoardInstanceId.setStatus('current') cucsComputeBoardDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 6, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBoardDn.setStatus('current') cucsComputeBoardRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 6, 1, 3), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBoardRn.setStatus('current') cucsComputeBoardCmosVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 6, 1, 4), CucsEquipmentSensorThresholdStatus()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBoardCmosVoltage.setStatus('current') cucsComputeBoardId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 6, 1, 5), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBoardId.setStatus('current') cucsComputeBoardModel = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 6, 1, 6), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBoardModel.setStatus('current') cucsComputeBoardOperPower = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 6, 1, 7), CucsEquipmentPowerState()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBoardOperPower.setStatus('current') cucsComputeBoardOperState = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 6, 1, 8), CucsEquipmentOperability()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBoardOperState.setStatus('current') cucsComputeBoardOperability = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 6, 1, 9), CucsEquipmentOperability()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBoardOperability.setStatus('current') cucsComputeBoardPerf = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 6, 1, 10), CucsEquipmentSensorThresholdStatus()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBoardPerf.setStatus('current') cucsComputeBoardPower = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 6, 1, 11), CucsComputeABoardPower()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBoardPower.setStatus('current') cucsComputeBoardPresence = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 6, 1, 12), CucsEquipmentPresence()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBoardPresence.setStatus('current') cucsComputeBoardRevision = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 6, 1, 13), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBoardRevision.setStatus('current') cucsComputeBoardSerial = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 6, 1, 14), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBoardSerial.setStatus('current') cucsComputeBoardThermal = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 6, 1, 15), CucsEquipmentSensorThresholdStatus()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBoardThermal.setStatus('current') cucsComputeBoardVendor = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 6, 1, 16), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBoardVendor.setStatus('current') cucsComputeBoardVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 6, 1, 17), CucsEquipmentSensorThresholdStatus()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBoardVoltage.setStatus('current') cucsComputeBoardOperQualifierReason = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 6, 1, 18), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBoardOperQualifierReason.setStatus('current') cucsComputeBoardPowerUsage = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 6, 1, 19), CucsEquipmentSensorThresholdStatus()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBoardPowerUsage.setStatus('current') cucsComputeBoardFaultQualifier = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 6, 1, 20), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBoardFaultQualifier.setStatus('current') cucsComputeBoardLocationDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 6, 1, 21), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBoardLocationDn.setStatus('current') cucsComputeBoardCpuTypeDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 6, 1, 23), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBoardCpuTypeDescription.setStatus('current') cucsComputeBoardConnectorTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 63), ) if mibBuilder.loadTexts: cucsComputeBoardConnectorTable.setStatus('current') cucsComputeBoardConnectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 63, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-COMPUTE-MIB", "cucsComputeBoardConnectorInstanceId")) if mibBuilder.loadTexts: cucsComputeBoardConnectorEntry.setStatus('current') cucsComputeBoardConnectorInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 63, 1, 1), CucsManagedObjectId()) if mibBuilder.loadTexts: cucsComputeBoardConnectorInstanceId.setStatus('current') cucsComputeBoardConnectorDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 63, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBoardConnectorDn.setStatus('current') cucsComputeBoardConnectorRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 63, 1, 3), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBoardConnectorRn.setStatus('current') cucsComputeBoardConnectorBoardConnectorType = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 63, 1, 4), CucsEquipmentBoardConnectorType()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBoardConnectorBoardConnectorType.setStatus('current') cucsComputeBoardConnectorMasterSlotId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 63, 1, 5), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBoardConnectorMasterSlotId.setStatus('current') cucsComputeBoardConnectorSlaveSlotId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 63, 1, 6), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBoardConnectorSlaveSlotId.setStatus('current') cucsComputeBoardControllerTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 7), ) if mibBuilder.loadTexts: cucsComputeBoardControllerTable.setStatus('current') cucsComputeBoardControllerEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 7, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-COMPUTE-MIB", "cucsComputeBoardControllerInstanceId")) if mibBuilder.loadTexts: cucsComputeBoardControllerEntry.setStatus('current') cucsComputeBoardControllerInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 7, 1, 1), CucsManagedObjectId()) if mibBuilder.loadTexts: cucsComputeBoardControllerInstanceId.setStatus('current') cucsComputeBoardControllerDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 7, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBoardControllerDn.setStatus('current') cucsComputeBoardControllerRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 7, 1, 3), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBoardControllerRn.setStatus('current') cucsComputeBoardControllerId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 7, 1, 4), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBoardControllerId.setStatus('current') cucsComputeBoardControllerModel = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 7, 1, 5), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBoardControllerModel.setStatus('current') cucsComputeBoardControllerOperState = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 7, 1, 6), CucsEquipmentOperability()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBoardControllerOperState.setStatus('current') cucsComputeBoardControllerOperability = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 7, 1, 7), CucsEquipmentOperability()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBoardControllerOperability.setStatus('current') cucsComputeBoardControllerPerf = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 7, 1, 8), CucsEquipmentSensorThresholdStatus()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBoardControllerPerf.setStatus('current') cucsComputeBoardControllerPower = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 7, 1, 9), CucsEquipmentPowerState()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBoardControllerPower.setStatus('current') cucsComputeBoardControllerPresence = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 7, 1, 10), CucsEquipmentPresence()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBoardControllerPresence.setStatus('current') cucsComputeBoardControllerRevision = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 7, 1, 11), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBoardControllerRevision.setStatus('current') cucsComputeBoardControllerSerial = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 7, 1, 12), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBoardControllerSerial.setStatus('current') cucsComputeBoardControllerThermal = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 7, 1, 13), CucsEquipmentSensorThresholdStatus()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBoardControllerThermal.setStatus('current') cucsComputeBoardControllerVendor = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 7, 1, 14), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBoardControllerVendor.setStatus('current') cucsComputeBoardControllerVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 7, 1, 15), CucsEquipmentSensorThresholdStatus()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBoardControllerVoltage.setStatus('current') cucsComputeBoardControllerOperQualifierReason = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 7, 1, 16), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBoardControllerOperQualifierReason.setStatus('current') cucsComputeBoardControllerLocationDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 7, 1, 17), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeBoardControllerLocationDn.setStatus('current') cucsComputeCartridgeTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 71), ) if mibBuilder.loadTexts: cucsComputeCartridgeTable.setStatus('current') cucsComputeCartridgeEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 71, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-COMPUTE-MIB", "cucsComputeCartridgeInstanceId")) if mibBuilder.loadTexts: cucsComputeCartridgeEntry.setStatus('current') cucsComputeCartridgeInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 71, 1, 1), CucsManagedObjectId()) if mibBuilder.loadTexts: cucsComputeCartridgeInstanceId.setStatus('current') cucsComputeCartridgeDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 71, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeCartridgeDn.setStatus('current') cucsComputeCartridgeRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 71, 1, 3), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeCartridgeRn.setStatus('current') cucsComputeCartridgeChassisId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 71, 1, 4), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeCartridgeChassisId.setStatus('current') cucsComputeCartridgeDiscovery = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 71, 1, 5), CucsComputeCartridgeDiscovery()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeCartridgeDiscovery.setStatus('current') cucsComputeCartridgeFltAggr = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 71, 1, 6), Unsigned64()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeCartridgeFltAggr.setStatus('current') cucsComputeCartridgeId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 71, 1, 7), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeCartridgeId.setStatus('current') cucsComputeCartridgeLc = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 71, 1, 8), CucsComputeAdminTrigger()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeCartridgeLc.setStatus('current') cucsComputeCartridgeLcTs = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 71, 1, 9), DateAndTime()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeCartridgeLcTs.setStatus('current') cucsComputeCartridgeModel = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 71, 1, 10), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeCartridgeModel.setStatus('current') cucsComputeCartridgeOperQualifierReason = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 71, 1, 11), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeCartridgeOperQualifierReason.setStatus('current') cucsComputeCartridgeOperState = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 71, 1, 12), CucsEquipmentOperability()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeCartridgeOperState.setStatus('current') cucsComputeCartridgeOperability = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 71, 1, 13), CucsEquipmentOperability()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeCartridgeOperability.setStatus('current') cucsComputeCartridgePerf = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 71, 1, 14), CucsEquipmentSensorThresholdStatus()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeCartridgePerf.setStatus('current') cucsComputeCartridgePower = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 71, 1, 15), CucsEquipmentPowerState()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeCartridgePower.setStatus('current') cucsComputeCartridgePresence = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 71, 1, 16), CucsEquipmentPresence()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeCartridgePresence.setStatus('current') cucsComputeCartridgeRevision = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 71, 1, 17), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeCartridgeRevision.setStatus('current') cucsComputeCartridgeSerial = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 71, 1, 18), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeCartridgeSerial.setStatus('current') cucsComputeCartridgeSlotId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 71, 1, 19), CucsComputeCartridgeSlotId()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeCartridgeSlotId.setStatus('current') cucsComputeCartridgeThermal = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 71, 1, 20), CucsEquipmentSensorThresholdStatus()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeCartridgeThermal.setStatus('current') cucsComputeCartridgeVendor = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 71, 1, 21), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeCartridgeVendor.setStatus('current') cucsComputeCartridgeVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 71, 1, 22), CucsEquipmentSensorThresholdStatus()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeCartridgeVoltage.setStatus('current') cucsComputeChassisConnPolicyTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 46), ) if mibBuilder.loadTexts: cucsComputeChassisConnPolicyTable.setStatus('current') cucsComputeChassisConnPolicyEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 46, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-COMPUTE-MIB", "cucsComputeChassisConnPolicyInstanceId")) if mibBuilder.loadTexts: cucsComputeChassisConnPolicyEntry.setStatus('current') cucsComputeChassisConnPolicyInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 46, 1, 1), CucsManagedObjectId()) if mibBuilder.loadTexts: cucsComputeChassisConnPolicyInstanceId.setStatus('current') cucsComputeChassisConnPolicyDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 46, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeChassisConnPolicyDn.setStatus('current') cucsComputeChassisConnPolicyRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 46, 1, 3), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeChassisConnPolicyRn.setStatus('current') cucsComputeChassisConnPolicyAdminState = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 46, 1, 4), CucsComputeAdminLinkAggregation()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeChassisConnPolicyAdminState.setStatus('current') cucsComputeChassisConnPolicyChassisId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 46, 1, 5), CucsComputeChassisConnPolicyChassisId()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeChassisConnPolicyChassisId.setStatus('current') cucsComputeChassisConnPolicyDescr = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 46, 1, 6), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeChassisConnPolicyDescr.setStatus('current') cucsComputeChassisConnPolicyIntId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 46, 1, 7), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeChassisConnPolicyIntId.setStatus('current') cucsComputeChassisConnPolicyName = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 46, 1, 8), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeChassisConnPolicyName.setStatus('current') cucsComputeChassisConnPolicyQualifier = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 46, 1, 9), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeChassisConnPolicyQualifier.setStatus('current') cucsComputeChassisConnPolicySwitchId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 46, 1, 10), CucsNetworkSwitchId()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeChassisConnPolicySwitchId.setStatus('current') cucsComputeChassisConnPolicyPolicyLevel = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 46, 1, 11), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeChassisConnPolicyPolicyLevel.setStatus('current') cucsComputeChassisConnPolicyPolicyOwner = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 46, 1, 12), CucsPolicyPolicyOwner()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeChassisConnPolicyPolicyOwner.setStatus('current') cucsComputeChassisDiscPolicyTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 8), ) if mibBuilder.loadTexts: cucsComputeChassisDiscPolicyTable.setStatus('current') cucsComputeChassisDiscPolicyEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 8, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-COMPUTE-MIB", "cucsComputeChassisDiscPolicyInstanceId")) if mibBuilder.loadTexts: cucsComputeChassisDiscPolicyEntry.setStatus('current') cucsComputeChassisDiscPolicyInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 8, 1, 1), CucsManagedObjectId()) if mibBuilder.loadTexts: cucsComputeChassisDiscPolicyInstanceId.setStatus('current') cucsComputeChassisDiscPolicyDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 8, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeChassisDiscPolicyDn.setStatus('current') cucsComputeChassisDiscPolicyRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 8, 1, 3), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeChassisDiscPolicyRn.setStatus('current') cucsComputeChassisDiscPolicyAction = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 8, 1, 4), CucsComputeChassisDiscAction()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeChassisDiscPolicyAction.setStatus('current') cucsComputeChassisDiscPolicyDescr = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 8, 1, 5), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeChassisDiscPolicyDescr.setStatus('current') cucsComputeChassisDiscPolicyIntId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 8, 1, 6), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeChassisDiscPolicyIntId.setStatus('current') cucsComputeChassisDiscPolicyName = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 8, 1, 7), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeChassisDiscPolicyName.setStatus('current') cucsComputeChassisDiscPolicyQualifier = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 8, 1, 8), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeChassisDiscPolicyQualifier.setStatus('current') cucsComputeChassisDiscPolicyRebalance = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 8, 1, 9), CucsComputeConnectivityRebalancing()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeChassisDiscPolicyRebalance.setStatus('current') cucsComputeChassisDiscPolicyLinkAggregationPref = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 8, 1, 10), CucsComputeLinkAggregation()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeChassisDiscPolicyLinkAggregationPref.setStatus('current') cucsComputeChassisDiscPolicyPolicyLevel = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 8, 1, 11), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeChassisDiscPolicyPolicyLevel.setStatus('current') cucsComputeChassisDiscPolicyPolicyOwner = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 8, 1, 12), CucsPolicyPolicyOwner()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeChassisDiscPolicyPolicyOwner.setStatus('current') cucsComputeChassisDiscPolicyMulticastHwHash = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 8, 1, 13), CucsComputeChassisDiscPolicyMulticastHwHash()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeChassisDiscPolicyMulticastHwHash.setStatus('current') cucsComputeChassisQualTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 9), ) if mibBuilder.loadTexts: cucsComputeChassisQualTable.setStatus('current') cucsComputeChassisQualEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 9, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-COMPUTE-MIB", "cucsComputeChassisQualInstanceId")) if mibBuilder.loadTexts: cucsComputeChassisQualEntry.setStatus('current') cucsComputeChassisQualInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 9, 1, 1), CucsManagedObjectId()) if mibBuilder.loadTexts: cucsComputeChassisQualInstanceId.setStatus('current') cucsComputeChassisQualDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 9, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeChassisQualDn.setStatus('current') cucsComputeChassisQualRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 9, 1, 3), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeChassisQualRn.setStatus('current') cucsComputeChassisQualMaxId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 9, 1, 4), CucsComputeChassisQualMaxId()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeChassisQualMaxId.setStatus('current') cucsComputeChassisQualMinId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 9, 1, 5), CucsComputeChassisQualMinId()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeChassisQualMinId.setStatus('current') cucsComputeConstraintDefTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 67), ) if mibBuilder.loadTexts: cucsComputeConstraintDefTable.setStatus('current') cucsComputeConstraintDefEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 67, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-COMPUTE-MIB", "cucsComputeConstraintDefInstanceId")) if mibBuilder.loadTexts: cucsComputeConstraintDefEntry.setStatus('current') cucsComputeConstraintDefInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 67, 1, 1), CucsManagedObjectId()) if mibBuilder.loadTexts: cucsComputeConstraintDefInstanceId.setStatus('current') cucsComputeConstraintDefDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 67, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeConstraintDefDn.setStatus('current') cucsComputeConstraintDefRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 67, 1, 3), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeConstraintDefRn.setStatus('current') cucsComputeConstraintDefConstraintType = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 67, 1, 4), CucsComputeEquipmentConstraintType()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeConstraintDefConstraintType.setStatus('current') cucsComputeConstraintDefDescr = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 67, 1, 5), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeConstraintDefDescr.setStatus('current') cucsComputeConstraintDefHwModel = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 67, 1, 6), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeConstraintDefHwModel.setStatus('current') cucsComputeConstraintDefHwRevision = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 67, 1, 7), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeConstraintDefHwRevision.setStatus('current') cucsComputeConstraintDefHwVendor = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 67, 1, 8), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeConstraintDefHwVendor.setStatus('current') cucsComputeConstraintDefIntId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 67, 1, 9), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeConstraintDefIntId.setStatus('current') cucsComputeConstraintDefName = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 67, 1, 10), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeConstraintDefName.setStatus('current') cucsComputeConstraintDefPolicyLevel = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 67, 1, 11), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeConstraintDefPolicyLevel.setStatus('current') cucsComputeConstraintDefPolicyOwner = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 67, 1, 12), CucsPolicyPolicyOwner()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeConstraintDefPolicyOwner.setStatus('current') cucsComputeDefaultsTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 10), ) if mibBuilder.loadTexts: cucsComputeDefaultsTable.setStatus('current') cucsComputeDefaultsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 10, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-COMPUTE-MIB", "cucsComputeDefaultsInstanceId")) if mibBuilder.loadTexts: cucsComputeDefaultsEntry.setStatus('current') cucsComputeDefaultsInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 10, 1, 1), CucsManagedObjectId()) if mibBuilder.loadTexts: cucsComputeDefaultsInstanceId.setStatus('current') cucsComputeDefaultsDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 10, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeDefaultsDn.setStatus('current') cucsComputeDefaultsRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 10, 1, 3), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeDefaultsRn.setStatus('current') cucsComputeExtBoardTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 64), ) if mibBuilder.loadTexts: cucsComputeExtBoardTable.setStatus('current') cucsComputeExtBoardEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 64, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-COMPUTE-MIB", "cucsComputeExtBoardInstanceId")) if mibBuilder.loadTexts: cucsComputeExtBoardEntry.setStatus('current') cucsComputeExtBoardInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 64, 1, 1), CucsManagedObjectId()) if mibBuilder.loadTexts: cucsComputeExtBoardInstanceId.setStatus('current') cucsComputeExtBoardDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 64, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeExtBoardDn.setStatus('current') cucsComputeExtBoardRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 64, 1, 3), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeExtBoardRn.setStatus('current') cucsComputeExtBoardBoardAggregationRole = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 64, 1, 4), CucsEquipmentBoardAggregationRole()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeExtBoardBoardAggregationRole.setStatus('current') cucsComputeExtBoardChassisId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 64, 1, 5), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeExtBoardChassisId.setStatus('current') cucsComputeExtBoardCmosVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 64, 1, 6), CucsEquipmentSensorThresholdStatus()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeExtBoardCmosVoltage.setStatus('current') cucsComputeExtBoardConnPath = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 64, 1, 7), CucsEquipmentConnectionStatus()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeExtBoardConnPath.setStatus('current') cucsComputeExtBoardConnStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 64, 1, 8), CucsEquipmentConnectionStatus()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeExtBoardConnStatus.setStatus('current') cucsComputeExtBoardFaultQualifier = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 64, 1, 9), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeExtBoardFaultQualifier.setStatus('current') cucsComputeExtBoardId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 64, 1, 10), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeExtBoardId.setStatus('current') cucsComputeExtBoardLocationDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 64, 1, 11), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeExtBoardLocationDn.setStatus('current') cucsComputeExtBoardManagingInst = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 64, 1, 12), CucsNetworkSwitchId()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeExtBoardManagingInst.setStatus('current') cucsComputeExtBoardModel = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 64, 1, 13), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeExtBoardModel.setStatus('current') cucsComputeExtBoardOperPower = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 64, 1, 14), CucsEquipmentPowerState()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeExtBoardOperPower.setStatus('current') cucsComputeExtBoardOperQualifierReason = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 64, 1, 15), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeExtBoardOperQualifierReason.setStatus('current') cucsComputeExtBoardOperState = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 64, 1, 16), CucsEquipmentOperability()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeExtBoardOperState.setStatus('current') cucsComputeExtBoardOperability = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 64, 1, 17), CucsEquipmentOperability()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeExtBoardOperability.setStatus('current') cucsComputeExtBoardPerf = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 64, 1, 18), CucsEquipmentSensorThresholdStatus()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeExtBoardPerf.setStatus('current') cucsComputeExtBoardPower = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 64, 1, 19), CucsComputeABoardPower()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeExtBoardPower.setStatus('current') cucsComputeExtBoardPowerUsage = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 64, 1, 20), CucsEquipmentSensorThresholdStatus()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeExtBoardPowerUsage.setStatus('current') cucsComputeExtBoardPresence = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 64, 1, 21), CucsEquipmentPresence()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeExtBoardPresence.setStatus('current') cucsComputeExtBoardRevision = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 64, 1, 22), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeExtBoardRevision.setStatus('current') cucsComputeExtBoardSerial = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 64, 1, 23), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeExtBoardSerial.setStatus('current') cucsComputeExtBoardSlotId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 64, 1, 24), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeExtBoardSlotId.setStatus('current') cucsComputeExtBoardThermal = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 64, 1, 25), CucsEquipmentSensorThresholdStatus()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeExtBoardThermal.setStatus('current') cucsComputeExtBoardVendor = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 64, 1, 26), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeExtBoardVendor.setStatus('current') cucsComputeExtBoardVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 64, 1, 27), CucsEquipmentSensorThresholdStatus()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeExtBoardVoltage.setStatus('current') cucsComputeExtBoardDiscoveryStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 64, 1, 28), CucsEquipmentConnectionStatus()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeExtBoardDiscoveryStatus.setStatus('current') cucsComputeFwSyncAckTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 60), ) if mibBuilder.loadTexts: cucsComputeFwSyncAckTable.setStatus('current') cucsComputeFwSyncAckEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 60, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-COMPUTE-MIB", "cucsComputeFwSyncAckInstanceId")) if mibBuilder.loadTexts: cucsComputeFwSyncAckEntry.setStatus('current') cucsComputeFwSyncAckInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 60, 1, 1), CucsManagedObjectId()) if mibBuilder.loadTexts: cucsComputeFwSyncAckInstanceId.setStatus('current') cucsComputeFwSyncAckDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 60, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeFwSyncAckDn.setStatus('current') cucsComputeFwSyncAckRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 60, 1, 3), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeFwSyncAckRn.setStatus('current') cucsComputeFwSyncAckAcked = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 60, 1, 4), DateAndTime()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeFwSyncAckAcked.setStatus('current') cucsComputeFwSyncAckAckedBy = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 60, 1, 5), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeFwSyncAckAckedBy.setStatus('current') cucsComputeFwSyncAckAdminState = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 60, 1, 6), CucsTrigAdminState()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeFwSyncAckAdminState.setStatus('current') cucsComputeFwSyncAckAutoDelete = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 60, 1, 7), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeFwSyncAckAutoDelete.setStatus('current') cucsComputeFwSyncAckChangeBy = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 60, 1, 8), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeFwSyncAckChangeBy.setStatus('current') cucsComputeFwSyncAckChangeDetails = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 60, 1, 9), CucsTrigAckChangeDetails()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeFwSyncAckChangeDetails.setStatus('current') cucsComputeFwSyncAckChanges = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 60, 1, 10), CucsTrigAckChanges()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeFwSyncAckChanges.setStatus('current') cucsComputeFwSyncAckDescr = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 60, 1, 11), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeFwSyncAckDescr.setStatus('current') cucsComputeFwSyncAckDisr = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 60, 1, 12), CucsTrigAckDisr()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeFwSyncAckDisr.setStatus('current') cucsComputeFwSyncAckIgnoreCap = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 60, 1, 13), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeFwSyncAckIgnoreCap.setStatus('current') cucsComputeFwSyncAckIntId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 60, 1, 14), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeFwSyncAckIntId.setStatus('current') cucsComputeFwSyncAckModified = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 60, 1, 15), DateAndTime()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeFwSyncAckModified.setStatus('current') cucsComputeFwSyncAckName = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 60, 1, 16), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeFwSyncAckName.setStatus('current') cucsComputeFwSyncAckOperScheduler = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 60, 1, 17), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeFwSyncAckOperScheduler.setStatus('current') cucsComputeFwSyncAckOperState = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 60, 1, 18), CucsTrigAckOperState()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeFwSyncAckOperState.setStatus('current') cucsComputeFwSyncAckPolicyLevel = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 60, 1, 19), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeFwSyncAckPolicyLevel.setStatus('current') cucsComputeFwSyncAckPolicyOwner = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 60, 1, 20), CucsPolicyPolicyOwner()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeFwSyncAckPolicyOwner.setStatus('current') cucsComputeFwSyncAckPrevOperState = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 60, 1, 21), CucsTrigAckPrevOperState()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeFwSyncAckPrevOperState.setStatus('current') cucsComputeFwSyncAckScheduler = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 60, 1, 22), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeFwSyncAckScheduler.setStatus('current') cucsComputeFwSyncAckTriggerConfigState = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 60, 1, 23), CucsTrigTrigState()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeFwSyncAckTriggerConfigState.setStatus('current') cucsComputeHealthLedSensorAlarmTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 59), ) if mibBuilder.loadTexts: cucsComputeHealthLedSensorAlarmTable.setStatus('current') cucsComputeHealthLedSensorAlarmEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 59, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-COMPUTE-MIB", "cucsComputeHealthLedSensorAlarmInstanceId")) if mibBuilder.loadTexts: cucsComputeHealthLedSensorAlarmEntry.setStatus('current') cucsComputeHealthLedSensorAlarmInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 59, 1, 1), CucsManagedObjectId()) if mibBuilder.loadTexts: cucsComputeHealthLedSensorAlarmInstanceId.setStatus('current') cucsComputeHealthLedSensorAlarmDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 59, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeHealthLedSensorAlarmDn.setStatus('current') cucsComputeHealthLedSensorAlarmRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 59, 1, 3), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeHealthLedSensorAlarmRn.setStatus('current') cucsComputeHealthLedSensorAlarmAlarmDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 59, 1, 4), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeHealthLedSensorAlarmAlarmDesc.setStatus('current') cucsComputeHealthLedSensorAlarmAlarmSeverity = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 59, 1, 5), CucsComputeAlarmSeverity()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeHealthLedSensorAlarmAlarmSeverity.setStatus('current') cucsComputeHealthLedSensorAlarmSensorId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 59, 1, 6), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeHealthLedSensorAlarmSensorId.setStatus('current') cucsComputeHealthLedSensorAlarmSensorName = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 59, 1, 7), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeHealthLedSensorAlarmSensorName.setStatus('current') cucsComputeIOHubTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 11), ) if mibBuilder.loadTexts: cucsComputeIOHubTable.setStatus('current') cucsComputeIOHubEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 11, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-COMPUTE-MIB", "cucsComputeIOHubInstanceId")) if mibBuilder.loadTexts: cucsComputeIOHubEntry.setStatus('current') cucsComputeIOHubInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 11, 1, 1), CucsManagedObjectId()) if mibBuilder.loadTexts: cucsComputeIOHubInstanceId.setStatus('current') cucsComputeIOHubDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 11, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeIOHubDn.setStatus('current') cucsComputeIOHubRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 11, 1, 3), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeIOHubRn.setStatus('current') cucsComputeIOHubId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 11, 1, 4), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeIOHubId.setStatus('current') cucsComputeIOHubModel = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 11, 1, 5), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeIOHubModel.setStatus('current') cucsComputeIOHubOperState = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 11, 1, 6), CucsEquipmentOperability()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeIOHubOperState.setStatus('current') cucsComputeIOHubOperability = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 11, 1, 7), CucsEquipmentOperability()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeIOHubOperability.setStatus('current') cucsComputeIOHubPerf = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 11, 1, 8), CucsEquipmentSensorThresholdStatus()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeIOHubPerf.setStatus('current') cucsComputeIOHubPower = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 11, 1, 9), CucsEquipmentPowerState()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeIOHubPower.setStatus('current') cucsComputeIOHubPresence = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 11, 1, 10), CucsEquipmentPresence()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeIOHubPresence.setStatus('current') cucsComputeIOHubRevision = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 11, 1, 11), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeIOHubRevision.setStatus('current') cucsComputeIOHubSerial = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 11, 1, 12), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeIOHubSerial.setStatus('current') cucsComputeIOHubThermal = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 11, 1, 13), CucsEquipmentSensorThresholdStatus()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeIOHubThermal.setStatus('current') cucsComputeIOHubVendor = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 11, 1, 14), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeIOHubVendor.setStatus('current') cucsComputeIOHubVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 11, 1, 15), CucsEquipmentSensorThresholdStatus()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeIOHubVoltage.setStatus('current') cucsComputeIOHubOperQualifierReason = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 11, 1, 16), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeIOHubOperQualifierReason.setStatus('current') cucsComputeIOHubLocationDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 11, 1, 17), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeIOHubLocationDn.setStatus('current') cucsComputeIOHubEnvStatsTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 12), ) if mibBuilder.loadTexts: cucsComputeIOHubEnvStatsTable.setStatus('current') cucsComputeIOHubEnvStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 12, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-COMPUTE-MIB", "cucsComputeIOHubEnvStatsInstanceId")) if mibBuilder.loadTexts: cucsComputeIOHubEnvStatsEntry.setStatus('current') cucsComputeIOHubEnvStatsInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 12, 1, 1), CucsManagedObjectId()) if mibBuilder.loadTexts: cucsComputeIOHubEnvStatsInstanceId.setStatus('current') cucsComputeIOHubEnvStatsDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 12, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeIOHubEnvStatsDn.setStatus('current') cucsComputeIOHubEnvStatsRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 12, 1, 3), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeIOHubEnvStatsRn.setStatus('current') cucsComputeIOHubEnvStatsIntervals = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 12, 1, 4), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeIOHubEnvStatsIntervals.setStatus('current') cucsComputeIOHubEnvStatsSuspect = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 12, 1, 5), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeIOHubEnvStatsSuspect.setStatus('current') cucsComputeIOHubEnvStatsTemperature = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 12, 1, 6), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeIOHubEnvStatsTemperature.setStatus('current') cucsComputeIOHubEnvStatsTemperatureAvg = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 12, 1, 7), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeIOHubEnvStatsTemperatureAvg.setStatus('current') cucsComputeIOHubEnvStatsTemperatureMax = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 12, 1, 8), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeIOHubEnvStatsTemperatureMax.setStatus('current') cucsComputeIOHubEnvStatsTemperatureMin = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 12, 1, 9), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeIOHubEnvStatsTemperatureMin.setStatus('current') cucsComputeIOHubEnvStatsThresholded = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 12, 1, 10), CucsComputeIOHubEnvStatsThresholded()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeIOHubEnvStatsThresholded.setStatus('current') cucsComputeIOHubEnvStatsTimeCollected = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 12, 1, 11), DateAndTime()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeIOHubEnvStatsTimeCollected.setStatus('current') cucsComputeIOHubEnvStatsUpdate = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 12, 1, 12), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeIOHubEnvStatsUpdate.setStatus('current') cucsComputeIOHubEnvStatsHistTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 13), ) if mibBuilder.loadTexts: cucsComputeIOHubEnvStatsHistTable.setStatus('current') cucsComputeIOHubEnvStatsHistEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 13, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-COMPUTE-MIB", "cucsComputeIOHubEnvStatsHistInstanceId")) if mibBuilder.loadTexts: cucsComputeIOHubEnvStatsHistEntry.setStatus('current') cucsComputeIOHubEnvStatsHistInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 13, 1, 1), CucsManagedObjectId()) if mibBuilder.loadTexts: cucsComputeIOHubEnvStatsHistInstanceId.setStatus('current') cucsComputeIOHubEnvStatsHistDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 13, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeIOHubEnvStatsHistDn.setStatus('current') cucsComputeIOHubEnvStatsHistRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 13, 1, 3), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeIOHubEnvStatsHistRn.setStatus('current') cucsComputeIOHubEnvStatsHistId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 13, 1, 4), Unsigned64()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeIOHubEnvStatsHistId.setStatus('current') cucsComputeIOHubEnvStatsHistMostRecent = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 13, 1, 5), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeIOHubEnvStatsHistMostRecent.setStatus('current') cucsComputeIOHubEnvStatsHistSuspect = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 13, 1, 6), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeIOHubEnvStatsHistSuspect.setStatus('current') cucsComputeIOHubEnvStatsHistTemperature = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 13, 1, 7), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeIOHubEnvStatsHistTemperature.setStatus('current') cucsComputeIOHubEnvStatsHistTemperatureAvg = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 13, 1, 8), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeIOHubEnvStatsHistTemperatureAvg.setStatus('current') cucsComputeIOHubEnvStatsHistTemperatureMax = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 13, 1, 9), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeIOHubEnvStatsHistTemperatureMax.setStatus('current') cucsComputeIOHubEnvStatsHistTemperatureMin = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 13, 1, 10), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeIOHubEnvStatsHistTemperatureMin.setStatus('current') cucsComputeIOHubEnvStatsHistThresholded = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 13, 1, 11), CucsComputeIOHubEnvStatsHistThresholded()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeIOHubEnvStatsHistThresholded.setStatus('current') cucsComputeIOHubEnvStatsHistTimeCollected = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 13, 1, 12), DateAndTime()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeIOHubEnvStatsHistTimeCollected.setStatus('current') cucsComputeInstanceIdQualTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 72), ) if mibBuilder.loadTexts: cucsComputeInstanceIdQualTable.setStatus('current') cucsComputeInstanceIdQualEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 72, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-COMPUTE-MIB", "cucsComputeInstanceIdQualInstanceId")) if mibBuilder.loadTexts: cucsComputeInstanceIdQualEntry.setStatus('current') cucsComputeInstanceIdQualInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 72, 1, 1), CucsManagedObjectId()) if mibBuilder.loadTexts: cucsComputeInstanceIdQualInstanceId.setStatus('current') cucsComputeInstanceIdQualDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 72, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeInstanceIdQualDn.setStatus('current') cucsComputeInstanceIdQualRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 72, 1, 3), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeInstanceIdQualRn.setStatus('current') cucsComputeInstanceIdQualMaxId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 72, 1, 4), CucsComputeInstanceIdQualMaxId()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeInstanceIdQualMaxId.setStatus('current') cucsComputeInstanceIdQualMinId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 72, 1, 5), CucsComputeInstanceIdQualMinId()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeInstanceIdQualMinId.setStatus('current') cucsComputeKvmMgmtPolicyTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 65), ) if mibBuilder.loadTexts: cucsComputeKvmMgmtPolicyTable.setStatus('current') cucsComputeKvmMgmtPolicyEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 65, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-COMPUTE-MIB", "cucsComputeKvmMgmtPolicyInstanceId")) if mibBuilder.loadTexts: cucsComputeKvmMgmtPolicyEntry.setStatus('current') cucsComputeKvmMgmtPolicyInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 65, 1, 1), CucsManagedObjectId()) if mibBuilder.loadTexts: cucsComputeKvmMgmtPolicyInstanceId.setStatus('current') cucsComputeKvmMgmtPolicyDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 65, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeKvmMgmtPolicyDn.setStatus('current') cucsComputeKvmMgmtPolicyRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 65, 1, 3), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeKvmMgmtPolicyRn.setStatus('current') cucsComputeKvmMgmtPolicyDescr = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 65, 1, 4), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeKvmMgmtPolicyDescr.setStatus('current') cucsComputeKvmMgmtPolicyIntId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 65, 1, 5), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeKvmMgmtPolicyIntId.setStatus('current') cucsComputeKvmMgmtPolicyName = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 65, 1, 6), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeKvmMgmtPolicyName.setStatus('current') cucsComputeKvmMgmtPolicyPolicyLevel = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 65, 1, 7), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeKvmMgmtPolicyPolicyLevel.setStatus('current') cucsComputeKvmMgmtPolicyPolicyOwner = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 65, 1, 8), CucsPolicyPolicyOwner()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeKvmMgmtPolicyPolicyOwner.setStatus('current') cucsComputeKvmMgmtPolicyVmediaEncryption = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 65, 1, 9), CucsComputeKvmMgmtPolicyVmediaEncryption()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeKvmMgmtPolicyVmediaEncryption.setStatus('current') cucsComputeMbPowerStatsTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 14), ) if mibBuilder.loadTexts: cucsComputeMbPowerStatsTable.setStatus('current') cucsComputeMbPowerStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 14, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-COMPUTE-MIB", "cucsComputeMbPowerStatsInstanceId")) if mibBuilder.loadTexts: cucsComputeMbPowerStatsEntry.setStatus('current') cucsComputeMbPowerStatsInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 14, 1, 1), CucsManagedObjectId()) if mibBuilder.loadTexts: cucsComputeMbPowerStatsInstanceId.setStatus('current') cucsComputeMbPowerStatsDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 14, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbPowerStatsDn.setStatus('current') cucsComputeMbPowerStatsRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 14, 1, 3), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbPowerStatsRn.setStatus('current') cucsComputeMbPowerStatsConsumedPower = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 14, 1, 4), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbPowerStatsConsumedPower.setStatus('current') cucsComputeMbPowerStatsConsumedPowerAvg = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 14, 1, 5), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbPowerStatsConsumedPowerAvg.setStatus('current') cucsComputeMbPowerStatsConsumedPowerMax = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 14, 1, 6), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbPowerStatsConsumedPowerMax.setStatus('current') cucsComputeMbPowerStatsConsumedPowerMin = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 14, 1, 7), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbPowerStatsConsumedPowerMin.setStatus('current') cucsComputeMbPowerStatsInputCurrent = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 14, 1, 8), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbPowerStatsInputCurrent.setStatus('current') cucsComputeMbPowerStatsInputCurrentAvg = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 14, 1, 9), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbPowerStatsInputCurrentAvg.setStatus('current') cucsComputeMbPowerStatsInputCurrentMax = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 14, 1, 10), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbPowerStatsInputCurrentMax.setStatus('current') cucsComputeMbPowerStatsInputCurrentMin = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 14, 1, 11), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbPowerStatsInputCurrentMin.setStatus('current') cucsComputeMbPowerStatsInputVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 14, 1, 12), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbPowerStatsInputVoltage.setStatus('current') cucsComputeMbPowerStatsInputVoltageAvg = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 14, 1, 13), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbPowerStatsInputVoltageAvg.setStatus('current') cucsComputeMbPowerStatsInputVoltageMax = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 14, 1, 14), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbPowerStatsInputVoltageMax.setStatus('current') cucsComputeMbPowerStatsInputVoltageMin = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 14, 1, 15), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbPowerStatsInputVoltageMin.setStatus('current') cucsComputeMbPowerStatsIntervals = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 14, 1, 16), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbPowerStatsIntervals.setStatus('current') cucsComputeMbPowerStatsSuspect = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 14, 1, 17), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbPowerStatsSuspect.setStatus('current') cucsComputeMbPowerStatsThresholded = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 14, 1, 18), CucsComputeMbPowerStatsThresholded()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbPowerStatsThresholded.setStatus('current') cucsComputeMbPowerStatsTimeCollected = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 14, 1, 19), DateAndTime()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbPowerStatsTimeCollected.setStatus('current') cucsComputeMbPowerStatsUpdate = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 14, 1, 20), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbPowerStatsUpdate.setStatus('current') cucsComputeMbPowerStatsHistTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 15), ) if mibBuilder.loadTexts: cucsComputeMbPowerStatsHistTable.setStatus('current') cucsComputeMbPowerStatsHistEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 15, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-COMPUTE-MIB", "cucsComputeMbPowerStatsHistInstanceId")) if mibBuilder.loadTexts: cucsComputeMbPowerStatsHistEntry.setStatus('current') cucsComputeMbPowerStatsHistInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 15, 1, 1), CucsManagedObjectId()) if mibBuilder.loadTexts: cucsComputeMbPowerStatsHistInstanceId.setStatus('current') cucsComputeMbPowerStatsHistDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 15, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbPowerStatsHistDn.setStatus('current') cucsComputeMbPowerStatsHistRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 15, 1, 3), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbPowerStatsHistRn.setStatus('current') cucsComputeMbPowerStatsHistConsumedPower = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 15, 1, 4), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbPowerStatsHistConsumedPower.setStatus('current') cucsComputeMbPowerStatsHistConsumedPowerAvg = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 15, 1, 5), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbPowerStatsHistConsumedPowerAvg.setStatus('current') cucsComputeMbPowerStatsHistConsumedPowerMax = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 15, 1, 6), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbPowerStatsHistConsumedPowerMax.setStatus('current') cucsComputeMbPowerStatsHistConsumedPowerMin = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 15, 1, 7), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbPowerStatsHistConsumedPowerMin.setStatus('current') cucsComputeMbPowerStatsHistId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 15, 1, 8), Unsigned64()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbPowerStatsHistId.setStatus('current') cucsComputeMbPowerStatsHistInputCurrent = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 15, 1, 9), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbPowerStatsHistInputCurrent.setStatus('current') cucsComputeMbPowerStatsHistInputCurrentAvg = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 15, 1, 10), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbPowerStatsHistInputCurrentAvg.setStatus('current') cucsComputeMbPowerStatsHistInputCurrentMax = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 15, 1, 11), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbPowerStatsHistInputCurrentMax.setStatus('current') cucsComputeMbPowerStatsHistInputCurrentMin = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 15, 1, 12), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbPowerStatsHistInputCurrentMin.setStatus('current') cucsComputeMbPowerStatsHistInputVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 15, 1, 13), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbPowerStatsHistInputVoltage.setStatus('current') cucsComputeMbPowerStatsHistInputVoltageAvg = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 15, 1, 14), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbPowerStatsHistInputVoltageAvg.setStatus('current') cucsComputeMbPowerStatsHistInputVoltageMax = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 15, 1, 15), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbPowerStatsHistInputVoltageMax.setStatus('current') cucsComputeMbPowerStatsHistInputVoltageMin = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 15, 1, 16), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbPowerStatsHistInputVoltageMin.setStatus('current') cucsComputeMbPowerStatsHistMostRecent = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 15, 1, 17), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbPowerStatsHistMostRecent.setStatus('current') cucsComputeMbPowerStatsHistSuspect = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 15, 1, 18), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbPowerStatsHistSuspect.setStatus('current') cucsComputeMbPowerStatsHistThresholded = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 15, 1, 19), CucsComputeMbPowerStatsHistThresholded()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbPowerStatsHistThresholded.setStatus('current') cucsComputeMbPowerStatsHistTimeCollected = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 15, 1, 20), DateAndTime()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbPowerStatsHistTimeCollected.setStatus('current') cucsComputeMbTempStatsTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 16), ) if mibBuilder.loadTexts: cucsComputeMbTempStatsTable.setStatus('current') cucsComputeMbTempStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 16, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-COMPUTE-MIB", "cucsComputeMbTempStatsInstanceId")) if mibBuilder.loadTexts: cucsComputeMbTempStatsEntry.setStatus('current') cucsComputeMbTempStatsInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 16, 1, 1), CucsManagedObjectId()) if mibBuilder.loadTexts: cucsComputeMbTempStatsInstanceId.setStatus('current') cucsComputeMbTempStatsDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 16, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbTempStatsDn.setStatus('current') cucsComputeMbTempStatsRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 16, 1, 3), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbTempStatsRn.setStatus('current') cucsComputeMbTempStatsFmTempSenIo = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 16, 1, 4), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbTempStatsFmTempSenIo.setStatus('current') cucsComputeMbTempStatsFmTempSenIoAvg = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 16, 1, 5), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbTempStatsFmTempSenIoAvg.setStatus('current') cucsComputeMbTempStatsFmTempSenIoMax = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 16, 1, 6), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbTempStatsFmTempSenIoMax.setStatus('current') cucsComputeMbTempStatsFmTempSenIoMin = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 16, 1, 7), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbTempStatsFmTempSenIoMin.setStatus('current') cucsComputeMbTempStatsFmTempSenRear = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 16, 1, 8), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbTempStatsFmTempSenRear.setStatus('current') cucsComputeMbTempStatsFmTempSenRearAvg = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 16, 1, 9), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbTempStatsFmTempSenRearAvg.setStatus('current') cucsComputeMbTempStatsFmTempSenRearL = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 16, 1, 10), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbTempStatsFmTempSenRearL.setStatus('current') cucsComputeMbTempStatsFmTempSenRearLAvg = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 16, 1, 11), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbTempStatsFmTempSenRearLAvg.setStatus('current') cucsComputeMbTempStatsFmTempSenRearLMax = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 16, 1, 12), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbTempStatsFmTempSenRearLMax.setStatus('current') cucsComputeMbTempStatsFmTempSenRearLMin = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 16, 1, 13), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbTempStatsFmTempSenRearLMin.setStatus('current') cucsComputeMbTempStatsFmTempSenRearMax = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 16, 1, 14), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbTempStatsFmTempSenRearMax.setStatus('current') cucsComputeMbTempStatsFmTempSenRearMin = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 16, 1, 15), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbTempStatsFmTempSenRearMin.setStatus('current') cucsComputeMbTempStatsFmTempSenRearR = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 16, 1, 16), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbTempStatsFmTempSenRearR.setStatus('current') cucsComputeMbTempStatsFmTempSenRearRAvg = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 16, 1, 17), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbTempStatsFmTempSenRearRAvg.setStatus('current') cucsComputeMbTempStatsFmTempSenRearRMax = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 16, 1, 18), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbTempStatsFmTempSenRearRMax.setStatus('current') cucsComputeMbTempStatsFmTempSenRearRMin = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 16, 1, 19), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbTempStatsFmTempSenRearRMin.setStatus('current') cucsComputeMbTempStatsIntervals = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 16, 1, 20), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbTempStatsIntervals.setStatus('current') cucsComputeMbTempStatsSuspect = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 16, 1, 21), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbTempStatsSuspect.setStatus('current') cucsComputeMbTempStatsThresholded = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 16, 1, 22), CucsComputeMbTempStatsThresholded()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbTempStatsThresholded.setStatus('current') cucsComputeMbTempStatsTimeCollected = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 16, 1, 23), DateAndTime()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbTempStatsTimeCollected.setStatus('current') cucsComputeMbTempStatsUpdate = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 16, 1, 24), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbTempStatsUpdate.setStatus('current') cucsComputeMbTempStatsHistTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 17), ) if mibBuilder.loadTexts: cucsComputeMbTempStatsHistTable.setStatus('current') cucsComputeMbTempStatsHistEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 17, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-COMPUTE-MIB", "cucsComputeMbTempStatsHistInstanceId")) if mibBuilder.loadTexts: cucsComputeMbTempStatsHistEntry.setStatus('current') cucsComputeMbTempStatsHistInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 17, 1, 1), CucsManagedObjectId()) if mibBuilder.loadTexts: cucsComputeMbTempStatsHistInstanceId.setStatus('current') cucsComputeMbTempStatsHistDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 17, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbTempStatsHistDn.setStatus('current') cucsComputeMbTempStatsHistRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 17, 1, 3), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbTempStatsHistRn.setStatus('current') cucsComputeMbTempStatsHistFmTempSenIo = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 17, 1, 4), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbTempStatsHistFmTempSenIo.setStatus('current') cucsComputeMbTempStatsHistFmTempSenIoAvg = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 17, 1, 5), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbTempStatsHistFmTempSenIoAvg.setStatus('current') cucsComputeMbTempStatsHistFmTempSenIoMax = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 17, 1, 6), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbTempStatsHistFmTempSenIoMax.setStatus('current') cucsComputeMbTempStatsHistFmTempSenIoMin = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 17, 1, 7), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbTempStatsHistFmTempSenIoMin.setStatus('current') cucsComputeMbTempStatsHistFmTempSenRear = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 17, 1, 8), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbTempStatsHistFmTempSenRear.setStatus('current') cucsComputeMbTempStatsHistFmTempSenRearAvg = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 17, 1, 9), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbTempStatsHistFmTempSenRearAvg.setStatus('current') cucsComputeMbTempStatsHistFmTempSenRearL = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 17, 1, 10), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbTempStatsHistFmTempSenRearL.setStatus('current') cucsComputeMbTempStatsHistFmTempSenRearLAvg = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 17, 1, 11), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbTempStatsHistFmTempSenRearLAvg.setStatus('current') cucsComputeMbTempStatsHistFmTempSenRearLMax = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 17, 1, 12), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbTempStatsHistFmTempSenRearLMax.setStatus('current') cucsComputeMbTempStatsHistFmTempSenRearLMin = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 17, 1, 13), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbTempStatsHistFmTempSenRearLMin.setStatus('current') cucsComputeMbTempStatsHistFmTempSenRearMax = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 17, 1, 14), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbTempStatsHistFmTempSenRearMax.setStatus('current') cucsComputeMbTempStatsHistFmTempSenRearMin = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 17, 1, 15), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbTempStatsHistFmTempSenRearMin.setStatus('current') cucsComputeMbTempStatsHistFmTempSenRearR = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 17, 1, 16), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbTempStatsHistFmTempSenRearR.setStatus('current') cucsComputeMbTempStatsHistFmTempSenRearRAvg = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 17, 1, 17), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbTempStatsHistFmTempSenRearRAvg.setStatus('current') cucsComputeMbTempStatsHistFmTempSenRearRMax = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 17, 1, 18), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbTempStatsHistFmTempSenRearRMax.setStatus('current') cucsComputeMbTempStatsHistFmTempSenRearRMin = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 17, 1, 19), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbTempStatsHistFmTempSenRearRMin.setStatus('current') cucsComputeMbTempStatsHistId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 17, 1, 20), Unsigned64()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbTempStatsHistId.setStatus('current') cucsComputeMbTempStatsHistMostRecent = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 17, 1, 21), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbTempStatsHistMostRecent.setStatus('current') cucsComputeMbTempStatsHistSuspect = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 17, 1, 22), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbTempStatsHistSuspect.setStatus('current') cucsComputeMbTempStatsHistThresholded = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 17, 1, 23), CucsComputeMbTempStatsHistThresholded()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbTempStatsHistThresholded.setStatus('current') cucsComputeMbTempStatsHistTimeCollected = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 17, 1, 24), DateAndTime()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMbTempStatsHistTimeCollected.setStatus('current') cucsComputeMemoryConfigPolicyTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 61), ) if mibBuilder.loadTexts: cucsComputeMemoryConfigPolicyTable.setStatus('current') cucsComputeMemoryConfigPolicyEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 61, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-COMPUTE-MIB", "cucsComputeMemoryConfigPolicyInstanceId")) if mibBuilder.loadTexts: cucsComputeMemoryConfigPolicyEntry.setStatus('current') cucsComputeMemoryConfigPolicyInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 61, 1, 1), CucsManagedObjectId()) if mibBuilder.loadTexts: cucsComputeMemoryConfigPolicyInstanceId.setStatus('current') cucsComputeMemoryConfigPolicyDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 61, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMemoryConfigPolicyDn.setStatus('current') cucsComputeMemoryConfigPolicyRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 61, 1, 3), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMemoryConfigPolicyRn.setStatus('current') cucsComputeMemoryConfigPolicyBlackListing = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 61, 1, 4), CucsComputeBlackListing()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMemoryConfigPolicyBlackListing.setStatus('current') cucsComputeMemoryConfigPolicyDescr = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 61, 1, 5), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMemoryConfigPolicyDescr.setStatus('current') cucsComputeMemoryConfigPolicyIntId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 61, 1, 6), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMemoryConfigPolicyIntId.setStatus('current') cucsComputeMemoryConfigPolicyName = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 61, 1, 7), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMemoryConfigPolicyName.setStatus('current') cucsComputeMemoryConfigPolicyPolicyLevel = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 61, 1, 8), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMemoryConfigPolicyPolicyLevel.setStatus('current') cucsComputeMemoryConfigPolicyPolicyOwner = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 61, 1, 9), CucsPolicyPolicyOwner()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMemoryConfigPolicyPolicyOwner.setStatus('current') cucsComputeMemoryConfigurationTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 62), ) if mibBuilder.loadTexts: cucsComputeMemoryConfigurationTable.setStatus('current') cucsComputeMemoryConfigurationEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 62, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-COMPUTE-MIB", "cucsComputeMemoryConfigurationInstanceId")) if mibBuilder.loadTexts: cucsComputeMemoryConfigurationEntry.setStatus('current') cucsComputeMemoryConfigurationInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 62, 1, 1), CucsManagedObjectId()) if mibBuilder.loadTexts: cucsComputeMemoryConfigurationInstanceId.setStatus('current') cucsComputeMemoryConfigurationDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 62, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMemoryConfigurationDn.setStatus('current') cucsComputeMemoryConfigurationRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 62, 1, 3), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMemoryConfigurationRn.setStatus('current') cucsComputeMemoryConfigurationAdminMemoryState = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 62, 1, 4), CucsComputeAdminMemoryState()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMemoryConfigurationAdminMemoryState.setStatus('current') cucsComputeMemoryConfigurationBlackListing = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 62, 1, 5), CucsComputeBlackListing()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMemoryConfigurationBlackListing.setStatus('current') cucsComputeMemoryUnitConstraintDefTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 18), ) if mibBuilder.loadTexts: cucsComputeMemoryUnitConstraintDefTable.setStatus('current') cucsComputeMemoryUnitConstraintDefEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 18, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-COMPUTE-MIB", "cucsComputeMemoryUnitConstraintDefInstanceId")) if mibBuilder.loadTexts: cucsComputeMemoryUnitConstraintDefEntry.setStatus('current') cucsComputeMemoryUnitConstraintDefInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 18, 1, 1), CucsManagedObjectId()) if mibBuilder.loadTexts: cucsComputeMemoryUnitConstraintDefInstanceId.setStatus('current') cucsComputeMemoryUnitConstraintDefDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 18, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMemoryUnitConstraintDefDn.setStatus('current') cucsComputeMemoryUnitConstraintDefRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 18, 1, 3), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMemoryUnitConstraintDefRn.setStatus('current') cucsComputeMemoryUnitConstraintDefDescr = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 18, 1, 4), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMemoryUnitConstraintDefDescr.setStatus('current') cucsComputeMemoryUnitConstraintDefIntId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 18, 1, 5), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMemoryUnitConstraintDefIntId.setStatus('current') cucsComputeMemoryUnitConstraintDefName = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 18, 1, 6), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMemoryUnitConstraintDefName.setStatus('current') cucsComputeMemoryUnitConstraintDefType = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 18, 1, 7), CucsComputeMemoryUnitConstraintType()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMemoryUnitConstraintDefType.setStatus('current') cucsComputeMemoryUnitConstraintDefRevisionModifier = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 18, 1, 8), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMemoryUnitConstraintDefRevisionModifier.setStatus('current') cucsComputeMemoryUnitConstraintDefPolicyLevel = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 18, 1, 9), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMemoryUnitConstraintDefPolicyLevel.setStatus('current') cucsComputeMemoryUnitConstraintDefPolicyOwner = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 18, 1, 10), CucsPolicyPolicyOwner()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeMemoryUnitConstraintDefPolicyOwner.setStatus('current') cucsComputePCIeFatalCompletionStatsTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 19), ) if mibBuilder.loadTexts: cucsComputePCIeFatalCompletionStatsTable.setStatus('current') cucsComputePCIeFatalCompletionStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 19, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-COMPUTE-MIB", "cucsComputePCIeFatalCompletionStatsInstanceId")) if mibBuilder.loadTexts: cucsComputePCIeFatalCompletionStatsEntry.setStatus('current') cucsComputePCIeFatalCompletionStatsInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 19, 1, 1), CucsManagedObjectId()) if mibBuilder.loadTexts: cucsComputePCIeFatalCompletionStatsInstanceId.setStatus('current') cucsComputePCIeFatalCompletionStatsDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 19, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalCompletionStatsDn.setStatus('current') cucsComputePCIeFatalCompletionStatsRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 19, 1, 3), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalCompletionStatsRn.setStatus('current') cucsComputePCIeFatalCompletionStatsAbortErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 19, 1, 4), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalCompletionStatsAbortErrors.setStatus('current') cucsComputePCIeFatalCompletionStatsAbortErrors15Min = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 19, 1, 5), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalCompletionStatsAbortErrors15Min.setStatus('current') cucsComputePCIeFatalCompletionStatsAbortErrors15MinH = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 19, 1, 6), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalCompletionStatsAbortErrors15MinH.setStatus('current') cucsComputePCIeFatalCompletionStatsAbortErrors1Day = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 19, 1, 7), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalCompletionStatsAbortErrors1Day.setStatus('current') cucsComputePCIeFatalCompletionStatsAbortErrors1DayH = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 19, 1, 8), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalCompletionStatsAbortErrors1DayH.setStatus('current') cucsComputePCIeFatalCompletionStatsAbortErrors1Hour = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 19, 1, 9), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalCompletionStatsAbortErrors1Hour.setStatus('current') cucsComputePCIeFatalCompletionStatsAbortErrors1HourH = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 19, 1, 10), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalCompletionStatsAbortErrors1HourH.setStatus('current') cucsComputePCIeFatalCompletionStatsAbortErrors1Week = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 19, 1, 11), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalCompletionStatsAbortErrors1Week.setStatus('current') cucsComputePCIeFatalCompletionStatsAbortErrors1WeekH = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 19, 1, 12), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalCompletionStatsAbortErrors1WeekH.setStatus('current') cucsComputePCIeFatalCompletionStatsTimeoutErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 19, 1, 13), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalCompletionStatsTimeoutErrors.setStatus('current') cucsComputePCIeFatalCompletionStatsTimeoutErrors15Min = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 19, 1, 14), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalCompletionStatsTimeoutErrors15Min.setStatus('current') cucsComputePCIeFatalCompletionStatsTimeoutErrors15MinH = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 19, 1, 15), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalCompletionStatsTimeoutErrors15MinH.setStatus('current') cucsComputePCIeFatalCompletionStatsTimeoutErrors1Day = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 19, 1, 16), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalCompletionStatsTimeoutErrors1Day.setStatus('current') cucsComputePCIeFatalCompletionStatsTimeoutErrors1DayH = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 19, 1, 17), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalCompletionStatsTimeoutErrors1DayH.setStatus('current') cucsComputePCIeFatalCompletionStatsTimeoutErrors1Hour = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 19, 1, 18), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalCompletionStatsTimeoutErrors1Hour.setStatus('current') cucsComputePCIeFatalCompletionStatsTimeoutErrors1HourH = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 19, 1, 19), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalCompletionStatsTimeoutErrors1HourH.setStatus('current') cucsComputePCIeFatalCompletionStatsTimeoutErrors1Week = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 19, 1, 20), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalCompletionStatsTimeoutErrors1Week.setStatus('current') cucsComputePCIeFatalCompletionStatsTimeoutErrors1WeekH = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 19, 1, 21), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalCompletionStatsTimeoutErrors1WeekH.setStatus('current') cucsComputePCIeFatalCompletionStatsIntervals = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 19, 1, 22), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalCompletionStatsIntervals.setStatus('current') cucsComputePCIeFatalCompletionStatsSuspect = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 19, 1, 23), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalCompletionStatsSuspect.setStatus('current') cucsComputePCIeFatalCompletionStatsThresholded = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 19, 1, 24), CucsComputePCIeFatalCompletionStatsThresholded()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalCompletionStatsThresholded.setStatus('current') cucsComputePCIeFatalCompletionStatsTimeCollected = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 19, 1, 25), DateAndTime()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalCompletionStatsTimeCollected.setStatus('current') cucsComputePCIeFatalCompletionStatsUnexpectedErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 19, 1, 26), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalCompletionStatsUnexpectedErrors.setStatus('current') cucsComputePCIeFatalCompletionStatsUnexpectedErrors15Min = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 19, 1, 27), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalCompletionStatsUnexpectedErrors15Min.setStatus('current') cucsComputePCIeFatalCompletionStatsUnexpectedErrors15MinH = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 19, 1, 28), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalCompletionStatsUnexpectedErrors15MinH.setStatus('current') cucsComputePCIeFatalCompletionStatsUnexpectedErrors1Day = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 19, 1, 29), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalCompletionStatsUnexpectedErrors1Day.setStatus('current') cucsComputePCIeFatalCompletionStatsUnexpectedErrors1DayH = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 19, 1, 30), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalCompletionStatsUnexpectedErrors1DayH.setStatus('current') cucsComputePCIeFatalCompletionStatsUnexpectedErrors1Hour = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 19, 1, 31), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalCompletionStatsUnexpectedErrors1Hour.setStatus('current') cucsComputePCIeFatalCompletionStatsUnexpectedErrors1HourH = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 19, 1, 32), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalCompletionStatsUnexpectedErrors1HourH.setStatus('current') cucsComputePCIeFatalCompletionStatsUnexpectedErrors1Week = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 19, 1, 33), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalCompletionStatsUnexpectedErrors1Week.setStatus('current') cucsComputePCIeFatalCompletionStatsUnexpectedErrors1WeekH = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 19, 1, 34), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalCompletionStatsUnexpectedErrors1WeekH.setStatus('current') cucsComputePCIeFatalCompletionStatsUpdate = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 19, 1, 35), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalCompletionStatsUpdate.setStatus('current') cucsComputePCIeFatalCompletionStatsAbortErrors2Weeks = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 19, 1, 36), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalCompletionStatsAbortErrors2Weeks.setStatus('current') cucsComputePCIeFatalCompletionStatsAbortErrors2WeeksH = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 19, 1, 37), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalCompletionStatsAbortErrors2WeeksH.setStatus('current') cucsComputePCIeFatalCompletionStatsTimeoutErrors2Weeks = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 19, 1, 38), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalCompletionStatsTimeoutErrors2Weeks.setStatus('current') cucsComputePCIeFatalCompletionStatsTimeoutErrors2WeeksH = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 19, 1, 39), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalCompletionStatsTimeoutErrors2WeeksH.setStatus('current') cucsComputePCIeFatalCompletionStatsUnexpectedErrors2Weeks = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 19, 1, 40), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalCompletionStatsUnexpectedErrors2Weeks.setStatus('current') cucsComputePCIeFatalCompletionStatsUnexpectedErrors2WeeksH = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 19, 1, 41), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalCompletionStatsUnexpectedErrors2WeeksH.setStatus('current') cucsComputePCIeFatalProtocolStatsTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 20), ) if mibBuilder.loadTexts: cucsComputePCIeFatalProtocolStatsTable.setStatus('current') cucsComputePCIeFatalProtocolStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 20, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-COMPUTE-MIB", "cucsComputePCIeFatalProtocolStatsInstanceId")) if mibBuilder.loadTexts: cucsComputePCIeFatalProtocolStatsEntry.setStatus('current') cucsComputePCIeFatalProtocolStatsInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 20, 1, 1), CucsManagedObjectId()) if mibBuilder.loadTexts: cucsComputePCIeFatalProtocolStatsInstanceId.setStatus('current') cucsComputePCIeFatalProtocolStatsDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 20, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalProtocolStatsDn.setStatus('current') cucsComputePCIeFatalProtocolStatsRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 20, 1, 3), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalProtocolStatsRn.setStatus('current') cucsComputePCIeFatalProtocolStatsDllpErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 20, 1, 4), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalProtocolStatsDllpErrors.setStatus('current') cucsComputePCIeFatalProtocolStatsDllpErrors15Min = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 20, 1, 5), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalProtocolStatsDllpErrors15Min.setStatus('current') cucsComputePCIeFatalProtocolStatsDllpErrors15MinH = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 20, 1, 6), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalProtocolStatsDllpErrors15MinH.setStatus('current') cucsComputePCIeFatalProtocolStatsDllpErrors1Day = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 20, 1, 7), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalProtocolStatsDllpErrors1Day.setStatus('current') cucsComputePCIeFatalProtocolStatsDllpErrors1DayH = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 20, 1, 8), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalProtocolStatsDllpErrors1DayH.setStatus('current') cucsComputePCIeFatalProtocolStatsDllpErrors1Hour = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 20, 1, 9), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalProtocolStatsDllpErrors1Hour.setStatus('current') cucsComputePCIeFatalProtocolStatsDllpErrors1HourH = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 20, 1, 10), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalProtocolStatsDllpErrors1HourH.setStatus('current') cucsComputePCIeFatalProtocolStatsDllpErrors1Week = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 20, 1, 11), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalProtocolStatsDllpErrors1Week.setStatus('current') cucsComputePCIeFatalProtocolStatsDllpErrors1WeekH = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 20, 1, 12), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalProtocolStatsDllpErrors1WeekH.setStatus('current') cucsComputePCIeFatalProtocolStatsFlowControlErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 20, 1, 13), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalProtocolStatsFlowControlErrors.setStatus('current') cucsComputePCIeFatalProtocolStatsFlowControlErrors15Min = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 20, 1, 14), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalProtocolStatsFlowControlErrors15Min.setStatus('current') cucsComputePCIeFatalProtocolStatsFlowControlErrors15MinH = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 20, 1, 15), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalProtocolStatsFlowControlErrors15MinH.setStatus('current') cucsComputePCIeFatalProtocolStatsFlowControlErrors1Day = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 20, 1, 16), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalProtocolStatsFlowControlErrors1Day.setStatus('current') cucsComputePCIeFatalProtocolStatsFlowControlErrors1DayH = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 20, 1, 17), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalProtocolStatsFlowControlErrors1DayH.setStatus('current') cucsComputePCIeFatalProtocolStatsFlowControlErrors1Hour = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 20, 1, 18), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalProtocolStatsFlowControlErrors1Hour.setStatus('current') cucsComputePCIeFatalProtocolStatsFlowControlErrors1HourH = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 20, 1, 19), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalProtocolStatsFlowControlErrors1HourH.setStatus('current') cucsComputePCIeFatalProtocolStatsFlowControlErrors1Week = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 20, 1, 20), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalProtocolStatsFlowControlErrors1Week.setStatus('current') cucsComputePCIeFatalProtocolStatsFlowControlErrors1WeekH = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 20, 1, 21), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalProtocolStatsFlowControlErrors1WeekH.setStatus('current') cucsComputePCIeFatalProtocolStatsIntervals = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 20, 1, 22), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalProtocolStatsIntervals.setStatus('current') cucsComputePCIeFatalProtocolStatsSuspect = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 20, 1, 23), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalProtocolStatsSuspect.setStatus('current') cucsComputePCIeFatalProtocolStatsThresholded = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 20, 1, 24), CucsComputePCIeFatalProtocolStatsThresholded()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalProtocolStatsThresholded.setStatus('current') cucsComputePCIeFatalProtocolStatsTimeCollected = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 20, 1, 25), DateAndTime()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalProtocolStatsTimeCollected.setStatus('current') cucsComputePCIeFatalProtocolStatsUpdate = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 20, 1, 26), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalProtocolStatsUpdate.setStatus('current') cucsComputePCIeFatalProtocolStatsDllpErrors2Weeks = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 20, 1, 27), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalProtocolStatsDllpErrors2Weeks.setStatus('current') cucsComputePCIeFatalProtocolStatsDllpErrors2WeeksH = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 20, 1, 28), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalProtocolStatsDllpErrors2WeeksH.setStatus('current') cucsComputePCIeFatalProtocolStatsFlowControlErrors2Weeks = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 20, 1, 29), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalProtocolStatsFlowControlErrors2Weeks.setStatus('current') cucsComputePCIeFatalProtocolStatsFlowControlErrors2WeeksH = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 20, 1, 30), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalProtocolStatsFlowControlErrors2WeeksH.setStatus('current') cucsComputePCIeFatalReceiveStatsTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 21), ) if mibBuilder.loadTexts: cucsComputePCIeFatalReceiveStatsTable.setStatus('current') cucsComputePCIeFatalReceiveStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 21, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-COMPUTE-MIB", "cucsComputePCIeFatalReceiveStatsInstanceId")) if mibBuilder.loadTexts: cucsComputePCIeFatalReceiveStatsEntry.setStatus('current') cucsComputePCIeFatalReceiveStatsInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 21, 1, 1), CucsManagedObjectId()) if mibBuilder.loadTexts: cucsComputePCIeFatalReceiveStatsInstanceId.setStatus('current') cucsComputePCIeFatalReceiveStatsDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 21, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalReceiveStatsDn.setStatus('current') cucsComputePCIeFatalReceiveStatsRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 21, 1, 3), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalReceiveStatsRn.setStatus('current') cucsComputePCIeFatalReceiveStatsBufferOverflowErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 21, 1, 4), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalReceiveStatsBufferOverflowErrors.setStatus('current') cucsComputePCIeFatalReceiveStatsBufferOverflowErrors15Min = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 21, 1, 5), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalReceiveStatsBufferOverflowErrors15Min.setStatus('current') cucsComputePCIeFatalReceiveStatsBufferOverflowErrors15MinH = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 21, 1, 6), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalReceiveStatsBufferOverflowErrors15MinH.setStatus('current') cucsComputePCIeFatalReceiveStatsBufferOverflowErrors1Day = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 21, 1, 7), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalReceiveStatsBufferOverflowErrors1Day.setStatus('current') cucsComputePCIeFatalReceiveStatsBufferOverflowErrors1DayH = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 21, 1, 8), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalReceiveStatsBufferOverflowErrors1DayH.setStatus('current') cucsComputePCIeFatalReceiveStatsBufferOverflowErrors1Hour = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 21, 1, 9), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalReceiveStatsBufferOverflowErrors1Hour.setStatus('current') cucsComputePCIeFatalReceiveStatsBufferOverflowErrors1HourH = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 21, 1, 10), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalReceiveStatsBufferOverflowErrors1HourH.setStatus('current') cucsComputePCIeFatalReceiveStatsBufferOverflowErrors1Week = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 21, 1, 11), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalReceiveStatsBufferOverflowErrors1Week.setStatus('current') cucsComputePCIeFatalReceiveStatsBufferOverflowErrors1WeekH = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 21, 1, 12), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalReceiveStatsBufferOverflowErrors1WeekH.setStatus('current') cucsComputePCIeFatalReceiveStatsErrFatalErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 21, 1, 13), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalReceiveStatsErrFatalErrors.setStatus('current') cucsComputePCIeFatalReceiveStatsErrFatalErrors15Min = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 21, 1, 14), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalReceiveStatsErrFatalErrors15Min.setStatus('current') cucsComputePCIeFatalReceiveStatsErrFatalErrors15MinH = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 21, 1, 15), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalReceiveStatsErrFatalErrors15MinH.setStatus('current') cucsComputePCIeFatalReceiveStatsErrFatalErrors1Day = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 21, 1, 16), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalReceiveStatsErrFatalErrors1Day.setStatus('current') cucsComputePCIeFatalReceiveStatsErrFatalErrors1DayH = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 21, 1, 17), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalReceiveStatsErrFatalErrors1DayH.setStatus('current') cucsComputePCIeFatalReceiveStatsErrFatalErrors1Hour = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 21, 1, 18), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalReceiveStatsErrFatalErrors1Hour.setStatus('current') cucsComputePCIeFatalReceiveStatsErrFatalErrors1HourH = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 21, 1, 19), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalReceiveStatsErrFatalErrors1HourH.setStatus('current') cucsComputePCIeFatalReceiveStatsErrFatalErrors1Week = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 21, 1, 20), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalReceiveStatsErrFatalErrors1Week.setStatus('current') cucsComputePCIeFatalReceiveStatsErrFatalErrors1WeekH = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 21, 1, 21), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalReceiveStatsErrFatalErrors1WeekH.setStatus('current') cucsComputePCIeFatalReceiveStatsErrNonFatalErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 21, 1, 22), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalReceiveStatsErrNonFatalErrors.setStatus('current') cucsComputePCIeFatalReceiveStatsErrNonFatalErrors15Min = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 21, 1, 23), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalReceiveStatsErrNonFatalErrors15Min.setStatus('current') cucsComputePCIeFatalReceiveStatsErrNonFatalErrors15MinH = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 21, 1, 24), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalReceiveStatsErrNonFatalErrors15MinH.setStatus('current') cucsComputePCIeFatalReceiveStatsErrNonFatalErrors1Day = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 21, 1, 25), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalReceiveStatsErrNonFatalErrors1Day.setStatus('current') cucsComputePCIeFatalReceiveStatsErrNonFatalErrors1DayH = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 21, 1, 26), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalReceiveStatsErrNonFatalErrors1DayH.setStatus('current') cucsComputePCIeFatalReceiveStatsErrNonFatalErrors1Hour = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 21, 1, 27), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalReceiveStatsErrNonFatalErrors1Hour.setStatus('current') cucsComputePCIeFatalReceiveStatsErrNonFatalErrors1HourH = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 21, 1, 28), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalReceiveStatsErrNonFatalErrors1HourH.setStatus('current') cucsComputePCIeFatalReceiveStatsErrNonFatalErrors1Week = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 21, 1, 29), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalReceiveStatsErrNonFatalErrors1Week.setStatus('current') cucsComputePCIeFatalReceiveStatsErrNonFatalErrors1WeekH = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 21, 1, 30), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalReceiveStatsErrNonFatalErrors1WeekH.setStatus('current') cucsComputePCIeFatalReceiveStatsIntervals = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 21, 1, 31), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalReceiveStatsIntervals.setStatus('current') cucsComputePCIeFatalReceiveStatsSuspect = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 21, 1, 32), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalReceiveStatsSuspect.setStatus('current') cucsComputePCIeFatalReceiveStatsThresholded = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 21, 1, 33), CucsComputePCIeFatalReceiveStatsThresholded()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalReceiveStatsThresholded.setStatus('current') cucsComputePCIeFatalReceiveStatsTimeCollected = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 21, 1, 34), DateAndTime()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalReceiveStatsTimeCollected.setStatus('current') cucsComputePCIeFatalReceiveStatsUnsupportedRequestErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 21, 1, 35), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalReceiveStatsUnsupportedRequestErrors.setStatus('current') cucsComputePCIeFatalReceiveStatsUnsupportedRequestErrors15Min = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 21, 1, 36), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalReceiveStatsUnsupportedRequestErrors15Min.setStatus('current') cucsComputePCIeFatalReceiveStatsUnsupportedRequestErrors15MinH = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 21, 1, 37), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalReceiveStatsUnsupportedRequestErrors15MinH.setStatus('current') cucsComputePCIeFatalReceiveStatsUnsupportedRequestErrors1Day = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 21, 1, 38), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalReceiveStatsUnsupportedRequestErrors1Day.setStatus('current') cucsComputePCIeFatalReceiveStatsUnsupportedRequestErrors1DayH = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 21, 1, 39), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalReceiveStatsUnsupportedRequestErrors1DayH.setStatus('current') cucsComputePCIeFatalReceiveStatsUnsupportedRequestErrors1Hour = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 21, 1, 40), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalReceiveStatsUnsupportedRequestErrors1Hour.setStatus('current') cucsComputePCIeFatalReceiveStatsUnsupportedRequestErrors1HourH = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 21, 1, 41), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalReceiveStatsUnsupportedRequestErrors1HourH.setStatus('current') cucsComputePCIeFatalReceiveStatsUnsupportedRequestErrors1Week = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 21, 1, 42), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalReceiveStatsUnsupportedRequestErrors1Week.setStatus('current') cucsComputePCIeFatalReceiveStatsUnsupportedRequestErrors1WeekH = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 21, 1, 43), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalReceiveStatsUnsupportedRequestErrors1WeekH.setStatus('current') cucsComputePCIeFatalReceiveStatsUpdate = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 21, 1, 44), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalReceiveStatsUpdate.setStatus('current') cucsComputePCIeFatalReceiveStatsBufferOverflowErrors2Weeks = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 21, 1, 45), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalReceiveStatsBufferOverflowErrors2Weeks.setStatus('current') cucsComputePCIeFatalReceiveStatsBufferOverflowErrors2WeeksH = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 21, 1, 46), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalReceiveStatsBufferOverflowErrors2WeeksH.setStatus('current') cucsComputePCIeFatalReceiveStatsErrFatalErrors2Weeks = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 21, 1, 47), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalReceiveStatsErrFatalErrors2Weeks.setStatus('current') cucsComputePCIeFatalReceiveStatsErrFatalErrors2WeeksH = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 21, 1, 48), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalReceiveStatsErrFatalErrors2WeeksH.setStatus('current') cucsComputePCIeFatalReceiveStatsErrNonFatalErrors2Weeks = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 21, 1, 49), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalReceiveStatsErrNonFatalErrors2Weeks.setStatus('current') cucsComputePCIeFatalReceiveStatsErrNonFatalErrors2WeeksH = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 21, 1, 50), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalReceiveStatsErrNonFatalErrors2WeeksH.setStatus('current') cucsComputePCIeFatalReceiveStatsUnsupportedRequestErrors2Weeks = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 21, 1, 51), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalReceiveStatsUnsupportedRequestErrors2Weeks.setStatus('current') cucsComputePCIeFatalReceiveStatsUnsupportedRequestErrors2WeeksH = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 21, 1, 52), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalReceiveStatsUnsupportedRequestErrors2WeeksH.setStatus('current') cucsComputePCIeFatalStatsTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 22), ) if mibBuilder.loadTexts: cucsComputePCIeFatalStatsTable.setStatus('current') cucsComputePCIeFatalStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 22, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-COMPUTE-MIB", "cucsComputePCIeFatalStatsInstanceId")) if mibBuilder.loadTexts: cucsComputePCIeFatalStatsEntry.setStatus('current') cucsComputePCIeFatalStatsInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 22, 1, 1), CucsManagedObjectId()) if mibBuilder.loadTexts: cucsComputePCIeFatalStatsInstanceId.setStatus('current') cucsComputePCIeFatalStatsDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 22, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalStatsDn.setStatus('current') cucsComputePCIeFatalStatsRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 22, 1, 3), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalStatsRn.setStatus('current') cucsComputePCIeFatalStatsAcsViolationErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 22, 1, 4), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalStatsAcsViolationErrors.setStatus('current') cucsComputePCIeFatalStatsAcsViolationErrors15Min = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 22, 1, 5), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalStatsAcsViolationErrors15Min.setStatus('current') cucsComputePCIeFatalStatsAcsViolationErrors15MinH = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 22, 1, 6), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalStatsAcsViolationErrors15MinH.setStatus('current') cucsComputePCIeFatalStatsAcsViolationErrors1Day = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 22, 1, 7), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalStatsAcsViolationErrors1Day.setStatus('current') cucsComputePCIeFatalStatsAcsViolationErrors1DayH = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 22, 1, 8), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalStatsAcsViolationErrors1DayH.setStatus('current') cucsComputePCIeFatalStatsAcsViolationErrors1Hour = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 22, 1, 9), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalStatsAcsViolationErrors1Hour.setStatus('current') cucsComputePCIeFatalStatsAcsViolationErrors1HourH = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 22, 1, 10), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalStatsAcsViolationErrors1HourH.setStatus('current') cucsComputePCIeFatalStatsAcsViolationErrors1Week = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 22, 1, 11), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalStatsAcsViolationErrors1Week.setStatus('current') cucsComputePCIeFatalStatsAcsViolationErrors1WeekH = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 22, 1, 12), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalStatsAcsViolationErrors1WeekH.setStatus('current') cucsComputePCIeFatalStatsIntervals = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 22, 1, 13), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalStatsIntervals.setStatus('current') cucsComputePCIeFatalStatsMalformedTLPErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 22, 1, 14), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalStatsMalformedTLPErrors.setStatus('current') cucsComputePCIeFatalStatsMalformedTLPErrors15Min = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 22, 1, 15), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalStatsMalformedTLPErrors15Min.setStatus('current') cucsComputePCIeFatalStatsMalformedTLPErrors15MinH = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 22, 1, 16), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalStatsMalformedTLPErrors15MinH.setStatus('current') cucsComputePCIeFatalStatsMalformedTLPErrors1Day = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 22, 1, 17), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalStatsMalformedTLPErrors1Day.setStatus('current') cucsComputePCIeFatalStatsMalformedTLPErrors1DayH = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 22, 1, 18), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalStatsMalformedTLPErrors1DayH.setStatus('current') cucsComputePCIeFatalStatsMalformedTLPErrors1Hour = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 22, 1, 19), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalStatsMalformedTLPErrors1Hour.setStatus('current') cucsComputePCIeFatalStatsMalformedTLPErrors1HourH = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 22, 1, 20), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalStatsMalformedTLPErrors1HourH.setStatus('current') cucsComputePCIeFatalStatsMalformedTLPErrors1Week = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 22, 1, 21), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalStatsMalformedTLPErrors1Week.setStatus('current') cucsComputePCIeFatalStatsMalformedTLPErrors1WeekH = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 22, 1, 22), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalStatsMalformedTLPErrors1WeekH.setStatus('current') cucsComputePCIeFatalStatsPoisonedTLPErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 22, 1, 23), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalStatsPoisonedTLPErrors.setStatus('current') cucsComputePCIeFatalStatsPoisonedTLPErrors15Min = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 22, 1, 24), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalStatsPoisonedTLPErrors15Min.setStatus('current') cucsComputePCIeFatalStatsPoisonedTLPErrors15MinH = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 22, 1, 25), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalStatsPoisonedTLPErrors15MinH.setStatus('current') cucsComputePCIeFatalStatsPoisonedTLPErrors1Day = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 22, 1, 26), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalStatsPoisonedTLPErrors1Day.setStatus('current') cucsComputePCIeFatalStatsPoisonedTLPErrors1DayH = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 22, 1, 27), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalStatsPoisonedTLPErrors1DayH.setStatus('current') cucsComputePCIeFatalStatsPoisonedTLPErrors1Hour = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 22, 1, 28), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalStatsPoisonedTLPErrors1Hour.setStatus('current') cucsComputePCIeFatalStatsPoisonedTLPErrors1HourH = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 22, 1, 29), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalStatsPoisonedTLPErrors1HourH.setStatus('current') cucsComputePCIeFatalStatsPoisonedTLPErrors1Week = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 22, 1, 30), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalStatsPoisonedTLPErrors1Week.setStatus('current') cucsComputePCIeFatalStatsPoisonedTLPErrors1WeekH = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 22, 1, 31), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalStatsPoisonedTLPErrors1WeekH.setStatus('current') cucsComputePCIeFatalStatsSurpriseLinkDownErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 22, 1, 32), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalStatsSurpriseLinkDownErrors.setStatus('current') cucsComputePCIeFatalStatsSurpriseLinkDownErrors15Min = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 22, 1, 33), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalStatsSurpriseLinkDownErrors15Min.setStatus('current') cucsComputePCIeFatalStatsSurpriseLinkDownErrors15MinH = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 22, 1, 34), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalStatsSurpriseLinkDownErrors15MinH.setStatus('current') cucsComputePCIeFatalStatsSurpriseLinkDownErrors1Day = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 22, 1, 35), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalStatsSurpriseLinkDownErrors1Day.setStatus('current') cucsComputePCIeFatalStatsSurpriseLinkDownErrors1DayH = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 22, 1, 36), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalStatsSurpriseLinkDownErrors1DayH.setStatus('current') cucsComputePCIeFatalStatsSurpriseLinkDownErrors1Hour = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 22, 1, 37), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalStatsSurpriseLinkDownErrors1Hour.setStatus('current') cucsComputePCIeFatalStatsSurpriseLinkDownErrors1HourH = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 22, 1, 38), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalStatsSurpriseLinkDownErrors1HourH.setStatus('current') cucsComputePCIeFatalStatsSurpriseLinkDownErrors1Week = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 22, 1, 39), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalStatsSurpriseLinkDownErrors1Week.setStatus('current') cucsComputePCIeFatalStatsSurpriseLinkDownErrors1WeekH = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 22, 1, 40), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalStatsSurpriseLinkDownErrors1WeekH.setStatus('current') cucsComputePCIeFatalStatsSuspect = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 22, 1, 41), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalStatsSuspect.setStatus('current') cucsComputePCIeFatalStatsThresholded = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 22, 1, 42), CucsComputePCIeFatalStatsThresholded()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalStatsThresholded.setStatus('current') cucsComputePCIeFatalStatsTimeCollected = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 22, 1, 43), DateAndTime()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalStatsTimeCollected.setStatus('current') cucsComputePCIeFatalStatsUpdate = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 22, 1, 44), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalStatsUpdate.setStatus('current') cucsComputePCIeFatalStatsAcsViolationErrors2Weeks = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 22, 1, 45), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalStatsAcsViolationErrors2Weeks.setStatus('current') cucsComputePCIeFatalStatsAcsViolationErrors2WeeksH = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 22, 1, 46), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalStatsAcsViolationErrors2WeeksH.setStatus('current') cucsComputePCIeFatalStatsMalformedTLPErrors2Weeks = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 22, 1, 47), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalStatsMalformedTLPErrors2Weeks.setStatus('current') cucsComputePCIeFatalStatsMalformedTLPErrors2WeeksH = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 22, 1, 48), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalStatsMalformedTLPErrors2WeeksH.setStatus('current') cucsComputePCIeFatalStatsPoisonedTLPErrors2Weeks = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 22, 1, 49), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalStatsPoisonedTLPErrors2Weeks.setStatus('current') cucsComputePCIeFatalStatsPoisonedTLPErrors2WeeksH = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 22, 1, 50), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalStatsPoisonedTLPErrors2WeeksH.setStatus('current') cucsComputePCIeFatalStatsSurpriseLinkDownErrors2Weeks = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 22, 1, 51), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalStatsSurpriseLinkDownErrors2Weeks.setStatus('current') cucsComputePCIeFatalStatsSurpriseLinkDownErrors2WeeksH = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 22, 1, 52), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePCIeFatalStatsSurpriseLinkDownErrors2WeeksH.setStatus('current') cucsComputePciCapTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 23), ) if mibBuilder.loadTexts: cucsComputePciCapTable.setStatus('current') cucsComputePciCapEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 23, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-COMPUTE-MIB", "cucsComputePciCapInstanceId")) if mibBuilder.loadTexts: cucsComputePciCapEntry.setStatus('current') cucsComputePciCapInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 23, 1, 1), CucsManagedObjectId()) if mibBuilder.loadTexts: cucsComputePciCapInstanceId.setStatus('current') cucsComputePciCapDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 23, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePciCapDn.setStatus('current') cucsComputePciCapRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 23, 1, 3), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePciCapRn.setStatus('current') cucsComputePciCapNumOfPhysSlots = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 23, 1, 4), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePciCapNumOfPhysSlots.setStatus('current') cucsComputePciCapOrder = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 23, 1, 5), CucsComputePciCapOrder()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePciCapOrder.setStatus('current') cucsComputePciCapStartsWith = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 23, 1, 6), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePciCapStartsWith.setStatus('current') cucsComputePciCapMaxBusIdPerSlot = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 23, 1, 7), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePciCapMaxBusIdPerSlot.setStatus('current') cucsComputePciSlotScanDefTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 58), ) if mibBuilder.loadTexts: cucsComputePciSlotScanDefTable.setStatus('current') cucsComputePciSlotScanDefEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 58, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-COMPUTE-MIB", "cucsComputePciSlotScanDefInstanceId")) if mibBuilder.loadTexts: cucsComputePciSlotScanDefEntry.setStatus('current') cucsComputePciSlotScanDefInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 58, 1, 1), CucsManagedObjectId()) if mibBuilder.loadTexts: cucsComputePciSlotScanDefInstanceId.setStatus('current') cucsComputePciSlotScanDefDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 58, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePciSlotScanDefDn.setStatus('current') cucsComputePciSlotScanDefRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 58, 1, 3), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePciSlotScanDefRn.setStatus('current') cucsComputePciSlotScanDefDescr = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 58, 1, 4), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePciSlotScanDefDescr.setStatus('current') cucsComputePciSlotScanDefIntId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 58, 1, 5), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePciSlotScanDefIntId.setStatus('current') cucsComputePciSlotScanDefName = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 58, 1, 6), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePciSlotScanDefName.setStatus('current') cucsComputePciSlotScanDefPolicyLevel = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 58, 1, 7), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePciSlotScanDefPolicyLevel.setStatus('current') cucsComputePciSlotScanDefPolicyOwner = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 58, 1, 8), CucsPolicyPolicyOwner()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePciSlotScanDefPolicyOwner.setStatus('current') cucsComputePciSlotScanDefScanOrder = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 58, 1, 9), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePciSlotScanDefScanOrder.setStatus('current') cucsComputePciSlotScanDefSlotId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 58, 1, 10), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePciSlotScanDefSlotId.setStatus('current') cucsComputePhysicalAssocCtxTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 41), ) if mibBuilder.loadTexts: cucsComputePhysicalAssocCtxTable.setStatus('current') cucsComputePhysicalAssocCtxEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 41, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-COMPUTE-MIB", "cucsComputePhysicalAssocCtxInstanceId")) if mibBuilder.loadTexts: cucsComputePhysicalAssocCtxEntry.setStatus('current') cucsComputePhysicalAssocCtxInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 41, 1, 1), CucsManagedObjectId()) if mibBuilder.loadTexts: cucsComputePhysicalAssocCtxInstanceId.setStatus('current') cucsComputePhysicalAssocCtxDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 41, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePhysicalAssocCtxDn.setStatus('current') cucsComputePhysicalAssocCtxRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 41, 1, 3), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePhysicalAssocCtxRn.setStatus('current') cucsComputePhysicalAssocCtxFruCapDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 41, 1, 4), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePhysicalAssocCtxFruCapDn.setStatus('current') cucsComputePhysicalFsmTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 50), ) if mibBuilder.loadTexts: cucsComputePhysicalFsmTable.setStatus('current') cucsComputePhysicalFsmEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 50, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-COMPUTE-MIB", "cucsComputePhysicalFsmInstanceId")) if mibBuilder.loadTexts: cucsComputePhysicalFsmEntry.setStatus('current') cucsComputePhysicalFsmInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 50, 1, 1), CucsManagedObjectId()) if mibBuilder.loadTexts: cucsComputePhysicalFsmInstanceId.setStatus('current') cucsComputePhysicalFsmDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 50, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePhysicalFsmDn.setStatus('current') cucsComputePhysicalFsmRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 50, 1, 3), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePhysicalFsmRn.setStatus('current') cucsComputePhysicalFsmCompletionTime = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 50, 1, 4), DateAndTime()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePhysicalFsmCompletionTime.setStatus('current') cucsComputePhysicalFsmCurrentFsm = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 50, 1, 5), CucsComputePhysicalFsmCurrentFsm()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePhysicalFsmCurrentFsm.setStatus('current') cucsComputePhysicalFsmDescr = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 50, 1, 6), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePhysicalFsmDescr.setStatus('current') cucsComputePhysicalFsmFsmStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 50, 1, 7), CucsFsmFsmStageStatus()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePhysicalFsmFsmStatus.setStatus('current') cucsComputePhysicalFsmProgress = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 50, 1, 8), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePhysicalFsmProgress.setStatus('current') cucsComputePhysicalFsmRmtErrCode = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 50, 1, 9), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePhysicalFsmRmtErrCode.setStatus('current') cucsComputePhysicalFsmRmtErrDescr = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 50, 1, 10), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePhysicalFsmRmtErrDescr.setStatus('current') cucsComputePhysicalFsmRmtRslt = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 50, 1, 11), CucsConditionRemoteInvRslt()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePhysicalFsmRmtRslt.setStatus('current') cucsComputePhysicalFsmStageTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 51), ) if mibBuilder.loadTexts: cucsComputePhysicalFsmStageTable.setStatus('current') cucsComputePhysicalFsmStageEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 51, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-COMPUTE-MIB", "cucsComputePhysicalFsmStageInstanceId")) if mibBuilder.loadTexts: cucsComputePhysicalFsmStageEntry.setStatus('current') cucsComputePhysicalFsmStageInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 51, 1, 1), CucsManagedObjectId()) if mibBuilder.loadTexts: cucsComputePhysicalFsmStageInstanceId.setStatus('current') cucsComputePhysicalFsmStageDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 51, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePhysicalFsmStageDn.setStatus('current') cucsComputePhysicalFsmStageRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 51, 1, 3), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePhysicalFsmStageRn.setStatus('current') cucsComputePhysicalFsmStageDescr = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 51, 1, 4), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePhysicalFsmStageDescr.setStatus('current') cucsComputePhysicalFsmStageLastUpdateTime = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 51, 1, 5), DateAndTime()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePhysicalFsmStageLastUpdateTime.setStatus('current') cucsComputePhysicalFsmStageName = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 51, 1, 6), CucsComputePhysicalFsmStageName()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePhysicalFsmStageName.setStatus('current') cucsComputePhysicalFsmStageOrder = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 51, 1, 7), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePhysicalFsmStageOrder.setStatus('current') cucsComputePhysicalFsmStageRetry = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 51, 1, 8), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePhysicalFsmStageRetry.setStatus('current') cucsComputePhysicalFsmStageStageStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 51, 1, 9), CucsFsmFsmStageStatus()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePhysicalFsmStageStageStatus.setStatus('current') cucsComputePhysicalFsmTaskTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 24), ) if mibBuilder.loadTexts: cucsComputePhysicalFsmTaskTable.setStatus('current') cucsComputePhysicalFsmTaskEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 24, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-COMPUTE-MIB", "cucsComputePhysicalFsmTaskInstanceId")) if mibBuilder.loadTexts: cucsComputePhysicalFsmTaskEntry.setStatus('current') cucsComputePhysicalFsmTaskInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 24, 1, 1), CucsManagedObjectId()) if mibBuilder.loadTexts: cucsComputePhysicalFsmTaskInstanceId.setStatus('current') cucsComputePhysicalFsmTaskDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 24, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePhysicalFsmTaskDn.setStatus('current') cucsComputePhysicalFsmTaskRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 24, 1, 3), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePhysicalFsmTaskRn.setStatus('current') cucsComputePhysicalFsmTaskCompletion = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 24, 1, 4), CucsFsmCompletion()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePhysicalFsmTaskCompletion.setStatus('current') cucsComputePhysicalFsmTaskFlags = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 24, 1, 5), CucsComputePhysicalFsmTaskFlags()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePhysicalFsmTaskFlags.setStatus('current') cucsComputePhysicalFsmTaskItem = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 24, 1, 6), CucsComputePhysicalFsmTaskItem()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePhysicalFsmTaskItem.setStatus('current') cucsComputePhysicalFsmTaskSeqId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 24, 1, 7), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePhysicalFsmTaskSeqId.setStatus('current') cucsComputePhysicalQualTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 25), ) if mibBuilder.loadTexts: cucsComputePhysicalQualTable.setStatus('current') cucsComputePhysicalQualEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 25, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-COMPUTE-MIB", "cucsComputePhysicalQualInstanceId")) if mibBuilder.loadTexts: cucsComputePhysicalQualEntry.setStatus('current') cucsComputePhysicalQualInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 25, 1, 1), CucsManagedObjectId()) if mibBuilder.loadTexts: cucsComputePhysicalQualInstanceId.setStatus('current') cucsComputePhysicalQualDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 25, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePhysicalQualDn.setStatus('current') cucsComputePhysicalQualRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 25, 1, 3), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePhysicalQualRn.setStatus('current') cucsComputePhysicalQualModel = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 25, 1, 4), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePhysicalQualModel.setStatus('current') cucsComputePhysicalQualPropAcl = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 25, 1, 5), Unsigned64()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePhysicalQualPropAcl.setStatus('current') cucsComputePlatformTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 26), ) if mibBuilder.loadTexts: cucsComputePlatformTable.setStatus('current') cucsComputePlatformEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 26, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-COMPUTE-MIB", "cucsComputePlatformInstanceId")) if mibBuilder.loadTexts: cucsComputePlatformEntry.setStatus('current') cucsComputePlatformInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 26, 1, 1), CucsManagedObjectId()) if mibBuilder.loadTexts: cucsComputePlatformInstanceId.setStatus('current') cucsComputePlatformDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 26, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePlatformDn.setStatus('current') cucsComputePlatformRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 26, 1, 3), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePlatformRn.setStatus('current') cucsComputePlatformModel = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 26, 1, 4), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePlatformModel.setStatus('current') cucsComputePlatformRevision = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 26, 1, 5), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePlatformRevision.setStatus('current') cucsComputePlatformVendor = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 26, 1, 6), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePlatformVendor.setStatus('current') cucsComputePlatformProductName = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 26, 1, 7), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePlatformProductName.setStatus('current') cucsComputePlatformPropAcl = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 26, 1, 8), Unsigned64()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePlatformPropAcl.setStatus('current') cucsComputePnuOSImageTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 47), ) if mibBuilder.loadTexts: cucsComputePnuOSImageTable.setStatus('current') cucsComputePnuOSImageEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 47, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-COMPUTE-MIB", "cucsComputePnuOSImageInstanceId")) if mibBuilder.loadTexts: cucsComputePnuOSImageEntry.setStatus('current') cucsComputePnuOSImageInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 47, 1, 1), CucsManagedObjectId()) if mibBuilder.loadTexts: cucsComputePnuOSImageInstanceId.setStatus('current') cucsComputePnuOSImageDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 47, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePnuOSImageDn.setStatus('current') cucsComputePnuOSImageRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 47, 1, 3), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePnuOSImageRn.setStatus('current') cucsComputePnuOSImageImgLoc = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 47, 1, 4), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePnuOSImageImgLoc.setStatus('current') cucsComputePnuOSImageImgName = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 47, 1, 5), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePnuOSImageImgName.setStatus('current') cucsComputePoolTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 27), ) if mibBuilder.loadTexts: cucsComputePoolTable.setStatus('current') cucsComputePoolEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 27, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-COMPUTE-MIB", "cucsComputePoolInstanceId")) if mibBuilder.loadTexts: cucsComputePoolEntry.setStatus('current') cucsComputePoolInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 27, 1, 1), CucsManagedObjectId()) if mibBuilder.loadTexts: cucsComputePoolInstanceId.setStatus('current') cucsComputePoolDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 27, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePoolDn.setStatus('current') cucsComputePoolRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 27, 1, 3), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePoolRn.setStatus('current') cucsComputePoolAssigned = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 27, 1, 4), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePoolAssigned.setStatus('current') cucsComputePoolDescr = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 27, 1, 5), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePoolDescr.setStatus('current') cucsComputePoolIntId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 27, 1, 6), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePoolIntId.setStatus('current') cucsComputePoolName = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 27, 1, 7), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePoolName.setStatus('current') cucsComputePoolSize = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 27, 1, 8), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePoolSize.setStatus('current') cucsComputePoolAssignmentOrder = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 27, 1, 9), CucsPoolPoolAssignmentOrder()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePoolAssignmentOrder.setStatus('current') cucsComputePoolPolicyLevel = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 27, 1, 10), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePoolPolicyLevel.setStatus('current') cucsComputePoolPolicyOwner = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 27, 1, 11), CucsPolicyPolicyOwner()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePoolPolicyOwner.setStatus('current') cucsComputePoolPolicyRefTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 42), ) if mibBuilder.loadTexts: cucsComputePoolPolicyRefTable.setStatus('current') cucsComputePoolPolicyRefEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 42, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-COMPUTE-MIB", "cucsComputePoolPolicyRefInstanceId")) if mibBuilder.loadTexts: cucsComputePoolPolicyRefEntry.setStatus('current') cucsComputePoolPolicyRefInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 42, 1, 1), CucsManagedObjectId()) if mibBuilder.loadTexts: cucsComputePoolPolicyRefInstanceId.setStatus('current') cucsComputePoolPolicyRefDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 42, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePoolPolicyRefDn.setStatus('current') cucsComputePoolPolicyRefRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 42, 1, 3), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePoolPolicyRefRn.setStatus('current') cucsComputePoolPolicyRefId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 42, 1, 4), Unsigned64()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePoolPolicyRefId.setStatus('current') cucsComputePoolPolicyRefPolicyDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 42, 1, 5), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePoolPolicyRefPolicyDn.setStatus('current') cucsComputePoolableTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 28), ) if mibBuilder.loadTexts: cucsComputePoolableTable.setStatus('current') cucsComputePoolableEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 28, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-COMPUTE-MIB", "cucsComputePoolableInstanceId")) if mibBuilder.loadTexts: cucsComputePoolableEntry.setStatus('current') cucsComputePoolableInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 28, 1, 1), CucsManagedObjectId()) if mibBuilder.loadTexts: cucsComputePoolableInstanceId.setStatus('current') cucsComputePoolableDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 28, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePoolableDn.setStatus('current') cucsComputePoolableRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 28, 1, 3), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePoolableRn.setStatus('current') cucsComputePoolableId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 28, 1, 4), Unsigned64()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePoolableId.setStatus('current') cucsComputePoolablePoolDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 28, 1, 5), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePoolablePoolDn.setStatus('current') cucsComputePooledEnclosureComputeSlotTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 73), ) if mibBuilder.loadTexts: cucsComputePooledEnclosureComputeSlotTable.setStatus('current') cucsComputePooledEnclosureComputeSlotEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 73, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-COMPUTE-MIB", "cucsComputePooledEnclosureComputeSlotInstanceId")) if mibBuilder.loadTexts: cucsComputePooledEnclosureComputeSlotEntry.setStatus('current') cucsComputePooledEnclosureComputeSlotInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 73, 1, 1), CucsManagedObjectId()) if mibBuilder.loadTexts: cucsComputePooledEnclosureComputeSlotInstanceId.setStatus('current') cucsComputePooledEnclosureComputeSlotDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 73, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePooledEnclosureComputeSlotDn.setStatus('current') cucsComputePooledEnclosureComputeSlotRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 73, 1, 3), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePooledEnclosureComputeSlotRn.setStatus('current') cucsComputePooledEnclosureComputeSlotAssigned = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 73, 1, 4), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePooledEnclosureComputeSlotAssigned.setStatus('current') cucsComputePooledEnclosureComputeSlotAssignedToDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 73, 1, 5), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePooledEnclosureComputeSlotAssignedToDn.setStatus('current') cucsComputePooledEnclosureComputeSlotChassisId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 73, 1, 6), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePooledEnclosureComputeSlotChassisId.setStatus('current') cucsComputePooledEnclosureComputeSlotOwner = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 73, 1, 7), CucsComputeOwner()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePooledEnclosureComputeSlotOwner.setStatus('current') cucsComputePooledEnclosureComputeSlotPoolableDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 73, 1, 8), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePooledEnclosureComputeSlotPoolableDn.setStatus('current') cucsComputePooledEnclosureComputeSlotPrevAssignedToDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 73, 1, 9), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePooledEnclosureComputeSlotPrevAssignedToDn.setStatus('current') cucsComputePooledEnclosureComputeSlotServerInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 73, 1, 10), CucsComputePooledEnclosureComputeSlotServerInstanceId()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePooledEnclosureComputeSlotServerInstanceId.setStatus('current') cucsComputePooledEnclosureComputeSlotSlotId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 73, 1, 11), CucsComputePooledEnclosureComputeSlotSlotId()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePooledEnclosureComputeSlotSlotId.setStatus('current') cucsComputePooledRackUnitTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 29), ) if mibBuilder.loadTexts: cucsComputePooledRackUnitTable.setStatus('current') cucsComputePooledRackUnitEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 29, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-COMPUTE-MIB", "cucsComputePooledRackUnitInstanceId")) if mibBuilder.loadTexts: cucsComputePooledRackUnitEntry.setStatus('current') cucsComputePooledRackUnitInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 29, 1, 1), CucsManagedObjectId()) if mibBuilder.loadTexts: cucsComputePooledRackUnitInstanceId.setStatus('current') cucsComputePooledRackUnitDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 29, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePooledRackUnitDn.setStatus('current') cucsComputePooledRackUnitRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 29, 1, 3), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePooledRackUnitRn.setStatus('current') cucsComputePooledRackUnitAssigned = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 29, 1, 4), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePooledRackUnitAssigned.setStatus('current') cucsComputePooledRackUnitAssignedToDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 29, 1, 5), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePooledRackUnitAssignedToDn.setStatus('current') cucsComputePooledRackUnitId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 29, 1, 6), CucsComputePooledRackUnitId()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePooledRackUnitId.setStatus('current') cucsComputePooledRackUnitOwner = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 29, 1, 7), CucsComputeOwner()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePooledRackUnitOwner.setStatus('current') cucsComputePooledRackUnitPoolableDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 29, 1, 8), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePooledRackUnitPoolableDn.setStatus('current') cucsComputePooledRackUnitPrevAssignedToDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 29, 1, 9), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePooledRackUnitPrevAssignedToDn.setStatus('current') cucsComputePooledSlotTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 30), ) if mibBuilder.loadTexts: cucsComputePooledSlotTable.setStatus('current') cucsComputePooledSlotEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 30, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-COMPUTE-MIB", "cucsComputePooledSlotInstanceId")) if mibBuilder.loadTexts: cucsComputePooledSlotEntry.setStatus('current') cucsComputePooledSlotInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 30, 1, 1), CucsManagedObjectId()) if mibBuilder.loadTexts: cucsComputePooledSlotInstanceId.setStatus('current') cucsComputePooledSlotDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 30, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePooledSlotDn.setStatus('current') cucsComputePooledSlotRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 30, 1, 3), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePooledSlotRn.setStatus('current') cucsComputePooledSlotAssigned = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 30, 1, 4), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePooledSlotAssigned.setStatus('current') cucsComputePooledSlotAssignedToDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 30, 1, 5), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePooledSlotAssignedToDn.setStatus('current') cucsComputePooledSlotChassisId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 30, 1, 6), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePooledSlotChassisId.setStatus('current') cucsComputePooledSlotOwner = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 30, 1, 7), CucsComputeOwner()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePooledSlotOwner.setStatus('current') cucsComputePooledSlotPoolableDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 30, 1, 8), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePooledSlotPoolableDn.setStatus('current') cucsComputePooledSlotPrevAssignedToDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 30, 1, 9), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePooledSlotPrevAssignedToDn.setStatus('current') cucsComputePooledSlotSlotId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 30, 1, 10), CucsComputePooledSlotSlotId()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePooledSlotSlotId.setStatus('current') cucsComputePoolingPolicyTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 31), ) if mibBuilder.loadTexts: cucsComputePoolingPolicyTable.setStatus('current') cucsComputePoolingPolicyEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 31, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-COMPUTE-MIB", "cucsComputePoolingPolicyInstanceId")) if mibBuilder.loadTexts: cucsComputePoolingPolicyEntry.setStatus('current') cucsComputePoolingPolicyInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 31, 1, 1), CucsManagedObjectId()) if mibBuilder.loadTexts: cucsComputePoolingPolicyInstanceId.setStatus('current') cucsComputePoolingPolicyDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 31, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePoolingPolicyDn.setStatus('current') cucsComputePoolingPolicyRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 31, 1, 3), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePoolingPolicyRn.setStatus('current') cucsComputePoolingPolicyDescr = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 31, 1, 4), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePoolingPolicyDescr.setStatus('current') cucsComputePoolingPolicyIntId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 31, 1, 5), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePoolingPolicyIntId.setStatus('current') cucsComputePoolingPolicyName = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 31, 1, 6), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePoolingPolicyName.setStatus('current') cucsComputePoolingPolicyPoolDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 31, 1, 7), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePoolingPolicyPoolDn.setStatus('current') cucsComputePoolingPolicyQualifier = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 31, 1, 8), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePoolingPolicyQualifier.setStatus('current') cucsComputePoolingPolicyPolicyLevel = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 31, 1, 9), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePoolingPolicyPolicyLevel.setStatus('current') cucsComputePoolingPolicyPolicyOwner = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 31, 1, 10), CucsPolicyPolicyOwner()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePoolingPolicyPolicyOwner.setStatus('current') cucsComputePsuControlTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 32), ) if mibBuilder.loadTexts: cucsComputePsuControlTable.setStatus('current') cucsComputePsuControlEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 32, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-COMPUTE-MIB", "cucsComputePsuControlInstanceId")) if mibBuilder.loadTexts: cucsComputePsuControlEntry.setStatus('current') cucsComputePsuControlInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 32, 1, 1), CucsManagedObjectId()) if mibBuilder.loadTexts: cucsComputePsuControlInstanceId.setStatus('current') cucsComputePsuControlDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 32, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePsuControlDn.setStatus('current') cucsComputePsuControlRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 32, 1, 3), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePsuControlRn.setStatus('current') cucsComputePsuControlClusterState = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 32, 1, 4), CucsComputePsuClusterState()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePsuControlClusterState.setStatus('current') cucsComputePsuControlDescr = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 32, 1, 5), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePsuControlDescr.setStatus('current') cucsComputePsuControlInputPowerState = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 32, 1, 6), CucsEquipmentSensorThresholdStatus()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePsuControlInputPowerState.setStatus('current') cucsComputePsuControlIntId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 32, 1, 7), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePsuControlIntId.setStatus('current') cucsComputePsuControlName = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 32, 1, 8), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePsuControlName.setStatus('current') cucsComputePsuControlOperQualifier = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 32, 1, 9), CucsComputePsuRedundancyOperQualifier()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePsuControlOperQualifier.setStatus('current') cucsComputePsuControlOperState = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 32, 1, 10), CucsComputePsuRedundancyOperState()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePsuControlOperState.setStatus('current') cucsComputePsuControlOutputPowerState = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 32, 1, 11), CucsEquipmentSensorThresholdStatus()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePsuControlOutputPowerState.setStatus('current') cucsComputePsuControlRedundancy = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 32, 1, 12), CucsComputePsuControlRedundancy()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePsuControlRedundancy.setStatus('current') cucsComputePsuControlPolicyLevel = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 32, 1, 13), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePsuControlPolicyLevel.setStatus('current') cucsComputePsuControlPolicyOwner = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 32, 1, 14), CucsPolicyPolicyOwner()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePsuControlPolicyOwner.setStatus('current') cucsComputePsuPolicyTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 33), ) if mibBuilder.loadTexts: cucsComputePsuPolicyTable.setStatus('current') cucsComputePsuPolicyEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 33, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-COMPUTE-MIB", "cucsComputePsuPolicyInstanceId")) if mibBuilder.loadTexts: cucsComputePsuPolicyEntry.setStatus('current') cucsComputePsuPolicyInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 33, 1, 1), CucsManagedObjectId()) if mibBuilder.loadTexts: cucsComputePsuPolicyInstanceId.setStatus('current') cucsComputePsuPolicyDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 33, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePsuPolicyDn.setStatus('current') cucsComputePsuPolicyRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 33, 1, 3), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePsuPolicyRn.setStatus('current') cucsComputePsuPolicyDescr = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 33, 1, 4), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePsuPolicyDescr.setStatus('current') cucsComputePsuPolicyIntId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 33, 1, 5), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePsuPolicyIntId.setStatus('current') cucsComputePsuPolicyName = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 33, 1, 6), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePsuPolicyName.setStatus('current') cucsComputePsuPolicyRedundancy = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 33, 1, 7), CucsComputePsuRedundancy()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePsuPolicyRedundancy.setStatus('current') cucsComputePsuPolicyPolicyLevel = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 33, 1, 8), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePsuPolicyPolicyLevel.setStatus('current') cucsComputePsuPolicyPolicyOwner = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 33, 1, 9), CucsPolicyPolicyOwner()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputePsuPolicyPolicyOwner.setStatus('current') cucsComputeQualTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 34), ) if mibBuilder.loadTexts: cucsComputeQualTable.setStatus('current') cucsComputeQualEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 34, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-COMPUTE-MIB", "cucsComputeQualInstanceId")) if mibBuilder.loadTexts: cucsComputeQualEntry.setStatus('current') cucsComputeQualInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 34, 1, 1), CucsManagedObjectId()) if mibBuilder.loadTexts: cucsComputeQualInstanceId.setStatus('current') cucsComputeQualDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 34, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeQualDn.setStatus('current') cucsComputeQualRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 34, 1, 3), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeQualRn.setStatus('current') cucsComputeQualDescr = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 34, 1, 4), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeQualDescr.setStatus('current') cucsComputeQualIntId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 34, 1, 5), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeQualIntId.setStatus('current') cucsComputeQualName = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 34, 1, 6), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeQualName.setStatus('current') cucsComputeQualPolicyLevel = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 34, 1, 7), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeQualPolicyLevel.setStatus('current') cucsComputeQualPolicyOwner = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 34, 1, 8), CucsPolicyPolicyOwner()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeQualPolicyOwner.setStatus('current') cucsComputeRackQualTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 43), ) if mibBuilder.loadTexts: cucsComputeRackQualTable.setStatus('current') cucsComputeRackQualEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 43, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-COMPUTE-MIB", "cucsComputeRackQualInstanceId")) if mibBuilder.loadTexts: cucsComputeRackQualEntry.setStatus('current') cucsComputeRackQualInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 43, 1, 1), CucsManagedObjectId()) if mibBuilder.loadTexts: cucsComputeRackQualInstanceId.setStatus('current') cucsComputeRackQualDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 43, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackQualDn.setStatus('current') cucsComputeRackQualRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 43, 1, 3), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackQualRn.setStatus('current') cucsComputeRackQualMaxId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 43, 1, 4), CucsComputeRackQualMaxId()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackQualMaxId.setStatus('current') cucsComputeRackQualMinId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 43, 1, 5), CucsComputeRackQualMinId()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackQualMinId.setStatus('current') cucsComputeRackUnitTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 35), ) if mibBuilder.loadTexts: cucsComputeRackUnitTable.setStatus('current') cucsComputeRackUnitEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 35, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-COMPUTE-MIB", "cucsComputeRackUnitInstanceId")) if mibBuilder.loadTexts: cucsComputeRackUnitEntry.setStatus('current') cucsComputeRackUnitInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 35, 1, 1), CucsManagedObjectId()) if mibBuilder.loadTexts: cucsComputeRackUnitInstanceId.setStatus('current') cucsComputeRackUnitDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 35, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitDn.setStatus('current') cucsComputeRackUnitRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 35, 1, 3), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitRn.setStatus('current') cucsComputeRackUnitAdminPower = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 35, 1, 4), CucsComputeAdminPowerState()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitAdminPower.setStatus('current') cucsComputeRackUnitAdminState = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 35, 1, 5), CucsComputeAdminState()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitAdminState.setStatus('current') cucsComputeRackUnitAssignedToDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 35, 1, 6), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitAssignedToDn.setStatus('current') cucsComputeRackUnitAssociation = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 35, 1, 7), CucsComputeAssociation()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitAssociation.setStatus('current') cucsComputeRackUnitAvailability = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 35, 1, 8), CucsComputeAvailability()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitAvailability.setStatus('current') cucsComputeRackUnitAvailableMemory = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 35, 1, 9), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitAvailableMemory.setStatus('current') cucsComputeRackUnitCheckPoint = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 35, 1, 10), CucsComputeCheckPoint()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitCheckPoint.setStatus('current') cucsComputeRackUnitConnPath = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 35, 1, 11), CucsEquipmentConnectionStatus()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitConnPath.setStatus('current') cucsComputeRackUnitConnStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 35, 1, 12), CucsEquipmentConnectionStatus()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitConnStatus.setStatus('current') cucsComputeRackUnitDescr = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 35, 1, 13), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitDescr.setStatus('current') cucsComputeRackUnitDiscovery = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 35, 1, 14), CucsComputeDiscovery()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitDiscovery.setStatus('current') cucsComputeRackUnitFltAggr = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 35, 1, 15), Unsigned64()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitFltAggr.setStatus('current') cucsComputeRackUnitFsmDescr = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 35, 1, 16), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitFsmDescr.setStatus('current') cucsComputeRackUnitFsmFlags = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 35, 1, 17), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitFsmFlags.setStatus('current') cucsComputeRackUnitFsmPrev = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 35, 1, 18), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitFsmPrev.setStatus('current') cucsComputeRackUnitFsmProgr = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 35, 1, 19), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitFsmProgr.setStatus('current') cucsComputeRackUnitFsmRmtInvErrCode = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 35, 1, 20), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitFsmRmtInvErrCode.setStatus('current') cucsComputeRackUnitFsmRmtInvErrDescr = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 35, 1, 21), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitFsmRmtInvErrDescr.setStatus('current') cucsComputeRackUnitFsmRmtInvRslt = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 35, 1, 22), CucsConditionRemoteInvRslt()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitFsmRmtInvRslt.setStatus('current') cucsComputeRackUnitFsmStageDescr = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 35, 1, 23), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitFsmStageDescr.setStatus('current') cucsComputeRackUnitFsmStamp = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 35, 1, 24), DateAndTime()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitFsmStamp.setStatus('current') cucsComputeRackUnitFsmStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 35, 1, 25), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitFsmStatus.setStatus('current') cucsComputeRackUnitFsmTry = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 35, 1, 26), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitFsmTry.setStatus('current') cucsComputeRackUnitId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 35, 1, 27), CucsComputeRackUnitId()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitId.setStatus('current') cucsComputeRackUnitIntId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 35, 1, 28), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitIntId.setStatus('current') cucsComputeRackUnitLc = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 35, 1, 29), CucsComputeAdminTrigger()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitLc.setStatus('current') cucsComputeRackUnitLcTs = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 35, 1, 30), DateAndTime()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitLcTs.setStatus('current') cucsComputeRackUnitManagingInst = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 35, 1, 31), CucsNetworkSwitchId()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitManagingInst.setStatus('current') cucsComputeRackUnitModel = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 35, 1, 32), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitModel.setStatus('current') cucsComputeRackUnitName = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 35, 1, 33), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitName.setStatus('current') cucsComputeRackUnitNumOfAdaptors = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 35, 1, 34), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitNumOfAdaptors.setStatus('current') cucsComputeRackUnitNumOfCores = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 35, 1, 35), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitNumOfCores.setStatus('current') cucsComputeRackUnitNumOfCpus = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 35, 1, 36), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitNumOfCpus.setStatus('current') cucsComputeRackUnitNumOfEthHostIfs = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 35, 1, 37), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitNumOfEthHostIfs.setStatus('current') cucsComputeRackUnitNumOfFcHostIfs = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 35, 1, 38), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitNumOfFcHostIfs.setStatus('current') cucsComputeRackUnitNumOfThreads = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 35, 1, 39), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitNumOfThreads.setStatus('current') cucsComputeRackUnitOperPower = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 35, 1, 40), CucsEquipmentPowerState()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitOperPower.setStatus('current') cucsComputeRackUnitOperQualifier = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 35, 1, 41), CucsComputeIssues()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitOperQualifier.setStatus('current') cucsComputeRackUnitOperState = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 35, 1, 42), CucsLsOperState()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitOperState.setStatus('current') cucsComputeRackUnitOperability = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 35, 1, 43), CucsEquipmentOperability()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitOperability.setStatus('current') cucsComputeRackUnitOriginalUuid = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 35, 1, 44), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitOriginalUuid.setStatus('current') cucsComputeRackUnitPresence = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 35, 1, 45), CucsEquipmentSlotStatus()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitPresence.setStatus('current') cucsComputeRackUnitRevision = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 35, 1, 46), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitRevision.setStatus('current') cucsComputeRackUnitSerial = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 35, 1, 47), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitSerial.setStatus('current') cucsComputeRackUnitServerId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 35, 1, 48), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitServerId.setStatus('current') cucsComputeRackUnitTotalMemory = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 35, 1, 49), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitTotalMemory.setStatus('current') cucsComputeRackUnitUuid = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 35, 1, 50), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitUuid.setStatus('current') cucsComputeRackUnitVendor = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 35, 1, 51), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitVendor.setStatus('current') cucsComputeRackUnitVersionHolder = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 35, 1, 52), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitVersionHolder.setStatus('current') cucsComputeRackUnitNumOfCoresEnabled = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 35, 1, 53), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitNumOfCoresEnabled.setStatus('current') cucsComputeRackUnitLowVoltageMemory = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 35, 1, 54), CucsComputePhysicalLowVoltageMemory()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitLowVoltageMemory.setStatus('current') cucsComputeRackUnitMemorySpeed = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 35, 1, 55), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitMemorySpeed.setStatus('current') cucsComputeRackUnitUsrLbl = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 35, 1, 56), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitUsrLbl.setStatus('current') cucsComputeRackUnitMfgTime = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 35, 1, 57), DateAndTime()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitMfgTime.setStatus('current') cucsComputeRackUnitPartNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 35, 1, 58), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitPartNumber.setStatus('current') cucsComputeRackUnitVid = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 35, 1, 59), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitVid.setStatus('current') cucsComputeRackUnitPolicyLevel = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 35, 1, 60), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitPolicyLevel.setStatus('current') cucsComputeRackUnitPolicyOwner = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 35, 1, 61), CucsPolicyPolicyOwner()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitPolicyOwner.setStatus('current') cucsComputeRackUnitLocalId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 35, 1, 62), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitLocalId.setStatus('current') cucsComputeRackUnitOperPwrTransSrc = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 35, 1, 63), CucsComputePowerTransitionSrc()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitOperPwrTransSrc.setStatus('current') cucsComputeRackUnitDiscoveryStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 35, 1, 64), CucsEquipmentConnectionStatus()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitDiscoveryStatus.setStatus('current') cucsComputeRackUnitNumOf40GAdaptorsWithOldFw = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 35, 1, 66), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitNumOf40GAdaptorsWithOldFw.setStatus('current') cucsComputeRackUnitNumOf40GAdaptorsWithUnknownFw = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 35, 1, 67), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitNumOf40GAdaptorsWithUnknownFw.setStatus('current') cucsComputeRackUnitFanSpeedConfigStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 35, 1, 68), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitFanSpeedConfigStatus.setStatus('current') cucsComputeRackUnitFanSpeedPolicyFault = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 35, 1, 69), CucsEquipmentFanSpeedPolicyFault()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitFanSpeedPolicyFault.setStatus('current') cucsComputeRackUnitFsmTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 52), ) if mibBuilder.loadTexts: cucsComputeRackUnitFsmTable.setStatus('current') cucsComputeRackUnitFsmEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 52, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-COMPUTE-MIB", "cucsComputeRackUnitFsmInstanceId")) if mibBuilder.loadTexts: cucsComputeRackUnitFsmEntry.setStatus('current') cucsComputeRackUnitFsmInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 52, 1, 1), CucsManagedObjectId()) if mibBuilder.loadTexts: cucsComputeRackUnitFsmInstanceId.setStatus('current') cucsComputeRackUnitFsmDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 52, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitFsmDn.setStatus('current') cucsComputeRackUnitFsmRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 52, 1, 3), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitFsmRn.setStatus('current') cucsComputeRackUnitFsmCompletionTime = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 52, 1, 4), DateAndTime()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitFsmCompletionTime.setStatus('current') cucsComputeRackUnitFsmCurrentFsm = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 52, 1, 5), CucsComputeRackUnitFsmCurrentFsm()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitFsmCurrentFsm.setStatus('current') cucsComputeRackUnitFsmDescrData = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 52, 1, 6), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitFsmDescrData.setStatus('current') cucsComputeRackUnitFsmFsmStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 52, 1, 7), CucsFsmFsmStageStatus()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitFsmFsmStatus.setStatus('current') cucsComputeRackUnitFsmProgress = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 52, 1, 8), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitFsmProgress.setStatus('current') cucsComputeRackUnitFsmRmtErrCode = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 52, 1, 9), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitFsmRmtErrCode.setStatus('current') cucsComputeRackUnitFsmRmtErrDescr = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 52, 1, 10), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitFsmRmtErrDescr.setStatus('current') cucsComputeRackUnitFsmRmtRslt = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 52, 1, 11), CucsConditionRemoteInvRslt()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitFsmRmtRslt.setStatus('current') cucsComputeRackUnitFsmStageTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 53), ) if mibBuilder.loadTexts: cucsComputeRackUnitFsmStageTable.setStatus('current') cucsComputeRackUnitFsmStageEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 53, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-COMPUTE-MIB", "cucsComputeRackUnitFsmStageInstanceId")) if mibBuilder.loadTexts: cucsComputeRackUnitFsmStageEntry.setStatus('current') cucsComputeRackUnitFsmStageInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 53, 1, 1), CucsManagedObjectId()) if mibBuilder.loadTexts: cucsComputeRackUnitFsmStageInstanceId.setStatus('current') cucsComputeRackUnitFsmStageDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 53, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitFsmStageDn.setStatus('current') cucsComputeRackUnitFsmStageRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 53, 1, 3), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitFsmStageRn.setStatus('current') cucsComputeRackUnitFsmStageDescrData = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 53, 1, 4), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitFsmStageDescrData.setStatus('current') cucsComputeRackUnitFsmStageLastUpdateTime = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 53, 1, 5), DateAndTime()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitFsmStageLastUpdateTime.setStatus('current') cucsComputeRackUnitFsmStageName = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 53, 1, 6), CucsComputeRackUnitFsmStageName()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitFsmStageName.setStatus('current') cucsComputeRackUnitFsmStageOrder = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 53, 1, 7), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitFsmStageOrder.setStatus('current') cucsComputeRackUnitFsmStageRetry = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 53, 1, 8), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitFsmStageRetry.setStatus('current') cucsComputeRackUnitFsmStageStageStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 53, 1, 9), CucsFsmFsmStageStatus()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitFsmStageStageStatus.setStatus('current') cucsComputeRackUnitFsmTaskTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 36), ) if mibBuilder.loadTexts: cucsComputeRackUnitFsmTaskTable.setStatus('current') cucsComputeRackUnitFsmTaskEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 36, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-COMPUTE-MIB", "cucsComputeRackUnitFsmTaskInstanceId")) if mibBuilder.loadTexts: cucsComputeRackUnitFsmTaskEntry.setStatus('current') cucsComputeRackUnitFsmTaskInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 36, 1, 1), CucsManagedObjectId()) if mibBuilder.loadTexts: cucsComputeRackUnitFsmTaskInstanceId.setStatus('current') cucsComputeRackUnitFsmTaskDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 36, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitFsmTaskDn.setStatus('current') cucsComputeRackUnitFsmTaskRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 36, 1, 3), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitFsmTaskRn.setStatus('current') cucsComputeRackUnitFsmTaskCompletion = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 36, 1, 4), CucsFsmCompletion()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitFsmTaskCompletion.setStatus('current') cucsComputeRackUnitFsmTaskFlags = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 36, 1, 5), CucsComputeRackUnitFsmTaskFlags()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitFsmTaskFlags.setStatus('current') cucsComputeRackUnitFsmTaskItem = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 36, 1, 6), CucsComputeRackUnitFsmTaskItem()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitFsmTaskItem.setStatus('current') cucsComputeRackUnitFsmTaskSeqId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 36, 1, 7), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitFsmTaskSeqId.setStatus('current') cucsComputeRackUnitMbTempStatsTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 44), ) if mibBuilder.loadTexts: cucsComputeRackUnitMbTempStatsTable.setStatus('current') cucsComputeRackUnitMbTempStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 44, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-COMPUTE-MIB", "cucsComputeRackUnitMbTempStatsInstanceId")) if mibBuilder.loadTexts: cucsComputeRackUnitMbTempStatsEntry.setStatus('current') cucsComputeRackUnitMbTempStatsInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 44, 1, 1), CucsManagedObjectId()) if mibBuilder.loadTexts: cucsComputeRackUnitMbTempStatsInstanceId.setStatus('current') cucsComputeRackUnitMbTempStatsDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 44, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitMbTempStatsDn.setStatus('current') cucsComputeRackUnitMbTempStatsRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 44, 1, 3), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitMbTempStatsRn.setStatus('current') cucsComputeRackUnitMbTempStatsAmbientTemp = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 44, 1, 4), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitMbTempStatsAmbientTemp.setStatus('current') cucsComputeRackUnitMbTempStatsAmbientTempAvg = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 44, 1, 5), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitMbTempStatsAmbientTempAvg.setStatus('current') cucsComputeRackUnitMbTempStatsAmbientTempMax = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 44, 1, 6), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitMbTempStatsAmbientTempMax.setStatus('current') cucsComputeRackUnitMbTempStatsAmbientTempMin = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 44, 1, 7), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitMbTempStatsAmbientTempMin.setStatus('current') cucsComputeRackUnitMbTempStatsFrontTemp = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 44, 1, 8), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitMbTempStatsFrontTemp.setStatus('current') cucsComputeRackUnitMbTempStatsFrontTempAvg = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 44, 1, 9), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitMbTempStatsFrontTempAvg.setStatus('current') cucsComputeRackUnitMbTempStatsFrontTempMax = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 44, 1, 10), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitMbTempStatsFrontTempMax.setStatus('current') cucsComputeRackUnitMbTempStatsFrontTempMin = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 44, 1, 11), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitMbTempStatsFrontTempMin.setStatus('current') cucsComputeRackUnitMbTempStatsIntervals = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 44, 1, 12), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitMbTempStatsIntervals.setStatus('current') cucsComputeRackUnitMbTempStatsIoh1Temp = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 44, 1, 13), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitMbTempStatsIoh1Temp.setStatus('current') cucsComputeRackUnitMbTempStatsIoh1TempAvg = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 44, 1, 14), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitMbTempStatsIoh1TempAvg.setStatus('current') cucsComputeRackUnitMbTempStatsIoh1TempMax = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 44, 1, 15), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitMbTempStatsIoh1TempMax.setStatus('current') cucsComputeRackUnitMbTempStatsIoh1TempMin = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 44, 1, 16), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitMbTempStatsIoh1TempMin.setStatus('current') cucsComputeRackUnitMbTempStatsIoh2Temp = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 44, 1, 17), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitMbTempStatsIoh2Temp.setStatus('current') cucsComputeRackUnitMbTempStatsIoh2TempAvg = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 44, 1, 18), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitMbTempStatsIoh2TempAvg.setStatus('current') cucsComputeRackUnitMbTempStatsIoh2TempMax = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 44, 1, 19), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitMbTempStatsIoh2TempMax.setStatus('current') cucsComputeRackUnitMbTempStatsIoh2TempMin = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 44, 1, 20), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitMbTempStatsIoh2TempMin.setStatus('current') cucsComputeRackUnitMbTempStatsRearTemp = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 44, 1, 21), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitMbTempStatsRearTemp.setStatus('current') cucsComputeRackUnitMbTempStatsRearTempAvg = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 44, 1, 22), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitMbTempStatsRearTempAvg.setStatus('current') cucsComputeRackUnitMbTempStatsRearTempMax = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 44, 1, 23), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitMbTempStatsRearTempMax.setStatus('current') cucsComputeRackUnitMbTempStatsRearTempMin = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 44, 1, 24), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitMbTempStatsRearTempMin.setStatus('current') cucsComputeRackUnitMbTempStatsSuspect = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 44, 1, 25), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitMbTempStatsSuspect.setStatus('current') cucsComputeRackUnitMbTempStatsThresholded = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 44, 1, 26), CucsComputeRackUnitMbTempStatsThresholded()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitMbTempStatsThresholded.setStatus('current') cucsComputeRackUnitMbTempStatsTimeCollected = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 44, 1, 27), DateAndTime()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitMbTempStatsTimeCollected.setStatus('current') cucsComputeRackUnitMbTempStatsUpdate = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 44, 1, 28), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitMbTempStatsUpdate.setStatus('current') cucsComputeRackUnitMbTempStatsHistTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 45), ) if mibBuilder.loadTexts: cucsComputeRackUnitMbTempStatsHistTable.setStatus('current') cucsComputeRackUnitMbTempStatsHistEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 45, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-COMPUTE-MIB", "cucsComputeRackUnitMbTempStatsHistInstanceId")) if mibBuilder.loadTexts: cucsComputeRackUnitMbTempStatsHistEntry.setStatus('current') cucsComputeRackUnitMbTempStatsHistInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 45, 1, 1), CucsManagedObjectId()) if mibBuilder.loadTexts: cucsComputeRackUnitMbTempStatsHistInstanceId.setStatus('current') cucsComputeRackUnitMbTempStatsHistDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 45, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitMbTempStatsHistDn.setStatus('current') cucsComputeRackUnitMbTempStatsHistRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 45, 1, 3), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitMbTempStatsHistRn.setStatus('current') cucsComputeRackUnitMbTempStatsHistAmbientTemp = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 45, 1, 4), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitMbTempStatsHistAmbientTemp.setStatus('current') cucsComputeRackUnitMbTempStatsHistAmbientTempAvg = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 45, 1, 5), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitMbTempStatsHistAmbientTempAvg.setStatus('current') cucsComputeRackUnitMbTempStatsHistAmbientTempMax = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 45, 1, 6), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitMbTempStatsHistAmbientTempMax.setStatus('current') cucsComputeRackUnitMbTempStatsHistAmbientTempMin = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 45, 1, 7), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitMbTempStatsHistAmbientTempMin.setStatus('current') cucsComputeRackUnitMbTempStatsHistFrontTemp = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 45, 1, 8), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitMbTempStatsHistFrontTemp.setStatus('current') cucsComputeRackUnitMbTempStatsHistFrontTempAvg = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 45, 1, 9), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitMbTempStatsHistFrontTempAvg.setStatus('current') cucsComputeRackUnitMbTempStatsHistFrontTempMax = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 45, 1, 10), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitMbTempStatsHistFrontTempMax.setStatus('current') cucsComputeRackUnitMbTempStatsHistFrontTempMin = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 45, 1, 11), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitMbTempStatsHistFrontTempMin.setStatus('current') cucsComputeRackUnitMbTempStatsHistId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 45, 1, 12), Unsigned64()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitMbTempStatsHistId.setStatus('current') cucsComputeRackUnitMbTempStatsHistIoh1Temp = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 45, 1, 13), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitMbTempStatsHistIoh1Temp.setStatus('current') cucsComputeRackUnitMbTempStatsHistIoh1TempAvg = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 45, 1, 14), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitMbTempStatsHistIoh1TempAvg.setStatus('current') cucsComputeRackUnitMbTempStatsHistIoh1TempMax = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 45, 1, 15), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitMbTempStatsHistIoh1TempMax.setStatus('current') cucsComputeRackUnitMbTempStatsHistIoh1TempMin = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 45, 1, 16), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitMbTempStatsHistIoh1TempMin.setStatus('current') cucsComputeRackUnitMbTempStatsHistIoh2Temp = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 45, 1, 17), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitMbTempStatsHistIoh2Temp.setStatus('current') cucsComputeRackUnitMbTempStatsHistIoh2TempAvg = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 45, 1, 18), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitMbTempStatsHistIoh2TempAvg.setStatus('current') cucsComputeRackUnitMbTempStatsHistIoh2TempMax = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 45, 1, 19), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitMbTempStatsHistIoh2TempMax.setStatus('current') cucsComputeRackUnitMbTempStatsHistIoh2TempMin = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 45, 1, 20), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitMbTempStatsHistIoh2TempMin.setStatus('current') cucsComputeRackUnitMbTempStatsHistMostRecent = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 45, 1, 21), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitMbTempStatsHistMostRecent.setStatus('current') cucsComputeRackUnitMbTempStatsHistRearTemp = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 45, 1, 22), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitMbTempStatsHistRearTemp.setStatus('current') cucsComputeRackUnitMbTempStatsHistRearTempAvg = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 45, 1, 23), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitMbTempStatsHistRearTempAvg.setStatus('current') cucsComputeRackUnitMbTempStatsHistRearTempMax = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 45, 1, 24), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitMbTempStatsHistRearTempMax.setStatus('current') cucsComputeRackUnitMbTempStatsHistRearTempMin = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 45, 1, 25), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitMbTempStatsHistRearTempMin.setStatus('current') cucsComputeRackUnitMbTempStatsHistSuspect = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 45, 1, 26), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitMbTempStatsHistSuspect.setStatus('current') cucsComputeRackUnitMbTempStatsHistThresholded = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 45, 1, 27), CucsComputeRackUnitMbTempStatsHistThresholded()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitMbTempStatsHistThresholded.setStatus('current') cucsComputeRackUnitMbTempStatsHistTimeCollected = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 45, 1, 28), DateAndTime()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRackUnitMbTempStatsHistTimeCollected.setStatus('current') cucsComputeRtcBatteryTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 37), ) if mibBuilder.loadTexts: cucsComputeRtcBatteryTable.setStatus('current') cucsComputeRtcBatteryEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 37, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-COMPUTE-MIB", "cucsComputeRtcBatteryInstanceId")) if mibBuilder.loadTexts: cucsComputeRtcBatteryEntry.setStatus('current') cucsComputeRtcBatteryInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 37, 1, 1), CucsManagedObjectId()) if mibBuilder.loadTexts: cucsComputeRtcBatteryInstanceId.setStatus('current') cucsComputeRtcBatteryDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 37, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRtcBatteryDn.setStatus('current') cucsComputeRtcBatteryRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 37, 1, 3), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRtcBatteryRn.setStatus('current') cucsComputeRtcBatteryId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 37, 1, 4), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRtcBatteryId.setStatus('current') cucsComputeRtcBatteryModel = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 37, 1, 5), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRtcBatteryModel.setStatus('current') cucsComputeRtcBatteryOperState = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 37, 1, 6), CucsEquipmentOperability()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRtcBatteryOperState.setStatus('current') cucsComputeRtcBatteryOperability = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 37, 1, 7), CucsEquipmentOperability()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRtcBatteryOperability.setStatus('current') cucsComputeRtcBatteryPerf = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 37, 1, 8), CucsEquipmentSensorThresholdStatus()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRtcBatteryPerf.setStatus('current') cucsComputeRtcBatteryPower = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 37, 1, 9), CucsEquipmentPowerState()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRtcBatteryPower.setStatus('current') cucsComputeRtcBatteryPresence = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 37, 1, 10), CucsEquipmentPresence()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRtcBatteryPresence.setStatus('current') cucsComputeRtcBatteryRevision = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 37, 1, 11), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRtcBatteryRevision.setStatus('current') cucsComputeRtcBatterySerial = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 37, 1, 12), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRtcBatterySerial.setStatus('current') cucsComputeRtcBatteryThermal = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 37, 1, 13), CucsEquipmentSensorThresholdStatus()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRtcBatteryThermal.setStatus('current') cucsComputeRtcBatteryVendor = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 37, 1, 14), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRtcBatteryVendor.setStatus('current') cucsComputeRtcBatteryVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 37, 1, 15), CucsEquipmentSensorThresholdStatus()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRtcBatteryVoltage.setStatus('current') cucsComputeRtcBatteryOperQualifierReason = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 37, 1, 16), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRtcBatteryOperQualifierReason.setStatus('current') cucsComputeRtcBatteryLocationDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 37, 1, 17), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeRtcBatteryLocationDn.setStatus('current') cucsComputeScrubPolicyTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 38), ) if mibBuilder.loadTexts: cucsComputeScrubPolicyTable.setStatus('current') cucsComputeScrubPolicyEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 38, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-COMPUTE-MIB", "cucsComputeScrubPolicyInstanceId")) if mibBuilder.loadTexts: cucsComputeScrubPolicyEntry.setStatus('current') cucsComputeScrubPolicyInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 38, 1, 1), CucsManagedObjectId()) if mibBuilder.loadTexts: cucsComputeScrubPolicyInstanceId.setStatus('current') cucsComputeScrubPolicyDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 38, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeScrubPolicyDn.setStatus('current') cucsComputeScrubPolicyRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 38, 1, 3), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeScrubPolicyRn.setStatus('current') cucsComputeScrubPolicyBiosSettingsScrub = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 38, 1, 4), CucsComputeScrubAction()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeScrubPolicyBiosSettingsScrub.setStatus('current') cucsComputeScrubPolicyDescr = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 38, 1, 5), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeScrubPolicyDescr.setStatus('current') cucsComputeScrubPolicyDiskScrub = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 38, 1, 6), CucsComputeScrubAction()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeScrubPolicyDiskScrub.setStatus('current') cucsComputeScrubPolicyIntId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 38, 1, 7), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeScrubPolicyIntId.setStatus('current') cucsComputeScrubPolicyName = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 38, 1, 8), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeScrubPolicyName.setStatus('current') cucsComputeScrubPolicyPolicyLevel = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 38, 1, 9), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeScrubPolicyPolicyLevel.setStatus('current') cucsComputeScrubPolicyPolicyOwner = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 38, 1, 10), CucsPolicyPolicyOwner()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeScrubPolicyPolicyOwner.setStatus('current') cucsComputeScrubPolicyFlexFlashScrub = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 38, 1, 11), CucsComputeScrubAction()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeScrubPolicyFlexFlashScrub.setStatus('current') cucsComputeServerDiscPolicyTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 39), ) if mibBuilder.loadTexts: cucsComputeServerDiscPolicyTable.setStatus('current') cucsComputeServerDiscPolicyEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 39, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-COMPUTE-MIB", "cucsComputeServerDiscPolicyInstanceId")) if mibBuilder.loadTexts: cucsComputeServerDiscPolicyEntry.setStatus('current') cucsComputeServerDiscPolicyInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 39, 1, 1), CucsManagedObjectId()) if mibBuilder.loadTexts: cucsComputeServerDiscPolicyInstanceId.setStatus('current') cucsComputeServerDiscPolicyDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 39, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerDiscPolicyDn.setStatus('current') cucsComputeServerDiscPolicyRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 39, 1, 3), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerDiscPolicyRn.setStatus('current') cucsComputeServerDiscPolicyAction = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 39, 1, 4), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerDiscPolicyAction.setStatus('current') cucsComputeServerDiscPolicyDescr = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 39, 1, 5), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerDiscPolicyDescr.setStatus('current') cucsComputeServerDiscPolicyIntId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 39, 1, 6), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerDiscPolicyIntId.setStatus('current') cucsComputeServerDiscPolicyName = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 39, 1, 7), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerDiscPolicyName.setStatus('current') cucsComputeServerDiscPolicyQualifier = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 39, 1, 8), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerDiscPolicyQualifier.setStatus('current') cucsComputeServerDiscPolicyScrubPolicyName = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 39, 1, 9), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerDiscPolicyScrubPolicyName.setStatus('current') cucsComputeServerDiscPolicyFsmDescr = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 39, 1, 10), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerDiscPolicyFsmDescr.setStatus('current') cucsComputeServerDiscPolicyFsmPrev = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 39, 1, 11), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerDiscPolicyFsmPrev.setStatus('current') cucsComputeServerDiscPolicyFsmProgr = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 39, 1, 12), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerDiscPolicyFsmProgr.setStatus('current') cucsComputeServerDiscPolicyFsmRmtInvErrCode = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 39, 1, 13), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerDiscPolicyFsmRmtInvErrCode.setStatus('current') cucsComputeServerDiscPolicyFsmRmtInvErrDescr = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 39, 1, 14), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerDiscPolicyFsmRmtInvErrDescr.setStatus('current') cucsComputeServerDiscPolicyFsmRmtInvRslt = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 39, 1, 15), CucsConditionRemoteInvRslt()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerDiscPolicyFsmRmtInvRslt.setStatus('current') cucsComputeServerDiscPolicyFsmStageDescr = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 39, 1, 16), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerDiscPolicyFsmStageDescr.setStatus('current') cucsComputeServerDiscPolicyFsmStamp = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 39, 1, 17), DateAndTime()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerDiscPolicyFsmStamp.setStatus('current') cucsComputeServerDiscPolicyFsmStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 39, 1, 18), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerDiscPolicyFsmStatus.setStatus('current') cucsComputeServerDiscPolicyFsmTry = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 39, 1, 19), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerDiscPolicyFsmTry.setStatus('current') cucsComputeServerDiscPolicyPolicyLevel = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 39, 1, 20), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerDiscPolicyPolicyLevel.setStatus('current') cucsComputeServerDiscPolicyPolicyOwner = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 39, 1, 21), CucsPolicyPolicyOwner()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerDiscPolicyPolicyOwner.setStatus('current') cucsComputeServerDiscPolicyFsmTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 54), ) if mibBuilder.loadTexts: cucsComputeServerDiscPolicyFsmTable.setStatus('current') cucsComputeServerDiscPolicyFsmEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 54, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-COMPUTE-MIB", "cucsComputeServerDiscPolicyFsmInstanceId")) if mibBuilder.loadTexts: cucsComputeServerDiscPolicyFsmEntry.setStatus('current') cucsComputeServerDiscPolicyFsmInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 54, 1, 1), CucsManagedObjectId()) if mibBuilder.loadTexts: cucsComputeServerDiscPolicyFsmInstanceId.setStatus('current') cucsComputeServerDiscPolicyFsmDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 54, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerDiscPolicyFsmDn.setStatus('current') cucsComputeServerDiscPolicyFsmRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 54, 1, 3), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerDiscPolicyFsmRn.setStatus('current') cucsComputeServerDiscPolicyFsmCompletionTime = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 54, 1, 4), DateAndTime()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerDiscPolicyFsmCompletionTime.setStatus('current') cucsComputeServerDiscPolicyFsmCurrentFsm = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 54, 1, 5), CucsComputeServerDiscPolicyFsmCurrentFsm()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerDiscPolicyFsmCurrentFsm.setStatus('current') cucsComputeServerDiscPolicyFsmDescrData = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 54, 1, 6), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerDiscPolicyFsmDescrData.setStatus('current') cucsComputeServerDiscPolicyFsmFsmStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 54, 1, 7), CucsFsmFsmStageStatus()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerDiscPolicyFsmFsmStatus.setStatus('current') cucsComputeServerDiscPolicyFsmProgress = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 54, 1, 8), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerDiscPolicyFsmProgress.setStatus('current') cucsComputeServerDiscPolicyFsmRmtErrCode = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 54, 1, 9), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerDiscPolicyFsmRmtErrCode.setStatus('current') cucsComputeServerDiscPolicyFsmRmtErrDescr = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 54, 1, 10), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerDiscPolicyFsmRmtErrDescr.setStatus('current') cucsComputeServerDiscPolicyFsmRmtRslt = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 54, 1, 11), CucsConditionRemoteInvRslt()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerDiscPolicyFsmRmtRslt.setStatus('current') cucsComputeServerDiscPolicyFsmStageTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 55), ) if mibBuilder.loadTexts: cucsComputeServerDiscPolicyFsmStageTable.setStatus('current') cucsComputeServerDiscPolicyFsmStageEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 55, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-COMPUTE-MIB", "cucsComputeServerDiscPolicyFsmStageInstanceId")) if mibBuilder.loadTexts: cucsComputeServerDiscPolicyFsmStageEntry.setStatus('current') cucsComputeServerDiscPolicyFsmStageInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 55, 1, 1), CucsManagedObjectId()) if mibBuilder.loadTexts: cucsComputeServerDiscPolicyFsmStageInstanceId.setStatus('current') cucsComputeServerDiscPolicyFsmStageDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 55, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerDiscPolicyFsmStageDn.setStatus('current') cucsComputeServerDiscPolicyFsmStageRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 55, 1, 3), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerDiscPolicyFsmStageRn.setStatus('current') cucsComputeServerDiscPolicyFsmStageDescrData = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 55, 1, 4), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerDiscPolicyFsmStageDescrData.setStatus('current') cucsComputeServerDiscPolicyFsmStageLastUpdateTime = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 55, 1, 5), DateAndTime()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerDiscPolicyFsmStageLastUpdateTime.setStatus('current') cucsComputeServerDiscPolicyFsmStageName = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 55, 1, 6), CucsComputeServerDiscPolicyFsmStageName()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerDiscPolicyFsmStageName.setStatus('current') cucsComputeServerDiscPolicyFsmStageOrder = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 55, 1, 7), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerDiscPolicyFsmStageOrder.setStatus('current') cucsComputeServerDiscPolicyFsmStageRetry = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 55, 1, 8), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerDiscPolicyFsmStageRetry.setStatus('current') cucsComputeServerDiscPolicyFsmStageStageStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 55, 1, 9), CucsFsmFsmStageStatus()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerDiscPolicyFsmStageStageStatus.setStatus('current') cucsComputeServerDiscPolicyFsmTaskTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 56), ) if mibBuilder.loadTexts: cucsComputeServerDiscPolicyFsmTaskTable.setStatus('current') cucsComputeServerDiscPolicyFsmTaskEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 56, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-COMPUTE-MIB", "cucsComputeServerDiscPolicyFsmTaskInstanceId")) if mibBuilder.loadTexts: cucsComputeServerDiscPolicyFsmTaskEntry.setStatus('current') cucsComputeServerDiscPolicyFsmTaskInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 56, 1, 1), CucsManagedObjectId()) if mibBuilder.loadTexts: cucsComputeServerDiscPolicyFsmTaskInstanceId.setStatus('current') cucsComputeServerDiscPolicyFsmTaskDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 56, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerDiscPolicyFsmTaskDn.setStatus('current') cucsComputeServerDiscPolicyFsmTaskRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 56, 1, 3), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerDiscPolicyFsmTaskRn.setStatus('current') cucsComputeServerDiscPolicyFsmTaskCompletion = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 56, 1, 4), CucsFsmCompletion()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerDiscPolicyFsmTaskCompletion.setStatus('current') cucsComputeServerDiscPolicyFsmTaskFlags = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 56, 1, 5), CucsFsmFlags()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerDiscPolicyFsmTaskFlags.setStatus('current') cucsComputeServerDiscPolicyFsmTaskItem = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 56, 1, 6), CucsComputeServerDiscPolicyFsmTaskItem()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerDiscPolicyFsmTaskItem.setStatus('current') cucsComputeServerDiscPolicyFsmTaskSeqId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 56, 1, 7), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerDiscPolicyFsmTaskSeqId.setStatus('current') cucsComputeServerMgmtPolicyTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 57), ) if mibBuilder.loadTexts: cucsComputeServerMgmtPolicyTable.setStatus('current') cucsComputeServerMgmtPolicyEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 57, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-COMPUTE-MIB", "cucsComputeServerMgmtPolicyInstanceId")) if mibBuilder.loadTexts: cucsComputeServerMgmtPolicyEntry.setStatus('current') cucsComputeServerMgmtPolicyInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 57, 1, 1), CucsManagedObjectId()) if mibBuilder.loadTexts: cucsComputeServerMgmtPolicyInstanceId.setStatus('current') cucsComputeServerMgmtPolicyDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 57, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerMgmtPolicyDn.setStatus('current') cucsComputeServerMgmtPolicyRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 57, 1, 3), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerMgmtPolicyRn.setStatus('current') cucsComputeServerMgmtPolicyAction = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 57, 1, 4), CucsComputeServerMgmtDiscAction()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerMgmtPolicyAction.setStatus('current') cucsComputeServerMgmtPolicyDescr = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 57, 1, 5), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerMgmtPolicyDescr.setStatus('current') cucsComputeServerMgmtPolicyIntId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 57, 1, 6), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerMgmtPolicyIntId.setStatus('current') cucsComputeServerMgmtPolicyName = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 57, 1, 7), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerMgmtPolicyName.setStatus('current') cucsComputeServerMgmtPolicyPolicyLevel = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 57, 1, 8), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerMgmtPolicyPolicyLevel.setStatus('current') cucsComputeServerMgmtPolicyPolicyOwner = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 57, 1, 9), CucsPolicyPolicyOwner()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerMgmtPolicyPolicyOwner.setStatus('current') cucsComputeServerMgmtPolicyQualifier = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 57, 1, 10), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerMgmtPolicyQualifier.setStatus('current') cucsComputeServerTypeCapTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 68), ) if mibBuilder.loadTexts: cucsComputeServerTypeCapTable.setStatus('current') cucsComputeServerTypeCapEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 68, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-COMPUTE-MIB", "cucsComputeServerTypeCapInstanceId")) if mibBuilder.loadTexts: cucsComputeServerTypeCapEntry.setStatus('current') cucsComputeServerTypeCapInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 68, 1, 1), CucsManagedObjectId()) if mibBuilder.loadTexts: cucsComputeServerTypeCapInstanceId.setStatus('current') cucsComputeServerTypeCapDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 68, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerTypeCapDn.setStatus('current') cucsComputeServerTypeCapRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 68, 1, 3), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerTypeCapRn.setStatus('current') cucsComputeServerTypeCapType = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 68, 1, 4), CucsComputeServerTypeCapType()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerTypeCapType.setStatus('current') cucsComputeServerUnitTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 74), ) if mibBuilder.loadTexts: cucsComputeServerUnitTable.setStatus('current') cucsComputeServerUnitEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 74, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-COMPUTE-MIB", "cucsComputeServerUnitInstanceId")) if mibBuilder.loadTexts: cucsComputeServerUnitEntry.setStatus('current') cucsComputeServerUnitInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 74, 1, 1), CucsManagedObjectId()) if mibBuilder.loadTexts: cucsComputeServerUnitInstanceId.setStatus('current') cucsComputeServerUnitDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 74, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitDn.setStatus('current') cucsComputeServerUnitRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 74, 1, 3), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitRn.setStatus('current') cucsComputeServerUnitAdminPower = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 74, 1, 4), CucsComputeAdminPowerState()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitAdminPower.setStatus('current') cucsComputeServerUnitAdminState = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 74, 1, 5), CucsComputeAdminState()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitAdminState.setStatus('current') cucsComputeServerUnitAssignedToDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 74, 1, 6), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitAssignedToDn.setStatus('current') cucsComputeServerUnitAssociation = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 74, 1, 7), CucsComputeAssociation()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitAssociation.setStatus('current') cucsComputeServerUnitAvailability = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 74, 1, 8), CucsComputeAvailability()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitAvailability.setStatus('current') cucsComputeServerUnitAvailableMemory = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 74, 1, 9), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitAvailableMemory.setStatus('current') cucsComputeServerUnitChassisId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 74, 1, 10), CucsComputeServerUnitChassisId()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitChassisId.setStatus('current') cucsComputeServerUnitCheckPoint = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 74, 1, 11), CucsComputeCheckPoint()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitCheckPoint.setStatus('current') cucsComputeServerUnitConnPath = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 74, 1, 12), CucsEquipmentConnectionStatus()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitConnPath.setStatus('current') cucsComputeServerUnitConnStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 74, 1, 13), CucsEquipmentConnectionStatus()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitConnStatus.setStatus('current') cucsComputeServerUnitDescr = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 74, 1, 14), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitDescr.setStatus('current') cucsComputeServerUnitDiscovery = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 74, 1, 15), CucsComputeDiscovery()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitDiscovery.setStatus('current') cucsComputeServerUnitDiscoveryStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 74, 1, 16), CucsEquipmentConnectionStatus()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitDiscoveryStatus.setStatus('current') cucsComputeServerUnitFltAggr = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 74, 1, 17), Unsigned64()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitFltAggr.setStatus('current') cucsComputeServerUnitFsmDescr = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 74, 1, 18), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitFsmDescr.setStatus('current') cucsComputeServerUnitFsmFlags = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 74, 1, 19), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitFsmFlags.setStatus('current') cucsComputeServerUnitFsmPrev = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 74, 1, 20), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitFsmPrev.setStatus('current') cucsComputeServerUnitFsmProgr = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 74, 1, 21), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitFsmProgr.setStatus('current') cucsComputeServerUnitFsmRmtInvErrCode = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 74, 1, 22), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitFsmRmtInvErrCode.setStatus('current') cucsComputeServerUnitFsmRmtInvErrDescr = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 74, 1, 23), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitFsmRmtInvErrDescr.setStatus('current') cucsComputeServerUnitFsmRmtInvRslt = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 74, 1, 24), CucsConditionRemoteInvRslt()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitFsmRmtInvRslt.setStatus('current') cucsComputeServerUnitFsmStageDescr = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 74, 1, 25), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitFsmStageDescr.setStatus('current') cucsComputeServerUnitFsmStamp = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 74, 1, 26), DateAndTime()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitFsmStamp.setStatus('current') cucsComputeServerUnitFsmStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 74, 1, 27), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitFsmStatus.setStatus('current') cucsComputeServerUnitFsmTry = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 74, 1, 28), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitFsmTry.setStatus('current') cucsComputeServerUnitIntId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 74, 1, 29), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitIntId.setStatus('current') cucsComputeServerUnitLc = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 74, 1, 30), CucsComputeAdminTrigger()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitLc.setStatus('current') cucsComputeServerUnitLcTs = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 74, 1, 31), DateAndTime()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitLcTs.setStatus('current') cucsComputeServerUnitLocalId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 74, 1, 32), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitLocalId.setStatus('current') cucsComputeServerUnitLowVoltageMemory = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 74, 1, 33), CucsComputePhysicalLowVoltageMemory()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitLowVoltageMemory.setStatus('current') cucsComputeServerUnitManagingInst = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 74, 1, 34), CucsNetworkSwitchId()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitManagingInst.setStatus('current') cucsComputeServerUnitMemorySpeed = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 74, 1, 35), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitMemorySpeed.setStatus('current') cucsComputeServerUnitMfgTime = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 74, 1, 36), DateAndTime()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitMfgTime.setStatus('current') cucsComputeServerUnitModel = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 74, 1, 37), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitModel.setStatus('current') cucsComputeServerUnitName = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 74, 1, 38), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitName.setStatus('current') cucsComputeServerUnitNumOfAdaptors = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 74, 1, 39), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitNumOfAdaptors.setStatus('current') cucsComputeServerUnitNumOfCores = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 74, 1, 40), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitNumOfCores.setStatus('current') cucsComputeServerUnitNumOfCoresEnabled = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 74, 1, 41), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitNumOfCoresEnabled.setStatus('current') cucsComputeServerUnitNumOfCpus = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 74, 1, 42), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitNumOfCpus.setStatus('current') cucsComputeServerUnitNumOfEthHostIfs = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 74, 1, 43), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitNumOfEthHostIfs.setStatus('current') cucsComputeServerUnitNumOfFcHostIfs = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 74, 1, 44), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitNumOfFcHostIfs.setStatus('current') cucsComputeServerUnitNumOfThreads = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 74, 1, 45), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitNumOfThreads.setStatus('current') cucsComputeServerUnitOperPower = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 74, 1, 46), CucsEquipmentPowerState()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitOperPower.setStatus('current') cucsComputeServerUnitOperQualifier = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 74, 1, 47), CucsComputeIssues()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitOperQualifier.setStatus('current') cucsComputeServerUnitOperState = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 74, 1, 48), CucsLsOperState()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitOperState.setStatus('current') cucsComputeServerUnitOperability = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 74, 1, 49), CucsEquipmentOperability()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitOperability.setStatus('current') cucsComputeServerUnitOriginalUuid = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 74, 1, 50), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitOriginalUuid.setStatus('current') cucsComputeServerUnitPartNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 74, 1, 51), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitPartNumber.setStatus('current') cucsComputeServerUnitPolicyLevel = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 74, 1, 52), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitPolicyLevel.setStatus('current') cucsComputeServerUnitPolicyOwner = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 74, 1, 53), CucsPolicyPolicyOwner()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitPolicyOwner.setStatus('current') cucsComputeServerUnitPresence = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 74, 1, 54), CucsEquipmentSlotStatus()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitPresence.setStatus('current') cucsComputeServerUnitRevision = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 74, 1, 55), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitRevision.setStatus('current') cucsComputeServerUnitSerial = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 74, 1, 56), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitSerial.setStatus('current') cucsComputeServerUnitServerId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 74, 1, 57), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitServerId.setStatus('current') cucsComputeServerUnitServerInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 74, 1, 58), CucsComputeServerUnitServerInstanceId()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitServerInstanceId.setStatus('current') cucsComputeServerUnitSlotId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 74, 1, 59), CucsComputeServerUnitSlotId()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitSlotId.setStatus('current') cucsComputeServerUnitTotalMemory = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 74, 1, 60), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitTotalMemory.setStatus('current') cucsComputeServerUnitUsrLbl = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 74, 1, 61), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitUsrLbl.setStatus('current') cucsComputeServerUnitUuid = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 74, 1, 62), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitUuid.setStatus('current') cucsComputeServerUnitVendor = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 74, 1, 63), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitVendor.setStatus('current') cucsComputeServerUnitVid = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 74, 1, 64), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitVid.setStatus('current') cucsComputeServerUnitNumOf40GAdaptorsWithOldFw = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 74, 1, 66), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitNumOf40GAdaptorsWithOldFw.setStatus('current') cucsComputeServerUnitNumOf40GAdaptorsWithUnknownFw = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 74, 1, 67), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitNumOf40GAdaptorsWithUnknownFw.setStatus('current') cucsComputeServerUnitOperPwrTransSrc = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 74, 1, 68), CucsComputePowerTransitionSrc()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitOperPwrTransSrc.setStatus('current') cucsComputeServerUnitFsmTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 75), ) if mibBuilder.loadTexts: cucsComputeServerUnitFsmTable.setStatus('current') cucsComputeServerUnitFsmEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 75, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-COMPUTE-MIB", "cucsComputeServerUnitFsmInstanceId")) if mibBuilder.loadTexts: cucsComputeServerUnitFsmEntry.setStatus('current') cucsComputeServerUnitFsmInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 75, 1, 1), CucsManagedObjectId()) if mibBuilder.loadTexts: cucsComputeServerUnitFsmInstanceId.setStatus('current') cucsComputeServerUnitFsmDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 75, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitFsmDn.setStatus('current') cucsComputeServerUnitFsmRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 75, 1, 3), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitFsmRn.setStatus('current') cucsComputeServerUnitFsmCompletionTime = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 75, 1, 4), DateAndTime()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitFsmCompletionTime.setStatus('current') cucsComputeServerUnitFsmCurrentFsm = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 75, 1, 5), CucsComputeServerUnitFsmCurrentFsm()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitFsmCurrentFsm.setStatus('current') cucsComputeServerUnitFsmDescrData = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 75, 1, 6), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitFsmDescrData.setStatus('current') cucsComputeServerUnitFsmFsmStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 75, 1, 7), CucsFsmFsmStageStatus()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitFsmFsmStatus.setStatus('current') cucsComputeServerUnitFsmProgress = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 75, 1, 8), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitFsmProgress.setStatus('current') cucsComputeServerUnitFsmRmtErrCode = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 75, 1, 9), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitFsmRmtErrCode.setStatus('current') cucsComputeServerUnitFsmRmtErrDescr = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 75, 1, 10), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitFsmRmtErrDescr.setStatus('current') cucsComputeServerUnitFsmRmtRslt = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 75, 1, 11), CucsConditionRemoteInvRslt()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitFsmRmtRslt.setStatus('current') cucsComputeServerUnitFsmStageTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 76), ) if mibBuilder.loadTexts: cucsComputeServerUnitFsmStageTable.setStatus('current') cucsComputeServerUnitFsmStageEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 76, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-COMPUTE-MIB", "cucsComputeServerUnitFsmStageInstanceId")) if mibBuilder.loadTexts: cucsComputeServerUnitFsmStageEntry.setStatus('current') cucsComputeServerUnitFsmStageInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 76, 1, 1), CucsManagedObjectId()) if mibBuilder.loadTexts: cucsComputeServerUnitFsmStageInstanceId.setStatus('current') cucsComputeServerUnitFsmStageDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 76, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitFsmStageDn.setStatus('current') cucsComputeServerUnitFsmStageRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 76, 1, 3), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitFsmStageRn.setStatus('current') cucsComputeServerUnitFsmStageDescrData = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 76, 1, 4), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitFsmStageDescrData.setStatus('current') cucsComputeServerUnitFsmStageLastUpdateTime = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 76, 1, 5), DateAndTime()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitFsmStageLastUpdateTime.setStatus('current') cucsComputeServerUnitFsmStageName = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 76, 1, 6), CucsComputeServerUnitFsmStageName()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitFsmStageName.setStatus('current') cucsComputeServerUnitFsmStageOrder = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 76, 1, 7), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitFsmStageOrder.setStatus('current') cucsComputeServerUnitFsmStageRetry = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 76, 1, 8), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitFsmStageRetry.setStatus('current') cucsComputeServerUnitFsmStageStageStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 76, 1, 9), CucsFsmFsmStageStatus()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitFsmStageStageStatus.setStatus('current') cucsComputeServerUnitFsmTaskTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 77), ) if mibBuilder.loadTexts: cucsComputeServerUnitFsmTaskTable.setStatus('current') cucsComputeServerUnitFsmTaskEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 77, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-COMPUTE-MIB", "cucsComputeServerUnitFsmTaskInstanceId")) if mibBuilder.loadTexts: cucsComputeServerUnitFsmTaskEntry.setStatus('current') cucsComputeServerUnitFsmTaskInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 77, 1, 1), CucsManagedObjectId()) if mibBuilder.loadTexts: cucsComputeServerUnitFsmTaskInstanceId.setStatus('current') cucsComputeServerUnitFsmTaskDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 77, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitFsmTaskDn.setStatus('current') cucsComputeServerUnitFsmTaskRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 77, 1, 3), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitFsmTaskRn.setStatus('current') cucsComputeServerUnitFsmTaskCompletion = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 77, 1, 4), CucsFsmCompletion()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitFsmTaskCompletion.setStatus('current') cucsComputeServerUnitFsmTaskFlags = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 77, 1, 5), CucsComputeServerUnitFsmTaskFlags()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitFsmTaskFlags.setStatus('current') cucsComputeServerUnitFsmTaskItem = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 77, 1, 6), CucsComputeServerUnitFsmTaskItem()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitFsmTaskItem.setStatus('current') cucsComputeServerUnitFsmTaskSeqId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 77, 1, 7), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeServerUnitFsmTaskSeqId.setStatus('current') cucsComputeSlotQualTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 40), ) if mibBuilder.loadTexts: cucsComputeSlotQualTable.setStatus('current') cucsComputeSlotQualEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 40, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-COMPUTE-MIB", "cucsComputeSlotQualInstanceId")) if mibBuilder.loadTexts: cucsComputeSlotQualEntry.setStatus('current') cucsComputeSlotQualInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 40, 1, 1), CucsManagedObjectId()) if mibBuilder.loadTexts: cucsComputeSlotQualInstanceId.setStatus('current') cucsComputeSlotQualDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 40, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeSlotQualDn.setStatus('current') cucsComputeSlotQualRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 40, 1, 3), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeSlotQualRn.setStatus('current') cucsComputeSlotQualMaxId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 40, 1, 4), CucsComputeSlotQualMaxId()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeSlotQualMaxId.setStatus('current') cucsComputeSlotQualMinId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 9, 40, 1, 5), CucsComputeSlotQualMinId()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsComputeSlotQualMinId.setStatus('current') mibBuilder.exportSymbols("CISCO-UNIFIED-COMPUTING-COMPUTE-MIB", cucsComputeBoardRevision=cucsComputeBoardRevision, cucsComputeRackUnitFsmFsmStatus=cucsComputeRackUnitFsmFsmStatus, cucsComputePCIeFatalCompletionStatsTimeoutErrors1Day=cucsComputePCIeFatalCompletionStatsTimeoutErrors1Day, cucsComputePCIeFatalCompletionStatsAbortErrors1WeekH=cucsComputePCIeFatalCompletionStatsAbortErrors1WeekH, cucsComputeBoardSerial=cucsComputeBoardSerial, cucsComputeBladeFsmStageTable=cucsComputeBladeFsmStageTable, cucsComputePCIeFatalCompletionStatsTimeoutErrors1WeekH=cucsComputePCIeFatalCompletionStatsTimeoutErrors1WeekH, cucsComputeMbTempStatsFmTempSenRearAvg=cucsComputeMbTempStatsFmTempSenRearAvg, cucsComputeCartridgeOperQualifierReason=cucsComputeCartridgeOperQualifierReason, cucsComputeBladeFsmRmtErrDescr=cucsComputeBladeFsmRmtErrDescr, cucsComputeIOHubDn=cucsComputeIOHubDn, cucsComputePooledEnclosureComputeSlotAssignedToDn=cucsComputePooledEnclosureComputeSlotAssignedToDn, cucsComputeIOHubInstanceId=cucsComputeIOHubInstanceId, cucsComputeServerDiscPolicyIntId=cucsComputeServerDiscPolicyIntId, cucsComputeCartridgeModel=cucsComputeCartridgeModel, cucsComputeChassisDiscPolicyRebalance=cucsComputeChassisDiscPolicyRebalance, cucsComputePooledSlotPoolableDn=cucsComputePooledSlotPoolableDn, cucsComputeServerDiscPolicyFsmTaskRn=cucsComputeServerDiscPolicyFsmTaskRn, cucsComputeCartridgeId=cucsComputeCartridgeId, cucsComputeBladeMemorySpeed=cucsComputeBladeMemorySpeed, cucsComputeMbPowerStatsUpdate=cucsComputeMbPowerStatsUpdate, cucsComputeMemoryConfigPolicyPolicyLevel=cucsComputeMemoryConfigPolicyPolicyLevel, cucsComputeKvmMgmtPolicyDescr=cucsComputeKvmMgmtPolicyDescr, cucsComputePCIeFatalStatsMalformedTLPErrors2WeeksH=cucsComputePCIeFatalStatsMalformedTLPErrors2WeeksH, cucsComputePCIeFatalCompletionStatsAbortErrors1HourH=cucsComputePCIeFatalCompletionStatsAbortErrors1HourH, cucsComputeServerUnitFsmStageEntry=cucsComputeServerUnitFsmStageEntry, cucsComputeBladeEpPresence=cucsComputeBladeEpPresence, cucsComputePCIeFatalStatsThresholded=cucsComputePCIeFatalStatsThresholded, cucsComputePCIeFatalStatsTimeCollected=cucsComputePCIeFatalStatsTimeCollected, cucsComputePhysicalFsmEntry=cucsComputePhysicalFsmEntry, cucsComputeIOHubRevision=cucsComputeIOHubRevision, cucsComputePCIeFatalCompletionStatsAbortErrors2WeeksH=cucsComputePCIeFatalCompletionStatsAbortErrors2WeeksH, cucsComputeBladeEpOperState=cucsComputeBladeEpOperState, cucsComputePCIeFatalReceiveStatsBufferOverflowErrors2WeeksH=cucsComputePCIeFatalReceiveStatsBufferOverflowErrors2WeeksH, cucsComputeRtcBatteryPresence=cucsComputeRtcBatteryPresence, cucsComputePhysicalFsmProgress=cucsComputePhysicalFsmProgress, cucsComputeIOHubEnvStatsTimeCollected=cucsComputeIOHubEnvStatsTimeCollected, cucsComputeMbTempStatsHistFmTempSenRearLMin=cucsComputeMbTempStatsHistFmTempSenRearLMin, cucsComputeRackUnitMbTempStatsHistRearTemp=cucsComputeRackUnitMbTempStatsHistRearTemp, cucsComputePCIeFatalCompletionStatsAbortErrors15Min=cucsComputePCIeFatalCompletionStatsAbortErrors15Min, PYSNMP_MODULE_ID=cucsComputeObjects, cucsComputePCIeFatalStatsMalformedTLPErrors1DayH=cucsComputePCIeFatalStatsMalformedTLPErrors1DayH, cucsComputePsuPolicyDescr=cucsComputePsuPolicyDescr, cucsComputePCIeFatalStatsMalformedTLPErrors1Day=cucsComputePCIeFatalStatsMalformedTLPErrors1Day, cucsComputeRackUnitEntry=cucsComputeRackUnitEntry, cucsComputeInstanceIdQualRn=cucsComputeInstanceIdQualRn, cucsComputePCIeFatalProtocolStatsSuspect=cucsComputePCIeFatalProtocolStatsSuspect, cucsComputeBladeOperQualifier=cucsComputeBladeOperQualifier, cucsComputeBladeFsmTaskTable=cucsComputeBladeFsmTaskTable, cucsComputePCIeFatalCompletionStatsUnexpectedErrors1DayH=cucsComputePCIeFatalCompletionStatsUnexpectedErrors1DayH, cucsComputePciSlotScanDefName=cucsComputePciSlotScanDefName, cucsComputeKvmMgmtPolicyPolicyOwner=cucsComputeKvmMgmtPolicyPolicyOwner, cucsComputeServerUnitSerial=cucsComputeServerUnitSerial, cucsComputeServerUnitLc=cucsComputeServerUnitLc, cucsComputeServerUnitNumOfCpus=cucsComputeServerUnitNumOfCpus, cucsComputeMemoryUnitConstraintDefRevisionModifier=cucsComputeMemoryUnitConstraintDefRevisionModifier, cucsComputeBladeAvailability=cucsComputeBladeAvailability, cucsComputePCIeFatalReceiveStatsBufferOverflowErrors1Week=cucsComputePCIeFatalReceiveStatsBufferOverflowErrors1Week, cucsComputeRackUnitLc=cucsComputeRackUnitLc, cucsComputeServerUnitFsmStageLastUpdateTime=cucsComputeServerUnitFsmStageLastUpdateTime, cucsComputeMbTempStatsHistFmTempSenRearAvg=cucsComputeMbTempStatsHistFmTempSenRearAvg, cucsComputeCartridgeSerial=cucsComputeCartridgeSerial, cucsComputePCIeFatalStatsAcsViolationErrors15Min=cucsComputePCIeFatalStatsAcsViolationErrors15Min, cucsComputePciCapNumOfPhysSlots=cucsComputePciCapNumOfPhysSlots, cucsComputeBoardOperState=cucsComputeBoardOperState, cucsComputeChassisConnPolicyDescr=cucsComputeChassisConnPolicyDescr, cucsComputeRackUnitFsmPrev=cucsComputeRackUnitFsmPrev, cucsComputePciCapTable=cucsComputePciCapTable, cucsComputePCIeFatalProtocolStatsDllpErrors1Day=cucsComputePCIeFatalProtocolStatsDllpErrors1Day, cucsComputeRackUnitMbTempStatsEntry=cucsComputeRackUnitMbTempStatsEntry, cucsComputeServerUnitFsmRmtInvRslt=cucsComputeServerUnitFsmRmtInvRslt, cucsComputePCIeFatalProtocolStatsDllpErrors15Min=cucsComputePCIeFatalProtocolStatsDllpErrors15Min, cucsComputeAutoconfigPolicyEntry=cucsComputeAutoconfigPolicyEntry, cucsComputeRackUnitDescr=cucsComputeRackUnitDescr, cucsComputeBladeEpId=cucsComputeBladeEpId, cucsComputeBladeEpRn=cucsComputeBladeEpRn, cucsComputePCIeFatalProtocolStatsFlowControlErrors2WeeksH=cucsComputePCIeFatalProtocolStatsFlowControlErrors2WeeksH, cucsComputeBladeName=cucsComputeBladeName, cucsComputeRackUnitMbTempStatsRearTemp=cucsComputeRackUnitMbTempStatsRearTemp, cucsComputeRackQualInstanceId=cucsComputeRackQualInstanceId, cucsComputeIOHubEnvStatsHistMostRecent=cucsComputeIOHubEnvStatsHistMostRecent, cucsComputeRackUnitFsmRn=cucsComputeRackUnitFsmRn, cucsComputeMbTempStatsHistFmTempSenRearR=cucsComputeMbTempStatsHistFmTempSenRearR, cucsComputeMbPowerStatsConsumedPowerMax=cucsComputeMbPowerStatsConsumedPowerMax, cucsComputeBladeFsmStageName=cucsComputeBladeFsmStageName, cucsComputeServerMgmtPolicyEntry=cucsComputeServerMgmtPolicyEntry, cucsComputeBladeInheritPolicyTable=cucsComputeBladeInheritPolicyTable, cucsComputeMbPowerStatsHistMostRecent=cucsComputeMbPowerStatsHistMostRecent, cucsComputeBoardEntry=cucsComputeBoardEntry, cucsComputeServerUnitOperPower=cucsComputeServerUnitOperPower, cucsComputePCIeFatalProtocolStatsDllpErrors1WeekH=cucsComputePCIeFatalProtocolStatsDllpErrors1WeekH, cucsComputeIOHubLocationDn=cucsComputeIOHubLocationDn, cucsComputeServerUnitFsmCompletionTime=cucsComputeServerUnitFsmCompletionTime, cucsComputeBoardFaultQualifier=cucsComputeBoardFaultQualifier, cucsComputeExtBoardBoardAggregationRole=cucsComputeExtBoardBoardAggregationRole, cucsComputePhysicalQualRn=cucsComputePhysicalQualRn, cucsComputeServerUnitFsmDn=cucsComputeServerUnitFsmDn, cucsComputeServerUnitFltAggr=cucsComputeServerUnitFltAggr, cucsComputeBladeInheritPolicyPolicyLevel=cucsComputeBladeInheritPolicyPolicyLevel, cucsComputeCartridgeDiscovery=cucsComputeCartridgeDiscovery, cucsComputeIOHubEnvStatsSuspect=cucsComputeIOHubEnvStatsSuspect, cucsComputeQualName=cucsComputeQualName, cucsComputeDefaultsTable=cucsComputeDefaultsTable, cucsComputePlatformEntry=cucsComputePlatformEntry, cucsComputeIOHubEnvStatsHistEntry=cucsComputeIOHubEnvStatsHistEntry, cucsComputePCIeFatalReceiveStatsIntervals=cucsComputePCIeFatalReceiveStatsIntervals, cucsComputeServerDiscPolicyFsmRn=cucsComputeServerDiscPolicyFsmRn, cucsComputeBoardConnectorDn=cucsComputeBoardConnectorDn, cucsComputePoolTable=cucsComputePoolTable, cucsComputeBladeDiscPolicyTable=cucsComputeBladeDiscPolicyTable, cucsComputeSlotQualMinId=cucsComputeSlotQualMinId, cucsComputeRackUnitMbTempStatsAmbientTempAvg=cucsComputeRackUnitMbTempStatsAmbientTempAvg, cucsComputeScrubPolicyName=cucsComputeScrubPolicyName, cucsComputeRackUnitMbTempStatsIntervals=cucsComputeRackUnitMbTempStatsIntervals, cucsComputeBoardPresence=cucsComputeBoardPresence, cucsComputePoolPolicyRefDn=cucsComputePoolPolicyRefDn, cucsComputeServerDiscPolicyFsmDescrData=cucsComputeServerDiscPolicyFsmDescrData, cucsComputeServerUnitFsmTable=cucsComputeServerUnitFsmTable, cucsComputeRackUnitMbTempStatsHistRearTempMin=cucsComputeRackUnitMbTempStatsHistRearTempMin, cucsComputePCIeFatalProtocolStatsRn=cucsComputePCIeFatalProtocolStatsRn, cucsComputePhysicalAssocCtxFruCapDn=cucsComputePhysicalAssocCtxFruCapDn, cucsComputeFwSyncAckAckedBy=cucsComputeFwSyncAckAckedBy, cucsComputeExtBoardPowerUsage=cucsComputeExtBoardPowerUsage, cucsComputePoolableInstanceId=cucsComputePoolableInstanceId, cucsComputePCIeFatalProtocolStatsTimeCollected=cucsComputePCIeFatalProtocolStatsTimeCollected, cucsComputeServerMgmtPolicyTable=cucsComputeServerMgmtPolicyTable, cucsComputePCIeFatalReceiveStatsDn=cucsComputePCIeFatalReceiveStatsDn, cucsComputeMemoryConfigPolicyInstanceId=cucsComputeMemoryConfigPolicyInstanceId, cucsComputeRackUnitIntId=cucsComputeRackUnitIntId, cucsComputeBladeDiscPolicyName=cucsComputeBladeDiscPolicyName, cucsComputeIOHubModel=cucsComputeIOHubModel, cucsComputeChassisConnPolicyEntry=cucsComputeChassisConnPolicyEntry, cucsComputeExtBoardSlotId=cucsComputeExtBoardSlotId, cucsComputePCIeFatalProtocolStatsFlowControlErrors1Day=cucsComputePCIeFatalProtocolStatsFlowControlErrors1Day, cucsComputeRackUnitOperability=cucsComputeRackUnitOperability, cucsComputeExtBoardInstanceId=cucsComputeExtBoardInstanceId, cucsComputePlatformPropAcl=cucsComputePlatformPropAcl, cucsComputeRackUnitCheckPoint=cucsComputeRackUnitCheckPoint, cucsComputeRackUnitMbTempStatsIoh1Temp=cucsComputeRackUnitMbTempStatsIoh1Temp, cucsComputeRackUnitFsmTaskEntry=cucsComputeRackUnitFsmTaskEntry, cucsComputeRackUnitPolicyOwner=cucsComputeRackUnitPolicyOwner, cucsComputeIOHubEnvStatsDn=cucsComputeIOHubEnvStatsDn, cucsComputeRackQualRn=cucsComputeRackQualRn, cucsComputeRtcBatteryOperState=cucsComputeRtcBatteryOperState, cucsComputePCIeFatalCompletionStatsUnexpectedErrors1HourH=cucsComputePCIeFatalCompletionStatsUnexpectedErrors1HourH, cucsComputeServerDiscPolicyFsmTaskTable=cucsComputeServerDiscPolicyFsmTaskTable, cucsComputeRackUnitMfgTime=cucsComputeRackUnitMfgTime, cucsComputeServerUnitModel=cucsComputeServerUnitModel, cucsComputeRackUnitFsmRmtErrDescr=cucsComputeRackUnitFsmRmtErrDescr, cucsComputePhysicalFsmStageRn=cucsComputePhysicalFsmStageRn, cucsComputeSlotQualRn=cucsComputeSlotQualRn, cucsComputeMbPowerStatsInputCurrent=cucsComputeMbPowerStatsInputCurrent, cucsComputePoolableId=cucsComputePoolableId, cucsComputeRackUnitFsmStamp=cucsComputeRackUnitFsmStamp, cucsComputeServerUnitOperQualifier=cucsComputeServerUnitOperQualifier, cucsComputePCIeFatalStatsMalformedTLPErrors2Weeks=cucsComputePCIeFatalStatsMalformedTLPErrors2Weeks, cucsComputePCIeFatalReceiveStatsErrNonFatalErrors1DayH=cucsComputePCIeFatalReceiveStatsErrNonFatalErrors1DayH, cucsComputeExtBoardManagingInst=cucsComputeExtBoardManagingInst, cucsComputeRackUnitMbTempStatsHistFrontTempMax=cucsComputeRackUnitMbTempStatsHistFrontTempMax, cucsComputeMbTempStatsHistId=cucsComputeMbTempStatsHistId, cucsComputeRackUnitManagingInst=cucsComputeRackUnitManagingInst, cucsComputeBladeRevision=cucsComputeBladeRevision, cucsComputeMbPowerStatsInstanceId=cucsComputeMbPowerStatsInstanceId, cucsComputePlatformInstanceId=cucsComputePlatformInstanceId, cucsComputeServerUnitNumOfCores=cucsComputeServerUnitNumOfCores, cucsComputePoolableRn=cucsComputePoolableRn, cucsComputeAutoconfigPolicyDstDn=cucsComputeAutoconfigPolicyDstDn, cucsComputeServerUnitName=cucsComputeServerUnitName, cucsComputeHealthLedSensorAlarmSensorId=cucsComputeHealthLedSensorAlarmSensorId, cucsComputeBladeInheritPolicyEntry=cucsComputeBladeInheritPolicyEntry, cucsComputeRackUnitMbTempStatsIoh1TempMin=cucsComputeRackUnitMbTempStatsIoh1TempMin, cucsComputeChassisDiscPolicyInstanceId=cucsComputeChassisDiscPolicyInstanceId, cucsComputePhysicalQualInstanceId=cucsComputePhysicalQualInstanceId, cucsComputePoolAssignmentOrder=cucsComputePoolAssignmentOrder, cucsComputeBladeFsmCompletionTime=cucsComputeBladeFsmCompletionTime, cucsComputePCIeFatalReceiveStatsBufferOverflowErrors1WeekH=cucsComputePCIeFatalReceiveStatsBufferOverflowErrors1WeekH, cucsComputeServerUnitFsmTaskRn=cucsComputeServerUnitFsmTaskRn, cucsComputePCIeFatalReceiveStatsErrFatalErrors15Min=cucsComputePCIeFatalReceiveStatsErrFatalErrors15Min, cucsComputeCartridgePresence=cucsComputeCartridgePresence, cucsComputeMemoryUnitConstraintDefPolicyLevel=cucsComputeMemoryUnitConstraintDefPolicyLevel, cucsComputePCIeFatalStatsPoisonedTLPErrors1WeekH=cucsComputePCIeFatalStatsPoisonedTLPErrors1WeekH, cucsComputePsuControlRn=cucsComputePsuControlRn, cucsComputeServerMgmtPolicyIntId=cucsComputeServerMgmtPolicyIntId, cucsComputeRackUnitMbTempStatsDn=cucsComputeRackUnitMbTempStatsDn, cucsComputeServerDiscPolicyTable=cucsComputeServerDiscPolicyTable, cucsComputeIOHubEnvStatsInstanceId=cucsComputeIOHubEnvStatsInstanceId, cucsComputeBladeTotalMemory=cucsComputeBladeTotalMemory, cucsComputePhysicalAssocCtxTable=cucsComputePhysicalAssocCtxTable, cucsComputeServerUnitFsmTaskFlags=cucsComputeServerUnitFsmTaskFlags, cucsComputeServerUnitFsmDescrData=cucsComputeServerUnitFsmDescrData, cucsComputeConstraintDefDescr=cucsComputeConstraintDefDescr, cucsComputeSlotQualMaxId=cucsComputeSlotQualMaxId, cucsComputePCIeFatalStatsMalformedTLPErrors15MinH=cucsComputePCIeFatalStatsMalformedTLPErrors15MinH, cucsComputeServerDiscPolicyFsmRmtInvErrCode=cucsComputeServerDiscPolicyFsmRmtInvErrCode, cucsComputePlatformModel=cucsComputePlatformModel, cucsComputeServerUnitOriginalUuid=cucsComputeServerUnitOriginalUuid, cucsComputeMbTempStatsHistEntry=cucsComputeMbTempStatsHistEntry, cucsComputePCIeFatalStatsPoisonedTLPErrors1DayH=cucsComputePCIeFatalStatsPoisonedTLPErrors1DayH, cucsComputeIOHubEnvStatsTemperature=cucsComputeIOHubEnvStatsTemperature, cucsComputeQualTable=cucsComputeQualTable, cucsComputeBladeAdminPower=cucsComputeBladeAdminPower, cucsComputeServerDiscPolicyEntry=cucsComputeServerDiscPolicyEntry, cucsComputePsuPolicyEntry=cucsComputePsuPolicyEntry, cucsComputePCIeFatalStatsPoisonedTLPErrors15Min=cucsComputePCIeFatalStatsPoisonedTLPErrors15Min, cucsComputeHealthLedSensorAlarmAlarmDesc=cucsComputeHealthLedSensorAlarmAlarmDesc, cucsComputeMbPowerStatsHistEntry=cucsComputeMbPowerStatsHistEntry, cucsComputeRackUnitFsmCompletionTime=cucsComputeRackUnitFsmCompletionTime, cucsComputePhysicalFsmTable=cucsComputePhysicalFsmTable, cucsComputeRackUnitUuid=cucsComputeRackUnitUuid, cucsComputeKvmMgmtPolicyVmediaEncryption=cucsComputeKvmMgmtPolicyVmediaEncryption, cucsComputeBladeInheritPolicyRn=cucsComputeBladeInheritPolicyRn, cucsComputeRackUnitFanSpeedConfigStatus=cucsComputeRackUnitFanSpeedConfigStatus, cucsComputePooledSlotRn=cucsComputePooledSlotRn, cucsComputeRackUnitMbTempStatsHistDn=cucsComputeRackUnitMbTempStatsHistDn, cucsComputeRackUnitOriginalUuid=cucsComputeRackUnitOriginalUuid, cucsComputePsuControlDn=cucsComputePsuControlDn, cucsComputeBladeFsmStamp=cucsComputeBladeFsmStamp, cucsComputeRackUnitMbTempStatsFrontTempMax=cucsComputeRackUnitMbTempStatsFrontTempMax, cucsComputePoolPolicyOwner=cucsComputePoolPolicyOwner, cucsComputeBladeFsmStageDescrData=cucsComputeBladeFsmStageDescrData, cucsComputeRackUnitMbTempStatsIoh1TempAvg=cucsComputeRackUnitMbTempStatsIoh1TempAvg, cucsComputePCIeFatalCompletionStatsUnexpectedErrors15Min=cucsComputePCIeFatalCompletionStatsUnexpectedErrors15Min, cucsComputePCIeFatalProtocolStatsFlowControlErrors15Min=cucsComputePCIeFatalProtocolStatsFlowControlErrors15Min, cucsComputePhysicalFsmStageStageStatus=cucsComputePhysicalFsmStageStageStatus, cucsComputePoolableTable=cucsComputePoolableTable, cucsComputeBladeChassisId=cucsComputeBladeChassisId, cucsComputeCartridgeLcTs=cucsComputeCartridgeLcTs, cucsComputeRackUnitId=cucsComputeRackUnitId, cucsComputeServerDiscPolicyDescr=cucsComputeServerDiscPolicyDescr, cucsComputeRackUnitNumOfCores=cucsComputeRackUnitNumOfCores, cucsComputeRtcBatteryRevision=cucsComputeRtcBatteryRevision, cucsComputeMbPowerStatsTimeCollected=cucsComputeMbPowerStatsTimeCollected, cucsComputeScrubPolicyDescr=cucsComputeScrubPolicyDescr, cucsComputePooledEnclosureComputeSlotTable=cucsComputePooledEnclosureComputeSlotTable, cucsComputePCIeFatalReceiveStatsBufferOverflowErrors1HourH=cucsComputePCIeFatalReceiveStatsBufferOverflowErrors1HourH, cucsComputeConstraintDefDn=cucsComputeConstraintDefDn, cucsComputePCIeFatalStatsSurpriseLinkDownErrors2WeeksH=cucsComputePCIeFatalStatsSurpriseLinkDownErrors2WeeksH, cucsComputeRackUnitFsmDescrData=cucsComputeRackUnitFsmDescrData, cucsComputeServerUnitFsmFsmStatus=cucsComputeServerUnitFsmFsmStatus, cucsComputePCIeFatalCompletionStatsSuspect=cucsComputePCIeFatalCompletionStatsSuspect, cucsComputeBladeFsmStageLastUpdateTime=cucsComputeBladeFsmStageLastUpdateTime, cucsComputeServerDiscPolicyFsmRmtErrCode=cucsComputeServerDiscPolicyFsmRmtErrCode, cucsComputeServerMgmtPolicyQualifier=cucsComputeServerMgmtPolicyQualifier, cucsComputeScrubPolicyPolicyLevel=cucsComputeScrubPolicyPolicyLevel, cucsComputeRtcBatteryVendor=cucsComputeRtcBatteryVendor, cucsComputeRackUnitMbTempStatsHistRn=cucsComputeRackUnitMbTempStatsHistRn, cucsComputeServerUnitUuid=cucsComputeServerUnitUuid, cucsComputeBoardControllerPresence=cucsComputeBoardControllerPresence, cucsComputeMbTempStatsHistFmTempSenRearL=cucsComputeMbTempStatsHistFmTempSenRearL, cucsComputeServerTypeCapInstanceId=cucsComputeServerTypeCapInstanceId, cucsComputeRackUnitMbTempStatsRearTempAvg=cucsComputeRackUnitMbTempStatsRearTempAvg, cucsComputeConstraintDefInstanceId=cucsComputeConstraintDefInstanceId, cucsComputeMemoryConfigPolicyDescr=cucsComputeMemoryConfigPolicyDescr, cucsComputeRtcBatteryVoltage=cucsComputeRtcBatteryVoltage) mibBuilder.exportSymbols("CISCO-UNIFIED-COMPUTING-COMPUTE-MIB", cucsComputeBladeAssignedToDn=cucsComputeBladeAssignedToDn, cucsComputeMbTempStatsTimeCollected=cucsComputeMbTempStatsTimeCollected, cucsComputeIOHubOperQualifierReason=cucsComputeIOHubOperQualifierReason, cucsComputeRtcBatteryPerf=cucsComputeRtcBatteryPerf, cucsComputeRackUnitMbTempStatsInstanceId=cucsComputeRackUnitMbTempStatsInstanceId, cucsComputePoolPolicyRefTable=cucsComputePoolPolicyRefTable, cucsComputeServerUnitFsmStageRetry=cucsComputeServerUnitFsmStageRetry, cucsComputeMbTempStatsHistTable=cucsComputeMbTempStatsHistTable, cucsComputeCartridgeOperState=cucsComputeCartridgeOperState, cucsComputeQualPolicyOwner=cucsComputeQualPolicyOwner, cucsComputeConstraintDefIntId=cucsComputeConstraintDefIntId, cucsComputePCIeFatalCompletionStatsTimeoutErrors=cucsComputePCIeFatalCompletionStatsTimeoutErrors, cucsComputeRackQualTable=cucsComputeRackQualTable, cucsComputeRtcBatteryDn=cucsComputeRtcBatteryDn, cucsComputeMbTempStatsThresholded=cucsComputeMbTempStatsThresholded, cucsComputePlatformDn=cucsComputePlatformDn, cucsComputeRackUnitFsmStageName=cucsComputeRackUnitFsmStageName, cucsComputeRackUnitMbTempStatsHistSuspect=cucsComputeRackUnitMbTempStatsHistSuspect, cucsComputePoolIntId=cucsComputePoolIntId, cucsComputeRackUnitNumOf40GAdaptorsWithOldFw=cucsComputeRackUnitNumOf40GAdaptorsWithOldFw, cucsComputeMbPowerStatsConsumedPowerAvg=cucsComputeMbPowerStatsConsumedPowerAvg, cucsComputeMbPowerStatsEntry=cucsComputeMbPowerStatsEntry, cucsComputePciCapStartsWith=cucsComputePciCapStartsWith, cucsComputeAutoconfigPolicyName=cucsComputeAutoconfigPolicyName, cucsComputePCIeFatalCompletionStatsAbortErrors1Hour=cucsComputePCIeFatalCompletionStatsAbortErrors1Hour, cucsComputeRackUnitNumOfAdaptors=cucsComputeRackUnitNumOfAdaptors, cucsComputePCIeFatalCompletionStatsIntervals=cucsComputePCIeFatalCompletionStatsIntervals, cucsComputeBladeLocalId=cucsComputeBladeLocalId, cucsComputePhysicalFsmTaskFlags=cucsComputePhysicalFsmTaskFlags, cucsComputeMemoryConfigurationInstanceId=cucsComputeMemoryConfigurationInstanceId, cucsComputeRackUnitFsmStageStageStatus=cucsComputeRackUnitFsmStageStageStatus, cucsComputePooledEnclosureComputeSlotAssigned=cucsComputePooledEnclosureComputeSlotAssigned, cucsComputePhysicalFsmTaskCompletion=cucsComputePhysicalFsmTaskCompletion, cucsComputeRackUnitMbTempStatsHistInstanceId=cucsComputeRackUnitMbTempStatsHistInstanceId, cucsComputeRackUnitFsmProgress=cucsComputeRackUnitFsmProgress, cucsComputePCIeFatalCompletionStatsUnexpectedErrors1Day=cucsComputePCIeFatalCompletionStatsUnexpectedErrors1Day, cucsComputeRackUnitMbTempStatsRearTempMin=cucsComputeRackUnitMbTempStatsRearTempMin, cucsComputeServerUnitFsmPrev=cucsComputeServerUnitFsmPrev, cucsComputeServerTypeCapEntry=cucsComputeServerTypeCapEntry, cucsComputeBoardConnectorInstanceId=cucsComputeBoardConnectorInstanceId, cucsComputeServerTypeCapDn=cucsComputeServerTypeCapDn, cucsComputeMbPowerStatsHistThresholded=cucsComputeMbPowerStatsHistThresholded, cucsComputeMemoryConfigurationBlackListing=cucsComputeMemoryConfigurationBlackListing, cucsComputeMbTempStatsDn=cucsComputeMbTempStatsDn, cucsComputeMemoryUnitConstraintDefName=cucsComputeMemoryUnitConstraintDefName, cucsComputeExtBoardOperPower=cucsComputeExtBoardOperPower, cucsComputeMemoryUnitConstraintDefPolicyOwner=cucsComputeMemoryUnitConstraintDefPolicyOwner, cucsComputeInstanceIdQualTable=cucsComputeInstanceIdQualTable, cucsComputePCIeFatalReceiveStatsUpdate=cucsComputePCIeFatalReceiveStatsUpdate, cucsComputeRackUnitMbTempStatsHistTimeCollected=cucsComputeRackUnitMbTempStatsHistTimeCollected, cucsComputeIOHubEntry=cucsComputeIOHubEntry, cucsComputeBladeConnStatus=cucsComputeBladeConnStatus, cucsComputeMbTempStatsFmTempSenIoMax=cucsComputeMbTempStatsFmTempSenIoMax, cucsComputeServerUnitFsmRmtErrCode=cucsComputeServerUnitFsmRmtErrCode, cucsComputeServerUnitPolicyLevel=cucsComputeServerUnitPolicyLevel, cucsComputeServerDiscPolicyFsmInstanceId=cucsComputeServerDiscPolicyFsmInstanceId, cucsComputeMbTempStatsFmTempSenRearRAvg=cucsComputeMbTempStatsFmTempSenRearRAvg, cucsComputePoolPolicyLevel=cucsComputePoolPolicyLevel, cucsComputeMbPowerStatsHistInputCurrentAvg=cucsComputeMbPowerStatsHistInputCurrentAvg, cucsComputeFwSyncAckInstanceId=cucsComputeFwSyncAckInstanceId, cucsComputeBladeDiscPolicyPolicyLevel=cucsComputeBladeDiscPolicyPolicyLevel, cucsComputeServerUnitFsmTaskInstanceId=cucsComputeServerUnitFsmTaskInstanceId, cucsComputeQualPolicyLevel=cucsComputeQualPolicyLevel, cucsComputeRackUnitMbTempStatsTable=cucsComputeRackUnitMbTempStatsTable, cucsComputeBladeDiscPolicyAction=cucsComputeBladeDiscPolicyAction, cucsComputeMbTempStatsFmTempSenRearLMin=cucsComputeMbTempStatsFmTempSenRearLMin, cucsComputeBladeEpDn=cucsComputeBladeEpDn, cucsComputeHealthLedSensorAlarmSensorName=cucsComputeHealthLedSensorAlarmSensorName, cucsComputeServerDiscPolicyFsmTaskFlags=cucsComputeServerDiscPolicyFsmTaskFlags, cucsComputePCIeFatalReceiveStatsErrFatalErrors1Hour=cucsComputePCIeFatalReceiveStatsErrFatalErrors1Hour, cucsComputePsuControlDescr=cucsComputePsuControlDescr, cucsComputePCIeFatalReceiveStatsErrFatalErrors2Weeks=cucsComputePCIeFatalReceiveStatsErrFatalErrors2Weeks, cucsComputeRackUnitOperState=cucsComputeRackUnitOperState, cucsComputeChassisDiscPolicyAction=cucsComputeChassisDiscPolicyAction, cucsComputeMbTempStatsFmTempSenRearLMax=cucsComputeMbTempStatsFmTempSenRearLMax, cucsComputeRackUnitFsmRmtInvRslt=cucsComputeRackUnitFsmRmtInvRslt, cucsComputeChassisConnPolicyAdminState=cucsComputeChassisConnPolicyAdminState, cucsComputePciCapMaxBusIdPerSlot=cucsComputePciCapMaxBusIdPerSlot, cucsComputeBladeFsmTaskInstanceId=cucsComputeBladeFsmTaskInstanceId, cucsComputeBladeFsmFsmStatus=cucsComputeBladeFsmFsmStatus, cucsComputePCIeFatalReceiveStatsErrFatalErrors1WeekH=cucsComputePCIeFatalReceiveStatsErrFatalErrors1WeekH, cucsComputeIOHubEnvStatsHistTable=cucsComputeIOHubEnvStatsHistTable, cucsComputeMbTempStatsFmTempSenIoAvg=cucsComputeMbTempStatsFmTempSenIoAvg, cucsComputeRackUnitMbTempStatsUpdate=cucsComputeRackUnitMbTempStatsUpdate, cucsComputeBoardVendor=cucsComputeBoardVendor, cucsComputePooledEnclosureComputeSlotEntry=cucsComputePooledEnclosureComputeSlotEntry, cucsComputeMbPowerStatsIntervals=cucsComputeMbPowerStatsIntervals, cucsComputeServerDiscPolicyFsmStageEntry=cucsComputeServerDiscPolicyFsmStageEntry, cucsComputeBoardControllerPerf=cucsComputeBoardControllerPerf, cucsComputeRtcBatteryRn=cucsComputeRtcBatteryRn, cucsComputeRackUnitName=cucsComputeRackUnitName, cucsComputeFwSyncAckPolicyLevel=cucsComputeFwSyncAckPolicyLevel, cucsComputeRackUnitMbTempStatsTimeCollected=cucsComputeRackUnitMbTempStatsTimeCollected, cucsComputeServerDiscPolicyFsmTaskCompletion=cucsComputeServerDiscPolicyFsmTaskCompletion, cucsComputePCIeFatalCompletionStatsAbortErrors2Weeks=cucsComputePCIeFatalCompletionStatsAbortErrors2Weeks, cucsComputePsuControlEntry=cucsComputePsuControlEntry, cucsComputeServerUnitDiscovery=cucsComputeServerUnitDiscovery, cucsComputeRackUnitFsmTable=cucsComputeRackUnitFsmTable, cucsComputeMbPowerStatsHistInputVoltage=cucsComputeMbPowerStatsHistInputVoltage, cucsComputeRackUnitMbTempStatsHistAmbientTempMin=cucsComputeRackUnitMbTempStatsHistAmbientTempMin, cucsComputePoolAssigned=cucsComputePoolAssigned, cucsComputeServerDiscPolicyScrubPolicyName=cucsComputeServerDiscPolicyScrubPolicyName, cucsComputePCIeFatalStatsMalformedTLPErrors1HourH=cucsComputePCIeFatalStatsMalformedTLPErrors1HourH, cucsComputeHealthLedSensorAlarmAlarmSeverity=cucsComputeHealthLedSensorAlarmAlarmSeverity, cucsComputeBladeUpgradeScenario=cucsComputeBladeUpgradeScenario, cucsComputeServerDiscPolicyRn=cucsComputeServerDiscPolicyRn, cucsComputeServerDiscPolicyFsmTaskDn=cucsComputeServerDiscPolicyFsmTaskDn, cucsComputeBoardTable=cucsComputeBoardTable, cucsComputeServerUnitIntId=cucsComputeServerUnitIntId, cucsComputeExtBoardVendor=cucsComputeExtBoardVendor, cucsComputeServerUnitNumOfEthHostIfs=cucsComputeServerUnitNumOfEthHostIfs, cucsComputeRackUnitMbTempStatsHistRearTempAvg=cucsComputeRackUnitMbTempStatsHistRearTempAvg, cucsComputeBladePresence=cucsComputeBladePresence, cucsComputeIOHubEnvStatsTemperatureMin=cucsComputeIOHubEnvStatsTemperatureMin, cucsComputeRackUnitMbTempStatsIoh2TempMin=cucsComputeRackUnitMbTempStatsIoh2TempMin, cucsComputeFwSyncAckAdminState=cucsComputeFwSyncAckAdminState, cucsComputeBladeFsmStageOrder=cucsComputeBladeFsmStageOrder, cucsComputeRackUnitNumOfCpus=cucsComputeRackUnitNumOfCpus, cucsComputeRackUnitFsmEntry=cucsComputeRackUnitFsmEntry, cucsComputePCIeFatalCompletionStatsUnexpectedErrors2WeeksH=cucsComputePCIeFatalCompletionStatsUnexpectedErrors2WeeksH, cucsComputePCIeFatalReceiveStatsErrNonFatalErrors1WeekH=cucsComputePCIeFatalReceiveStatsErrNonFatalErrors1WeekH, cucsComputeRackUnitUsrLbl=cucsComputeRackUnitUsrLbl, cucsComputeKvmMgmtPolicyEntry=cucsComputeKvmMgmtPolicyEntry, cucsComputeFwSyncAckOperScheduler=cucsComputeFwSyncAckOperScheduler, cucsComputeAutoconfigPolicySrcTemplName=cucsComputeAutoconfigPolicySrcTemplName, cucsComputeBladeDiscPolicyScrubPolicyName=cucsComputeBladeDiscPolicyScrubPolicyName, cucsComputePhysicalFsmInstanceId=cucsComputePhysicalFsmInstanceId, cucsComputeAutoconfigPolicyPolicyLevel=cucsComputeAutoconfigPolicyPolicyLevel, cucsComputePooledRackUnitId=cucsComputePooledRackUnitId, cucsComputePCIeFatalStatsPoisonedTLPErrors=cucsComputePCIeFatalStatsPoisonedTLPErrors, cucsComputeExtBoardDn=cucsComputeExtBoardDn, cucsComputeServerUnitNumOfCoresEnabled=cucsComputeServerUnitNumOfCoresEnabled, cucsComputeServerDiscPolicyFsmRmtRslt=cucsComputeServerDiscPolicyFsmRmtRslt, cucsComputePnuOSImageTable=cucsComputePnuOSImageTable, cucsComputeBladeFsmDn=cucsComputeBladeFsmDn, cucsComputeMbTempStatsHistFmTempSenIoAvg=cucsComputeMbTempStatsHistFmTempSenIoAvg, cucsComputePCIeFatalCompletionStatsTimeoutErrors2Weeks=cucsComputePCIeFatalCompletionStatsTimeoutErrors2Weeks, cucsComputeRackUnitFsmRmtInvErrCode=cucsComputeRackUnitFsmRmtInvErrCode, cucsComputeChassisConnPolicyInstanceId=cucsComputeChassisConnPolicyInstanceId, cucsComputeMbTempStatsFmTempSenRearLAvg=cucsComputeMbTempStatsFmTempSenRearLAvg, cucsComputeConstraintDefPolicyOwner=cucsComputeConstraintDefPolicyOwner, cucsComputeChassisQualEntry=cucsComputeChassisQualEntry, cucsComputeMbPowerStatsHistDn=cucsComputeMbPowerStatsHistDn, cucsComputeBladeEpChassisId=cucsComputeBladeEpChassisId, cucsComputePoolableDn=cucsComputePoolableDn, cucsComputeChassisDiscPolicyDn=cucsComputeChassisDiscPolicyDn, cucsComputeRackUnitVersionHolder=cucsComputeRackUnitVersionHolder, cucsComputeIOHubEnvStatsHistRn=cucsComputeIOHubEnvStatsHistRn, cucsComputeBladeDiscPolicyPolicyOwner=cucsComputeBladeDiscPolicyPolicyOwner, cucsComputeServerUnitFsmStageName=cucsComputeServerUnitFsmStageName, cucsComputeInstanceIdQualMaxId=cucsComputeInstanceIdQualMaxId, cucsComputeBladeMfgTime=cucsComputeBladeMfgTime, cucsComputePooledSlotAssignedToDn=cucsComputePooledSlotAssignedToDn, cucsComputeBoardConnectorTable=cucsComputeBoardConnectorTable, cucsComputeConstraintDefEntry=cucsComputeConstraintDefEntry, cucsComputeServerUnitTable=cucsComputeServerUnitTable, cucsComputePhysicalFsmTaskItem=cucsComputePhysicalFsmTaskItem, cucsComputePoolName=cucsComputePoolName, cucsComputeServerUnitNumOf40GAdaptorsWithOldFw=cucsComputeServerUnitNumOf40GAdaptorsWithOldFw, cucsComputeMbPowerStatsDn=cucsComputeMbPowerStatsDn, cucsComputePoolEntry=cucsComputePoolEntry, cucsComputeServerUnitEntry=cucsComputeServerUnitEntry, cucsComputeCartridgeVendor=cucsComputeCartridgeVendor, cucsComputeServerDiscPolicyFsmDescr=cucsComputeServerDiscPolicyFsmDescr, cucsComputeRackUnitFsmTaskCompletion=cucsComputeRackUnitFsmTaskCompletion, cucsComputeServerMgmtPolicyName=cucsComputeServerMgmtPolicyName, cucsComputeRackUnitMbTempStatsFrontTemp=cucsComputeRackUnitMbTempStatsFrontTemp, cucsComputeServerDiscPolicyFsmStageRn=cucsComputeServerDiscPolicyFsmStageRn, cucsComputeIOHubOperability=cucsComputeIOHubOperability, cucsComputePoolingPolicyTable=cucsComputePoolingPolicyTable, cucsComputePooledSlotOwner=cucsComputePooledSlotOwner, cucsComputeServerUnitFsmStageStageStatus=cucsComputeServerUnitFsmStageStageStatus, cucsComputePhysicalQualDn=cucsComputePhysicalQualDn, cucsComputePhysicalFsmTaskSeqId=cucsComputePhysicalFsmTaskSeqId, cucsComputeQualRn=cucsComputeQualRn, cucsComputeScrubPolicyTable=cucsComputeScrubPolicyTable, cucsComputeBoardOperability=cucsComputeBoardOperability, cucsComputeScrubPolicyFlexFlashScrub=cucsComputeScrubPolicyFlexFlashScrub, cucsComputeChassisConnPolicyIntId=cucsComputeChassisConnPolicyIntId, cucsComputeServerUnitFsmTaskTable=cucsComputeServerUnitFsmTaskTable, cucsComputeKvmMgmtPolicyPolicyLevel=cucsComputeKvmMgmtPolicyPolicyLevel, cucsComputeRackUnitFsmTaskFlags=cucsComputeRackUnitFsmTaskFlags, cucsComputeMbPowerStatsInputCurrentMin=cucsComputeMbPowerStatsInputCurrentMin, cucsComputeChassisConnPolicyPolicyOwner=cucsComputeChassisConnPolicyPolicyOwner, cucsComputeChassisQualMinId=cucsComputeChassisQualMinId, cucsComputePCIeFatalStatsAcsViolationErrors1WeekH=cucsComputePCIeFatalStatsAcsViolationErrors1WeekH, cucsComputeRtcBatteryOperQualifierReason=cucsComputeRtcBatteryOperQualifierReason, cucsComputePhysicalFsmRmtErrCode=cucsComputePhysicalFsmRmtErrCode, cucsComputeBladeFsmRn=cucsComputeBladeFsmRn, cucsComputeIOHubEnvStatsTable=cucsComputeIOHubEnvStatsTable, cucsComputeExtBoardConnStatus=cucsComputeExtBoardConnStatus, cucsComputePCIeFatalStatsSurpriseLinkDownErrors15MinH=cucsComputePCIeFatalStatsSurpriseLinkDownErrors15MinH, cucsComputePhysicalQualEntry=cucsComputePhysicalQualEntry, cucsComputeRackUnitDiscoveryStatus=cucsComputeRackUnitDiscoveryStatus, cucsComputeServerDiscPolicyDn=cucsComputeServerDiscPolicyDn, cucsComputePooledRackUnitInstanceId=cucsComputePooledRackUnitInstanceId, cucsComputeMbPowerStatsConsumedPower=cucsComputeMbPowerStatsConsumedPower, cucsComputeScrubPolicyEntry=cucsComputeScrubPolicyEntry, cucsComputeMbPowerStatsHistInputVoltageAvg=cucsComputeMbPowerStatsHistInputVoltageAvg, cucsComputePoolingPolicyIntId=cucsComputePoolingPolicyIntId, cucsComputePhysicalFsmCompletionTime=cucsComputePhysicalFsmCompletionTime, cucsComputeDefaultsInstanceId=cucsComputeDefaultsInstanceId, cucsComputePoolingPolicyName=cucsComputePoolingPolicyName, cucsComputeServerDiscPolicyAction=cucsComputeServerDiscPolicyAction, cucsComputeChassisDiscPolicyQualifier=cucsComputeChassisDiscPolicyQualifier, cucsComputeQualIntId=cucsComputeQualIntId, cucsComputeBladeConnPath=cucsComputeBladeConnPath, cucsComputeRackUnitConnStatus=cucsComputeRackUnitConnStatus, cucsComputeServerUnitFsmInstanceId=cucsComputeServerUnitFsmInstanceId, cucsComputeMbPowerStatsHistConsumedPowerAvg=cucsComputeMbPowerStatsHistConsumedPowerAvg, cucsComputeBladeInheritPolicyPolicyOwner=cucsComputeBladeInheritPolicyPolicyOwner, cucsComputeMbTempStatsHistFmTempSenRear=cucsComputeMbTempStatsHistFmTempSenRear, cucsComputeMemoryConfigPolicyName=cucsComputeMemoryConfigPolicyName, cucsComputePciSlotScanDefInstanceId=cucsComputePciSlotScanDefInstanceId, cucsComputePCIeFatalProtocolStatsDllpErrors15MinH=cucsComputePCIeFatalProtocolStatsDllpErrors15MinH, cucsComputePhysicalFsmDescr=cucsComputePhysicalFsmDescr, cucsComputeChassisQualInstanceId=cucsComputeChassisQualInstanceId, cucsComputeBladeInheritPolicyOperQualifier=cucsComputeBladeInheritPolicyOperQualifier, cucsComputeMemoryUnitConstraintDefType=cucsComputeMemoryUnitConstraintDefType, cucsComputeCartridgeVoltage=cucsComputeCartridgeVoltage, cucsComputePCIeFatalProtocolStatsDllpErrors1DayH=cucsComputePCIeFatalProtocolStatsDllpErrors1DayH, cucsComputeCartridgePerf=cucsComputeCartridgePerf, cucsComputeRackQualEntry=cucsComputeRackQualEntry, cucsComputePnuOSImageInstanceId=cucsComputePnuOSImageInstanceId, cucsComputeMbTempStatsHistFmTempSenIo=cucsComputeMbTempStatsHistFmTempSenIo, cucsComputePlatformProductName=cucsComputePlatformProductName, cucsComputePoolingPolicyPolicyOwner=cucsComputePoolingPolicyPolicyOwner, cucsComputeServerDiscPolicyFsmStageInstanceId=cucsComputeServerDiscPolicyFsmStageInstanceId, cucsComputeHealthLedSensorAlarmEntry=cucsComputeHealthLedSensorAlarmEntry, cucsComputeIOHubEnvStatsHistTemperatureMin=cucsComputeIOHubEnvStatsHistTemperatureMin, cucsComputeMbTempStatsIntervals=cucsComputeMbTempStatsIntervals, cucsComputeScrubPolicyRn=cucsComputeScrubPolicyRn, cucsComputeBoardPerf=cucsComputeBoardPerf, cucsComputePhysicalFsmRmtRslt=cucsComputePhysicalFsmRmtRslt, cucsComputePCIeFatalProtocolStatsFlowControlErrors15MinH=cucsComputePCIeFatalProtocolStatsFlowControlErrors15MinH, cucsComputePCIeFatalCompletionStatsTimeoutErrors2WeeksH=cucsComputePCIeFatalCompletionStatsTimeoutErrors2WeeksH, cucsComputeExtBoardChassisId=cucsComputeExtBoardChassisId, cucsComputeServerUnitInstanceId=cucsComputeServerUnitInstanceId, cucsComputeBoardConnectorSlaveSlotId=cucsComputeBoardConnectorSlaveSlotId, cucsComputeConstraintDefRn=cucsComputeConstraintDefRn, cucsComputeRackUnitFanSpeedPolicyFault=cucsComputeRackUnitFanSpeedPolicyFault, cucsComputeServerDiscPolicyFsmStageLastUpdateTime=cucsComputeServerDiscPolicyFsmStageLastUpdateTime, cucsComputeBladeFsmInstanceId=cucsComputeBladeFsmInstanceId, cucsComputeBoardDn=cucsComputeBoardDn, cucsComputePciSlotScanDefScanOrder=cucsComputePciSlotScanDefScanOrder, cucsComputeChassisDiscPolicyPolicyLevel=cucsComputeChassisDiscPolicyPolicyLevel, cucsComputeServerUnitFsmStageDn=cucsComputeServerUnitFsmStageDn, cucsComputePCIeFatalProtocolStatsFlowControlErrors1DayH=cucsComputePCIeFatalProtocolStatsFlowControlErrors1DayH, cucsComputeCartridgeLc=cucsComputeCartridgeLc, cucsComputeMemoryUnitConstraintDefDescr=cucsComputeMemoryUnitConstraintDefDescr, cucsComputeRackUnitOperQualifier=cucsComputeRackUnitOperQualifier, cucsComputePCIeFatalStatsAcsViolationErrors=cucsComputePCIeFatalStatsAcsViolationErrors, cucsComputeBladeSerial=cucsComputeBladeSerial, cucsComputeBoardThermal=cucsComputeBoardThermal) mibBuilder.exportSymbols("CISCO-UNIFIED-COMPUTING-COMPUTE-MIB", cucsComputeRackUnitConnPath=cucsComputeRackUnitConnPath, cucsComputeRackUnitFsmStageDescr=cucsComputeRackUnitFsmStageDescr, cucsComputeAutoconfigPolicyTable=cucsComputeAutoconfigPolicyTable, cucsComputePCIeFatalReceiveStatsErrNonFatalErrors1Week=cucsComputePCIeFatalReceiveStatsErrNonFatalErrors1Week, cucsComputePCIeFatalReceiveStatsSuspect=cucsComputePCIeFatalReceiveStatsSuspect, cucsComputePooledRackUnitOwner=cucsComputePooledRackUnitOwner, cucsComputePCIeFatalProtocolStatsFlowControlErrors1HourH=cucsComputePCIeFatalProtocolStatsFlowControlErrors1HourH, cucsComputeServerUnitFsmStamp=cucsComputeServerUnitFsmStamp, cucsComputePCIeFatalReceiveStatsUnsupportedRequestErrors1Week=cucsComputePCIeFatalReceiveStatsUnsupportedRequestErrors1Week, cucsComputeServerUnitAvailableMemory=cucsComputeServerUnitAvailableMemory, cucsComputeMemoryUnitConstraintDefRn=cucsComputeMemoryUnitConstraintDefRn, cucsComputePlatformRn=cucsComputePlatformRn, cucsComputeRackUnitInstanceId=cucsComputeRackUnitInstanceId, cucsComputeFwSyncAckPolicyOwner=cucsComputeFwSyncAckPolicyOwner, cucsComputePsuControlInstanceId=cucsComputePsuControlInstanceId, cucsComputeBladeFsmStageDescr=cucsComputeBladeFsmStageDescr, cucsComputePsuPolicyPolicyOwner=cucsComputePsuPolicyPolicyOwner, cucsComputeFwSyncAckPrevOperState=cucsComputeFwSyncAckPrevOperState, cucsComputeRackUnitMbTempStatsHistIoh2Temp=cucsComputeRackUnitMbTempStatsHistIoh2Temp, cucsComputeMbTempStatsInstanceId=cucsComputeMbTempStatsInstanceId, cucsComputeScrubPolicyDn=cucsComputeScrubPolicyDn, cucsComputeServerUnitFsmProgress=cucsComputeServerUnitFsmProgress, cucsComputePoolRn=cucsComputePoolRn, cucsComputeMbPowerStatsSuspect=cucsComputeMbPowerStatsSuspect, cucsComputeCartridgeSlotId=cucsComputeCartridgeSlotId, cucsComputeExtBoardDiscoveryStatus=cucsComputeExtBoardDiscoveryStatus, cucsComputePCIeFatalProtocolStatsThresholded=cucsComputePCIeFatalProtocolStatsThresholded, cucsComputeRackUnitFsmStageDescrData=cucsComputeRackUnitFsmStageDescrData, cucsComputeRackUnitDiscovery=cucsComputeRackUnitDiscovery, cucsComputeChassisDiscPolicyTable=cucsComputeChassisDiscPolicyTable, cucsComputeBladeFsmStageStageStatus=cucsComputeBladeFsmStageStageStatus, cucsComputeConstraintDefHwVendor=cucsComputeConstraintDefHwVendor, cucsComputeRackUnitMbTempStatsRn=cucsComputeRackUnitMbTempStatsRn, cucsComputeBladeTable=cucsComputeBladeTable, cucsComputeBladeFsmTaskDn=cucsComputeBladeFsmTaskDn, cucsComputeIOHubOperState=cucsComputeIOHubOperState, cucsComputeBoardControllerVoltage=cucsComputeBoardControllerVoltage, cucsComputeMbPowerStatsInputVoltage=cucsComputeMbPowerStatsInputVoltage, cucsComputePhysicalFsmStageDn=cucsComputePhysicalFsmStageDn, cucsComputeBladeFsmRmtInvErrCode=cucsComputeBladeFsmRmtInvErrCode, cucsComputeServerUnitConnStatus=cucsComputeServerUnitConnStatus, cucsComputePCIeFatalStatsMalformedTLPErrors1WeekH=cucsComputePCIeFatalStatsMalformedTLPErrors1WeekH, cucsComputeCartridgeEntry=cucsComputeCartridgeEntry, cucsComputeMemoryUnitConstraintDefDn=cucsComputeMemoryUnitConstraintDefDn, cucsComputeMemoryUnitConstraintDefIntId=cucsComputeMemoryUnitConstraintDefIntId, cucsComputeServerMgmtPolicyRn=cucsComputeServerMgmtPolicyRn, cucsComputeBladeDn=cucsComputeBladeDn, cucsComputeRackUnitMbTempStatsIoh2TempAvg=cucsComputeRackUnitMbTempStatsIoh2TempAvg, cucsComputeRackUnitVendor=cucsComputeRackUnitVendor, cucsComputeBladeFsmTaskCompletion=cucsComputeBladeFsmTaskCompletion, cucsComputeBladeFsmStatus=cucsComputeBladeFsmStatus, cucsComputeBladeFsmStageRn=cucsComputeBladeFsmStageRn, cucsComputeBladeFsmTry=cucsComputeBladeFsmTry, cucsComputeRackUnitFsmTaskItem=cucsComputeRackUnitFsmTaskItem, cucsComputeChassisDiscPolicyName=cucsComputeChassisDiscPolicyName, cucsComputeBladeFsmStageRetry=cucsComputeBladeFsmStageRetry, cucsComputeExtBoardOperState=cucsComputeExtBoardOperState, cucsComputeExtBoardRn=cucsComputeExtBoardRn, cucsComputeBoardControllerDn=cucsComputeBoardControllerDn, cucsComputeMemoryConfigurationTable=cucsComputeMemoryConfigurationTable, cucsComputeAutoconfigPolicyPolicyOwner=cucsComputeAutoconfigPolicyPolicyOwner, cucsComputePCIeFatalCompletionStatsTable=cucsComputePCIeFatalCompletionStatsTable, cucsComputeChassisDiscPolicyLinkAggregationPref=cucsComputeChassisDiscPolicyLinkAggregationPref, cucsComputeMbPowerStatsRn=cucsComputeMbPowerStatsRn, cucsComputeBoardModel=cucsComputeBoardModel, cucsComputePCIeFatalCompletionStatsTimeoutErrors15Min=cucsComputePCIeFatalCompletionStatsTimeoutErrors15Min, cucsComputeFwSyncAckRn=cucsComputeFwSyncAckRn, cucsComputeBoardConnectorRn=cucsComputeBoardConnectorRn, cucsComputeRackQualDn=cucsComputeRackQualDn, cucsComputeAutoconfigPolicyDn=cucsComputeAutoconfigPolicyDn, cucsComputeRackUnitMbTempStatsHistIoh2TempMax=cucsComputeRackUnitMbTempStatsHistIoh2TempMax, cucsComputeServerUnitFsmTaskSeqId=cucsComputeServerUnitFsmTaskSeqId, cucsComputePhysicalFsmStageOrder=cucsComputePhysicalFsmStageOrder, cucsComputePCIeFatalProtocolStatsDn=cucsComputePCIeFatalProtocolStatsDn, cucsComputeBladeFsmDescrData=cucsComputeBladeFsmDescrData, cucsComputeRackUnitAdminState=cucsComputeRackUnitAdminState, cucsComputeChassisConnPolicyTable=cucsComputeChassisConnPolicyTable, cucsComputeRackUnitMbTempStatsHistThresholded=cucsComputeRackUnitMbTempStatsHistThresholded, cucsComputePCIeFatalReceiveStatsErrFatalErrors1HourH=cucsComputePCIeFatalReceiveStatsErrFatalErrors1HourH, cucsComputePhysicalFsmStageDescr=cucsComputePhysicalFsmStageDescr, cucsComputePCIeFatalReceiveStatsErrNonFatalErrors15MinH=cucsComputePCIeFatalReceiveStatsErrNonFatalErrors15MinH, cucsComputePCIeFatalCompletionStatsAbortErrors1DayH=cucsComputePCIeFatalCompletionStatsAbortErrors1DayH, cucsComputeMbTempStatsFmTempSenRearMin=cucsComputeMbTempStatsFmTempSenRearMin, cucsComputePhysicalFsmStageName=cucsComputePhysicalFsmStageName, cucsComputeFwSyncAckDn=cucsComputeFwSyncAckDn, cucsComputeRackUnitMbTempStatsHistFrontTempMin=cucsComputeRackUnitMbTempStatsHistFrontTempMin, cucsComputeRackUnitMbTempStatsSuspect=cucsComputeRackUnitMbTempStatsSuspect, cucsComputeBladeFsmRmtErrCode=cucsComputeBladeFsmRmtErrCode, cucsComputeKvmMgmtPolicyDn=cucsComputeKvmMgmtPolicyDn, cucsComputeSlotQualDn=cucsComputeSlotQualDn, cucsComputeRtcBatteryTable=cucsComputeRtcBatteryTable, cucsComputePCIeFatalReceiveStatsUnsupportedRequestErrors15Min=cucsComputePCIeFatalReceiveStatsUnsupportedRequestErrors15Min, cucsComputePoolingPolicyQualifier=cucsComputePoolingPolicyQualifier, cucsComputeBoardPower=cucsComputeBoardPower, cucsComputeServerUnitVid=cucsComputeServerUnitVid, cucsComputeFwSyncAckTable=cucsComputeFwSyncAckTable, cucsComputeRackUnitMbTempStatsRearTempMax=cucsComputeRackUnitMbTempStatsRearTempMax, cucsComputeIOHubPresence=cucsComputeIOHubPresence, cucsComputePsuControlPolicyOwner=cucsComputePsuControlPolicyOwner, cucsComputeServerUnitFsmEntry=cucsComputeServerUnitFsmEntry, cucsComputeFwSyncAckEntry=cucsComputeFwSyncAckEntry, cucsComputeRackUnitFsmStageOrder=cucsComputeRackUnitFsmStageOrder, cucsComputeRackUnitFsmDn=cucsComputeRackUnitFsmDn, cucsComputeExtBoardId=cucsComputeExtBoardId, cucsComputeServerUnitLcTs=cucsComputeServerUnitLcTs, cucsComputePlatformVendor=cucsComputePlatformVendor, cucsComputeBladeDiscPolicyRn=cucsComputeBladeDiscPolicyRn, cucsComputePooledSlotEntry=cucsComputePooledSlotEntry, cucsComputeFwSyncAckIgnoreCap=cucsComputeFwSyncAckIgnoreCap, cucsComputeMbPowerStatsHistConsumedPowerMax=cucsComputeMbPowerStatsHistConsumedPowerMax, cucsComputePsuPolicyRn=cucsComputePsuPolicyRn, cucsComputeServerDiscPolicyFsmStamp=cucsComputeServerDiscPolicyFsmStamp, cucsComputeMbPowerStatsHistTimeCollected=cucsComputeMbPowerStatsHistTimeCollected, cucsComputePCIeFatalReceiveStatsUnsupportedRequestErrors1WeekH=cucsComputePCIeFatalReceiveStatsUnsupportedRequestErrors1WeekH, cucsComputeFwSyncAckChangeBy=cucsComputeFwSyncAckChangeBy, cucsComputePCIeFatalStatsSurpriseLinkDownErrors1Hour=cucsComputePCIeFatalStatsSurpriseLinkDownErrors1Hour, cucsComputeBoardControllerOperQualifierReason=cucsComputeBoardControllerOperQualifierReason, cucsComputeRackUnitFsmDescr=cucsComputeRackUnitFsmDescr, cucsComputeExtBoardFaultQualifier=cucsComputeExtBoardFaultQualifier, cucsComputeRackUnitFsmTaskDn=cucsComputeRackUnitFsmTaskDn, cucsComputeMbTempStatsEntry=cucsComputeMbTempStatsEntry, cucsComputePsuPolicyIntId=cucsComputePsuPolicyIntId, cucsComputeBladeEntry=cucsComputeBladeEntry, cucsComputePCIeFatalStatsSurpriseLinkDownErrors1Week=cucsComputePCIeFatalStatsSurpriseLinkDownErrors1Week, cucsComputeIOHubEnvStatsHistThresholded=cucsComputeIOHubEnvStatsHistThresholded, cucsComputePoolingPolicyEntry=cucsComputePoolingPolicyEntry, cucsComputeBladeInheritPolicyDstDn=cucsComputeBladeInheritPolicyDstDn, cucsComputeMbTempStatsFmTempSenRear=cucsComputeMbTempStatsFmTempSenRear, cucsComputePCIeFatalCompletionStatsInstanceId=cucsComputePCIeFatalCompletionStatsInstanceId, cucsComputePooledSlotTable=cucsComputePooledSlotTable, cucsComputeChassisConnPolicySwitchId=cucsComputeChassisConnPolicySwitchId, cucsComputeBladeOperPower=cucsComputeBladeOperPower, cucsComputeRackUnitMbTempStatsFrontTempAvg=cucsComputeRackUnitMbTempStatsFrontTempAvg, cucsComputePciSlotScanDefIntId=cucsComputePciSlotScanDefIntId, cucsComputePooledSlotDn=cucsComputePooledSlotDn, cucsComputePCIeFatalStatsPoisonedTLPErrors1Week=cucsComputePCIeFatalStatsPoisonedTLPErrors1Week, cucsComputeExtBoardConnPath=cucsComputeExtBoardConnPath, cucsComputeBladeNumOfEthHostIfs=cucsComputeBladeNumOfEthHostIfs, cucsComputePCIeFatalStatsPoisonedTLPErrors2WeeksH=cucsComputePCIeFatalStatsPoisonedTLPErrors2WeeksH, cucsComputeRackUnitMbTempStatsHistFrontTemp=cucsComputeRackUnitMbTempStatsHistFrontTemp, cucsComputeChassisConnPolicyDn=cucsComputeChassisConnPolicyDn, cucsComputePoolingPolicyDescr=cucsComputePoolingPolicyDescr, cucsComputeObjects=cucsComputeObjects, cucsComputeHealthLedSensorAlarmTable=cucsComputeHealthLedSensorAlarmTable, cucsComputePsuControlOperQualifier=cucsComputePsuControlOperQualifier, cucsComputePCIeFatalStatsPoisonedTLPErrors1HourH=cucsComputePCIeFatalStatsPoisonedTLPErrors1HourH, cucsComputeServerUnitChassisId=cucsComputeServerUnitChassisId, cucsComputeBoardControllerVendor=cucsComputeBoardControllerVendor, cucsComputeExtBoardPower=cucsComputeExtBoardPower, cucsComputePoolPolicyRefId=cucsComputePoolPolicyRefId, cucsComputeServerUnitMemorySpeed=cucsComputeServerUnitMemorySpeed, cucsComputeRackUnitPolicyLevel=cucsComputeRackUnitPolicyLevel, cucsComputeBladeFsmProgress=cucsComputeBladeFsmProgress, cucsComputePCIeFatalCompletionStatsUnexpectedErrors1Hour=cucsComputePCIeFatalCompletionStatsUnexpectedErrors1Hour, cucsComputeMbPowerStatsHistConsumedPowerMin=cucsComputeMbPowerStatsHistConsumedPowerMin, cucsComputePCIeFatalCompletionStatsUnexpectedErrors1Week=cucsComputePCIeFatalCompletionStatsUnexpectedErrors1Week, cucsComputeBladeLc=cucsComputeBladeLc, cucsComputePCIeFatalReceiveStatsErrNonFatalErrors=cucsComputePCIeFatalReceiveStatsErrNonFatalErrors, cucsComputeMbTempStatsFmTempSenIoMin=cucsComputeMbTempStatsFmTempSenIoMin, cucsComputeBladeNumOfThreads=cucsComputeBladeNumOfThreads, cucsComputeCartridgeChassisId=cucsComputeCartridgeChassisId, cucsComputeRackUnitMbTempStatsIoh2Temp=cucsComputeRackUnitMbTempStatsIoh2Temp, cucsComputeBoardInstanceId=cucsComputeBoardInstanceId, cucsComputeBladeAvailableMemory=cucsComputeBladeAvailableMemory, cucsComputeBladeVendor=cucsComputeBladeVendor, cucsComputePCIeFatalProtocolStatsDllpErrors2Weeks=cucsComputePCIeFatalProtocolStatsDllpErrors2Weeks, cucsComputeRackUnitFsmFlags=cucsComputeRackUnitFsmFlags, cucsComputeMemoryConfigurationEntry=cucsComputeMemoryConfigurationEntry, cucsComputeMbPowerStatsHistInstanceId=cucsComputeMbPowerStatsHistInstanceId, cucsComputeRtcBatteryModel=cucsComputeRtcBatteryModel, cucsComputeBladeFsmEntry=cucsComputeBladeFsmEntry, cucsComputeBoardPowerUsage=cucsComputeBoardPowerUsage, cucsComputePCIeFatalStatsDn=cucsComputePCIeFatalStatsDn, cucsComputeServerDiscPolicyName=cucsComputeServerDiscPolicyName, cucsComputeServerUnitFsmRn=cucsComputeServerUnitFsmRn, cucsComputeServerUnitFsmStageOrder=cucsComputeServerUnitFsmStageOrder, cucsComputeServerUnitFsmStageDescrData=cucsComputeServerUnitFsmStageDescrData, cucsComputeRackUnitFsmRmtInvErrDescr=cucsComputeRackUnitFsmRmtInvErrDescr, cucsComputePCIeFatalCompletionStatsUnexpectedErrors15MinH=cucsComputePCIeFatalCompletionStatsUnexpectedErrors15MinH, cucsComputeServerUnitAvailability=cucsComputeServerUnitAvailability, cucsComputeBladeScaledMode=cucsComputeBladeScaledMode, cucsComputeServerDiscPolicyFsmPrev=cucsComputeServerDiscPolicyFsmPrev, cucsComputePCIeFatalCompletionStatsAbortErrors=cucsComputePCIeFatalCompletionStatsAbortErrors, cucsComputeBladeFsmPrev=cucsComputeBladeFsmPrev, cucsComputeMbPowerStatsHistSuspect=cucsComputeMbPowerStatsHistSuspect, cucsComputePnuOSImageEntry=cucsComputePnuOSImageEntry, cucsComputeServerUnitSlotId=cucsComputeServerUnitSlotId, cucsComputeChassisQualTable=cucsComputeChassisQualTable, cucsComputeBoardId=cucsComputeBoardId, cucsComputeRackUnitFsmTaskSeqId=cucsComputeRackUnitFsmTaskSeqId, cucsComputeIOHubRn=cucsComputeIOHubRn, cucsComputeBoardControllerRn=cucsComputeBoardControllerRn, cucsComputePCIeFatalStatsAcsViolationErrors1DayH=cucsComputePCIeFatalStatsAcsViolationErrors1DayH, cucsComputeRackUnitAdminPower=cucsComputeRackUnitAdminPower, cucsComputeBladeNumOf40GAdaptorsWithUnknownFw=cucsComputeBladeNumOf40GAdaptorsWithUnknownFw, cucsComputeServerUnitLocalId=cucsComputeServerUnitLocalId, cucsComputePhysicalFsmCurrentFsm=cucsComputePhysicalFsmCurrentFsm, cucsComputeServerUnitPresence=cucsComputeServerUnitPresence, cucsComputeRackUnitFsmStageTable=cucsComputeRackUnitFsmStageTable, cucsComputeBladeFsmDescr=cucsComputeBladeFsmDescr, cucsComputeRackUnitMbTempStatsAmbientTemp=cucsComputeRackUnitMbTempStatsAmbientTemp, cucsComputeCartridgeFltAggr=cucsComputeCartridgeFltAggr, cucsComputePCIeFatalReceiveStatsBufferOverflowErrors1Hour=cucsComputePCIeFatalReceiveStatsBufferOverflowErrors1Hour, cucsComputeBladePartNumber=cucsComputeBladePartNumber, cucsComputePoolPolicyRefInstanceId=cucsComputePoolPolicyRefInstanceId, cucsComputeIOHubEnvStatsThresholded=cucsComputeIOHubEnvStatsThresholded, cucsComputeServerUnitFsmStageDescr=cucsComputeServerUnitFsmStageDescr, cucsComputePooledEnclosureComputeSlotPrevAssignedToDn=cucsComputePooledEnclosureComputeSlotPrevAssignedToDn, cucsComputeRackUnitNumOfFcHostIfs=cucsComputeRackUnitNumOfFcHostIfs, cucsComputePCIeFatalStatsIntervals=cucsComputePCIeFatalStatsIntervals, cucsComputeBladeDiscPolicyDescr=cucsComputeBladeDiscPolicyDescr, cucsComputePCIeFatalStatsMalformedTLPErrors=cucsComputePCIeFatalStatsMalformedTLPErrors, cucsComputeServerTypeCapTable=cucsComputeServerTypeCapTable, cucsComputePooledRackUnitAssignedToDn=cucsComputePooledRackUnitAssignedToDn, cucsComputeSlotQualTable=cucsComputeSlotQualTable, cucsComputePoolingPolicyRn=cucsComputePoolingPolicyRn, cucsComputeMbTempStatsHistFmTempSenRearMax=cucsComputeMbTempStatsHistFmTempSenRearMax, cucsComputePCIeFatalCompletionStatsUnexpectedErrors1WeekH=cucsComputePCIeFatalCompletionStatsUnexpectedErrors1WeekH, cucsComputeRackUnitTable=cucsComputeRackUnitTable, cucsComputePCIeFatalStatsEntry=cucsComputePCIeFatalStatsEntry, cucsComputeMbTempStatsHistFmTempSenIoMin=cucsComputeMbTempStatsHistFmTempSenIoMin, cucsComputeMbTempStatsHistFmTempSenRearLMax=cucsComputeMbTempStatsHistFmTempSenRearLMax, cucsComputePhysicalFsmTaskRn=cucsComputePhysicalFsmTaskRn, cucsComputeServerUnitLowVoltageMemory=cucsComputeServerUnitLowVoltageMemory, cucsComputePCIeFatalReceiveStatsErrFatalErrors2WeeksH=cucsComputePCIeFatalReceiveStatsErrFatalErrors2WeeksH, cucsComputeBladeManagingInst=cucsComputeBladeManagingInst, cucsComputeRackUnitPresence=cucsComputeRackUnitPresence, cucsComputePooledRackUnitAssigned=cucsComputePooledRackUnitAssigned, cucsComputeMbPowerStatsTable=cucsComputeMbPowerStatsTable, cucsComputeRackUnitFsmStageRetry=cucsComputeRackUnitFsmStageRetry, cucsComputeCartridgeDn=cucsComputeCartridgeDn, cucsComputeKvmMgmtPolicyName=cucsComputeKvmMgmtPolicyName, cucsComputeChassisQualMaxId=cucsComputeChassisQualMaxId, cucsComputePCIeFatalCompletionStatsAbortErrors1Week=cucsComputePCIeFatalCompletionStatsAbortErrors1Week, cucsComputePCIeFatalProtocolStatsFlowControlErrors2Weeks=cucsComputePCIeFatalProtocolStatsFlowControlErrors2Weeks, cucsComputeKvmMgmtPolicyRn=cucsComputeKvmMgmtPolicyRn, cucsComputeChassisConnPolicyChassisId=cucsComputeChassisConnPolicyChassisId, cucsComputeBladeRn=cucsComputeBladeRn, cucsComputePsuControlTable=cucsComputePsuControlTable, cucsComputeServerUnitCheckPoint=cucsComputeServerUnitCheckPoint, cucsComputeBoardControllerTable=cucsComputeBoardControllerTable, cucsComputeExtBoardOperability=cucsComputeExtBoardOperability, cucsComputeExtBoardThermal=cucsComputeExtBoardThermal, cucsComputeServerDiscPolicyFsmStageDn=cucsComputeServerDiscPolicyFsmStageDn, cucsComputeRackUnitAvailability=cucsComputeRackUnitAvailability, cucsComputeExtBoardTable=cucsComputeExtBoardTable, cucsComputeBladeOperability=cucsComputeBladeOperability, cucsComputeRackUnitAssociation=cucsComputeRackUnitAssociation, cucsComputeServerUnitFsmTaskCompletion=cucsComputeServerUnitFsmTaskCompletion, cucsComputeBladeServerId=cucsComputeBladeServerId, cucsComputeServerMgmtPolicyAction=cucsComputeServerMgmtPolicyAction, cucsComputeFwSyncAckIntId=cucsComputeFwSyncAckIntId, cucsComputeServerMgmtPolicyPolicyOwner=cucsComputeServerMgmtPolicyPolicyOwner, cucsComputeBladePolicyLevel=cucsComputeBladePolicyLevel) mibBuilder.exportSymbols("CISCO-UNIFIED-COMPUTING-COMPUTE-MIB", cucsComputeMemoryConfigPolicyRn=cucsComputeMemoryConfigPolicyRn, cucsComputeMbTempStatsHistFmTempSenRearRAvg=cucsComputeMbTempStatsHistFmTempSenRearRAvg, cucsComputePhysicalFsmStageEntry=cucsComputePhysicalFsmStageEntry, cucsComputeServerUnitFsmCurrentFsm=cucsComputeServerUnitFsmCurrentFsm, cucsComputePciSlotScanDefPolicyLevel=cucsComputePciSlotScanDefPolicyLevel, cucsComputeServerDiscPolicyFsmProgress=cucsComputeServerDiscPolicyFsmProgress, cucsComputeBoardControllerSerial=cucsComputeBoardControllerSerial, cucsComputeBoardControllerEntry=cucsComputeBoardControllerEntry, cucsComputeMbPowerStatsInputCurrentAvg=cucsComputeMbPowerStatsInputCurrentAvg, cucsComputePoolableEntry=cucsComputePoolableEntry, cucsComputePhysicalFsmStageInstanceId=cucsComputePhysicalFsmStageInstanceId, cucsComputeServerUnitTotalMemory=cucsComputeServerUnitTotalMemory, cucsComputePCIeFatalReceiveStatsBufferOverflowErrors2Weeks=cucsComputePCIeFatalReceiveStatsBufferOverflowErrors2Weeks, cucsComputePhysicalQualModel=cucsComputePhysicalQualModel, cucsComputeChassisDiscPolicyIntId=cucsComputeChassisDiscPolicyIntId, cucsComputePciSlotScanDefTable=cucsComputePciSlotScanDefTable, cucsComputeMbTempStatsHistInstanceId=cucsComputeMbTempStatsHistInstanceId, cucsComputeChassisDiscPolicyEntry=cucsComputeChassisDiscPolicyEntry, cucsComputeBoardControllerThermal=cucsComputeBoardControllerThermal, cucsComputeBladeIntId=cucsComputeBladeIntId, cucsComputeServerUnitNumOfAdaptors=cucsComputeServerUnitNumOfAdaptors, cucsComputeRackUnitLowVoltageMemory=cucsComputeRackUnitLowVoltageMemory, cucsComputePoolPolicyRefPolicyDn=cucsComputePoolPolicyRefPolicyDn, cucsComputeMbTempStatsHistFmTempSenRearLAvg=cucsComputeMbTempStatsHistFmTempSenRearLAvg, cucsComputeBladeInheritPolicyName=cucsComputeBladeInheritPolicyName, cucsComputePlatformRevision=cucsComputePlatformRevision, cucsComputePsuControlOperState=cucsComputePsuControlOperState, cucsComputeBoardRn=cucsComputeBoardRn, cucsComputePCIeFatalStatsMalformedTLPErrors15Min=cucsComputePCIeFatalStatsMalformedTLPErrors15Min, cucsComputeIOHubThermal=cucsComputeIOHubThermal, cucsComputeBladeOperPwrTransSrc=cucsComputeBladeOperPwrTransSrc, cucsComputeAutoconfigPolicyOperQualifier=cucsComputeAutoconfigPolicyOperQualifier, cucsComputeRackUnitFsmRmtRslt=cucsComputeRackUnitFsmRmtRslt, cucsComputeServerDiscPolicyFsmDn=cucsComputeServerDiscPolicyFsmDn, cucsComputeFwSyncAckDisr=cucsComputeFwSyncAckDisr, cucsComputePCIeFatalStatsUpdate=cucsComputePCIeFatalStatsUpdate, cucsComputePsuControlRedundancy=cucsComputePsuControlRedundancy, cucsComputePCIeFatalReceiveStatsUnsupportedRequestErrors2Weeks=cucsComputePCIeFatalReceiveStatsUnsupportedRequestErrors2Weeks, cucsComputePooledRackUnitPoolableDn=cucsComputePooledRackUnitPoolableDn, cucsComputeBoardCmosVoltage=cucsComputeBoardCmosVoltage, cucsComputePCIeFatalReceiveStatsEntry=cucsComputePCIeFatalReceiveStatsEntry, cucsComputeMemoryUnitConstraintDefInstanceId=cucsComputeMemoryUnitConstraintDefInstanceId, cucsComputeBoardControllerOperState=cucsComputeBoardControllerOperState, cucsComputeBladeInheritPolicyInstanceId=cucsComputeBladeInheritPolicyInstanceId, cucsComputeServerUnitFsmTaskEntry=cucsComputeServerUnitFsmTaskEntry, cucsComputeServerUnitManagingInst=cucsComputeServerUnitManagingInst, cucsComputeServerUnitAssociation=cucsComputeServerUnitAssociation, cucsComputePCIeFatalStatsPoisonedTLPErrors1Hour=cucsComputePCIeFatalStatsPoisonedTLPErrors1Hour, cucsComputePCIeFatalReceiveStatsInstanceId=cucsComputePCIeFatalReceiveStatsInstanceId, cucsComputeExtBoardPresence=cucsComputeExtBoardPresence, cucsComputeAutoconfigPolicyIntId=cucsComputeAutoconfigPolicyIntId, cucsComputePhysicalFsmDn=cucsComputePhysicalFsmDn, cucsComputeBladeDiscPolicyDn=cucsComputeBladeDiscPolicyDn, cucsComputeMbPowerStatsHistInputCurrentMin=cucsComputeMbPowerStatsHistInputCurrentMin, cucsComputeRackUnitMbTempStatsHistFrontTempAvg=cucsComputeRackUnitMbTempStatsHistFrontTempAvg, cucsComputePCIeFatalProtocolStatsUpdate=cucsComputePCIeFatalProtocolStatsUpdate, cucsComputeBladeOperState=cucsComputeBladeOperState, cucsComputeServerUnitOperability=cucsComputeServerUnitOperability, cucsComputeServerUnitDiscoveryStatus=cucsComputeServerUnitDiscoveryStatus, cucsComputeMbTempStatsHistTimeCollected=cucsComputeMbTempStatsHistTimeCollected, cucsComputeServerUnitAdminState=cucsComputeServerUnitAdminState, cucsComputePCIeFatalStatsPoisonedTLPErrors2Weeks=cucsComputePCIeFatalStatsPoisonedTLPErrors2Weeks, cucsComputeChassisQualRn=cucsComputeChassisQualRn, cucsComputeMbTempStatsFmTempSenRearR=cucsComputeMbTempStatsFmTempSenRearR, cucsComputePCIeFatalStatsSurpriseLinkDownErrors1WeekH=cucsComputePCIeFatalStatsSurpriseLinkDownErrors1WeekH, cucsComputeBladeFsmTaskFlags=cucsComputeBladeFsmTaskFlags, cucsComputeServerUnitFsmRmtInvErrCode=cucsComputeServerUnitFsmRmtInvErrCode, cucsComputeRackUnitTotalMemory=cucsComputeRackUnitTotalMemory, cucsComputeServerUnitDn=cucsComputeServerUnitDn, cucsComputePCIeFatalCompletionStatsUpdate=cucsComputePCIeFatalCompletionStatsUpdate, cucsComputeMemoryConfigurationAdminMemoryState=cucsComputeMemoryConfigurationAdminMemoryState, cucsComputeMbPowerStatsConsumedPowerMin=cucsComputeMbPowerStatsConsumedPowerMin, cucsComputeRackUnitFsmStageDn=cucsComputeRackUnitFsmStageDn, cucsComputeMbTempStatsHistThresholded=cucsComputeMbTempStatsHistThresholded, cucsComputeHealthLedSensorAlarmDn=cucsComputeHealthLedSensorAlarmDn, cucsComputeBladeOriginalUuid=cucsComputeBladeOriginalUuid, cucsComputeChassisConnPolicyQualifier=cucsComputeChassisConnPolicyQualifier, cucsComputePCIeFatalStatsSurpriseLinkDownErrors=cucsComputePCIeFatalStatsSurpriseLinkDownErrors, cucsComputeScrubPolicyDiskScrub=cucsComputeScrubPolicyDiskScrub, cucsComputeFwSyncAckDescr=cucsComputeFwSyncAckDescr, cucsComputeMbPowerStatsThresholded=cucsComputeMbPowerStatsThresholded, cucsComputePhysicalAssocCtxEntry=cucsComputePhysicalAssocCtxEntry, cucsComputeScrubPolicyPolicyOwner=cucsComputeScrubPolicyPolicyOwner, cucsComputePoolingPolicyPolicyLevel=cucsComputePoolingPolicyPolicyLevel, cucsComputeBoardControllerPower=cucsComputeBoardControllerPower, cucsComputeIOHubEnvStatsHistTimeCollected=cucsComputeIOHubEnvStatsHistTimeCollected, cucsComputePCIeFatalReceiveStatsBufferOverflowErrors15Min=cucsComputePCIeFatalReceiveStatsBufferOverflowErrors15Min, cucsComputeRackUnitFsmStatus=cucsComputeRackUnitFsmStatus, cucsComputePoolDn=cucsComputePoolDn, cucsComputeRackUnitFsmTaskTable=cucsComputeRackUnitFsmTaskTable, cucsComputePhysicalFsmTaskInstanceId=cucsComputePhysicalFsmTaskInstanceId, cucsComputeServerDiscPolicyFsmStageDescrData=cucsComputeServerDiscPolicyFsmStageDescrData, cucsComputeBoardCpuTypeDescription=cucsComputeBoardCpuTypeDescription, cucsComputePhysicalFsmTaskTable=cucsComputePhysicalFsmTaskTable, cucsComputeMemoryUnitConstraintDefEntry=cucsComputeMemoryUnitConstraintDefEntry, cucsComputeRackUnitMbTempStatsHistAmbientTempMax=cucsComputeRackUnitMbTempStatsHistAmbientTempMax, cucsComputeBladeInheritPolicyDescr=cucsComputeBladeInheritPolicyDescr, cucsComputePCIeFatalReceiveStatsTable=cucsComputePCIeFatalReceiveStatsTable, cucsComputeConstraintDefTable=cucsComputeConstraintDefTable, cucsComputeRackUnitServerId=cucsComputeRackUnitServerId, cucsComputeBladeFsmStageDn=cucsComputeBladeFsmStageDn, cucsComputeMemoryConfigPolicyTable=cucsComputeMemoryConfigPolicyTable, cucsComputeBladeNumOfCoresEnabled=cucsComputeBladeNumOfCoresEnabled, cucsComputeServerDiscPolicyFsmStageDescr=cucsComputeServerDiscPolicyFsmStageDescr, cucsComputePCIeFatalStatsAcsViolationErrors2Weeks=cucsComputePCIeFatalStatsAcsViolationErrors2Weeks, cucsComputeRackUnitOperPwrTransSrc=cucsComputeRackUnitOperPwrTransSrc, cucsComputePciCapEntry=cucsComputePciCapEntry, cucsComputeBladeDiscoveryStatus=cucsComputeBladeDiscoveryStatus, cucsComputePCIeFatalReceiveStatsBufferOverflowErrors1DayH=cucsComputePCIeFatalReceiveStatsBufferOverflowErrors1DayH, cucsComputeServerUnitDescr=cucsComputeServerUnitDescr, cucsComputeRackUnitNumOf40GAdaptorsWithUnknownFw=cucsComputeRackUnitNumOf40GAdaptorsWithUnknownFw, cucsComputeBoardControllerRevision=cucsComputeBoardControllerRevision, cucsComputeRackUnitFltAggr=cucsComputeRackUnitFltAggr, cucsComputeHealthLedSensorAlarmRn=cucsComputeHealthLedSensorAlarmRn, cucsComputeRackUnitMbTempStatsHistRearTempMax=cucsComputeRackUnitMbTempStatsHistRearTempMax, cucsComputeBladeFsmFlags=cucsComputeBladeFsmFlags, cucsComputePciSlotScanDefDn=cucsComputePciSlotScanDefDn, cucsComputePCIeFatalReceiveStatsTimeCollected=cucsComputePCIeFatalReceiveStatsTimeCollected, cucsComputeChassisConnPolicyRn=cucsComputeChassisConnPolicyRn, cucsComputeBoardControllerId=cucsComputeBoardControllerId, cucsComputeRackUnitFsmCurrentFsm=cucsComputeRackUnitFsmCurrentFsm, cucsComputeChassisDiscPolicyRn=cucsComputeChassisDiscPolicyRn, cucsComputePciSlotScanDefSlotId=cucsComputePciSlotScanDefSlotId, cucsComputePciCapRn=cucsComputePciCapRn, cucsComputePCIeFatalReceiveStatsUnsupportedRequestErrors1DayH=cucsComputePCIeFatalReceiveStatsUnsupportedRequestErrors1DayH, cucsComputeConstraintDefPolicyLevel=cucsComputeConstraintDefPolicyLevel, cucsComputePCIeFatalProtocolStatsFlowControlErrors1Week=cucsComputePCIeFatalProtocolStatsFlowControlErrors1Week, cucsComputePooledSlotAssigned=cucsComputePooledSlotAssigned, cucsComputeServerDiscPolicyFsmEntry=cucsComputeServerDiscPolicyFsmEntry, cucsComputeServerUnitAdminPower=cucsComputeServerUnitAdminPower, cucsComputePCIeFatalReceiveStatsErrFatalErrors1Day=cucsComputePCIeFatalReceiveStatsErrFatalErrors1Day, cucsComputeBladeInheritPolicyIntId=cucsComputeBladeInheritPolicyIntId, cucsComputePCIeFatalProtocolStatsDllpErrors1Hour=cucsComputePCIeFatalProtocolStatsDllpErrors1Hour, cucsComputeMbTempStatsHistFmTempSenRearRMin=cucsComputeMbTempStatsHistFmTempSenRearRMin, cucsComputeChassisConnPolicyPolicyLevel=cucsComputeChassisConnPolicyPolicyLevel, cucsComputeBladeEpTable=cucsComputeBladeEpTable, cucsComputeBladeLowVoltageMemory=cucsComputeBladeLowVoltageMemory, cucsComputeMbPowerStatsInputVoltageMax=cucsComputeMbPowerStatsInputVoltageMax, cucsComputePooledEnclosureComputeSlotPoolableDn=cucsComputePooledEnclosureComputeSlotPoolableDn, cucsComputeServerDiscPolicyFsmStatus=cucsComputeServerDiscPolicyFsmStatus, cucsComputeRackUnitMbTempStatsHistIoh2TempMin=cucsComputeRackUnitMbTempStatsHistIoh2TempMin, cucsComputeServerUnitRevision=cucsComputeServerUnitRevision, cucsComputeBoardOperPower=cucsComputeBoardOperPower, cucsComputeServerUnitFsmTaskItem=cucsComputeServerUnitFsmTaskItem, cucsComputeMbPowerStatsHistId=cucsComputeMbPowerStatsHistId, cucsComputeDefaultsRn=cucsComputeDefaultsRn, cucsComputePooledEnclosureComputeSlotDn=cucsComputePooledEnclosureComputeSlotDn, cucsComputePCIeFatalProtocolStatsDllpErrors1Week=cucsComputePCIeFatalProtocolStatsDllpErrors1Week, cucsComputePooledSlotChassisId=cucsComputePooledSlotChassisId, cucsComputePCIeFatalCompletionStatsTimeoutErrors1HourH=cucsComputePCIeFatalCompletionStatsTimeoutErrors1HourH, cucsComputeRackUnitFsmStageLastUpdateTime=cucsComputeRackUnitFsmStageLastUpdateTime, cucsComputePnuOSImageImgLoc=cucsComputePnuOSImageImgLoc, cucsComputeDefaultsEntry=cucsComputeDefaultsEntry, cucsComputeRackUnitLcTs=cucsComputeRackUnitLcTs, cucsComputeBladeSlotId=cucsComputeBladeSlotId, cucsComputePCIeFatalReceiveStatsErrNonFatalErrors15Min=cucsComputePCIeFatalReceiveStatsErrNonFatalErrors15Min, cucsComputeMbTempStatsHistRn=cucsComputeMbTempStatsHistRn, cucsComputeServerUnitFsmStageRn=cucsComputeServerUnitFsmStageRn, cucsComputePoolPolicyRefEntry=cucsComputePoolPolicyRefEntry, cucsComputeMemoryConfigurationDn=cucsComputeMemoryConfigurationDn, cucsComputePhysicalAssocCtxDn=cucsComputePhysicalAssocCtxDn, cucsComputeBladeInheritPolicyDn=cucsComputeBladeInheritPolicyDn, cucsComputeRackUnitMbTempStatsIoh2TempMax=cucsComputeRackUnitMbTempStatsIoh2TempMax, cucsComputeInstanceIdQualEntry=cucsComputeInstanceIdQualEntry, cucsComputeMbPowerStatsHistInputVoltageMin=cucsComputeMbPowerStatsHistInputVoltageMin, cucsComputePhysicalFsmTaskDn=cucsComputePhysicalFsmTaskDn, cucsComputeIOHubEnvStatsHistTemperature=cucsComputeIOHubEnvStatsHistTemperature, cucsComputeRackUnitRn=cucsComputeRackUnitRn, cucsComputeServerUnitFsmStageTable=cucsComputeServerUnitFsmStageTable, cucsComputeBladeInstanceId=cucsComputeBladeInstanceId, cucsComputeRackUnitFsmInstanceId=cucsComputeRackUnitFsmInstanceId, cucsComputePCIeFatalReceiveStatsBufferOverflowErrors15MinH=cucsComputePCIeFatalReceiveStatsBufferOverflowErrors15MinH, cucsComputeMbTempStatsUpdate=cucsComputeMbTempStatsUpdate, cucsComputeRackUnitFsmRmtErrCode=cucsComputeRackUnitFsmRmtErrCode, cucsComputeExtBoardModel=cucsComputeExtBoardModel, cucsComputeServerDiscPolicyPolicyLevel=cucsComputeServerDiscPolicyPolicyLevel, cucsComputePooledRackUnitTable=cucsComputePooledRackUnitTable, cucsComputePhysicalFsmRmtErrDescr=cucsComputePhysicalFsmRmtErrDescr, cucsComputeFwSyncAckAcked=cucsComputeFwSyncAckAcked, cucsComputeBoardConnectorEntry=cucsComputeBoardConnectorEntry, cucsComputeFwSyncAckScheduler=cucsComputeFwSyncAckScheduler, cucsComputeExtBoardOperQualifierReason=cucsComputeExtBoardOperQualifierReason, cucsComputeRackUnitModel=cucsComputeRackUnitModel, cucsComputeServerUnitConnPath=cucsComputeServerUnitConnPath, cucsComputePhysicalFsmFsmStatus=cucsComputePhysicalFsmFsmStatus, cucsComputeServerUnitOperState=cucsComputeServerUnitOperState, cucsComputeServerDiscPolicyPolicyOwner=cucsComputeServerDiscPolicyPolicyOwner, cucsComputeServerDiscPolicyFsmTable=cucsComputeServerDiscPolicyFsmTable, cucsComputeBladeNumOfCpus=cucsComputeBladeNumOfCpus, cucsComputeMbTempStatsFmTempSenRearL=cucsComputeMbTempStatsFmTempSenRearL, cucsComputeBladeDiscPolicyQualifier=cucsComputeBladeDiscPolicyQualifier, cucsComputeServerUnitNumOfThreads=cucsComputeServerUnitNumOfThreads, cucsComputeServerUnitVendor=cucsComputeServerUnitVendor, cucsComputeBladeCheckPoint=cucsComputeBladeCheckPoint, cucsComputeServerUnitFsmRmtInvErrDescr=cucsComputeServerUnitFsmRmtInvErrDescr, cucsComputeRackUnitDn=cucsComputeRackUnitDn, cucsComputePCIeFatalStatsAcsViolationErrors1Week=cucsComputePCIeFatalStatsAcsViolationErrors1Week, cucsComputePCIeFatalReceiveStatsErrFatalErrors1DayH=cucsComputePCIeFatalReceiveStatsErrFatalErrors1DayH, cucsComputePCIeFatalStatsAcsViolationErrors2WeeksH=cucsComputePCIeFatalStatsAcsViolationErrors2WeeksH, cucsComputeServerDiscPolicyFsmTaskEntry=cucsComputeServerDiscPolicyFsmTaskEntry, cucsComputeServerDiscPolicyFsmFsmStatus=cucsComputeServerDiscPolicyFsmFsmStatus, cucsComputeMbTempStatsHistSuspect=cucsComputeMbTempStatsHistSuspect, cucsComputeRackUnitMbTempStatsHistIoh1TempMax=cucsComputeRackUnitMbTempStatsHistIoh1TempMax, cucsComputeRackUnitMbTempStatsHistEntry=cucsComputeRackUnitMbTempStatsHistEntry, cucsComputeServerUnitAssignedToDn=cucsComputeServerUnitAssignedToDn, cucsComputePooledRackUnitRn=cucsComputePooledRackUnitRn, cucsComputeBladeDiscPolicyEntry=cucsComputeBladeDiscPolicyEntry, cucsComputePooledEnclosureComputeSlotOwner=cucsComputePooledEnclosureComputeSlotOwner, cucsComputeExtBoardSerial=cucsComputeExtBoardSerial, cucsComputeBladeFsmRmtInvRslt=cucsComputeBladeFsmRmtInvRslt, cucsComputePooledSlotPrevAssignedToDn=cucsComputePooledSlotPrevAssignedToDn, cucsComputeQualDn=cucsComputeQualDn, cucsComputeMbTempStatsFmTempSenIo=cucsComputeMbTempStatsFmTempSenIo, cucsComputeFwSyncAckName=cucsComputeFwSyncAckName, cucsComputeServerUnitFsmStatus=cucsComputeServerUnitFsmStatus, cucsComputeRackUnitOperPower=cucsComputeRackUnitOperPower, cucsComputeBladeAssociation=cucsComputeBladeAssociation, cucsComputeAutoconfigPolicyInstanceId=cucsComputeAutoconfigPolicyInstanceId, cucsComputeRackUnitFsmProgr=cucsComputeRackUnitFsmProgr, cucsComputeRtcBatteryEntry=cucsComputeRtcBatteryEntry, cucsComputeAutoconfigPolicyQualifier=cucsComputeAutoconfigPolicyQualifier, cucsComputeIOHubEnvStatsEntry=cucsComputeIOHubEnvStatsEntry, cucsComputeMemoryConfigPolicyDn=cucsComputeMemoryConfigPolicyDn, cucsComputePhysicalFsmTaskEntry=cucsComputePhysicalFsmTaskEntry, cucsComputePCIeFatalStatsTable=cucsComputePCIeFatalStatsTable, cucsComputeMbTempStatsHistFmTempSenIoMax=cucsComputeMbTempStatsHistFmTempSenIoMax, cucsComputePCIeFatalCompletionStatsAbortErrors1Day=cucsComputePCIeFatalCompletionStatsAbortErrors1Day, cucsComputeIOHubEnvStatsUpdate=cucsComputeIOHubEnvStatsUpdate, cucsComputePCIeFatalCompletionStatsTimeCollected=cucsComputePCIeFatalCompletionStatsTimeCollected, cucsComputeBladeFsmTaskSeqId=cucsComputeBladeFsmTaskSeqId, cucsComputeFwSyncAckAutoDelete=cucsComputeFwSyncAckAutoDelete, cucsComputePooledEnclosureComputeSlotRn=cucsComputePooledEnclosureComputeSlotRn, cucsComputePCIeFatalStatsInstanceId=cucsComputePCIeFatalStatsInstanceId, cucsComputePCIeFatalCompletionStatsTimeoutErrors1DayH=cucsComputePCIeFatalCompletionStatsTimeoutErrors1DayH, cucsComputeSlotQualEntry=cucsComputeSlotQualEntry, cucsComputeMemoryConfigPolicyPolicyOwner=cucsComputeMemoryConfigPolicyPolicyOwner, cucsComputeRackUnitPartNumber=cucsComputeRackUnitPartNumber, cucsComputePsuControlInputPowerState=cucsComputePsuControlInputPowerState, cucsComputePooledRackUnitEntry=cucsComputePooledRackUnitEntry, cucsComputeServerUnitFsmFlags=cucsComputeServerUnitFsmFlags, cucsComputeServerUnitFsmProgr=cucsComputeServerUnitFsmProgr, cucsComputePhysicalQualPropAcl=cucsComputePhysicalQualPropAcl, cucsComputeConstraintDefConstraintType=cucsComputeConstraintDefConstraintType, cucsComputeCartridgeRn=cucsComputeCartridgeRn, cucsComputeIOHubTable=cucsComputeIOHubTable, cucsComputePhysicalFsmRn=cucsComputePhysicalFsmRn, cucsComputeServerUnitOperPwrTransSrc=cucsComputeServerUnitOperPwrTransSrc, cucsComputeChassisDiscPolicyDescr=cucsComputeChassisDiscPolicyDescr, cucsComputePCIeFatalStatsAcsViolationErrors15MinH=cucsComputePCIeFatalStatsAcsViolationErrors15MinH, cucsComputeScrubPolicyInstanceId=cucsComputeScrubPolicyInstanceId, cucsComputePCIeFatalReceiveStatsErrNonFatalErrors1Day=cucsComputePCIeFatalReceiveStatsErrNonFatalErrors1Day, cucsComputePCIeFatalStatsMalformedTLPErrors1Hour=cucsComputePCIeFatalStatsMalformedTLPErrors1Hour, cucsComputePCIeFatalReceiveStatsErrNonFatalErrors2Weeks=cucsComputePCIeFatalReceiveStatsErrNonFatalErrors2Weeks, cucsComputeBoardVoltage=cucsComputeBoardVoltage) mibBuilder.exportSymbols("CISCO-UNIFIED-COMPUTING-COMPUTE-MIB", cucsComputeBladeFltAggr=cucsComputeBladeFltAggr, cucsComputeRackUnitMbTempStatsHistId=cucsComputeRackUnitMbTempStatsHistId, cucsComputeQualInstanceId=cucsComputeQualInstanceId, cucsComputeIOHubEnvStatsHistTemperatureMax=cucsComputeIOHubEnvStatsHistTemperatureMax, cucsComputeRackUnitFsmStageEntry=cucsComputeRackUnitFsmStageEntry, cucsComputePCIeFatalCompletionStatsEntry=cucsComputePCIeFatalCompletionStatsEntry, cucsComputeRackUnitMbTempStatsThresholded=cucsComputeRackUnitMbTempStatsThresholded, cucsComputeServerUnitPolicyOwner=cucsComputeServerUnitPolicyOwner, cucsComputeServerUnitFsmRmtErrDescr=cucsComputeServerUnitFsmRmtErrDescr, cucsComputePsuControlClusterState=cucsComputePsuControlClusterState, cucsComputeIOHubEnvStatsHistDn=cucsComputeIOHubEnvStatsHistDn, cucsComputeRtcBatteryId=cucsComputeRtcBatteryId, cucsComputeMbPowerStatsHistTable=cucsComputeMbPowerStatsHistTable, cucsComputeServerUnitUsrLbl=cucsComputeServerUnitUsrLbl, cucsComputePCIeFatalStatsSurpriseLinkDownErrors1HourH=cucsComputePCIeFatalStatsSurpriseLinkDownErrors1HourH, cucsComputeIOHubEnvStatsHistInstanceId=cucsComputeIOHubEnvStatsHistInstanceId, cucsComputeRackUnitMbTempStatsIoh1TempMax=cucsComputeRackUnitMbTempStatsIoh1TempMax, cucsComputeMbTempStatsHistFmTempSenRearMin=cucsComputeMbTempStatsHistFmTempSenRearMin, cucsComputeBladeEpSlotId=cucsComputeBladeEpSlotId, cucsComputeCartridgePower=cucsComputeCartridgePower, cucsComputeIOHubEnvStatsTemperatureMax=cucsComputeIOHubEnvStatsTemperatureMax, cucsComputeRtcBatteryInstanceId=cucsComputeRtcBatteryInstanceId, cucsComputePCIeFatalReceiveStatsErrNonFatalErrors2WeeksH=cucsComputePCIeFatalReceiveStatsErrNonFatalErrors2WeeksH, cucsComputeRackUnitMbTempStatsAmbientTempMax=cucsComputeRackUnitMbTempStatsAmbientTempMax, cucsComputeQualEntry=cucsComputeQualEntry, cucsComputeServerDiscPolicyFsmStageOrder=cucsComputeServerDiscPolicyFsmStageOrder, cucsComputeServerDiscPolicyFsmTry=cucsComputeServerDiscPolicyFsmTry, cucsComputeCartridgeInstanceId=cucsComputeCartridgeInstanceId, cucsComputePCIeFatalCompletionStatsAbortErrors15MinH=cucsComputePCIeFatalCompletionStatsAbortErrors15MinH, cucsComputePCIeFatalProtocolStatsDllpErrors2WeeksH=cucsComputePCIeFatalProtocolStatsDllpErrors2WeeksH, cucsComputeRackUnitNumOfCoresEnabled=cucsComputeRackUnitNumOfCoresEnabled, cucsComputePCIeFatalReceiveStatsUnsupportedRequestErrors1Day=cucsComputePCIeFatalReceiveStatsUnsupportedRequestErrors1Day, cucsComputeCartridgeThermal=cucsComputeCartridgeThermal, cucsComputePCIeFatalStatsPoisonedTLPErrors1Day=cucsComputePCIeFatalStatsPoisonedTLPErrors1Day, cucsComputeIOHubEnvStatsHistSuspect=cucsComputeIOHubEnvStatsHistSuspect, cucsComputeServerDiscPolicyFsmCompletionTime=cucsComputeServerDiscPolicyFsmCompletionTime, cucsComputeServerUnitFsmTry=cucsComputeServerUnitFsmTry, cucsComputeMbPowerStatsInputCurrentMax=cucsComputeMbPowerStatsInputCurrentMax, cucsComputeBladeEpOperQualifierReason=cucsComputeBladeEpOperQualifierReason, cucsComputePCIeFatalProtocolStatsIntervals=cucsComputePCIeFatalProtocolStatsIntervals, cucsComputeBladeFsmStageInstanceId=cucsComputeBladeFsmStageInstanceId, cucsComputePCIeFatalCompletionStatsTimeoutErrors1Week=cucsComputePCIeFatalCompletionStatsTimeoutErrors1Week, cucsComputePooledEnclosureComputeSlotChassisId=cucsComputePooledEnclosureComputeSlotChassisId, cucsComputeBladeVid=cucsComputeBladeVid, cucsComputeConstraintDefName=cucsComputeConstraintDefName, cucsComputeBladeDiscPolicyInstanceId=cucsComputeBladeDiscPolicyInstanceId, cucsComputeBladeEpPeerPresence=cucsComputeBladeEpPeerPresence, cucsComputeBladeDiscovery=cucsComputeBladeDiscovery, cucsComputePCIeFatalReceiveStatsThresholded=cucsComputePCIeFatalReceiveStatsThresholded, cucsComputePsuPolicyInstanceId=cucsComputePsuPolicyInstanceId, cucsComputePsuPolicyName=cucsComputePsuPolicyName, cucsComputeChassisConnPolicyName=cucsComputeChassisConnPolicyName, cucsComputePsuPolicyDn=cucsComputePsuPolicyDn, cucsComputeBladeLcTs=cucsComputeBladeLcTs, cucsComputePlatformTable=cucsComputePlatformTable, cucsComputeMbPowerStatsHistInputCurrent=cucsComputeMbPowerStatsHistInputCurrent, cucsComputeInstanceIdQualDn=cucsComputeInstanceIdQualDn, cucsComputePCIeFatalReceiveStatsBufferOverflowErrors=cucsComputePCIeFatalReceiveStatsBufferOverflowErrors, cucsComputeExtBoardCmosVoltage=cucsComputeExtBoardCmosVoltage, cucsComputePoolablePoolDn=cucsComputePoolablePoolDn, cucsComputeMemoryConfigPolicyEntry=cucsComputeMemoryConfigPolicyEntry, cucsComputeFwSyncAckOperState=cucsComputeFwSyncAckOperState, cucsComputeBladeAdminState=cucsComputeBladeAdminState, cucsComputeAutoconfigPolicyDescr=cucsComputeAutoconfigPolicyDescr, cucsComputeRackUnitMbTempStatsHistTable=cucsComputeRackUnitMbTempStatsHistTable, cucsComputeRtcBatterySerial=cucsComputeRtcBatterySerial, cucsComputeMbTempStatsHistFmTempSenRearRMax=cucsComputeMbTempStatsHistFmTempSenRearRMax, cucsComputePhysicalAssocCtxRn=cucsComputePhysicalAssocCtxRn, cucsComputeBladeNumOf40GAdaptorsWithOldFw=cucsComputeBladeNumOf40GAdaptorsWithOldFw, cucsComputePoolingPolicyInstanceId=cucsComputePoolingPolicyInstanceId, cucsComputePsuControlOutputPowerState=cucsComputePsuControlOutputPowerState, cucsComputePCIeFatalStatsSurpriseLinkDownErrors15Min=cucsComputePCIeFatalStatsSurpriseLinkDownErrors15Min, cucsComputePooledEnclosureComputeSlotInstanceId=cucsComputePooledEnclosureComputeSlotInstanceId, cucsComputeAutoconfigPolicyRn=cucsComputeAutoconfigPolicyRn, cucsComputeServerDiscPolicyFsmCurrentFsm=cucsComputeServerDiscPolicyFsmCurrentFsm, cucsComputeMemoryConfigurationRn=cucsComputeMemoryConfigurationRn, cucsComputeKvmMgmtPolicyTable=cucsComputeKvmMgmtPolicyTable, cucsComputeIOHubPower=cucsComputeIOHubPower, cucsComputePhysicalAssocCtxInstanceId=cucsComputePhysicalAssocCtxInstanceId, cucsComputeMemoryConfigPolicyBlackListing=cucsComputeMemoryConfigPolicyBlackListing, cucsComputeServerDiscPolicyFsmTaskInstanceId=cucsComputeServerDiscPolicyFsmTaskInstanceId, cucsComputeBladeNumOfFcHostIfs=cucsComputeBladeNumOfFcHostIfs, cucsComputePciCapInstanceId=cucsComputePciCapInstanceId, cucsComputeExtBoardRevision=cucsComputeExtBoardRevision, cucsComputeBladeNumOfCores=cucsComputeBladeNumOfCores, cucsComputeServerDiscPolicyInstanceId=cucsComputeServerDiscPolicyInstanceId, cucsComputePsuPolicyTable=cucsComputePsuPolicyTable, cucsComputeServerDiscPolicyFsmRmtErrDescr=cucsComputeServerDiscPolicyFsmRmtErrDescr, cucsComputePCIeFatalReceiveStatsBufferOverflowErrors1Day=cucsComputePCIeFatalReceiveStatsBufferOverflowErrors1Day, cucsComputeConstraintDefHwModel=cucsComputeConstraintDefHwModel, cucsComputeBladeInheritPolicyQualifier=cucsComputeBladeInheritPolicyQualifier, cucsComputePoolPolicyRefRn=cucsComputePoolPolicyRefRn, cucsComputeMbTempStatsRn=cucsComputeMbTempStatsRn, cucsComputeRackUnitMbTempStatsHistAmbientTemp=cucsComputeRackUnitMbTempStatsHistAmbientTemp, cucsComputeIOHubPerf=cucsComputeIOHubPerf, cucsComputeIOHubEnvStatsHistId=cucsComputeIOHubEnvStatsHistId, cucsComputeServerUnitFsmStageInstanceId=cucsComputeServerUnitFsmStageInstanceId, cucsComputeBoardControllerInstanceId=cucsComputeBoardControllerInstanceId, cucsComputeExtBoardLocationDn=cucsComputeExtBoardLocationDn, cucsComputeFwSyncAckChangeDetails=cucsComputeFwSyncAckChangeDetails, cucsComputeRtcBatteryThermal=cucsComputeRtcBatteryThermal, cucsComputePCIeFatalCompletionStatsDn=cucsComputePCIeFatalCompletionStatsDn, cucsComputePsuControlPolicyLevel=cucsComputePsuControlPolicyLevel, cucsComputePCIeFatalReceiveStatsErrNonFatalErrors1HourH=cucsComputePCIeFatalReceiveStatsErrNonFatalErrors1HourH, cucsComputeRtcBatteryLocationDn=cucsComputeRtcBatteryLocationDn, cucsComputeBladeUsrLbl=cucsComputeBladeUsrLbl, cucsComputeBladeFsmRmtRslt=cucsComputeBladeFsmRmtRslt, cucsComputePCIeFatalProtocolStatsFlowControlErrors1WeekH=cucsComputePCIeFatalProtocolStatsFlowControlErrors1WeekH, cucsComputeExtBoardPerf=cucsComputeExtBoardPerf, cucsComputePhysicalQualTable=cucsComputePhysicalQualTable, cucsComputePCIeFatalStatsAcsViolationErrors1Day=cucsComputePCIeFatalStatsAcsViolationErrors1Day, cucsComputeInstanceIdQualInstanceId=cucsComputeInstanceIdQualInstanceId, cucsComputeRackUnitVid=cucsComputeRackUnitVid, cucsComputeRackUnitMbTempStatsFrontTempMin=cucsComputeRackUnitMbTempStatsFrontTempMin, cucsComputeIOHubEnvStatsIntervals=cucsComputeIOHubEnvStatsIntervals, cucsComputeCartridgeRevision=cucsComputeCartridgeRevision, cucsComputePCIeFatalReceiveStatsUnsupportedRequestErrors15MinH=cucsComputePCIeFatalReceiveStatsUnsupportedRequestErrors15MinH, cucsComputeRackUnitMbTempStatsHistAmbientTempAvg=cucsComputeRackUnitMbTempStatsHistAmbientTempAvg, cucsComputeBladeEpInstanceId=cucsComputeBladeEpInstanceId, cucsComputePCIeFatalCompletionStatsRn=cucsComputePCIeFatalCompletionStatsRn, cucsComputeServerTypeCapRn=cucsComputeServerTypeCapRn, cucsComputePooledRackUnitPrevAssignedToDn=cucsComputePooledRackUnitPrevAssignedToDn, cucsComputePCIeFatalCompletionStatsUnexpectedErrors=cucsComputePCIeFatalCompletionStatsUnexpectedErrors, cucsComputePsuControlIntId=cucsComputePsuControlIntId, cucsComputePCIeFatalReceiveStatsErrNonFatalErrors1Hour=cucsComputePCIeFatalReceiveStatsErrNonFatalErrors1Hour, cucsComputeCartridgeOperability=cucsComputeCartridgeOperability, cucsComputeMemoryConfigPolicyIntId=cucsComputeMemoryConfigPolicyIntId, cucsComputeBoardConnectorBoardConnectorType=cucsComputeBoardConnectorBoardConnectorType, cucsComputeServerDiscPolicyFsmStageName=cucsComputeServerDiscPolicyFsmStageName, cucsComputeInstanceIdQualMinId=cucsComputeInstanceIdQualMinId, cucsComputeServerDiscPolicyFsmStageTable=cucsComputeServerDiscPolicyFsmStageTable, cucsComputePciCapOrder=cucsComputePciCapOrder, cucsComputeRackUnitSerial=cucsComputeRackUnitSerial, cucsComputePCIeFatalProtocolStatsFlowControlErrors1Hour=cucsComputePCIeFatalProtocolStatsFlowControlErrors1Hour, cucsComputeIOHubVendor=cucsComputeIOHubVendor, cucsComputeBladeUuid=cucsComputeBladeUuid, cucsComputeServerUnitFsmDescr=cucsComputeServerUnitFsmDescr, cucsComputePoolSize=cucsComputePoolSize, cucsComputeRackQualMaxId=cucsComputeRackQualMaxId, cucsComputeRackUnitAvailableMemory=cucsComputeRackUnitAvailableMemory, cucsComputeMbPowerStatsHistConsumedPower=cucsComputeMbPowerStatsHistConsumedPower, cucsComputePhysicalFsmStageLastUpdateTime=cucsComputePhysicalFsmStageLastUpdateTime, cucsComputeRtcBatteryOperability=cucsComputeRtcBatteryOperability, cucsComputePCIeFatalCompletionStatsUnexpectedErrors2Weeks=cucsComputePCIeFatalCompletionStatsUnexpectedErrors2Weeks, cucsComputePhysicalFsmStageRetry=cucsComputePhysicalFsmStageRetry, cucsComputeBladePolicyOwner=cucsComputeBladePolicyOwner, cucsComputeRackUnitFsmTry=cucsComputeRackUnitFsmTry, cucsComputePCIeFatalReceiveStatsUnsupportedRequestErrors1HourH=cucsComputePCIeFatalReceiveStatsUnsupportedRequestErrors1HourH, cucsComputeBladeNumOfAdaptors=cucsComputeBladeNumOfAdaptors, cucsComputeChassisDiscPolicyMulticastHwHash=cucsComputeChassisDiscPolicyMulticastHwHash, cucsComputeMbTempStatsSuspect=cucsComputeMbTempStatsSuspect, cucsComputePoolingPolicyPoolDn=cucsComputePoolingPolicyPoolDn, cucsComputePnuOSImageImgName=cucsComputePnuOSImageImgName, cucsComputeMbTempStatsHistMostRecent=cucsComputeMbTempStatsHistMostRecent, cucsComputePCIeFatalReceiveStatsUnsupportedRequestErrors1Hour=cucsComputePCIeFatalReceiveStatsUnsupportedRequestErrors1Hour, cucsComputePsuPolicyPolicyLevel=cucsComputePsuPolicyPolicyLevel, cucsComputeServerMgmtPolicyDn=cucsComputeServerMgmtPolicyDn, cucsComputeMbTempStatsFmTempSenRearMax=cucsComputeMbTempStatsFmTempSenRearMax, cucsComputeRackUnitFsmTaskInstanceId=cucsComputeRackUnitFsmTaskInstanceId, cucsComputeBladeFsmRmtInvErrDescr=cucsComputeBladeFsmRmtInvErrDescr, cucsComputePCIeFatalProtocolStatsDllpErrors1HourH=cucsComputePCIeFatalProtocolStatsDllpErrors1HourH, cucsComputePCIeFatalStatsSurpriseLinkDownErrors2Weeks=cucsComputePCIeFatalStatsSurpriseLinkDownErrors2Weeks, cucsComputeServerUnitServerInstanceId=cucsComputeServerUnitServerInstanceId, cucsComputePciSlotScanDefEntry=cucsComputePciSlotScanDefEntry, cucsComputePCIeFatalReceiveStatsUnsupportedRequestErrors2WeeksH=cucsComputePCIeFatalReceiveStatsUnsupportedRequestErrors2WeeksH, cucsComputeRackUnitNumOfThreads=cucsComputeRackUnitNumOfThreads, cucsComputePCIeFatalCompletionStatsTimeoutErrors15MinH=cucsComputePCIeFatalCompletionStatsTimeoutErrors15MinH, cucsComputePciSlotScanDefDescr=cucsComputePciSlotScanDefDescr, cucsComputeBladeDiscPolicyIntId=cucsComputeBladeDiscPolicyIntId, cucsComputeIOHubVoltage=cucsComputeIOHubVoltage, cucsComputeMbPowerStatsHistInputVoltageMax=cucsComputeMbPowerStatsHistInputVoltageMax, cucsComputeServerMgmtPolicyPolicyLevel=cucsComputeServerMgmtPolicyPolicyLevel, cucsComputePCIeFatalReceiveStatsErrFatalErrors1Week=cucsComputePCIeFatalReceiveStatsErrFatalErrors1Week, cucsComputeIOHubEnvStatsTemperatureAvg=cucsComputeIOHubEnvStatsTemperatureAvg, cucsComputeBoardLocationDn=cucsComputeBoardLocationDn, cucsComputePCIeFatalCompletionStatsThresholded=cucsComputePCIeFatalCompletionStatsThresholded, cucsComputeRackQualMinId=cucsComputeRackQualMinId, cucsComputeBladeFsmTaskEntry=cucsComputeBladeFsmTaskEntry, cucsComputePoolDescr=cucsComputePoolDescr, cucsComputePCIeFatalProtocolStatsEntry=cucsComputePCIeFatalProtocolStatsEntry, cucsComputeMbPowerStatsHistInputCurrentMax=cucsComputeMbPowerStatsHistInputCurrentMax, cucsComputeChassisDiscPolicyPolicyOwner=cucsComputeChassisDiscPolicyPolicyOwner, cucsComputeBladeEpEntry=cucsComputeBladeEpEntry, cucsComputeBoardOperQualifierReason=cucsComputeBoardOperQualifierReason, cucsComputeIOHubSerial=cucsComputeIOHubSerial, cucsComputeServerTypeCapType=cucsComputeServerTypeCapType, cucsComputePCIeFatalStatsPoisonedTLPErrors15MinH=cucsComputePCIeFatalStatsPoisonedTLPErrors15MinH, cucsComputeServerDiscPolicyFsmRmtInvErrDescr=cucsComputeServerDiscPolicyFsmRmtInvErrDescr, cucsComputeServerUnitNumOfFcHostIfs=cucsComputeServerUnitNumOfFcHostIfs, cucsComputePCIeFatalStatsSurpriseLinkDownErrors1DayH=cucsComputePCIeFatalStatsSurpriseLinkDownErrors1DayH, cucsComputePCIeFatalReceiveStatsErrFatalErrors15MinH=cucsComputePCIeFatalReceiveStatsErrFatalErrors15MinH, cucsComputeChassisQualDn=cucsComputeChassisQualDn, cucsComputeConstraintDefHwRevision=cucsComputeConstraintDefHwRevision, cucsComputeMbTempStatsHistDn=cucsComputeMbTempStatsHistDn, cucsComputeServerMgmtPolicyDescr=cucsComputeServerMgmtPolicyDescr, cucsComputeRackUnitRevision=cucsComputeRackUnitRevision, cucsComputeMbPowerStatsInputVoltageAvg=cucsComputeMbPowerStatsInputVoltageAvg, cucsComputeBladeFsmTable=cucsComputeBladeFsmTable, cucsComputeKvmMgmtPolicyInstanceId=cucsComputeKvmMgmtPolicyInstanceId, cucsComputeServerMgmtPolicyInstanceId=cucsComputeServerMgmtPolicyInstanceId, cucsComputeRackUnitMbTempStatsAmbientTempMin=cucsComputeRackUnitMbTempStatsAmbientTempMin, cucsComputePsuControlName=cucsComputePsuControlName, cucsComputeServerUnitPartNumber=cucsComputeServerUnitPartNumber, cucsComputeMbPowerStatsInputVoltageMin=cucsComputeMbPowerStatsInputVoltageMin, cucsComputePCIeFatalCompletionStatsTimeoutErrors1Hour=cucsComputePCIeFatalCompletionStatsTimeoutErrors1Hour, cucsComputeRackUnitFsmStageRn=cucsComputeRackUnitFsmStageRn, cucsComputeBoardControllerLocationDn=cucsComputeBoardControllerLocationDn, cucsComputePooledSlotInstanceId=cucsComputePooledSlotInstanceId, cucsComputeFwSyncAckTriggerConfigState=cucsComputeFwSyncAckTriggerConfigState, cucsComputeSlotQualInstanceId=cucsComputeSlotQualInstanceId, cucsComputePciSlotScanDefPolicyOwner=cucsComputePciSlotScanDefPolicyOwner, cucsComputeBoardControllerModel=cucsComputeBoardControllerModel, cucsComputeBladeEpAdminState=cucsComputeBladeEpAdminState, cucsComputeIOHubEnvStatsRn=cucsComputeIOHubEnvStatsRn, cucsComputeRackUnitMbTempStatsHistIoh2TempAvg=cucsComputeRackUnitMbTempStatsHistIoh2TempAvg, cucsComputePciSlotScanDefRn=cucsComputePciSlotScanDefRn, cucsComputeServerUnitMfgTime=cucsComputeServerUnitMfgTime, cucsComputeFwSyncAckChanges=cucsComputeFwSyncAckChanges, cucsComputePooledRackUnitDn=cucsComputePooledRackUnitDn, cucsComputePoolInstanceId=cucsComputePoolInstanceId, cucsComputeMbTempStatsFmTempSenRearRMin=cucsComputeMbTempStatsFmTempSenRearRMin, cucsComputeMemoryUnitConstraintDefTable=cucsComputeMemoryUnitConstraintDefTable, cucsComputeBoardControllerOperability=cucsComputeBoardControllerOperability, cucsComputeServerDiscPolicyFsmProgr=cucsComputeServerDiscPolicyFsmProgr, cucsComputeBladeModel=cucsComputeBladeModel, cucsComputePCIeFatalStatsSurpriseLinkDownErrors1Day=cucsComputePCIeFatalStatsSurpriseLinkDownErrors1Day, cucsComputePsuPolicyRedundancy=cucsComputePsuPolicyRedundancy, cucsComputePCIeFatalReceiveStatsRn=cucsComputePCIeFatalReceiveStatsRn, cucsComputeBladeDescr=cucsComputeBladeDescr, cucsComputeCartridgeTable=cucsComputeCartridgeTable, cucsComputeServerDiscPolicyFsmRmtInvRslt=cucsComputeServerDiscPolicyFsmRmtInvRslt, cucsComputePCIeFatalStatsMalformedTLPErrors1Week=cucsComputePCIeFatalStatsMalformedTLPErrors1Week, cucsComputeBoardConnectorMasterSlotId=cucsComputeBoardConnectorMasterSlotId, cucsComputePCIeFatalStatsSuspect=cucsComputePCIeFatalStatsSuspect, cucsComputeExtBoardVoltage=cucsComputeExtBoardVoltage, cucsComputeBladeFsmTaskRn=cucsComputeBladeFsmTaskRn, cucsComputeServerUnitNumOf40GAdaptorsWithUnknownFw=cucsComputeServerUnitNumOf40GAdaptorsWithUnknownFw, cucsComputeServerDiscPolicyFsmStageRetry=cucsComputeServerDiscPolicyFsmStageRetry, cucsComputePCIeFatalReceiveStatsUnsupportedRequestErrors=cucsComputePCIeFatalReceiveStatsUnsupportedRequestErrors, cucsComputeExtBoardEntry=cucsComputeExtBoardEntry, cucsComputeRackUnitLocalId=cucsComputeRackUnitLocalId, cucsComputeRtcBatteryPower=cucsComputeRtcBatteryPower, cucsComputeRackUnitNumOfEthHostIfs=cucsComputeRackUnitNumOfEthHostIfs, cucsComputeBladeFsmCurrentFsm=cucsComputeBladeFsmCurrentFsm, cucsComputePCIeFatalReceiveStatsErrFatalErrors=cucsComputePCIeFatalReceiveStatsErrFatalErrors, cucsComputeMbTempStatsTable=cucsComputeMbTempStatsTable, cucsComputePnuOSImageRn=cucsComputePnuOSImageRn, cucsComputeBladeEpEpDn=cucsComputeBladeEpEpDn, cucsComputeRackUnitMemorySpeed=cucsComputeRackUnitMemorySpeed, cucsComputeServerDiscPolicyQualifier=cucsComputeServerDiscPolicyQualifier, cucsComputePnuOSImageDn=cucsComputePnuOSImageDn, cucsComputeDefaultsDn=cucsComputeDefaultsDn, cucsComputePCIeFatalStatsAcsViolationErrors1Hour=cucsComputePCIeFatalStatsAcsViolationErrors1Hour, cucsComputeScrubPolicyBiosSettingsScrub=cucsComputeScrubPolicyBiosSettingsScrub) mibBuilder.exportSymbols("CISCO-UNIFIED-COMPUTING-COMPUTE-MIB", cucsComputeRackUnitMbTempStatsHistIoh1TempAvg=cucsComputeRackUnitMbTempStatsHistIoh1TempAvg, cucsComputePhysicalFsmStageTable=cucsComputePhysicalFsmStageTable, cucsComputePCIeFatalProtocolStatsDllpErrors=cucsComputePCIeFatalProtocolStatsDllpErrors, cucsComputePoolingPolicyDn=cucsComputePoolingPolicyDn, cucsComputeHealthLedSensorAlarmInstanceId=cucsComputeHealthLedSensorAlarmInstanceId, cucsComputeRackUnitMbTempStatsHistIoh1Temp=cucsComputeRackUnitMbTempStatsHistIoh1Temp, cucsComputePciCapDn=cucsComputePciCapDn, cucsComputePooledEnclosureComputeSlotServerInstanceId=cucsComputePooledEnclosureComputeSlotServerInstanceId, cucsComputeServerDiscPolicyFsmStageStageStatus=cucsComputeServerDiscPolicyFsmStageStageStatus, cucsComputeRackUnitFsmTaskRn=cucsComputeRackUnitFsmTaskRn, cucsComputePooledSlotSlotId=cucsComputePooledSlotSlotId, cucsComputeQualDescr=cucsComputeQualDescr, cucsComputeMbPowerStatsHistRn=cucsComputeMbPowerStatsHistRn, cucsComputePCIeFatalStatsAcsViolationErrors1HourH=cucsComputePCIeFatalStatsAcsViolationErrors1HourH, cucsComputePCIeFatalProtocolStatsTable=cucsComputePCIeFatalProtocolStatsTable, cucsComputeRackUnitFsmStageInstanceId=cucsComputeRackUnitFsmStageInstanceId, cucsComputeBladeFsmProgr=cucsComputeBladeFsmProgr, cucsComputeServerUnitServerId=cucsComputeServerUnitServerId, cucsComputeRackUnitMbTempStatsHistIoh1TempMin=cucsComputeRackUnitMbTempStatsHistIoh1TempMin, cucsComputeServerUnitRn=cucsComputeServerUnitRn, cucsComputeServerUnitFsmTaskDn=cucsComputeServerUnitFsmTaskDn, cucsComputePCIeFatalStatsRn=cucsComputePCIeFatalStatsRn, cucsComputeBladeFsmStageEntry=cucsComputeBladeFsmStageEntry, cucsComputeRackUnitAssignedToDn=cucsComputeRackUnitAssignedToDn, cucsComputePooledEnclosureComputeSlotSlotId=cucsComputePooledEnclosureComputeSlotSlotId, cucsComputeRackUnitMbTempStatsHistMostRecent=cucsComputeRackUnitMbTempStatsHistMostRecent, cucsComputeScrubPolicyIntId=cucsComputeScrubPolicyIntId, cucsComputeIOHubEnvStatsHistTemperatureAvg=cucsComputeIOHubEnvStatsHistTemperatureAvg, cucsComputeMbTempStatsFmTempSenRearRMax=cucsComputeMbTempStatsFmTempSenRearRMax, cucsComputeIOHubId=cucsComputeIOHubId, cucsComputeServerDiscPolicyFsmTaskSeqId=cucsComputeServerDiscPolicyFsmTaskSeqId, cucsComputeFwSyncAckModified=cucsComputeFwSyncAckModified, cucsComputeServerUnitFsmRmtRslt=cucsComputeServerUnitFsmRmtRslt, cucsComputeKvmMgmtPolicyIntId=cucsComputeKvmMgmtPolicyIntId, cucsComputePCIeFatalProtocolStatsInstanceId=cucsComputePCIeFatalProtocolStatsInstanceId, cucsComputePCIeFatalProtocolStatsFlowControlErrors=cucsComputePCIeFatalProtocolStatsFlowControlErrors, cucsComputeBladeFsmTaskItem=cucsComputeBladeFsmTaskItem, cucsComputeServerDiscPolicyFsmTaskItem=cucsComputeServerDiscPolicyFsmTaskItem)
0e2bbbc4a67fd094f67dd7d060888036adf62cba
030aef4b13a29246ef21342efea9b26f5620f0b0
/code/SWEA/1859_백만장자_프로젝트.py
757a273af12d8f69c335f163cf7e6678348557f7
[]
no_license
kyeah01/Problem_Solving
d70049efb72d09c4ea07a8dba9144d482857b36a
efec0486ec07843e085abf4e66cdf694fdde104b
refs/heads/master
2021-07-03T14:28:56.001123
2020-09-23T17:37:42
2020-09-23T17:37:42
176,175,363
0
0
null
null
null
null
UTF-8
Python
false
false
308
py
T = int(input()) for tc in range(1, T+1): N = int(input()) days = list(map(int, input().split())) max_index = N-(days[::-1].index(max(days))+1) ans = 0 # max_index까지 값을 구해야함 for i in range(max_index): ans += max(days) - days[i] if ans < 0: ans = 0
570430474d734ea45b7b4bf3c1ec9a6489e26a5b
a05716cdf916edb42efdcec4fd10c65bdd043f3d
/elasticsearch/_async/client/monitoring.py
2f7b570d21a89b3af2d569d08af6dd9e023b1547
[ "Apache-2.0" ]
permissive
mesejo/elasticsearch-py
0a30e104f3f4e6b2426c1eb01ba51e5d86efab14
041a433de263482e306b3855ab67b93c03978966
refs/heads/master
2022-11-11T11:57:44.792382
2020-06-23T18:36:32
2020-06-23T18:36:32
274,199,907
0
0
Apache-2.0
2020-06-22T17:20:49
2020-06-22T17:20:49
null
UTF-8
Python
false
false
1,494
py
# Licensed to Elasticsearch B.V under one or more agreements. # Elasticsearch B.V licenses this file to you under the Apache 2.0 License. # See the LICENSE file in the project root for more information from .utils import NamespacedClient, query_params, _make_path, SKIP_IN_PATH, _bulk_body class MonitoringClient(NamespacedClient): @query_params("interval", "system_api_version", "system_id") async def bulk(self, body, doc_type=None, params=None, headers=None): """ Used by the monitoring features to send monitoring data. `<https://www.elastic.co/guide/en/elasticsearch/reference/master/monitor-elasticsearch-cluster.html>`_ :arg body: The operation definition and data (action-data pairs), separated by newlines :arg doc_type: Default document type for items which don't provide one :arg interval: Collection interval (e.g., '10s' or '10000ms') of the payload :arg system_api_version: API Version of the monitored system :arg system_id: Identifier of the monitored system """ if body in SKIP_IN_PATH: raise ValueError("Empty value passed for a required argument 'body'.") body = _bulk_body(self.transport.serializer, body) return await self.transport.perform_request( "POST", _make_path("_monitoring", doc_type, "bulk"), params=params, headers=headers, body=body, )
4f6e98d736958850f3715a80606ca28c7eabddf4
f3b233e5053e28fa95c549017bd75a30456eb50c
/tyk2_input/43/43-31_wat_20Abox/set_1ns_equi_m.py
eeadbfffcabc77af30b8d082f6dcced30aacc839
[]
no_license
AnguseZhang/Input_TI
ddf2ed40ff1c0aa24eea3275b83d4d405b50b820
50ada0833890be9e261c967d00948f998313cb60
refs/heads/master
2021-05-25T15:02:38.858785
2020-02-18T16:57:04
2020-02-18T16:57:04
null
0
0
null
null
null
null
UTF-8
Python
false
false
923
py
import os dir = '/mnt/scratch/songlin3/run/tyk2/L43/wat_20Abox/ti_one-step/43_31/' filesdir = dir + 'files/' temp_equiin = filesdir + 'temp_equi_m.in' temp_pbs = filesdir + 'temp_1ns_equi_m.pbs' lambd = [ 0.00922, 0.04794, 0.11505, 0.20634, 0.31608, 0.43738, 0.56262, 0.68392, 0.79366, 0.88495, 0.95206, 0.99078] for j in lambd: os.system("rm -r %6.5f" %(j)) os.system("mkdir %6.5f" %(j)) os.chdir("%6.5f" %(j)) os.system("rm *") workdir = dir + "%6.5f" %(j) + '/' #equiin eqin = workdir + "%6.5f_equi_m.in" %(j) os.system("cp %s %s" %(temp_equiin, eqin)) os.system("sed -i 's/XXX/%6.5f/g' %s" %(j, eqin)) #PBS pbs = workdir + "%6.5f_1ns_equi.pbs" %(j) os.system("cp %s %s" %(temp_pbs, pbs)) os.system("sed -i 's/XXX/%6.5f/g' %s" %(j, pbs)) #top os.system("cp ../43-31_merged.prmtop .") os.system("cp ../0.5_equi_0_3.rst .") #submit pbs os.system("qsub %s" %(pbs)) os.chdir(dir)
44ea4283cb706f70dc5b653285510c61915d9fcb
931a3304ea280d0a160acb87e770d353368d7d7d
/vendor/swagger_client/models/get_characters_character_id_mail_labels_ok.py
c6952fb75c441a4204eea1c255bb24fb9afe18e6
[]
no_license
LukeS5310/Broadsword
c44786054e1911a96b02bf46fe4bdd0f5ad02f19
3ba53d446b382c79253dd3f92c397cca17623155
refs/heads/master
2021-09-08T00:05:26.296092
2017-10-24T07:01:48
2017-10-24T07:01:48
105,143,152
0
1
null
2017-11-03T14:29:38
2017-09-28T12:03:19
Python
UTF-8
Python
false
false
4,288
py
# coding: utf-8 """ EVE Swagger Interface An OpenAPI for EVE Online OpenAPI spec version: 0.6.2 Generated by: https://github.com/swagger-api/swagger-codegen.git """ from pprint import pformat from six import iteritems import re class GetCharactersCharacterIdMailLabelsOk(object): """ NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. """ def __init__(self, labels=None, total_unread_count=None): """ GetCharactersCharacterIdMailLabelsOk - a model defined in Swagger :param dict swaggerTypes: The key is attribute name and the value is attribute type. :param dict attributeMap: The key is attribute name and the value is json key in definition. """ self.swagger_types = { 'labels': 'list[GetCharactersCharacterIdMailLabelsLabel]', 'total_unread_count': 'int' } self.attribute_map = { 'labels': 'labels', 'total_unread_count': 'total_unread_count' } self._labels = labels self._total_unread_count = total_unread_count @property def labels(self): """ Gets the labels of this GetCharactersCharacterIdMailLabelsOk. labels array :return: The labels of this GetCharactersCharacterIdMailLabelsOk. :rtype: list[GetCharactersCharacterIdMailLabelsLabel] """ return self._labels @labels.setter def labels(self, labels): """ Sets the labels of this GetCharactersCharacterIdMailLabelsOk. labels array :param labels: The labels of this GetCharactersCharacterIdMailLabelsOk. :type: list[GetCharactersCharacterIdMailLabelsLabel] """ self._labels = labels @property def total_unread_count(self): """ Gets the total_unread_count of this GetCharactersCharacterIdMailLabelsOk. total_unread_count integer :return: The total_unread_count of this GetCharactersCharacterIdMailLabelsOk. :rtype: int """ return self._total_unread_count @total_unread_count.setter def total_unread_count(self, total_unread_count): """ Sets the total_unread_count of this GetCharactersCharacterIdMailLabelsOk. total_unread_count integer :param total_unread_count: The total_unread_count of this GetCharactersCharacterIdMailLabelsOk. :type: int """ if total_unread_count is not None and total_unread_count < 0: raise ValueError("Invalid value for `total_unread_count`, must be a value greater than or equal to `0`") self._total_unread_count = total_unread_count def to_dict(self): """ Returns the model properties as a dict """ result = {} for attr, _ in iteritems(self.swagger_types): value = getattr(self, attr) if isinstance(value, list): result[attr] = list(map( lambda x: x.to_dict() if hasattr(x, "to_dict") else x, value )) elif hasattr(value, "to_dict"): result[attr] = value.to_dict() elif isinstance(value, dict): result[attr] = dict(map( lambda item: (item[0], item[1].to_dict()) if hasattr(item[1], "to_dict") else item, value.items() )) else: result[attr] = value return result def to_str(self): """ Returns the string representation of the model """ return pformat(self.to_dict()) def __repr__(self): """ For `print` and `pprint` """ return self.to_str() def __eq__(self, other): """ Returns true if both objects are equal """ if not isinstance(other, GetCharactersCharacterIdMailLabelsOk): return False return self.__dict__ == other.__dict__ def __ne__(self, other): """ Returns true if both objects are not equal """ return not self == other
15fc40bda909702b808b9f6a350ed20b9f7666e1
62484d13c69e2b37998e1338a84d1b798afe93cf
/funcExamples/PhraseRepeated.py
416eff424fab19dd0cd41fb5983fbcb10f520f62
[]
no_license
sathayas/PythonClassFall2019
029514f6d7de9d339261b420d19778271cb2d892
7ee9e53370e75691650d65aa5bdb01963468f091
refs/heads/master
2020-06-30T19:04:37.348185
2019-11-21T21:16:12
2019-11-21T21:16:12
200,921,316
1
0
null
null
null
null
UTF-8
Python
false
false
82
py
def RepPhrase(word, times): print((word + ' ') * times) RepPhrase('Wow!', 3)
ef3f05716502649f5e7d9ddc4e67ec5912e7270a
3851d5eafcc5fd240a06a7d95a925518412cafa0
/Django_Code/gs28/gs28/asgi.py
e1f1a15c27ff9ec6f8b42b0f1666ea6af01dd283
[]
no_license
Ikshansaleem/DjangoandRest
c0fafaecde13570ffd1d5f08019e04e1212cc2f3
0ccc620ca609b4ab99a9efa650b5893ba65de3c5
refs/heads/master
2023-01-31T04:37:57.746016
2020-12-10T06:27:24
2020-12-10T06:27:24
320,180,735
0
0
null
null
null
null
UTF-8
Python
false
false
401
py
""" ASGI config for gs28 project. It exposes the ASGI callable as a module-level variable named ``application``. For more information on this file, see https://docs.djangoproject.com/en/3.0/howto/deployment/asgi/ """ import os from django.core.asgi import get_asgi_application os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'gs28.settings') application = get_asgi_application()
56658b1b204f9655fbd8f8276cc516986cabee06
3e6dffad73b8d5024024b52b044c57a05e7e9655
/assets/2019-11-30/commondb_server.py
6b08cb78bef355870da187cefdbe820cdc3509bc
[ "MIT" ]
permissive
dhilipsiva/talks
07f33b162d8db6e20e3d5974576d71c273629187
05581b6b8fdd0598d4ffed4bf75204d718719ed9
refs/heads/master
2022-08-05T12:27:39.932612
2022-07-21T07:43:36
2022-07-21T07:43:36
68,734,565
5
3
MIT
2021-07-30T11:24:12
2016-09-20T17:05:44
Python
UTF-8
Python
false
false
1,022
py
from concurrent.futures import ThreadPoolExecutor import grpc from grpc_opentracing.grpcext import intercept_server from grpc_opentracing import open_tracing_server_interceptor from github_pb2 import Reply from utils import get_config, wait_for_termination from github_pb2_grpc import CommonDBServicer, add_CommonDBServicer_to_server class CommonDB(CommonDBServicer): def GetCommonData(self, request, context): print(request, context) return Reply(msg='commondb') def serve(): config = get_config('commondb-server') tracer = config.initialize_tracer() tracer_interceptor = open_tracing_server_interceptor( tracer, log_payloads=True) server = grpc.server(ThreadPoolExecutor(max_workers=10)) server = intercept_server(server, tracer_interceptor) add_CommonDBServicer_to_server(CommonDB(), server) server.add_insecure_port('[::]:50053') server.start() wait_for_termination() server.stop(0) tracer.close() if __name__ == '__main__': serve()
678a035115b9bab5ee37b4008fa8b1f71d3795dc
91b80ef798cbcdaab7f6ae0be994f5a3b12f1515
/198.py
155ed9d04a687a65692c489eeaa6c5e9ef28c808
[]
no_license
luckkyzhou/leetcode
13377565a1cc2c7861601ca5d55f6b83c63d490e
43bcf65d31f1b729ac8ca293635f46ffbe03c80b
refs/heads/master
2021-06-21T11:26:06.114096
2021-03-24T21:06:15
2021-03-24T21:06:15
205,568,339
0
1
null
null
null
null
UTF-8
Python
false
false
271
py
from typing import List class Solution: def rob(self, nums: List[int]) -> int: prevMax = 0 curMax = 0 for num in nums: temp = curMax curMax = max(prevMax + num, curMax) prevMax = temp return curMax
10b521f82bc66ef9eca34617899ca120391d14d3
00820b522cc16bf996f1ef44a94a2f31989c4065
/abc/abc144/c.py
6932b9a69d517fcc35addc7fce7e72fb3b8071b0
[]
no_license
yamato1992/at_coder
6dffd425163a37a04e37507743a15f67b29239fc
6e0ec47267ed3cae62aebdd3d149f6191fdcae27
refs/heads/master
2020-08-31T11:17:03.500616
2020-06-12T15:45:58
2020-06-12T15:45:58
218,678,043
0
0
null
null
null
null
UTF-8
Python
false
false
200
py
import math INF = 1e12 n = int(input()) cnt = INF m = math.sqrt(n) for i in range(1, math.ceil(m) + 1): if n % i == 0: j = n // i cnt = min(cnt, i + j - 2) else: continue print(cnt)
bfc96905759dddb3a1e1d364586c7779eb1c0fcf
d6589ff7cf647af56938a9598f9e2e674c0ae6b5
/clickhouse-20191111/alibabacloud_clickhouse20191111/client.py
a17bbd2e8b2d107874e65eb08969dd3eae30d01f
[ "Apache-2.0" ]
permissive
hazho/alibabacloud-python-sdk
55028a0605b1509941269867a043f8408fa8c296
cddd32154bb8c12e50772fec55429a9a97f3efd9
refs/heads/master
2023-07-01T17:51:57.893326
2021-08-02T08:55:22
2021-08-02T08:55:22
null
0
0
null
null
null
null
UTF-8
Python
false
false
110,610
py
# -*- coding: utf-8 -*- # This file is auto-generated, don't edit it. Thanks. from typing import Dict from Tea.core import TeaCore from alibabacloud_tea_openapi.client import Client as OpenApiClient from alibabacloud_tea_openapi import models as open_api_models from alibabacloud_tea_util.client import Client as UtilClient from alibabacloud_endpoint_util.client import Client as EndpointUtilClient from alibabacloud_clickhouse20191111 import models as clickhouse_20191111_models from alibabacloud_tea_util import models as util_models class Client(OpenApiClient): """ *\ """ def __init__( self, config: open_api_models.Config, ): super().__init__(config) self._endpoint_rule = 'regional' self._endpoint_map = { 'ap-northeast-2-pop': 'clickhouse.aliyuncs.com', 'ap-southeast-1': 'clickhouse.aliyuncs.com', 'cn-beijing': 'clickhouse.aliyuncs.com', 'cn-beijing-finance-1': 'clickhouse.aliyuncs.com', 'cn-beijing-finance-pop': 'clickhouse.aliyuncs.com', 'cn-beijing-gov-1': 'clickhouse.aliyuncs.com', 'cn-beijing-nu16-b01': 'clickhouse.aliyuncs.com', 'cn-edge-1': 'clickhouse.aliyuncs.com', 'cn-fujian': 'clickhouse.aliyuncs.com', 'cn-haidian-cm12-c01': 'clickhouse.aliyuncs.com', 'cn-hangzhou': 'clickhouse.aliyuncs.com', 'cn-hangzhou-bj-b01': 'clickhouse.aliyuncs.com', 'cn-hangzhou-finance': 'clickhouse.aliyuncs.com', 'cn-hangzhou-internal-prod-1': 'clickhouse.aliyuncs.com', 'cn-hangzhou-internal-test-1': 'clickhouse.aliyuncs.com', 'cn-hangzhou-internal-test-2': 'clickhouse.aliyuncs.com', 'cn-hangzhou-internal-test-3': 'clickhouse.aliyuncs.com', 'cn-hangzhou-test-306': 'clickhouse.aliyuncs.com', 'cn-hongkong': 'clickhouse.aliyuncs.com', 'cn-hongkong-finance-pop': 'clickhouse.aliyuncs.com', 'cn-north-2-gov-1': 'clickhouse.aliyuncs.com', 'cn-qingdao': 'clickhouse.aliyuncs.com', 'cn-qingdao-nebula': 'clickhouse.aliyuncs.com', 'cn-shanghai': 'clickhouse.aliyuncs.com', 'cn-shanghai-et15-b01': 'clickhouse.aliyuncs.com', 'cn-shanghai-et2-b01': 'clickhouse.aliyuncs.com', 'cn-shanghai-finance-1': 'clickhouse.aliyuncs.com', 'cn-shanghai-inner': 'clickhouse.aliyuncs.com', 'cn-shanghai-internal-test-1': 'clickhouse.aliyuncs.com', 'cn-shenzhen': 'clickhouse.aliyuncs.com', 'cn-shenzhen-finance-1': 'clickhouse.aliyuncs.com', 'cn-shenzhen-inner': 'clickhouse.aliyuncs.com', 'cn-shenzhen-st4-d01': 'clickhouse.aliyuncs.com', 'cn-shenzhen-su18-b01': 'clickhouse.aliyuncs.com', 'cn-wuhan': 'clickhouse.aliyuncs.com', 'cn-yushanfang': 'clickhouse.aliyuncs.com', 'cn-zhangbei-na61-b01': 'clickhouse.aliyuncs.com', 'cn-zhangjiakou-na62-a01': 'clickhouse.aliyuncs.com', 'cn-zhengzhou-nebula-1': 'clickhouse.aliyuncs.com', 'eu-west-1-oxs': 'clickhouse.aliyuncs.com', 'me-east-1': 'clickhouse.aliyuncs.com', 'rus-west-1-pop': 'clickhouse.aliyuncs.com', 'us-east-1': 'clickhouse.aliyuncs.com', 'us-west-1': 'clickhouse.aliyuncs.com' } self.check_config(config) self._endpoint = self.get_endpoint('clickhouse', self._region_id, self._endpoint_rule, self._network, self._suffix, self._endpoint_map, self._endpoint) def get_endpoint( self, product_id: str, region_id: str, endpoint_rule: str, network: str, suffix: str, endpoint_map: Dict[str, str], endpoint: str, ) -> str: if not UtilClient.empty(endpoint): return endpoint if not UtilClient.is_unset(endpoint_map) and not UtilClient.empty(endpoint_map.get(region_id)): return endpoint_map.get(region_id) return EndpointUtilClient.get_endpoint_rules(product_id, region_id, endpoint_rule, network, suffix) def describe_account_authority_with_options( self, request: clickhouse_20191111_models.DescribeAccountAuthorityRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.DescribeAccountAuthorityResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.DescribeAccountAuthorityResponse(), self.do_rpcrequest('DescribeAccountAuthority', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) async def describe_account_authority_with_options_async( self, request: clickhouse_20191111_models.DescribeAccountAuthorityRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.DescribeAccountAuthorityResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.DescribeAccountAuthorityResponse(), await self.do_rpcrequest_async('DescribeAccountAuthority', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) def describe_account_authority( self, request: clickhouse_20191111_models.DescribeAccountAuthorityRequest, ) -> clickhouse_20191111_models.DescribeAccountAuthorityResponse: runtime = util_models.RuntimeOptions() return self.describe_account_authority_with_options(request, runtime) async def describe_account_authority_async( self, request: clickhouse_20191111_models.DescribeAccountAuthorityRequest, ) -> clickhouse_20191111_models.DescribeAccountAuthorityResponse: runtime = util_models.RuntimeOptions() return await self.describe_account_authority_with_options_async(request, runtime) def create_service_linked_role_with_options( self, request: clickhouse_20191111_models.CreateServiceLinkedRoleRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.CreateServiceLinkedRoleResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.CreateServiceLinkedRoleResponse(), self.do_rpcrequest('CreateServiceLinkedRole', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) async def create_service_linked_role_with_options_async( self, request: clickhouse_20191111_models.CreateServiceLinkedRoleRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.CreateServiceLinkedRoleResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.CreateServiceLinkedRoleResponse(), await self.do_rpcrequest_async('CreateServiceLinkedRole', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) def create_service_linked_role( self, request: clickhouse_20191111_models.CreateServiceLinkedRoleRequest, ) -> clickhouse_20191111_models.CreateServiceLinkedRoleResponse: runtime = util_models.RuntimeOptions() return self.create_service_linked_role_with_options(request, runtime) async def create_service_linked_role_async( self, request: clickhouse_20191111_models.CreateServiceLinkedRoleRequest, ) -> clickhouse_20191111_models.CreateServiceLinkedRoleResponse: runtime = util_models.RuntimeOptions() return await self.create_service_linked_role_with_options_async(request, runtime) def describe_lorne_tasks_with_options( self, request: clickhouse_20191111_models.DescribeLorneTasksRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.DescribeLorneTasksResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.DescribeLorneTasksResponse(), self.do_rpcrequest('DescribeLorneTasks', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) async def describe_lorne_tasks_with_options_async( self, request: clickhouse_20191111_models.DescribeLorneTasksRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.DescribeLorneTasksResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.DescribeLorneTasksResponse(), await self.do_rpcrequest_async('DescribeLorneTasks', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) def describe_lorne_tasks( self, request: clickhouse_20191111_models.DescribeLorneTasksRequest, ) -> clickhouse_20191111_models.DescribeLorneTasksResponse: runtime = util_models.RuntimeOptions() return self.describe_lorne_tasks_with_options(request, runtime) async def describe_lorne_tasks_async( self, request: clickhouse_20191111_models.DescribeLorneTasksRequest, ) -> clickhouse_20191111_models.DescribeLorneTasksResponse: runtime = util_models.RuntimeOptions() return await self.describe_lorne_tasks_with_options_async(request, runtime) def describe_dbcluster_performance_with_options( self, request: clickhouse_20191111_models.DescribeDBClusterPerformanceRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.DescribeDBClusterPerformanceResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.DescribeDBClusterPerformanceResponse(), self.do_rpcrequest('DescribeDBClusterPerformance', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) async def describe_dbcluster_performance_with_options_async( self, request: clickhouse_20191111_models.DescribeDBClusterPerformanceRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.DescribeDBClusterPerformanceResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.DescribeDBClusterPerformanceResponse(), await self.do_rpcrequest_async('DescribeDBClusterPerformance', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) def describe_dbcluster_performance( self, request: clickhouse_20191111_models.DescribeDBClusterPerformanceRequest, ) -> clickhouse_20191111_models.DescribeDBClusterPerformanceResponse: runtime = util_models.RuntimeOptions() return self.describe_dbcluster_performance_with_options(request, runtime) async def describe_dbcluster_performance_async( self, request: clickhouse_20191111_models.DescribeDBClusterPerformanceRequest, ) -> clickhouse_20191111_models.DescribeDBClusterPerformanceResponse: runtime = util_models.RuntimeOptions() return await self.describe_dbcluster_performance_with_options_async(request, runtime) def modify_dbcluster_config_with_options( self, request: clickhouse_20191111_models.ModifyDBClusterConfigRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.ModifyDBClusterConfigResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.ModifyDBClusterConfigResponse(), self.do_rpcrequest('ModifyDBClusterConfig', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) async def modify_dbcluster_config_with_options_async( self, request: clickhouse_20191111_models.ModifyDBClusterConfigRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.ModifyDBClusterConfigResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.ModifyDBClusterConfigResponse(), await self.do_rpcrequest_async('ModifyDBClusterConfig', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) def modify_dbcluster_config( self, request: clickhouse_20191111_models.ModifyDBClusterConfigRequest, ) -> clickhouse_20191111_models.ModifyDBClusterConfigResponse: runtime = util_models.RuntimeOptions() return self.modify_dbcluster_config_with_options(request, runtime) async def modify_dbcluster_config_async( self, request: clickhouse_20191111_models.ModifyDBClusterConfigRequest, ) -> clickhouse_20191111_models.ModifyDBClusterConfigResponse: runtime = util_models.RuntimeOptions() return await self.modify_dbcluster_config_with_options_async(request, runtime) def modify_account_description_with_options( self, request: clickhouse_20191111_models.ModifyAccountDescriptionRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.ModifyAccountDescriptionResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.ModifyAccountDescriptionResponse(), self.do_rpcrequest('ModifyAccountDescription', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) async def modify_account_description_with_options_async( self, request: clickhouse_20191111_models.ModifyAccountDescriptionRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.ModifyAccountDescriptionResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.ModifyAccountDescriptionResponse(), await self.do_rpcrequest_async('ModifyAccountDescription', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) def modify_account_description( self, request: clickhouse_20191111_models.ModifyAccountDescriptionRequest, ) -> clickhouse_20191111_models.ModifyAccountDescriptionResponse: runtime = util_models.RuntimeOptions() return self.modify_account_description_with_options(request, runtime) async def modify_account_description_async( self, request: clickhouse_20191111_models.ModifyAccountDescriptionRequest, ) -> clickhouse_20191111_models.ModifyAccountDescriptionResponse: runtime = util_models.RuntimeOptions() return await self.modify_account_description_with_options_async(request, runtime) def describe_dbcluster_config_with_options( self, request: clickhouse_20191111_models.DescribeDBClusterConfigRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.DescribeDBClusterConfigResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.DescribeDBClusterConfigResponse(), self.do_rpcrequest('DescribeDBClusterConfig', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) async def describe_dbcluster_config_with_options_async( self, request: clickhouse_20191111_models.DescribeDBClusterConfigRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.DescribeDBClusterConfigResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.DescribeDBClusterConfigResponse(), await self.do_rpcrequest_async('DescribeDBClusterConfig', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) def describe_dbcluster_config( self, request: clickhouse_20191111_models.DescribeDBClusterConfigRequest, ) -> clickhouse_20191111_models.DescribeDBClusterConfigResponse: runtime = util_models.RuntimeOptions() return self.describe_dbcluster_config_with_options(request, runtime) async def describe_dbcluster_config_async( self, request: clickhouse_20191111_models.DescribeDBClusterConfigRequest, ) -> clickhouse_20191111_models.DescribeDBClusterConfigResponse: runtime = util_models.RuntimeOptions() return await self.describe_dbcluster_config_with_options_async(request, runtime) def describe_ossstorage_with_options( self, request: clickhouse_20191111_models.DescribeOSSStorageRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.DescribeOSSStorageResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.DescribeOSSStorageResponse(), self.do_rpcrequest('DescribeOSSStorage', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) async def describe_ossstorage_with_options_async( self, request: clickhouse_20191111_models.DescribeOSSStorageRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.DescribeOSSStorageResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.DescribeOSSStorageResponse(), await self.do_rpcrequest_async('DescribeOSSStorage', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) def describe_ossstorage( self, request: clickhouse_20191111_models.DescribeOSSStorageRequest, ) -> clickhouse_20191111_models.DescribeOSSStorageResponse: runtime = util_models.RuntimeOptions() return self.describe_ossstorage_with_options(request, runtime) async def describe_ossstorage_async( self, request: clickhouse_20191111_models.DescribeOSSStorageRequest, ) -> clickhouse_20191111_models.DescribeOSSStorageResponse: runtime = util_models.RuntimeOptions() return await self.describe_ossstorage_with_options_async(request, runtime) def create_dbinstance_with_options( self, request: clickhouse_20191111_models.CreateDBInstanceRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.CreateDBInstanceResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.CreateDBInstanceResponse(), self.do_rpcrequest('CreateDBInstance', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) async def create_dbinstance_with_options_async( self, request: clickhouse_20191111_models.CreateDBInstanceRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.CreateDBInstanceResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.CreateDBInstanceResponse(), await self.do_rpcrequest_async('CreateDBInstance', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) def create_dbinstance( self, request: clickhouse_20191111_models.CreateDBInstanceRequest, ) -> clickhouse_20191111_models.CreateDBInstanceResponse: runtime = util_models.RuntimeOptions() return self.create_dbinstance_with_options(request, runtime) async def create_dbinstance_async( self, request: clickhouse_20191111_models.CreateDBInstanceRequest, ) -> clickhouse_20191111_models.CreateDBInstanceResponse: runtime = util_models.RuntimeOptions() return await self.create_dbinstance_with_options_async(request, runtime) def modify_dbconfig_with_options( self, request: clickhouse_20191111_models.ModifyDBConfigRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.ModifyDBConfigResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.ModifyDBConfigResponse(), self.do_rpcrequest('ModifyDBConfig', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) async def modify_dbconfig_with_options_async( self, request: clickhouse_20191111_models.ModifyDBConfigRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.ModifyDBConfigResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.ModifyDBConfigResponse(), await self.do_rpcrequest_async('ModifyDBConfig', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) def modify_dbconfig( self, request: clickhouse_20191111_models.ModifyDBConfigRequest, ) -> clickhouse_20191111_models.ModifyDBConfigResponse: runtime = util_models.RuntimeOptions() return self.modify_dbconfig_with_options(request, runtime) async def modify_dbconfig_async( self, request: clickhouse_20191111_models.ModifyDBConfigRequest, ) -> clickhouse_20191111_models.ModifyDBConfigResponse: runtime = util_models.RuntimeOptions() return await self.modify_dbconfig_with_options_async(request, runtime) def create_ports_for_click_house_with_options( self, request: clickhouse_20191111_models.CreatePortsForClickHouseRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.CreatePortsForClickHouseResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.CreatePortsForClickHouseResponse(), self.do_rpcrequest('CreatePortsForClickHouse', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) async def create_ports_for_click_house_with_options_async( self, request: clickhouse_20191111_models.CreatePortsForClickHouseRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.CreatePortsForClickHouseResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.CreatePortsForClickHouseResponse(), await self.do_rpcrequest_async('CreatePortsForClickHouse', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) def create_ports_for_click_house( self, request: clickhouse_20191111_models.CreatePortsForClickHouseRequest, ) -> clickhouse_20191111_models.CreatePortsForClickHouseResponse: runtime = util_models.RuntimeOptions() return self.create_ports_for_click_house_with_options(request, runtime) async def create_ports_for_click_house_async( self, request: clickhouse_20191111_models.CreatePortsForClickHouseRequest, ) -> clickhouse_20191111_models.CreatePortsForClickHouseResponse: runtime = util_models.RuntimeOptions() return await self.create_ports_for_click_house_with_options_async(request, runtime) def delete_dbcluster_with_options( self, request: clickhouse_20191111_models.DeleteDBClusterRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.DeleteDBClusterResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.DeleteDBClusterResponse(), self.do_rpcrequest('DeleteDBCluster', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) async def delete_dbcluster_with_options_async( self, request: clickhouse_20191111_models.DeleteDBClusterRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.DeleteDBClusterResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.DeleteDBClusterResponse(), await self.do_rpcrequest_async('DeleteDBCluster', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) def delete_dbcluster( self, request: clickhouse_20191111_models.DeleteDBClusterRequest, ) -> clickhouse_20191111_models.DeleteDBClusterResponse: runtime = util_models.RuntimeOptions() return self.delete_dbcluster_with_options(request, runtime) async def delete_dbcluster_async( self, request: clickhouse_20191111_models.DeleteDBClusterRequest, ) -> clickhouse_20191111_models.DeleteDBClusterResponse: runtime = util_models.RuntimeOptions() return await self.delete_dbcluster_with_options_async(request, runtime) def describe_slow_log_trend_with_options( self, request: clickhouse_20191111_models.DescribeSlowLogTrendRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.DescribeSlowLogTrendResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.DescribeSlowLogTrendResponse(), self.do_rpcrequest('DescribeSlowLogTrend', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) async def describe_slow_log_trend_with_options_async( self, request: clickhouse_20191111_models.DescribeSlowLogTrendRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.DescribeSlowLogTrendResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.DescribeSlowLogTrendResponse(), await self.do_rpcrequest_async('DescribeSlowLogTrend', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) def describe_slow_log_trend( self, request: clickhouse_20191111_models.DescribeSlowLogTrendRequest, ) -> clickhouse_20191111_models.DescribeSlowLogTrendResponse: runtime = util_models.RuntimeOptions() return self.describe_slow_log_trend_with_options(request, runtime) async def describe_slow_log_trend_async( self, request: clickhouse_20191111_models.DescribeSlowLogTrendRequest, ) -> clickhouse_20191111_models.DescribeSlowLogTrendResponse: runtime = util_models.RuntimeOptions() return await self.describe_slow_log_trend_with_options_async(request, runtime) def describe_available_resource_with_options( self, request: clickhouse_20191111_models.DescribeAvailableResourceRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.DescribeAvailableResourceResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.DescribeAvailableResourceResponse(), self.do_rpcrequest('DescribeAvailableResource', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) async def describe_available_resource_with_options_async( self, request: clickhouse_20191111_models.DescribeAvailableResourceRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.DescribeAvailableResourceResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.DescribeAvailableResourceResponse(), await self.do_rpcrequest_async('DescribeAvailableResource', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) def describe_available_resource( self, request: clickhouse_20191111_models.DescribeAvailableResourceRequest, ) -> clickhouse_20191111_models.DescribeAvailableResourceResponse: runtime = util_models.RuntimeOptions() return self.describe_available_resource_with_options(request, runtime) async def describe_available_resource_async( self, request: clickhouse_20191111_models.DescribeAvailableResourceRequest, ) -> clickhouse_20191111_models.DescribeAvailableResourceResponse: runtime = util_models.RuntimeOptions() return await self.describe_available_resource_with_options_async(request, runtime) def release_cluster_public_connection_with_options( self, request: clickhouse_20191111_models.ReleaseClusterPublicConnectionRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.ReleaseClusterPublicConnectionResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.ReleaseClusterPublicConnectionResponse(), self.do_rpcrequest('ReleaseClusterPublicConnection', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) async def release_cluster_public_connection_with_options_async( self, request: clickhouse_20191111_models.ReleaseClusterPublicConnectionRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.ReleaseClusterPublicConnectionResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.ReleaseClusterPublicConnectionResponse(), await self.do_rpcrequest_async('ReleaseClusterPublicConnection', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) def release_cluster_public_connection( self, request: clickhouse_20191111_models.ReleaseClusterPublicConnectionRequest, ) -> clickhouse_20191111_models.ReleaseClusterPublicConnectionResponse: runtime = util_models.RuntimeOptions() return self.release_cluster_public_connection_with_options(request, runtime) async def release_cluster_public_connection_async( self, request: clickhouse_20191111_models.ReleaseClusterPublicConnectionRequest, ) -> clickhouse_20191111_models.ReleaseClusterPublicConnectionResponse: runtime = util_models.RuntimeOptions() return await self.release_cluster_public_connection_with_options_async(request, runtime) def create_account_with_options( self, request: clickhouse_20191111_models.CreateAccountRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.CreateAccountResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.CreateAccountResponse(), self.do_rpcrequest('CreateAccount', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) async def create_account_with_options_async( self, request: clickhouse_20191111_models.CreateAccountRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.CreateAccountResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.CreateAccountResponse(), await self.do_rpcrequest_async('CreateAccount', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) def create_account( self, request: clickhouse_20191111_models.CreateAccountRequest, ) -> clickhouse_20191111_models.CreateAccountResponse: runtime = util_models.RuntimeOptions() return self.create_account_with_options(request, runtime) async def create_account_async( self, request: clickhouse_20191111_models.CreateAccountRequest, ) -> clickhouse_20191111_models.CreateAccountResponse: runtime = util_models.RuntimeOptions() return await self.create_account_with_options_async(request, runtime) def describe_log_store_keys_with_options( self, request: clickhouse_20191111_models.DescribeLogStoreKeysRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.DescribeLogStoreKeysResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.DescribeLogStoreKeysResponse(), self.do_rpcrequest('DescribeLogStoreKeys', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) async def describe_log_store_keys_with_options_async( self, request: clickhouse_20191111_models.DescribeLogStoreKeysRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.DescribeLogStoreKeysResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.DescribeLogStoreKeysResponse(), await self.do_rpcrequest_async('DescribeLogStoreKeys', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) def describe_log_store_keys( self, request: clickhouse_20191111_models.DescribeLogStoreKeysRequest, ) -> clickhouse_20191111_models.DescribeLogStoreKeysResponse: runtime = util_models.RuntimeOptions() return self.describe_log_store_keys_with_options(request, runtime) async def describe_log_store_keys_async( self, request: clickhouse_20191111_models.DescribeLogStoreKeysRequest, ) -> clickhouse_20191111_models.DescribeLogStoreKeysResponse: runtime = util_models.RuntimeOptions() return await self.describe_log_store_keys_with_options_async(request, runtime) def describe_process_list_with_options( self, request: clickhouse_20191111_models.DescribeProcessListRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.DescribeProcessListResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.DescribeProcessListResponse(), self.do_rpcrequest('DescribeProcessList', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) async def describe_process_list_with_options_async( self, request: clickhouse_20191111_models.DescribeProcessListRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.DescribeProcessListResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.DescribeProcessListResponse(), await self.do_rpcrequest_async('DescribeProcessList', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) def describe_process_list( self, request: clickhouse_20191111_models.DescribeProcessListRequest, ) -> clickhouse_20191111_models.DescribeProcessListResponse: runtime = util_models.RuntimeOptions() return self.describe_process_list_with_options(request, runtime) async def describe_process_list_async( self, request: clickhouse_20191111_models.DescribeProcessListRequest, ) -> clickhouse_20191111_models.DescribeProcessListResponse: runtime = util_models.RuntimeOptions() return await self.describe_process_list_with_options_async(request, runtime) def create_ossstorage_with_options( self, request: clickhouse_20191111_models.CreateOSSStorageRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.CreateOSSStorageResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.CreateOSSStorageResponse(), self.do_rpcrequest('CreateOSSStorage', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) async def create_ossstorage_with_options_async( self, request: clickhouse_20191111_models.CreateOSSStorageRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.CreateOSSStorageResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.CreateOSSStorageResponse(), await self.do_rpcrequest_async('CreateOSSStorage', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) def create_ossstorage( self, request: clickhouse_20191111_models.CreateOSSStorageRequest, ) -> clickhouse_20191111_models.CreateOSSStorageResponse: runtime = util_models.RuntimeOptions() return self.create_ossstorage_with_options(request, runtime) async def create_ossstorage_async( self, request: clickhouse_20191111_models.CreateOSSStorageRequest, ) -> clickhouse_20191111_models.CreateOSSStorageResponse: runtime = util_models.RuntimeOptions() return await self.create_ossstorage_with_options_async(request, runtime) def describe_tables_with_options( self, request: clickhouse_20191111_models.DescribeTablesRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.DescribeTablesResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.DescribeTablesResponse(), self.do_rpcrequest('DescribeTables', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) async def describe_tables_with_options_async( self, request: clickhouse_20191111_models.DescribeTablesRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.DescribeTablesResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.DescribeTablesResponse(), await self.do_rpcrequest_async('DescribeTables', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) def describe_tables( self, request: clickhouse_20191111_models.DescribeTablesRequest, ) -> clickhouse_20191111_models.DescribeTablesResponse: runtime = util_models.RuntimeOptions() return self.describe_tables_with_options(request, runtime) async def describe_tables_async( self, request: clickhouse_20191111_models.DescribeTablesRequest, ) -> clickhouse_20191111_models.DescribeTablesResponse: runtime = util_models.RuntimeOptions() return await self.describe_tables_with_options_async(request, runtime) def modify_backup_policy_with_options( self, request: clickhouse_20191111_models.ModifyBackupPolicyRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.ModifyBackupPolicyResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.ModifyBackupPolicyResponse(), self.do_rpcrequest('ModifyBackupPolicy', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) async def modify_backup_policy_with_options_async( self, request: clickhouse_20191111_models.ModifyBackupPolicyRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.ModifyBackupPolicyResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.ModifyBackupPolicyResponse(), await self.do_rpcrequest_async('ModifyBackupPolicy', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) def modify_backup_policy( self, request: clickhouse_20191111_models.ModifyBackupPolicyRequest, ) -> clickhouse_20191111_models.ModifyBackupPolicyResponse: runtime = util_models.RuntimeOptions() return self.modify_backup_policy_with_options(request, runtime) async def modify_backup_policy_async( self, request: clickhouse_20191111_models.ModifyBackupPolicyRequest, ) -> clickhouse_20191111_models.ModifyBackupPolicyResponse: runtime = util_models.RuntimeOptions() return await self.modify_backup_policy_with_options_async(request, runtime) def describe_lorne_tasks_mcount_with_options( self, request: clickhouse_20191111_models.DescribeLorneTasksMCountRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.DescribeLorneTasksMCountResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.DescribeLorneTasksMCountResponse(), self.do_rpcrequest('DescribeLorneTasksMCount', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) async def describe_lorne_tasks_mcount_with_options_async( self, request: clickhouse_20191111_models.DescribeLorneTasksMCountRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.DescribeLorneTasksMCountResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.DescribeLorneTasksMCountResponse(), await self.do_rpcrequest_async('DescribeLorneTasksMCount', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) def describe_lorne_tasks_mcount( self, request: clickhouse_20191111_models.DescribeLorneTasksMCountRequest, ) -> clickhouse_20191111_models.DescribeLorneTasksMCountResponse: runtime = util_models.RuntimeOptions() return self.describe_lorne_tasks_mcount_with_options(request, runtime) async def describe_lorne_tasks_mcount_async( self, request: clickhouse_20191111_models.DescribeLorneTasksMCountRequest, ) -> clickhouse_20191111_models.DescribeLorneTasksMCountResponse: runtime = util_models.RuntimeOptions() return await self.describe_lorne_tasks_mcount_with_options_async(request, runtime) def describe_dbconfig_with_options( self, request: clickhouse_20191111_models.DescribeDBConfigRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.DescribeDBConfigResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.DescribeDBConfigResponse(), self.do_rpcrequest('DescribeDBConfig', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) async def describe_dbconfig_with_options_async( self, request: clickhouse_20191111_models.DescribeDBConfigRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.DescribeDBConfigResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.DescribeDBConfigResponse(), await self.do_rpcrequest_async('DescribeDBConfig', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) def describe_dbconfig( self, request: clickhouse_20191111_models.DescribeDBConfigRequest, ) -> clickhouse_20191111_models.DescribeDBConfigResponse: runtime = util_models.RuntimeOptions() return self.describe_dbconfig_with_options(request, runtime) async def describe_dbconfig_async( self, request: clickhouse_20191111_models.DescribeDBConfigRequest, ) -> clickhouse_20191111_models.DescribeDBConfigResponse: runtime = util_models.RuntimeOptions() return await self.describe_dbconfig_with_options_async(request, runtime) def modify_account_authority_with_options( self, request: clickhouse_20191111_models.ModifyAccountAuthorityRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.ModifyAccountAuthorityResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.ModifyAccountAuthorityResponse(), self.do_rpcrequest('ModifyAccountAuthority', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) async def modify_account_authority_with_options_async( self, request: clickhouse_20191111_models.ModifyAccountAuthorityRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.ModifyAccountAuthorityResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.ModifyAccountAuthorityResponse(), await self.do_rpcrequest_async('ModifyAccountAuthority', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) def modify_account_authority( self, request: clickhouse_20191111_models.ModifyAccountAuthorityRequest, ) -> clickhouse_20191111_models.ModifyAccountAuthorityResponse: runtime = util_models.RuntimeOptions() return self.modify_account_authority_with_options(request, runtime) async def modify_account_authority_async( self, request: clickhouse_20191111_models.ModifyAccountAuthorityRequest, ) -> clickhouse_20191111_models.ModifyAccountAuthorityResponse: runtime = util_models.RuntimeOptions() return await self.modify_account_authority_with_options_async(request, runtime) def describe_lorne_log_with_options( self, request: clickhouse_20191111_models.DescribeLorneLogRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.DescribeLorneLogResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.DescribeLorneLogResponse(), self.do_rpcrequest('DescribeLorneLog', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) async def describe_lorne_log_with_options_async( self, request: clickhouse_20191111_models.DescribeLorneLogRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.DescribeLorneLogResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.DescribeLorneLogResponse(), await self.do_rpcrequest_async('DescribeLorneLog', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) def describe_lorne_log( self, request: clickhouse_20191111_models.DescribeLorneLogRequest, ) -> clickhouse_20191111_models.DescribeLorneLogResponse: runtime = util_models.RuntimeOptions() return self.describe_lorne_log_with_options(request, runtime) async def describe_lorne_log_async( self, request: clickhouse_20191111_models.DescribeLorneLogRequest, ) -> clickhouse_20191111_models.DescribeLorneLogResponse: runtime = util_models.RuntimeOptions() return await self.describe_lorne_log_with_options_async(request, runtime) def describe_all_data_sources_with_options( self, request: clickhouse_20191111_models.DescribeAllDataSourcesRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.DescribeAllDataSourcesResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.DescribeAllDataSourcesResponse(), self.do_rpcrequest('DescribeAllDataSources', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) async def describe_all_data_sources_with_options_async( self, request: clickhouse_20191111_models.DescribeAllDataSourcesRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.DescribeAllDataSourcesResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.DescribeAllDataSourcesResponse(), await self.do_rpcrequest_async('DescribeAllDataSources', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) def describe_all_data_sources( self, request: clickhouse_20191111_models.DescribeAllDataSourcesRequest, ) -> clickhouse_20191111_models.DescribeAllDataSourcesResponse: runtime = util_models.RuntimeOptions() return self.describe_all_data_sources_with_options(request, runtime) async def describe_all_data_sources_async( self, request: clickhouse_20191111_models.DescribeAllDataSourcesRequest, ) -> clickhouse_20191111_models.DescribeAllDataSourcesResponse: runtime = util_models.RuntimeOptions() return await self.describe_all_data_sources_with_options_async(request, runtime) def operate_lorne_task_status_with_options( self, request: clickhouse_20191111_models.OperateLorneTaskStatusRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.OperateLorneTaskStatusResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.OperateLorneTaskStatusResponse(), self.do_rpcrequest('OperateLorneTaskStatus', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) async def operate_lorne_task_status_with_options_async( self, request: clickhouse_20191111_models.OperateLorneTaskStatusRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.OperateLorneTaskStatusResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.OperateLorneTaskStatusResponse(), await self.do_rpcrequest_async('OperateLorneTaskStatus', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) def operate_lorne_task_status( self, request: clickhouse_20191111_models.OperateLorneTaskStatusRequest, ) -> clickhouse_20191111_models.OperateLorneTaskStatusResponse: runtime = util_models.RuntimeOptions() return self.operate_lorne_task_status_with_options(request, runtime) async def operate_lorne_task_status_async( self, request: clickhouse_20191111_models.OperateLorneTaskStatusRequest, ) -> clickhouse_20191111_models.OperateLorneTaskStatusResponse: runtime = util_models.RuntimeOptions() return await self.operate_lorne_task_status_with_options_async(request, runtime) def describe_dbcluster_attribute_with_options( self, request: clickhouse_20191111_models.DescribeDBClusterAttributeRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.DescribeDBClusterAttributeResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.DescribeDBClusterAttributeResponse(), self.do_rpcrequest('DescribeDBClusterAttribute', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) async def describe_dbcluster_attribute_with_options_async( self, request: clickhouse_20191111_models.DescribeDBClusterAttributeRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.DescribeDBClusterAttributeResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.DescribeDBClusterAttributeResponse(), await self.do_rpcrequest_async('DescribeDBClusterAttribute', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) def describe_dbcluster_attribute( self, request: clickhouse_20191111_models.DescribeDBClusterAttributeRequest, ) -> clickhouse_20191111_models.DescribeDBClusterAttributeResponse: runtime = util_models.RuntimeOptions() return self.describe_dbcluster_attribute_with_options(request, runtime) async def describe_dbcluster_attribute_async( self, request: clickhouse_20191111_models.DescribeDBClusterAttributeRequest, ) -> clickhouse_20191111_models.DescribeDBClusterAttributeResponse: runtime = util_models.RuntimeOptions() return await self.describe_dbcluster_attribute_with_options_async(request, runtime) def delete_lorne_task_with_options( self, request: clickhouse_20191111_models.DeleteLorneTaskRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.DeleteLorneTaskResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.DeleteLorneTaskResponse(), self.do_rpcrequest('DeleteLorneTask', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) async def delete_lorne_task_with_options_async( self, request: clickhouse_20191111_models.DeleteLorneTaskRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.DeleteLorneTaskResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.DeleteLorneTaskResponse(), await self.do_rpcrequest_async('DeleteLorneTask', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) def delete_lorne_task( self, request: clickhouse_20191111_models.DeleteLorneTaskRequest, ) -> clickhouse_20191111_models.DeleteLorneTaskResponse: runtime = util_models.RuntimeOptions() return self.delete_lorne_task_with_options(request, runtime) async def delete_lorne_task_async( self, request: clickhouse_20191111_models.DeleteLorneTaskRequest, ) -> clickhouse_20191111_models.DeleteLorneTaskResponse: runtime = util_models.RuntimeOptions() return await self.delete_lorne_task_with_options_async(request, runtime) def describe_dbclusters_with_options( self, request: clickhouse_20191111_models.DescribeDBClustersRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.DescribeDBClustersResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.DescribeDBClustersResponse(), self.do_rpcrequest('DescribeDBClusters', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) async def describe_dbclusters_with_options_async( self, request: clickhouse_20191111_models.DescribeDBClustersRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.DescribeDBClustersResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.DescribeDBClustersResponse(), await self.do_rpcrequest_async('DescribeDBClusters', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) def describe_dbclusters( self, request: clickhouse_20191111_models.DescribeDBClustersRequest, ) -> clickhouse_20191111_models.DescribeDBClustersResponse: runtime = util_models.RuntimeOptions() return self.describe_dbclusters_with_options(request, runtime) async def describe_dbclusters_async( self, request: clickhouse_20191111_models.DescribeDBClustersRequest, ) -> clickhouse_20191111_models.DescribeDBClustersResponse: runtime = util_models.RuntimeOptions() return await self.describe_dbclusters_with_options_async(request, runtime) def operate_log_hub_with_options( self, request: clickhouse_20191111_models.OperateLogHubRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.OperateLogHubResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.OperateLogHubResponse(), self.do_rpcrequest('OperateLogHub', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) async def operate_log_hub_with_options_async( self, request: clickhouse_20191111_models.OperateLogHubRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.OperateLogHubResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.OperateLogHubResponse(), await self.do_rpcrequest_async('OperateLogHub', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) def operate_log_hub( self, request: clickhouse_20191111_models.OperateLogHubRequest, ) -> clickhouse_20191111_models.OperateLogHubResponse: runtime = util_models.RuntimeOptions() return self.operate_log_hub_with_options(request, runtime) async def operate_log_hub_async( self, request: clickhouse_20191111_models.OperateLogHubRequest, ) -> clickhouse_20191111_models.OperateLogHubResponse: runtime = util_models.RuntimeOptions() return await self.operate_log_hub_with_options_async(request, runtime) def check_service_linked_role_with_options( self, request: clickhouse_20191111_models.CheckServiceLinkedRoleRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.CheckServiceLinkedRoleResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.CheckServiceLinkedRoleResponse(), self.do_rpcrequest('CheckServiceLinkedRole', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) async def check_service_linked_role_with_options_async( self, request: clickhouse_20191111_models.CheckServiceLinkedRoleRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.CheckServiceLinkedRoleResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.CheckServiceLinkedRoleResponse(), await self.do_rpcrequest_async('CheckServiceLinkedRole', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) def check_service_linked_role( self, request: clickhouse_20191111_models.CheckServiceLinkedRoleRequest, ) -> clickhouse_20191111_models.CheckServiceLinkedRoleResponse: runtime = util_models.RuntimeOptions() return self.check_service_linked_role_with_options(request, runtime) async def check_service_linked_role_async( self, request: clickhouse_20191111_models.CheckServiceLinkedRoleRequest, ) -> clickhouse_20191111_models.CheckServiceLinkedRoleResponse: runtime = util_models.RuntimeOptions() return await self.check_service_linked_role_with_options_async(request, runtime) def create_backup_policy_with_options( self, request: clickhouse_20191111_models.CreateBackupPolicyRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.CreateBackupPolicyResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.CreateBackupPolicyResponse(), self.do_rpcrequest('CreateBackupPolicy', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) async def create_backup_policy_with_options_async( self, request: clickhouse_20191111_models.CreateBackupPolicyRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.CreateBackupPolicyResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.CreateBackupPolicyResponse(), await self.do_rpcrequest_async('CreateBackupPolicy', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) def create_backup_policy( self, request: clickhouse_20191111_models.CreateBackupPolicyRequest, ) -> clickhouse_20191111_models.CreateBackupPolicyResponse: runtime = util_models.RuntimeOptions() return self.create_backup_policy_with_options(request, runtime) async def create_backup_policy_async( self, request: clickhouse_20191111_models.CreateBackupPolicyRequest, ) -> clickhouse_20191111_models.CreateBackupPolicyResponse: runtime = util_models.RuntimeOptions() return await self.create_backup_policy_with_options_async(request, runtime) def describe_schemas_with_options( self, request: clickhouse_20191111_models.DescribeSchemasRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.DescribeSchemasResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.DescribeSchemasResponse(), self.do_rpcrequest('DescribeSchemas', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) async def describe_schemas_with_options_async( self, request: clickhouse_20191111_models.DescribeSchemasRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.DescribeSchemasResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.DescribeSchemasResponse(), await self.do_rpcrequest_async('DescribeSchemas', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) def describe_schemas( self, request: clickhouse_20191111_models.DescribeSchemasRequest, ) -> clickhouse_20191111_models.DescribeSchemasResponse: runtime = util_models.RuntimeOptions() return self.describe_schemas_with_options(request, runtime) async def describe_schemas_async( self, request: clickhouse_20191111_models.DescribeSchemasRequest, ) -> clickhouse_20191111_models.DescribeSchemasResponse: runtime = util_models.RuntimeOptions() return await self.describe_schemas_with_options_async(request, runtime) def kill_process_with_options( self, request: clickhouse_20191111_models.KillProcessRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.KillProcessResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.KillProcessResponse(), self.do_rpcrequest('KillProcess', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) async def kill_process_with_options_async( self, request: clickhouse_20191111_models.KillProcessRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.KillProcessResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.KillProcessResponse(), await self.do_rpcrequest_async('KillProcess', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) def kill_process( self, request: clickhouse_20191111_models.KillProcessRequest, ) -> clickhouse_20191111_models.KillProcessResponse: runtime = util_models.RuntimeOptions() return self.kill_process_with_options(request, runtime) async def kill_process_async( self, request: clickhouse_20191111_models.KillProcessRequest, ) -> clickhouse_20191111_models.KillProcessResponse: runtime = util_models.RuntimeOptions() return await self.kill_process_with_options_async(request, runtime) def modify_dbcluster_maintain_time_with_options( self, request: clickhouse_20191111_models.ModifyDBClusterMaintainTimeRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.ModifyDBClusterMaintainTimeResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.ModifyDBClusterMaintainTimeResponse(), self.do_rpcrequest('ModifyDBClusterMaintainTime', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) async def modify_dbcluster_maintain_time_with_options_async( self, request: clickhouse_20191111_models.ModifyDBClusterMaintainTimeRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.ModifyDBClusterMaintainTimeResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.ModifyDBClusterMaintainTimeResponse(), await self.do_rpcrequest_async('ModifyDBClusterMaintainTime', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) def modify_dbcluster_maintain_time( self, request: clickhouse_20191111_models.ModifyDBClusterMaintainTimeRequest, ) -> clickhouse_20191111_models.ModifyDBClusterMaintainTimeResponse: runtime = util_models.RuntimeOptions() return self.modify_dbcluster_maintain_time_with_options(request, runtime) async def modify_dbcluster_maintain_time_async( self, request: clickhouse_20191111_models.ModifyDBClusterMaintainTimeRequest, ) -> clickhouse_20191111_models.ModifyDBClusterMaintainTimeResponse: runtime = util_models.RuntimeOptions() return await self.modify_dbcluster_maintain_time_with_options_async(request, runtime) def describe_backups_with_options( self, request: clickhouse_20191111_models.DescribeBackupsRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.DescribeBackupsResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.DescribeBackupsResponse(), self.do_rpcrequest('DescribeBackups', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) async def describe_backups_with_options_async( self, request: clickhouse_20191111_models.DescribeBackupsRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.DescribeBackupsResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.DescribeBackupsResponse(), await self.do_rpcrequest_async('DescribeBackups', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) def describe_backups( self, request: clickhouse_20191111_models.DescribeBackupsRequest, ) -> clickhouse_20191111_models.DescribeBackupsResponse: runtime = util_models.RuntimeOptions() return self.describe_backups_with_options(request, runtime) async def describe_backups_async( self, request: clickhouse_20191111_models.DescribeBackupsRequest, ) -> clickhouse_20191111_models.DescribeBackupsResponse: runtime = util_models.RuntimeOptions() return await self.describe_backups_with_options_async(request, runtime) def describe_dbcluster_access_white_list_with_options( self, request: clickhouse_20191111_models.DescribeDBClusterAccessWhiteListRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.DescribeDBClusterAccessWhiteListResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.DescribeDBClusterAccessWhiteListResponse(), self.do_rpcrequest('DescribeDBClusterAccessWhiteList', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) async def describe_dbcluster_access_white_list_with_options_async( self, request: clickhouse_20191111_models.DescribeDBClusterAccessWhiteListRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.DescribeDBClusterAccessWhiteListResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.DescribeDBClusterAccessWhiteListResponse(), await self.do_rpcrequest_async('DescribeDBClusterAccessWhiteList', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) def describe_dbcluster_access_white_list( self, request: clickhouse_20191111_models.DescribeDBClusterAccessWhiteListRequest, ) -> clickhouse_20191111_models.DescribeDBClusterAccessWhiteListResponse: runtime = util_models.RuntimeOptions() return self.describe_dbcluster_access_white_list_with_options(request, runtime) async def describe_dbcluster_access_white_list_async( self, request: clickhouse_20191111_models.DescribeDBClusterAccessWhiteListRequest, ) -> clickhouse_20191111_models.DescribeDBClusterAccessWhiteListResponse: runtime = util_models.RuntimeOptions() return await self.describe_dbcluster_access_white_list_with_options_async(request, runtime) def describe_regions_with_options( self, request: clickhouse_20191111_models.DescribeRegionsRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.DescribeRegionsResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.DescribeRegionsResponse(), self.do_rpcrequest('DescribeRegions', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) async def describe_regions_with_options_async( self, request: clickhouse_20191111_models.DescribeRegionsRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.DescribeRegionsResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.DescribeRegionsResponse(), await self.do_rpcrequest_async('DescribeRegions', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) def describe_regions( self, request: clickhouse_20191111_models.DescribeRegionsRequest, ) -> clickhouse_20191111_models.DescribeRegionsResponse: runtime = util_models.RuntimeOptions() return self.describe_regions_with_options(request, runtime) async def describe_regions_async( self, request: clickhouse_20191111_models.DescribeRegionsRequest, ) -> clickhouse_20191111_models.DescribeRegionsResponse: runtime = util_models.RuntimeOptions() return await self.describe_regions_with_options_async(request, runtime) def modify_dbcluster_description_with_options( self, request: clickhouse_20191111_models.ModifyDBClusterDescriptionRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.ModifyDBClusterDescriptionResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.ModifyDBClusterDescriptionResponse(), self.do_rpcrequest('ModifyDBClusterDescription', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) async def modify_dbcluster_description_with_options_async( self, request: clickhouse_20191111_models.ModifyDBClusterDescriptionRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.ModifyDBClusterDescriptionResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.ModifyDBClusterDescriptionResponse(), await self.do_rpcrequest_async('ModifyDBClusterDescription', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) def modify_dbcluster_description( self, request: clickhouse_20191111_models.ModifyDBClusterDescriptionRequest, ) -> clickhouse_20191111_models.ModifyDBClusterDescriptionResponse: runtime = util_models.RuntimeOptions() return self.modify_dbcluster_description_with_options(request, runtime) async def modify_dbcluster_description_async( self, request: clickhouse_20191111_models.ModifyDBClusterDescriptionRequest, ) -> clickhouse_20191111_models.ModifyDBClusterDescriptionResponse: runtime = util_models.RuntimeOptions() return await self.modify_dbcluster_description_with_options_async(request, runtime) def delete_account_with_options( self, request: clickhouse_20191111_models.DeleteAccountRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.DeleteAccountResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.DeleteAccountResponse(), self.do_rpcrequest('DeleteAccount', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) async def delete_account_with_options_async( self, request: clickhouse_20191111_models.DeleteAccountRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.DeleteAccountResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.DeleteAccountResponse(), await self.do_rpcrequest_async('DeleteAccount', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) def delete_account( self, request: clickhouse_20191111_models.DeleteAccountRequest, ) -> clickhouse_20191111_models.DeleteAccountResponse: runtime = util_models.RuntimeOptions() return self.delete_account_with_options(request, runtime) async def delete_account_async( self, request: clickhouse_20191111_models.DeleteAccountRequest, ) -> clickhouse_20191111_models.DeleteAccountResponse: runtime = util_models.RuntimeOptions() return await self.delete_account_with_options_async(request, runtime) def describe_slow_log_records_with_options( self, request: clickhouse_20191111_models.DescribeSlowLogRecordsRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.DescribeSlowLogRecordsResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.DescribeSlowLogRecordsResponse(), self.do_rpcrequest('DescribeSlowLogRecords', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) async def describe_slow_log_records_with_options_async( self, request: clickhouse_20191111_models.DescribeSlowLogRecordsRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.DescribeSlowLogRecordsResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.DescribeSlowLogRecordsResponse(), await self.do_rpcrequest_async('DescribeSlowLogRecords', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) def describe_slow_log_records( self, request: clickhouse_20191111_models.DescribeSlowLogRecordsRequest, ) -> clickhouse_20191111_models.DescribeSlowLogRecordsResponse: runtime = util_models.RuntimeOptions() return self.describe_slow_log_records_with_options(request, runtime) async def describe_slow_log_records_async( self, request: clickhouse_20191111_models.DescribeSlowLogRecordsRequest, ) -> clickhouse_20191111_models.DescribeSlowLogRecordsResponse: runtime = util_models.RuntimeOptions() return await self.describe_slow_log_records_with_options_async(request, runtime) def describe_columns_with_options( self, request: clickhouse_20191111_models.DescribeColumnsRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.DescribeColumnsResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.DescribeColumnsResponse(), self.do_rpcrequest('DescribeColumns', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) async def describe_columns_with_options_async( self, request: clickhouse_20191111_models.DescribeColumnsRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.DescribeColumnsResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.DescribeColumnsResponse(), await self.do_rpcrequest_async('DescribeColumns', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) def describe_columns( self, request: clickhouse_20191111_models.DescribeColumnsRequest, ) -> clickhouse_20191111_models.DescribeColumnsResponse: runtime = util_models.RuntimeOptions() return self.describe_columns_with_options(request, runtime) async def describe_columns_async( self, request: clickhouse_20191111_models.DescribeColumnsRequest, ) -> clickhouse_20191111_models.DescribeColumnsResponse: runtime = util_models.RuntimeOptions() return await self.describe_columns_with_options_async(request, runtime) def reset_account_password_with_options( self, request: clickhouse_20191111_models.ResetAccountPasswordRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.ResetAccountPasswordResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.ResetAccountPasswordResponse(), self.do_rpcrequest('ResetAccountPassword', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) async def reset_account_password_with_options_async( self, request: clickhouse_20191111_models.ResetAccountPasswordRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.ResetAccountPasswordResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.ResetAccountPasswordResponse(), await self.do_rpcrequest_async('ResetAccountPassword', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) def reset_account_password( self, request: clickhouse_20191111_models.ResetAccountPasswordRequest, ) -> clickhouse_20191111_models.ResetAccountPasswordResponse: runtime = util_models.RuntimeOptions() return self.reset_account_password_with_options(request, runtime) async def reset_account_password_async( self, request: clickhouse_20191111_models.ResetAccountPasswordRequest, ) -> clickhouse_20191111_models.ResetAccountPasswordResponse: runtime = util_models.RuntimeOptions() return await self.reset_account_password_with_options_async(request, runtime) def describe_accounts_with_options( self, request: clickhouse_20191111_models.DescribeAccountsRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.DescribeAccountsResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.DescribeAccountsResponse(), self.do_rpcrequest('DescribeAccounts', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) async def describe_accounts_with_options_async( self, request: clickhouse_20191111_models.DescribeAccountsRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.DescribeAccountsResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.DescribeAccountsResponse(), await self.do_rpcrequest_async('DescribeAccounts', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) def describe_accounts( self, request: clickhouse_20191111_models.DescribeAccountsRequest, ) -> clickhouse_20191111_models.DescribeAccountsResponse: runtime = util_models.RuntimeOptions() return self.describe_accounts_with_options(request, runtime) async def describe_accounts_async( self, request: clickhouse_20191111_models.DescribeAccountsRequest, ) -> clickhouse_20191111_models.DescribeAccountsResponse: runtime = util_models.RuntimeOptions() return await self.describe_accounts_with_options_async(request, runtime) def describe_lorne_tasks_metrics_with_options( self, request: clickhouse_20191111_models.DescribeLorneTasksMetricsRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.DescribeLorneTasksMetricsResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.DescribeLorneTasksMetricsResponse(), self.do_rpcrequest('DescribeLorneTasksMetrics', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) async def describe_lorne_tasks_metrics_with_options_async( self, request: clickhouse_20191111_models.DescribeLorneTasksMetricsRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.DescribeLorneTasksMetricsResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.DescribeLorneTasksMetricsResponse(), await self.do_rpcrequest_async('DescribeLorneTasksMetrics', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) def describe_lorne_tasks_metrics( self, request: clickhouse_20191111_models.DescribeLorneTasksMetricsRequest, ) -> clickhouse_20191111_models.DescribeLorneTasksMetricsResponse: runtime = util_models.RuntimeOptions() return self.describe_lorne_tasks_metrics_with_options(request, runtime) async def describe_lorne_tasks_metrics_async( self, request: clickhouse_20191111_models.DescribeLorneTasksMetricsRequest, ) -> clickhouse_20191111_models.DescribeLorneTasksMetricsResponse: runtime = util_models.RuntimeOptions() return await self.describe_lorne_tasks_metrics_with_options_async(request, runtime) def check_scale_out_balanced_with_options( self, request: clickhouse_20191111_models.CheckScaleOutBalancedRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.CheckScaleOutBalancedResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.CheckScaleOutBalancedResponse(), self.do_rpcrequest('CheckScaleOutBalanced', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) async def check_scale_out_balanced_with_options_async( self, request: clickhouse_20191111_models.CheckScaleOutBalancedRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.CheckScaleOutBalancedResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.CheckScaleOutBalancedResponse(), await self.do_rpcrequest_async('CheckScaleOutBalanced', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) def check_scale_out_balanced( self, request: clickhouse_20191111_models.CheckScaleOutBalancedRequest, ) -> clickhouse_20191111_models.CheckScaleOutBalancedResponse: runtime = util_models.RuntimeOptions() return self.check_scale_out_balanced_with_options(request, runtime) async def check_scale_out_balanced_async( self, request: clickhouse_20191111_models.CheckScaleOutBalancedRequest, ) -> clickhouse_20191111_models.CheckScaleOutBalancedResponse: runtime = util_models.RuntimeOptions() return await self.check_scale_out_balanced_with_options_async(request, runtime) def allocate_cluster_public_connection_with_options( self, request: clickhouse_20191111_models.AllocateClusterPublicConnectionRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.AllocateClusterPublicConnectionResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.AllocateClusterPublicConnectionResponse(), self.do_rpcrequest('AllocateClusterPublicConnection', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) async def allocate_cluster_public_connection_with_options_async( self, request: clickhouse_20191111_models.AllocateClusterPublicConnectionRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.AllocateClusterPublicConnectionResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.AllocateClusterPublicConnectionResponse(), await self.do_rpcrequest_async('AllocateClusterPublicConnection', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) def allocate_cluster_public_connection( self, request: clickhouse_20191111_models.AllocateClusterPublicConnectionRequest, ) -> clickhouse_20191111_models.AllocateClusterPublicConnectionResponse: runtime = util_models.RuntimeOptions() return self.allocate_cluster_public_connection_with_options(request, runtime) async def allocate_cluster_public_connection_async( self, request: clickhouse_20191111_models.AllocateClusterPublicConnectionRequest, ) -> clickhouse_20191111_models.AllocateClusterPublicConnectionResponse: runtime = util_models.RuntimeOptions() return await self.allocate_cluster_public_connection_with_options_async(request, runtime) def describe_all_data_source_with_options( self, request: clickhouse_20191111_models.DescribeAllDataSourceRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.DescribeAllDataSourceResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.DescribeAllDataSourceResponse(), self.do_rpcrequest('DescribeAllDataSource', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) async def describe_all_data_source_with_options_async( self, request: clickhouse_20191111_models.DescribeAllDataSourceRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.DescribeAllDataSourceResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.DescribeAllDataSourceResponse(), await self.do_rpcrequest_async('DescribeAllDataSource', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) def describe_all_data_source( self, request: clickhouse_20191111_models.DescribeAllDataSourceRequest, ) -> clickhouse_20191111_models.DescribeAllDataSourceResponse: runtime = util_models.RuntimeOptions() return self.describe_all_data_source_with_options(request, runtime) async def describe_all_data_source_async( self, request: clickhouse_20191111_models.DescribeAllDataSourceRequest, ) -> clickhouse_20191111_models.DescribeAllDataSourceResponse: runtime = util_models.RuntimeOptions() return await self.describe_all_data_source_with_options_async(request, runtime) def describe_backup_policy_with_options( self, request: clickhouse_20191111_models.DescribeBackupPolicyRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.DescribeBackupPolicyResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.DescribeBackupPolicyResponse(), self.do_rpcrequest('DescribeBackupPolicy', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) async def describe_backup_policy_with_options_async( self, request: clickhouse_20191111_models.DescribeBackupPolicyRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.DescribeBackupPolicyResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.DescribeBackupPolicyResponse(), await self.do_rpcrequest_async('DescribeBackupPolicy', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) def describe_backup_policy( self, request: clickhouse_20191111_models.DescribeBackupPolicyRequest, ) -> clickhouse_20191111_models.DescribeBackupPolicyResponse: runtime = util_models.RuntimeOptions() return self.describe_backup_policy_with_options(request, runtime) async def describe_backup_policy_async( self, request: clickhouse_20191111_models.DescribeBackupPolicyRequest, ) -> clickhouse_20191111_models.DescribeBackupPolicyResponse: runtime = util_models.RuntimeOptions() return await self.describe_backup_policy_with_options_async(request, runtime) def describe_dbcluster_net_info_items_with_options( self, request: clickhouse_20191111_models.DescribeDBClusterNetInfoItemsRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.DescribeDBClusterNetInfoItemsResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.DescribeDBClusterNetInfoItemsResponse(), self.do_rpcrequest('DescribeDBClusterNetInfoItems', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) async def describe_dbcluster_net_info_items_with_options_async( self, request: clickhouse_20191111_models.DescribeDBClusterNetInfoItemsRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.DescribeDBClusterNetInfoItemsResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.DescribeDBClusterNetInfoItemsResponse(), await self.do_rpcrequest_async('DescribeDBClusterNetInfoItems', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) def describe_dbcluster_net_info_items( self, request: clickhouse_20191111_models.DescribeDBClusterNetInfoItemsRequest, ) -> clickhouse_20191111_models.DescribeDBClusterNetInfoItemsResponse: runtime = util_models.RuntimeOptions() return self.describe_dbcluster_net_info_items_with_options(request, runtime) async def describe_dbcluster_net_info_items_async( self, request: clickhouse_20191111_models.DescribeDBClusterNetInfoItemsRequest, ) -> clickhouse_20191111_models.DescribeDBClusterNetInfoItemsResponse: runtime = util_models.RuntimeOptions() return await self.describe_dbcluster_net_info_items_with_options_async(request, runtime) def describe_loghub_detail_with_options( self, request: clickhouse_20191111_models.DescribeLoghubDetailRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.DescribeLoghubDetailResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.DescribeLoghubDetailResponse(), self.do_rpcrequest('DescribeLoghubDetail', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) async def describe_loghub_detail_with_options_async( self, request: clickhouse_20191111_models.DescribeLoghubDetailRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.DescribeLoghubDetailResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.DescribeLoghubDetailResponse(), await self.do_rpcrequest_async('DescribeLoghubDetail', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) def describe_loghub_detail( self, request: clickhouse_20191111_models.DescribeLoghubDetailRequest, ) -> clickhouse_20191111_models.DescribeLoghubDetailResponse: runtime = util_models.RuntimeOptions() return self.describe_loghub_detail_with_options(request, runtime) async def describe_loghub_detail_async( self, request: clickhouse_20191111_models.DescribeLoghubDetailRequest, ) -> clickhouse_20191111_models.DescribeLoghubDetailResponse: runtime = util_models.RuntimeOptions() return await self.describe_loghub_detail_with_options_async(request, runtime) def modify_dbcluster_with_options( self, request: clickhouse_20191111_models.ModifyDBClusterRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.ModifyDBClusterResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.ModifyDBClusterResponse(), self.do_rpcrequest('ModifyDBCluster', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) async def modify_dbcluster_with_options_async( self, request: clickhouse_20191111_models.ModifyDBClusterRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.ModifyDBClusterResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.ModifyDBClusterResponse(), await self.do_rpcrequest_async('ModifyDBCluster', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) def modify_dbcluster( self, request: clickhouse_20191111_models.ModifyDBClusterRequest, ) -> clickhouse_20191111_models.ModifyDBClusterResponse: runtime = util_models.RuntimeOptions() return self.modify_dbcluster_with_options(request, runtime) async def modify_dbcluster_async( self, request: clickhouse_20191111_models.ModifyDBClusterRequest, ) -> clickhouse_20191111_models.ModifyDBClusterResponse: runtime = util_models.RuntimeOptions() return await self.modify_dbcluster_with_options_async(request, runtime) def describe_log_hub_attribute_with_options( self, request: clickhouse_20191111_models.DescribeLogHubAttributeRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.DescribeLogHubAttributeResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.DescribeLogHubAttributeResponse(), self.do_rpcrequest('DescribeLogHubAttribute', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) async def describe_log_hub_attribute_with_options_async( self, request: clickhouse_20191111_models.DescribeLogHubAttributeRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.DescribeLogHubAttributeResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.DescribeLogHubAttributeResponse(), await self.do_rpcrequest_async('DescribeLogHubAttribute', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) def describe_log_hub_attribute( self, request: clickhouse_20191111_models.DescribeLogHubAttributeRequest, ) -> clickhouse_20191111_models.DescribeLogHubAttributeResponse: runtime = util_models.RuntimeOptions() return self.describe_log_hub_attribute_with_options(request, runtime) async def describe_log_hub_attribute_async( self, request: clickhouse_20191111_models.DescribeLogHubAttributeRequest, ) -> clickhouse_20191111_models.DescribeLogHubAttributeResponse: runtime = util_models.RuntimeOptions() return await self.describe_log_hub_attribute_with_options_async(request, runtime) def modify_dbcluster_access_white_list_with_options( self, request: clickhouse_20191111_models.ModifyDBClusterAccessWhiteListRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.ModifyDBClusterAccessWhiteListResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.ModifyDBClusterAccessWhiteListResponse(), self.do_rpcrequest('ModifyDBClusterAccessWhiteList', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) async def modify_dbcluster_access_white_list_with_options_async( self, request: clickhouse_20191111_models.ModifyDBClusterAccessWhiteListRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.ModifyDBClusterAccessWhiteListResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.ModifyDBClusterAccessWhiteListResponse(), await self.do_rpcrequest_async('ModifyDBClusterAccessWhiteList', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) def modify_dbcluster_access_white_list( self, request: clickhouse_20191111_models.ModifyDBClusterAccessWhiteListRequest, ) -> clickhouse_20191111_models.ModifyDBClusterAccessWhiteListResponse: runtime = util_models.RuntimeOptions() return self.modify_dbcluster_access_white_list_with_options(request, runtime) async def modify_dbcluster_access_white_list_async( self, request: clickhouse_20191111_models.ModifyDBClusterAccessWhiteListRequest, ) -> clickhouse_20191111_models.ModifyDBClusterAccessWhiteListResponse: runtime = util_models.RuntimeOptions() return await self.modify_dbcluster_access_white_list_with_options_async(request, runtime) def create_account_and_authority_with_options( self, request: clickhouse_20191111_models.CreateAccountAndAuthorityRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.CreateAccountAndAuthorityResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.CreateAccountAndAuthorityResponse(), self.do_rpcrequest('CreateAccountAndAuthority', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) async def create_account_and_authority_with_options_async( self, request: clickhouse_20191111_models.CreateAccountAndAuthorityRequest, runtime: util_models.RuntimeOptions, ) -> clickhouse_20191111_models.CreateAccountAndAuthorityResponse: UtilClient.validate_model(request) req = open_api_models.OpenApiRequest( body=UtilClient.to_map(request) ) return TeaCore.from_map( clickhouse_20191111_models.CreateAccountAndAuthorityResponse(), await self.do_rpcrequest_async('CreateAccountAndAuthority', '2019-11-11', 'HTTPS', 'POST', 'AK', 'json', req, runtime) ) def create_account_and_authority( self, request: clickhouse_20191111_models.CreateAccountAndAuthorityRequest, ) -> clickhouse_20191111_models.CreateAccountAndAuthorityResponse: runtime = util_models.RuntimeOptions() return self.create_account_and_authority_with_options(request, runtime) async def create_account_and_authority_async( self, request: clickhouse_20191111_models.CreateAccountAndAuthorityRequest, ) -> clickhouse_20191111_models.CreateAccountAndAuthorityResponse: runtime = util_models.RuntimeOptions() return await self.create_account_and_authority_with_options_async(request, runtime)
917ee557f9fe287f3752878d2f57f0990122fb69
ba0a2b0d2d1534443ea34320675aadfa378457b6
/OA/Akuna/QAkuna_Order Marketing.py
dbf97a7359f5393adf302b66732ef5fea9e7cc95
[]
no_license
Luolingwei/LeetCode
73abd58af116f3ec59fd6c76f662beb2a413586c
79d4824879d0faed117eee9d99615cd478432a14
refs/heads/master
2021-08-08T17:45:19.215454
2021-06-17T17:03:15
2021-06-17T17:03:15
152,186,910
0
1
null
null
null
null
UTF-8
Python
false
false
5,571
py
import json import copy from collections import defaultdict # Implement the class below, keeping the constructor's signature unchanged; it should take no arguments. class Company: def __init__(self, name): self.name = name self.own = 0 self.sell = 0 self.buy = 0 def __eq__(self, other): return self.name == other.name def __hash__(self): return hash(self.name) def __str__(self): return self.name def __repr__(self): return self.name class MarkingPositionMonitor: def __init__(self): self.companies = {} self.orders = {} def on_event(self, message): event = json.loads(message) if event["type"] == "NEW": company_name = event["symbol"] order_id = event["order_id"] self.orders[order_id] = event # create company instance in dict if not exist. if company_name not in self.companies: self.companies[company_name] = Company(company_name) # immediately change the quantity. if event["side"] == "SELL": self.companies[company_name].sell += int(event["quantity"]) # new order to buy does not affect marking postion. if event["side"] == "BUY": self.companies[company_name].buy += int(event["quantity"]) return self.companies[company_name].own - self.companies[company_name].sell if event["type"] == "ORDER_REJECT": # read the history order message detail from order_id order_id = event["order_id"] order_detail = self.orders[order_id] company_name = order_detail["symbol"] if order_detail["type"] == "NEW": # immediately change sell quantity if order_detail["side"] == "SELL": self.companies[company_name].sell -= int(order_detail["quantity"]) if order_detail["side"] == "BUY": self.companies[company_name].buy -= int(order_detail["quantity"]) return self.companies[company_name].own - self.companies[company_name].sell if event["type"] == "ORDER_ACK": order_id = event["order_id"] order_detail = self.orders[order_id] company_name = order_detail["symbol"] # acknowledge order, no further action need to take though. if order_detail["side"] == "SELL": pass if order_detail["side"] == "BUY": pass return self.companies[company_name].own - self.companies[company_name].sell if event["type"] == "CANCEL": # try to cancel stated; no immediate effect. order_id = event["order_id"] order_detail = self.orders[order_id] company_name = order_detail["symbol"] if order_detail["type"] == "NEW": if order_detail["side"] == "SELL": pass if order_detail["side"] == "BUY": pass return self.companies[company_name].own - self.companies[company_name].sell if event["type"] == "CANCEL_ACK": # cancellation acknowledged; the order is no longer in the market; immediate effect. order_id = event["order_id"] order_detail = self.orders[order_id] company_name = order_detail["symbol"] if order_detail["type"] == "NEW": # immediately change the quantity; immediate effect. if order_detail["side"] == "SELL": self.companies[company_name].sell -= int(order_detail["quantity"]) if order_detail["side"] == "BUY": self.companies[company_name].buy -= int(order_detail["quantity"]) return self.companies[company_name].own - self.companies[company_name].sell if event["type"] == "CANCEL_REJECT": # reject cancellation; no effect. order_id = event["order_id"] order_detail = self.orders[order_id] company_name = order_detail["symbol"] if order_detail["type"] == "NEW": if order_detail["side"] == "SELL": pass if order_detail["side"] == "BUY": pass return self.companies[company_name].own - self.companies[company_name].sell if event["type"] == "FILL": order_id = event["order_id"] order_detail = self.orders[order_id] company_name = order_detail["symbol"] if order_detail["type"] == "NEW": if "filled_quantity" not in order_detail: order_detail["filled_quantity"] = 0 if order_detail["side"] == "SELL": order_detail["filled_quantity"] = event["filled_quantity"] if order_detail["side"] == "BUY": self.companies[company_name].own -= order_detail["filled_quantity"] # minus bought quantity from this order order_detail["filled_quantity"] = event["filled_quantity"] self.companies[company_name].own += order_detail["filled_quantity"] # add current bought quantity from this order return self.companies[company_name].own - self.companies[company_name].sell return 0 # return 0 for not handled operations def assertEqual(a, b): if a != b: print("False! ", a, b) else: print(a)
7c4624679b56a92e566f8525561a6d268d4791f7
e0b81ac782cb6b5b96f49914ac5707971d31d5b4
/week14/todo_list/main/urls.py
0f9b60b7a5903820284a2eb17db67cb3f931aec3
[]
no_license
balnur00/djangoSpring2020
33ba23472715aa143e2a9b1ff785730c2778a1fd
ca3500875a339601a44dc105bc946d72e4d143eb
refs/heads/master
2021-09-29T05:44:34.941331
2020-04-21T10:26:29
2020-04-21T10:26:29
237,578,070
0
0
null
2021-09-22T19:45:38
2020-02-01T07:19:09
Python
UTF-8
Python
false
false
692
py
from rest_framework.routers import DefaultRouter from django.urls import path from main import viewsets from .views import BusTaskListApiView, BusTaskListDetailApiView, BusTaskApiView, BusTaskDetailApiView, ReceiverApiView urlpatterns = [ path('business/', BusTaskListApiView.as_view()), path('business/<int:pk>/', BusTaskListDetailApiView.as_view()), path('business/<int:pk>/tasks/', BusTaskApiView.as_view()), path('business/<int:pk2>/tasks/<int:pk>/', BusTaskDetailApiView.as_view()), path('receiver/', ReceiverApiView.as_view()), ] router = DefaultRouter() router.register(r'lists', viewsets.PersonalTaskListViewSet, basename='lists') urlpatterns += router.urls
a32ad3c7390782052e0d15a239f6e45437ed713e
53fab060fa262e5d5026e0807d93c75fb81e67b9
/backup/user_274/ch71_2020_03_09_14_29_38_361917.py
6ebfb914c1c8014bcdcef462b0fd223be9d837a3
[]
no_license
gabriellaec/desoft-analise-exercicios
b77c6999424c5ce7e44086a12589a0ad43d6adca
01940ab0897aa6005764fc220b900e4d6161d36b
refs/heads/main
2023-01-31T17:19:42.050628
2020-12-16T05:21:31
2020-12-16T05:21:31
306,735,108
0
0
null
null
null
null
UTF-8
Python
false
false
57
py
def esconde_senha(pswd): n=len(pswd) return "*"*n
75c80e1240c4b7484191142b451cc2239905cbfd
40ba3112a116b361673732efc10402a067322ad1
/PycharmProjects/untitled/Error/DIYError.py
adf55f4e1b8b0fb4049b232aef954deef85589c9
[]
no_license
oumingwang/----Python
622be90adffefcab1696bb145b171fa9a8bff5b7
003c0b7880de2b9e0737120bc15bf6eaeb7a644f
refs/heads/master
2020-07-03T03:16:13.687118
2017-04-08T16:55:01
2017-04-08T16:55:01
74,200,264
0
2
null
null
null
null
UTF-8
Python
false
false
112
py
class FileError(IOError): pass try: raise FileError, "Test FileError" except FileError,e: print e
76c2be24cd3471acd4c320fa2ff5671d516aa254
49ba5356bdc5df7dd9803b56fe507c5164a90716
/unique-number-of-occurrences/solution.py
8947b64feeaba863e1fa0f2965c3530126347f56
[]
no_license
uxlsl/leetcode_practice
d80ad481c9d8ee71cce0f3c66e98446ced149635
d8ed762d1005975f0de4f07760c9671195621c88
refs/heads/master
2021-04-25T18:12:28.136504
2020-03-11T07:54:15
2020-03-11T07:54:15
121,472,384
0
0
null
null
null
null
UTF-8
Python
false
false
321
py
class Solution(object): def uniqueOccurrences(self, arr): """ :type arr: List[int] :rtype: bool """ m = {} for i in arr: if i in m: m[i] += 1 else: m[i] = 1 return len(m.values()) == len(set(m.values()))
c7473e0b86b77ea6781aa54b3063668f7f9695b3
846c067f53006d18caa467997b2143ae4df50519
/config/config.py
efbc2a7e2fd6de4de26c10e551251379b239c5c8
[]
no_license
radusuciu/dancealytics
7e791d9732c8a19f3b6df2f61bb2837360cf4c65
7246ab8a32f2b7cbf7a42e08605e58c4a61b8a38
refs/heads/master
2022-12-13T23:12:54.065740
2017-07-14T02:21:49
2017-07-14T02:21:49
97,040,963
0
0
null
2022-12-08T00:01:27
2017-07-12T18:38:53
JavaScript
UTF-8
Python
false
false
1,377
py
"""Main configuration file for project.""" import yaml import os import pathlib PROJECT_NAME = 'dancealytics' PROJECT_HOME_PATH = pathlib.Path(os.path.realpath(__file__)).parents[1] # debug is true by default DEBUG = bool(os.getenv('DEBUG', True)) _secrets_path = PROJECT_HOME_PATH.joinpath('config', 'secrets.yml') _override_path = PROJECT_HOME_PATH.joinpath('config', 'secrets.override.yml') # get our secrets with _secrets_path.open() as f: _SECRETS = yaml.load(f) # provide a mechanism for overriding some secrets if _override_path.is_file(): with _override_path.open() as f: _SECRETS.update(yaml.load(f)) class _Config(object): """Holds flask configuration to be consumed by Flask's from_object method.""" # SQLAlchemy SQLALCHEMY_DATABASE_URI = 'sqlite:////{}/dancealytics.db'.format(str(PROJECT_HOME_PATH)) SQLALCHEMY_TRACK_MODIFICATIONS = False # Flask DEBUG = False SECRET_KEY = _SECRETS['flask']['SECRET_KEY'] JSONIFY_PRETTYPRINT_REGULAR = False # External APIs SPOTIFY_CLIENT_ID = _SECRETS['spotify']['CLIENT_ID'] SPOTIFY_CLIENT_SECRET = _SECRETS['spotify']['CLIENT_SECRET'] SPOTIFY_REDIRECT_URI = _SECRETS['spotify']['REDIRECT_URI'] class _DevelopmentConfig(_Config): """Configuration for development environment.""" DEBUG = True config = _DevelopmentConfig if DEBUG else _Config
cec3a985e7ce8c9aa91b159664568dd89362fb14
ab621c65fc91f5194c4032d68e750efaa5f85682
/docline_sequence/models/sale.py
56ef1d787c8c291ba4c97ac9796b71da170e942c
[]
no_license
pabi2/pb2_addons
a1ca010002849b125dd89bd3d60a54cd9b9cdeef
e8c21082c187f4639373b29a7a0905d069d770f2
refs/heads/master
2021-06-04T19:38:53.048882
2020-11-25T03:18:24
2020-11-25T03:18:24
95,765,121
6
15
null
2022-10-06T04:28:27
2017-06-29T10:08:49
Python
UTF-8
Python
false
false
874
py
# -*- coding: utf-8 -*- from openerp import models, api, SUPERUSER_ID from .common import DoclineCommon, DoclineCommonSeq class SaleOrder(DoclineCommon, models.Model): _inherit = 'sale.order' @api.multi @api.constrains('order_line') def _check_docline_seq(self): for order in self: self._compute_docline_seq('sale_order_line', 'order_id', order.id) return True class SaleOrderLine(DoclineCommonSeq, models.Model): _inherit = 'sale.order.line' def init(self, cr): """ On module update, recompute all documents """ self.pool.get('sale.order').\ _recompute_all_docline_seq(cr, SUPERUSER_ID, 'sale_order', 'sale_order_line', 'order_id')
5f9bd3f574357e4086032aec7e61d62623341ce2
c59b91482ea23003e055688fdbfb409a6b99c8da
/qanta/guesser/nn.py
c36167748e721fbb6530602b0284bbe0f77a6c37
[ "MIT" ]
permissive
nadesai/qb
83a3618227e87fef46680fade3a168585aebb889
f2dd64499eb66ae409f08eb9f762d4a6b0a7feda
refs/heads/master
2021-08-24T15:13:23.959664
2017-12-08T15:28:33
2017-12-08T15:28:33
112,909,453
0
0
null
2017-12-03T07:40:36
2017-12-03T07:40:35
null
UTF-8
Python
false
false
4,823
py
from typing import Set, Dict, List import random import numpy as np import os import pickle from qanta.util.io import safe_open from qanta.config import conf from qanta import logging log = logging.get(__name__) def create_embeddings(vocab: Set[str], expand_glove=False, mask_zero=False): """ Create embeddings :param vocab: words in the vocabulary :param expand_glove: Whether or not to expand embeddings past pre-trained ones :param mask_zero: if True, then 0 is reserved as a sequence length mask (distinct from UNK) :return: """ embeddings = [] embedding_lookup = {} with open(conf['word_embeddings']) as f: i = 0 line_number = 0 n_bad_embeddings = 0 if mask_zero: emb = np.zeros((conf['embedding_dimension'])) embeddings.append(emb) embedding_lookup['MASK'] = i i += 1 for l in f: splits = l.split() word = splits[0] if word in vocab: try: emb = [float(n) for n in splits[1:]] except ValueError: n_bad_embeddings += 1 continue embeddings.append(emb) embedding_lookup[word] = i i += 1 line_number += 1 n_embeddings = i log.info('Loaded {} embeddings'.format(n_embeddings)) log.info('Encountered {} bad embeddings that were skipped'.format(n_bad_embeddings)) mean_embedding = np.array(embeddings).mean(axis=0) if expand_glove: embed_dim = len(embeddings[0]) words_not_in_glove = vocab - set(embedding_lookup.keys()) for w in words_not_in_glove: emb = np.random.rand(embed_dim) * .08 * 2 - .08 embeddings.append(emb) embedding_lookup[w] = i i += 1 log.info('Initialized an additional {} embeddings not in dataset'.format(i - n_embeddings)) log.info('Total number of embeddings: {}'.format(i)) embeddings = np.array(embeddings) embed_with_unk = np.vstack([embeddings, mean_embedding, mean_embedding]) embedding_lookup['UNK'] = i embedding_lookup['EOS'] = i + 1 return embed_with_unk, embedding_lookup def convert_text_to_embeddings_indices(words: List[str], embedding_lookup: Dict[str, int], random_unk_prob=0): """ Convert a list of word tokens to embedding indices :param words: :param embedding_lookup: :param mentions: :return: """ w_indices = [] for w in words: if w in embedding_lookup: w_indices.append(embedding_lookup[w]) if random_unk_prob > 0 and random.random() < random_unk_prob: w_indices.append(embedding_lookup['UNK']) else: w_indices.append(embedding_lookup['UNK']) return w_indices def tf_format(x_data: List[List[int]], max_len: int, zero_index: int): """ Pad with elements until it has max_len or shorten it until it has max_len. When padding insert the zero index so it doesn't contribute anything :param x_data: :param max_len: :param zero_index: :return: """ for i in range(len(x_data)): row = x_data[i] while len(row) < max_len: row.append(zero_index) x_data[i] = x_data[i][:max_len] return x_data def create_load_embeddings_function(we_tmp_target, we_target, logger): def load_embeddings(vocab=None, root_directory='', expand_glove=True, mask_zero=False): if os.path.exists(we_tmp_target): logger.info('Loading word embeddings from tmp cache') with safe_open(we_tmp_target, 'rb') as f: return pickle.load(f) elif os.path.exists(os.path.join(root_directory, we_target)): logger.info('Loading word embeddings from restored cache') with safe_open(os.path.join(root_directory, we_target), 'rb') as f: return pickle.load(f) else: if vocab is None: raise ValueError('To create fresh embeddings a vocab is needed') with safe_open(we_tmp_target, 'wb') as f: logger.info('Creating word embeddings and saving to cache') embed_and_lookup = create_embeddings(vocab, expand_glove=expand_glove, mask_zero=mask_zero) pickle.dump(embed_and_lookup, f) return embed_and_lookup return load_embeddings def compute_n_classes(labels: List[str]): return len(set(labels)) def compute_max_len(training_data): return max([len(' '.join(sentences).split()) for sentences in training_data[0]]) def compute_lengths(x_data): return np.array([max(1, len(x)) for x in x_data])
d699f65005232a77e7031d8d4cf5b557251724ae
f983809974ad78d099fc5e8a08038723fdb1d172
/det3d/datasets/nuscenes/nuscenes.py
8afeae8a75a41a03cff8fcb08beff274f7f26d13
[ "LicenseRef-scancode-proprietary-license", "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
you4ever/CenterPoint
169df36e1bfcd9e0efcea37f983b04bddf59a66b
1a87d2ea18b11801214f41aeb042373364ba99c1
refs/heads/master
2023-03-04T11:04:32.251822
2021-02-12T18:17:55
2021-02-12T18:20:06
298,402,953
0
0
MIT
2020-09-24T21:51:22
2020-09-24T21:51:21
null
UTF-8
Python
false
false
11,057
py
import sys import pickle import json import random import operator import numpy as np from functools import reduce from pathlib import Path from copy import deepcopy try: from nuscenes.nuscenes import NuScenes from nuscenes.eval.detection.config import config_factory except: print("nuScenes devkit not found!") from det3d.datasets.custom import PointCloudDataset from det3d.datasets.nuscenes.nusc_common import ( general_to_detection, cls_attr_dist, _second_det_to_nusc_box, _lidar_nusc_box_to_global, eval_main ) from det3d.datasets.registry import DATASETS @DATASETS.register_module class NuScenesDataset(PointCloudDataset): NumPointFeatures = 5 # x, y, z, intensity, ring_index def __init__( self, info_path, root_path, nsweeps=0, # here set to zero to catch unset nsweep cfg=None, pipeline=None, class_names=None, test_mode=False, version="v1.0-trainval", **kwargs, ): super(NuScenesDataset, self).__init__( root_path, info_path, pipeline, test_mode=test_mode, class_names=class_names ) self.nsweeps = nsweeps assert self.nsweeps > 0, "At least input one sweep please!" print(self.nsweeps) self._info_path = info_path self._class_names = class_names if not hasattr(self, "_nusc_infos"): self.load_infos(self._info_path) self._num_point_features = NuScenesDataset.NumPointFeatures self._name_mapping = general_to_detection self.painted = kwargs.get('painted', False) if self.painted: self._num_point_features += 10 self.version = version self.eval_version = "detection_cvpr_2019" def reset(self): self.logger.info(f"re-sample {self.frac} frames from full set") random.shuffle(self._nusc_infos_all) self._nusc_infos = self._nusc_infos_all[: self.frac] def load_infos(self, info_path): with open(self._info_path, "rb") as f: _nusc_infos_all = pickle.load(f) if not self.test_mode: # if training self.frac = int(len(_nusc_infos_all) * 0.25) _cls_infos = {name: [] for name in self._class_names} for info in _nusc_infos_all: for name in set(info["gt_names"]): if name in self._class_names: _cls_infos[name].append(info) duplicated_samples = sum([len(v) for _, v in _cls_infos.items()]) _cls_dist = {k: len(v) / duplicated_samples for k, v in _cls_infos.items()} self._nusc_infos = [] frac = 1.0 / len(self._class_names) ratios = [frac / v for v in _cls_dist.values()] for cls_infos, ratio in zip(list(_cls_infos.values()), ratios): self._nusc_infos += np.random.choice( cls_infos, int(len(cls_infos) * ratio) ).tolist() _cls_infos = {name: [] for name in self._class_names} for info in self._nusc_infos: for name in set(info["gt_names"]): if name in self._class_names: _cls_infos[name].append(info) _cls_dist = { k: len(v) / len(self._nusc_infos) for k, v in _cls_infos.items() } else: if isinstance(_nusc_infos_all, dict): self._nusc_infos = [] for v in _nusc_infos_all.values(): self._nusc_infos.extend(v) else: self._nusc_infos = _nusc_infos_all def __len__(self): if not hasattr(self, "_nusc_infos"): self.load_infos(self._info_path) return len(self._nusc_infos) @property def ground_truth_annotations(self): if "gt_boxes" not in self._nusc_infos[0]: return None cls_range_map = config_factory(self.eval_version).serialize()['class_range'] gt_annos = [] for info in self._nusc_infos: gt_names = np.array(info["gt_names"]) gt_boxes = info["gt_boxes"] mask = np.array([n != "ignore" for n in gt_names], dtype=np.bool_) gt_names = gt_names[mask] gt_boxes = gt_boxes[mask] # det_range = np.array([cls_range_map[n] for n in gt_names_mapped]) det_range = np.array([cls_range_map[n] for n in gt_names]) det_range = det_range[..., np.newaxis] @ np.array([[-1, -1, 1, 1]]) mask = (gt_boxes[:, :2] >= det_range[:, :2]).all(1) mask &= (gt_boxes[:, :2] <= det_range[:, 2:]).all(1) N = int(np.sum(mask)) gt_annos.append( { "bbox": np.tile(np.array([[0, 0, 50, 50]]), [N, 1]), "alpha": np.full(N, -10), "occluded": np.zeros(N), "truncated": np.zeros(N), "name": gt_names[mask], "location": gt_boxes[mask][:, :3], "dimensions": gt_boxes[mask][:, 3:6], "rotation_y": gt_boxes[mask][:, 6], "token": info["token"], } ) return gt_annos def get_sensor_data(self, idx): info = self._nusc_infos[idx] res = { "lidar": { "type": "lidar", "points": None, "nsweeps": self.nsweeps, # "ground_plane": -gp[-1] if with_gp else None, "annotations": None, }, "metadata": { "image_prefix": self._root_path, "num_point_features": self._num_point_features, "token": info["token"], }, "calib": None, "cam": {}, "mode": "val" if self.test_mode else "train", "painted": self.painted } data, _ = self.pipeline(res, info) return data def __getitem__(self, idx): return self.get_sensor_data(idx) def evaluation(self, detections, output_dir=None, testset=False): version = self.version eval_set_map = { "v1.0-mini": "mini_val", "v1.0-trainval": "val", "v1.0-test": "test", } if not testset: dets = [] gt_annos = self.ground_truth_annotations assert gt_annos is not None miss = 0 for gt in gt_annos: try: dets.append(detections[gt["token"]]) except Exception: miss += 1 assert miss == 0 else: dets = [v for _, v in detections.items()] assert len(detections) == 6008 nusc_annos = { "results": {}, "meta": None, } nusc = NuScenes(version=version, dataroot=str(self._root_path), verbose=True) mapped_class_names = [] for n in self._class_names: if n in self._name_mapping: mapped_class_names.append(self._name_mapping[n]) else: mapped_class_names.append(n) for det in dets: annos = [] boxes = _second_det_to_nusc_box(det) boxes = _lidar_nusc_box_to_global(nusc, boxes, det["metadata"]["token"]) for i, box in enumerate(boxes): name = mapped_class_names[box.label] if np.sqrt(box.velocity[0] ** 2 + box.velocity[1] ** 2) > 0.2: if name in [ "car", "construction_vehicle", "bus", "truck", "trailer", ]: attr = "vehicle.moving" elif name in ["bicycle", "motorcycle"]: attr = "cycle.with_rider" else: attr = None else: if name in ["pedestrian"]: attr = "pedestrian.standing" elif name in ["bus"]: attr = "vehicle.stopped" else: attr = None nusc_anno = { "sample_token": det["metadata"]["token"], "translation": box.center.tolist(), "size": box.wlh.tolist(), "rotation": box.orientation.elements.tolist(), "velocity": box.velocity[:2].tolist(), "detection_name": name, "detection_score": box.score, "attribute_name": attr if attr is not None else max(cls_attr_dist[name].items(), key=operator.itemgetter(1))[ 0 ], } annos.append(nusc_anno) nusc_annos["results"].update({det["metadata"]["token"]: annos}) nusc_annos["meta"] = { "use_camera": False, "use_lidar": True, "use_radar": False, "use_map": False, "use_external": False, } name = self._info_path.split("/")[-1].split(".")[0] res_path = str(Path(output_dir) / Path(name + ".json")) with open(res_path, "w") as f: json.dump(nusc_annos, f) print(f"Finish generate predictions for testset, save to {res_path}") if not testset: eval_main( nusc, self.eval_version, res_path, eval_set_map[self.version], output_dir, ) with open(Path(output_dir) / "metrics_summary.json", "r") as f: metrics = json.load(f) detail = {} result = f"Nusc {version} Evaluation\n" for name in mapped_class_names: detail[name] = {} for k, v in metrics["label_aps"][name].items(): detail[name][f"dist@{k}"] = v threshs = ", ".join(list(metrics["label_aps"][name].keys())) scores = list(metrics["label_aps"][name].values()) mean = sum(scores) / len(scores) scores = ", ".join([f"{s * 100:.2f}" for s in scores]) result += f"{name} Nusc dist AP@{threshs}\n" result += scores result += f" mean AP: {mean}" result += "\n" res_nusc = { "results": {"nusc": result}, "detail": {"nusc": detail}, } else: res_nusc = None if res_nusc is not None: res = { "results": {"nusc": res_nusc["results"]["nusc"],}, "detail": {"eval.nusc": res_nusc["detail"]["nusc"],}, } else: res = None return res, None
88064737146f8486c48bb2156213112e065c2bf0
74698be74d244ebbabcb0b3cf17ebed26adfa37c
/official/modeling/progressive/trainer_test.py
0dae36b770f956b6e57d931152bd5528377b1bd7
[ "Apache-2.0" ]
permissive
lfads/models
aa75616fee2476641aa98ca1cbdce7e5d27a9aff
fd700f0cb2e104544c445d9fbf3991d8388ff18a
refs/heads/master
2021-01-25T13:50:55.423010
2021-01-05T18:27:01
2021-01-05T18:27:01
123,619,512
16
9
Apache-2.0
2021-01-05T18:27:02
2018-03-02T19:07:50
Python
UTF-8
Python
false
false
9,150
py
# Copyright 2020 The TensorFlow 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. """Tests for the progressive trainer.""" # pylint: disable=g-direct-tensorflow-import import os from absl.testing import parameterized import orbit import tensorflow as tf from tensorflow.python.distribute import combinations from tensorflow.python.distribute import strategy_combinations from official.core import config_definitions as cfg from official.modeling import optimization from official.modeling.progressive import policies from official.modeling.progressive import trainer as trainer_lib from official.nlp.configs import bert from official.utils.testing import mock_task def all_strategy_combinations(): return combinations.combine( distribution=[ strategy_combinations.default_strategy, strategy_combinations.cloud_tpu_strategy, strategy_combinations.one_device_strategy_gpu, ],) def get_exp_config(): return cfg.ExperimentConfig( task=cfg.TaskConfig( model=bert.PretrainerConfig()), trainer=trainer_lib.ProgressiveTrainerConfig( export_checkpoint=True, export_checkpoint_interval=1, export_only_final_stage_ckpt=False)) class TestPolicy(policies.ProgressivePolicy, mock_task.MockTask): """Just for testing purposes.""" def __init__(self, strategy, task_config, change_train_dataset=True): self._strategy = strategy self._change_train_dataset = change_train_dataset self._my_train_dataset = None mock_task.MockTask.__init__(self, params=task_config, logging_dir=None) policies.ProgressivePolicy.__init__(self) def num_stages(self) -> int: return 2 def num_steps(self, stage_id: int) -> int: return 2 if stage_id == 0 else 4 def get_model(self, stage_id: int, old_model: tf.keras.Model) -> tf.keras.Model: del stage_id, old_model return self.build_model() def get_optimizer(self, stage_id: int) -> tf.keras.optimizers.Optimizer: optimizer_type = 'sgd' if stage_id == 0 else 'adamw' optimizer_config = cfg.OptimizationConfig({ 'optimizer': {'type': optimizer_type}, 'learning_rate': {'type': 'constant'}}) opt_factory = optimization.OptimizerFactory(optimizer_config) return opt_factory.build_optimizer(opt_factory.build_learning_rate()) def get_train_dataset(self, stage_id: int) -> tf.data.Dataset: if not self._change_train_dataset and self._my_train_dataset: return self._my_train_dataset if self._strategy: self._my_train_dataset = orbit.utils.make_distributed_dataset( self._strategy, self._build_inputs, stage_id) else: self._my_train_dataset = self._build_inputs(stage_id) return self._my_train_dataset def get_eval_dataset(self, stage_id: int) -> tf.data.Dataset: if self._strategy: return orbit.utils.make_distributed_dataset( self._strategy, self._build_inputs, stage_id) return self._build_inputs(stage_id) def _build_inputs(self, stage_id): def dummy_data(_): batch_size = 2 if stage_id == 0 else 1 x = tf.zeros(shape=(batch_size, 2), dtype=tf.float32) label = tf.zeros(shape=(batch_size, 1), dtype=tf.float32) return x, label dataset = tf.data.Dataset.range(1) dataset = dataset.repeat() return dataset.map( dummy_data, num_parallel_calls=tf.data.experimental.AUTOTUNE) class TrainerTest(tf.test.TestCase, parameterized.TestCase): def setUp(self): super(TrainerTest, self).setUp() self._config = get_exp_config() def create_test_trainer(self, distribution, model_dir, change_train_dataset): trainer = trainer_lib.ProgressiveTrainer( self._config, prog_task=TestPolicy( distribution, self._config.task, change_train_dataset), ckpt_dir=model_dir) return trainer @combinations.generate(all_strategy_combinations()) def test_checkpointing(self, distribution): model_dir = self.get_temp_dir() ckpt_file = os.path.join(model_dir, 'ckpt') with distribution.scope(): trainer = self.create_test_trainer(distribution, model_dir, True) self.assertFalse(trainer._task.is_last_stage) trainer.train(tf.convert_to_tensor(4, dtype=tf.int32)) self.assertTrue(trainer._task.is_last_stage) trainer.checkpoint.save(ckpt_file) trainer = self.create_test_trainer(distribution, model_dir, True) self.assertFalse(trainer._task.is_last_stage) trainer.checkpoint.restore(ckpt_file + '-1') self.assertTrue(trainer._task.is_last_stage) @combinations.generate(all_strategy_combinations()) def test_train_dataset(self, distribution): model_dir = self.get_temp_dir() with distribution.scope(): trainer = self.create_test_trainer(distribution, model_dir, True) # Using dataset of stage == 0 train_iter = tf.nest.map_structure(iter, trainer.train_dataset) train_data = train_iter.next()[0] if distribution.num_replicas_in_sync > 1: train_data = train_data.values[0] self.assertEqual(train_data.shape[0], 2) trainer.train(tf.convert_to_tensor(4, dtype=tf.int32)) # Using dataset of stage == 1 train_iter = tf.nest.map_structure(iter, trainer.train_dataset) train_data = train_iter.next()[0] if distribution.num_replicas_in_sync > 1: train_data = train_data.values[0] self.assertEqual(train_data.shape[0], 1) with self.assertRaises(SyntaxError): trainer.train_dataset = None @combinations.generate(all_strategy_combinations()) def test_train_dataset_no_switch(self, distribution): model_dir = self.get_temp_dir() with distribution.scope(): trainer = self.create_test_trainer(distribution, model_dir, False) trainer.train(tf.convert_to_tensor(2, dtype=tf.int32)) # _train_iter is not reset since the dataset is not changed. self.assertIsNotNone(trainer._train_iter) with distribution.scope(): trainer = self.create_test_trainer(distribution, model_dir, True) trainer.train(tf.convert_to_tensor(2, dtype=tf.int32)) # _train_iter is reset since the dataset changed. self.assertIsNone(trainer._train_iter) class TrainerWithMaskedLMTaskTest(tf.test.TestCase, parameterized.TestCase): def setUp(self): super(TrainerWithMaskedLMTaskTest, self).setUp() self._config = get_exp_config() def create_test_trainer(self, distribution): trainer = trainer_lib.ProgressiveTrainer( self._config, prog_task=TestPolicy(distribution, self._config.task), ckpt_dir=self.get_temp_dir()) return trainer @combinations.generate(all_strategy_combinations()) def test_trainer_train(self, distribution): with distribution.scope(): trainer = self.create_test_trainer(distribution) logs = trainer.train(tf.convert_to_tensor(5, dtype=tf.int32)) self.assertIn('training_loss', logs) self.assertIn('learning_rate', logs) @combinations.generate(all_strategy_combinations()) def test_trainer_validate(self, distribution): with distribution.scope(): trainer = self.create_test_trainer(distribution) logs = trainer.evaluate(tf.convert_to_tensor(5, dtype=tf.int32)) self.assertIn('validation_loss', logs) self.assertEqual(logs['counter'], 5. * distribution.num_replicas_in_sync) @combinations.generate( combinations.combine( mixed_precision_dtype=['float32', 'bfloat16', 'float16'], loss_scale=[None, 'dynamic', 128, 256], )) def test_configure_optimizer(self, mixed_precision_dtype, loss_scale): config = cfg.ExperimentConfig( task=cfg.TaskConfig( model=bert.PretrainerConfig()), runtime=cfg.RuntimeConfig( mixed_precision_dtype=mixed_precision_dtype, loss_scale=loss_scale), trainer=trainer_lib.ProgressiveTrainerConfig( export_checkpoint=True, export_checkpoint_interval=1, export_only_final_stage_ckpt=False)) task = TestPolicy(None, config.task) trainer = trainer_lib.ProgressiveTrainer(config, task, self.get_temp_dir()) if mixed_precision_dtype != 'float16': self.assertIsInstance(trainer.optimizer, tf.keras.optimizers.SGD) elif mixed_precision_dtype == 'float16' and loss_scale is None: self.assertIsInstance(trainer.optimizer, tf.keras.optimizers.SGD) metrics = trainer.train(tf.convert_to_tensor(5, dtype=tf.int32)) self.assertIn('training_loss', metrics) if __name__ == '__main__': tf.test.main()
0c3bfbea643ac9fd23c1c480c171e9ec77ba22e6
0191140830e827ddfde9300d5cc5962018a7bac1
/celauco/migrations/0001_initial.py
9423288d3a9aaa9dec80cbf2469bbfe1324ef34e
[]
no_license
NicolleLouis/LouisNicolle
d816a60f30d92a9c2bc1b6ef6443c477505bf1bc
b99ae034d58afce5670d0b2fb0e5f3ce57bf1449
refs/heads/master
2023-08-17T20:37:29.024430
2021-09-13T14:26:02
2021-09-13T14:26:02
291,709,252
0
1
null
null
null
null
UTF-8
Python
false
false
794
py
# Generated by Django 3.2.4 on 2021-09-11 17:26 from django.db import migrations, models class Migration(migrations.Migration): initial = True dependencies = [ ] operations = [ migrations.CreateModel( name='Board', fields=[ ('id', models.AutoField(primary_key=True, serialize=False)), ('turn_number', models.IntegerField(blank=True, null=True)), ('board_string_representation', models.TextField(blank=True, null=True)), ('number_infected', models.IntegerField(blank=True, null=True)), ('number_healthy', models.IntegerField(blank=True, null=True)), ('number_immune', models.IntegerField(blank=True, null=True)), ], ), ]
391053f155a0c7fe44b5bdddb2c4f93f2fa2dd38
1c91439673c898c2219ee63750ea05ff847faee1
/configs/vision_transformer/vit-large-p16_ft-64xb64_in1k-384.py
5be99188bfe0fbbce2de927c9d9c55ed74131d2f
[ "Apache-2.0" ]
permissive
ChenhongyiYang/GPViT
d7ba7f00d5139a989a999664ab0874c5c9d53d4d
2b8882b2da41d4e175fe49a33fcefad1423216f4
refs/heads/main
2023-06-08T00:10:07.319078
2023-05-26T15:52:54
2023-05-26T15:52:54
577,075,781
78
2
null
null
null
null
UTF-8
Python
false
false
1,140
py
_base_ = [ '../_base_/models/vit-large-p16.py', '../_base_/datasets/imagenet_bs64_pil_resize_autoaug.py', '../_base_/schedules/imagenet_bs4096_AdamW.py', '../_base_/default_runtime.py' ] model = dict(backbone=dict(img_size=384)) img_norm_cfg = dict( mean=[127.5, 127.5, 127.5], std=[127.5, 127.5, 127.5], to_rgb=True) train_pipeline = [ dict(type='LoadImageFromFile'), dict(type='RandomResizedCrop', size=384, backend='pillow'), dict(type='RandomFlip', flip_prob=0.5, direction='horizontal'), dict(type='Normalize', **img_norm_cfg), dict(type='ImageToTensor', keys=['img']), dict(type='ToTensor', keys=['gt_label']), dict(type='Collect', keys=['img', 'gt_label']) ] test_pipeline = [ dict(type='LoadImageFromFile'), dict(type='Resize', size=(384, -1), backend='pillow'), dict(type='CenterCrop', crop_size=384), dict(type='Normalize', **img_norm_cfg), dict(type='ImageToTensor', keys=['img']), dict(type='Collect', keys=['img']) ] data = dict( train=dict(pipeline=train_pipeline), val=dict(pipeline=test_pipeline), test=dict(pipeline=test_pipeline), )
fc60af11b3d368c537f0f4df6d74171c61349d76
364edc98a05ddecf5ad7b7614d2a35a95d19705b
/rxpy/subject.py
02dcecc1bc9be7f5921fc1486dee19a05d51b19c
[]
no_license
as950118/outsource
f7f10b5ba62487da8ccddd894aaedc8af48e9d50
05a9f654aa222f4da4ce9c4902dde094c9d158d0
refs/heads/master
2022-12-21T00:18:45.405708
2020-02-03T15:53:16
2020-02-03T15:53:16
193,331,277
0
0
null
2022-12-06T22:38:00
2019-06-23T09:50:33
HTML
UTF-8
Python
false
false
401
py
from rx import Observable, Observer from rx.subjects import Subject class PrintObserver(Observer): def on_next(self, value): print("Value :", value) def on_error(self, error): print("Error :", error) def on_completed(self): print("Completed") subject = Subject() subject.subscribe(PrintObserver()) for i in range(10): subject.on_next(i) subject.on_completed()
a76cca19fa4d0bfcf0f465ae0c1bec1dce41ed75
c824722d02a36f888f74bf60455361a2a1fe5212
/rnacentral_pipeline/rnacentral/genes/methods/singletons.py
23f128344be241778a004c7535b3cea245c45a8c
[ "GPL-1.0-or-later", "Apache-2.0", "Artistic-1.0-Perl", "LicenseRef-scancode-other-copyleft", "LicenseRef-scancode-unknown-license-reference" ]
permissive
RNAcentral/rnacentral-import-pipeline
d1b52291fc083470d75cf400b10792e1613662db
4505f748f9a932ffe4663c16b6c81574e4c04178
refs/heads/master
2023-08-31T23:37:29.744476
2023-04-11T11:10:48
2023-04-11T11:10:48
29,351,993
5
0
Apache-2.0
2023-07-12T13:58:10
2015-01-16T14:34:15
Python
UTF-8
Python
false
false
1,074
py
# -*- coding: utf-8 -*- """ Copyright [2009-2021] EMBL-European Bioinformatics Institute 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. """ import logging from rnacentral_pipeline.rnacentral.genes.data import State, LocationInfo, Context from .common_filter import filter LOGGER = logging.getLogger(__name__) class SingletonMethod: def handle_location(self, state: State, context: Context, location: LocationInfo): if filter(state, context, location): return LOGGER.debug("Adding singleton cluster of %s", location.id) state.add_singleton_cluster(location)
ec68fcbdad6e89265b1e12e9341ad203211a2bb2
283bbf2ce575ea72010e9823907285b08d20fce4
/breathecode/services/slack/commands/cohort.py
2836ed2bf671bb37af7aab2ef7b781a00670daf5
[]
no_license
AnMora/apiv2
c084ffcb4ff5b7a0a01dac8fca26f4f4c37aad97
fa3b3f0ce4a069facdecd18e133c7b4222a0004a
refs/heads/master
2023-05-19T23:00:34.257230
2021-06-08T21:17:56
2021-06-08T21:17:56
null
0
0
null
null
null
null
UTF-8
Python
false
false
1,379
py
import os from breathecode.admissions.models import Cohort, CohortUser from ..decorator import command from ..utils import to_string """ Possible parameters for this command: - users: Array of user slack_ids mentioned inside the slack command text content - user_id: Slack user ID of the message author - team_id: Slack team_id where the message was posted - channel_id: Slack channel_id where the message was posted - text: Content of the slack channel """ @command(only='staff') def execute(channel_id, **context): response = { "blocks": [] } response["blocks"].append(render_cohort(channel_id=channel_id)) return response def render_cohort(channel_id): cohort = Cohort.objects.filter(slackchannel__slack_id=channel_id).first() if cohort is None: raise Exception(f"Cohort was not found as slack channel, make sure the channel name matches the cohort slug") teachers = CohortUser.objects.filter(cohort=cohort, role__in=['TEACHER','ASSISTANT']) return { "type": "section", "text": { "type": "mrkdwn", "text": f""" *Cohort name:* {cohort.name} *Start Date*: {cohort.kickoff_date} *End Date*: {cohort.ending_date} *Current day:*: {cohort.current_day} *Stage:* {cohort.stage} *Teachers:* {', '.join([cu.user.first_name + ' ' + cu.user.last_name for cu in teachers])} """ } }
c435f6f9e7b20dc1af9c920cba94abff9c3cc1da
799fee946fa3f4773cb1340bb36af5b465fdc570
/tests/test_models/test_body_models/test_utils.py
98127bf148f16a4805906a814f7a689e4be4c29c
[ "Apache-2.0" ]
permissive
open-mmlab/mmhuman3d
8c534d3c252f68f2d14d3e67fe67bfbccadfad36
9431addec32f7fbeffa1786927a854c0ab79d9ea
refs/heads/main
2023-08-31T13:30:59.894842
2023-07-10T02:32:20
2023-07-10T02:32:20
432,877,190
966
139
Apache-2.0
2023-08-31T08:49:16
2021-11-29T02:10:31
Python
UTF-8
Python
false
false
4,440
py
import torch from mmhuman3d.models.body_models.builder import build_body_model from mmhuman3d.models.body_models.utils import ( batch_transform_to_camera_frame, transform_to_camera_frame, ) from mmhuman3d.utils.transforms import ee_to_rotmat def test_transform_to_camera_frame(): # initialize body model body_model = build_body_model( dict( type='SMPL', keypoint_src='smpl_45', keypoint_dst='smpl_45', model_path='data/body_models/smpl', )) # generate random values random_transl = torch.rand((1, 3)) random_rotation = torch.rand((1, 3)) random_rotmat = ee_to_rotmat(random_rotation) random_extrinsic = torch.eye(4) random_extrinsic[:3, :3] = random_rotmat random_extrinsic[:3, 3] = random_transl random_global_orient = torch.rand((1, 3)) random_body_pose = torch.rand((1, 69)) random_transl = torch.rand((1, 3)) random_betas = torch.rand((1, 10)) random_output = body_model( global_orient=random_global_orient, body_pose=random_body_pose, transl=random_transl, betas=random_betas) random_joints = random_output['joints'] random_pelvis = random_joints[:, 0, :] # transform params transformed_global_orient, transformed_transl = \ transform_to_camera_frame( global_orient=random_global_orient.numpy().squeeze(), # (3, ) transl=random_transl.numpy().squeeze(), # (3, ) pelvis=random_pelvis.numpy().squeeze(), # (3, ) extrinsic=random_extrinsic.numpy().squeeze() # (4, 4) ) transformed_output = body_model( global_orient=torch.tensor(transformed_global_orient.reshape(1, 3)), transl=torch.tensor(transformed_transl.reshape(1, 3)), body_pose=random_body_pose, betas=random_betas) transformed_joints = transformed_output['joints'] # check validity random_joints = random_joints.squeeze() # (45, 3) random_joints = torch.cat([random_joints, torch.ones(45, 1)], dim=1) # (45, 4) test_joints = torch.einsum('ij,kj->ki', random_extrinsic, random_joints) # (45, 4) test_joints = test_joints[:, :3] # (45, 3) assert torch.allclose(transformed_joints, test_joints, atol=1e-6) def test_batch_transform_to_camera_frame(): # batch size N = 2 # initialize body model body_model = build_body_model( dict( type='SMPL', keypoint_src='smpl_45', keypoint_dst='smpl_45', model_path='data/body_models/smpl', )) # generate random values random_transl = torch.rand((1, 3)) random_rotation = torch.rand((1, 3)) random_rotmat = ee_to_rotmat(random_rotation) random_extrinsic = torch.eye(4) random_extrinsic[:3, :3] = random_rotmat random_extrinsic[:3, 3] = random_transl random_global_orient = torch.rand((N, 3)) random_body_pose = torch.rand((N, 69)) random_transl = torch.rand((N, 3)) random_betas = torch.rand((N, 10)) random_output = body_model( global_orient=random_global_orient, body_pose=random_body_pose, transl=random_transl, betas=random_betas) random_joints = random_output['joints'] random_pelvis = random_joints[:, 0, :] # transform params transformed_global_orient, transformed_transl = \ batch_transform_to_camera_frame( global_orient=random_global_orient.numpy(), # (N, 3) transl=random_transl.numpy(), # (N, 3) pelvis=random_pelvis.numpy(), # (N, 3) extrinsic=random_extrinsic.numpy() # (4, 4) ) transformed_output = body_model( global_orient=torch.tensor(transformed_global_orient.reshape(N, 3)), transl=torch.tensor(transformed_transl.reshape(N, 3)), body_pose=random_body_pose, betas=random_betas) transformed_joints = transformed_output['joints'] # check validity random_joints = random_joints # (N, 45, 3) random_joints = torch.cat( [random_joints, torch.ones(N, 45, 1)], dim=2) # (N, 45, 4) test_joints = torch.einsum('ij,bkj->bki', random_extrinsic, random_joints) # (N, 45, 4) test_joints = test_joints[:, :, :3] # (N, 45, 3) assert torch.allclose(transformed_joints, test_joints, atol=1e-6)
eb2d15ca8f556155a42d6387f633b23755a40b50
03e3138f99f275d15d41a5c5bfb212f85d64d02e
/source/res/scripts/client/gui/battle_control/controllers/progress_circle_ctrl.py
4c979246ebce6a237814dd811c6e984512e6c7c5
[]
no_license
TrenSeP/WorldOfTanks-Decompiled
e428728e7901146d0b599d02c930d70532232a97
1faa748acec1b7e435b657fd054ecba23dd72778
refs/heads/1.4.1
2020-04-27T08:07:49.813023
2019-03-05T17:37:06
2019-03-05T17:37:06
174,159,837
1
0
null
2019-03-06T14:33:33
2019-03-06T14:24:36
Python
UTF-8
Python
false
false
18,137
py
# Python bytecode 2.7 (decompiled from Python 2.7) # Embedded file name: scripts/client/gui/battle_control/controllers/progress_circle_ctrl.py from functools import partial import BigWorld import Event from constants import REPAIR_POINT_ACTION, SECTOR_BASE_ACTION from debug_utils import LOG_WARNING, LOG_ERROR from gui.Scaleform.genConsts.EPIC_CONSTS import EPIC_CONSTS from gui.battle_control.avatar_getter import getSoundNotifications from gui.battle_control.battle_constants import BATTLE_CTRL_ID, PROGRESS_CIRCLE_TYPE, VEHICLE_VIEW_STATE from gui.battle_control.controllers.interfaces import IBattleController REPAIR_COMPLETE_BLOCKED_DELAY = 2 _ACTION_SOUND_IDS = {REPAIR_POINT_ACTION.COMPLETE_REPAIR: 'point_repair'} class ProgressTimerPlugin(object): def __init__(self, controller, sessionProvider): self._controller = controller self._type = -1 self._callback = None self._cooldown = {} self._isInPostmortem = False self._inCircleIdx = -1 self._sessionProvider = sessionProvider return def start(self): ctrl = self._sessionProvider.shared.vehicleState if ctrl is not None: ctrl.onVehicleStateUpdated += self._onVehicleStateUpdated ctrl.onPostMortemSwitched += self._onPostMortemSwitched if ctrl.isInPostmortem: self._onPostMortemSwitched(noRespawnPossible=False, respawnAvailable=False) ctrl = self._sessionProvider.dynamic.respawn if ctrl is not None: ctrl.onRespawnVisibilityChanged += self._onRespawnVisibility self._onRespawnVisibility(ctrl.isRespawnVisible()) return def fini(self): ctrl = self._sessionProvider.shared.vehicleState if ctrl is not None: ctrl.onVehicleStateUpdated -= self._onVehicleStateUpdated ctrl.onPostMortemSwitched -= self._onPostMortemSwitched ctrl = self._sessionProvider.dynamic.respawn if ctrl is not None: ctrl.onRespawnVisibilityChanged -= self._onRespawnVisibility return def getPlayerState(self, idx): return (self._inCircleIdx == idx, None) def _getTime(self, nextTime): return max(0, round(nextTime - BigWorld.serverTime())) def _cooldownCallback(self): delCallbacks = [] for idx in self._cooldown: if self._getTime(self._cooldown[idx]) > 0: self._controller.onTimerUpdated(self._type, idx, self._getTime(self._cooldown[idx])) delCallbacks.append(idx) for i in range(0, len(delCallbacks)): del self._cooldown[delCallbacks[i]] if self._cooldown.keys(): self._callback = BigWorld.callback(1, self._cooldownCallback) else: self._callback = None return def _startCooldownCallback(self, idx, time): self._cooldown[idx] = time if self._callback is None: self._callback = BigWorld.callback(1, self._cooldownCallback) return def _onPostMortemSwitched(self, noRespawnPossible, respawnAvailable): self._isInPostmortem = True def _onRespawnVisibility(self, isVisible, fromTab=False): if isVisible and self._isInPostmortem: self._isInPostmortem = False self._stopTimerCallback() self._hideAll() def _onVehicleStateUpdated(self, state, value): if state == VEHICLE_VIEW_STATE.SWITCHING: if self._isInPostmortem: self._stopTimerCallback() self._hideAll() def _stopTimerCallback(self): self._cooldown = {} def _hideAll(self): pass class StepRepairPlugin(ProgressTimerPlugin): def __init__(self, controller, sessionProvider): super(StepRepairPlugin, self).__init__(controller, sessionProvider) self._type = PROGRESS_CIRCLE_TYPE.RESUPPLY_CIRCLE self.__repairPointStates = {} self.__delayedCooldownCB = None self.__isInFreecam = False return def start(self): super(StepRepairPlugin, self).start() componentSystem = self._sessionProvider.arenaVisitor.getComponentSystem() stepRepairPointComponent = getattr(componentSystem, 'stepRepairPointComponent', None) if stepRepairPointComponent is not None: stepRepairPointComponent.onStepRepairPointPlayerAction += self._action actions = stepRepairPointComponent.repairPointPlayerActions for idx in actions.keys(): action, time, hphealed = actions[idx] if action == REPAIR_POINT_ACTION.COOLDOWN_AFTER_COMPLETE: self._action(idx, REPAIR_POINT_ACTION.COOLDOWN, time, hphealed) if action != REPAIR_POINT_ACTION.CANCEL_REPAIR and action != REPAIR_POINT_ACTION.LEAVE_WHILE_CD: self._action(idx, action, time, hphealed) else: LOG_ERROR('Expected StepRepairPointComponent not present!') specCtrl = self._sessionProvider.dynamic.spectator if specCtrl is not None: specCtrl.onSpectatorViewModeChanged += self.__onSpectatorModeChanged return def fini(self): super(StepRepairPlugin, self).fini() componentSystem = self._sessionProvider.arenaVisitor.getComponentSystem() stepRepairPointComponent = getattr(componentSystem, 'stepRepairPointComponent', None) if stepRepairPointComponent is not None: stepRepairPointComponent.onStepRepairPointPlayerAction -= self._action specCtrl = self._sessionProvider.dynamic.spectator if specCtrl is not None: specCtrl.onSpectatorViewModeChanged -= self.__onSpectatorModeChanged return def getPlayerState(self, idx): return (self._inCircleIdx == idx, self.__repairPointStates.get(idx, None)) def _onRespawnVisibility(self, isVisible, fromTab=False): super(StepRepairPlugin, self)._onRespawnVisibility(isVisible, fromTab) if isVisible: self.__isInFreecam = False def _action(self, repairPointIndex, action, nextActionTime, percentageHealed): if self.__isInFreecam and action not in {REPAIR_POINT_ACTION.START_REPAIR, REPAIR_POINT_ACTION.BECOME_READY}: return else: currentState = EPIC_CONSTS.RESUPPLY_READY if repairPointIndex not in self.__repairPointStates: self.__repairPointStates[repairPointIndex] = currentState if action == REPAIR_POINT_ACTION.START_REPAIR: if self._inCircleIdx < 0: self._controller.onVehicleEntered(self._type, repairPointIndex, EPIC_CONSTS.RESUPPLY_READY) self._inCircleIdx = repairPointIndex else: self._controller.onCircleStatusChanged(self._type, repairPointIndex, EPIC_CONSTS.RESUPPLY_READY) self.__repairPointStates[repairPointIndex] = EPIC_CONSTS.RESUPPLY_READY elif action == REPAIR_POINT_ACTION.CANCEL_REPAIR: self._controller.onVehicleLeft(self._type, repairPointIndex) self._inCircleIdx = -1 if self.__delayedCooldownCB is not None: BigWorld.cancelCallback(self.__delayedCooldownCB) self.__delayedCooldownCB = None elif action == REPAIR_POINT_ACTION.COMPLETE_REPAIR: self._controller.onCircleStatusChanged(self._type, repairPointIndex, EPIC_CONSTS.RESUPPLY_FULL) self.__repairPointStates[repairPointIndex] = EPIC_CONSTS.RESUPPLY_FULL self._playSoundByAction(REPAIR_POINT_ACTION.COMPLETE_REPAIR) elif action == REPAIR_POINT_ACTION.COOLDOWN: if self._inCircleIdx < 0: self._controller.onVehicleEntered(self._type, repairPointIndex, EPIC_CONSTS.RESUPPLY_BLOCKED) self._inCircleIdx = repairPointIndex else: self._controller.onCircleStatusChanged(self._type, repairPointIndex, EPIC_CONSTS.RESUPPLY_BLOCKED) self.__repairPointStates[repairPointIndex] = EPIC_CONSTS.RESUPPLY_BLOCKED self._controller.onTimerUpdated(self._type, repairPointIndex, self._getTime(nextActionTime)) self._startCooldownCallback(repairPointIndex, nextActionTime) elif action == REPAIR_POINT_ACTION.COOLDOWN_AFTER_COMPLETE: self._controller.onCircleStatusChanged(self._type, repairPointIndex, EPIC_CONSTS.RESUPPLY_BLOCKED) if not self._isInPostmortem: self.__delayedCooldownCB = BigWorld.callback(REPAIR_COMPLETE_BLOCKED_DELAY, partial(self.__delayedCooldown, repairPointIndex, nextActionTime)) else: self.__delayedCooldown(repairPointIndex, nextActionTime) elif action == REPAIR_POINT_ACTION.ENTER_WHILE_CD: if self._inCircleIdx < 0: self._controller.onVehicleEntered(self._type, repairPointIndex, EPIC_CONSTS.RESUPPLY_BLOCKED) self._inCircleIdx = repairPointIndex else: self._controller.onCircleStatusChanged(self._type, repairPointIndex, EPIC_CONSTS.RESUPPLY_BLOCKED) self.__repairPointStates[repairPointIndex] = EPIC_CONSTS.RESUPPLY_BLOCKED self._controller.onTimerUpdated(self._type, repairPointIndex, self._getTime(nextActionTime)) self._startCooldownCallback(repairPointIndex, nextActionTime) elif action == REPAIR_POINT_ACTION.LEAVE_WHILE_CD: self._controller.onVehicleLeft(self._type, repairPointIndex) self._inCircleIdx = -1 self._controller.onCircleStatusChanged(self._type, repairPointIndex, EPIC_CONSTS.RESUPPLY_BLOCKED) self.__repairPointStates[repairPointIndex] = EPIC_CONSTS.RESUPPLY_BLOCKED self._controller.onTimerUpdated(self._type, repairPointIndex, self._getTime(nextActionTime)) self._startCooldownCallback(repairPointIndex, nextActionTime) if self.__delayedCooldownCB is not None: BigWorld.cancelCallback(self.__delayedCooldownCB) self.__delayedCooldownCB = None elif action == REPAIR_POINT_ACTION.BECOME_READY: self._controller.onCircleStatusChanged(self._type, repairPointIndex, EPIC_CONSTS.RESUPPLY_READY) self.__repairPointStates[repairPointIndex] = EPIC_CONSTS.RESUPPLY_READY elif action == REPAIR_POINT_ACTION.REPAIR_STEP: if self._inCircleIdx < 0: self._controller.onVehicleEntered(self._type, repairPointIndex, EPIC_CONSTS.RESUPPLY_READY) self._inCircleIdx = repairPointIndex elif self.__repairPointStates[repairPointIndex] != EPIC_CONSTS.RESUPPLY_READY: self._controller.onCircleStatusChanged(self._type, repairPointIndex, EPIC_CONSTS.RESUPPLY_READY) self.__repairPointStates[repairPointIndex] = EPIC_CONSTS.RESUPPLY_READY self._controller.onProgressUpdate(self._type, repairPointIndex, percentageHealed) elif action == REPAIR_POINT_ACTION.ENTER_WHILE_FULL: if self._inCircleIdx < 0: self._controller.onVehicleEntered(self._type, repairPointIndex, EPIC_CONSTS.RESUPPLY_FULL) self.__repairPointStates[repairPointIndex] = EPIC_CONSTS.RESUPPLY_FULL self._inCircleIdx = repairPointIndex else: self._controller.onCircleStatusChanged(self._type, repairPointIndex, EPIC_CONSTS.RESUPPLY_FULL) else: LOG_WARNING("STATE: '%d' is not implemented ", action) self._sessionProvider.invalidateVehicleState(VEHICLE_VIEW_STATE.PROGRESS_CIRCLE, (self._type, self._inCircleIdx >= 0)) return def _playSoundByAction(self, action): if action in _ACTION_SOUND_IDS: nots = getSoundNotifications() if nots is not None: nots.play(_ACTION_SOUND_IDS[action]) return def _hideAll(self): super(StepRepairPlugin, self)._hideAll() if self._inCircleIdx != -1: self._controller.onVehicleLeft(self._type, self._inCircleIdx) if self.__delayedCooldownCB is not None: BigWorld.cancelCallback(self.__delayedCooldownCB) self.__delayedCooldownCB = None self._inCircleIdx = -1 return def _stopTimerCallback(self): for idx in self._cooldown: self._controller.onCircleStatusChanged(self._type, idx, EPIC_CONSTS.RESUPPLY_READY) super(StepRepairPlugin, self)._stopTimerCallback() def __onSpectatorModeChanged(self, mode): if mode == EPIC_CONSTS.SPECTATOR_MODE_FREECAM: self.__isInFreecam = True self._hideAll() else: self.__isInFreecam = False def __delayedCooldown(self, repairPointIndex, nextActionTime): if self._inCircleIdx >= 0: self._controller.onVehicleEntered(self._type, repairPointIndex, EPIC_CONSTS.RESUPPLY_BLOCKED) self._inCircleIdx = repairPointIndex else: self._controller.onCircleStatusChanged(self._type, repairPointIndex, EPIC_CONSTS.RESUPPLY_BLOCKED) self.__repairPointStates[repairPointIndex] = EPIC_CONSTS.RESUPPLY_BLOCKED self._controller.onTimerUpdated(self._type, repairPointIndex, self._getTime(nextActionTime)) self._startCooldownCallback(repairPointIndex, nextActionTime) self.__delayedCooldownCB = None return class SectorBasePlugin(ProgressTimerPlugin): def __init__(self, controller, sessionProvider): super(SectorBasePlugin, self).__init__(controller, sessionProvider) self._type = PROGRESS_CIRCLE_TYPE.SECTOR_BASE_CIRCLE self.__blockedCB = None return def start(self): super(SectorBasePlugin, self).start() componentSystem = self._sessionProvider.arenaVisitor.getComponentSystem() sectorBaseComp = getattr(componentSystem, 'sectorBaseComponent', None) if sectorBaseComp is not None: sectorBaseComp.onSectorBasePlayerAction += self._action actions = sectorBaseComp.stepSectorBasePlayerAction for idx, action, time in actions.iteritems(): if action != SECTOR_BASE_ACTION.LEAVE and action != SECTOR_BASE_ACTION.LEAVE_WHILE_CD and action != SECTOR_BASE_ACTION.CAPTURED: self._action(idx, action, time) else: LOG_ERROR('Expected SectorBaseComponent not present!') return def fini(self): super(SectorBasePlugin, self).fini() componentSystem = self._sessionProvider.arenaVisitor.getComponentSystem() sectorBaseComp = getattr(componentSystem, 'sectorBaseComponent', None) if sectorBaseComp is not None: sectorBaseComp.onSectorBasePlayerAction -= self._action if self.__blockedCB is not None: BigWorld.cancelCallback(self.__blockedCB) self.__blockedCB = None return def _action(self, basePointIndex, action, nextActionTime): if action in (SECTOR_BASE_ACTION.ENTER, SECTOR_BASE_ACTION.ENTER_WHILE_CD): self._controller.onVehicleEntered(self._type, basePointIndex, None) self._inCircleIdx = basePointIndex elif action in (SECTOR_BASE_ACTION.LEAVE, SECTOR_BASE_ACTION.LEAVE_WHILE_CD): self._controller.onVehicleLeft(self._type, basePointIndex) self._inCircleIdx = -1 self.__stopBlockState() elif action == SECTOR_BASE_ACTION.COOLDOWN: duration = self._getTime(nextActionTime) self._sessionProvider.invalidateVehicleState(VEHICLE_VIEW_STATE.CAPTURE_BLOCKED, duration) if self.__blockedCB is not None: BigWorld.cancelCallback(self.__blockedCB) self.__blockedCB = None self.__blockedCB = BigWorld.callback(duration, self.__stopBlockState) else: LOG_WARNING('SectorBasePlugin: NO SUCH ACTION ', action) return def _hideAll(self): super(SectorBasePlugin, self)._hideAll() if self._inCircleIdx != -1: self._controller.onVehicleLeft(self._type, self._inCircleIdx) self._inCircleIdx = -1 def __stopBlockState(self): self._sessionProvider.invalidateVehicleState(VEHICLE_VIEW_STATE.CAPTURE_BLOCKED, 0) self.__blockedCB = None return class ProgressTimerController(IBattleController): def __init__(self, setup): super(ProgressTimerController, self).__init__() self.__sessionProvider = setup.sessionProvider self.__plugins = {} self.__eManager = Event.EventManager() self.onTimerUpdated = Event.Event(self.__eManager) self.onVehicleEntered = Event.Event(self.__eManager) self.onVehicleLeft = Event.Event(self.__eManager) self.onCircleStatusChanged = Event.Event(self.__eManager) self.onProgressUpdate = Event.Event(self.__eManager) def getControllerID(self): return BATTLE_CTRL_ID.PROGRESS_TIMER def startControl(self): visitor = self.__sessionProvider.arenaVisitor if visitor.hasStepRepairPoints(): self.__plugins[PROGRESS_CIRCLE_TYPE.RESUPPLY_CIRCLE] = StepRepairPlugin(self, self.__sessionProvider) if visitor.hasSectors(): self.__plugins[PROGRESS_CIRCLE_TYPE.SECTOR_BASE_CIRCLE] = SectorBasePlugin(self, self.__sessionProvider) for p in self.__plugins: self.__plugins[p].start() def stopControl(self): self.__eManager.clear() self.__eManager = None for p in self.__plugins: self.__plugins[p].fini() self.__plugins = {} return def getPlayerCircleState(self, type_, idx): return self.__plugins[type_].getPlayerState(idx) if type_ in self.__plugins else None
f6e74ba49764c4245f61beabf3c6737993b74fa6
057d662a83ed85897e9906d72ea90fe5903dccc5
/.PyCharmCE2019.2/system/python_stubs/-1247971762/gi/_gi/FunctionInfo.py
08fe51300b7b7b03f1451dd70de9ae5fb449ad8f
[]
no_license
Karishma00/AnsiblePractice
19a4980b1f6cca7b251f2cbea3acf9803db6e016
932558d48869560a42ba5ba3fb72688696e1868a
refs/heads/master
2020-08-05T00:05:31.679220
2019-10-04T13:07:29
2019-10-04T13:07:29
212,324,468
0
0
null
null
null
null
UTF-8
Python
false
false
928
py
# encoding: utf-8 # module gi._gi # from /usr/lib/python3/dist-packages/gi/_gi.cpython-37m-x86_64-linux-gnu.so # by generator 1.147 # no doc # imports from gobject import (GBoxed, GEnum, GFlags, GInterface, GParamSpec, GPointer, GType, Warning) import gi as __gi import gobject as __gobject class FunctionInfo(__gi.CallableInfo): # no doc def get_flags(self, *args, **kwargs): # real signature unknown pass def get_property(self, *args, **kwargs): # real signature unknown pass def get_symbol(self, *args, **kwargs): # real signature unknown pass def get_vfunc(self, *args, **kwargs): # real signature unknown pass def is_constructor(self, *args, **kwargs): # real signature unknown pass def is_method(self, *args, **kwargs): # real signature unknown pass def __init__(self, *args, **kwargs): # real signature unknown pass
38cd0029c788bca9efbf7774f3d7caafaafcf326
a66b7da9b7d04e1fea8669bb736b92f87e49b030
/tests/django18_sqlite3_backend/base.py
f7efd2e03cbdfa0e9838ed984b10d342fdd24a4d
[ "MIT" ]
permissive
zebuline/django-perf-rec
5e8e4ff2e690e326618cb4abf9ed25a67c16843b
e0bed464976b113df5cb58205a847b3d8e81b27f
refs/heads/master
2020-04-09T07:38:49.180825
2018-12-02T15:41:50
2018-12-02T15:41:50
152,588,701
0
0
MIT
2018-10-11T12:33:25
2018-10-11T12:33:44
null
UTF-8
Python
false
false
429
py
# -*- coding:utf-8 -*- from __future__ import absolute_import, division, print_function, unicode_literals from django.db.backends.sqlite3.base import DatabaseWrapper as OrigDatabaseWrapper from .operations import DatabaseOperations class DatabaseWrapper(OrigDatabaseWrapper): def __init__(self, *args, **kwargs): super(DatabaseWrapper, self).__init__(*args, **kwargs) self.ops = DatabaseOperations(self)
3636b76404a69947dae29bd528db4ccab84c8469
315450354c6ddeda9269ffa4c96750783963d629
/CMSSW_7_0_4/src/TotemRawData/RawToDigi/python/.svn/text-base/ExampleClustering.py.svn-base
08efb09d86301e6ce3a10a1cf864bd0d73f76826
[]
no_license
elizamelo/CMSTOTEMSim
e5928d49edb32cbfeae0aedfcf7bd3131211627e
b415e0ff0dad101be5e5de1def59c5894d7ca3e8
refs/heads/master
2021-05-01T01:31:38.139992
2017-09-12T17:07:12
2017-09-12T17:07:12
76,041,270
0
2
null
null
null
null
UTF-8
Python
false
false
2,113
import FWCore.ParameterSet.Config as cms process = cms.Process("RealDataMonitorXML") # minimum of logs #process.load("Configuration.TotemCommon.LoggerMax_cfi") process.maxEvents = cms.untracked.PSet( input = cms.untracked.int32(20000) ) # input of raw data process.source = cms.Source("RawDataSource", verbosity = cms.untracked.uint32(1), eventsToCheck = cms.uint32(6), skipCorruptedEvents = cms.bool(False), performChecks = cms.bool(False), fileNames = cms.vstring('TotemRawData/RawToDigi/python/run_151.vmea') ) process.o1 = cms.OutputModule("PoolOutputModule", fileName = cms.untracked.string('file:TotemRawData/RawToDigi/python/run_151_BeforeHit20000.root'), outputCommands = cms.untracked.vstring('drop TotemRawEvent_*_*_*','keep T2DetIdT2DigiVfatTotemDigiCollection_*_*_*','keep *_*_*T2VfatInformation*_*','keep T1T2Tracks_*_*_*','keep T2Hits_*_*_*','keep T2Roads_*_*_*','keep T2DetIdT2Clustersstdmap_*_*_*','keep T2DetIdT2StripDigiTotemDigiCollection_*_*_*','keep T2DetIdT2PadDigiTotemDigiCollection_*_*_*') ) #process.dump = cms.EDAnalyzer("EventContentAnalyzer") #T2GeoMapIP5_4quarter_cmssw.xml #T2MapIP5_D3_D2_NewFormatBIS.xml #Load T2 vfat mapping process.DAQInformationSourceXML = cms.ESSource("DAQInformationSourceXML", xmlFileName = cms.string('TotemRawData/RawToDigi/python/T2GeoMapIP5_4quarter_vmea_Full.xml') # xmlFileName = cms.string('TotemRawData/RawToDigi/python/T2GeoMapIP5_4quarter_vmea_cmssw.xml') ) # outputCommands = cms.untracked.vstring('drop TotemRawEvent_*_*_*') # Fill T2 digi and vfat object process.RawToDigi = cms.EDProducer("T2XMLDataDigiProducer", verbosity = cms.untracked.uint32(10) ) #process.T2Hits.Cl1MaxPad =20 #process.T2Hits.Cl1MaxStrip =20 #process.T2Hits.IncludeClass0Hits = True process.load("RecoTotemT1T2.T2MakeCluster.T2MakeCluster_cfi") #process.p = cms.Path(process.RawToDigi) process.p = cms.Path(process.RawToDigi*process.T2MCl) #*process.dqm1 *process.T2Hits*process.T2RoadColl*process.T2TrackColl2 process.outpath = cms.EndPath(process.o1)
95ea081218c6d5f432695b3b8e6be76adf492fb5
8ef8e6818c977c26d937d09b46be0d748022ea09
/cv/ocr/dbnet/pytorch/dbnet_cv/__init__.py
65b6016ceb237276f13baab4fba2ab2a8c266426
[ "Apache-2.0" ]
permissive
Deep-Spark/DeepSparkHub
eb5996607e63ccd2c706789f64b3cc0070e7f8ef
9d643e88946fc4a24f2d4d073c08b05ea693f4c5
refs/heads/master
2023-09-01T11:26:49.648759
2023-08-25T01:50:18
2023-08-25T01:50:18
534,133,249
7
6
Apache-2.0
2023-03-28T02:54:59
2022-09-08T09:07:01
Python
UTF-8
Python
false
false
373
py
# Copyright (c) OpenMMLab. All rights reserved. # flake8: noqa # from .arraymisc import * from .fileio import * from .image import * from .utils import * from .version import * # from .video import * # from .visualization import * # The following modules are not imported to this level, so dbnet_cv may be used # without PyTorch. # - runner # - parallel # - op # - device
9028e75eec7c52e5c1103aa926a2fa0661cfce5a
18239524612cf572bfeaa3e001a3f5d1b872690c
/clients/keto/python/ory_keto_client/models/ory_access_control_policy_roles.py
cff6965d729259b822fa0830da11454472db44ab
[ "Apache-2.0" ]
permissive
simoneromano96/sdk
2d7af9425dabc30df830a09b26841fb2e8781bf8
a6113d0daefbbb803790297e4b242d4c7cbbcb22
refs/heads/master
2023-05-09T13:50:45.485951
2021-05-28T12:18:27
2021-05-28T12:18:27
371,689,133
0
0
Apache-2.0
2021-05-28T12:11:41
2021-05-28T12:11:40
null
UTF-8
Python
false
false
3,658
py
# coding: utf-8 """ ORY Keto A cloud native access control server providing best-practice patterns (RBAC, ABAC, ACL, AWS IAM Policies, Kubernetes Roles, ...) via REST APIs. # noqa: E501 The version of the OpenAPI document: v0.0.0-alpha.37 Contact: [email protected] Generated by: https://openapi-generator.tech """ import pprint import re # noqa: F401 import six from ory_keto_client.configuration import Configuration class OryAccessControlPolicyRoles(object): """NOTE: This class is auto generated by OpenAPI Generator. Ref: https://openapi-generator.tech Do not edit the class manually. """ """ Attributes: openapi_types (dict): The key is attribute name and the value is attribute type. attribute_map (dict): The key is attribute name and the value is json key in definition. """ openapi_types = { 'body': 'list[OryAccessControlPolicyRole]' } attribute_map = { 'body': 'Body' } def __init__(self, body=None, local_vars_configuration=None): # noqa: E501 """OryAccessControlPolicyRoles - a model defined in OpenAPI""" # noqa: E501 if local_vars_configuration is None: local_vars_configuration = Configuration() self.local_vars_configuration = local_vars_configuration self._body = None self.discriminator = None if body is not None: self.body = body @property def body(self): """Gets the body of this OryAccessControlPolicyRoles. # noqa: E501 The request body. in: body type: array # noqa: E501 :return: The body of this OryAccessControlPolicyRoles. # noqa: E501 :rtype: list[OryAccessControlPolicyRole] """ return self._body @body.setter def body(self, body): """Sets the body of this OryAccessControlPolicyRoles. The request body. in: body type: array # noqa: E501 :param body: The body of this OryAccessControlPolicyRoles. # noqa: E501 :type: list[OryAccessControlPolicyRole] """ self._body = body def to_dict(self): """Returns the model properties as a dict""" result = {} for attr, _ in six.iteritems(self.openapi_types): value = getattr(self, attr) if isinstance(value, list): result[attr] = list(map( lambda x: x.to_dict() if hasattr(x, "to_dict") else x, value )) elif hasattr(value, "to_dict"): result[attr] = value.to_dict() elif isinstance(value, dict): result[attr] = dict(map( lambda item: (item[0], item[1].to_dict()) if hasattr(item[1], "to_dict") else item, value.items() )) else: result[attr] = value return result def to_str(self): """Returns the string representation of the model""" return pprint.pformat(self.to_dict()) def __repr__(self): """For `print` and `pprint`""" return self.to_str() def __eq__(self, other): """Returns true if both objects are equal""" if not isinstance(other, OryAccessControlPolicyRoles): return False return self.to_dict() == other.to_dict() def __ne__(self, other): """Returns true if both objects are not equal""" if not isinstance(other, OryAccessControlPolicyRoles): return True return self.to_dict() != other.to_dict()
3292558238a1c314f6d4aa4e1d50871f9b3a95ab
b40d1a26ea04a19ec0da7bf55db84b7ee36cc898
/algoexpert.io/python/KMP_Algorithm.py
f64b7085b85fe4297668d29e69091911d3e79cbb
[ "MIT" ]
permissive
partho-maple/coding-interview-gym
5e8af7d404c28d4b9b52e5cffc540fd51d8025cf
20ae1a048eddbc9a32c819cf61258e2b57572f05
refs/heads/master
2022-09-11T16:36:01.702626
2022-03-14T08:39:47
2022-03-14T08:39:47
69,802,909
862
438
MIT
2022-08-18T06:42:46
2016-10-02T14:51:31
Python
UTF-8
Python
false
false
660
py
def knuthMorrisPrattAlgorithm(string, substring): pattern = buildPattern(substring) return doesMatch(string, substring, pattern) def buildPattern(substring): pattern = [-1 for _ in substring] j, i = 0, 1 while i < len(substring): if substring[i] == substring[j]: pattern[i] = j i += 1 j += 1 elif j > 0: j = pattern[j - 1] + 1 else: i += 1 return pattern def doesMatch(string, substring, pattern): i, j = 0, 0 while i + len(substring) - j <= len(string): if string[i] == substring[j]: if j == len(substring) - 1: return True i += 1 j += 1 elif j > 0: j = pattern[j - 1] + 1 else: i += 1 return False
5c28515d3b5ab34c658293847d5bf7e618fa2754
3856c34baa38949498840ba1489c180964cbac6a
/Day4/ansiblevault/inheritance.py
ee797d43a0128e7af40f3c1a13979701b82f8d59
[]
no_license
vinodhmvm/ansibledockertraining
ffcb9c459fefe18507f81982e052c1880558715b
e28f42b5a09f96fc12f0b3044d617eca80aba154
refs/heads/master
2020-03-16T22:01:47.512777
2018-05-11T10:10:10
2018-05-11T10:10:10
133,023,943
0
0
null
null
null
null
UTF-8
Python
false
false
1,570
py
class Parent1: def __init__(self): print("Paren1 Inside Constructor") self.__privateData1 = 100 self._protectedData1 = 200 self.publicData1 = 300 def setValues(self, val1, val2, val3): self.__privateData1 = val1 self._protectedData1 = val2 self.publicData1 = val3 def printValues(self): print("Value of private data is" + str(self.__privateData1)) print("Value of protected data" + str(self._protectedData1)) print("Value of public data" + str(self.publicData1)) class Parent2: def __init__(self): print("Paren2 Inside Constructor") self.__privateData2 = 400 self._protectedData2 = 500 self.publicData2 = 600 def setValues(self, val1, val2, val3): self.__privateData2 = val1 self._protectedData2 = val2 self.publicData2 = val3 def printValues(self): print("Value of private data is" + str(self.__privateData2)) print("Value of protected data" + str(self._protectedData2)) print("Value of public data" + str(self.publicData2)) class Child(Parent1, Parent2): def __init__(self): Parent1.__init__(self) Parent2.__init__(self) def main(): obj1 = Child() print("Value of member variables before calling setValus function") obj1.printValues() print("Attempt to read public variable directly " ,obj1.publicData1) print("Attempt to read protected variable directly ", obj1._protectedData2) #print("Attempt to read private variable directly ", obj1.__privateData) main()
33207db912f627bcbaa44baf0ad4edf3f56c2638
0bda1f543ef3be8cd12a4709d44da95bc68ba507
/exs/mundo_3/python/075.py
f084fa0ca20c97ee710e02bcaf5c37a615eba6ae
[ "MIT" ]
permissive
BearingMe/exercicios-CeV
e5a18e897a725cd8a7a86fd0473dc2d66ee39771
d65a022041af81a161ae7c98b24a0896e6bb4a5e
refs/heads/master
2023-04-13T09:51:33.449706
2023-03-29T19:51:43
2023-03-29T19:51:43
519,369,091
1
0
MIT
2022-07-29T23:00:45
2022-07-29T23:00:45
null
UTF-8
Python
false
false
803
py
""" Desafio 075 Problema: Desenvolva um programa que leia quatro valores pelo teclado e guarde-os em uma tupla. No final, mostre: A) Quantas vezes apareceu o valor 9; B) Em que posição foi digitado o primeiro valor 3; C) Quais foram os números pares. Resolução do problema: """ # Inserindo valores na tupla valores = tuple(int(input(f'Digite o {cont + 1}º valor: ')) for cont in range(4)) print(f'\nO valor 9 apareceu: {valores.count(9)} vezes') if valores.count(3) != 0: print(f'O valor 3 apareceu na {valores.index(3) + 1}º posição') else: print('O valor 3 não foi digitado em nenhuma posição') print('Os valores pares digitados: ', end='') for numero in valores: if numero % 2 == 0: print(numero, end=' ')
3a56ab23accce20fe1187c8bc32ac64f54145555
5ecdac376b2f43272910c2429288297c4302b459
/65.py
cfafb6ab114b86be196304563f0f57c813d73120
[]
no_license
higher68/lang_process
c8ff7963ea2824e9387a982bf9ec1d28d91b467e
8b644b9a6f2ffa65e4358adb6e942c8b234a905f
refs/heads/master
2020-03-21T08:01:42.432014
2018-10-08T14:47:07
2018-10-08T14:47:07
138,314,719
0
0
null
null
null
null
UTF-8
Python
false
false
1,734
py
##!!!!!!!!!!exercute 64.py and setup testdb!!!!!!!!!!!!! ##!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!11 import json from pymongo import MongoClient # mongodbへのクエリをだす from bson.objectid import ObjectId def support_ObjectId(obj): '''json.dumps()でObjectIdを処理するための関数 ObjectIdはjsonエンコードできない型なので、文字列型に変換する 戻り値: ObjectIdから変換した文字列 ''' if isinstance(obj, ObjectId): return str(obj) # 文字列として扱う raise TypeError(repr(obj) + " is not JSON serializable") # MongoDBのデータベースtestdbのコレクションartistにアクセス client = MongoClient() # mongoclientのインスタンス作成 db = client.testdb # mongodb内のデータベースの一つ、testdbを呼び出している collection = db.artist # databese内にあるコレクション〜rdbでいうテーブル〜を呼び出す # rdb:リレーショナルデータベース # rdbは全てのデータをテーブルというデータ形式で表現 # https://employment.en-japan.com/engineerhub/entry/2017/11/22/110000 # 検索 # collectionはfindで検索可能 # collection.findはcursorオブジェクトを返す for i, doc in enumerate(collection.find({'name': 'Queen'}), start=1): # 整形して表示 print('{}件目の内容:\n{}'.format(i, json.dumps( doc, indent='\t', ensure_ascii=False, sort_keys=True, default=support_ObjectId ) )) # jsonのエンコーダー:json.dumps() 辞書をjson形式の文字列として出力 # 引数を指定して整形可能 # json.load() jsonファイルを辞書として読み込む
bfd75890b5a55e701078feaa5066b2a9c9f9eb02
df4378e8bf32ca491a77706c46d5879299e6166d
/symbolic_expressions/merging_by_hand/tigress-0-challenge-3_hash_to_input.py
d76f3ec7a7ecdb1fa23ac698a8580ace83a07bab
[]
no_license
triplekill/Tigress_protection
a26d52a50d8f89c260e1748e4e23d4478cc0db3b
020e8bcd68996b85ccf993f81ddc4fa586fd8aa2
refs/heads/master
2021-05-03T13:30:58.205877
2016-10-28T11:55:57
2016-10-28T11:55:57
72,204,718
1
0
null
2016-10-28T12:16:32
2016-10-28T12:16:32
null
UTF-8
Python
false
false
2,484
py
#!/usr/bin/env python2 ## -*- coding: utf-8 -*- ## ## Triton ## import sys import z3 def sx(bits, value): sign_bit = 1 << (bits - 1) return (value & (sign_bit - 1)) - (value & sign_bit) ctx = z3.Context() s = z3.Solver() SymVar_0 = z3.BitVec('SymVar_0', 64) a = ((((((sx(0x40, (((SymVar_0 << (0x3F & 0x3F)) & 0xFFFFFFFFFFFFFFFF) | (SymVar_0 >> (0x1 & 0x3F)))) * sx(0x40, (((SymVar_0 << (0x3F & 0x3F)) & 0xFFFFFFFFFFFFFFFF) | (SymVar_0 >> (0x1 & 0x3F))))) & 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF) - (0x3CE3ECE5 | (SymVar_0 >> ((((0x1 | (0x7 & (((0x100E532E000 + ((SymVar_0 >> (0x3F & 0x3F)) | ((SymVar_0 << (0x1 & 0x3F)) & 0xFFFFFFFFFFFFFFFF))) & 0xFFFFFFFFFFFFFFFF) >> (0x4 & 0x3F)))) & 0xFFFFFFFF) & 0xFF) & 0x3F)))) & 0xFFFFFFFFFFFFFFFF) >> (((((0x40 - (0x1 | (0xF & ((((((((SymVar_0 << (0x3F & 0x3F)) & 0xFFFFFFFFFFFFFFFF) | (SymVar_0 >> (0x1 & 0x3F))) + (((SymVar_0 << (0x3F & 0x3F)) & 0xFFFFFFFFFFFFFFFF) | (SymVar_0 >> (0x1 & 0x3F)))) & 0xFFFFFFFFFFFFFFFF) << ((((0x1 | (0x7 & ((((((0xB6AFCA8 + SymVar_0) & 0xFFFFFFFFFFFFFFFF) << (0x3D & 0x3F)) & 0xFFFFFFFFFFFFFFFF) | (((0xB6AFCA8 + SymVar_0) & 0xFFFFFFFFFFFFFFFF) >> (0x3 & 0x3F))) >> (0x1 & 0x3F)))) & 0xFFFFFFFF) & 0xFF) & 0x3F)) & 0xFFFFFFFFFFFFFFFF) >> (0x1 & 0x3F))))) & 0xFFFFFFFFFFFFFFFF) & 0xFFFFFFFF) & 0xFF) & 0x3F)) | ((((((sx(0x40, (((SymVar_0 << (0x3F & 0x3F)) & 0xFFFFFFFFFFFFFFFF) | (SymVar_0 >> (0x1 & 0x3F)))) * sx(0x40, (((SymVar_0 << (0x3F & 0x3F)) & 0xFFFFFFFFFFFFFFFF) | (SymVar_0 >> (0x1 & 0x3F))))) & 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF) - (0x3CE3ECE5 | (SymVar_0 >> ((((0x1 | (0x7 & (((0x100E532E000 + ((SymVar_0 >> (0x3F & 0x3F)) | ((SymVar_0 << (0x1 & 0x3F)) & 0xFFFFFFFFFFFFFFFF))) & 0xFFFFFFFFFFFFFFFF) >> (0x4 & 0x3F)))) & 0xFFFFFFFF) & 0xFF) & 0x3F)))) & 0xFFFFFFFFFFFFFFFF) << ((((0x1 | (0xF & ((((((((SymVar_0 << (0x3F & 0x3F)) & 0xFFFFFFFFFFFFFFFF) | (SymVar_0 >> (0x1 & 0x3F))) + (((SymVar_0 << (0x3F & 0x3F)) & 0xFFFFFFFFFFFFFFFF) | (SymVar_0 >> (0x1 & 0x3F)))) & 0xFFFFFFFFFFFFFFFF) << ((((0x1 | (0x7 & ((((((0xB6AFCA8 + SymVar_0) & 0xFFFFFFFFFFFFFFFF) << (0x3D & 0x3F)) & 0xFFFFFFFFFFFFFFFF) | (((0xB6AFCA8 + SymVar_0) & 0xFFFFFFFFFFFFFFFF) >> (0x3 & 0x3F))) >> (0x1 & 0x3F)))) & 0xFFFFFFFF) & 0xFF) & 0x3F)) & 0xFFFFFFFFFFFFFFFF) >> (0x1 & 0x3F)))) & 0xFFFFFFFF) & 0xFF) & 0x3F)) & 0xFFFFFFFFFFFFFFFF)) s.add(a == int(sys.argv[1])) collisions = 0 while s.check() == z3.sat and collisions < 10: print s.model() s.add(SymVar_0 != s.model()[SymVar_0]) collisions += 1
cd400a68fac11c77858bc6409ccc7da10a5332b8
b26674cda3264ad16af39333d79a700b72587736
/corehq/util/mixin.py
4c0450bc10c880dc787cec04f29c0a71f4f55d22
[]
no_license
tlwakwella/commcare-hq
2835206d8db84ff142f705dbdd171e85579fbf43
a3ac7210b77bea6c2d0392df207d191496118872
refs/heads/master
2021-01-18T02:07:09.268150
2016-03-24T14:12:49
2016-03-24T14:12:49
null
0
0
null
null
null
null
UTF-8
Python
false
false
1,058
py
import uuid class UUIDGeneratorException(Exception): pass class UUIDGeneratorMixin(object): """ Automatically generates uuids on __init__ if not generated yet. To use: Add this mixin to your model as the left-most class being inherited from and list all field names in UUIDS_TO_GENERATE to generate uuids for. NOTE: Where possible, a UUIDField should be used instead of this mixin. But this is needed in cases where migrating a char field to a UUIDField is not possible because some of the existing uuids don't match the UUIDField format constraints. """ def __init__(self, *args, **kwargs): super(UUIDGeneratorMixin, self).__init__(*args, **kwargs) field_names = getattr(self, 'UUIDS_TO_GENERATE', []) if not field_names: raise UUIDGeneratorException("Expected UUIDS_TO_GENERATE to not be empty") for field_name in field_names: value = getattr(self, field_name) if not value: setattr(self, field_name, uuid.uuid4().hex)
57eda055023149e7acd1f892a5d03da7db1cfc98
3485ceeca2dcb96e5fc10d353a8ca18a9b0d54af
/legacy_examples/exp_concat_visual_bpr.py
490764d84236ec822e47259593dedd4492a6dfb8
[ "Apache-2.0" ]
permissive
Yuan-T-Xuan/openrec
2d82cfa7ee4448744e70aa607d981ddb312f74ee
925cff19225874144f839aae30c304df32cc4b1d
refs/heads/master
2020-03-11T17:46:07.472963
2018-10-16T01:53:31
2018-10-16T01:53:31
116,905,600
1
0
Apache-2.0
2018-03-06T00:44:03
2018-01-10T03:54:54
Python
UTF-8
Python
false
false
1,561
py
import os import sys sys.path.append(os.getcwd()) from openrec.legacy import ImplicitModelTrainer from openrec.legacy.utils import ImplicitDataset from openrec.legacy.recommenders import ConcatVisualBPR from openrec.legacy.utils.evaluators import AUC from openrec.legacy.utils.samplers import PairwiseSampler from config import sess_config import dataloader raw_data = dataloader.load_tradesy() batch_size = 1000 test_batch_size = 100 item_serving_size = 1000 display_itr = 10000 train_dataset = ImplicitDataset(raw_data['train_data'], raw_data['max_user'], raw_data['max_item'], name='Train') val_dataset = ImplicitDataset(raw_data['val_data'], raw_data['max_user'], raw_data['max_item'], name='Val') test_dataset = ImplicitDataset(raw_data['test_data'], raw_data['max_user'], raw_data['max_item'], name='Test') model = ConcatVisualBPR(batch_size=batch_size, max_user=raw_data['max_user'], max_item=raw_data['max_item'], item_serving_size=item_serving_size, dim_embed=20, dim_ve=10, item_f_source=raw_data['item_features'], l2_reg=None, sess_config=sess_config) sampler = PairwiseSampler(batch_size=batch_size, dataset=train_dataset, num_process=5) model_trainer = ImplicitModelTrainer(batch_size=batch_size, test_batch_size=test_batch_size, item_serving_size=item_serving_size, train_dataset=train_dataset, model=model, sampler=sampler) auc_evaluator = AUC() model_trainer.train(num_itr=int(1e5), display_itr=display_itr, eval_datasets=[val_dataset, test_dataset], evaluators=[auc_evaluator], num_negatives=1000)
dca90dedaf030321cc01173965bf0a98d9e611f8
e0980f704a573894350e285f66f4cf390837238e
/.history/flex/models_20201029145653.py
c271e0bdba6e0a3670289d00d9c26ad51349a930
[]
no_license
rucpata/WagtailWebsite
28008474ec779d12ef43bceb61827168274a8b61
5aa44f51592f49c9a708fc5515ad877c6a29dfd9
refs/heads/main
2023-02-09T15:30:02.133415
2021-01-05T14:55:45
2021-01-05T14:55:45
303,961,094
0
0
null
null
null
null
UTF-8
Python
false
false
1,333
py
from django.db import models from wagtail.core.models import Page from wagtail.core.fields import StreamField from wagtail.admin.edit_handlers import StreamFieldPanel from wagtail.snippets.blocks import SnippetChooserBlock from wagtail.core import blocks as wagtail_blocks from streams import blocks from home.models import new_table_options class FlexPage(Page): body = StreamField([ ('title', blocks.TitleBlock()), ('cards', blocks.CardsBlock()), ('image_and_text', blocks.ImageAndTextBlock()), ('cta', blocks.CallToActionBlock()), ('testimonial', SnippetChooserBlock( target_model='testimonials.Testimonial', template = 'streams/testimonial_block.html' )), ('pricing_table', blocks.PricingTableBlock( table_options=new_table_options, )), ('richtext_with_title', blocks.RichTextWithTitleBlock()), #('richtext', wagtail_blocks.RichTextBlock( # template = 'streams/simple_richtext_block.html', # features = ['bold', 'italic', 'ol', 'ul', 'link'] #)), ], null=True, blank=True) content_panels = Page.content_panels + [ StreamFieldPanel('body'), ] class Meta: verbose_name = 'Flex (misc) page' verbose_name_plural = 'Flex (misc) pages'
99028d394ffee3ec6127b4af8b4a21e4dac6cbe7
a5d0a0499dd069c555080c8cefc2434304afead4
/BOJ/2953.py
18289777d1ae4372c43d03089f4dc700f78adb42
[]
no_license
devjinius/algorithm
9bdf9afc021249b188d6930cf9d71f9147325d9f
007fa6346a19868fbbc05eefd50848babb5f1cca
refs/heads/master
2020-05-04T06:08:32.827207
2019-07-31T02:39:39
2019-07-31T02:39:39
178,999,456
1
1
null
null
null
null
UTF-8
Python
false
false
962
py
# 백준알고리즘 2953번 # https://www.acmicpc.net/problem/2953 # 문제 # 각 참가자가 얻은 점수는 다른 사람이 평가해 준 점수의 합이다. 이 쇼의 우승자는 가장 많은 점수를 얻은 사람이 된다. # 각 참가자가 얻은 평가 점수가 주어졌을 때, 우승자와 그의 점수를 구하는 프로그램을 작성하시오. # 입력 # 총 다섯 개 줄에 각 참가자가 얻은 네 개의 평가 점수가 공백으로 구분되어 주어진다. 첫 번째 참가자부터 다섯 번째 참가자까지 순서대로 주어진다. 항상 우승자가 유일한 경우만 입력으로 주어진다. # 출력 # 첫째 줄에 우승자의 번호와 그가 얻은 점수를 출력한다. # 반환값 # 없음 def solution(): score = [] for _ in range(5): score.append(sum(map(int, input().split(" ")))) maxScore = max(score) print(f'{score.index(maxScore)+1} {maxScore}') solution()
f129c103ade98b9c151721146c3cefac3efbbb39
7c2a976cce8c2b32d644b079c9c5fa3199373491
/list_qsort.py
e5f38565187224fc079d5e0652fb6f166feab9d3
[ "Apache-2.0" ]
permissive
xartisan/Algo
f7bbf8627a4cfcc43d952f34482b5691cfd1fbf6
6ba61c84f9f111ba6c71ec4d7ce41ee8734d590d
refs/heads/master
2021-04-12T08:41:32.261209
2018-05-17T23:11:31
2018-05-17T23:11:31
126,271,781
0
0
null
null
null
null
UTF-8
Python
false
false
700
py
# quicksort algorithms for linked list class ListNode: def __init__(self, val, next=None): self.val = val self.next = next def __repr__(self): rv = str(self.val) if self.next: rv = rv + ' -> ' + repr(self.next) return rv def qsort(start, end=None): if start is end or start.next is end: return pivot = start.val last = start cur = start.next # partition while cur is not end: if cur.val <= pivot: last = last.next cur.val, last.val = last.val, cur.val cur = cur.next start.val, last.val = last.val, start.val qsort(start, last) qsort(last.next, end)
be605463e4ac1976451faca56113a86d84a55e52
d66818f4b951943553826a5f64413e90120e1fae
/hackerrank/Algorithms/Halloween Sale/test.py
833625794fb188739df4943a47e9facfcbea19f1
[ "MIT" ]
permissive
HBinhCT/Q-project
0f80cd15c9945c43e2e17072416ddb6e4745e7fa
19923cbaa3c83c670527899ece5c3ad31bcebe65
refs/heads/master
2023-08-30T08:59:16.006567
2023-08-29T15:30:21
2023-08-29T15:30:21
247,630,603
8
1
MIT
2020-07-22T01:20:23
2020-03-16T06:48:02
Python
UTF-8
Python
false
false
301
py
import unittest import solution class TestQ(unittest.TestCase): def test_case_0(self): self.assertEqual(solution.howManyGames(20, 3, 6, 80), 6) def test_case_1(self): self.assertEqual(solution.howManyGames(20, 3, 6, 85), 7) if __name__ == '__main__': unittest.main()
948fd7847c5cd59d02192e55b5ce7af68fdce4c5
aa265e03e73f718d4008cfe30ada7ee32c852eec
/other/cf_2015_morning_easy_b.py
3e3d8ddb67e1f17d63dff6d77afb83b3bb7f17fe
[ "MIT" ]
permissive
ryosuke0825/atcoder_python
4fb9de9733cd9ef41c2ad9ad38b3f190f49d3ad5
52d037d0bc9ef2c721bf2958c1c2ead558cb0cf5
refs/heads/master
2023-03-11T22:47:56.963089
2023-03-05T01:21:06
2023-03-05T01:21:06
181,768,029
0
0
null
null
null
null
UTF-8
Python
false
false
168
py
N = int(input()) S = input() if N % 2 != 0: print(-1) exit(0) half = N//2 ans = 0 for i in range(half): if S[i] != S[i+half]: ans += 1 print(ans)
e43f804556ee3049d4fcaffe0a2c595238467584
0fa3ad9a3d14c4b7a6cb44833795449d761b3ffd
/day08_all/day08/exercise04.py
387bae00da3fef78a90100f8c8541ac5fb94018b
[]
no_license
dalaAM/month-01
3426f08237a895bd9cfac029117c70b50ffcc013
e4b4575ab31c2a2962e7c476166b4c3fbf253eab
refs/heads/master
2022-11-22T23:49:43.037014
2020-07-24T07:37:35
2020-07-24T07:37:35
282,154,216
0
0
null
null
null
null
UTF-8
Python
false
false
748
py
""" 参照下列代码,定义函数,计算斤量. day02/exercise08 # total_weight = int(input("请输入多少两:")) # number_jin = total_weight // 16 # number_liang = total_weight % 16 # print("结果为:" + str(number_jin) + "斤" + str(number_liang) + "两") """ def calculation_weight(total_weight): """ 计算斤两 :param total_weight: :return: """ number_jin = total_weight // 16 number_liang = total_weight % 16 return number_jin, number_liang # tuple_result = calculation_weight(100) # print("结果为:" + str(tuple_result[0]) + "斤" + str(tuple_result[1]) + "两") jin, liang = calculation_weight(100) print("结果为:" + str(jin) + "斤" + str(liang) + "两")
9481bf27e9bd8c47d6a4ad24719e8ac76919e8b2
87d5b21265c381104de8f45aa67842a4adc880eb
/96. Unique Binary Search Trees.py
26dbb55326d8f87010e034de603ebc359adae505
[]
no_license
MYMSSENDOG/leetcodes
ac047fe0d951e0946740cb75103fc94aae967166
8a52a417a903a0742034161471a084bc1e494d68
refs/heads/master
2020-09-23T16:55:08.579319
2020-09-03T19:44:26
2020-09-03T19:44:26
225,543,895
0
0
null
null
null
null
UTF-8
Python
false
false
363
py
from tree_node_lib import * class Solution: def numTrees(self, n: int) -> int: dp = [0]*(n+1) dp[0] = 1 if n == 0: return 0 else: for i in range(1,n+1): for j in range(i): dp[i] += dp[j] * dp[i-j-1] return dp[n] sol = Solution() n = 5 print(sol.numTrees(n))
1e9a6f9036d6285996a9d0348b20777b728c667e
0c7dff41d828d30666f159e9f074551b490cdd8c
/models/TREES/XGBOOST/xgboostModelRegressor.py
0930ed04c788d335c432943c3de977b99ac2395f
[ "MIT" ]
permissive
SolbiatiAlessandro/kaggle-pets
6de6b5f1ae7478291463cc15c69515eeaba51c8f
562a8612f57a63cca0c519207210172ad22beca6
refs/heads/master
2022-12-15T11:49:50.262615
2019-05-19T21:56:07
2019-05-19T21:56:07
172,264,498
6
1
MIT
2022-12-08T04:57:39
2019-02-23T21:11:18
Jupyter Notebook
UTF-8
Python
false
false
13,692
py
#mod specific libraries from time import ctime import xgboost as xgb import sklearn.metrics as metrics import scipy as sp import pandas as pd import numpy as np class PredictiveModel(object): """ base class for the prediction task of Adoption Prediction competition this is catboost! https://www.coursera.org/learn/competitive-data-science/notebook/4daDt/catboost-notebook """ def __init__(self, name, params = None): self.name = name self.model = None self.predictions = None self.train_results = {} if params is not None: self.params = params else: self.params = None print("{} [{}.__init__] initialized succesfully".format(ctime(), self.name)) def validation(self, X, Y, cat_features, method=1, verbose=False, n_folds = 5, short=True): """ validation method, you can choose between different validation strategies Args: X: pandas.DataFrame, shape = (, 24) Y: pandas.Series method number: [1,2,3] # deprecated for ensemble cat_features: [9,10,11] see .train docstring n_folds: > 2 always using k-fold, if n_folds is 1 it is automatically put to 2 NOTE: https://www.youtube.com/watch?v=pA6uXzrDSUs&index=23&list=PLpQWTe-45nxL3bhyAJMEs90KF_gZmuqtm """ if verbose: print("{} [{}.validation] start validation method {}".format(ctime(), self.name, method)) validation_score = 0 if n_folds < 2: n_folds = 2 from sklearn.model_selection import StratifiedKFold splitclass = StratifiedKFold(n_splits=n_folds) # the following 20 lines come from sklearn docs example # https://scikit-learn.org/stable/modules/generated/sklearn.model_selection.ShuffleSplit.html for train_index, test_index in splitclass.split(X, Y): train_X, train_Y = X.loc[train_index], Y.loc[train_index] validation_X, validation_Y = X.loc[test_index], Y.loc[test_index] assert train_X.shape[0] == train_Y.shape[0] assert validation_X.shape[0] == validation_Y.shape[0] train_X.reset_index(drop=True,inplace=True) train_Y.reset_index(drop=True,inplace=True) validation_X.reset_index(drop=True,inplace=True) validation_Y.reset_index(drop=True,inplace=True) self.meta_predict(train_X,train_Y,validation_X,cat_features,short=short) score = self.evaluate(validation_Y) if verbose: print("{} [{}.validation] single score = {} ".format(ctime(), self.name, score)) validation_score += score # the total validation score is an average of the single validation scores validation_score /= splitclass.get_n_splits(X) self.validation_score = validation_score if verbose: print("{} [{}.validation] validation score = {} ".format(ctime(), self.name, validation_score)) if verbose: print("{} [{}.validation] finished validation method {}".format(ctime(), self.name, method)) return validation_score def generate_meta_train(self, X, Y, cat_features, verbose=False, n_folds=5, short=True): """ generates meta features for later ensembling args: X Y, is needed for in-fold training cat_features: [9,10,11] see .train docstring OOF k-fold NOTE: see /ENSEMBLES/coursera.notes """ if verbose: print("{} [{}.validation] start generate_meta short={}".format(ctime(), self.name, short)) meta_train = pd.DataFrame({'{}_regressor'.format(self.name):[-1 for _ in range(len(X))] }) if n_folds < 2: n_folds = 2 from sklearn.model_selection import KFold splitclass = KFold(n_splits=n_folds) # the following 20 lines come from sklearn docs example # https://scikit-learn.org/stable/modules/generated/sklearn.model_selection.ShuffleSplit.html for train_index, test_index in splitclass.split(X): train_X, train_Y = X.loc[train_index], Y.loc[train_index] validation_X, validation_Y = X.loc[test_index], Y.loc[test_index] assert train_X.shape[0] == train_Y.shape[0] assert validation_X.shape[0] == validation_Y.shape[0] self.train(train_X, train_Y, cat_features, short=short,verbose=verbose) predictions = self.predict(validation_X, probability=True,verbose=verbose) assert len(predictions) == len(test_index) meta_train.iloc[test_index,0] = predictions if verbose: print("{} [{}.validation] single fold generation for meta feature completed ".format(ctime(), self.name)) if verbose: print("{} [{}.validation] finished meta-feat generation ".format(ctime(), self.name)) return meta_train def generate_meta_test(self, X, Y, cat_features, X_test, verbose=False, short=True): """ DEPRECATED, returned by generate_meta_train generate meta_test feats same signature as generate_meta_train """ if verbose: print("{} [{}.train] start generate_meta_test".format(ctime(), self.name)) self.train(X, Y, cat_features, short=short, verbose=verbose) meta_test = self.predict(X_test, probability=True, verbose=verbose) meta_test = pd.DataFrame(meta_test, columns=['L0','L1','L2','L3','L4']) if verbose: print("{} [{}.validation] finished meta-test generation ".format(ctime(), self.name)) return meta_test def generate_meta(self, X, Y, X_test, cat_features, verbose=False, n_folds=5, short=True): """ generates meta features for later ensembling args: X Y, is needed for in-fold training cat_features: [9,10,11] see .train docstring OOF k-fold returns: meta_train, meta_test (predictions) meta_test is actually a average (bagged) version of 5 different trained models NOTE: see /ENSEMBLES/coursera.notes """ if verbose: print("{} [{}.validation] start generate_meta short={}".format(ctime(), self.name, short)) if n_folds < 2: n_folds = 2 meta_train =pd.DataFrame({'{}_regressor'.format(self.name):[-1 for _ in range(len(X))] }) meta_test = np.zeros((X_test.shape[0], n_folds)) from sklearn.model_selection import StratifiedKFold splitclass = StratifiedKFold(n_splits=n_folds) fold = 0 for train_index, test_index in splitclass.split(X, Y): train_X, train_Y = X.loc[train_index], Y.loc[train_index] validation_X, validation_Y = X.loc[test_index], Y.loc[test_index] assert train_X.shape[0] == train_Y.shape[0] assert validation_X.shape[0] == validation_Y.shape[0] self.train(train_X, train_Y, cat_features, short=short,verbose=verbose) val_predictions = self.predict(validation_X, probability=True,verbose=verbose) test_predictions = self.predict(X_test, probability=True,verbose=verbose) assert len(val_predictions) == len(test_index) assert len(test_predictions) == len(X_test) meta_train.iloc[test_index,0] = val_predictions meta_test[:, fold] = test_predictions fold += 1 if verbose: print("{} [{}.validation] single fold generation for meta feature completed ".format(ctime(), self.name)) # here the meta-predictions get averaged meta_test = meta_test.mean(axis=1) if verbose: print("{} [{}.validation] finished meta-feat generation ".format(ctime(), self.name)) return meta_train, meta_test def train(self, X, Y, cat_features, verbose=False, split_len=0.8, short=True): """ train method, feature generation is inside here, data cleaning outside Args: X: pandas.DataFrame Y: pandas.Series cat_features: [6,7,8,9] index of cat columns, all numerical and then all categorical """ if verbose: print("{} [{}.train] start training".format(ctime(), self.name)) split = int(len(X)*split_len) X_train, Y_train = X[:split], Y[:split] X_val, Y_val = X[split:], Y[split:] # FIRST ALL NUMERICAL, then ALL CATEGORICAL verbose_eval = 1000 early_stop = 500 xgb_params = { 'eval_metric': 'rmse', 'seed': 1337, 'eta': 0.0123, 'subsample': 0.8, 'colsample_bytree': 0.85, 'silent': 1, } self.features = X.columns d_train = xgb.DMatrix(data=X_train, label=Y_train, feature_names=self.features) d_valid = xgb.DMatrix(data=X_val, label=Y_val, feature_names=self.features) watchlist = [(d_train, 'train'), (d_valid, 'valid')] iterations = 500 if not short else 10 if self.params and self.params.get('iterations') is not None: iterations = self.params['iterations'] self.model = xgb.train(dtrain=d_train, num_boost_round=iterations, evals=watchlist, early_stopping_rounds=early_stop, verbose_eval=verbose_eval, params=xgb_params) if verbose: print("{} [{}.train] trained succefully".format(ctime(), self.name)) def predict(self, X, verbose=False, probability=False): """ verbose_eval=verbose) predict method, feature generation is inside here, data cleaning outside Args: X: pandas.DataFrame, shape = (, 24) probability: True to predict probability estimates for test vector X, False to predict classes Returns: Y: pandas.Series (if probability False) Y: pandas.DataFrame, shape = (, 5) a probability for every class e.g. [0.05986134, 0.46925879, 0.23683668, 0.22380147, 0.01024172] Raise: .not trained """ if verbose: print("{} [{}.predict] start predictions".format(ctime(), self.name)) predictions = self.model.predict(xgb.DMatrix(X, feature_names=self.features), ntree_limit=self.model.best_ntree_limit) self.predictions = predictions if verbose: print("{} [{}.predict] predicted succesfully".format(ctime(), self.name)) return predictions def meta_predict(self,X,Y,X_test,cat_features,verbose=False,short=True): """ predict labels, this is the last layer of the meta model """ meta_train, meta_test = self.generate_meta(X,Y,X_test,cat_features,verbose=verbose,short=short) meta_train = np.array(meta_train.iloc[:,0]) import sys sys.path.append("../../") from rounder import OptimizedRounder rounder = OptimizedRounder() rounder.fit(meta_train, Y) coefficients = rounder.coefficients() self.labels_predictions = rounder.predict(meta_test, coefficients) return self.labels_predictions def visualize(self, verbose=False): """ if you call it from jupyter use %matplotlib inline visualize training results """ if verbose: print("{} [{}.visualize] start visualizing".format(ctime(), self.name)) assert self.model is not None from matplotlib import pyplot as plt plt.barh(self.model.feature_names_, self.model.feature_importances_) if verbose: print("{} [{}.visualzed] visualized succesfully".format(ctime(), self.name)) def evaluate(self, labels, verbose=False): """ evaluate predictions accuracy using competition metric "Quadratic Weighted Kappa" more here https://scikit-learn.org/stable/modules/generated/sklearn.metrics.cohen_kappa_score.html Args: labels: truth-values, pandas.Series returns: float NOTE [Interpreting the Quadra Weighted Kappa Metric]: (https://www.kaggle.com/aroraaman/quadratic-kappa-metric-explained-in-5-simple-steps) A weighted Kappa is a metric which is used to calculate the amount of similarity between predictions and actuals. A perfect score of 1.0 is granted when both the predictions and actuals are the same. Whereas, the least possible score is -1 which is given when the predictions are furthest away from actuals. In our case, consider all actuals were 0's and all predictions were 4's. This would lead to a QWKP score of -1. The aim is to get as close to 1 as possible. Generally a score of 0.6+ is considered to be a really good score. """ if verbose: print("{} [{}.evaluate] start evaluation".format(ctime(), self.name)) if self.labels_predictions is None: raise Exception("{} [{}.evaluate] ERROR model didn't predict, you need to call {}.predict first".format(ctime(), self.name, self.name)) labels_array = np.array(labels) if not labels_array.shape[0] == self.labels_predictions.shape[0]: raise Exception("{} [{}.evaluate] ERROR the shape of truth value (labels) and self.predictions is different, you are giving the wrong number of labels: {}, {}".format(ctime(), self.name, labels_array.shape, self.labels_predictions.shape)) score = metrics.cohen_kappa_score(labels_array, self.labels_predictions) if verbose: print("{} [{}.evaluate] evaluated succesfully".format(ctime(), self.name)) return score
60653133ec457b24ba0b502d0d5d416b5464ac9e
d807627695b0be66f5b666a0a7292e74b4168af0
/tests/server/util.py
f0589cc4579dc662a2f1f0aa55977e9451e996a4
[]
no_license
evvaletov/balsam
fc61c57c09807b2047d9fdc601929137749cb1e3
b0c908706ccb7aee2f01cae81da7a64272b29767
refs/heads/main
2023-08-10T16:39:20.546564
2021-09-02T17:35:35
2021-09-02T17:35:35
null
0
0
null
null
null
null
UTF-8
Python
false
false
3,725
py
from fastapi import status from fastapi.encoders import jsonable_encoder class BalsamTestClient: def __init__(self, client): self._client = client @property def headers(self): return self._client.headers def check_stat(self, expect_code, response): if expect_code is None: return if isinstance(expect_code, (list, tuple)): assert response.status_code in expect_code, response.text else: assert response.status_code == expect_code, response.text def get(self, url, check=status.HTTP_200_OK, **kwargs): """GET kwargs become URL query parameters (e.g. /?site=3)""" response = self._client.get(url, params=kwargs) self.check_stat(check, response) return response.json() def post_form(self, url, check=status.HTTP_201_CREATED, **kwargs): response = self._client.post(url, data=kwargs) self.check_stat(check, response) return response.json() def post(self, url, check=status.HTTP_201_CREATED, **kwargs): response = self._client.post(url, json=jsonable_encoder(kwargs)) self.check_stat(check, response) return response.json() def bulk_post(self, url, list_data, check=status.HTTP_201_CREATED): response = self._client.post(url, json=jsonable_encoder(list_data)) self.check_stat(check, response) return response.json() def put(self, url, check=status.HTTP_200_OK, **kwargs): response = self._client.put(url, json=jsonable_encoder(kwargs)) self.check_stat(check, response) return response.json() def bulk_put(self, url, payload, check=status.HTTP_200_OK, **kwargs): response = self._client.put(url, json=payload, params=kwargs) self.check_stat(check, response) return response.json() def patch(self, url, check=status.HTTP_200_OK, **kwargs): response = self._client.patch(url, json=jsonable_encoder(kwargs)) self.check_stat(check, response) return response.json() def bulk_patch(self, url, list_data, check=status.HTTP_200_OK): response = self._client.patch(url, json=jsonable_encoder(list_data)) self.check_stat(check, response) return response.json() def delete(self, url, check=status.HTTP_204_NO_CONTENT): response = self._client.delete(url) self.check_stat(check, response) return response.json() def bulk_delete(self, url, check=status.HTTP_204_NO_CONTENT, **kwargs): response = self._client.delete(url, params=kwargs) self.check_stat(check, response) return response.json() def create_site( client, hostname="baz", path="/foo", transfer_locations={}, check=status.HTTP_201_CREATED, ): return client.post( "/sites/", hostname=hostname, path=path, transfer_locations=transfer_locations, check=check, ) def create_app( client, site_id, class_path="demo.SayHello", check=status.HTTP_201_CREATED, parameters=None, transfers=None, ): if parameters is None: parameters = { "name": {"required": True}, "N": {"required": False, "default": 1}, } if transfers is None: transfers = { "hello-input": { "required": False, "direction": "in", "local_path": "hello.yml", "description": "Input file for SayHello", } } return client.post( "/apps/", site_id=site_id, class_path=class_path, parameters=parameters, transfers=transfers, check=check, )
cd2e4f6d7aacbf6a2ac1b9a15e8fecf67de1ad0d
25ebc03b92df764ff0a6c70c14c2848a49fe1b0b
/daily/20170928/example_marshmallow/00extend.py
af0aa4d3cf26db1f738db90211a4fc60cc7001be
[]
no_license
podhmo/individual-sandbox
18db414fafd061568d0d5e993b8f8069867dfcfb
cafee43b4cf51a321f4e2c3f9949ac53eece4b15
refs/heads/master
2023-07-23T07:06:57.944539
2023-07-09T11:45:53
2023-07-09T11:45:53
61,940,197
6
0
null
2022-10-19T05:01:17
2016-06-25T11:27:04
Python
UTF-8
Python
false
false
347
py
from marshmallow import Schema, fields class S(Schema): v = fields.Integer(required=True) print(S().load({"v": 10})) print(S().load({"v": 10, "extra": "extra"})) print("----------------------------------------") s = S() s.fields["extra"] = fields.String(required=True) print(s.load({"v": 10})) print(s.load({"v": 10, "extra": "extra"}))
4de008b82491430f5dd198909206a566a8046d33
3fc01457951a956d62f5e8cc0a8067f6796ee200
/misago/threads/views/list.py
1c38a3fb6308fac9b4d19fcc80f54dd524234a8b
[]
no_license
kinsney/education
8bfa00d699a7e84701a8d49af06db22c384e0e8d
48f832f17c2df7b64647b3db288abccf65868fe6
refs/heads/master
2021-05-04T01:15:03.078130
2016-12-04T03:18:20
2016-12-04T03:18:20
71,164,542
3
1
null
null
null
null
UTF-8
Python
false
false
2,752
py
from django.conf import settings from django.core.urlresolvers import reverse from django.http import Http404 from django.shortcuts import render from django.views.generic import View from ..viewmodels import ( PrivateThreadsCategory, ThreadsCategory, ThreadsRootCategory, ForumThreads, PrivateThreads) class ListBase(View): category = None threads = None template_name = None def get(self, request, list_type=None, **kwargs): try: page = int(request.GET.get('page', 0)) except (ValueError, TypeError): raise Http404() category = self.get_category(request, **kwargs) threads = self.get_threads(request, category, list_type, page) frontend_context = self.get_frontend_context(request, category, threads) request.frontend_context.update(frontend_context) template_context = self.get_template_context(request, category, threads) return render(request, self.template_name, template_context) def get_category(self, request, **kwargs): return self.category(request, **kwargs) def get_threads(self, request, category, list_type, page): return self.threads(request, category, list_type, page) def get_frontend_context(self, request, category, threads): context = self.get_default_frontend_context() context.update(category.get_frontend_context()) context.update(threads.get_frontend_context()) return context def get_default_frontend_context(self): return {} def get_template_context(self, request, category, threads): context = self.get_default_template_context() context.update(category.get_template_context()) context.update(threads.get_template_context()) return context def get_default_template_context(self): return {} class ForumThreads(ListBase): category = ThreadsRootCategory threads = ForumThreads template_name = 'misago/threadslist/threads.html' def get_default_frontend_context(self): return { 'THREADS_API': reverse('misago:api:thread-list'), 'MERGE_THREADS_API': reverse('misago:api:thread-merge'), } class CategoryThreads(ForumThreads): category = ThreadsCategory template_name = 'misago/threadslist/category.html' def get_category(self, request, **kwargs): category = super(CategoryThreads, self).get_category(request, **kwargs) if not category.level: raise Http404() # disallow root category access return category class PrivateThreads(ListBase): category = PrivateThreadsCategory threads = PrivateThreads template_name = 'misago/threadslist/private_threads.html'
d7caadaca6dfd4a14e263ecf3bb340dbfb77cc43
5a3d3be73e19032b0f4574bcd827a73f9a90dc15
/pytorch_mjolnir/experiment.py
e6f9e16b582ac7d97956aa055614402bc1674f41
[ "MIT" ]
permissive
penguinmenac3/pytorch-mjolnir
2134d38b0777356626dd25d0982e9dc820dbf6d0
0b60f796e43c7abb17f9fc6f4087a645260bff56
refs/heads/main
2023-03-18T09:11:45.156514
2021-03-08T21:33:34
2021-03-08T21:33:34
337,863,208
1
0
null
null
null
null
UTF-8
Python
false
false
13,877
py
"""doc # pytorch_mjolnir.Experiment > A lightning module that runs an experiment in a managed way. There is first the Experiment base class from wich all experiments must inherit (directly or indirectly). """ import os from typing import Any, Tuple import pytorch_lightning as pl import torch import argparse import psutil import GPUtil from tqdm import tqdm from torch.utils.data.dataloader import DataLoader from time import time from datetime import datetime from torch.utils.data.dataset import IterableDataset from deeptech.data.dataset import Dataset from deeptech.core.definitions import SPLIT_TRAIN, SPLIT_VAL from pytorch_lightning.utilities.cloud_io import load as pl_load from pytorch_mjolnir.utils.tensorboard import TensorBoardLogger def _generate_version() -> str: return datetime.fromtimestamp(time()).strftime('%Y-%m-%d_%H.%M.%S') def run(experiment_class): """ You can use this main function to make your experiment runnable with command line arguments. Simply add this to the end of your experiment.py file: ```python if __name__ == "__main__": from pytorch_mjolnir import run run(MyExperiment) ``` Then you can call your python file from the command line and use the help to figure out the parameters. ```bash python my_experiment.py --help ``` """ gpus = 1 if "SLURM_GPUS" in os.environ: gpus = int(os.environ["SLURM_GPUS"]) nodes = 1 if "SLURM_NODES" in os.environ: nodes = int(os.environ["SLURM_NODES"]) output_path = "logs" if "RESULTS_PATH" in os.environ: output_path = os.environ["RESULTS_PATH"] parser = argparse.ArgumentParser(description='The main entry point for the script.') parser.add_argument('--name', type=str, required=True, help='The name for the experiment.') parser.add_argument('--version', type=str, required=False, default=None, help='The version that should be used (defaults to timestamp).') parser.add_argument('--output', type=str, required=False, default=output_path, help='The name for the experiment (defaults to $RESULTS_PATH or "logs").') parser.add_argument('--gpus', type=int, required=False, default=gpus, help='Number of GPUs that can be used.') parser.add_argument('--nodes', type=int, required=False, default=nodes, help='Number of nodes that can be used.') parser.add_argument('--resume_checkpoint', type=str, required=False, default=None, help='A specific checkpoint to load. If not provided it tries to load latest if any exists.') parser.add_argument('--evaluate_checkpoint', type=str, required=False, default=None, help='A specific checkpoint to evaluate.') args, other_args = parser.parse_known_args() kwargs = parse_other_args(other_args) experiment = experiment_class(**kwargs) if args.evaluate_checkpoint is None: experiment.run_experiment(name=args.name, version=args.version, output_path=args.output, resume_checkpoint=args.resume_checkpoint, gpus=args.gpus, nodes=args.nodes) else: experiment.evaluate_experiment(name=args.name, version=args.version, output_path=args.output, evaluate_checkpoint=args.evaluate_checkpoint, gpus=args.gpus, nodes=args.nodes) def parse_other_args(other_args): kwargs = {} for arg in other_args: parts = arg.split("=") k = parts[0] if k.startswith("--"): k = k[2:] if len(parts) == 1: v = True else: v = "=".join(parts[1:]) if v.startswith('"') or v.startswith("'"): v = v[1:-2] elif v == "True": v = True elif v == "False": v = False else: try: v = int(v) except ValueError: try: v = float(v) except ValueError: pass kwargs[k] = v return kwargs class Experiment(pl.LightningModule): """ An experiment base class. All experiments must inherit from this. ```python from pytorch_mjolnir import Experiment class MyExperiment(Experiment): [...] ``` """ def run_experiment(self, name: str, gpus: int, nodes: int, version=None, output_path=os.getcwd(), resume_checkpoint=None): """ Run the experiment. :param name: The name of the family of experiments you are conducting. :param gpus: The number of gpus used for training. :param nodes: The number of nodes used for training. :param version: The name for the specific run of the experiment in the family (defaults to a timestamp). :param output_path: The path where to store the outputs of the experiment (defaults to the current working directory). :param resume_checkpoint: The path to the checkpoint that should be resumed (defaults to None). In case of None this searches for a checkpoint in {output_path}/{name}/{version}/checkpoints and resumes it. Without defining a version this means no checkpoint can be found as there will not exist a matching folder. """ if version is None: version = _generate_version() if resume_checkpoint is None: resume_checkpoint = self._find_checkpoint(name, version, output_path) self.output_path = os.path.join(output_path, name, version) self.testing = False trainer = pl.Trainer( default_root_dir=output_path, max_epochs=getattr(self.hparams, "max_epochs", 1000), gpus=gpus, num_nodes=nodes, logger=TensorBoardLogger( save_dir=output_path, version=version, name=name, log_graph=hasattr(self, "example_input_array"), default_hp_metric=False ), resume_from_checkpoint=resume_checkpoint, accelerator="ddp" if gpus > 1 else None ) trainer.fit(self) def evaluate_experiment(self, name: str, gpus: int, nodes: int, version=None, output_path=os.getcwd(), evaluate_checkpoint=None): """ Evaluate the experiment. :param name: The name of the family of experiments you are conducting. :param gpus: The number of gpus used for training. :param nodes: The number of nodes used for training. :param version: The name for the specific run of the experiment in the family (defaults to a timestamp). :param output_path: The path where to store the outputs of the experiment (defaults to the current working directory). :param evaluate_checkpoint: The path to the checkpoint that should be loaded (defaults to None). """ if version is None: version = _generate_version() if evaluate_checkpoint is None: raise RuntimeError("No checkpoint provided for evaluation, you must provide one.") self.output_path = os.path.join(output_path, name, version) if evaluate_checkpoint == "last": checkpoint_path = self._find_checkpoint(name, version, output_path) else: checkpoint_path = os.path.join(self.output_path, evaluate_checkpoint) if checkpoint_path is None or not os.path.exists(checkpoint_path): raise RuntimeError(f"Checkpoint does not exist: {str(checkpoint_path)}") self.testing = True trainer = pl.Trainer( default_root_dir=output_path, max_epochs=getattr(self.hparams, "max_epochs", 1000), gpus=gpus, num_nodes=nodes, logger=TensorBoardLogger( save_dir=output_path, version=version, name=name, log_graph=hasattr(self, "example_input_array"), default_hp_metric=False ), accelerator="ddp" if gpus > 1 else None ) ckpt = pl_load(checkpoint_path, map_location=lambda storage, loc: storage) self.load_state_dict(ckpt['state_dict']) trainer.test(self) def _find_checkpoint(self, name, version, output_path): resume_checkpoint = None checkpoint_folder = os.path.join(output_path, name, version, "checkpoints") if os.path.exists(checkpoint_folder): checkpoints = sorted(os.listdir(checkpoint_folder)) if len(checkpoints) > 0: resume_checkpoint = os.path.join(checkpoint_folder, checkpoints[-1]) print(f"Using Checkpoint: {resume_checkpoint}") return resume_checkpoint def get_cached_dataset(self, split): cache_path = getattr(self.hparams, "cache_path", None) if cache_path is not None: full_cache_path = cache_path + "_" + split if os.path.exists(full_cache_path): dataset = Dataset.from_disk(full_cache_path, split) assert len(dataset) > 0 return dataset dataset = self.get_dataset(split) if cache_path is not None: full_cache_path = cache_path + "_" + split cache_exists = os.path.exists(full_cache_path) dataset.init_caching(full_cache_path) if not cache_exists: self.cache_data(dataset, split) assert len(dataset) > 0 return dataset def cache_data(self, dataset, name): dataloader = DataLoader(dataset, num_workers=getattr(self.hparams, "num_workers", None)) for _ in tqdm(dataloader, desc=f"Caching {name}"): pass def get_dataset(self, split) -> Tuple[Any, Any]: """ **ABSTRACT:** Load the data for a given split. :return: A dataset. """ raise NotImplementedError("Must be implemented by inheriting classes.") def prepare_data(self): # Prepare the data once (no state allowed due to multi-gpu/node setup.) if not self.testing: self.get_cached_dataset(SPLIT_TRAIN) self.get_cached_dataset(SPLIT_VAL) assert not getattr(self.hparams, "data_only_prepare", False) def load_data(self, stage=None) -> Tuple[Any, Any]: """ **ABSTRACT:** Load the data for training and validation. :return: A tuple of the train and val dataset. """ if not self.testing: return self.get_cached_dataset(SPLIT_TRAIN), self.get_cached_dataset(SPLIT_VAL) else: return None, None def training_step(self, batch, batch_idx): """ Executes a training step. By default this calls the step function. :param batch: A batch of training data received from the train loader. :param batch_idx: The index of the batch. """ feature, target = batch return self.step(feature, target, batch_idx) def validation_step(self, batch, batch_idx): """ Executes a validation step. By default this calls the step function. :param batch: A batch of val data received from the val loader. :param batch_idx: The index of the batch. """ feature, target = batch return self.step(feature, target, batch_idx) def setup(self, stage=None): """ This function is for setting up the training. The default implementation calls the load_data function and stores the result in self.train_data and self.val_data. (It is called once per process.) """ self.train_data, self.val_data = self.load_data(stage=stage) def train_dataloader(self): """ Create a training dataloader. The default implementation wraps self.train_data in a Dataloader. """ shuffle = True if isinstance(self.train_data, IterableDataset): shuffle = False return DataLoader(self.train_data, batch_size=self.hparams.batch_size, shuffle=shuffle, num_workers=self.hparams.num_workers) def val_dataloader(self): """ Create a validation dataloader. The default implementation wraps self.val_data in a Dataloader. """ shuffle = True if isinstance(self.val_data, IterableDataset): shuffle = False return DataLoader(self.val_data, batch_size=self.hparams.batch_size, shuffle=shuffle, num_workers=self.hparams.num_workers) def log_resources(self, gpus_separately=False): """ Log the cpu, ram and gpu usage. """ cpu = psutil.cpu_percent() ram = psutil.virtual_memory().used / 1000000000 self.log("sys/SYS_CPU (%)", cpu) self.log("sys/SYS_RAM (GB)", ram) total_gpu_load = 0 total_gpu_mem = 0 for gpu in GPUtil.getGPUs(): total_gpu_load += gpu.load total_gpu_mem += gpu.memoryUsed if gpus_separately: self.log("sys/GPU_UTIL_{}".format(gpu.id), gpu.load) self.log("sys/GPU_MEM_{}".format(gpu.id), gpu.memoryUtil) self.log("sys/GPU_UTIL (%)", total_gpu_load) self.log("sys/GPU_MEM (GB)", total_gpu_mem / 1000) def log_fps(self): """ Log the FPS that is achieved. """ if hasattr(self, "_iter_time"): elapsed = time() - self._iter_time fps = self.hparams.batch_size / elapsed self.log("sys/FPS", fps) self._iter_time = time() def train(self, mode=True): """ Set the experiment to training mode and val mode. This is done automatically. You will not need this usually. """ if self.logger is not None and hasattr(self.logger, "set_mode"): if self.testing: self.logger.set_mode("test") else: self.logger.set_mode("train" if mode else "val") super().train(mode)
d52cda661269ab091019b51e08b40417560988e1
161643f32e3f909cbe75869f71ec8e233de8b0f7
/torchbiggraph/converters/import_from_tsv.py
0a2963e64c2e6f7043c87437f6015e3f6c5ce7ea
[ "BSD-3-Clause" ]
permissive
mengkunzhao/PyTorch-BigGraph
11e86262767fbbf02e73c5f1df853f9254a5a287
b15e1164f44817b8c7c330e77af56a3d80c5fc31
refs/heads/master
2020-06-08T06:27:38.128731
2019-06-20T08:17:43
2019-06-20T08:20:38
null
0
0
null
null
null
null
UTF-8
Python
false
false
14,181
py
#!/usr/bin/env python3 # Copyright (c) Facebook, Inc. and its affiliates. # All rights reserved. # # This source code is licensed under the BSD-style license found in the # LICENSE.txt file in the root directory of this source tree. import argparse import json import os import os.path import random from typing import Counter, DefaultDict, Dict, List, Optional, Tuple import h5py import numpy as np from torchbiggraph.config import ( ConfigSchema, EntitySchema, RelationSchema, get_config_dict_from_module, ) from torchbiggraph.converters.dictionary import Dictionary def collect_relation_types( relation_configs: List[RelationSchema], edge_paths: List[str], dynamic_relations: bool, rel_col: Optional[int], relation_type_min_count: int, ) -> Dictionary: if dynamic_relations: if rel_col is None: raise RuntimeError("Need to specify rel_col in dynamic mode.") print("Looking up relation types in the edge files...") counter: Counter[str] = Counter() for edgepath in edge_paths: with open(edgepath, "rt") as tf: for line_num, line in enumerate(tf, start=1): words = line.split() try: rel_word = words[rel_col] except IndexError: raise RuntimeError( "Line %d of %s has only %d words" % (line_num, edgepath, len(words))) from None counter[rel_word] += 1 print("- Found %d relation types" % len(counter)) if relation_type_min_count > 0: print("- Removing the ones with fewer than %d occurrences..." % relation_type_min_count) counter = Counter({k: c for k, c in counter.items() if c >= relation_type_min_count}) print("- Left with %d relation types" % len(counter)) print("- Shuffling them...") names = list(counter.keys()) random.shuffle(names) else: names = [rconfig.name for rconfig in relation_configs] print("Using the %d relation types given in the config" % len(names)) return Dictionary(names) def collect_entities_by_type( relation_types: Dictionary, entity_configs: Dict[str, EntitySchema], relation_configs: List[RelationSchema], edge_paths: List[str], dynamic_relations: bool, lhs_col: int, rhs_col: int, rel_col: Optional[int], entity_min_count: int, ) -> Dict[str, Dictionary]: counters: Dict[str, Counter[str]] = {} for entity_name in entity_configs.keys(): counters[entity_name] = Counter() print("Searching for the entities in the edge files...") for edgepath in edge_paths: with open(edgepath, "rt") as tf: for line_num, line in enumerate(tf, start=1): words = line.split() try: lhs_word = words[lhs_col] rhs_word = words[rhs_col] rel_word = words[rel_col] if rel_col is not None else None except IndexError: raise RuntimeError( "Line %d of %s has only %d words" % (line_num, edgepath, len(words))) from None if dynamic_relations or rel_col is None: rel_id = 0 else: try: rel_id = relation_types.get_id(rel_word) except KeyError: raise RuntimeError("Could not find relation type in config") counters[relation_configs[rel_id].lhs][lhs_word] += 1 counters[relation_configs[rel_id].rhs][rhs_word] += 1 entities_by_type: Dict[str, Dictionary] = {} for entity_name, counter in counters.items(): print("Entity type %s:" % entity_name) print("- Found %d entities" % len(counter)) if entity_min_count > 0: print("- Removing the ones with fewer than %d occurrences..." % entity_min_count) counter = Counter({k: c for k, c in counter.items() if c >= entity_min_count}) print("- Left with %d entities" % len(counter)) print("- Shuffling them...") names = list(counter.keys()) random.shuffle(names) entities_by_type[entity_name] = Dictionary( names, num_parts=entity_configs[entity_name].num_partitions) return entities_by_type def generate_entity_path_files( entity_path: str, entities_by_type: Dict[str, Dictionary], relation_types: Dictionary, dynamic_relations: bool, ) -> None: print("Preparing entity path %s:" % entity_path) for entity_name, entities in entities_by_type.items(): for part in range(entities.num_parts): print("- Writing count of entity type %s and partition %d" % (entity_name, part)) with open(os.path.join( entity_path, "entity_count_%s_%d.txt" % (entity_name, part) ), "wt") as tf: tf.write("%d" % entities.part_size(part)) if dynamic_relations: print("- Writing count of dynamic relations") with open(os.path.join(entity_path, "dynamic_rel_count.txt"), "wt") as tf: tf.write("%d" % relation_types.size()) def generate_edge_path_files( edge_file_in: str, entities_by_type: Dict[str, Dictionary], relation_types: Dictionary, relation_configs: List[RelationSchema], dynamic_relations: bool, lhs_col: int, rhs_col: int, rel_col: Optional[int], ) -> None: basename, _ = os.path.splitext(edge_file_in) edge_path_out = basename + '_partitioned' print("Preparing edge path %s, out of the edges found in %s" % (edge_path_out, edge_file_in)) os.makedirs(edge_path_out, exist_ok=True) num_lhs_parts = max(entities_by_type[rconfig.lhs].num_parts for rconfig in relation_configs) num_rhs_parts = max(entities_by_type[rconfig.rhs].num_parts for rconfig in relation_configs) print("- Edges will be partitioned in %d x %d buckets." % (num_lhs_parts, num_rhs_parts)) buckets: DefaultDict[Tuple[int, int], List[Tuple[int, int, int]]] = \ DefaultDict(list) processed = 0 skipped = 0 with open(edge_file_in, "rt") as tf: for line_num, line in enumerate(tf, start=1): words = line.split() try: lhs_word = words[lhs_col] rhs_word = words[rhs_col] rel_word = words[rel_col] if rel_col is not None else None except IndexError: raise RuntimeError( "Line %d of %s has only %d words" % (line_num, edge_file_in, len(words))) from None if rel_col is None: rel_id = 0 else: try: rel_id = relation_types.get_id(rel_word) except KeyError: # Ignore edges whose relation type is not known. skipped += 1 continue if dynamic_relations: lhs_type = relation_configs[0].lhs rhs_type = relation_configs[0].rhs else: lhs_type = relation_configs[rel_id].lhs rhs_type = relation_configs[rel_id].rhs try: lhs_part, lhs_offset = \ entities_by_type[lhs_type].get_partition(lhs_word) rhs_part, rhs_offset = \ entities_by_type[rhs_type].get_partition(rhs_word) except KeyError: # Ignore edges whose entities are not known. skipped += 1 continue buckets[lhs_part, rhs_part].append((lhs_offset, rhs_offset, rel_id)) processed = processed + 1 if processed % 100000 == 0: print("- Processed %d edges so far..." % processed) print("- Processed %d edges in total" % processed) if skipped > 0: print("- Skipped %d edges because their relation type or entities were " "unknown (either not given in the config or filtered out as too " "rare)." % skipped) for i in range(num_lhs_parts): for j in range(num_rhs_parts): print("- Writing bucket (%d, %d), containing %d edges..." % (i, j, len(buckets[i, j]))) edges = np.asarray(buckets[i, j]) with h5py.File(os.path.join( edge_path_out, "edges_%d_%d.h5" % (i, j) ), "w") as hf: hf.attrs["format_version"] = 1 hf.create_dataset("lhs", data=edges[:, 0]) hf.create_dataset("rhs", data=edges[:, 1]) hf.create_dataset("rel", data=edges[:, 2]) def convert_input_data( entity_configs: Dict[str, EntitySchema], relation_configs: List[RelationSchema], entity_path: str, edge_paths: List[str], lhs_col: int, rhs_col: int, rel_col: Optional[int] = None, entity_min_count: int = 1, relation_type_min_count: int = 1, dynamic_relations: bool = False, ) -> None: some_output_paths = [] some_output_paths.append(os.path.join(entity_path, "dictionary.json")) some_output_paths.extend( os.path.join(entity_path, "entity_count_%s_0.txt" % entity_name) for entity_name in entity_configs.keys()) if dynamic_relations: some_output_paths.append(os.path.join(entity_path, "dynamic_rel_count.txt")) some_output_paths.extend( os.path.join(os.path.splitext(edge_file)[0] + "_partitioned", "edges_0_0.h5") for edge_file in edge_paths) if all(os.path.exists(path) for path in some_output_paths): print("Found some files that indicate that the input data " "has already been preprocessed, not doing it again.") print("These files are: %s" % ", ".join(some_output_paths)) return os.makedirs(entity_path, exist_ok=True) relation_types = collect_relation_types( relation_configs, edge_paths, dynamic_relations, rel_col, relation_type_min_count, ) entities_by_type = collect_entities_by_type( relation_types, entity_configs, relation_configs, edge_paths, dynamic_relations, lhs_col, rhs_col, rel_col, entity_min_count, ) dump = { "relations": relation_types.get_list(), "entities": {k: v.get_list() for k, v in entities_by_type.items()}, } with open(os.path.join(entity_path, "dictionary.json"), "wt") as tf: json.dump(dump, tf, indent=4) generate_entity_path_files( entity_path, entities_by_type, relation_types, dynamic_relations, ) for edge_path in edge_paths: generate_edge_path_files( edge_path, entities_by_type, relation_types, relation_configs, dynamic_relations, lhs_col, rhs_col, rel_col, ) def validate_config( config: str, ) -> Tuple[Dict[str, EntitySchema], List[RelationSchema], str, bool]: user_config = get_config_dict_from_module(config) # validate entites and relations config entities_config = user_config.get("entities") relations_config = user_config.get("relations") entity_path = user_config.get("entity_path") dynamic_relations = user_config.get("dynamic_relations", False) if not isinstance(entities_config, dict): raise TypeError("Config entities is not of type dict") if any(not isinstance(k, str) for k in entities_config.keys()): raise TypeError("Config entities has some keys that are not of type str") if not isinstance(relations_config, list): raise TypeError("Config relations is not of type list") if not isinstance(entity_path, str): raise TypeError("Config entity_path is not of type str") if not isinstance(dynamic_relations, bool): raise TypeError("Config dynamic_relations is not of type bool") entities = {} relations = [] for entity, entity_config in entities_config.items(): entities[entity] = EntitySchema.from_dict(entity_config) for relation in relations_config: relations.append(RelationSchema.from_dict(relation)) return entities, relations, entity_path, dynamic_relations def main(): config_help = '\n\nConfig parameters:\n\n' + '\n'.join(ConfigSchema.help()) parser = argparse.ArgumentParser( epilog=config_help, # Needed to preserve line wraps in epilog. formatter_class=argparse.RawDescriptionHelpFormatter, ) parser.add_argument('config', help='Path to config file') parser.add_argument('edge_paths', nargs='*', help='Input file paths') parser.add_argument('-l', '--lhs-col', type=int, required=True, help='Column index for source entity') parser.add_argument('-r', '--rhs-col', type=int, required=True, help='Column index for target entity') parser.add_argument('--rel-col', type=int, help='Column index for relation entity') parser.add_argument('--relation-type-min-count', type=int, default=1, help='Min count for relation types') parser.add_argument('--entity-min-count', type=int, default=1, help='Min count for entities') opt = parser.parse_args() entity_configs, relation_configs, entity_path, dynamic_relations = \ validate_config(opt.config) convert_input_data( entity_configs, relation_configs, entity_path, opt.edge_paths, opt.lhs_col, opt.rhs_col, opt.rel_col, opt.entity_min_count, opt.relation_type_min_count, dynamic_relations, ) if __name__ == "__main__": main()
b63caf64a7adfc33fa4412914bdfd400318a63eb
e42a61b7be7ec3412e5cea0ffe9f6e9f34d4bf8d
/a10sdk/core/waf/waf_xml_schema.py
a6c1a7ac3aab778fc54295f60cf1cc95b76dda52
[ "Apache-2.0" ]
permissive
amwelch/a10sdk-python
4179565afdc76cdec3601c2715a79479b3225aef
3e6d88c65bd1a2bf63917d14be58d782e06814e6
refs/heads/master
2021-01-20T23:17:07.270210
2015-08-13T17:53:23
2015-08-13T17:53:23
40,673,499
0
0
null
2015-08-13T17:51:35
2015-08-13T17:51:34
null
UTF-8
Python
false
false
1,289
py
from a10sdk.common.A10BaseClass import A10BaseClass class XmlSchema(A10BaseClass): """Class Description:: Manage XML-Schema files. Class xml-schema supports CRUD Operations and inherits from `common/A10BaseClass`. This class is the `"PARENT"` class for this module.` :param uuid: {"description": "uuid of the object", "format": "string", "minLength": 1, "modify-not-allowed": 1, "optional": true, "maxLength": 64, "type": "string"} :param max_filesize: {"description": "Set maximum XML-Schema file size (Maximum file size in KBytes, default is 32K)", "partition-visibility": "shared", "default": 32, "optional": true, "format": "number", "maximum": 256, "minimum": 16, "type": "number"} :param DeviceProxy: The device proxy for REST operations and session handling. Refer to `common/device_proxy.py` URL for this object:: `https://<Hostname|Ip address>//axapi/v3/waf/xml-schema`. """ def __init__(self, **kwargs): self.ERROR_MSG = "" self.required=[] self.b_key = "xml-schema" self.a10_url="/axapi/v3/waf/xml-schema" self.DeviceProxy = "" self.uuid = "" self.max_filesize = "" for keys, value in kwargs.items(): setattr(self,keys, value)
7063bba9a5ccd6af262eae54a272ea3d37aa2445
6ab31b5f3a5f26d4d534abc4b197fe469a68e8e5
/tests/beta_tests/test_required_data_2.py
48b091de71469858c02437d9e115177357e086c4
[ "MIT" ]
permissive
mveselov/CodeWars
e4259194bfa018299906f42cd02b8ef4e5ab6caa
1eafd1247d60955a5dfb63e4882e8ce86019f43a
refs/heads/master
2021-06-09T04:17:10.053324
2017-01-08T06:36:17
2017-01-08T06:36:17
null
0
0
null
null
null
null
UTF-8
Python
false
false
1,473
py
import unittest from katas.beta.required_data_2 import given_nth_value class RequiredData2TestCase(unittest.TestCase): def setUp(self): self.list_1 = [3, 3, -1, 10, 6, 8, -5, 4, 22, 31, 34, -16, -16, 8, 8] self.list_2 = [3, 3, -1, 10, 6, 8, -5, 'Yes', 4, 22, 31] self.list_3 = [3, 3, -1, 10, 6, 8, -5, 4, 22, 31] def test_equals(self): self.assertEqual(given_nth_value(self.list_1, 5, 'min'), 4) def test_equals_2(self): self.assertEqual(given_nth_value(self.list_1, 6, 'max'), 6) def test_equals_3(self): self.assertEqual(given_nth_value(self.list_1, 13, 'max'), 'No way') def test_equals_4(self): self.assertEqual(given_nth_value(self.list_2, 4, 'max'), 'Invalid entry list') def test_equals_5(self): self.assertEqual(given_nth_value([], 4, 'max'), 'No values in the array') def test_equals_6(self): self.assertEqual(given_nth_value(self.list_3, 2, 'mix'), 'Valid entries: \'max\' or \'min\'') def test_equals_7(self): self.assertEqual(given_nth_value(self.list_3, 2, 'MaX'), 22) def test_equals_8(self): self.assertEqual(given_nth_value(self.list_1, -1, 'max'), 'Incorrect value for k') def test_equals_9(self): self.assertEqual(given_nth_value(self.list_1, 'string', 2), 'Incorrect value for k')
bd39e76f31f1c24a51b416369db58b831e6dfd68
9f13c7be7e88d2486076db0b89a215ab900fea1a
/main/apps/core/tests/test_views.py
2211728d9e898097fa1eadd09d136514d1880520
[]
no_license
truhlik/reimpay
534664d2e506f39ec6b0edea471e7cfbad179c3b
ac8291dc8a0ac543283ee10aecd32deba24a1641
refs/heads/main
2023-08-10T16:45:55.283272
2021-10-06T19:00:15
2021-10-06T19:00:15
414,333,776
0
0
null
null
null
null
UTF-8
Python
false
false
4,091
py
import datetime from django.test import Client from django.urls import reverse from django.utils import timezone from model_bakery import baker from rest_framework.test import APITestCase from main.apps.users import constants as user_constatnts class CoreViewsTestCase(APITestCase): def setUp(self) -> None: super(CoreViewsTestCase, self).setUp() self.c1 = baker.make('companies.Company') self.c2 = baker.make('companies.Company') self.user_admin = baker.make('users.User', role=user_constatnts.USER_ROLE_ADMIN, company=self.c1) self.user_cra = baker.make('users.User', role=user_constatnts.USER_ROLE_CRA, company=self.c1) self.user_admin_other_company = baker.make('users.User', role=user_constatnts.USER_ROLE_ADMIN, company=self.c2) self.user_cra_other_company = baker.make('users.User', role=user_constatnts.USER_ROLE_CRA, company=self.c2) self.study1 = baker.make('studies.Study', company=self.c1) self.study2 = baker.make('studies.Study', company=self.c1) self.cb1 = baker.make('credit.CreditBalance', study=self.study1) self.cb2 = baker.make('credit.CreditBalance', study=self.study2) self.cb3 = baker.make('credit.CreditBalance') self.site = baker.make('studies.Site', study=self.study1, cra=self.user_cra) def do_auth_admin(self): self.client.force_authenticate(user=self.user_admin) def do_auth_admin_other_company(self): self.client.force_authenticate(user=self.user_admin_other_company) def do_auth_cra(self): self.client.force_authenticate(user=self.user_cra) def do_auth_cra_other_company(self): self.client.force_authenticate(user=self.user_cra_other_company) # def test_list_only_for_authenticated_failed(self): # """ Otestuju, že Study endpointy vyžadují přihlášeného uživatele. """ # # r = self.client.get(reverse('topup-list')) # self.assertEqual(401, r.status_code) # # def test_list_only_for_authenticated_success(self): # """ Otestuju, že Study endpointy vyžadují přihlášeného uživatele. """ # # self.do_auth_cra_other_company() # r = self.client.get(reverse('topup-list')) # self.assertEqual(200, r.status_code) def test_retrieve_finance(self): self.do_auth_admin() r = self.client.get(reverse('finance-detail', args=(self.study1.id, ))) self.assertEqual(200, r.status_code) for k in ['actual_balance', 'paid', 'remaining_visits', 'avg_visit_value', 'exp_budget_need']: self.assertIn(k, r.data.keys()) def test_retrieve_finance_by_cra(self): self.do_auth_cra() r = self.client.get(reverse('finance-detail', args=(self.study1.id, ))) self.assertEqual(200, r.status_code) for k in ['actual_balance', 'paid', 'remaining_visits', 'avg_visit_value', 'exp_budget_need']: self.assertIn(k, r.data.keys()) def test_doctor_login_view(self): patient = baker.make('studies.Patient', number='1', site__pin='2') data = { 'patient_number': 1, 'site_pin': 2, } client = Client() r = client.post(reverse('doctor-login'), data=data) self.assertEqual(200, r.status_code) self.assertEqual('/app/#/patient/{}/'.format(patient.id), r.json()['redirect_to']) session = client.session dt = datetime.datetime.fromisoformat(session["patients"][str(patient.id)]) self.assertTrue(dt > timezone.now()) def test_retrieve_stats(self): self.do_auth_admin() r = self.client.get(reverse('finance-stats', args=(self.study1.id, ))) self.assertEqual(200, r.status_code) for k in ['stats']: self.assertIn(k, r.data.keys()) def test_retrieve_stats_by_cra(self): self.do_auth_cra() r = self.client.get(reverse('finance-stats', args=(self.study1.id, ))) self.assertEqual(200, r.status_code) for k in ['stats']: self.assertIn(k, r.data.keys())
2200eada0e86c8efa83ef9570debe0a0a5d506eb
8b9638839818331df2637cf389d38d541c2b94ed
/SSWW_fitting/n5_Asimov_Dataset_fitting/n0_Asimov_DatasetMaking.py
795663ef59a8f12f9a0f05eedb919b7f3b4d9d2c
[]
no_license
PKUHEPEWK/DNN
015bb5f862f6ee0363f8671890339469ef7aa76b
ad500137441b2f0a55bf462830aca42d9c9d6710
refs/heads/master
2020-03-25T01:34:54.253383
2019-01-29T07:56:26
2019-01-29T07:56:26
143,244,572
0
0
null
null
null
null
UTF-8
Python
false
false
5,606
py
from ROOT import * from math import sqrt import sys, os, math #from root_numpy import * import numpy as np sys.path.append("/Users/leejunho/Desktop/git/python3Env/group_study/project_pre/func") from c0_READ_PATH_FILE_ROOT import read_file_name_root class Asimov_Dataset: def __init__(self,infileLL,infileTTTL): self.tfileLL = TFile(infileLL,"READ") self.tfileTTTL = TFile(infileTTTL,"READ") return def Make_AsimovData(self,NLLTarget,NTTTLTarget,BinNum=20): TreeLL = self.tfileLL.Get("tree"); TreeTTTL = self.tfileTTTL.Get("tree") EntriesLL = TreeLL.GetEntries(); print("Total Entry of Tree LL :",EntriesLL) EntriesTTTL = TreeTTTL.GetEntries(); print("Total Entry of Tree TTTL :",EntriesTTTL) LL_scale = NLLTarget/EntriesLL; TTTL_scale = NTTTLTarget/EntriesTTTL print("Scale Factor on each LL event :",LL_scale); print("Scale Factor on each TTTL event :",TTTL_scale) #cv = TCanvas("cv","cv",1200,900); OF = TFile("Asimov_Dataset.root","RECREATE") lep1pt_hist = TH1D("lep1pt_data","lep1pt_data",BinNum,20,650); dphijj_hist = TH1D("dphijj_data","dphijj_data",BinNum,-0.5,3.5); detajj_hist = TH1D("detajj_data","detajj_data",BinNum,2,10); jet1pt_hist = TH1D("jet1pt_data","jet1pt_data",BinNum,20,800); lep1pt_hist_LL = TH1D("lep1pt_LL","lep1pt_LL",BinNum,20,650); dphijj_hist_LL = TH1D("dphijj_LL","dphijj_LL",BinNum,-0.5,3.5); detajj_hist_LL = TH1D("detajj_LL","detajj_LL",BinNum,2,10); jet1pt_hist_LL = TH1D("jet1pt_LL","jet1pt_LL",BinNum,20,800); lep1pt_hist_TTTL = TH1D("lep1pt_TTTL","lep1pt_TTTL",BinNum,20,650); dphijj_hist_TTTL = TH1D("dphijj_TTTL","dphijj_TTTL",BinNum,-0.5,3.5); detajj_hist_TTTL = TH1D("detajj_TTTL","detajj_TTTL",BinNum,2,10); jet1pt_hist_TTTL = TH1D("jet1pt_TTTL","jet1pt_TTTL",BinNum,20,800); ''' LL_lep1pt_array = tree2array(TreeLL, branches='lep1pt') LL_lep1pt_array_min = np.amin(LL_lep1pt_array); LL_lep1pt_array_max = np.amax(LL_lep1pt_array); LL_dphijj_array = tree2array(TreeLL, branches='dphijj') LL_dphijj_array_min = np.amin(LL_dphijj_array); LL_dphijj_array_max = np.amax(LL_dphijj_array); TTTL_lep1pt_array = tree2array(TreeTTTL, branches='lep1pt') TTTL_lep1pt_array_min = np.amin(TTTL_lep1pt_array); TTTL_lep1pt_array_max = np.amax(TTTL_lep1pt_array); LL_lep1pt_array = tree2array(TreeLL, branches='lep1pt') LL_lep1pt_array_min = np.amin(LL_lep1pt_array); LL_lep1pt_array_max = np.amax(LL_lep1pt_array); ''' print("Rotation on TreeLL, Filling Histogram") for i in range(EntriesLL): if i%50000==0: print("Now looping", i," of Total",EntriesLL); TreeLL.GetEntry(i) lep1pt_hist.Fill(eval("TreeLL.lep1pt"),LL_scale) dphijj_hist.Fill(eval("TreeLL.dphijj"),LL_scale) detajj_hist.Fill(eval("TreeLL.detajj"),LL_scale) jet1pt_hist.Fill(eval("TreeLL.jet1pt"),LL_scale) lep1pt_hist_LL.Fill(eval("TreeLL.lep1pt")) dphijj_hist_LL.Fill(eval("TreeLL.dphijj")) detajj_hist_LL.Fill(eval("TreeLL.detajj")) jet1pt_hist_LL.Fill(eval("TreeLL.jet1pt")) print("Rotation on TreeTTTL, Filling Histogram") for i in range(EntriesTTTL): if i%50000==0: print("Now looping", i," of Total",EntriesTTTL); TreeTTTL.GetEntry(i) lep1pt_hist.Fill(eval("TreeTTTL.lep1pt"),TTTL_scale) dphijj_hist.Fill(eval("TreeTTTL.dphijj"),TTTL_scale) detajj_hist.Fill(eval("TreeTTTL.detajj"),TTTL_scale) jet1pt_hist.Fill(eval("TreeTTTL.jet1pt"),TTTL_scale) lep1pt_hist_TTTL.Fill(eval("TreeTTTL.lep1pt")) dphijj_hist_TTTL.Fill(eval("TreeTTTL.dphijj")) detajj_hist_TTTL.Fill(eval("TreeTTTL.detajj")) jet1pt_hist_TTTL.Fill(eval("TreeTTTL.jet1pt")) print("Resetting error-bar on each bin") for i in range(BinNum): temp_content_error = sqrt(lep1pt_hist.GetBinContent(i+1)) lep1pt_hist.SetBinError(i+1, temp_content_error) temp_content_error = sqrt(dphijj_hist.GetBinContent(i+1)) dphijj_hist.SetBinError(i+1, temp_content_error) temp_content_error = sqrt(detajj_hist.GetBinContent(i+1)) detajj_hist.SetBinError(i+1, temp_content_error) temp_content_error = sqrt(jet1pt_hist.GetBinContent(i+1)) jet1pt_hist.SetBinError(i+1, temp_content_error) OF.Write() OF.Close() return def Append_MC(self): return def main(): infileLL = "/Users/leejunho/Desktop/git/PKUHEP/DNN/SSWW_split_input/result/for_LL_TTTL_compare/SS_250M_cut_LL.root" #FIXME infileTTTL = "/Users/leejunho/Desktop/git/PKUHEP/DNN/SSWW_split_input/result/for_LL_TTTL_compare/SS_250M_cut_TTTL.root" #FIXME BinNum = 20 #FIXME XSec = 0.17864 #pb #FIXME Lumi = 3000000 #pb-1 == 10^-3 *fb-1 #FIXME eff_sel = 0.015944 #FIXME eff_LL = 0.04503 #FIXME NTotTarget = XSec*Lumi*eff_sel; NLLTarget = NTotTarget*eff_LL; NTTTLTarget = NTotTarget*(1-eff_LL) print("Targetting LL Event number :",NLLTarget) print("Targetting TTTL Event number :",NTTTLTarget) Asimov = Asimov_Dataset(infileLL=infileLL,infileTTTL=infileTTTL) Asimov.Make_AsimovData(NLLTarget,NTTTLTarget,BinNum) if __name__=="__main__": main()
ba0d414f75ba433e54bc79826218257d4eb70aa8
5785d7ed431b024dd910b642f10a6781df50e4aa
/revise-daily/arjuna-vishwamitra-abhimanyu/educative/5-medium-subsets/4_permutation_case_sensitive.py
f355280b9cad1e435f0ad603dc1e781b88acf6e7
[]
no_license
kashyapa/interview-prep
45d77324446da34d99bf8efedb3544b367b5523e
7060c090c40602fb9c4778eace2078e1b51e235b
refs/heads/master
2023-07-28T13:12:49.515299
2021-09-06T14:33:25
2021-09-06T14:33:25
403,706,510
0
0
null
null
null
null
UTF-8
Python
false
false
465
py
def permutation_swapcase(str): # abcd, Abcd, aBcd, ABcd, abCd, AbCd, aBCd, ABCd, abcD, AbcD, aBcD, ABcD, abCD, AbCD, aBCD, ABCD perms = [] perms.append(str) for i in range(len(str)): n = len(perms) if str[i].isalpha(): for j in range(n): new_perm = perms[j] chs = list(new_perm) chs[i] = chs[i].swapcase() perms.append("".join(new_perm)) return perms
87f0fffaab7bc21ca9eeed785b838ae66c278d13
e10a6d844a286db26ef56469e31dc8488a8c6f0e
/robust_loss/util.py
e16e1d6560e238c6a2ba80982aec7983c748cf1f
[ "Apache-2.0", "CC-BY-4.0" ]
permissive
Jimmy-INL/google-research
54ad5551f97977f01297abddbfc8a99a7900b791
5573d9c5822f4e866b6692769963ae819cb3f10d
refs/heads/master
2023-04-07T19:43:54.483068
2023-03-24T16:27:28
2023-03-24T16:32:17
282,682,170
1
0
Apache-2.0
2020-07-26T15:50:32
2020-07-26T15:50:31
null
UTF-8
Python
false
false
5,609
py
# coding=utf-8 # Copyright 2022 The Google Research Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. """Helper functions.""" import numpy as np import tensorflow.compat.v2 as tf def log_safe(x): """The same as tf.math.log(x), but clamps the input to prevent NaNs.""" return tf.math.log(tf.minimum(x, tf.cast(3e37, x.dtype))) def log1p_safe(x): """The same as tf.math.log1p(x), but clamps the input to prevent NaNs.""" return tf.math.log1p(tf.minimum(x, tf.cast(3e37, x.dtype))) def exp_safe(x): """The same as tf.math.exp(x), but clamps the input to prevent NaNs.""" return tf.math.exp(tf.minimum(x, tf.cast(87.5, x.dtype))) def expm1_safe(x): """The same as tf.math.expm1(x), but clamps the input to prevent NaNs.""" return tf.math.expm1(tf.minimum(x, tf.cast(87.5, x.dtype))) def inv_softplus(y): """The inverse of tf.nn.softplus().""" return tf.where(y > 87.5, y, tf.math.log(tf.math.expm1(y))) def logit(y): """The inverse of tf.nn.sigmoid().""" return -tf.math.log(1. / y - 1.) def affine_sigmoid(real, lo=0, hi=1): """Maps reals to (lo, hi), where 0 maps to (lo+hi)/2.""" if not lo < hi: raise ValueError('`lo` (%g) must be < `hi` (%g)' % (lo, hi)) alpha = tf.sigmoid(real) * (hi - lo) + lo return alpha def inv_affine_sigmoid(alpha, lo=0, hi=1): """The inverse of affine_sigmoid(., lo, hi).""" if not lo < hi: raise ValueError('`lo` (%g) must be < `hi` (%g)' % (lo, hi)) real = logit((alpha - lo) / (hi - lo)) return real def affine_softplus(real, lo=0, ref=1): """Maps real numbers to (lo, infinity), where 0 maps to ref.""" if not lo < ref: raise ValueError('`lo` (%g) must be < `ref` (%g)' % (lo, ref)) shift = inv_softplus(tf.cast(1., real.dtype)) scale = (ref - lo) * tf.nn.softplus(real + shift) + lo return scale def inv_affine_softplus(scale, lo=0, ref=1): """The inverse of affine_softplus(., lo, ref).""" if not lo < ref: raise ValueError('`lo` (%g) must be < `ref` (%g)' % (lo, ref)) shift = inv_softplus(tf.cast(1., scale.dtype)) real = inv_softplus((scale - lo) / (ref - lo)) - shift return real def students_t_nll(x, df, scale): """The NLL of a Generalized Student's T distribution (w/o including TFP).""" return 0.5 * ((df + 1.) * tf.math.log1p( (x / scale)**2. / df) + tf.math.log(df)) + tf.math.log( tf.abs(scale)) + tf.math.lgamma( 0.5 * df) - tf.math.lgamma(0.5 * df + 0.5) + 0.5 * np.log(np.pi) # A constant scale that makes tf.image.rgb_to_yuv() volume preserving. _VOLUME_PRESERVING_YUV_SCALE = 1.580227820074 def rgb_to_syuv(rgb): """A volume preserving version of tf.image.rgb_to_yuv(). By "volume preserving" we mean that rgb_to_syuv() is in the "special linear group", or equivalently, that the Jacobian determinant of the transformation is 1. Args: rgb: A tensor whose last dimension corresponds to RGB channels and is of size 3. Returns: A scaled YUV version of the input tensor, such that this transformation is volume-preserving. """ return _VOLUME_PRESERVING_YUV_SCALE * tf.image.rgb_to_yuv(rgb) def syuv_to_rgb(yuv): """A volume preserving version of tf.image.yuv_to_rgb(). By "volume preserving" we mean that rgb_to_syuv() is in the "special linear group", or equivalently, that the Jacobian determinant of the transformation is 1. Args: yuv: A tensor whose last dimension corresponds to scaled YUV channels and is of size 3 (ie, the output of rgb_to_syuv()). Returns: An RGB version of the input tensor, such that this transformation is volume-preserving. """ return tf.image.yuv_to_rgb(yuv / _VOLUME_PRESERVING_YUV_SCALE) def image_dct(image): """Does a type-II DCT (aka "The DCT") on axes 1 and 2 of a rank-3 tensor.""" dct_y = tf.transpose( a=tf.signal.dct(image, type=2, norm='ortho'), perm=[0, 2, 1]) dct_x = tf.transpose( a=tf.signal.dct(dct_y, type=2, norm='ortho'), perm=[0, 2, 1]) return dct_x def image_idct(dct_x): """Inverts image_dct(), by performing a type-III DCT.""" dct_y = tf.signal.idct( tf.transpose(dct_x, perm=[0, 2, 1]), type=2, norm='ortho') image = tf.signal.idct( tf.transpose(dct_y, perm=[0, 2, 1]), type=2, norm='ortho') return image def compute_jacobian(f, x): """Computes the Jacobian of function `f` with respect to input `x`.""" x = tf.convert_to_tensor(x) with tf.GradientTape(persistent=True) as tape: tape.watch(x) vec = lambda x: tf.reshape(x, [-1]) jacobian = tf.stack( [vec(tape.gradient(vec(f(x))[d], x)) for d in range(tf.size(x))]) return jacobian def get_resource_as_file(path): """A uniform interface for internal/open-source files.""" class NullContextManager(object): def __init__(self, dummy_resource=None): self.dummy_resource = dummy_resource def __enter__(self): return self.dummy_resource def __exit__(self, *args): pass return NullContextManager('./' + path) def get_resource_filename(path): """A uniform interface for internal/open-source filenames.""" return './' + path
0aba4c835bf050bf8a957d653f0f795cc8df0b45
518bf342bc4138982af3e2724e75f1d9ca3ba56c
/solutions/1589. Maximum Sum Obtained of Any Permutation/1589.py
788bf7675e89f00c8c36280ac9384a28a4918035
[ "MIT" ]
permissive
walkccc/LeetCode
dae85af7cc689882a84ee5011f0a13a19ad97f18
a27be41c174565d365cbfe785f0633f634a01b2a
refs/heads/main
2023-08-28T01:32:43.384999
2023-08-20T19:00:45
2023-08-20T19:00:45
172,231,974
692
302
MIT
2023-08-13T14:48:42
2019-02-23T15:46:23
C++
UTF-8
Python
false
false
507
py
class Solution: def maxSumRangeQuery(self, nums: List[int], requests: List[List[int]]) -> int: kMod = 1_000_000_007 ans = 0 # count[i] := # of times nums[i] has been requested count = [0] * len(nums) for start, end in requests: count[start] += 1 if end + 1 < len(nums): count[end + 1] -= 1 for i in range(1, len(nums)): count[i] += count[i - 1] for num, c in zip(sorted(nums), sorted(count)): ans += num * c ans %= kMod return ans
4d98fe655147a64f31dce19a2237de013034d925
9419861577102f31261bcd5d0c365a8c8362c54d
/firstproject/urls.py
04fe0109a96dbcb862d69932f9ce4d8a6332f710
[]
no_license
16LeeSeul/django_wordcount
f09ae855406cf767e0555191385a22e07218a8ba
01d195298de0cd03390d397d01ccb2e79b8fd593
refs/heads/master
2020-04-17T23:25:44.141771
2019-01-22T17:16:19
2019-01-22T17:16:19
167,034,940
0
0
null
null
null
null
UTF-8
Python
false
false
365
py
from django.contrib import admin from django.urls import path import wordcount.views urlpatterns = [ path('admin/', admin.site.urls), path('', wordcount.views.home, name="home"), path('about/', wordcount.views.about, name="about"), path('result/', wordcount.views.result, name="result"), path('index/', wordcount.views.index, name="index"), ]
0d6b5e20427885b3ea44219bd165433b76358e41
f62955f9f78fc0ebc84d2f58118a012edc3317b9
/.eggs/scikit_learn-0.19.1-py2.7-linux-x86_64.egg/sklearn/decomposition/cdnmf_fast.py
4d8deb50edc2ac72da6186c62a71462b276a2247
[ "Apache-2.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
wouterkessels/PREDICTFastr
31aa5de9b0a85613af7e961297c13be2c19d3dfc
2ac3a34b4d43e6a88684e79fd14d5c3f02d27eb6
refs/heads/master
2021-04-03T05:21:20.425482
2018-05-14T07:57:40
2018-05-14T07:57:40
124,414,878
0
0
null
2018-03-08T16:00:55
2018-03-08T16:00:54
null
UTF-8
Python
false
false
286
py
def __bootstrap__(): global __bootstrap__, __loader__, __file__ import sys, pkg_resources, imp __file__ = pkg_resources.resource_filename(__name__, 'cdnmf_fast.so') __loader__ = None; del __bootstrap__, __loader__ imp.load_dynamic(__name__,__file__) __bootstrap__()
82e2d74564a2c116c8172cf12c9f4aae74c1cf6c
324ec5647849f97418c91151e4e1d1953d2d9257
/account_dashboard_bokeh/__manifest__.py
efb0b7a4ced07a7c134122ea173cb32a2235bc73
[]
no_license
MarcosCommunity/marcos_community_addons
84ab9ae7639b1d77ad36a167786160f54e0ef409
7adeceea5c12129baad36c037ff188cbccc98e2f
refs/heads/10.0
2020-04-04T07:27:54.837381
2017-10-10T01:44:17
2017-10-10T01:44:18
45,713,685
15
15
null
null
null
null
UTF-8
Python
false
false
1,690
py
# -*- coding: utf-8 -*- ############################################################################## # # iFenSys Software Solutions Pvt. Ltd. # Copyright (C) 2017 iFenSys Software Solutions(<http://www.ifensys.com>). # you can modify it under the terms of the GNU LESSER # GENERAL PUBLIC LICENSE (LGPL v3), Version 3. # # It is forbidden to publish, distribute, sublicense, or sell copies # of the Software or modified copies of the Software. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. # # You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE # GENERAL PUBLIC LICENSE (LGPL v3) along with this program. # If not, see <http://www.gnu.org/licenses/>. # ############################################################################## { 'name': 'Accounting Dashboard Bokeh Charts', 'version': '10.0.0.1', 'category':'Accounting', 'summary': 'Accounting Dashboard Bokeh Charts', 'author':'iFenSys Software Solutions Pvt. Ltd', 'company':'iFenSys Software Solutions Pvt. Ltd', 'website': 'http://www.ifensys.com', 'depends': ['base','product','account'], 'data': [ 'views/templates.xml', 'data/dashboard_demo.xml', 'data/dashboard_data.xml', 'views/html_template_views.xml', 'views/menus.xml', ], 'qweb': ['static/src/xml/*.xml'], 'images': ['static/description/banner.png'], 'installable': True, 'auto_install': False, }
5f530fb04413e8fe54b09e163502f22247cc0074
21b50b70ab307adfa39b9932b826f4de1b5e7786
/posts/urls.py
60d16029df27881878cb78d0c32dad61d9264664
[]
no_license
kamral/drf1
080da165852fb2e7247c3298c03f26f96a76046a
f78aea6e39aa0aa6b66bb094c583286970fe14b9
refs/heads/main
2023-01-20T04:45:41.676653
2020-11-26T15:57:08
2020-11-26T15:57:08
316,277,381
0
0
null
null
null
null
UTF-8
Python
false
false
192
py
from django.urls import path from .views import PostListApiView,PostDetailApiView urlpatterns=[ path('', PostListApiView.as_view()), path('<int:pk>/', PostDetailApiView.as_view()), ]
a82e2ff00c8f70e65e2c5564da32ab9055065709
39988ca6b376a37fe115816d6e707c4e7ea0b077
/reproducibilityPackages/independenceStudy/cuibm/gridIndependence/Re2000AoA35/plotForceCoefficientsCompareATol.py
6fc2b7a0aa8a39ee7e310044a2b9ecc90c862db6
[ "CC-BY-4.0", "CC-BY-3.0", "MIT" ]
permissive
mljack/snake-repro
beddb77e1a892e126005cb4a8843365214d84ec9
f594d975fd2ba00a66b90877a4f7bd7596838fc8
refs/heads/master
2023-03-18T16:24:37.684519
2020-05-10T17:34:03
2020-05-10T17:34:03
null
0
0
null
null
null
null
UTF-8
Python
false
false
3,569
py
""" Compares the instantaneous force coefficients obtained on the coarse mesh (h=0.006) using a different absolute tolerance (1.0E-05 and 1.0E-06) as exit criterion for the Poisson solver. The velocity solver is solved with an absolute tolerance of 1.0E-16 (machine accuracy). This script generates the figure `forceCoefficientsCompareATol.png` saved in the same directory. """ import os import warnings from matplotlib import pyplot import snake from snake.cuibm.simulation import CuIBMSimulation if snake.__version__ != '0.1.2': warnings.warn('The figures were originally created with snake-0.1.2, '+ 'you are using snake-{}'.format(snake.__version__)) # Computes the mean force coefficients from the cuIBM simulation # with grid-spacing h=0.006 in the uniform region and atol=1.0E-06 for the # Poisson solver. # The force coefficients are averaged between 32 and 64 time-units. simulation_directory = os.path.join(os.path.dirname(__file__), 'h0.006_vatol16_patol6_dt0.0002') simulation = CuIBMSimulation(description='atol=1.0E-06', directory=simulation_directory) simulation.read_forces() simulation.get_mean_forces(limits=[32.0, 64.0]) # Computes the mean force coefficients from the cuIBM simulation # with grid-spacing h=0.006 in the uniform region and atol=1.0E-05 for the # Poisson solver. # The force coefficients are averaged between 32 and 64 time-units. simulation_directory = os.path.join(os.path.dirname(__file__), 'h0.006_vatol16_patol5_dt0.0002') simulation2 = CuIBMSimulation(description='atol=1.0E-05', directory=simulation_directory) simulation2.read_forces() simulation2.get_mean_forces(limits=[32.0, 64.0]) # Creates a table with the time-averaged force coefficients. dataframe = simulation.create_dataframe_forces(display_coefficients=True, coefficient=2.0) dataframe2 = simulation2.create_dataframe_forces(display_coefficients=True, coefficient=2.0) dataframe = dataframe.append([dataframe2]) print(dataframe) # Plots the instantaneous force coefficients from the simulation using shifted # markers and from the simulation using exact markers. fig, ax = pyplot.subplots(figsize=(6, 4)) ax.grid(True, zorder=0) ax.set_xlabel('non-dimensional time-unit') ax.set_ylabel('force coefficients') ax.plot(simulation.forces[0].times, 2.0*simulation.forces[0].values, label='$C_d$ - $atol = 10^{-6}$', color='#377eb8', linestyle='-', linewidth=2, zorder=10) ax.plot(simulation2.forces[0].times, 2.0*simulation2.forces[0].values, label='$C_d$ - $atol = 10^{-5}$', color='#111111', linestyle='-', linewidth=1, zorder=11) ax.plot(simulation.forces[1].times, 2.0*simulation.forces[1].values, label='$C_l$ - $atol = 10^{-6}$', color='#ff7f00', linewidth=2, linestyle='-', zorder=10) ax.plot(simulation2.forces[1].times, 2.0*simulation2.forces[1].values, label='$C_l$ - $atol = 10^{-5}$', color='#111111', linestyle=':', linewidth=2, zorder=11) ax.axis([0.0, 80.0, 0.75, 3.5]) ax.legend(ncol=2, loc='upper right') file_path = os.path.join(os.path.dirname(__file__), 'forceCoefficientsCompareATol.png') pyplot.savefig(file_path, bbox_inches='tight', format='png', dpi=300)
cd66f69f537e8c40151685872ca78823e0a7c88c
7832e7dc8f1583471af9c08806ce7f1117cd228a
/aliyun-python-sdk-ons/aliyunsdkons/request/v20170918/OnsMessagePageQueryByTopicRequest.py
9b898029a797cbc69403d948e695eb39da98e762
[ "Apache-2.0" ]
permissive
dianplus/aliyun-openapi-python-sdk
d6494850ddf0e66aaf04607322f353df32959725
6edf1ed02994245dae1d1b89edc6cce7caa51622
refs/heads/master
2023-04-08T11:35:36.216404
2017-11-02T12:01:15
2017-11-02T12:01:15
109,257,597
0
0
NOASSERTION
2023-03-23T17:59:30
2017-11-02T11:44:27
Python
UTF-8
Python
false
false
2,478
py
# Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information # regarding copyright ownership. The ASF licenses this file # to you 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. from aliyunsdkcore.request import RpcRequest class OnsMessagePageQueryByTopicRequest(RpcRequest): def __init__(self): RpcRequest.__init__(self, 'Ons', '2017-09-18', 'OnsMessagePageQueryByTopic') def get_PreventCache(self): return self.get_query_params().get('PreventCache') def set_PreventCache(self,PreventCache): self.add_query_param('PreventCache',PreventCache) def get_OnsRegionId(self): return self.get_query_params().get('OnsRegionId') def set_OnsRegionId(self,OnsRegionId): self.add_query_param('OnsRegionId',OnsRegionId) def get_OnsPlatform(self): return self.get_query_params().get('OnsPlatform') def set_OnsPlatform(self,OnsPlatform): self.add_query_param('OnsPlatform',OnsPlatform) def get_PageSize(self): return self.get_query_params().get('PageSize') def set_PageSize(self,PageSize): self.add_query_param('PageSize',PageSize) def get_Topic(self): return self.get_query_params().get('Topic') def set_Topic(self,Topic): self.add_query_param('Topic',Topic) def get_EndTime(self): return self.get_query_params().get('EndTime') def set_EndTime(self,EndTime): self.add_query_param('EndTime',EndTime) def get_BeginTime(self): return self.get_query_params().get('BeginTime') def set_BeginTime(self,BeginTime): self.add_query_param('BeginTime',BeginTime) def get_CurrentPage(self): return self.get_query_params().get('CurrentPage') def set_CurrentPage(self,CurrentPage): self.add_query_param('CurrentPage',CurrentPage) def get_TaskId(self): return self.get_query_params().get('TaskId') def set_TaskId(self,TaskId): self.add_query_param('TaskId',TaskId)
d47f5cff2feae7651c928e07fc84f08ff20b1a9b
8661524d0aab2ec62a0443d843cd2810a5d06201
/tiendadj/tienda/tienda/urls.py
b15dad841c769079d032df88bdae517ce5bd6541
[]
no_license
Garavirod/Django-DRF-Projects
e8fbfbbd86f09862ac4ae48cb7f9c46b9360978a
93ba2a5f59dbbe2c2c440abc89c6cd473b59fc4c
refs/heads/master
2023-01-13T13:06:06.647724
2020-11-23T19:28:12
2020-11-23T19:28:12
289,785,572
0
0
null
null
null
null
UTF-8
Python
false
false
1,202
py
"""tienda URL Configuration The `urlpatterns` list routes URLs to views. For more information please see: https://docs.djangoproject.com/en/3.0/topics/http/urls/ Examples: Function views 1. Add an import: from my_app import views 2. Add a URL to urlpatterns: path('', views.home, name='home') Class-based views 1. Add an import: from other_app.views import Home 2. Add a URL to urlpatterns: path('', Home.as_view(), name='home') Including another URLconf 1. Import the include() function: from django.urls import include, path 2. Add a URL to urlpatterns: path('blog/', include('blog.urls')) """ from django.contrib import admin from django.urls import path, re_path, include urlpatterns = [ path('admin/', admin.site.urls), # users app urls path re_path('',include('applications.users.urls')), # product app urls path re_path('',include('applications.producto.urls')), # venta app url path re_path('',include('applications.venta.urls')), # Colors path with routers and viewset re_path('', include('applications.producto.routers')), # Venta path with routers and viewset re_path('',include('applications.venta.routers')) ]
2bd53bae47464d656701a6fdfb49ed469fb6bbfe
b15d2787a1eeb56dfa700480364337216d2b1eb9
/samples/cli/accelbyte_py_sdk_cli/iam/_delete_client_by_namespace.py
66c47c09ba25715164ca03371181b603b5a439d1
[ "MIT" ]
permissive
AccelByte/accelbyte-python-sdk
dedf3b8a592beef5fcf86b4245678ee3277f953d
539c617c7e6938892fa49f95585b2a45c97a59e0
refs/heads/main
2023-08-24T14:38:04.370340
2023-08-22T01:08:03
2023-08-22T01:08:03
410,735,805
2
1
MIT
2022-08-02T03:54:11
2021-09-27T04:00:10
Python
UTF-8
Python
false
false
2,268
py
# Copyright (c) 2021 AccelByte Inc. All Rights Reserved. # This is licensed software from AccelByte Inc, for limitations # and restrictions contact your company contract manager. # # Code generated. DO NOT EDIT! # template_file: python-cli-command.j2 # AGS Iam Service (6.2.0) # pylint: disable=duplicate-code # pylint: disable=line-too-long # pylint: disable=missing-function-docstring # pylint: disable=missing-module-docstring # pylint: disable=too-many-arguments # pylint: disable=too-many-branches # pylint: disable=too-many-instance-attributes # pylint: disable=too-many-lines # pylint: disable=too-many-locals # pylint: disable=too-many-public-methods # pylint: disable=too-many-return-statements # pylint: disable=too-many-statements # pylint: disable=unused-import import json import yaml from typing import Optional import click from .._utils import login_as as login_as_internal from .._utils import to_dict from accelbyte_py_sdk.api.iam import ( delete_client_by_namespace as delete_client_by_namespace_internal, ) from accelbyte_py_sdk.api.iam.models import RestErrorResponse @click.command() @click.argument("client_id", type=str) @click.option("--namespace", type=str) @click.option("--login_as", type=click.Choice(["client", "user"], case_sensitive=False)) @click.option("--login_with_auth", type=str) @click.option("--doc", type=bool) def delete_client_by_namespace( client_id: str, namespace: Optional[str] = None, login_as: Optional[str] = None, login_with_auth: Optional[str] = None, doc: Optional[bool] = None, ): if doc: click.echo(delete_client_by_namespace_internal.__doc__) return x_additional_headers = None if login_with_auth: x_additional_headers = {"Authorization": login_with_auth} else: login_as_internal(login_as) result, error = delete_client_by_namespace_internal( client_id=client_id, namespace=namespace, x_additional_headers=x_additional_headers, ) if error: raise Exception(f"DeleteClientByNamespace failed: {str(error)}") click.echo(yaml.safe_dump(to_dict(result), sort_keys=False)) delete_client_by_namespace.operation_id = "DeleteClientByNamespace" delete_client_by_namespace.is_deprecated = True
62ead87a73ff1561c12a3a6a489e0494f0c0c0b8
3f09e77f169780968eb4bd5dc24b6927ed87dfa2
/src/Problems/Trapping_Rain_Water.py
790695e2d95e041b9c6897137e6540ec4299a717
[]
no_license
zouyuanrenren/Leetcode
ad921836256c31e31cf079cf8e671a8f865c0660
188b104b81e6c73792f7c803c0fa025f9413a484
refs/heads/master
2020-12-24T16:59:12.464615
2015-01-19T21:59:15
2015-01-19T21:59:15
26,719,111
0
0
null
null
null
null
UTF-8
Python
false
false
1,023
py
''' Created on 19 Jan 2015 @author: Yuan ''' ''' This problem has several solutions. Solutoin1: 1. find the peak of the array. 2. for each bar to the left of the peak, if the tallest to its left is MAX, then it can hold MAX-bar water. 3. for each bar to the right of the peak, if the tallest to its right is MAX, then it can hold MAX-bar water. Solution2 is to use a stack. Need to add later. ''' class Solution1: # @param A, a list of integers # @return an integer def trap(self, A): total = 0 if len(A) == 0: return 0 peak = 0 for index in range(0, len(A)): if A[index] > A[peak]: peak = index pre = A[0] for index in range(0, peak): pre = max(pre, A[index]) total += pre-A[index] pre = A[len(A)-1] index = len(A)-1 while index > peak: pre = max(pre, A[index]) total += pre-A[index] index -= 1 return total
562b6ccf75ce533f7d45cd5c3e35c161c0f06b56
7438ed5bda477e728fd075d8aba69a4ee43cbe83
/day_04/json_ex/json_ex01.py
05adb2c4821a47893079dd8e8f067e52b83645fe
[]
no_license
mindful-ai/18012021PYLVC
b2717846a905400c2462eb4dd293aa3a7a48a86f
2facc19fb433e3e15d1195fb2b75eea3bffd097a
refs/heads/main
2023-02-18T22:40:38.112663
2021-01-22T12:52:47
2021-01-22T12:52:47
330,656,405
1
2
null
2021-01-22T17:28:23
2021-01-18T12:17:10
Python
UTF-8
Python
false
false
145
py
import pandas as pd data = pd.read_json('http://api.population.io/1.0/population/India/today-and-tomorrow/?format = json') print(data)
d208cb86e1da4bd00d174eed3f2d2dd895b22964
9af2aef1e0d1033217179394bff6344858da9f4d
/python/chronos/test/bigdl/chronos/model/tf2/test_Seq2Seq_keras.py
f931bb30d652d232574b5d72337c303cc4f9a892
[ "Apache-2.0" ]
permissive
analytics-zoo/BigDL
9d5fec6dea5eaf458ef87edbbf2bd4d5e4a24f4d
6c18e9337b649df3a975f8293c15fcd075d4f11f
refs/heads/main
2023-03-16T04:42:14.787392
2022-11-28T08:44:03
2022-11-28T08:44:03
557,722,893
2
0
Apache-2.0
2023-01-18T14:23:55
2022-10-26T07:20:43
Jupyter Notebook
UTF-8
Python
false
false
3,776
py
# # Copyright 2016 The BigDL Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # import tempfile import tensorflow as tf import pytest from unittest import TestCase from bigdl.chronos.model.tf2.Seq2Seq_keras import LSTMSeq2Seq, model_creator import numpy as np def create_data(): train_num_samples = 1000 test_num_samples = 400 input_feature_num = 10 output_feature_num = 2 past_seq_len = 10 future_seq_len = np.random.randint(1, 5) def get_x_y(num_samples): x = np.random.randn(num_samples, past_seq_len, input_feature_num) y = np.random.randn(num_samples, future_seq_len, output_feature_num) return x, y train_data = get_x_y(train_num_samples) test_data = get_x_y(test_num_samples) return train_data, test_data @pytest.mark.skipif(tf.__version__ < '2.0.0', reason="Run only when tf>2.0.0.") class TestSeq2Seq(TestCase): def setUp(self): pass def tearDown(self): pass def test_seq2seq_fit_predict_evaluate(self): train_data, test_data = create_data() model = model_creator(config={ "input_feature_num": 10, "output_feature_num": 2, "future_seq_len": test_data[-1].shape[1], "lstm_hidden_dim": 32 }) model.fit(train_data[0], train_data[1], epochs=2, validation_data=test_data) yhat = model.predict(test_data[0]) model.evaluate(test_data[0], test_data[1]) assert yhat.shape == (400, train_data[-1].shape[1], 2) def test_seq2seq_save_load(self): train_data, test_data = create_data() model = model_creator(config={ "input_feature_num": 10, "output_feature_num": 2, "future_seq_len": test_data[-1].shape[1], "lstm_hidden_dim": 32 }) model.fit(train_data[0], train_data[1], epochs=2, validation_data=test_data) with tempfile.TemporaryDirectory() as tmp_dir_file: model.save(tmp_dir_file) import keras restore_model = keras.models.load_model(tmp_dir_file, custom_objects={"LSTMSeq2Seq": LSTMSeq2Seq}) model_res = model.evaluate(test_data[0], test_data[1]) restore_model_res = restore_model.evaluate(test_data[0], test_data[1]) np.testing.assert_almost_equal(model_res, restore_model_res, decimal=5) assert isinstance(restore_model, LSTMSeq2Seq) def test_seq2seq_freeze_training(self): train_data, test_data = create_data() model = model_creator(config={ "input_feature_num": 10, "output_feature_num": 2, "future_seq_len": test_data[-1].shape[1], "lstm_hidden_dim": 32 }) freeze_yhat = model(test_data[0], training=False) _freeze_yhat = model(test_data[0], training=False) assert np.all(_freeze_yhat == freeze_yhat) _unfreeze_yhat = model(test_data[0], training=True) unfreeze_yhat = model(test_data[0], training=True) assert np.any(_unfreeze_yhat != unfreeze_yhat) if __name__ == '__main__': pytest.main([__file__])
7488e99a63b2fb53387ff3a700a2557870d81010
11286e7989264134a8a8d610e0f609e6fbff9140
/ch03/ch03_10.py
7649efe4cb33c68f8e0e48a12894028241aab190
[]
no_license
p2c2e/machine_learning_with_python_cookbook
04eeed2e00e0a3e9c0681d4b2f4125aa85485a1d
b176323a02f5b5722e312a579ad764a0276ec9c6
refs/heads/main
2023-01-30T06:54:34.138786
2020-12-13T05:02:07
2020-12-13T05:02:07
320,987,171
0
0
null
null
null
null
UTF-8
Python
false
false
120
py
# Set index dataframe = dataframe.set_index(dataframe['Name']) # Show row dataframe.loc['Allen, Miss Elisabeth Walton']
743aee244af3e5076a2c6eced6ffea7266f9cf44
b501a5eae1018c1c26caa96793c6ee17865ebb2d
/Asyncio/asyncio_coroutine_return.py
33de7d2adede0d01e538c965d748f6871d4e2b33
[]
no_license
jincurry/standard_Library_Learn
12b02f9e86d31ca574bb6863aefc95d63cc558fc
6c7197f12747456e0f1f3efd09667682a2d1a567
refs/heads/master
2022-10-26T07:28:36.545847
2018-05-04T12:54:50
2018-05-04T12:54:50
125,447,397
0
1
null
2022-10-02T17:21:50
2018-03-16T01:32:50
Python
UTF-8
Python
false
false
348
py
import asyncio async def coroutine(): print('in coroutine') return 'result' event_loop = asyncio.get_event_loop() try: print('Starting') return_value = event_loop.run_until_complete( coroutine() ) print('return from coroutine') print('it returned: {!r}'.format(return_value)) finally: event_loop.close()
5cffbe8f48e68fffb7131c55cf9163e826b0549a
9bc228372e586a1f90bb0685c43e744be9638ecd
/18_배연주/session08/blogproject/urls.py
9a3215ba5702b7c22567450884a56611561f2a6b
[ "MIT" ]
permissive
LikeLionSCH/9th_ASSIGNMENT
3e58862a76e3232aed7e19e8939da23330ff2e22
c211995ad12f404833ffec7fd80e1229b82a3bfa
refs/heads/master
2023-07-03T10:27:11.843177
2021-08-02T14:52:02
2021-08-02T14:52:02
379,633,279
7
18
MIT
2021-08-02T14:52:03
2021-06-23T14:36:59
Python
UTF-8
Python
false
false
1,043
py
"""blogproject URL Configuration The `urlpatterns` list routes URLs to views. For more information please see: https://docs.djangoproject.com/en/3.2/topics/http/urls/ Examples: Function views 1. Add an import: from my_app import views 2. Add a URL to urlpatterns: path('', views.home, name='home') Class-based views 1. Add an import: from other_app.views import Home 2. Add a URL to urlpatterns: path('', Home.as_view(), name='home') Including another URLconf 1. Import the include() function: from django.urls import include, path 2. Add a URL to urlpatterns: path('blog/', include('blog.urls')) """ from django.contrib import admin from django.urls import path, include from django.conf import settings from django.conf.urls.static import static urlpatterns = [ path('admin/', admin.site.urls), path('blog/', include('blog.urls')), path('account/', include('account.urls')), path('restaurant/', include('restaurant.urls')), ] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
8186e7d599b6d6625d7b1f68a6983f22497faca4
5406d6bce007c90ca36e7557e060296e04b7c1b6
/scripts/spp13/spp.py
c84b8f8e1a2c74e42e844b9c537542e32a99e727
[]
no_license
darraghdog/dfake
10df7c19acc3447c1833ab2754ec61b5699b9a05
e128d0d907b0cb2d4e5d841de4bcfb0ddb0af276
refs/heads/master
2022-04-12T02:46:02.272497
2020-04-05T19:18:30
2020-04-05T19:18:30
229,479,349
0
0
null
null
null
null
UTF-8
Python
false
false
17,597
py
import os import sys import glob import json import cv2 from PIL import Image import numpy as np import pandas as pd #import dlib import torch from itertools import product from time import time import datetime import collections from tqdm import tqdm import skvideo.io import skvideo.datasets import random import optparse import itertools #from facenet_pytorch import MTCNN, InceptionResnetV1 import matplotlib.pylab as plt import warnings warnings.filterwarnings("ignore") import torch import torch.nn.functional as F from torch import nn import torch.optim as optim from albumentations import Compose, ShiftScaleRotate, Resize from albumentations.pytorch import ToTensor from torch.utils.data import Dataset from sklearn.metrics import log_loss from torch.utils.data import DataLoader from torch.optim.lr_scheduler import StepLR from albumentations import (Cutout, Compose, Normalize, RandomRotate90, HorizontalFlip, RandomBrightnessContrast, VerticalFlip, ShiftScaleRotate, Transpose, OneOf, IAAAdditiveGaussianNoise, GaussNoise, RandomGamma, RandomContrast, RandomBrightness, HueSaturationValue, Blur, ToGray, ToSepia, MultiplicativeNoise, JpegCompression, Lambda, NoOp, CenterCrop, Resize ) import albumentations as A from tqdm import tqdm from apex import amp from apex.parallel import DistributedDataParallel as DDP from apex.fp16_utils import * from apex import amp, optimizers from apex.multi_tensor_apply import multi_tensor_applier # Print info about environments parser = optparse.OptionParser() parser.add_option('-a', '--seed', action="store", dest="seed", help="model seed", default="1234") parser.add_option('-b', '--fold', action="store", dest="fold", help="Fold for split", default="0") parser.add_option('-c', '--rootpath', action="store", dest="rootpath", help="root directory", default="") parser.add_option('-d', '--vidpath', action="store", dest="vidpath", help="root directory", default="data/mount/video/train") parser.add_option('-e', '--imgpath', action="store", dest="imgpath", help="root directory", default="data/mount/npimg/train") parser.add_option('-f', '--wtspath', action="store", dest="wtspath", help="root directory", default="weights") parser.add_option('-g', '--fps', action="store", dest="fps", help="Frames per second", default="8") parser.add_option('-i', '--size', action="store", dest="size", help="image size", default="224") parser.add_option('-j', '--metafile', action="store", dest="metafile", help="Meta file", default="trainmeta.csv.gz") parser.add_option('-k', '--batchsize', action="store", dest="batchsize", help="Batch size", default="8") parser.add_option('-l', '--epochs', action="store", dest="epochs", help="epochs", default="10") parser.add_option('-m', '--lr', action="store", dest="lr", help="learning rate", default="0.0001") parser.add_option('-n', '--decay', action="store", dest="decay", help="Weight Decay", default="0.0") parser.add_option('-o', '--lrgamma', action="store", dest="lrgamma", help="Scheduler Learning Rate Gamma", default="1.0") parser.add_option('-p', '--start', action="store", dest="start", help="Start epochs", default="0") parser.add_option('-q', '--infer', action="store", dest="infer", help="root directory", default="TRN") parser.add_option('-r', '--accum', action="store", dest="accum", help="accumulation steps", default="1") options, args = parser.parse_args() INPATH = options.rootpath #INPATH='/Users/dhanley2/Documents/Personal/dfake' sys.path.append(os.path.join(INPATH, 'utils' )) from logs import get_logger from utils import dumpobj, loadobj, chunks, pilimg, SpatialDropout from sort import * from sppnet import SPPNet # Print info about environments logger = get_logger('Video to image :', 'INFO') device=torch.device('cuda' if torch.cuda.is_available() else 'cpu') logger.info('Device : {}'.format(torch.cuda.get_device_name(0))) logger.info('Cuda available : {}'.format(torch.cuda.is_available())) n_gpu = torch.cuda.device_count() logger.info('Cuda n_gpus : {}'.format(n_gpu )) logger.info('Load params') for (k,v) in options.__dict__.items(): logger.info('{}{}'.format(k.ljust(20), v)) SEED = int(options.seed) SIZE = int(options.size) FOLD = int(options.fold) BATCHSIZE = int(options.batchsize) METAFILE = os.path.join(INPATH, 'data', options.metafile) WTSFILES = os.path.join(INPATH, options.wtspath) WTSPATH = os.path.join(INPATH, options.wtspath) IMGDIR = os.path.join(INPATH, options.imgpath) EPOCHS = int(options.epochs) START = int(options.start) LR=float(options.lr) LRGAMMA=float(options.lrgamma) DECAY=float(options.decay) INFER=options.infer ACCUM=int(options.accum) # METAFILE='/Users/dhanley2/Documents/Personal/dfake/data/trainmeta.csv.gz' metadf = pd.read_csv(METAFILE) logger.info('Full video file shape {} {}'.format(*metadf.shape)) # https://www.kaggle.com/bminixhofer/speed-up-your-rnn-with-sequence-bucketing class SPPSeqNet(nn.Module): def __init__(self, backbone, embed_size, pool_size=(1, 2, 6), pretrained=True, \ dense_units = 256, dropout = 0.2): # Only resnet is supported in this version super(SPPSeqNet, self).__init__() self.sppnet = SPPNet(backbone=34, pool_size=pool_size, folder=WTSPATH) self.dense_units = dense_units self.lstm1 = nn.LSTM(embed_size, self.dense_units, bidirectional=True, batch_first=True) self.linear1 = nn.Linear(self.dense_units*2, self.dense_units*2) self.linear_out = nn.Linear(self.dense_units*2, 1) self.embedding_dropout = SpatialDropout(dropout) def forward(self, x): # Input is batch of image sequences batch_size, seqlen = x.size()[:2] # Flatten to make a single long list of frames x = x.view(batch_size * seqlen, *x.size()[2:]) # Pass each frame thru SPPNet emb = self.sppnet(x.permute(0,3,1,2)) # Split back out to batch emb = emb.view(batch_size, seqlen, emb.size()[1]) emb = self.embedding_dropout(emb) # Pass batch thru sequential model(s) h_lstm1, _ = self.lstm1(emb) max_pool, _ = torch.max(h_lstm1, 1) h_pool_linear = F.relu(self.linear1(max_pool)) # Max pool and linear layer hidden = max_pool + h_pool_linear # Classifier out = self.linear_out(hidden) return out # IMGDIR='/Users/dhanley2/Documents/Personal/dfake/data/npimg' # https://www.kaggle.com/alexanderliao/image-augmentation-demo-with-albumentation/notebook # https://albumentations.readthedocs.io/en/latest/augs_overview/image_only/image_only.html#blur ''' In this dataset, no video was subjected to more than one augmentation. - reduce the FPS of the video to 15 - reduce the resolution of the video to 1/4 of its original size - reduce the overall encoding quality. ''' def snglaugfn(): rot = random.randrange(-10, 10) dim1 = random.uniform(0.7, 1.0) dim2 = random.randrange(int(SIZE)*0.75, SIZE) return Compose([ ShiftScaleRotate(p=0.5, rotate_limit=(rot,rot)), CenterCrop(int(SIZE*dim1), int(SIZE*dim1), always_apply=False, p=0.5), Resize(dim2, dim2, interpolation=1, p=0.5), Resize(SIZE, SIZE, interpolation=1, p=1), ]) mean_img = [0.4258249 , 0.31385377, 0.29170314] std_img = [0.22613944, 0.1965406 , 0.18660679] p1 = 0.1 trn_transforms = A.Compose([ A.HorizontalFlip(p=0.5), A.OneOf([ A.Downscale(scale_min=0.5, scale_max=0.9, interpolation=0, always_apply=False, p=0.5), ]), A.OneOf([ A.GaussNoise(var_limit=(100.0, 600.0), p=p1), A.ISONoise(color_shift=(0.2, 0.25), intensity=(0.2, 0.25), p=p1), A.MultiplicativeNoise(multiplier=[0.7, 1.6], elementwise=False, per_channel=False, p=p1), A.NoOp(p=p1*3), ]), A.OneOf([ A.Blur(blur_limit=15, p=p1), A.GaussianBlur(blur_limit=15, p=p1), A.MotionBlur(blur_limit=(15), p=p1), A.MedianBlur(blur_limit=10, p=p1), A.NoOp(p=p1*3), ]), A.OneOf([ A.RandomGamma(gamma_limit=(50, 150), p=p1), A.RandomBrightness(limit=0.4, p=p1), A.RandomContrast(limit=0.4, p=p1), A.NoOp(p=p1*3), ]), A.OneOf([ A.JpegCompression(quality_lower=30, quality_upper=100, always_apply=False, p=p1), A.ImageCompression(quality_lower=30, quality_upper=100, always_apply=False, p=p1), A.NoOp(p=p1*2), ]), A.OneOf([ A.RandomRain(slant_lower=-10, slant_upper=10, drop_length=20, drop_width=1, drop_color=(200, 200, 200), p=p1), A.RandomShadow( p=p1), A.NoOp(p=p1*12), ]), A.OneOf([ A.CoarseDropout(max_holes=50, max_height=20, max_width=20, min_height=6, min_width=6, p=p1), A.Cutout(num_holes=12, max_h_size=24, max_w_size=24, fill_value=255, p=p1), A.CLAHE(clip_limit=2.0, p=p1), A.NoOp(p=p1*12), ]), ]) val_transforms = Compose([ NoOp(), #JpegCompression(quality_lower=50, quality_upper=50, p=1.0), ]) transform_norm = Compose([ #JpegCompression(quality_lower=75, quality_upper=75, p=1.0), Normalize(mean=mean_img, std=std_img, max_pixel_value=255.0, p=1.0), ToTensor() ]) class DFakeDataset(Dataset): def __init__(self, df, imgdir, aug_ratio = 5, train = False, val = False, labels = False, maxlen = 32): self.data = df.copy() self.data.label = (self.data.label == 'FAKE').astype(np.int8) self.imgdir = imgdir self.framels = os.listdir(imgdir) self.labels = labels self.data = self.data[self.data.video.str.replace('.mp4', '.npz').isin(self.framels)] self.data = pd.concat([self.data.query('label == 0')]*5+\ [self.data.query('label == 1')]) self.data = self.data.sample(frac=1).reset_index(drop=True) # self.data = pd.concat([ self.data[self.data.video.str.contains('qirlrtrxba')], self.data[:500].copy() ]).reset_index(drop=True) self.maxlen = maxlen logger.info('Expand the REAL class {} {}'.format(*self.data.shape)) self.snglaug = snglaugfn self.train = train self.val = val self.norm = transform_norm self.transform = trn_transforms if not val else val_transforms def __len__(self): return len(self.data) def __getitem__(self, idx): vid = self.data.loc[idx] # Apply constant augmentation on combined frames fname = os.path.join(self.imgdir, vid.video.replace('mp4', 'npz')) try: frames = np.load(fname)['arr_0'] # Cut the frames to max 37 with a sliding window d0,d1,d2,d3 = frames.shape if self.train and (d0>self.maxlen): xtra = frames.shape[0]-self.maxlen shift = random.randint(0, xtra) frames = frames[xtra-shift:xtra-shift+self.maxlen] else: frames = frames[:self.maxlen] d0,d1,d2,d3 = frames.shape augsngl = self.snglaug # Standard augmentation on each image augfn = self.snglaug() if self.train : frames = np.stack([augfn(image=f)['image'] for f in frames]) frames = frames.reshape(d0*d1, d2, d3) if self.train or self.val: augmented = self.transform(image=frames) frames = augmented['image'] augmented = self.norm(image=frames) frames = augmented['image'] frames = frames.resize_(d0,d1,d2,d3) if self.train: labels = torch.tensor(vid.label) return {'frames': frames, 'idx': idx, 'labels': labels} else: return {'frames': frames, 'idx': idx} except Exception: logger.exception('Failed to load numpy array {}'.format(fname)) def collatefn(batch): # Remove error reads batch = [b for b in batch if b is not None] seqlen = torch.tensor([l['frames'].shape[0] for l in batch]) ids = torch.tensor([l['idx'] for l in batch]) maxlen = seqlen.max() # get shapes d0,d1,d2,d3 = batch[0]['frames'].shape # Pad with zero frames x_batch = [l['frames'] if l['frames'].shape[0] == maxlen else \ torch.cat((l['frames'], torch.zeros((maxlen-sl,d1,d2,d3))), 0) for l,sl in zip(batch, seqlen)] x_batch = torch.cat([x.unsqueeze(0) for x in x_batch]) if 'labels' in batch[0]: y_batch = torch.tensor([l['labels'] for l in batch]) return {'frames': x_batch, 'ids': ids, 'seqlen': seqlen, 'labels': y_batch} else: return {'frames': x_batch, 'ids': ids, 'seqlen': seqlen} logger.info('Create loaders...') # IMGDIR='/Users/dhanley2/Documents/Personal/dfake/data/npimg' # BATCHSIZE=2 trndf = metadf.query('fold != @FOLD').reset_index(drop=True) valdf = metadf.query('fold == @FOLD').reset_index(drop=True) trndataset = DFakeDataset(trndf, IMGDIR, train = True, val = False, labels = True, maxlen = 32) valdataset = DFakeDataset(valdf, IMGDIR, train = False, val = True, labels = False, maxlen = 32) trnloader = DataLoader(trndataset, batch_size=BATCHSIZE, shuffle=True, num_workers=8, collate_fn=collatefn) valloader = DataLoader(valdataset, batch_size=BATCHSIZE, shuffle=False, num_workers=8, collate_fn=collatefn) logger.info('Create model') poolsize=(1, 2, 6) embedsize = 512*sum(i**2 for i in poolsize) model = SPPSeqNet(backbone=50, pool_size=poolsize, dense_units = 256, \ dropout = 0.2, embed_size = embedsize) model = model.to(device) param_optimizer = list(model.named_parameters()) no_decay = ['bias', 'LayerNorm.bias', 'LayerNorm.weight'] plist = [ {'params': [p for n, p in param_optimizer if not any(nd in n for nd in no_decay)], 'weight_decay': DECAY}, {'params': [p for n, p in param_optimizer if any(nd in n for nd in no_decay)], 'weight_decay': 0.0} ] optimizer = optim.Adam(plist, lr=LR) # scheduler = StepLR(optimizer, 1, gamma=LRGAMMA, last_epoch=-1) scheduler = torch.optim.lr_scheduler.CosineAnnealingLR(optimizer, EPOCHS) model, optimizer = amp.initialize(model, optimizer, opt_level="O1") criterion = torch.nn.BCEWithLogitsLoss() ypredvalls = [] for epoch in range(EPOCHS): LRate = scheduler.get_lr() logger.info('Epoch {}/{}'.format(epoch, EPOCHS - 1)) logger.info('-' * 10) model_file_name = 'weights/sppnet_epoch{}_lr{}_accum{}_fold{}.bin'.format(epoch, LR, ACCUM, FOLD) if epoch<START: model.load_state_dict(torch.load(model_file_name)) model.to(device) scheduler.step() continue if INFER not in ['TST', 'EMB', 'VAL']: tr_loss = 0. for param in model.parameters(): param.requires_grad = True model.train() for step, batch in enumerate(trnloader): x = batch['frames'].to(device, dtype=torch.float) y = batch['labels'].to(device, dtype=torch.float) x = torch.autograd.Variable(x, requires_grad=True) y = torch.autograd.Variable(y) y = y.unsqueeze(1) out = model(x) # Get loss loss = criterion(out, y) tr_loss += loss.item() with amp.scale_loss(loss, optimizer) as scaled_loss: scaled_loss.backward() if step % ACCUM == 0: optimizer.step() optimizer.zero_grad() if step%100==0: logger.info('Trn step {} of {} trn lossavg {:.5f}'. \ format(step, len(trnloader), (tr_loss/(1+step)))) del x, y, out, batch torch.save(model.state_dict(), model_file_name) scheduler.step() else: model.load_state_dict(torch.load(model_file_name)) model.to(device) if INFER in ['VAL', 'TRN']: model.eval() ypredval = [] valids = [] with torch.no_grad(): for step, batch in enumerate(valloader): x = batch['frames'].to(device, dtype=torch.float) out = model(x) out = torch.sigmoid(out) ypredval.append(out.cpu().detach().numpy()) valids.append(batch['ids'].cpu().detach().numpy()) if step%200==0: logger.info('Val step {} of {}'.format(step, len(valloader))) ypredval = np.concatenate(ypredval).flatten() valids = np.concatenate(valids).flatten() ypredvalls.append(ypredval) yactval = valdataset.data.iloc[valids].label.values logger.info('Actuals {}'.format(yactval[:8])) logger.info('Preds {}'.format(ypredval[:8])) logger.info('Ids {}'.format(valids[:8])) for c in [.1, .01, .001] : valloss = log_loss(yactval, ypredval.clip(c,1-c)) logger.info('Epoch {} val single; clip {:.3f} logloss {:.5f}'.format(epoch,c, valloss)) for c in [.1, .01, .001] : BAGS=3 ypredvalbag = sum(ypredvalls[-BAGS:])/len(ypredvalls[-BAGS:]) valloss = log_loss(yactval, ypredvalbag.clip(c,1-c)) logger.info('Epoch {} val bags {}; clip {:.3f} logloss {:.5f}'.format(epoch, len(ypredvalls[:BAGS]), c, valloss)) del yactval, ypredval, valids
2aca437b37742fa916d9eb0f1fd52264d265fc4a
07aa9b5a07df2a80b7d899da1da63c84b1060fec
/src/iegen/ast/visitor/_collect_symbolics_visitor.py
88c6cd9d5322f63bf3ec2910d6d0d9b99e1c6427
[]
no_license
lamielle/iegen
f26da812a01557daca086e0a1c76a62af8fe7cd4
0f48edad8d14ae18c907d705751552cf6eb53c8e
refs/heads/master
2016-09-05T12:48:23.698779
2010-12-14T19:17:13
2010-12-14T19:17:13
null
0
0
null
null
null
null
UTF-8
Python
false
false
542
py
from iegen.ast.visitor import DFVisitor class CollectSymbolicsVisitor(DFVisitor): def __init__(self): self.symbolics=set() def _outFormula(self,node): self.symbolics=sorted(list(self.symbolics)) def outSet(self,node): self._outFormula(node) def outRelation(self,node): self._outFormula(node) def _outPresFormula(self,node): self.symbolics=self.symbolics.union(set([sym.name for sym in node.symbolics])) def outPresSet(self,node): self._outPresFormula(node) def outPresRelation(self,node): self._outPresFormula(node)
501a59bf5034f2971f72a93692f2a6b9fa4bd318
2b42b40ae2e84b438146003bf231532973f1081d
/spec/mgm4457998.3.spec
20d3afe3e339b6101508a887d783eccb40b43034
[]
no_license
MG-RAST/mtf
0ea0ebd0c0eb18ec6711e30de7cc336bdae7215a
e2ddb3b145068f22808ef43e2bbbbaeec7abccff
refs/heads/master
2020-05-20T15:32:04.334532
2012-03-05T09:51:49
2012-03-05T09:51:49
3,625,755
0
1
null
null
null
null
UTF-8
Python
false
false
14,312
spec
{ "id": "mgm4457998.3", "metadata": { "mgm4457998.3.metadata.json": { "format": "json", "provider": "metagenomics.anl.gov" } }, "providers": { "metagenomics.anl.gov": { "files": { "100.preprocess.info": { "compression": null, "description": null, "size": 736, "type": "txt", "url": "http://api.metagenomics.anl.gov/analysis/data/id/mgm4457998.3/file/100.preprocess.info" }, "100.preprocess.passed.fna.gz": { "compression": "gzip", "description": null, "size": 960199, "type": "fasta", "url": "http://api.metagenomics.anl.gov/analysis/data/id/mgm4457998.3/file/100.preprocess.passed.fna.gz" }, "100.preprocess.passed.fna.stats": { "compression": null, "description": null, "size": 311, "type": "fasta", "url": "http://api.metagenomics.anl.gov/analysis/data/id/mgm4457998.3/file/100.preprocess.passed.fna.stats" }, "100.preprocess.removed.fna.gz": { "compression": "gzip", "description": null, "size": 40298, "type": "fasta", "url": "http://api.metagenomics.anl.gov/analysis/data/id/mgm4457998.3/file/100.preprocess.removed.fna.gz" }, "100.preprocess.removed.fna.stats": { "compression": null, "description": null, "size": 306, "type": "fasta", "url": "http://api.metagenomics.anl.gov/analysis/data/id/mgm4457998.3/file/100.preprocess.removed.fna.stats" }, "205.screen.h_sapiens_asm.info": { "compression": null, "description": null, "size": 450, "type": "txt", "url": "http://api.metagenomics.anl.gov/analysis/data/id/mgm4457998.3/file/205.screen.h_sapiens_asm.info" }, "299.screen.info": { "compression": null, "description": null, "size": 410, "type": "txt", "url": "http://api.metagenomics.anl.gov/analysis/data/id/mgm4457998.3/file/299.screen.info" }, "299.screen.passed.fna.gcs": { "compression": null, "description": null, "size": 1677, "type": "fasta", "url": "http://api.metagenomics.anl.gov/analysis/data/id/mgm4457998.3/file/299.screen.passed.fna.gcs" }, "299.screen.passed.fna.gz": { "compression": "gzip", "description": null, "size": 594282, "type": "fasta", "url": "http://api.metagenomics.anl.gov/analysis/data/id/mgm4457998.3/file/299.screen.passed.fna.gz" }, "299.screen.passed.fna.lens": { "compression": null, "description": null, "size": 407, "type": "fasta", "url": "http://api.metagenomics.anl.gov/analysis/data/id/mgm4457998.3/file/299.screen.passed.fna.lens" }, "299.screen.passed.fna.stats": { "compression": null, "description": null, "size": 311, "type": "fasta", "url": "http://api.metagenomics.anl.gov/analysis/data/id/mgm4457998.3/file/299.screen.passed.fna.stats" }, "440.cluster.rna97.fna.gz": { "compression": "gzip", "description": null, "size": 26739, "type": "fasta", "url": "http://api.metagenomics.anl.gov/analysis/data/id/mgm4457998.3/file/440.cluster.rna97.fna.gz" }, "440.cluster.rna97.fna.stats": { "compression": null, "description": null, "size": 309, "type": "fasta", "url": "http://api.metagenomics.anl.gov/analysis/data/id/mgm4457998.3/file/440.cluster.rna97.fna.stats" }, "440.cluster.rna97.info": { "compression": null, "description": null, "size": 947, "type": "txt", "url": "http://api.metagenomics.anl.gov/analysis/data/id/mgm4457998.3/file/440.cluster.rna97.info" }, "440.cluster.rna97.mapping": { "compression": null, "description": null, "size": 1354988, "type": "txt", "url": "http://api.metagenomics.anl.gov/analysis/data/id/mgm4457998.3/file/440.cluster.rna97.mapping" }, "440.cluster.rna97.mapping.stats": { "compression": null, "description": null, "size": 49, "type": "txt", "url": "http://api.metagenomics.anl.gov/analysis/data/id/mgm4457998.3/file/440.cluster.rna97.mapping.stats" }, "450.rna.expand.lca.gz": { "compression": "gzip", "description": null, "size": 144117, "type": "txt", "url": "http://api.metagenomics.anl.gov/analysis/data/id/mgm4457998.3/file/450.rna.expand.lca.gz" }, "450.rna.expand.rna.gz": { "compression": "gzip", "description": null, "size": 50990, "type": "txt", "url": "http://api.metagenomics.anl.gov/analysis/data/id/mgm4457998.3/file/450.rna.expand.rna.gz" }, "450.rna.sims.filter.gz": { "compression": "gzip", "description": null, "size": 28661, "type": "txt", "url": "http://api.metagenomics.anl.gov/analysis/data/id/mgm4457998.3/file/450.rna.sims.filter.gz" }, "450.rna.sims.gz": { "compression": "gzip", "description": null, "size": 310205, "type": "txt", "url": "http://api.metagenomics.anl.gov/analysis/data/id/mgm4457998.3/file/450.rna.sims.gz" }, "900.abundance.function.gz": { "compression": "gzip", "description": null, "size": 7183, "type": "txt", "url": "http://api.metagenomics.anl.gov/analysis/data/id/mgm4457998.3/file/900.abundance.function.gz" }, "900.abundance.lca.gz": { "compression": "gzip", "description": null, "size": 5269, "type": "txt", "url": "http://api.metagenomics.anl.gov/analysis/data/id/mgm4457998.3/file/900.abundance.lca.gz" }, "900.abundance.md5.gz": { "compression": "gzip", "description": null, "size": 12136, "type": "txt", "url": "http://api.metagenomics.anl.gov/analysis/data/id/mgm4457998.3/file/900.abundance.md5.gz" }, "900.abundance.ontology.gz": { "compression": "gzip", "description": null, "size": 43, "type": "txt", "url": "http://api.metagenomics.anl.gov/analysis/data/id/mgm4457998.3/file/900.abundance.ontology.gz" }, "900.abundance.organism.gz": { "compression": "gzip", "description": null, "size": 16714, "type": "txt", "url": "http://api.metagenomics.anl.gov/analysis/data/id/mgm4457998.3/file/900.abundance.organism.gz" }, "900.loadDB.sims.filter.seq": { "compression": null, "description": null, "size": 13183546, "type": "txt", "url": "http://api.metagenomics.anl.gov/analysis/data/id/mgm4457998.3/file/900.loadDB.sims.filter.seq" }, "900.loadDB.source.stats": { "compression": null, "description": null, "size": 103, "type": "txt", "url": "http://api.metagenomics.anl.gov/analysis/data/id/mgm4457998.3/file/900.loadDB.source.stats" }, "999.done.COG.stats": { "compression": null, "description": null, "size": 1, "type": "txt", "url": "http://api.metagenomics.anl.gov/analysis/data/id/mgm4457998.3/file/999.done.COG.stats" }, "999.done.KO.stats": { "compression": null, "description": null, "size": 1, "type": "txt", "url": "http://api.metagenomics.anl.gov/analysis/data/id/mgm4457998.3/file/999.done.KO.stats" }, "999.done.NOG.stats": { "compression": null, "description": null, "size": 1, "type": "txt", "url": "http://api.metagenomics.anl.gov/analysis/data/id/mgm4457998.3/file/999.done.NOG.stats" }, "999.done.Subsystems.stats": { "compression": null, "description": null, "size": 1, "type": "txt", "url": "http://api.metagenomics.anl.gov/analysis/data/id/mgm4457998.3/file/999.done.Subsystems.stats" }, "999.done.class.stats": { "compression": null, "description": null, "size": 286, "type": "txt", "url": "http://api.metagenomics.anl.gov/analysis/data/id/mgm4457998.3/file/999.done.class.stats" }, "999.done.domain.stats": { "compression": null, "description": null, "size": 29, "type": "txt", "url": "http://api.metagenomics.anl.gov/analysis/data/id/mgm4457998.3/file/999.done.domain.stats" }, "999.done.family.stats": { "compression": null, "description": null, "size": 802, "type": "txt", "url": "http://api.metagenomics.anl.gov/analysis/data/id/mgm4457998.3/file/999.done.family.stats" }, "999.done.genus.stats": { "compression": null, "description": null, "size": 1226, "type": "txt", "url": "http://api.metagenomics.anl.gov/analysis/data/id/mgm4457998.3/file/999.done.genus.stats" }, "999.done.order.stats": { "compression": null, "description": null, "size": 415, "type": "txt", "url": "http://api.metagenomics.anl.gov/analysis/data/id/mgm4457998.3/file/999.done.order.stats" }, "999.done.phylum.stats": { "compression": null, "description": null, "size": 122, "type": "txt", "url": "http://api.metagenomics.anl.gov/analysis/data/id/mgm4457998.3/file/999.done.phylum.stats" }, "999.done.rarefaction.stats": { "compression": null, "description": null, "size": 22966, "type": "txt", "url": "http://api.metagenomics.anl.gov/analysis/data/id/mgm4457998.3/file/999.done.rarefaction.stats" }, "999.done.sims.stats": { "compression": null, "description": null, "size": 80, "type": "txt", "url": "http://api.metagenomics.anl.gov/analysis/data/id/mgm4457998.3/file/999.done.sims.stats" }, "999.done.species.stats": { "compression": null, "description": null, "size": 4828, "type": "txt", "url": "http://api.metagenomics.anl.gov/analysis/data/id/mgm4457998.3/file/999.done.species.stats" } }, "id": "mgm4457998.3", "provider": "metagenomics.anl.gov", "providerId": "mgm4457998.3" } }, "raw": { "mgm4457998.3.fna.gz": { "compression": "gzip", "format": "fasta", "provider": "metagenomics.anl.gov", "url": "http://api.metagenomics.anl.gov/reads/mgm4457998.3" } } }
802dfc0eca0af2e3ccdd4f960b723021a6c51317
6df0d7a677129e9b325d4fdb4bbf72d512dd08b2
/frame/djenv/lib/python3.6/site-packages/ansible/modules/cloud/azure/azure_rm_virtualmachine_facts.py
85695cd79c4517fb7a24cea8700d7eddf5498739
[]
no_license
yingxingtianxia/python
01265a37136f2ad73fdd142f72d70f7c962e0241
3e1a7617a4b6552bce4a7e15a182f30e1bae221e
refs/heads/master
2021-06-14T15:48:00.939472
2019-12-13T05:57:36
2019-12-13T05:57:36
152,200,507
0
0
null
2021-06-10T20:54:26
2018-10-09T06:40:10
Python
UTF-8
Python
false
false
10,772
py
#!/usr/bin/python # # Copyright (c) 2018 # Gustavo Muniz do Carmo <[email protected]> # Zim Kalinowski <[email protected]> # # GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) from __future__ import absolute_import, division, print_function __metaclass__ = type ANSIBLE_METADATA = {'metadata_version': '1.1', 'status': ['preview'], 'supported_by': 'community'} DOCUMENTATION = ''' --- module: azure_rm_virtualmachine_facts version_added: "2.7" short_description: Get virtual machine facts. description: - Get facts for all virtual machines of a resource group. options: resource_group: description: - Name of the resource group containing the virtual machines (required when filtering by vm name). name: description: - Name of the virtual machine. tags: description: - Limit results by providing a list of tags. Format tags as 'key' or 'key:value'. extends_documentation_fragment: - azure author: - "Gustavo Muniz do Carmo (@gustavomcarmo)" - "Zim Kalinowski (@zikalino)" ''' EXAMPLES = ''' - name: Get facts for all virtual machines of a resource group azure_rm_virtualmachine_facts: resource_group: Testing - name: Get facts by name azure_rm_virtualmachine_facts: resource_group: Testing name: vm - name: Get facts by tags azure_rm_virtualmachine_facts: resource_group: Testing tags: - testing - foo:bar ''' RETURN = ''' vms: description: List of virtual machines. returned: always type: complex contains: admin_username: description: - Administrator user name. returned: always type: str sample: admin data_disks: description: - List of attached data disks. returned: always type: complex contains: caching: description: - Type of data disk caching. type: str sample: ReadOnly disk_size_gb: description: - The initial disk size in GB for blank data disks type: int sample: 64 lun: description: - The logical unit number for data disk type: int sample: 0 managed_disk_type: description: - Managed data disk type type: str sample: Standard_LRS id: description: - Resource ID. returned: always type: str sample: /subscriptions/xxxx/resourceGroups/myclusterrg/providers/Microsoft.Compute/virtualMachines/mycluster-node-2 image: description: - Image specification returned: always type: complex contains: offer: description: - Offer. type: str sample: RHEL publisher: description: - Publisher name. type: str sample: RedHat sku: description: - SKU name. type: str sample: 7-RAW version: description: - Image version. type: str sample: 7.5.2018050901 location: description: - Resource location. returned: always type: str sample: japaneast name: description: - Resource name. returned: always type: str sample: mycluster-node-2 network_interface_names: description: - List of attached network interfaces. type: list sample: [ "mycluster-node-2-nic" ] os_disk_caching: description: - Type of OS disk caching. type: str sample: ReadOnly os_type: description: - Base type of operating system. type: str sample: Linux resource_group: description: - Resource group. type: str state: description: - State of the resource. type: str sample: present tags: description: - Tags. type: dict vm_size: description: - Virtual machine size. type: str sample: Standard_D4 ''' try: from msrestazure.azure_exceptions import CloudError except: # This is handled in azure_rm_common pass from ansible.module_utils.azure_rm_common import AzureRMModuleBase, azure_id_to_dict from ansible.module_utils.common.dict_transformations import camel_dict_to_snake_dict from ansible.module_utils.six.moves.urllib.parse import urlparse import re AZURE_OBJECT_CLASS = 'VirtualMachine' AZURE_ENUM_MODULES = ['azure.mgmt.compute.models'] class AzureRMVirtualMachineFacts(AzureRMModuleBase): def __init__(self): self.module_arg_spec = dict( resource_group=dict(type='str'), name=dict(type='str'), tags=dict(type='list') ) self.results = dict( changed=False, vms=[] ) self.resource_group = None self.name = None self.tags = None super(AzureRMVirtualMachineFacts, self).__init__(self.module_arg_spec, supports_tags=False, facts_module=True) def exec_module(self, **kwargs): for key in self.module_arg_spec: setattr(self, key, kwargs[key]) if self.name and not self.resource_group: self.fail("Parameter error: resource group required when filtering by name.") if self.name: self.results['vms'] = self.get_item() else: self.results['vms'] = self.list_items() return self.results def get_item(self): self.log('Get properties for {0}'.format(self.name)) item = None result = [] try: item = self.compute_client.virtual_machines.get(self.resource_group, self.name) except CloudError as err: self.module.warn("Error getting virtual machine {0} - {1}".format(self.name, str(err))) if item and self.has_tags(item.tags, self.tags): result = [self.serialize_vm(item)] return result def list_items(self): self.log('List all items') try: items = self.compute_client.virtual_machines.list(self.resource_group) except CloudError as exc: self.fail("Failed to list all items - {0}".format(str(exc))) results = [] for item in items: if self.has_tags(item.tags, self.tags): results.append(self.serialize_vm(self.get_vm(item.name))) return results def get_vm(self, name): ''' Get the VM with expanded instanceView :return: VirtualMachine object ''' try: vm = self.compute_client.virtual_machines.get(self.resource_group, name, expand='instanceview') return vm except Exception as exc: self.fail("Error getting virtual machine {0} - {1}".format(self.name, str(exc))) def serialize_vm(self, vm): ''' Convert a VirtualMachine object to dict. :param vm: VirtualMachine object :return: dict ''' result = self.serialize_obj(vm, AZURE_OBJECT_CLASS, enum_modules=AZURE_ENUM_MODULES) new_result = {} new_result['id'] = vm.id new_result['resource_group'] = re.sub('\\/.*', '', re.sub('.*resourceGroups\\/', '', result['id'])) new_result['name'] = vm.name new_result['state'] = 'present' new_result['location'] = vm.location new_result['vm_size'] = result['properties']['hardwareProfile']['vmSize'] os_profile = result['properties'].get('osProfile') if os_profile is not None: new_result['admin_username'] = os_profile.get('adminUsername') image = result['properties']['storageProfile'].get('imageReference') if image is not None: if image.get('publisher', None) is not None: new_result['image'] = { 'publisher': image['publisher'], 'sku': image['sku'], 'offer': image['offer'], 'version': image['version'] } else: new_result['image'] = { 'id': image.get('id', None) } vhd = result['properties']['storageProfile']['osDisk'].get('vhd') if vhd is not None: url = urlparse(vhd['uri']) new_result['storage_account_name'] = url.netloc.split('.')[0] new_result['storage_container_name'] = url.path.split('/')[1] new_result['storage_blob_name'] = url.path.split('/')[-1] new_result['os_disk_caching'] = result['properties']['storageProfile']['osDisk']['caching'] new_result['os_type'] = result['properties']['storageProfile']['osDisk']['osType'] new_result['data_disks'] = [] disks = result['properties']['storageProfile']['dataDisks'] for disk_index in range(len(disks)): new_result['data_disks'].append({ 'lun': disks[disk_index]['lun'], 'disk_size_gb': disks[disk_index]['diskSizeGB'], 'managed_disk_type': disks[disk_index]['managedDisk']['storageAccountType'], 'caching': disks[disk_index]['caching'] }) new_result['network_interface_names'] = [] nics = result['properties']['networkProfile']['networkInterfaces'] for nic_index in range(len(nics)): new_result['network_interface_names'].append(re.sub('.*networkInterfaces/', '', nics[nic_index]['id'])) new_result['tags'] = vm.tags return new_result def main(): AzureRMVirtualMachineFacts() if __name__ == '__main__': main()