content stringlengths 7 1.05M | fixed_cases stringlengths 1 1.28M |
|---|---|
load(
"//ruby/private/tools:deps.bzl",
_transitive_deps = "transitive_deps",
)
load(
"//ruby/private:providers.bzl",
"RubyGem",
"RubyLibrary",
)
def _get_transitive_srcs(srcs, deps):
return depset(
srcs,
transitive = [dep[RubyLibrary].transitive_ruby_srcs for dep in deps],
)
def _rb_gem_impl(ctx):
gemspec = ctx.actions.declare_file("{}.gemspec".format(ctx.attr.gem_name))
metadata_file = ctx.actions.declare_file("{}_metadata".format(ctx.attr.gem_name))
_ruby_files = []
file_deps = _get_transitive_srcs([], ctx.attr.deps).to_list()
for f in file_deps:
# For some files the src_path and dest_path will be the same, but
# for othrs the src_path will be in bazel)out while the dest_path
# will be from the workspace root.
_ruby_files.append({
"src_path": f.path,
"dest_path": f.short_path,
})
ctx.actions.write(
output = metadata_file,
content = struct(
name = ctx.attr.gem_name,
raw_srcs = _ruby_files,
authors = ctx.attr.authors,
version = ctx.attr.version,
licenses = ctx.attr.licenses,
require_paths = ctx.attr.require_paths,
).to_json(),
)
ctx.actions.run(
inputs = [
ctx.file._gemspec_template,
ctx.file._gemspec_builder,
metadata_file,
] + file_deps,
executable = ctx.attr.ruby_interpreter.files_to_run.executable,
arguments = [
ctx.file._gemspec_builder.path,
"--output",
gemspec.path,
"--metadata",
metadata_file.path,
"--template",
ctx.file._gemspec_template.path,
],
outputs = [gemspec],
execution_requirements = {
"no-sandbox": "1",
},
)
return [
DefaultInfo(files = _get_transitive_srcs([gemspec], ctx.attr.deps)),
RubyGem(
ctx = ctx,
version = ctx.attr.version,
gemspec = gemspec,
),
]
_ATTRS = {
"version": attr.string(
default = "0.0.1",
),
"authors": attr.string_list(),
"licenses": attr.string_list(),
"deps": attr.label_list(
allow_files = True,
),
"data": attr.label_list(
allow_files = True,
),
"gem_name": attr.string(),
"srcs": attr.label_list(
allow_files = True,
default = [],
),
"gem_deps": attr.label_list(
allow_files = True,
),
"require_paths": attr.string_list(),
"_gemspec_template": attr.label(
allow_single_file = True,
default = "gemspec_template.tpl",
),
"ruby_sdk": attr.string(
default = "@org_ruby_lang_ruby_toolchain",
),
"ruby_interpreter": attr.label(
default = "@org_ruby_lang_ruby_toolchain//:ruby_bin",
allow_files = True,
executable = True,
cfg = "host",
),
"_gemspec_builder": attr.label(
default = Label("@coinbase_rules_ruby//ruby/private/gem:gemspec_builder.rb"),
allow_single_file = True,
),
}
rb_gemspec = rule(
implementation = _rb_gem_impl,
attrs = _ATTRS,
provides = [DefaultInfo, RubyGem],
)
| load('//ruby/private/tools:deps.bzl', _transitive_deps='transitive_deps')
load('//ruby/private:providers.bzl', 'RubyGem', 'RubyLibrary')
def _get_transitive_srcs(srcs, deps):
return depset(srcs, transitive=[dep[RubyLibrary].transitive_ruby_srcs for dep in deps])
def _rb_gem_impl(ctx):
gemspec = ctx.actions.declare_file('{}.gemspec'.format(ctx.attr.gem_name))
metadata_file = ctx.actions.declare_file('{}_metadata'.format(ctx.attr.gem_name))
_ruby_files = []
file_deps = _get_transitive_srcs([], ctx.attr.deps).to_list()
for f in file_deps:
_ruby_files.append({'src_path': f.path, 'dest_path': f.short_path})
ctx.actions.write(output=metadata_file, content=struct(name=ctx.attr.gem_name, raw_srcs=_ruby_files, authors=ctx.attr.authors, version=ctx.attr.version, licenses=ctx.attr.licenses, require_paths=ctx.attr.require_paths).to_json())
ctx.actions.run(inputs=[ctx.file._gemspec_template, ctx.file._gemspec_builder, metadata_file] + file_deps, executable=ctx.attr.ruby_interpreter.files_to_run.executable, arguments=[ctx.file._gemspec_builder.path, '--output', gemspec.path, '--metadata', metadata_file.path, '--template', ctx.file._gemspec_template.path], outputs=[gemspec], execution_requirements={'no-sandbox': '1'})
return [default_info(files=_get_transitive_srcs([gemspec], ctx.attr.deps)), ruby_gem(ctx=ctx, version=ctx.attr.version, gemspec=gemspec)]
_attrs = {'version': attr.string(default='0.0.1'), 'authors': attr.string_list(), 'licenses': attr.string_list(), 'deps': attr.label_list(allow_files=True), 'data': attr.label_list(allow_files=True), 'gem_name': attr.string(), 'srcs': attr.label_list(allow_files=True, default=[]), 'gem_deps': attr.label_list(allow_files=True), 'require_paths': attr.string_list(), '_gemspec_template': attr.label(allow_single_file=True, default='gemspec_template.tpl'), 'ruby_sdk': attr.string(default='@org_ruby_lang_ruby_toolchain'), 'ruby_interpreter': attr.label(default='@org_ruby_lang_ruby_toolchain//:ruby_bin', allow_files=True, executable=True, cfg='host'), '_gemspec_builder': attr.label(default=label('@coinbase_rules_ruby//ruby/private/gem:gemspec_builder.rb'), allow_single_file=True)}
rb_gemspec = rule(implementation=_rb_gem_impl, attrs=_ATTRS, provides=[DefaultInfo, RubyGem]) |
def average_price_per_year(dates,prices):
year = ''
counter = 0
accumulator = 0
average_year_years = []
average_year_prices = []
# for every date in the date list
# do the following
for index in range(len(dates)):
# Set the first year.
if year == '':
year = dates[index][6:10]
accumulator += float(prices[index])
counter += 1
# Continue with the rest dates.
# if we are still in the same year then
elif dates[index][6:10] == year:
# add the price to the accumulator
accumulator += float(prices[index])
counter += 1
# if the year changed, caclculate the average for the year
# and continue with the next year.
else:
average = accumulator / counter
average_year_years.append(year)
average_year_prices.append(average)
year = dates[index][6:10]
counter = 1
accumulator = float(prices[index])
print('Average Price Per Year')
print('----------------------')
print()
print('Year\t\tPrice')
print('----\t\t-----')
for index in range(len(average_year_years)):
print(average_year_years[index],'\t--->\t',format(average_year_prices[index],',.3f'))
def average_price_per_month(dates,prices):
month = ''
year = ''
counter = 0
accumulator = 0
average_price_months = []
average_price_prices = []
for index in range(len(dates)):
if year == '':
year = dates[index][6:10]
elif month == '':
month = dates[index][0:2]
elif dates[index][0:2] == month and dates[index][6:10] == year:
accumulator += float(prices[index])
counter += 1
else:
average = accumulator / counter
average_price_months.append(year + '-' + month)
average_price_prices.append(average)
counter = 1
accumulator = float(prices[index])
year = dates[index][6:10]
month = dates[index][0:2]
print('Average Price Per Month')
print('-----------------------')
print()
print('Month\t\tPrice')
print('-----\t\t-----')
for index in range(len(average_price_months)):
print(average_price_months[index],'----->\t',format(average_price_prices[index],',.3f'))
def highest_lowest_price_per_year(dates,prices):
year = ''
year_list = []
highest_per_year = []
lowest_per_year = []
find_max_min_price = []
for index in range(len(prices)):
prices[index] = float(prices[index])
for index in range(len(dates)):
if year == '':
year = dates[index][6:10]
find_max_min_price.append(prices[index])
elif dates[index][6:10] == year:
find_max_min_price.append(prices[index])
else:
year_list.append(year)
highest_per_year.append(max(find_max_min_price))
lowest_per_year.append(min(find_max_min_price))
year = dates[index][6:10]
find_max_min_price = [prices[index]]
print('Highest and Lowest Prices Per Year')
print('----------------------------------')
print()
print('Year\tHigh\tLow')
print('----\t----\t---')
for index in range(len(year_list)):
print(year_list[index],'\t',format(highest_per_year[index],',.3f'),'\t',format(lowest_per_year[index],',.3f'))
def list_of_prices_lowest_to_highest(dates,prices):
min_to_max_prices = []
min_to_max_dates = []
price_list_ = []
date_list = dates[:]
outfile = open('LowToHigh.txt','w')
for index in range(len(prices)):
price_list_.append(float(prices[index]))
for count in range(len(price_list_)):
min_to_max_prices.append(min(price_list_))
min_to_max_dates.append(dates[price_list_.index(min(price_list_))])
del date_list[price_list_.index(min(price_list_))]
del price_list_[price_list_.index(min(price_list_))]
print('List of Prices, Lowest to Highest')
print('---------------------------------')
print()
print('Date\t\tPrice')
print('----\t-----')
for index in range(len(min_to_max_prices)):
print(min_to_max_dates[index],'\t',min_to_max_prices[index])
outfile.write(str(min_to_max_dates[index]) + ':' + str(min_to_max_prices[index]) + '\n')
outfile.close()
def list_of_prices_highest_to_lowest(dates,prices):
max_to_min_prices = []
max_to_min_dates = []
price_list_ = []
date_list = dates[:]
outfile = open('HighToLow.txt', 'w')
for index in range(len(prices)):
price_list_.append(float(prices[index]))
for count in range(len(price_list_)):
max_to_min_prices.append(max(price_list_))
max_to_min_dates.append(date_list[price_list_.index(max(price_list_))])
del date_list[price_list_.index(max(price_list_))]
del price_list_[price_list_.index(max(price_list_))]
print('List of Prices, Highest to Lowest')
print('---------------------------------')
print()
print('Date\t\tPrice')
print('----\t\t-----')
for index in range(len(max_to_min_prices)):
print(max_to_min_dates[index],'\t',max_to_min_prices[index])
outfile.write(str(max_to_min_dates[index]) + ':' + str(max_to_min_prices[index]) + '\n')
def main():
infile = open('GasPrices.txt', 'r')
infile_list = infile.readlines()
date_list = []
price_lists = []
for line in infile_list:
date_list.append(line[0:10])
price_lists.append(line[11:].rstrip('\n'))
infile.close()
average_price_per_year(date_list,price_lists)
average_price_per_month(date_list,price_lists)
highest_lowest_price_per_year(date_list,price_lists)
list_of_prices_lowest_to_highest(date_list,price_lists)
list_of_prices_highest_to_lowest(date_list,price_lists)
main()
| def average_price_per_year(dates, prices):
year = ''
counter = 0
accumulator = 0
average_year_years = []
average_year_prices = []
for index in range(len(dates)):
if year == '':
year = dates[index][6:10]
accumulator += float(prices[index])
counter += 1
elif dates[index][6:10] == year:
accumulator += float(prices[index])
counter += 1
else:
average = accumulator / counter
average_year_years.append(year)
average_year_prices.append(average)
year = dates[index][6:10]
counter = 1
accumulator = float(prices[index])
print('Average Price Per Year')
print('----------------------')
print()
print('Year\t\tPrice')
print('----\t\t-----')
for index in range(len(average_year_years)):
print(average_year_years[index], '\t--->\t', format(average_year_prices[index], ',.3f'))
def average_price_per_month(dates, prices):
month = ''
year = ''
counter = 0
accumulator = 0
average_price_months = []
average_price_prices = []
for index in range(len(dates)):
if year == '':
year = dates[index][6:10]
elif month == '':
month = dates[index][0:2]
elif dates[index][0:2] == month and dates[index][6:10] == year:
accumulator += float(prices[index])
counter += 1
else:
average = accumulator / counter
average_price_months.append(year + '-' + month)
average_price_prices.append(average)
counter = 1
accumulator = float(prices[index])
year = dates[index][6:10]
month = dates[index][0:2]
print('Average Price Per Month')
print('-----------------------')
print()
print('Month\t\tPrice')
print('-----\t\t-----')
for index in range(len(average_price_months)):
print(average_price_months[index], '----->\t', format(average_price_prices[index], ',.3f'))
def highest_lowest_price_per_year(dates, prices):
year = ''
year_list = []
highest_per_year = []
lowest_per_year = []
find_max_min_price = []
for index in range(len(prices)):
prices[index] = float(prices[index])
for index in range(len(dates)):
if year == '':
year = dates[index][6:10]
find_max_min_price.append(prices[index])
elif dates[index][6:10] == year:
find_max_min_price.append(prices[index])
else:
year_list.append(year)
highest_per_year.append(max(find_max_min_price))
lowest_per_year.append(min(find_max_min_price))
year = dates[index][6:10]
find_max_min_price = [prices[index]]
print('Highest and Lowest Prices Per Year')
print('----------------------------------')
print()
print('Year\tHigh\tLow')
print('----\t----\t---')
for index in range(len(year_list)):
print(year_list[index], '\t', format(highest_per_year[index], ',.3f'), '\t', format(lowest_per_year[index], ',.3f'))
def list_of_prices_lowest_to_highest(dates, prices):
min_to_max_prices = []
min_to_max_dates = []
price_list_ = []
date_list = dates[:]
outfile = open('LowToHigh.txt', 'w')
for index in range(len(prices)):
price_list_.append(float(prices[index]))
for count in range(len(price_list_)):
min_to_max_prices.append(min(price_list_))
min_to_max_dates.append(dates[price_list_.index(min(price_list_))])
del date_list[price_list_.index(min(price_list_))]
del price_list_[price_list_.index(min(price_list_))]
print('List of Prices, Lowest to Highest')
print('---------------------------------')
print()
print('Date\t\tPrice')
print('----\t-----')
for index in range(len(min_to_max_prices)):
print(min_to_max_dates[index], '\t', min_to_max_prices[index])
outfile.write(str(min_to_max_dates[index]) + ':' + str(min_to_max_prices[index]) + '\n')
outfile.close()
def list_of_prices_highest_to_lowest(dates, prices):
max_to_min_prices = []
max_to_min_dates = []
price_list_ = []
date_list = dates[:]
outfile = open('HighToLow.txt', 'w')
for index in range(len(prices)):
price_list_.append(float(prices[index]))
for count in range(len(price_list_)):
max_to_min_prices.append(max(price_list_))
max_to_min_dates.append(date_list[price_list_.index(max(price_list_))])
del date_list[price_list_.index(max(price_list_))]
del price_list_[price_list_.index(max(price_list_))]
print('List of Prices, Highest to Lowest')
print('---------------------------------')
print()
print('Date\t\tPrice')
print('----\t\t-----')
for index in range(len(max_to_min_prices)):
print(max_to_min_dates[index], '\t', max_to_min_prices[index])
outfile.write(str(max_to_min_dates[index]) + ':' + str(max_to_min_prices[index]) + '\n')
def main():
infile = open('GasPrices.txt', 'r')
infile_list = infile.readlines()
date_list = []
price_lists = []
for line in infile_list:
date_list.append(line[0:10])
price_lists.append(line[11:].rstrip('\n'))
infile.close()
average_price_per_year(date_list, price_lists)
average_price_per_month(date_list, price_lists)
highest_lowest_price_per_year(date_list, price_lists)
list_of_prices_lowest_to_highest(date_list, price_lists)
list_of_prices_highest_to_lowest(date_list, price_lists)
main() |
# The maximum size of a WebSocket message that can be sent or received
# by the Determined agent and trial-runner. The master uses a different limit,
# because it uses the uwsgi WebSocket implementation; see
# `websocket-max-size` in `uwsgi.ini`.
MAX_WEBSOCKET_MSG_SIZE = 128 * 1024 * 1024
# The maximum HTTP request size that will be accepted by the master. This
# is intended as a safeguard to quickly drop overly large HTTP requests.
MAX_HTTP_REQUEST_SIZE = 128 * 1024 * 1024
# The maximum size of a model (the sum of the model definition plus any
# additional package dependencies). Models are created via HTTP and sent
# to agents via WebSockets; we also have to account for the overhead of
# base64 encoding. Models are also stored in Postgres but the max
# Postgres field size is 1GB, so we ignore that here.
MAX_ENCODED_SIZE = (min(MAX_WEBSOCKET_MSG_SIZE, MAX_HTTP_REQUEST_SIZE) // 8) * 6
# We subtract one megabyte to account for any message envelope size we may have.
MAX_CONTEXT_SIZE = MAX_ENCODED_SIZE - (1 * 1024 * 1024)
# The username and password for the default user.
DEFAULT_DETERMINED_USER = "determined"
DEFAULT_DETERMINED_PASSWORD = ""
DEFAULT_CHECKPOINT_PATH = "checkpoints"
ACTIVE = "ACTIVE"
CANCELED = "CANCELED"
COMPLETED = "COMPLETED"
DELETED = "DELETED"
ERROR = "ERROR"
TERMINAL_STATES = {COMPLETED, CANCELED, ERROR}
SHARED_FS_CONTAINER_PATH = "/determined_shared_fs"
# By default, we ignore:
# - all byte-compiled Python files to ignore a potential stale compilation
# - terraform files generated by `det deploy gcp`, e.g. when user creates
# a cluster from the (tutorial) model def directory.
# - .git and IDE-related content
# Users may also define custom .detignore files to ignore arbitrary paths.
DEFAULT_DETIGNORE = [
"__pycache__/",
"*.py[co]",
"*$py.class",
"terraform",
"terraform_data",
"terraform.tfstate*",
"terraform.tfvars*",
".terraform*",
".git/",
".vscode/",
".idea/",
".mypy_cache/",
]
| max_websocket_msg_size = 128 * 1024 * 1024
max_http_request_size = 128 * 1024 * 1024
max_encoded_size = min(MAX_WEBSOCKET_MSG_SIZE, MAX_HTTP_REQUEST_SIZE) // 8 * 6
max_context_size = MAX_ENCODED_SIZE - 1 * 1024 * 1024
default_determined_user = 'determined'
default_determined_password = ''
default_checkpoint_path = 'checkpoints'
active = 'ACTIVE'
canceled = 'CANCELED'
completed = 'COMPLETED'
deleted = 'DELETED'
error = 'ERROR'
terminal_states = {COMPLETED, CANCELED, ERROR}
shared_fs_container_path = '/determined_shared_fs'
default_detignore = ['__pycache__/', '*.py[co]', '*$py.class', 'terraform', 'terraform_data', 'terraform.tfstate*', 'terraform.tfvars*', '.terraform*', '.git/', '.vscode/', '.idea/', '.mypy_cache/'] |
"""
@author Wildo Monges
Grid was provided as an initial skeleton of the project.
Note:
This was a project that I did for the course of Artificial Intelligence in Edx.org
To run it, just execute GameManager.py
"""
class BaseAI:
def get_move(self, grid):
pass
| """
@author Wildo Monges
Grid was provided as an initial skeleton of the project.
Note:
This was a project that I did for the course of Artificial Intelligence in Edx.org
To run it, just execute GameManager.py
"""
class Baseai:
def get_move(self, grid):
pass |
"""
defined:
_exec(cmd, input="", pipe_from_memory=False) : executes a command and returns output
_absrelerr(actual, expected, eps=1e-6): check if floating point absrel error is below epsilon
tmp_path : temporary file the problem definition may use (e.g. input file for other program)
verbose : if verbose mode activated (could print out more information)
imported:
sys, random, math
"""
SOLN_PATH = "~/C"
cases = []
solns = {}
def set_up_cases(num_cases):
""" Initialize the checker/generator """
for i in range(num_cases):
n = random.randint(1, 100000)
m = random.randint(1, 100000)
case_str = str(n) + " " + str(m) + "\n"
for j in range(m):
xi = random.randint(-1000, 1000)
di = random.randint(-1000, 1000)
case_str += str(xi) + " " + str(di) + "\n"
cases.append(case_str)
solns[case_str] = float(_exec(SOLN_PATH, case_str, True))
def retrieve_case(case_id):
"""
Retrieve a test case for the current problem. Must return a string with the properly formatted input data.
case_id is an integer [0, \infty)
"""
return cases[case_id]
def check_output_correct(input, output):
""" checks if the output is correct, given the input. Returns True if correct, False else. """
expected = solns[input]
got = float(output)
return _absrelerr(got, expected, 1e-6)
| """
defined:
_exec(cmd, input="", pipe_from_memory=False) : executes a command and returns output
_absrelerr(actual, expected, eps=1e-6): check if floating point absrel error is below epsilon
tmp_path : temporary file the problem definition may use (e.g. input file for other program)
verbose : if verbose mode activated (could print out more information)
imported:
sys, random, math
"""
soln_path = '~/C'
cases = []
solns = {}
def set_up_cases(num_cases):
""" Initialize the checker/generator """
for i in range(num_cases):
n = random.randint(1, 100000)
m = random.randint(1, 100000)
case_str = str(n) + ' ' + str(m) + '\n'
for j in range(m):
xi = random.randint(-1000, 1000)
di = random.randint(-1000, 1000)
case_str += str(xi) + ' ' + str(di) + '\n'
cases.append(case_str)
solns[case_str] = float(_exec(SOLN_PATH, case_str, True))
def retrieve_case(case_id):
"""
Retrieve a test case for the current problem. Must return a string with the properly formatted input data.
case_id is an integer [0, \\infty)
"""
return cases[case_id]
def check_output_correct(input, output):
""" checks if the output is correct, given the input. Returns True if correct, False else. """
expected = solns[input]
got = float(output)
return _absrelerr(got, expected, 1e-06) |
"""
Define the ChangeEvent class
"""
class ChangeEvent:
""" A class to represents a change in the website """
def __init__(self, did_change=False, whitelisted_words=[], blacklisted_words=[]):
"""Hold information about the change in a site
Args:
did_change (bool, optional): Did the site changed from last time. Defaults to False.
whitelisted_words (list, optional): Whitelisted words in the HTML. Defaults to [].
blacklisted_words (list, optional): Blacklisted words in the HTML. Defaults to [].
"""
self.did_change = did_change
self.new_whitelisted = whitelisted_words
self.new_blacklisted = blacklisted_words
| """
Define the ChangeEvent class
"""
class Changeevent:
""" A class to represents a change in the website """
def __init__(self, did_change=False, whitelisted_words=[], blacklisted_words=[]):
"""Hold information about the change in a site
Args:
did_change (bool, optional): Did the site changed from last time. Defaults to False.
whitelisted_words (list, optional): Whitelisted words in the HTML. Defaults to [].
blacklisted_words (list, optional): Blacklisted words in the HTML. Defaults to [].
"""
self.did_change = did_change
self.new_whitelisted = whitelisted_words
self.new_blacklisted = blacklisted_words |
# -*- coding: utf-8 -*-
"""
The models in directory default have been added as a pure convenience and for demonstration
purpose. Whenever there is a need to use a modified version, copy one of these models into
the projects model directory and adopt it to your needs. Otherwise just import the model
into your own models.py file without using it. The latter is important to materialize the
model.
Each model is declared in its own file. This is to prevent model validation errors on related
fields if a file containing this definition is imported without using the model.
""" | """
The models in directory default have been added as a pure convenience and for demonstration
purpose. Whenever there is a need to use a modified version, copy one of these models into
the projects model directory and adopt it to your needs. Otherwise just import the model
into your own models.py file without using it. The latter is important to materialize the
model.
Each model is declared in its own file. This is to prevent model validation errors on related
fields if a file containing this definition is imported without using the model.
""" |
"""
This function is intended to wrap the rewards returned by the CityLearn RL environment, and is meant to
be modified by the participants of The CityLearn Challenge.
CityLearn returns the energy consumption of each building as a reward.
This reward_function takes all the electrical demands of all the buildings and turns them into one or multiple rewards for the agent(s)
The current code computes a virtual (made-up) electricity price proportional to the total demand for electricity in the neighborhood, and multiplies every
reward by that price. Then it returns the new rewards, which should be used by the agent. Participants of the CityLearn Challenge are encouraged to completely modify this function
in order to minimize the 5 proposed metrics.
"""
# Reward function for the multi-agent (decentralized) agents
def reward_function_ma(electricity_demand):
total_energy_demand = 0
for e in electricity_demand:
total_energy_demand += -e
price = max(total_energy_demand*0.01, 0)
for i in range(len(electricity_demand)):
electricity_demand[i] = min(price*electricity_demand[i], 0)
return electricity_demand
# Reward function for the single-agent (centralized) agent
def reward_function_sa(electricity_demand):
total_energy_demand = 0
for e in electricity_demand:
total_energy_demand += -e
price = max(total_energy_demand*0.005, 0)
for i in range(len(electricity_demand)):
electricity_demand[i] = min(price*electricity_demand[i], 0)
return sum(electricity_demand)
| """
This function is intended to wrap the rewards returned by the CityLearn RL environment, and is meant to
be modified by the participants of The CityLearn Challenge.
CityLearn returns the energy consumption of each building as a reward.
This reward_function takes all the electrical demands of all the buildings and turns them into one or multiple rewards for the agent(s)
The current code computes a virtual (made-up) electricity price proportional to the total demand for electricity in the neighborhood, and multiplies every
reward by that price. Then it returns the new rewards, which should be used by the agent. Participants of the CityLearn Challenge are encouraged to completely modify this function
in order to minimize the 5 proposed metrics.
"""
def reward_function_ma(electricity_demand):
total_energy_demand = 0
for e in electricity_demand:
total_energy_demand += -e
price = max(total_energy_demand * 0.01, 0)
for i in range(len(electricity_demand)):
electricity_demand[i] = min(price * electricity_demand[i], 0)
return electricity_demand
def reward_function_sa(electricity_demand):
total_energy_demand = 0
for e in electricity_demand:
total_energy_demand += -e
price = max(total_energy_demand * 0.005, 0)
for i in range(len(electricity_demand)):
electricity_demand[i] = min(price * electricity_demand[i], 0)
return sum(electricity_demand) |
def avaliarSituacao(media):
if media >= 6:
print('aprovado')
else:
print('reprovado')
def calcularMedia(p1, p2):
media = (p1 + p2) / 2
avaliarSituacao(media)
def main():
p1 = float(input('Digite a primeira nota: '))
p2 = float(input('Digite a segunda nota: '))
calcularMedia(p1, p2)
main()
| def avaliar_situacao(media):
if media >= 6:
print('aprovado')
else:
print('reprovado')
def calcular_media(p1, p2):
media = (p1 + p2) / 2
avaliar_situacao(media)
def main():
p1 = float(input('Digite a primeira nota: '))
p2 = float(input('Digite a segunda nota: '))
calcular_media(p1, p2)
main() |
#######################
# Dennis MUD #
# list_users.py #
# Copyright 2018-2020 #
# Michael D. Reiley #
#######################
# **********
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
# deal in the Software without restriction, including without limitation the
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
# sell copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
# IN THE SOFTWARE.
# **********
NAME = "list users"
CATEGORIES = ["users"]
ALIASES = ["who"]
USAGE = "list users"
DESCRIPTION = """List all online users in the world.
If you are a wizard, you will see a list of all registered users, including offline users."""
def COMMAND(console, args):
# Perform initial checks.
if not COMMON.check(NAME, console, args, argc=0):
return False
# Sort all users in the database by username.
allusers = sorted(console.database.users.all(), key=lambda k: k["name"])
# Iterate through the users, checking whether each one is online or offline,
# and keeping track of how many were online vs offline.
online_count = 0
offline_count = 0
if len(allusers):
for thisuser in allusers:
# Everyone can see which users are online. List them out and keep count.
if console.database.online(thisuser["name"]):
console.msg("{0} ({1})".format(thisuser["nick"], thisuser["name"]))
online_count += 1
# If we are a wizard, iterate through again and list out the offline users this time, and keep count.
if console.user["wizard"]:
for thisuser in allusers:
if not console.database.online(thisuser["name"]):
console.msg("{0} ({1}) [offline]".format(thisuser["nick"], thisuser["name"]))
offline_count += 1
# Format the count of online and offline users for wizards.
console.msg("{0}: Total users online: {1}; offline: {2}".format(NAME, online_count, offline_count))
else:
# Format the count of just online users for regular players.
console.msg("{0}: Total users online: {1}".format(NAME, online_count))
# This shouldn't ever happen.
else:
console.log.error("No users returned from list users command.")
console.msg("{0}: ERROR: No users returned from list users command.".format(NAME))
# Finished.
return True
| name = 'list users'
categories = ['users']
aliases = ['who']
usage = 'list users'
description = 'List all online users in the world.\n\nIf you are a wizard, you will see a list of all registered users, including offline users.'
def command(console, args):
if not COMMON.check(NAME, console, args, argc=0):
return False
allusers = sorted(console.database.users.all(), key=lambda k: k['name'])
online_count = 0
offline_count = 0
if len(allusers):
for thisuser in allusers:
if console.database.online(thisuser['name']):
console.msg('{0} ({1})'.format(thisuser['nick'], thisuser['name']))
online_count += 1
if console.user['wizard']:
for thisuser in allusers:
if not console.database.online(thisuser['name']):
console.msg('{0} ({1}) [offline]'.format(thisuser['nick'], thisuser['name']))
offline_count += 1
console.msg('{0}: Total users online: {1}; offline: {2}'.format(NAME, online_count, offline_count))
else:
console.msg('{0}: Total users online: {1}'.format(NAME, online_count))
else:
console.log.error('No users returned from list users command.')
console.msg('{0}: ERROR: No users returned from list users command.'.format(NAME))
return True |
"""
Given an input string, reverse the string word by word.
For example,
Given s = "the sky is blue",
return "blue is sky the".
click to show clarification.
Clarification:
What constitutes a word?
A sequence of non-space characters constitutes a word.
Could the input string contain leading or trailing spaces?
Yes. However, your reversed string should not contain leading or trailing spaces.
How about multiple spaces between two words?
Reduce them to a single space in the reversed string.
"""
__author__ = 'Danyang'
class Solution:
def reverseWords(self, s):
"""
Notice: ask how to deal with punctuations
:param s: a string
:return: a string
"""
words_lst = s.split() # not s.split(" ")
words_lst = reversed(words_lst)
return ' '.join(words_lst) | """
Given an input string, reverse the string word by word.
For example,
Given s = "the sky is blue",
return "blue is sky the".
click to show clarification.
Clarification:
What constitutes a word?
A sequence of non-space characters constitutes a word.
Could the input string contain leading or trailing spaces?
Yes. However, your reversed string should not contain leading or trailing spaces.
How about multiple spaces between two words?
Reduce them to a single space in the reversed string.
"""
__author__ = 'Danyang'
class Solution:
def reverse_words(self, s):
"""
Notice: ask how to deal with punctuations
:param s: a string
:return: a string
"""
words_lst = s.split()
words_lst = reversed(words_lst)
return ' '.join(words_lst) |
# i = 4, tallest library building
''' Nearly complete
building_coordinations = [[(-0.126585027793863,16.8195412372661),
(-1.26360571382314,26.9366491540346),
(-15.8471949722061,25.2976587627339),
(-14.7101742861769,15.1805508459654)],
[(-23.0767794626376,16.8481382394501),
(-15.1990122585185,17.6638842108194),
(-16.2936205373624,28.2346617605499),
(-24.1713877414815,27.4189157891806)],
[(-24.6491019813129,-2.8185334334924),
(-14.101147340091,-2.84946701921701),
(-14.0468980186871,15.6488534334924),
(-24.594852659909,15.679787019217)],
[(-21.5000842110591,-9.44961399824389),
(-14.0429792391866,-9.28372083691639),
(-14.1765157889409,-3.28108600175611),
(-21.6336207608134,-3.44697916308361)],
[(3.94535013848411,-3.36623865637194),
(14.493304779706,-3.39717224209654),
(14.5540698615159,17.3229386563719),
(4.00611522029401,17.3538722420965)],
[(8.04858173555005,-30.4958667788278),
(12.4781226874434,-30.5088571252425),
(12.53001826445,-12.8131332211722),
(8.10047731255663,-12.8001428747575)],
[(16.1178588413269,-32.2262223173032),
(20.5473997932202,-32.2392126637179),
(20.5917411586731,-17.1193776826968),
(16.1622002067798,-17.1063873362821)],
[(20.5041475657755,-32.1942704687495),
(24.9336885176689,-32.2072608151642),
(24.9464524342245,-27.8549295312505),
(20.5169114823311,-27.8419391848358)],
[(19.5743191710178,-16.0103447371203),
(25.002585828147,-16.0262640084564),
(25.0170808289822,-11.0836552628797),
(19.588814171853,-11.0677359915436)]]
'''
# The last one is the tallest building i = 6
building_coordinations = [[(-0.126585027793863,16.8195412372661),
(-1.26360571382314,26.9366491540346),
(-15.8471949722061,25.2976587627339),
(-14.7101742861769,15.1805508459654)],
[(-23.0767794626376,16.8481382394501),
(-15.1990122585185,17.6638842108194),
(-16.2936205373624,28.2346617605499),
(-24.1713877414815,27.4189157891806)],
[(-24.6491019813129,-2.8185334334924),
(-14.101147340091,-2.84946701921701),
(-14.0468980186871,15.6488534334924),
(-24.594852659909,15.679787019217)],
[(-21.5000842110591,-9.44961399824389),
(-14.0429792391866,-9.28372083691639),
(-14.1765157889409,-3.28108600175611),
(-21.6336207608134,-3.44697916308361)],
[(3.94535013848411,-3.36623865637194),
(14.493304779706,-3.39717224209654),
(14.5540698615159,17.3229386563719),
(4.00611522029401,17.3538722420965)],
[(2.57209348808029,-3.26004248341449),
(3.79342823604293,-3.26362424541571),
(3.81202651191971,3.07814848341449),
(2.59069176395707,3.08173024541571)],
[(-3.2169746262757,-5.0930349504193),
(2.44827101178602,-5.1096492010069),
(2.4795386262757,5.5522049504193),
(-3.18570701178602,5.5688192010069)]]
''' # Complete
lawn_coordinations = [[(-19.0,-14.0),
(2.0,-14.0),
(-4.5,-24.0),
(-11.0,-24.0)],
[(-19.5,-20.0),
(-14.5,-25.5),
(-14.5,-30.5),
(-19.5,-37.0)],
[(-1.0,-24.5),
(4.5,-18.5),
(4.5,-36.5),
(-1.0,-30.5)],
[(-11.0,-32.5),
(-4.5,-32.5),
(2.0,-42.0),
(-19.0,-42.0)],
[(-8.5,1.0),
(-3.0,1.0),
(-3.0,-4.5),
(-8.5,-4.5)],
[(14.5,11.0),
(27.0,8.0),
(15.5,-4.5)],
[(28.0,2.0),
(27.5,-11.0),
(17.5,-10.0)]]
'''
lawn_coordinations = [[(-10.5,1.0),
(-5.0,1.0),
(-5.0,-4.5),
(-10.5,-4.5)],
[(14.5,11.0),
(27.0,8.0),
(15.5,-4.5)],
[(28.0,2.0),
(27.5,-11.0),
(17.5,-10.0)]]
forest_coordinations = [[(1.0,21.5),
(18.0,36.0),
(4.0,40.0)],
[(7.0,17.5),
(27.5,17.5),
(24.5,30.5)]]
food_coordinations = [[-14.5,39.0],[-7.0,10.0],[15.0,30.0]]
red_chaser_init_pos = [[-8.0,0.0],[-10.0,30.0],[15.0,29.0]]
green_escaper_init_pos = [[-5.0,-5.0],[-2.0,-9.5],[-10.0,34.0],[20.0,4.5],[17.5,17.0],[-15.0,28.5],[15.5,35.0],[18.0,26.0]]
init_plaza = [-10.0,-5.0]
init_forest_1 = [4.0,37.0]
init_forest_2 = [20.0,24.0]
escaper_starter_range = [[[-14.0,25.0],[-10.0,-7.0]],
[[-13.0,-5.0],[-7.0,14.0]],
[[-5.0,3.0],[7.0,29.0]],
[[4.0,25.0],[19.0,29.0]],
[[15.0,25.0],[-7.0,18.0]],
[[-25.0,25.0],[30.0,40.0]]]
| """ Nearly complete
building_coordinations = [[(-0.126585027793863,16.8195412372661),
(-1.26360571382314,26.9366491540346),
(-15.8471949722061,25.2976587627339),
(-14.7101742861769,15.1805508459654)],
[(-23.0767794626376,16.8481382394501),
(-15.1990122585185,17.6638842108194),
(-16.2936205373624,28.2346617605499),
(-24.1713877414815,27.4189157891806)],
[(-24.6491019813129,-2.8185334334924),
(-14.101147340091,-2.84946701921701),
(-14.0468980186871,15.6488534334924),
(-24.594852659909,15.679787019217)],
[(-21.5000842110591,-9.44961399824389),
(-14.0429792391866,-9.28372083691639),
(-14.1765157889409,-3.28108600175611),
(-21.6336207608134,-3.44697916308361)],
[(3.94535013848411,-3.36623865637194),
(14.493304779706,-3.39717224209654),
(14.5540698615159,17.3229386563719),
(4.00611522029401,17.3538722420965)],
[(8.04858173555005,-30.4958667788278),
(12.4781226874434,-30.5088571252425),
(12.53001826445,-12.8131332211722),
(8.10047731255663,-12.8001428747575)],
[(16.1178588413269,-32.2262223173032),
(20.5473997932202,-32.2392126637179),
(20.5917411586731,-17.1193776826968),
(16.1622002067798,-17.1063873362821)],
[(20.5041475657755,-32.1942704687495),
(24.9336885176689,-32.2072608151642),
(24.9464524342245,-27.8549295312505),
(20.5169114823311,-27.8419391848358)],
[(19.5743191710178,-16.0103447371203),
(25.002585828147,-16.0262640084564),
(25.0170808289822,-11.0836552628797),
(19.588814171853,-11.0677359915436)]]
"""
building_coordinations = [[(-0.126585027793863, 16.8195412372661), (-1.26360571382314, 26.9366491540346), (-15.8471949722061, 25.2976587627339), (-14.7101742861769, 15.1805508459654)], [(-23.0767794626376, 16.8481382394501), (-15.1990122585185, 17.6638842108194), (-16.2936205373624, 28.2346617605499), (-24.1713877414815, 27.4189157891806)], [(-24.6491019813129, -2.8185334334924), (-14.101147340091, -2.84946701921701), (-14.0468980186871, 15.6488534334924), (-24.594852659909, 15.679787019217)], [(-21.5000842110591, -9.44961399824389), (-14.0429792391866, -9.28372083691639), (-14.1765157889409, -3.28108600175611), (-21.6336207608134, -3.44697916308361)], [(3.94535013848411, -3.36623865637194), (14.493304779706, -3.39717224209654), (14.5540698615159, 17.3229386563719), (4.00611522029401, 17.3538722420965)], [(2.57209348808029, -3.26004248341449), (3.79342823604293, -3.26362424541571), (3.81202651191971, 3.07814848341449), (2.59069176395707, 3.08173024541571)], [(-3.2169746262757, -5.0930349504193), (2.44827101178602, -5.1096492010069), (2.4795386262757, 5.5522049504193), (-3.18570701178602, 5.5688192010069)]]
' # Complete\nlawn_coordinations = [[(-19.0,-14.0),\n\t\t\t\t\t(2.0,-14.0),\n\t\t\t\t\t(-4.5,-24.0),\n\t\t\t\t\t(-11.0,-24.0)],\n\t\t\t[(-19.5,-20.0),\n\t\t\t\t\t(-14.5,-25.5),\n\t\t\t\t\t(-14.5,-30.5),\n\t\t\t\t\t(-19.5,-37.0)],\n\t\t\t[(-1.0,-24.5),\n\t\t\t\t\t(4.5,-18.5),\n\t\t\t\t\t(4.5,-36.5),\n\t\t\t\t\t(-1.0,-30.5)],\n\t\t\t[(-11.0,-32.5),\n\t\t\t\t\t(-4.5,-32.5),\n\t\t\t\t\t(2.0,-42.0),\n\t\t\t\t\t(-19.0,-42.0)],\n\t\t\t[(-8.5,1.0),\n\t\t\t\t\t(-3.0,1.0),\n\t\t\t\t\t(-3.0,-4.5),\n\t\t\t\t\t(-8.5,-4.5)],\n\t\t\t[(14.5,11.0),\n\t\t\t\t\t(27.0,8.0),\n\t\t\t\t\t(15.5,-4.5)],\n\t\t\t[(28.0,2.0),\n\t\t\t\t\t(27.5,-11.0),\n\t\t\t\t\t(17.5,-10.0)]]\n'
lawn_coordinations = [[(-10.5, 1.0), (-5.0, 1.0), (-5.0, -4.5), (-10.5, -4.5)], [(14.5, 11.0), (27.0, 8.0), (15.5, -4.5)], [(28.0, 2.0), (27.5, -11.0), (17.5, -10.0)]]
forest_coordinations = [[(1.0, 21.5), (18.0, 36.0), (4.0, 40.0)], [(7.0, 17.5), (27.5, 17.5), (24.5, 30.5)]]
food_coordinations = [[-14.5, 39.0], [-7.0, 10.0], [15.0, 30.0]]
red_chaser_init_pos = [[-8.0, 0.0], [-10.0, 30.0], [15.0, 29.0]]
green_escaper_init_pos = [[-5.0, -5.0], [-2.0, -9.5], [-10.0, 34.0], [20.0, 4.5], [17.5, 17.0], [-15.0, 28.5], [15.5, 35.0], [18.0, 26.0]]
init_plaza = [-10.0, -5.0]
init_forest_1 = [4.0, 37.0]
init_forest_2 = [20.0, 24.0]
escaper_starter_range = [[[-14.0, 25.0], [-10.0, -7.0]], [[-13.0, -5.0], [-7.0, 14.0]], [[-5.0, 3.0], [7.0, 29.0]], [[4.0, 25.0], [19.0, 29.0]], [[15.0, 25.0], [-7.0, 18.0]], [[-25.0, 25.0], [30.0, 40.0]]] |
# Created by MechAviv
# ID :: [4000022]
# Maple Road : Adventurer Training Center 1
sm.showFieldEffect("maplemap/enter/1010100", 0) | sm.showFieldEffect('maplemap/enter/1010100', 0) |
# simplify_fraction.py
def validate_input_simplify(fraction):
if type(fraction) is not tuple:
raise Exception('Argument can only be of type "tuple".')
if len(fraction) != 2:
raise Exception('Tuple can only contain 2 elements.')
if type(fraction[0]) != int or type(fraction[1]) != int:
raise Exception('Tuple can only contain integers.')
if fraction[1] == 0:
raise Exception('Cannot devide by zero.')
def gcd(nominator, denominator):
if nominator == denominator:
return nominator
elif nominator > denominator:
return gcd(nominator - denominator, denominator)
else:
return gcd(nominator, denominator - nominator)
def simplify_fraction(fraction):
validate_input_simplify(fraction)
nominator = fraction[0]
denominator = fraction[1]
if nominator == 0:
return (nominator, 1)
res = gcd(nominator, denominator)
while res != 1:
nominator //= res
denominator //= res
res = gcd(nominator, denominator)
return (nominator, denominator)
def main():
print(simplify_fraction((3,9)))
# Expected output: (1,3)
print(simplify_fraction((1,7)))
# Expected output: (1,7)
print(simplify_fraction((4,10)))
# Expected output: (2,5)
print(simplify_fraction((462,63)))
# Expected output: (22,3)
if __name__ == '__main__':
main() | def validate_input_simplify(fraction):
if type(fraction) is not tuple:
raise exception('Argument can only be of type "tuple".')
if len(fraction) != 2:
raise exception('Tuple can only contain 2 elements.')
if type(fraction[0]) != int or type(fraction[1]) != int:
raise exception('Tuple can only contain integers.')
if fraction[1] == 0:
raise exception('Cannot devide by zero.')
def gcd(nominator, denominator):
if nominator == denominator:
return nominator
elif nominator > denominator:
return gcd(nominator - denominator, denominator)
else:
return gcd(nominator, denominator - nominator)
def simplify_fraction(fraction):
validate_input_simplify(fraction)
nominator = fraction[0]
denominator = fraction[1]
if nominator == 0:
return (nominator, 1)
res = gcd(nominator, denominator)
while res != 1:
nominator //= res
denominator //= res
res = gcd(nominator, denominator)
return (nominator, denominator)
def main():
print(simplify_fraction((3, 9)))
print(simplify_fraction((1, 7)))
print(simplify_fraction((4, 10)))
print(simplify_fraction((462, 63)))
if __name__ == '__main__':
main() |
items3 = ["Mic", "Phone", 323.12, 3123.123, "Justin", "Bag", "Cliff Bars", 134]
def my_sum_and_count(my_num_list):
total = 0
count = 0
for i in my_num_list:
if isinstance(i, float) or isinstance(i, int):
total += i
count += 1
return total, count
def my_avg(my_num_list):
the_sum, num_of_items = my_sum_and_count(my_num_list)
return the_sum / (num_of_items * 1.0)
my_avg(items3)
| items3 = ['Mic', 'Phone', 323.12, 3123.123, 'Justin', 'Bag', 'Cliff Bars', 134]
def my_sum_and_count(my_num_list):
total = 0
count = 0
for i in my_num_list:
if isinstance(i, float) or isinstance(i, int):
total += i
count += 1
return (total, count)
def my_avg(my_num_list):
(the_sum, num_of_items) = my_sum_and_count(my_num_list)
return the_sum / (num_of_items * 1.0)
my_avg(items3) |
# coding: utf-8
PI = [58, 50, 42, 34, 26, 18, 10, 2,
60, 52, 44, 36, 28, 20, 12, 4,
62, 54, 46, 38, 30, 22, 14, 6,
64, 56, 48, 40, 32, 24, 16, 8,
57, 49, 41, 33, 25, 17, 9, 1,
59, 51, 43, 35, 27, 19, 11, 3,
61, 53, 45, 37, 29, 21, 13, 5,
63, 55, 47, 39, 31, 23, 15, 7]
CP_1 = [57, 49, 41, 33, 25, 17, 9,
1, 58, 50, 42, 34, 26, 18,
10, 2, 59, 51, 43, 35, 27,
19, 11, 3, 60, 52, 44, 36,
63, 55, 47, 39, 31, 23, 15,
7, 62, 54, 46, 38, 30, 22,
14, 6, 61, 53, 45, 37, 29,
21, 13, 5, 28, 20, 12, 4]
CP_2 = [14, 17, 11, 24, 1, 5, 3, 28,
15, 6, 21, 10, 23, 19, 12, 4,
26, 8, 16, 7, 27, 20, 13, 2,
41, 52, 31, 37, 47, 55, 30, 40,
51, 45, 33, 48, 44, 49, 39, 56,
34, 53, 46, 42, 50, 36, 29, 32]
E = [32, 1, 2, 3, 4, 5,
4, 5, 6, 7, 8, 9,
8, 9, 10, 11, 12, 13,
12, 13, 14, 15, 16, 17,
16, 17, 18, 19, 20, 21,
20, 21, 22, 23, 24, 25,
24, 25, 26, 27, 28, 29,
28, 29, 30, 31, 32, 1]
S_BOX = [
[[14, 4, 13, 1, 2, 15, 11, 8, 3, 10, 6, 12, 5, 9, 0, 7],
[0, 15, 7, 4, 14, 2, 13, 1, 10, 6, 12, 11, 9, 5, 3, 8],
[4, 1, 14, 8, 13, 6, 2, 11, 15, 12, 9, 7, 3, 10, 5, 0],
[15, 12, 8, 2, 4, 9, 1, 7, 5, 11, 3, 14, 10, 0, 6, 13],
],
[[15, 1, 8, 14, 6, 11, 3, 4, 9, 7, 2, 13, 12, 0, 5, 10],
[3, 13, 4, 7, 15, 2, 8, 14, 12, 0, 1, 10, 6, 9, 11, 5],
[0, 14, 7, 11, 10, 4, 13, 1, 5, 8, 12, 6, 9, 3, 2, 15],
[13, 8, 10, 1, 3, 15, 4, 2, 11, 6, 7, 12, 0, 5, 14, 9],
],
[[10, 0, 9, 14, 6, 3, 15, 5, 1, 13, 12, 7, 11, 4, 2, 8],
[13, 7, 0, 9, 3, 4, 6, 10, 2, 8, 5, 14, 12, 11, 15, 1],
[13, 6, 4, 9, 8, 15, 3, 0, 11, 1, 2, 12, 5, 10, 14, 7],
[1, 10, 13, 0, 6, 9, 8, 7, 4, 15, 14, 3, 11, 5, 2, 12],
],
[[7, 13, 14, 3, 0, 6, 9, 10, 1, 2, 8, 5, 11, 12, 4, 15],
[13, 8, 11, 5, 6, 15, 0, 3, 4, 7, 2, 12, 1, 10, 14, 9],
[10, 6, 9, 0, 12, 11, 7, 13, 15, 1, 3, 14, 5, 2, 8, 4],
[3, 15, 0, 6, 10, 1, 13, 8, 9, 4, 5, 11, 12, 7, 2, 14],
],
[[2, 12, 4, 1, 7, 10, 11, 6, 8, 5, 3, 15, 13, 0, 14, 9],
[14, 11, 2, 12, 4, 7, 13, 1, 5, 0, 15, 10, 3, 9, 8, 6],
[4, 2, 1, 11, 10, 13, 7, 8, 15, 9, 12, 5, 6, 3, 0, 14],
[11, 8, 12, 7, 1, 14, 2, 13, 6, 15, 0, 9, 10, 4, 5, 3],
],
[[12, 1, 10, 15, 9, 2, 6, 8, 0, 13, 3, 4, 14, 7, 5, 11],
[10, 15, 4, 2, 7, 12, 9, 5, 6, 1, 13, 14, 0, 11, 3, 8],
[9, 14, 15, 5, 2, 8, 12, 3, 7, 0, 4, 10, 1, 13, 11, 6],
[4, 3, 2, 12, 9, 5, 15, 10, 11, 14, 1, 7, 6, 0, 8, 13],
],
[[4, 11, 2, 14, 15, 0, 8, 13, 3, 12, 9, 7, 5, 10, 6, 1],
[13, 0, 11, 7, 4, 9, 1, 10, 14, 3, 5, 12, 2, 15, 8, 6],
[1, 4, 11, 13, 12, 3, 7, 14, 10, 15, 6, 8, 0, 5, 9, 2],
[6, 11, 13, 8, 1, 4, 10, 7, 9, 5, 0, 15, 14, 2, 3, 12],
],
[[13, 2, 8, 4, 6, 15, 11, 1, 10, 9, 3, 14, 5, 0, 12, 7],
[1, 15, 13, 8, 10, 3, 7, 4, 12, 5, 6, 11, 0, 14, 9, 2],
[7, 11, 4, 1, 9, 12, 14, 2, 0, 6, 10, 13, 15, 3, 5, 8],
[2, 1, 14, 7, 4, 10, 8, 13, 15, 12, 9, 0, 3, 5, 6, 11],
]
]
P = [16, 7, 20, 21, 29, 12, 28, 17,
1, 15, 23, 26, 5, 18, 31, 10,
2, 8, 24, 14, 32, 27, 3, 9,
19, 13, 30, 6, 22, 11, 4, 25]
PI_1 = [40, 8, 48, 16, 56, 24, 64, 32,
39, 7, 47, 15, 55, 23, 63, 31,
38, 6, 46, 14, 54, 22, 62, 30,
37, 5, 45, 13, 53, 21, 61, 29,
36, 4, 44, 12, 52, 20, 60, 28,
35, 3, 43, 11, 51, 19, 59, 27,
34, 2, 42, 10, 50, 18, 58, 26,
33, 1, 41, 9, 49, 17, 57, 25]
SHIFT = [1,1,2,2,2,2,2,2,1,2,2,2,2,2,2,1]
def string_to_bit_array(text):
array = list()
for char in text:
binval = binvalue(char, 8)
array.extend([int(x) for x in list(binval)])
return array
def bit_array_to_string(array):
res = ''.join([chr(int(y,2)) for y in [''.join([str(x) for x in _bytes]) for _bytes in nsplit(array,8)]])
return res
def binvalue(val, bitsize):
binval = bin(val)[2:] if isinstance(val, int) else bin(ord(val))[2:]
if len(binval) > bitsize:
raise "binary value larger than the expected size"
while len(binval) < bitsize:
binval = "0"+binval
return binval
def nsplit(s, n):
return [s[k:k+n] for k in range(0, len(s), n)]
ENCRYPT=1
DECRYPT=0
class des():
def __init__(self):
self.password = None
self.text = None
self.keys = list()
def run(self, key, text, action=ENCRYPT, padding=False):
if len(key) < 8:
raise "Key Should be 8 bytes long"
elif len(key) > 8:
key = key[:8]
self.password = key
self.text = text
if padding and action==ENCRYPT:
self.addPadding()
elif len(self.text) % 8 != 0:
raise "Data size should be multiple of 8"
self.generatekeys()
text_blocks = nsplit(self.text, 8)
result = list()
for block in text_blocks:
block = string_to_bit_array(block)
block = self.permut(block,PI)
g, d = nsplit(block, 32)
tmp = None
for i in range(16):
d_e = self.expand(d, E)
if action == ENCRYPT:
tmp = self.xor(self.keys[i], d_e)
else:
tmp = self.xor(self.keys[15-i], d_e)
tmp = self.substitute(tmp)
tmp = self.permut(tmp, P)
tmp = self.xor(g, tmp)
g = d
d = tmp
result += self.permut(d+g, PI_1)
final_res = bit_array_to_string(result)
if padding and action==DECRYPT:
return self.removePadding(final_res)
else:
return final_res
def substitute(self, d_e):
subblocks = nsplit(d_e, 6)
result = list()
for i in range(len(subblocks)):
block = subblocks[i]
row = int(str(block[0])+str(block[5]),2)
column = int(''.join([str(x) for x in block[1:][:-1]]),2)
val = S_BOX[i][row][column]
bin = binvalue(val, 4)
result += [int(x) for x in bin]
return result
def permut(self, block, table):
return [block[x-1] for x in table]
def expand(self, block, table):
return [block[x-1] for x in table]
def xor(self, t1, t2):
return [x^y for x,y in zip(t1,t2)]
def generatekeys(self):
self.keys = []
key = string_to_bit_array(self.password)
key = self.permut(key, CP_1)
g, d = nsplit(key, 28)
for i in range(16):
g, d = self.shift(g, d, SHIFT[i])
tmp = g + d
self.keys.append(self.permut(tmp, CP_2))
def shift(self, g, d, n):
return g[n:] + g[:n], d[n:] + d[:n]
def addPadding(self):
pad_len = 8 - (len(self.text) % 8)
self.text += pad_len * chr(pad_len)
def removePadding(self, data):
pad_len = ord(data[-1])
return data[:-pad_len]
def encrypt(self, key, text, padding=False):
return self.run(key, text, ENCRYPT, padding)
def decrypt(self, key, text, padding=False):
return self.run(key, text, DECRYPT, padding)
if __name__ == '__main__':
key = "secret_k"
text= "Hello wo"
d = des()
r = d.encrypt(key,text)
r2 = d.decrypt(key,r)
print("Ciphered: r", r)
print("Deciphered: ", r2) | pi = [58, 50, 42, 34, 26, 18, 10, 2, 60, 52, 44, 36, 28, 20, 12, 4, 62, 54, 46, 38, 30, 22, 14, 6, 64, 56, 48, 40, 32, 24, 16, 8, 57, 49, 41, 33, 25, 17, 9, 1, 59, 51, 43, 35, 27, 19, 11, 3, 61, 53, 45, 37, 29, 21, 13, 5, 63, 55, 47, 39, 31, 23, 15, 7]
cp_1 = [57, 49, 41, 33, 25, 17, 9, 1, 58, 50, 42, 34, 26, 18, 10, 2, 59, 51, 43, 35, 27, 19, 11, 3, 60, 52, 44, 36, 63, 55, 47, 39, 31, 23, 15, 7, 62, 54, 46, 38, 30, 22, 14, 6, 61, 53, 45, 37, 29, 21, 13, 5, 28, 20, 12, 4]
cp_2 = [14, 17, 11, 24, 1, 5, 3, 28, 15, 6, 21, 10, 23, 19, 12, 4, 26, 8, 16, 7, 27, 20, 13, 2, 41, 52, 31, 37, 47, 55, 30, 40, 51, 45, 33, 48, 44, 49, 39, 56, 34, 53, 46, 42, 50, 36, 29, 32]
e = [32, 1, 2, 3, 4, 5, 4, 5, 6, 7, 8, 9, 8, 9, 10, 11, 12, 13, 12, 13, 14, 15, 16, 17, 16, 17, 18, 19, 20, 21, 20, 21, 22, 23, 24, 25, 24, 25, 26, 27, 28, 29, 28, 29, 30, 31, 32, 1]
s_box = [[[14, 4, 13, 1, 2, 15, 11, 8, 3, 10, 6, 12, 5, 9, 0, 7], [0, 15, 7, 4, 14, 2, 13, 1, 10, 6, 12, 11, 9, 5, 3, 8], [4, 1, 14, 8, 13, 6, 2, 11, 15, 12, 9, 7, 3, 10, 5, 0], [15, 12, 8, 2, 4, 9, 1, 7, 5, 11, 3, 14, 10, 0, 6, 13]], [[15, 1, 8, 14, 6, 11, 3, 4, 9, 7, 2, 13, 12, 0, 5, 10], [3, 13, 4, 7, 15, 2, 8, 14, 12, 0, 1, 10, 6, 9, 11, 5], [0, 14, 7, 11, 10, 4, 13, 1, 5, 8, 12, 6, 9, 3, 2, 15], [13, 8, 10, 1, 3, 15, 4, 2, 11, 6, 7, 12, 0, 5, 14, 9]], [[10, 0, 9, 14, 6, 3, 15, 5, 1, 13, 12, 7, 11, 4, 2, 8], [13, 7, 0, 9, 3, 4, 6, 10, 2, 8, 5, 14, 12, 11, 15, 1], [13, 6, 4, 9, 8, 15, 3, 0, 11, 1, 2, 12, 5, 10, 14, 7], [1, 10, 13, 0, 6, 9, 8, 7, 4, 15, 14, 3, 11, 5, 2, 12]], [[7, 13, 14, 3, 0, 6, 9, 10, 1, 2, 8, 5, 11, 12, 4, 15], [13, 8, 11, 5, 6, 15, 0, 3, 4, 7, 2, 12, 1, 10, 14, 9], [10, 6, 9, 0, 12, 11, 7, 13, 15, 1, 3, 14, 5, 2, 8, 4], [3, 15, 0, 6, 10, 1, 13, 8, 9, 4, 5, 11, 12, 7, 2, 14]], [[2, 12, 4, 1, 7, 10, 11, 6, 8, 5, 3, 15, 13, 0, 14, 9], [14, 11, 2, 12, 4, 7, 13, 1, 5, 0, 15, 10, 3, 9, 8, 6], [4, 2, 1, 11, 10, 13, 7, 8, 15, 9, 12, 5, 6, 3, 0, 14], [11, 8, 12, 7, 1, 14, 2, 13, 6, 15, 0, 9, 10, 4, 5, 3]], [[12, 1, 10, 15, 9, 2, 6, 8, 0, 13, 3, 4, 14, 7, 5, 11], [10, 15, 4, 2, 7, 12, 9, 5, 6, 1, 13, 14, 0, 11, 3, 8], [9, 14, 15, 5, 2, 8, 12, 3, 7, 0, 4, 10, 1, 13, 11, 6], [4, 3, 2, 12, 9, 5, 15, 10, 11, 14, 1, 7, 6, 0, 8, 13]], [[4, 11, 2, 14, 15, 0, 8, 13, 3, 12, 9, 7, 5, 10, 6, 1], [13, 0, 11, 7, 4, 9, 1, 10, 14, 3, 5, 12, 2, 15, 8, 6], [1, 4, 11, 13, 12, 3, 7, 14, 10, 15, 6, 8, 0, 5, 9, 2], [6, 11, 13, 8, 1, 4, 10, 7, 9, 5, 0, 15, 14, 2, 3, 12]], [[13, 2, 8, 4, 6, 15, 11, 1, 10, 9, 3, 14, 5, 0, 12, 7], [1, 15, 13, 8, 10, 3, 7, 4, 12, 5, 6, 11, 0, 14, 9, 2], [7, 11, 4, 1, 9, 12, 14, 2, 0, 6, 10, 13, 15, 3, 5, 8], [2, 1, 14, 7, 4, 10, 8, 13, 15, 12, 9, 0, 3, 5, 6, 11]]]
p = [16, 7, 20, 21, 29, 12, 28, 17, 1, 15, 23, 26, 5, 18, 31, 10, 2, 8, 24, 14, 32, 27, 3, 9, 19, 13, 30, 6, 22, 11, 4, 25]
pi_1 = [40, 8, 48, 16, 56, 24, 64, 32, 39, 7, 47, 15, 55, 23, 63, 31, 38, 6, 46, 14, 54, 22, 62, 30, 37, 5, 45, 13, 53, 21, 61, 29, 36, 4, 44, 12, 52, 20, 60, 28, 35, 3, 43, 11, 51, 19, 59, 27, 34, 2, 42, 10, 50, 18, 58, 26, 33, 1, 41, 9, 49, 17, 57, 25]
shift = [1, 1, 2, 2, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, 2, 1]
def string_to_bit_array(text):
array = list()
for char in text:
binval = binvalue(char, 8)
array.extend([int(x) for x in list(binval)])
return array
def bit_array_to_string(array):
res = ''.join([chr(int(y, 2)) for y in [''.join([str(x) for x in _bytes]) for _bytes in nsplit(array, 8)]])
return res
def binvalue(val, bitsize):
binval = bin(val)[2:] if isinstance(val, int) else bin(ord(val))[2:]
if len(binval) > bitsize:
raise 'binary value larger than the expected size'
while len(binval) < bitsize:
binval = '0' + binval
return binval
def nsplit(s, n):
return [s[k:k + n] for k in range(0, len(s), n)]
encrypt = 1
decrypt = 0
class Des:
def __init__(self):
self.password = None
self.text = None
self.keys = list()
def run(self, key, text, action=ENCRYPT, padding=False):
if len(key) < 8:
raise 'Key Should be 8 bytes long'
elif len(key) > 8:
key = key[:8]
self.password = key
self.text = text
if padding and action == ENCRYPT:
self.addPadding()
elif len(self.text) % 8 != 0:
raise 'Data size should be multiple of 8'
self.generatekeys()
text_blocks = nsplit(self.text, 8)
result = list()
for block in text_blocks:
block = string_to_bit_array(block)
block = self.permut(block, PI)
(g, d) = nsplit(block, 32)
tmp = None
for i in range(16):
d_e = self.expand(d, E)
if action == ENCRYPT:
tmp = self.xor(self.keys[i], d_e)
else:
tmp = self.xor(self.keys[15 - i], d_e)
tmp = self.substitute(tmp)
tmp = self.permut(tmp, P)
tmp = self.xor(g, tmp)
g = d
d = tmp
result += self.permut(d + g, PI_1)
final_res = bit_array_to_string(result)
if padding and action == DECRYPT:
return self.removePadding(final_res)
else:
return final_res
def substitute(self, d_e):
subblocks = nsplit(d_e, 6)
result = list()
for i in range(len(subblocks)):
block = subblocks[i]
row = int(str(block[0]) + str(block[5]), 2)
column = int(''.join([str(x) for x in block[1:][:-1]]), 2)
val = S_BOX[i][row][column]
bin = binvalue(val, 4)
result += [int(x) for x in bin]
return result
def permut(self, block, table):
return [block[x - 1] for x in table]
def expand(self, block, table):
return [block[x - 1] for x in table]
def xor(self, t1, t2):
return [x ^ y for (x, y) in zip(t1, t2)]
def generatekeys(self):
self.keys = []
key = string_to_bit_array(self.password)
key = self.permut(key, CP_1)
(g, d) = nsplit(key, 28)
for i in range(16):
(g, d) = self.shift(g, d, SHIFT[i])
tmp = g + d
self.keys.append(self.permut(tmp, CP_2))
def shift(self, g, d, n):
return (g[n:] + g[:n], d[n:] + d[:n])
def add_padding(self):
pad_len = 8 - len(self.text) % 8
self.text += pad_len * chr(pad_len)
def remove_padding(self, data):
pad_len = ord(data[-1])
return data[:-pad_len]
def encrypt(self, key, text, padding=False):
return self.run(key, text, ENCRYPT, padding)
def decrypt(self, key, text, padding=False):
return self.run(key, text, DECRYPT, padding)
if __name__ == '__main__':
key = 'secret_k'
text = 'Hello wo'
d = des()
r = d.encrypt(key, text)
r2 = d.decrypt(key, r)
print('Ciphered: r', r)
print('Deciphered: ', r2) |
"""D."""
def fun(a, b, name):
print(a, b , name)
x = (1, 2)
fun(*x, 'fuck')
print(F) | """D."""
def fun(a, b, name):
print(a, b, name)
x = (1, 2)
fun(*x, 'fuck')
print(F) |
"""Errors specific to this library"""
class ScreenConnectError(Exception):
""" Base class for ScreenConnect errors """
@property
def message(self):
""" Returns provided message to construct error """
return self.args[0]
| """Errors specific to this library"""
class Screenconnecterror(Exception):
""" Base class for ScreenConnect errors """
@property
def message(self):
""" Returns provided message to construct error """
return self.args[0] |
# -*- coding: utf-8 -*-
"""
pagarmeapisdk
This file was automatically generated by APIMATIC v3.0 (
https://www.apimatic.io ).
"""
class CreateBankAccountRequest(object):
"""Implementation of the 'CreateBankAccountRequest' model.
Request for creating a bank account
Attributes:
holder_name (string): Bank account holder name
holder_type (string): Bank account holder type
holder_document (string): Bank account holder document
bank (string): Bank
branch_number (string): Branch number
branch_check_digit (string): Branch check digit
account_number (string): Account number
account_check_digit (string): Account check digit
mtype (string): Bank account type
metadata (dict): Metadata
pix_key (string): Pix key
"""
# Create a mapping from Model property names to API property names
_names = {
"holder_name": 'holder_name',
"holder_type": 'holder_type',
"holder_document": 'holder_document',
"bank": 'bank',
"branch_number": 'branch_number',
"branch_check_digit": 'branch_check_digit',
"account_number": 'account_number',
"account_check_digit": 'account_check_digit',
"mtype": 'type',
"metadata": 'metadata',
"pix_key": 'pix_key'
}
def __init__(self,
holder_name=None,
holder_type=None,
holder_document=None,
bank=None,
branch_number=None,
branch_check_digit=None,
account_number=None,
account_check_digit=None,
mtype=None,
metadata=None,
pix_key=None):
"""Constructor for the CreateBankAccountRequest class"""
# Initialize members of the class
self.holder_name = holder_name
self.holder_type = holder_type
self.holder_document = holder_document
self.bank = bank
self.branch_number = branch_number
self.branch_check_digit = branch_check_digit
self.account_number = account_number
self.account_check_digit = account_check_digit
self.mtype = mtype
self.metadata = metadata
self.pix_key = pix_key
@classmethod
def from_dictionary(cls,
dictionary):
"""Creates an instance of this model from a dictionary
Args:
dictionary (dictionary): A dictionary representation of the object
as obtained from the deserialization of the server's response. The
keys MUST match property names in the API description.
Returns:
object: An instance of this structure class.
"""
if dictionary is None:
return None
# Extract variables from the dictionary
holder_name = dictionary.get('holder_name')
holder_type = dictionary.get('holder_type')
holder_document = dictionary.get('holder_document')
bank = dictionary.get('bank')
branch_number = dictionary.get('branch_number')
branch_check_digit = dictionary.get('branch_check_digit')
account_number = dictionary.get('account_number')
account_check_digit = dictionary.get('account_check_digit')
mtype = dictionary.get('type')
metadata = dictionary.get('metadata')
pix_key = dictionary.get('pix_key')
# Return an object of this model
return cls(holder_name,
holder_type,
holder_document,
bank,
branch_number,
branch_check_digit,
account_number,
account_check_digit,
mtype,
metadata,
pix_key)
| """
pagarmeapisdk
This file was automatically generated by APIMATIC v3.0 (
https://www.apimatic.io ).
"""
class Createbankaccountrequest(object):
"""Implementation of the 'CreateBankAccountRequest' model.
Request for creating a bank account
Attributes:
holder_name (string): Bank account holder name
holder_type (string): Bank account holder type
holder_document (string): Bank account holder document
bank (string): Bank
branch_number (string): Branch number
branch_check_digit (string): Branch check digit
account_number (string): Account number
account_check_digit (string): Account check digit
mtype (string): Bank account type
metadata (dict): Metadata
pix_key (string): Pix key
"""
_names = {'holder_name': 'holder_name', 'holder_type': 'holder_type', 'holder_document': 'holder_document', 'bank': 'bank', 'branch_number': 'branch_number', 'branch_check_digit': 'branch_check_digit', 'account_number': 'account_number', 'account_check_digit': 'account_check_digit', 'mtype': 'type', 'metadata': 'metadata', 'pix_key': 'pix_key'}
def __init__(self, holder_name=None, holder_type=None, holder_document=None, bank=None, branch_number=None, branch_check_digit=None, account_number=None, account_check_digit=None, mtype=None, metadata=None, pix_key=None):
"""Constructor for the CreateBankAccountRequest class"""
self.holder_name = holder_name
self.holder_type = holder_type
self.holder_document = holder_document
self.bank = bank
self.branch_number = branch_number
self.branch_check_digit = branch_check_digit
self.account_number = account_number
self.account_check_digit = account_check_digit
self.mtype = mtype
self.metadata = metadata
self.pix_key = pix_key
@classmethod
def from_dictionary(cls, dictionary):
"""Creates an instance of this model from a dictionary
Args:
dictionary (dictionary): A dictionary representation of the object
as obtained from the deserialization of the server's response. The
keys MUST match property names in the API description.
Returns:
object: An instance of this structure class.
"""
if dictionary is None:
return None
holder_name = dictionary.get('holder_name')
holder_type = dictionary.get('holder_type')
holder_document = dictionary.get('holder_document')
bank = dictionary.get('bank')
branch_number = dictionary.get('branch_number')
branch_check_digit = dictionary.get('branch_check_digit')
account_number = dictionary.get('account_number')
account_check_digit = dictionary.get('account_check_digit')
mtype = dictionary.get('type')
metadata = dictionary.get('metadata')
pix_key = dictionary.get('pix_key')
return cls(holder_name, holder_type, holder_document, bank, branch_number, branch_check_digit, account_number, account_check_digit, mtype, metadata, pix_key) |
"""Python implementations of built-in fprime types
This package provides the modules necessary for the representation of fprime types (Fw/Types) package in a Python
context. These standard types are represented as Python classes representing each individual type.
Example:
U32 is represented by fprime.common.modules.serialize.numerical_types.U32Type
Special autocoded types are represented by configurable classes: ArrayType, SerializableType, and EnumType. These
represent a generic version of these classes whose designed properties are set as dynamic properties on the python
class itself.
Example:
Serializables are represented by fprime.common.modules.serialize.serializable_type.SerializableType
SerializableType(typename="MySerializable") is used to specify the Ai serializable's name
"""
| """Python implementations of built-in fprime types
This package provides the modules necessary for the representation of fprime types (Fw/Types) package in a Python
context. These standard types are represented as Python classes representing each individual type.
Example:
U32 is represented by fprime.common.modules.serialize.numerical_types.U32Type
Special autocoded types are represented by configurable classes: ArrayType, SerializableType, and EnumType. These
represent a generic version of these classes whose designed properties are set as dynamic properties on the python
class itself.
Example:
Serializables are represented by fprime.common.modules.serialize.serializable_type.SerializableType
SerializableType(typename="MySerializable") is used to specify the Ai serializable's name
""" |
# Instructions: The following code example would print the data type of x, what data type would that be?
x = 20.5
print(type(x))
'''
Solution:
float
The inexact numbers are float type. Read more here: https://www.w3schools.com/python/python_datatypes.asp
''' | x = 20.5
print(type(x))
'\nSolution: \nfloat\nThe inexact numbers are float type. Read more here: https://www.w3schools.com/python/python_datatypes.asp\n' |
def print_sth(s):
print('print from module2: {}'.format(s))
if __name__ == "__main__":
s = 'test in main'
print_sth(s) | def print_sth(s):
print('print from module2: {}'.format(s))
if __name__ == '__main__':
s = 'test in main'
print_sth(s) |
#
# PySNMP MIB module FC-MGMT-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/FC-MGMT-MIB
# Produced by pysmi-0.3.4 at Wed May 1 11:05:00 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")
ConstraintsUnion, ValueSizeConstraint, SingleValueConstraint, ValueRangeConstraint, ConstraintsIntersection = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsUnion", "ValueSizeConstraint", "SingleValueConstraint", "ValueRangeConstraint", "ConstraintsIntersection")
ifIndex, = mibBuilder.importSymbols("IF-MIB", "ifIndex")
SnmpAdminString, = mibBuilder.importSymbols("SNMP-FRAMEWORK-MIB", "SnmpAdminString")
ModuleCompliance, ObjectGroup, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "ObjectGroup", "NotificationGroup")
ObjectIdentity, MibScalar, MibTable, MibTableRow, MibTableColumn, transmission, NotificationType, Integer32, Counter64, Counter32, ModuleIdentity, Unsigned32, iso, MibIdentifier, Gauge32, Bits, IpAddress, TimeTicks = mibBuilder.importSymbols("SNMPv2-SMI", "ObjectIdentity", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "transmission", "NotificationType", "Integer32", "Counter64", "Counter32", "ModuleIdentity", "Unsigned32", "iso", "MibIdentifier", "Gauge32", "Bits", "IpAddress", "TimeTicks")
DisplayString, TruthValue, TextualConvention = mibBuilder.importSymbols("SNMPv2-TC", "DisplayString", "TruthValue", "TextualConvention")
fcMgmtMIB = ModuleIdentity((1, 3, 6, 1, 2, 1, 10, 56))
fcMgmtMIB.setRevisions(('2005-04-26 00:00',))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
if mibBuilder.loadTexts: fcMgmtMIB.setRevisionsDescriptions(('Initial version of the Fibre Channel Mgmt MIB module.',))
if mibBuilder.loadTexts: fcMgmtMIB.setLastUpdated('200504260000Z')
if mibBuilder.loadTexts: fcMgmtMIB.setOrganization('IETF IPS (IP-Storage) Working Group')
if mibBuilder.loadTexts: fcMgmtMIB.setContactInfo(' Keith McCloghrie Cisco Systems, Inc. Tel: +1 408 526-5260 E-mail: kzm@cisco.com Postal: 170 West Tasman Drive San Jose, CA USA 95134 ')
if mibBuilder.loadTexts: fcMgmtMIB.setDescription('This module defines management information specific to Fibre Channel-attached devices. Copyright (C) The Internet Society (2005). This version of this MIB module is part of RFC 4044; see the RFC itself for full legal notices.')
fcmgmtObjects = MibIdentifier((1, 3, 6, 1, 2, 1, 10, 56, 1))
fcmgmtNotifications = MibIdentifier((1, 3, 6, 1, 2, 1, 10, 56, 2))
fcmgmtNotifPrefix = MibIdentifier((1, 3, 6, 1, 2, 1, 10, 56, 2, 0))
fcmgmtConformance = MibIdentifier((1, 3, 6, 1, 2, 1, 10, 56, 3))
class FcNameIdOrZero(TextualConvention, OctetString):
description = 'The World Wide Name (WWN) associated with a Fibre Channel (FC) entity. WWNs were initially defined as 64-bits in length. The latest definition (for future use) is 128-bits long. The zero-length string value is used in circumstances in which the WWN is unassigned/unknown.'
status = 'current'
subtypeSpec = OctetString.subtypeSpec + ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(8, 8), ValueSizeConstraint(16, 16), )
class FcAddressIdOrZero(TextualConvention, OctetString):
description = 'A Fibre Channel Address ID, a 24-bit value unique within the address space of a Fabric. The zero-length string value is used in circumstances in which the WWN is unassigned/unknown.'
status = 'current'
subtypeSpec = OctetString.subtypeSpec + ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(3, 3), )
class FcDomainIdOrZero(TextualConvention, Integer32):
description = 'The Domain Id (of an FC switch), or zero if the no Domain Id has been assigned.'
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ValueRangeConstraint(0, 239)
class FcPortType(TextualConvention, Unsigned32):
reference = 'The IANA-maintained registry for Fibre Channel port types (http://www.iana.org/).'
description = 'The type of a Fibre Channel port, as indicated by the use of the appropriate value assigned by IANA.'
status = 'current'
class FcClasses(TextualConvention, Bits):
reference = 'Classes of service are described in FC-FS Section 13.'
description = 'A set of Fibre Channel classes of service.'
status = 'current'
namedValues = NamedValues(("classF", 0), ("class1", 1), ("class2", 2), ("class3", 3), ("class4", 4), ("class5", 5), ("class6", 6))
class FcBbCredit(TextualConvention, Integer32):
description = 'The buffer-to-buffer credit of an FC port.'
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ValueRangeConstraint(0, 32767)
class FcBbCreditModel(TextualConvention, Integer32):
description = 'The buffer-to-buffer credit model of an Fx_Port.'
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2))
namedValues = NamedValues(("regular", 1), ("alternate", 2))
class FcDataFieldSize(TextualConvention, Integer32):
description = 'The Receive Data Field Size associated with an FC port.'
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ValueRangeConstraint(128, 2112)
class FcUnitFunctions(TextualConvention, Bits):
description = "A set of functions that a Fibre Channel Interconnect Element or Platform might perform. A value with no bits set indicates the function(s) are unknown. The individual bits have the following meanings: other - none of the following. hub - a device that interconnects L_Ports, but does not operate as an FL_Port. switch - a fabric element conforming to the Fibre Channel switch fabric set of standards (e.g., [FC-SW-3]). bridge - a device that encapsulates Fibre Channel frames within another protocol (e.g., [FC-BB], FC-BB-2). gateway - a device that converts an FC-4 to another protocol (e.g., FCP to iSCSI). host - a computer system that provides end users with services such as computation and storage access. storageSubsys - an integrated collection of storage controllers, storage devices, and necessary software that provides storage services to one or more hosts. storageAccessDev - a device that provides storage management and access for heterogeneous hosts and heterogeneous devices (e.g., medium changer). nas - a device that connects to a network and provides file access services. wdmux - a device that modulates/demodulates each of several data streams (e.g., Fibre Channel protocol data streams) onto/from a different part of the light spectrum in an optical fiber. storageDevice - a disk/tape/etc. device (without the controller and/or software required for it to be a 'storageSubsys')."
status = 'current'
namedValues = NamedValues(("other", 0), ("hub", 1), ("switch", 2), ("bridge", 3), ("gateway", 4), ("host", 5), ("storageSubsys", 6), ("storageAccessDev", 7), ("nas", 8), ("wdmux", 9), ("storageDevice", 10))
fcmInstanceTable = MibTable((1, 3, 6, 1, 2, 1, 10, 56, 1, 1), )
if mibBuilder.loadTexts: fcmInstanceTable.setStatus('current')
if mibBuilder.loadTexts: fcmInstanceTable.setDescription('Information about the local Fibre Channel management instances.')
fcmInstanceEntry = MibTableRow((1, 3, 6, 1, 2, 1, 10, 56, 1, 1, 1), ).setIndexNames((0, "FC-MGMT-MIB", "fcmInstanceIndex"))
if mibBuilder.loadTexts: fcmInstanceEntry.setStatus('current')
if mibBuilder.loadTexts: fcmInstanceEntry.setDescription('A list of attributes for a particular local Fibre Channel management instance.')
fcmInstanceIndex = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 1, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 4294967295)))
if mibBuilder.loadTexts: fcmInstanceIndex.setStatus('current')
if mibBuilder.loadTexts: fcmInstanceIndex.setDescription('An arbitrary integer value that uniquely identifies this instance amongst all local Fibre Channel management instances. It is mandatory to keep this value constant between restarts of the agent, and to make every possible effort to keep it constant across restarts (but note, it is unrealistic to expect it to remain constant across all re-configurations of the local system, e.g., across the replacement of all non- volatile storage).')
fcmInstanceWwn = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 1, 1, 2), FcNameIdOrZero()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmInstanceWwn.setStatus('current')
if mibBuilder.loadTexts: fcmInstanceWwn.setDescription('If the instance has one (or more) WWN(s), then this object contains that (or one of those) WWN(s). If the instance does not have a WWN associated with it, then this object contains the zero-length string.')
fcmInstanceFunctions = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 1, 1, 3), FcUnitFunctions()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmInstanceFunctions.setStatus('current')
if mibBuilder.loadTexts: fcmInstanceFunctions.setDescription('One (or more) Fibre Channel unit functions being performed by this instance.')
fcmInstancePhysicalIndex = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 1, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2147483647))).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmInstancePhysicalIndex.setReference('entPhysicalIndex is defined in the Entity MIB, RFC 2737.')
if mibBuilder.loadTexts: fcmInstancePhysicalIndex.setStatus('current')
if mibBuilder.loadTexts: fcmInstancePhysicalIndex.setDescription("If this management instance corresponds to a physical component (or to a hierarchy of physical components) identified by the Entity-MIB, then this object's value is the value of the entPhysicalIndex of that component (or of the component at the root of that hierarchy). If there is no correspondence to a physical component (or no component that has an entPhysicalIndex value), then the value of this object is zero.")
fcmInstanceSoftwareIndex = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 1, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2147483647))).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmInstanceSoftwareIndex.setReference('hrSWInstalledIndex is defined in the Host Resources MIB, RFC 2790')
if mibBuilder.loadTexts: fcmInstanceSoftwareIndex.setStatus('current')
if mibBuilder.loadTexts: fcmInstanceSoftwareIndex.setDescription("If this management instance corresponds to an installed software module identified in the Host Resources MIB, then this object's value is the value of the hrSWInstalledIndex of that module. If there is no correspondence to an installed software module (or no module that has a hrSWInstalledIndex value), then the value of this object is zero.")
fcmInstanceStatus = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("unknown", 1), ("ok", 2), ("warning", 3), ("failed", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmInstanceStatus.setStatus('current')
if mibBuilder.loadTexts: fcmInstanceStatus.setDescription('Overall status of the Fibre Channel entity/entities managed by this management instance. The value should reflect the most serious status of such entities.')
fcmInstanceTextName = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 1, 1, 7), SnmpAdminString().subtype(subtypeSpec=ValueSizeConstraint(0, 79))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: fcmInstanceTextName.setStatus('current')
if mibBuilder.loadTexts: fcmInstanceTextName.setDescription('A textual name for this management instance and the Fibre Channel entity/entities that it is managing.')
fcmInstanceDescr = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 1, 1, 8), SnmpAdminString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: fcmInstanceDescr.setStatus('current')
if mibBuilder.loadTexts: fcmInstanceDescr.setDescription('A textual description of this management instance and the Fibre Channel entity/entities that it is managing.')
fcmInstanceFabricId = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 1, 1, 9), FcNameIdOrZero()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmInstanceFabricId.setStatus('current')
if mibBuilder.loadTexts: fcmInstanceFabricId.setDescription('The globally unique Fabric Identifier that identifies the fabric to which the Fibre Channel entity/entities managed by this management instance are connected, or, of which they are a part. This is typically the Node WWN of the principal switch of a Fibre Channel fabric. The zero-length string indicates that the fabric identifier is unknown (or not applicable). In the event that the Fibre Channel entity/entities managed by this management instance is/are connected to multiple fabrics, then this object records the first (known) one.')
fcmSwitchTable = MibTable((1, 3, 6, 1, 2, 1, 10, 56, 1, 2), )
if mibBuilder.loadTexts: fcmSwitchTable.setStatus('current')
if mibBuilder.loadTexts: fcmSwitchTable.setDescription('A table of information about Fibre Channel switches that are managed by Fibre Channel management instances. Each Fibre Channel management instance can manage one or more Fibre Channel switches.')
fcmSwitchEntry = MibTableRow((1, 3, 6, 1, 2, 1, 10, 56, 1, 2, 1), ).setIndexNames((0, "FC-MGMT-MIB", "fcmInstanceIndex"), (0, "FC-MGMT-MIB", "fcmSwitchIndex"))
if mibBuilder.loadTexts: fcmSwitchEntry.setStatus('current')
if mibBuilder.loadTexts: fcmSwitchEntry.setDescription('Information about a particular Fibre Channel switch that is managed by the management instance given by fcmInstanceIndex.')
fcmSwitchIndex = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 2, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 4294967295)))
if mibBuilder.loadTexts: fcmSwitchIndex.setStatus('current')
if mibBuilder.loadTexts: fcmSwitchIndex.setDescription('An arbitrary integer that uniquely identifies a Fibre Channel switch amongst those managed by one Fibre Channel management instance. It is mandatory to keep this value constant between restarts of the agent, and to make every possible effort to keep it constant across restarts.')
fcmSwitchDomainId = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 2, 1, 2), FcDomainIdOrZero()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: fcmSwitchDomainId.setStatus('current')
if mibBuilder.loadTexts: fcmSwitchDomainId.setDescription('The Domain Id of this switch. A value of zero indicates that a switch has not (yet) been assigned a Domain Id.')
fcmSwitchPrincipal = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 2, 1, 3), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmSwitchPrincipal.setStatus('current')
if mibBuilder.loadTexts: fcmSwitchPrincipal.setDescription('An indication of whether this switch is the principal switch within its fabric.')
fcmSwitchWWN = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 2, 1, 4), FcNameIdOrZero()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmSwitchWWN.setStatus('current')
if mibBuilder.loadTexts: fcmSwitchWWN.setDescription('The World Wide Name of this switch.')
fcmPortTable = MibTable((1, 3, 6, 1, 2, 1, 10, 56, 1, 3), )
if mibBuilder.loadTexts: fcmPortTable.setReference('RFC 2863, The Interfaces Group MIB, June 2000.')
if mibBuilder.loadTexts: fcmPortTable.setStatus('current')
if mibBuilder.loadTexts: fcmPortTable.setDescription("Information about Fibre Channel ports. Each Fibre Channel port is represented by one entry in the IF-MIB's ifTable.")
fcmPortEntry = MibTableRow((1, 3, 6, 1, 2, 1, 10, 56, 1, 3, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"))
if mibBuilder.loadTexts: fcmPortEntry.setStatus('current')
if mibBuilder.loadTexts: fcmPortEntry.setDescription('Each entry contains information about a specific port.')
fcmPortInstanceIndex = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 3, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmPortInstanceIndex.setStatus('current')
if mibBuilder.loadTexts: fcmPortInstanceIndex.setDescription('The value of fcmInstanceIndex by which the Fibre Channel management instance, which manages this port, is identified in the fcmInstanceTable.')
fcmPortWwn = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 3, 1, 2), FcNameIdOrZero()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmPortWwn.setStatus('current')
if mibBuilder.loadTexts: fcmPortWwn.setDescription('The World Wide Name of the port, or the zero-length string if the port does not have a WWN.')
fcmPortNodeWwn = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 3, 1, 3), FcNameIdOrZero()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmPortNodeWwn.setStatus('current')
if mibBuilder.loadTexts: fcmPortNodeWwn.setDescription('The World Wide Name of the Node that contains this port, or the zero-length string if the port does not have a node WWN.')
fcmPortAdminType = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 3, 1, 4), FcPortType()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: fcmPortAdminType.setStatus('current')
if mibBuilder.loadTexts: fcmPortAdminType.setDescription('The administratively desired type of this port.')
fcmPortOperType = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 3, 1, 5), FcPortType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmPortOperType.setStatus('current')
if mibBuilder.loadTexts: fcmPortOperType.setDescription('The current operational type of this port.')
fcmPortFcCapClass = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 3, 1, 6), FcClasses()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmPortFcCapClass.setStatus('current')
if mibBuilder.loadTexts: fcmPortFcCapClass.setDescription('The classes of service capability of this port.')
fcmPortFcOperClass = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 3, 1, 7), FcClasses()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmPortFcOperClass.setStatus('current')
if mibBuilder.loadTexts: fcmPortFcOperClass.setDescription('The classes of service that are currently operational on this port. For an FL_Port, this is the union of the classes being supported across all attached NL_Ports.')
fcmPortTransmitterType = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 3, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("unknown", 1), ("other", 2), ("shortwave850nm", 3), ("longwave1550nm", 4), ("longwave1310nm", 5), ("electrical", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmPortTransmitterType.setReference('FC-GS-3, section 6.1.2.2.3')
if mibBuilder.loadTexts: fcmPortTransmitterType.setStatus('current')
if mibBuilder.loadTexts: fcmPortTransmitterType.setDescription('The technology of the port transceiver.')
fcmPortConnectorType = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 3, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9))).clone(namedValues=NamedValues(("unknown", 1), ("other", 2), ("gbic", 3), ("embedded", 4), ("glm", 5), ("gbicSerialId", 6), ("gbicNoSerialId", 7), ("sfpSerialId", 8), ("sfpNoSerialId", 9)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmPortConnectorType.setReference('FC-GS-3, section 6.1.2.2.4')
if mibBuilder.loadTexts: fcmPortConnectorType.setStatus('current')
if mibBuilder.loadTexts: fcmPortConnectorType.setDescription("The module type of the port connector. This object refers to the hardware implementation of the port. It will be 'embedded' if the hardware equivalent to Gigabit interface card (GBIC) is part of the line card and is unremovable. It will be 'glm' if it's a gigabit link module (GLM). It will be 'gbicSerialId' if the GBIC serial id can be read, else it will be 'gbicNoSerialId'. It will be 'sfpSerialId' if the small form factor (SFP) pluggable GBICs serial id can be read, else it will be 'sfpNoSerialId'.")
fcmPortSerialNumber = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 3, 1, 10), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmPortSerialNumber.setReference('FC-GS-3, section 6.1.2.2.4')
if mibBuilder.loadTexts: fcmPortSerialNumber.setStatus('current')
if mibBuilder.loadTexts: fcmPortSerialNumber.setDescription("The serial number associated with the port (e.g., for a GBIC). If not applicable, the object's value is a zero- length string.")
fcmPortPhysicalNumber = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 3, 1, 11), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmPortPhysicalNumber.setReference('FC-GS-3, section 6.1.2.2.5')
if mibBuilder.loadTexts: fcmPortPhysicalNumber.setStatus('current')
if mibBuilder.loadTexts: fcmPortPhysicalNumber.setDescription("This is the port's 'Physical Port Number' as defined by GS-3.")
fcmPortAdminSpeed = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 3, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8))).clone(namedValues=NamedValues(("auto", 1), ("eighthGbs", 2), ("quarterGbs", 3), ("halfGbs", 4), ("oneGbs", 5), ("twoGbs", 6), ("fourGbs", 7), ("tenGbs", 8)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: fcmPortAdminSpeed.setStatus('current')
if mibBuilder.loadTexts: fcmPortAdminSpeed.setDescription("The speed of the interface: 'auto' - auto-negotiation 'tenGbs' - 10Gbs 'fourGbs' - 4Gbs 'twoGbs' - 2Gbs 'oneGbs' - 1Gbs 'halfGbs' - 500Mbs 'quarterGbs' - 250Mbs 'eighthGbs' - 125Mbs")
fcmPortCapProtocols = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 3, 1, 13), Bits().clone(namedValues=NamedValues(("unknown", 0), ("loop", 1), ("fabric", 2), ("scsi", 3), ("tcpIp", 4), ("vi", 5), ("ficon", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmPortCapProtocols.setStatus('current')
if mibBuilder.loadTexts: fcmPortCapProtocols.setDescription('A bit mask specifying the higher level protocols that are capable of running over this port. Note that for generic Fx_Ports, E_Ports, and B_Ports, this object will indicate all protocols.')
fcmPortOperProtocols = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 3, 1, 14), Bits().clone(namedValues=NamedValues(("unknown", 0), ("loop", 1), ("fabric", 2), ("scsi", 3), ("tcpIp", 4), ("vi", 5), ("ficon", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmPortOperProtocols.setStatus('current')
if mibBuilder.loadTexts: fcmPortOperProtocols.setDescription("A bit mask specifying the higher level protocols that are currently operational on this port. For Fx_Ports, E_Ports, and B_Ports, this object will typically have the value 'unknown'.")
fcmPortStatsTable = MibTable((1, 3, 6, 1, 2, 1, 10, 56, 1, 4), )
if mibBuilder.loadTexts: fcmPortStatsTable.setStatus('current')
if mibBuilder.loadTexts: fcmPortStatsTable.setDescription('A list of statistics for Fibre Channel ports.')
fcmPortStatsEntry = MibTableRow((1, 3, 6, 1, 2, 1, 10, 56, 1, 4, 1), )
if mibBuilder.loadTexts: fcmPortStatsEntry.setReference('The Interfaces Group MIB, RFC 2863, June 2000.')
fcmPortEntry.registerAugmentions(("FC-MGMT-MIB", "fcmPortStatsEntry"))
fcmPortStatsEntry.setIndexNames(*fcmPortEntry.getIndexNames())
if mibBuilder.loadTexts: fcmPortStatsEntry.setStatus('current')
if mibBuilder.loadTexts: fcmPortStatsEntry.setDescription('An entry containing statistics for a Fibre Channel port. If any counter in this table suffers a discontinuity, the value of ifCounterDiscontinuityTime (defined in the IF-MIB) must be updated.')
fcmPortBBCreditZeros = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 4, 1, 1), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmPortBBCreditZeros.setStatus('current')
if mibBuilder.loadTexts: fcmPortBBCreditZeros.setDescription('The number of transitions in/out of the buffer-to-buffer credit zero state. The other side is not providing any credit.')
fcmPortFullInputBuffers = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 4, 1, 2), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmPortFullInputBuffers.setStatus('current')
if mibBuilder.loadTexts: fcmPortFullInputBuffers.setDescription('The number of occurrences when all input buffers of a port were full and outbound buffer-to-buffer credit transitioned to zero, i.e., there became no credit to provide to other side.')
fcmPortClass2RxFrames = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 4, 1, 3), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmPortClass2RxFrames.setStatus('current')
if mibBuilder.loadTexts: fcmPortClass2RxFrames.setDescription('The number of Class 2 frames received at this port.')
fcmPortClass2RxOctets = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 4, 1, 4), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmPortClass2RxOctets.setStatus('current')
if mibBuilder.loadTexts: fcmPortClass2RxOctets.setDescription('The number of octets contained in Class 2 frames received at this port.')
fcmPortClass2TxFrames = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 4, 1, 5), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmPortClass2TxFrames.setStatus('current')
if mibBuilder.loadTexts: fcmPortClass2TxFrames.setDescription('The number of Class 2 frames transmitted out of this port.')
fcmPortClass2TxOctets = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 4, 1, 6), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmPortClass2TxOctets.setStatus('current')
if mibBuilder.loadTexts: fcmPortClass2TxOctets.setDescription('The number of octets contained in Class 2 frames transmitted out of this port.')
fcmPortClass2Discards = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 4, 1, 7), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmPortClass2Discards.setStatus('current')
if mibBuilder.loadTexts: fcmPortClass2Discards.setDescription('The number of Class 2 frames that were discarded upon reception at this port.')
fcmPortClass2RxFbsyFrames = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 4, 1, 8), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmPortClass2RxFbsyFrames.setStatus('current')
if mibBuilder.loadTexts: fcmPortClass2RxFbsyFrames.setDescription('The number of times that F_BSY was returned to this port as a result of a Class 2 frame that could not be delivered to the other end of the link. This can occur when either the fabric or the destination port is temporarily busy. Note that this counter will never increment for an F_Port.')
fcmPortClass2RxPbsyFrames = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 4, 1, 9), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmPortClass2RxPbsyFrames.setStatus('current')
if mibBuilder.loadTexts: fcmPortClass2RxPbsyFrames.setDescription('The number of times that P_BSY was returned to this port as a result of a Class 2 frame that could not be delivered to the other end of the link. This can occur when the destination port is temporarily busy.')
fcmPortClass2RxFrjtFrames = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 4, 1, 10), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmPortClass2RxFrjtFrames.setStatus('current')
if mibBuilder.loadTexts: fcmPortClass2RxFrjtFrames.setDescription('The number of times that F_RJT was returned to this port as a result of a Class 2 frame that was rejected by the fabric. Note that this counter will never increment for an F_Port.')
fcmPortClass2RxPrjtFrames = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 4, 1, 11), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmPortClass2RxPrjtFrames.setStatus('current')
if mibBuilder.loadTexts: fcmPortClass2RxPrjtFrames.setDescription('The number of times that P_RJT was returned to this port as a result of a Class 2 frame that was rejected at the destination N_Port.')
fcmPortClass2TxFbsyFrames = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 4, 1, 12), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmPortClass2TxFbsyFrames.setStatus('current')
if mibBuilder.loadTexts: fcmPortClass2TxFbsyFrames.setDescription('The number of times that F_BSY was generated by this port as a result of a Class 2 frame that could not be delivered because either the Fabric or the destination port was temporarily busy. Note that this counter will never increment for an N_Port.')
fcmPortClass2TxPbsyFrames = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 4, 1, 13), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmPortClass2TxPbsyFrames.setStatus('current')
if mibBuilder.loadTexts: fcmPortClass2TxPbsyFrames.setDescription('The number of times that P_BSY was generated by this port as a result of a Class 2 frame that could not be delivered because the destination port was temporarily busy. Note that this counter will never increment for an F_Port.')
fcmPortClass2TxFrjtFrames = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 4, 1, 14), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmPortClass2TxFrjtFrames.setStatus('current')
if mibBuilder.loadTexts: fcmPortClass2TxFrjtFrames.setDescription('The number of times that F_RJT was generated by this port as a result of a Class 2 frame being rejected by the fabric. Note that this counter will never increment for an N_Port.')
fcmPortClass2TxPrjtFrames = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 4, 1, 15), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmPortClass2TxPrjtFrames.setStatus('current')
if mibBuilder.loadTexts: fcmPortClass2TxPrjtFrames.setDescription('The number of times that P_RJT was generated by this port as a result of a Class 2 frame being rejected at the destination N_Port. Note that this counter will never increment for an F_Port.')
fcmPortClass3RxFrames = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 4, 1, 16), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmPortClass3RxFrames.setStatus('current')
if mibBuilder.loadTexts: fcmPortClass3RxFrames.setDescription('The number of Class 3 frames received at this port.')
fcmPortClass3RxOctets = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 4, 1, 17), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmPortClass3RxOctets.setStatus('current')
if mibBuilder.loadTexts: fcmPortClass3RxOctets.setDescription('The number of octets contained in Class 3 frames received at this port.')
fcmPortClass3TxFrames = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 4, 1, 18), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmPortClass3TxFrames.setStatus('current')
if mibBuilder.loadTexts: fcmPortClass3TxFrames.setDescription('The number of Class 3 frames transmitted out of this port.')
fcmPortClass3TxOctets = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 4, 1, 19), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmPortClass3TxOctets.setStatus('current')
if mibBuilder.loadTexts: fcmPortClass3TxOctets.setDescription('The number of octets contained in Class 3 frames transmitted out of this port.')
fcmPortClass3Discards = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 4, 1, 20), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmPortClass3Discards.setStatus('current')
if mibBuilder.loadTexts: fcmPortClass3Discards.setDescription('The number of Class 3 frames that were discarded upon reception at this port.')
fcmPortClassFRxFrames = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 4, 1, 21), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmPortClassFRxFrames.setStatus('current')
if mibBuilder.loadTexts: fcmPortClassFRxFrames.setDescription('The number of Class F frames received at this port.')
fcmPortClassFRxOctets = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 4, 1, 22), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmPortClassFRxOctets.setStatus('current')
if mibBuilder.loadTexts: fcmPortClassFRxOctets.setDescription('The number of octets contained in Class F frames received at this port.')
fcmPortClassFTxFrames = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 4, 1, 23), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmPortClassFTxFrames.setStatus('current')
if mibBuilder.loadTexts: fcmPortClassFTxFrames.setDescription('The number of Class F frames transmitted out of this port.')
fcmPortClassFTxOctets = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 4, 1, 24), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmPortClassFTxOctets.setStatus('current')
if mibBuilder.loadTexts: fcmPortClassFTxOctets.setDescription('The number of octets contained in Class F frames transmitted out of this port.')
fcmPortClassFDiscards = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 4, 1, 25), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmPortClassFDiscards.setStatus('current')
if mibBuilder.loadTexts: fcmPortClassFDiscards.setDescription('The number of Class F frames that were discarded upon reception at this port.')
fcmPortLcStatsTable = MibTable((1, 3, 6, 1, 2, 1, 10, 56, 1, 5), )
if mibBuilder.loadTexts: fcmPortLcStatsTable.setStatus('current')
if mibBuilder.loadTexts: fcmPortLcStatsTable.setDescription('A list of Counter32-based statistics for systems that do not support Counter64.')
fcmPortLcStatsEntry = MibTableRow((1, 3, 6, 1, 2, 1, 10, 56, 1, 5, 1), )
if mibBuilder.loadTexts: fcmPortLcStatsEntry.setReference('The Interfaces Group MIB, RFC 2863, June 2000.')
fcmPortEntry.registerAugmentions(("FC-MGMT-MIB", "fcmPortLcStatsEntry"))
fcmPortLcStatsEntry.setIndexNames(*fcmPortEntry.getIndexNames())
if mibBuilder.loadTexts: fcmPortLcStatsEntry.setStatus('current')
if mibBuilder.loadTexts: fcmPortLcStatsEntry.setDescription('An entry containing low-capacity (i.e., based on Counter32) statistics for a Fibre Channel port. If any counter in this table suffers a discontinuity, the value of ifCounterDiscontinuityTime (defined in the IF-MIB) must be updated.')
fcmPortLcBBCreditZeros = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 5, 1, 1), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmPortLcBBCreditZeros.setStatus('current')
if mibBuilder.loadTexts: fcmPortLcBBCreditZeros.setDescription('The number of transitions in/out of the buffer-to-buffer credit zero state. The other side is not providing any credit.')
fcmPortLcFullInputBuffers = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 5, 1, 2), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmPortLcFullInputBuffers.setStatus('current')
if mibBuilder.loadTexts: fcmPortLcFullInputBuffers.setDescription('The number of occurrences when all input buffers of a port were full and outbound buffer-to-buffer credit transitioned to zero, i.e., there became no credit to provide to other side.')
fcmPortLcClass2RxFrames = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 5, 1, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmPortLcClass2RxFrames.setStatus('current')
if mibBuilder.loadTexts: fcmPortLcClass2RxFrames.setDescription('The number of Class 2 frames received at this port.')
fcmPortLcClass2RxOctets = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 5, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmPortLcClass2RxOctets.setStatus('current')
if mibBuilder.loadTexts: fcmPortLcClass2RxOctets.setDescription('The number of octets contained in Class 2 frames received at this port.')
fcmPortLcClass2TxFrames = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 5, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmPortLcClass2TxFrames.setStatus('current')
if mibBuilder.loadTexts: fcmPortLcClass2TxFrames.setDescription('The number of Class 2 frames transmitted out of this port.')
fcmPortLcClass2TxOctets = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 5, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmPortLcClass2TxOctets.setStatus('current')
if mibBuilder.loadTexts: fcmPortLcClass2TxOctets.setDescription('The number of octets contained in Class 2 frames transmitted out of this port.')
fcmPortLcClass2Discards = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 5, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmPortLcClass2Discards.setStatus('current')
if mibBuilder.loadTexts: fcmPortLcClass2Discards.setDescription('The number of Class 2 frames that were discarded upon reception at this port.')
fcmPortLcClass2RxFbsyFrames = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 5, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmPortLcClass2RxFbsyFrames.setStatus('current')
if mibBuilder.loadTexts: fcmPortLcClass2RxFbsyFrames.setDescription('The number of times that F_BSY was returned to this port as a result of a Class 2 frame that could not be delivered to the other end of the link. This can occur when either the fabric or the destination port is temporarily busy. Note that this counter will never increment for an F_Port.')
fcmPortLcClass2RxPbsyFrames = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 5, 1, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmPortLcClass2RxPbsyFrames.setStatus('current')
if mibBuilder.loadTexts: fcmPortLcClass2RxPbsyFrames.setDescription('The number of times that P_BSY was returned to this port as a result of a Class 2 frame that could not be delivered to the other end of the link. This can occur when the destination port is temporarily busy.')
fcmPortLcClass2RxFrjtFrames = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 5, 1, 10), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmPortLcClass2RxFrjtFrames.setStatus('current')
if mibBuilder.loadTexts: fcmPortLcClass2RxFrjtFrames.setDescription('The number of times that F_RJT was returned to this port as a result of a Class 2 frame that was rejected by the fabric. Note that this counter will never increment for an F_Port.')
fcmPortLcClass2RxPrjtFrames = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 5, 1, 11), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmPortLcClass2RxPrjtFrames.setStatus('current')
if mibBuilder.loadTexts: fcmPortLcClass2RxPrjtFrames.setDescription('The number of times that P_RJT was returned to this port as a result of a Class 2 frame that was rejected at the destination N_Port.')
fcmPortLcClass2TxFbsyFrames = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 5, 1, 12), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmPortLcClass2TxFbsyFrames.setStatus('current')
if mibBuilder.loadTexts: fcmPortLcClass2TxFbsyFrames.setDescription('The number of times that F_BSY was generated by this port as a result of a Class 2 frame that could not be delivered because either the Fabric or the destination port was temporarily busy. Note that this counter will never increment for an N_Port.')
fcmPortLcClass2TxPbsyFrames = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 5, 1, 13), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmPortLcClass2TxPbsyFrames.setStatus('current')
if mibBuilder.loadTexts: fcmPortLcClass2TxPbsyFrames.setDescription('The number of times that P_BSY was generated by this port as a result of a Class 2 frame that could not be delivered because the destination port was temporarily busy. Note that this counter will never increment for an F_Port.')
fcmPortLcClass2TxFrjtFrames = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 5, 1, 14), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmPortLcClass2TxFrjtFrames.setStatus('current')
if mibBuilder.loadTexts: fcmPortLcClass2TxFrjtFrames.setDescription('The number of times that F_RJT was generated by this port as a result of a Class 2 frame being rejected by the fabric. Note that this counter will never increment for an N_Port.')
fcmPortLcClass2TxPrjtFrames = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 5, 1, 15), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmPortLcClass2TxPrjtFrames.setStatus('current')
if mibBuilder.loadTexts: fcmPortLcClass2TxPrjtFrames.setDescription('The number of times that P_RJT was generated by this port as a result of a Class 2 frame being rejected at the destination N_Port. Note that this counter will never increment for an F_Port.')
fcmPortLcClass3RxFrames = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 5, 1, 16), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmPortLcClass3RxFrames.setStatus('current')
if mibBuilder.loadTexts: fcmPortLcClass3RxFrames.setDescription('The number of Class 3 frames received at this port.')
fcmPortLcClass3RxOctets = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 5, 1, 17), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmPortLcClass3RxOctets.setStatus('current')
if mibBuilder.loadTexts: fcmPortLcClass3RxOctets.setDescription('The number of octets contained in Class 3 frames received at this port.')
fcmPortLcClass3TxFrames = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 5, 1, 18), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmPortLcClass3TxFrames.setStatus('current')
if mibBuilder.loadTexts: fcmPortLcClass3TxFrames.setDescription('The number of Class 3 frames transmitted out of this port.')
fcmPortLcClass3TxOctets = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 5, 1, 19), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmPortLcClass3TxOctets.setStatus('current')
if mibBuilder.loadTexts: fcmPortLcClass3TxOctets.setDescription('The number of octets contained in Class 3 frames transmitted out of this port.')
fcmPortLcClass3Discards = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 5, 1, 20), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmPortLcClass3Discards.setStatus('current')
if mibBuilder.loadTexts: fcmPortLcClass3Discards.setDescription('The number of Class 3 frames that were discarded upon reception at this port.')
fcmPortErrorsTable = MibTable((1, 3, 6, 1, 2, 1, 10, 56, 1, 6), )
if mibBuilder.loadTexts: fcmPortErrorsTable.setStatus('current')
if mibBuilder.loadTexts: fcmPortErrorsTable.setDescription('Error counters for Fibre Channel ports.')
fcmPortErrorsEntry = MibTableRow((1, 3, 6, 1, 2, 1, 10, 56, 1, 6, 1), )
if mibBuilder.loadTexts: fcmPortErrorsEntry.setReference('The Interfaces Group MIB, RFC 2863, June 2000.')
fcmPortEntry.registerAugmentions(("FC-MGMT-MIB", "fcmPortErrorsEntry"))
fcmPortErrorsEntry.setIndexNames(*fcmPortEntry.getIndexNames())
if mibBuilder.loadTexts: fcmPortErrorsEntry.setStatus('current')
if mibBuilder.loadTexts: fcmPortErrorsEntry.setDescription('Error counters for a Fibre Channel port. If any counter in this table suffers a discontinuity, the value of ifCounterDiscontinuityTime (defined in the IF-MIB) must be updated.')
fcmPortRxLinkResets = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 6, 1, 1), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmPortRxLinkResets.setStatus('current')
if mibBuilder.loadTexts: fcmPortRxLinkResets.setDescription('The number of Link Reset (LR) Primitive Sequences received.')
fcmPortTxLinkResets = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 6, 1, 2), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmPortTxLinkResets.setStatus('current')
if mibBuilder.loadTexts: fcmPortTxLinkResets.setDescription('The number of Link Reset (LR) Primitive Sequences transmitted.')
fcmPortLinkResets = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 6, 1, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmPortLinkResets.setStatus('current')
if mibBuilder.loadTexts: fcmPortLinkResets.setDescription('The number of times the reset link protocol was initiated on this port. This includes the number of Loop Initialization Primitive (LIP) events on an arbitrated loop port.')
fcmPortRxOfflineSequences = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 6, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmPortRxOfflineSequences.setStatus('current')
if mibBuilder.loadTexts: fcmPortRxOfflineSequences.setDescription('The number of Offline (OLS) Primitive Sequences received at this port.')
fcmPortTxOfflineSequences = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 6, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmPortTxOfflineSequences.setStatus('current')
if mibBuilder.loadTexts: fcmPortTxOfflineSequences.setDescription('The number of Offline (OLS) Primitive Sequences transmitted by this port.')
fcmPortLinkFailures = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 6, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmPortLinkFailures.setReference('FC-PH, rev 4.3, 1 June 1994, section 29.8 [FC-PH].')
if mibBuilder.loadTexts: fcmPortLinkFailures.setStatus('current')
if mibBuilder.loadTexts: fcmPortLinkFailures.setDescription("The number of link failures. This count is part of FC-PH's Link Error Status Block (LESB).")
fcmPortLossofSynchs = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 6, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmPortLossofSynchs.setReference('FC-PH, rev 4.3, 1 June 1994, section 29.8.')
if mibBuilder.loadTexts: fcmPortLossofSynchs.setStatus('current')
if mibBuilder.loadTexts: fcmPortLossofSynchs.setDescription("The number of instances of synchronization loss detected at this port. This count is part of FC-PH's Link Error Status Block (LESB).")
fcmPortLossofSignals = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 6, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmPortLossofSignals.setReference('FC-PH, rev 4.3, 1 June 1994, section 29.8.')
if mibBuilder.loadTexts: fcmPortLossofSignals.setStatus('current')
if mibBuilder.loadTexts: fcmPortLossofSignals.setDescription("The number of instances of signal loss detected at this port. This count is part of FC-PH's Link Error Status Block (LESB).")
fcmPortPrimSeqProtocolErrors = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 6, 1, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmPortPrimSeqProtocolErrors.setReference('FC-PH, rev 4.3, 1 June 1994, section 29.8.')
if mibBuilder.loadTexts: fcmPortPrimSeqProtocolErrors.setStatus('current')
if mibBuilder.loadTexts: fcmPortPrimSeqProtocolErrors.setDescription("The number of primitive sequence protocol errors detected at this port. This count is part of FC-PH's Link Error Status Block (LESB).")
fcmPortInvalidTxWords = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 6, 1, 10), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmPortInvalidTxWords.setReference('FC-PH, rev 4.3, 1 June 1994, section 29.8.')
if mibBuilder.loadTexts: fcmPortInvalidTxWords.setStatus('current')
if mibBuilder.loadTexts: fcmPortInvalidTxWords.setDescription("The number of invalid transmission words received at this port. This count is part of FC-PH's Link Error Status Block (LESB).")
fcmPortInvalidCRCs = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 6, 1, 11), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmPortInvalidCRCs.setReference('FC-PH, rev 4.3, 1 June 1994, section 29.8.')
if mibBuilder.loadTexts: fcmPortInvalidCRCs.setStatus('current')
if mibBuilder.loadTexts: fcmPortInvalidCRCs.setDescription("The number of frames received with an invalid CRC. This count is part of FC-PH's Link Error Status Block (LESB).")
fcmPortInvalidOrderedSets = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 6, 1, 12), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmPortInvalidOrderedSets.setStatus('current')
if mibBuilder.loadTexts: fcmPortInvalidOrderedSets.setDescription('The number of invalid ordered sets received at this port.')
fcmPortFrameTooLongs = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 6, 1, 13), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmPortFrameTooLongs.setStatus('current')
if mibBuilder.loadTexts: fcmPortFrameTooLongs.setDescription('The number of frames received at this port for which the frame length was greater than what was agreed to in FLOGI/PLOGI. This could be caused by losing the end of frame delimiter.')
fcmPortTruncatedFrames = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 6, 1, 14), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmPortTruncatedFrames.setStatus('current')
if mibBuilder.loadTexts: fcmPortTruncatedFrames.setDescription('The number of frames received at this port for which the frame length was less than the minimum indicated by the frame header - normally 24 bytes, but it could be more if the DFCTL field indicates an optional header should have been present.')
fcmPortAddressErrors = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 6, 1, 15), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmPortAddressErrors.setStatus('current')
if mibBuilder.loadTexts: fcmPortAddressErrors.setDescription('The number of frames received with unknown addressing; for example, an unknown SID or DID.')
fcmPortDelimiterErrors = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 6, 1, 16), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmPortDelimiterErrors.setStatus('current')
if mibBuilder.loadTexts: fcmPortDelimiterErrors.setDescription('The number of invalid frame delimiters received at this port. An example is a frame with a class 2 start and a class 3 at the end.')
fcmPortEncodingDisparityErrors = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 6, 1, 17), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmPortEncodingDisparityErrors.setStatus('current')
if mibBuilder.loadTexts: fcmPortEncodingDisparityErrors.setDescription('The number of encoding disparity errors received at this port.')
fcmPortOtherErrors = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 6, 1, 18), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmPortOtherErrors.setStatus('current')
if mibBuilder.loadTexts: fcmPortOtherErrors.setDescription('The number of errors that were detected on this port but not counted by any other error counter in this row.')
fcmFxPortTable = MibTable((1, 3, 6, 1, 2, 1, 10, 56, 1, 7), )
if mibBuilder.loadTexts: fcmFxPortTable.setStatus('current')
if mibBuilder.loadTexts: fcmFxPortTable.setDescription('Additional information about Fibre Channel ports that is specific to Fx_Ports. This table will contain one entry for each fcmPortTable entry that represents an Fx_Port.')
fcmFxPortEntry = MibTableRow((1, 3, 6, 1, 2, 1, 10, 56, 1, 7, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"))
if mibBuilder.loadTexts: fcmFxPortEntry.setStatus('current')
if mibBuilder.loadTexts: fcmFxPortEntry.setDescription('Each entry contains information about a specific Fx_Port.')
fcmFxPortRatov = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 7, 1, 1), Unsigned32()).setUnits('milliseconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmFxPortRatov.setStatus('current')
if mibBuilder.loadTexts: fcmFxPortRatov.setDescription('The Resource_Allocation_Timeout Value configured for this Fx_Port. This is used as the timeout value for determining when to reuse an Nx_Port resource such as a Recovery_Qualifier. It represents the Error_Detect_Timeout value (see fcmFxPortEdtov) plus twice the maximum time that a frame may be delayed within the Fabric and still be delivered.')
fcmFxPortEdtov = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 7, 1, 2), Unsigned32()).setUnits('milliseconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmFxPortEdtov.setStatus('current')
if mibBuilder.loadTexts: fcmFxPortEdtov.setDescription('The Error_Detect_Timeout value configured for this Fx_Port. This is used as the timeout value for detecting an error condition.')
fcmFxPortRttov = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 7, 1, 3), Unsigned32()).setUnits('milliseconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmFxPortRttov.setStatus('current')
if mibBuilder.loadTexts: fcmFxPortRttov.setDescription('The Receiver_Transmitter_Timeout value of this Fx_Port. This is used by the receiver logic to detect a Loss of Synchronization.')
fcmFxPortHoldTime = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 7, 1, 4), Unsigned32()).setUnits('microseconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmFxPortHoldTime.setStatus('current')
if mibBuilder.loadTexts: fcmFxPortHoldTime.setDescription('The maximum time that this Fx_Port shall hold a frame before discarding the frame if it is unable to deliver the frame. The value 0 means that this Fx_Port does not support this parameter.')
fcmFxPortCapBbCreditMax = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 7, 1, 5), FcBbCredit()).setUnits('buffers').setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmFxPortCapBbCreditMax.setStatus('current')
if mibBuilder.loadTexts: fcmFxPortCapBbCreditMax.setDescription('The maximum number of receive buffers that this port is capable of making available for holding frames from attached Nx_Port(s).')
fcmFxPortCapBbCreditMin = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 7, 1, 6), FcBbCredit()).setUnits('buffers').setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmFxPortCapBbCreditMin.setStatus('current')
if mibBuilder.loadTexts: fcmFxPortCapBbCreditMin.setDescription('The minimum number of receive buffers that this port is capable of making available for holding frames from attached Nx_Port(s).')
fcmFxPortCapDataFieldSizeMax = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 7, 1, 7), FcDataFieldSize()).setUnits('bytes').setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmFxPortCapDataFieldSizeMax.setStatus('current')
if mibBuilder.loadTexts: fcmFxPortCapDataFieldSizeMax.setDescription('The maximum size in bytes of the Data Field in a frame that this Fx_Port is capable of receiving from an attached Nx_Port.')
fcmFxPortCapDataFieldSizeMin = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 7, 1, 8), FcDataFieldSize()).setUnits('bytes').setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmFxPortCapDataFieldSizeMin.setStatus('current')
if mibBuilder.loadTexts: fcmFxPortCapDataFieldSizeMin.setDescription('The minimum size in bytes of the Data Field in a frame that this Fx_Port is capable of receiving from an attached Nx_Port.')
fcmFxPortCapClass2SeqDeliv = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 7, 1, 9), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmFxPortCapClass2SeqDeliv.setStatus('current')
if mibBuilder.loadTexts: fcmFxPortCapClass2SeqDeliv.setDescription('An indication of whether this Fx_Port is capable of supporting Class 2 Sequential Delivery.')
fcmFxPortCapClass3SeqDeliv = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 7, 1, 10), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmFxPortCapClass3SeqDeliv.setStatus('current')
if mibBuilder.loadTexts: fcmFxPortCapClass3SeqDeliv.setDescription('An indication of whether this Fx_Port is capable of supporting Class 3 Sequential Delivery.')
fcmFxPortCapHoldTimeMax = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 7, 1, 11), Unsigned32()).setUnits('microseconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmFxPortCapHoldTimeMax.setStatus('current')
if mibBuilder.loadTexts: fcmFxPortCapHoldTimeMax.setDescription('The maximum holding time that this Fx_Port is capable of supporting.')
fcmFxPortCapHoldTimeMin = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 7, 1, 12), Unsigned32()).setUnits('microseconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmFxPortCapHoldTimeMin.setStatus('current')
if mibBuilder.loadTexts: fcmFxPortCapHoldTimeMin.setDescription('The minimum holding time that this Fx_Port is capable of supporting.')
fcmISPortTable = MibTable((1, 3, 6, 1, 2, 1, 10, 56, 1, 8), )
if mibBuilder.loadTexts: fcmISPortTable.setStatus('current')
if mibBuilder.loadTexts: fcmISPortTable.setDescription('Additional information about E_Ports, B_Ports, and any other type of Fibre Channel port to which inter-switch links can be connected. This table will contain one entry for each fcmPortTable entry that represents such a port.')
fcmISPortEntry = MibTableRow((1, 3, 6, 1, 2, 1, 10, 56, 1, 8, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"))
if mibBuilder.loadTexts: fcmISPortEntry.setStatus('current')
if mibBuilder.loadTexts: fcmISPortEntry.setDescription('Each entry contains information about a specific port connected to an inter-switch link.')
fcmISPortClassFCredit = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 8, 1, 1), FcBbCredit()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: fcmISPortClassFCredit.setStatus('current')
if mibBuilder.loadTexts: fcmISPortClassFCredit.setDescription('The maximum number of Class F data frames that can be transmitted by the inter-switch port without receipt of ACK or Link_Response frames.')
fcmISPortClassFDataFieldSize = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 8, 1, 2), FcDataFieldSize()).setUnits('bytes').setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmISPortClassFDataFieldSize.setStatus('current')
if mibBuilder.loadTexts: fcmISPortClassFDataFieldSize.setDescription('The Receive Data Field Size that the inter-switch port has agreed to support for Class F frames to/from this port. The size specifies the largest Data Field Size for an FT_1 frame.')
fcmFLoginTable = MibTable((1, 3, 6, 1, 2, 1, 10, 56, 1, 9), )
if mibBuilder.loadTexts: fcmFLoginTable.setStatus('current')
if mibBuilder.loadTexts: fcmFLoginTable.setDescription('A table that contains one entry for each Nx_Port logged- in/attached to a particular Fx_Port in the switch. Each entry contains the services parameters established during the most recent Fabric Login, explicit or implicit. Note that an Fx_Port may have one or more Nx_Ports attached to it.')
fcmFLoginEntry = MibTableRow((1, 3, 6, 1, 2, 1, 10, 56, 1, 9, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"), (0, "FC-MGMT-MIB", "fcmFLoginNxPortIndex"))
if mibBuilder.loadTexts: fcmFLoginEntry.setStatus('current')
if mibBuilder.loadTexts: fcmFLoginEntry.setDescription('An entry containing service parameters established from a successful Fabric Login.')
fcmFLoginNxPortIndex = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 9, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 4294967295)))
if mibBuilder.loadTexts: fcmFLoginNxPortIndex.setReference('The Interfaces Group MIB, RFC 2863, June 2000.')
if mibBuilder.loadTexts: fcmFLoginNxPortIndex.setStatus('current')
if mibBuilder.loadTexts: fcmFLoginNxPortIndex.setDescription('An arbitrary integer that uniquely identifies an Nx_Port amongst all those attached to the Fx_Port indicated by ifIndex. After a value of this object is assigned to a particular Nx_Port, that value can be re-used when and only when it is assigned to the same Nx_Port, or, after a reset of the value of the relevant instance of ifCounterDiscontinuityTime.')
fcmFLoginPortWwn = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 9, 1, 2), FcNameIdOrZero()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmFLoginPortWwn.setStatus('current')
if mibBuilder.loadTexts: fcmFLoginPortWwn.setDescription('The port name of the attached Nx_Port, or the zero-length string if unknown.')
fcmFLoginNodeWwn = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 9, 1, 3), FcNameIdOrZero()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmFLoginNodeWwn.setStatus('current')
if mibBuilder.loadTexts: fcmFLoginNodeWwn.setDescription('The node name of the attached Nx_Port, or the zero-length string if unknown.')
fcmFLoginBbCreditModel = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 9, 1, 4), FcBbCreditModel()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmFLoginBbCreditModel.setStatus('current')
if mibBuilder.loadTexts: fcmFLoginBbCreditModel.setDescription('The buffer-to-buffer credit model in use by the Fx_Port.')
fcmFLoginBbCredit = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 9, 1, 5), FcBbCredit()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmFLoginBbCredit.setStatus('current')
if mibBuilder.loadTexts: fcmFLoginBbCredit.setDescription('The number of buffers available for holding frames to be transmitted to the attached Nx_Port. These buffers are for buffer-to-buffer flow control in the direction from Fx_Port to Nx_Port.')
fcmFLoginClassesAgreed = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 9, 1, 6), FcClasses()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmFLoginClassesAgreed.setStatus('current')
if mibBuilder.loadTexts: fcmFLoginClassesAgreed.setDescription('The Classes of Service that the Fx_Port has agreed to support for this Nx_Port.')
fcmFLoginClass2SeqDelivAgreed = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 9, 1, 7), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmFLoginClass2SeqDelivAgreed.setStatus('current')
if mibBuilder.loadTexts: fcmFLoginClass2SeqDelivAgreed.setDescription('An indication of whether the Fx_Port has agreed to support Class 2 sequential delivery for this Nx_Port. This is only meaningful if Class 2 service has been agreed upon.')
fcmFLoginClass2DataFieldSize = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 9, 1, 8), FcDataFieldSize()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmFLoginClass2DataFieldSize.setStatus('current')
if mibBuilder.loadTexts: fcmFLoginClass2DataFieldSize.setDescription('The Receive Data Field Size that the Fx_Port has agreed to support for Class 2 frames to/from this Nx_Port. The size specifies the largest Data Field Size for an FT_1 frame. This is only meaningful if Class 2 service has been agreed upon.')
fcmFLoginClass3SeqDelivAgreed = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 9, 1, 9), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmFLoginClass3SeqDelivAgreed.setStatus('current')
if mibBuilder.loadTexts: fcmFLoginClass3SeqDelivAgreed.setDescription('An indication of whether the Fx_Port has agreed to support Class 3 sequential delivery for this Nx_Port. This is only meaningful if Class 3 service has been agreed upon.')
fcmFLoginClass3DataFieldSize = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 9, 1, 10), FcDataFieldSize()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmFLoginClass3DataFieldSize.setStatus('current')
if mibBuilder.loadTexts: fcmFLoginClass3DataFieldSize.setDescription('The Receive Data Field Size that the Fx_Port has agreed to support for Class 3 frames to/from this Nx_Port. The size specifies the largest Data Field Size for an FT_1 frame. This is only meaningful if Class 3 service has been agreed upon.')
fcmLinkTable = MibTable((1, 3, 6, 1, 2, 1, 10, 56, 1, 10), )
if mibBuilder.loadTexts: fcmLinkTable.setStatus('current')
if mibBuilder.loadTexts: fcmLinkTable.setDescription("A table containing any Fibre Channel link information that is known to local Fibre Channel managed instances. One end of such a link is typically at a local port, but the table can also contain information on links for which neither end is a local port. If one end of a link terminates locally, then that end is termed 'end1'; the other end is termed 'end2'.")
fcmLinkEntry = MibTableRow((1, 3, 6, 1, 2, 1, 10, 56, 1, 10, 1), ).setIndexNames((0, "FC-MGMT-MIB", "fcmInstanceIndex"), (0, "FC-MGMT-MIB", "fcmLinkIndex"))
if mibBuilder.loadTexts: fcmLinkEntry.setStatus('current')
if mibBuilder.loadTexts: fcmLinkEntry.setDescription("An entry containing information that a particular Fibre Channel managed instance has about a Fibre Channel link. The two ends of the link are called 'end1' and 'end2'.")
fcmLinkIndex = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 10, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 4294967295)))
if mibBuilder.loadTexts: fcmLinkIndex.setStatus('current')
if mibBuilder.loadTexts: fcmLinkIndex.setDescription('An arbitrary integer that uniquely identifies one link within the set of links about which a particular managed instance has information.')
fcmLinkEnd1NodeWwn = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 10, 1, 2), FcNameIdOrZero()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmLinkEnd1NodeWwn.setStatus('current')
if mibBuilder.loadTexts: fcmLinkEnd1NodeWwn.setDescription('The node name of end1, or the zero-length string if unknown.')
fcmLinkEnd1PhysPortNumber = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 10, 1, 3), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmLinkEnd1PhysPortNumber.setReference('FC-GS-3, section 6.1.2.2.5')
if mibBuilder.loadTexts: fcmLinkEnd1PhysPortNumber.setStatus('current')
if mibBuilder.loadTexts: fcmLinkEnd1PhysPortNumber.setDescription('The physical port number of end1, or zero if unknown.')
fcmLinkEnd1PortWwn = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 10, 1, 4), FcNameIdOrZero()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmLinkEnd1PortWwn.setStatus('current')
if mibBuilder.loadTexts: fcmLinkEnd1PortWwn.setDescription("The port WWN of end1, or the zero-length string if unknown. ('end1' is local if this value is equal to the value of fcmPortWwn in one of the rows of the fcmPortTable.)")
fcmLinkEnd2NodeWwn = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 10, 1, 5), FcNameIdOrZero()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmLinkEnd2NodeWwn.setStatus('current')
if mibBuilder.loadTexts: fcmLinkEnd2NodeWwn.setDescription('The node name of end2, or the zero-length string if unknown.')
fcmLinkEnd2PhysPortNumber = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 10, 1, 6), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmLinkEnd2PhysPortNumber.setReference('FC-GS-3, section 6.1.2.2.5')
if mibBuilder.loadTexts: fcmLinkEnd2PhysPortNumber.setStatus('current')
if mibBuilder.loadTexts: fcmLinkEnd2PhysPortNumber.setDescription('The physical port number of end2, or zero if unknown.')
fcmLinkEnd2PortWwn = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 10, 1, 7), FcNameIdOrZero()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmLinkEnd2PortWwn.setStatus('current')
if mibBuilder.loadTexts: fcmLinkEnd2PortWwn.setDescription('The port WWN of end2, or the zero-length string if unknown.')
fcmLinkEnd2AgentAddress = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 10, 1, 8), SnmpAdminString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmLinkEnd2AgentAddress.setReference('FC-GS-3, section 6.1.2.1.7')
if mibBuilder.loadTexts: fcmLinkEnd2AgentAddress.setStatus('current')
if mibBuilder.loadTexts: fcmLinkEnd2AgentAddress.setDescription('The address of the management agent for the Fibre Channel Interconnect Element or Platform of which end2 is a part. The GS-4 specification provides some information about management agents. If the address is unknown, the value of this object is the zero-length string.')
fcmLinkEnd2PortType = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 10, 1, 9), FcPortType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmLinkEnd2PortType.setReference('FC-GS-3, section 6.1.2.2.2')
if mibBuilder.loadTexts: fcmLinkEnd2PortType.setStatus('current')
if mibBuilder.loadTexts: fcmLinkEnd2PortType.setDescription('The port type of end2.')
fcmLinkEnd2UnitType = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 10, 1, 10), FcUnitFunctions()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmLinkEnd2UnitType.setReference('FC-GS-3, sections 6.1.2.1.2 and 6.1.2.3.2')
if mibBuilder.loadTexts: fcmLinkEnd2UnitType.setStatus('current')
if mibBuilder.loadTexts: fcmLinkEnd2UnitType.setDescription('The type of/function(s) performed by the Fibre Channel Interconnect Element or Platform of which end2 is a part.')
fcmLinkEnd2FcAddressId = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 56, 1, 10, 1, 11), FcAddressIdOrZero()).setMaxAccess("readonly")
if mibBuilder.loadTexts: fcmLinkEnd2FcAddressId.setStatus('current')
if mibBuilder.loadTexts: fcmLinkEnd2FcAddressId.setDescription('The Fibre Channel Address ID of end2, or the zero-length string if unknown.')
fcmgmtCompliances = MibIdentifier((1, 3, 6, 1, 2, 1, 10, 56, 3, 1))
fcmgmtGroups = MibIdentifier((1, 3, 6, 1, 2, 1, 10, 56, 3, 2))
fcmgmtCompliance = ModuleCompliance((1, 3, 6, 1, 2, 1, 10, 56, 3, 1, 1)).setObjects(("FC-MGMT-MIB", "fcmInstanceBasicGroup"), ("FC-MGMT-MIB", "fcmPortBasicGroup"), ("FC-MGMT-MIB", "fcmPortErrorsGroup"), ("FC-MGMT-MIB", "fcmPortStatsGroup"), ("FC-MGMT-MIB", "fcmPortClass23StatsGroup"), ("FC-MGMT-MIB", "fcmPortClassFStatsGroup"), ("FC-MGMT-MIB", "fcmPortLcStatsGroup"), ("FC-MGMT-MIB", "fcmSwitchBasicGroup"), ("FC-MGMT-MIB", "fcmSwitchPortGroup"), ("FC-MGMT-MIB", "fcmSwitchLoginGroup"), ("FC-MGMT-MIB", "fcmLinkBasicGroup"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
fcmgmtCompliance = fcmgmtCompliance.setStatus('current')
if mibBuilder.loadTexts: fcmgmtCompliance.setDescription('Describes the requirements for compliance to this Fibre Channel Management MIB.')
fcmInstanceBasicGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 10, 56, 3, 2, 1)).setObjects(("FC-MGMT-MIB", "fcmInstanceWwn"), ("FC-MGMT-MIB", "fcmInstanceFunctions"), ("FC-MGMT-MIB", "fcmInstancePhysicalIndex"), ("FC-MGMT-MIB", "fcmInstanceSoftwareIndex"), ("FC-MGMT-MIB", "fcmInstanceStatus"), ("FC-MGMT-MIB", "fcmInstanceTextName"), ("FC-MGMT-MIB", "fcmInstanceDescr"), ("FC-MGMT-MIB", "fcmInstanceFabricId"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
fcmInstanceBasicGroup = fcmInstanceBasicGroup.setStatus('current')
if mibBuilder.loadTexts: fcmInstanceBasicGroup.setDescription('Basic information about Fibre Channel managed instances.')
fcmSwitchBasicGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 10, 56, 3, 2, 2)).setObjects(("FC-MGMT-MIB", "fcmSwitchDomainId"), ("FC-MGMT-MIB", "fcmSwitchPrincipal"), ("FC-MGMT-MIB", "fcmSwitchWWN"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
fcmSwitchBasicGroup = fcmSwitchBasicGroup.setStatus('current')
if mibBuilder.loadTexts: fcmSwitchBasicGroup.setDescription('Basic information about Fibre Channel switches.')
fcmPortBasicGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 10, 56, 3, 2, 3)).setObjects(("FC-MGMT-MIB", "fcmPortInstanceIndex"), ("FC-MGMT-MIB", "fcmPortWwn"), ("FC-MGMT-MIB", "fcmPortNodeWwn"), ("FC-MGMT-MIB", "fcmPortAdminType"), ("FC-MGMT-MIB", "fcmPortOperType"), ("FC-MGMT-MIB", "fcmPortFcCapClass"), ("FC-MGMT-MIB", "fcmPortFcOperClass"), ("FC-MGMT-MIB", "fcmPortTransmitterType"), ("FC-MGMT-MIB", "fcmPortConnectorType"), ("FC-MGMT-MIB", "fcmPortSerialNumber"), ("FC-MGMT-MIB", "fcmPortPhysicalNumber"), ("FC-MGMT-MIB", "fcmPortAdminSpeed"), ("FC-MGMT-MIB", "fcmPortCapProtocols"), ("FC-MGMT-MIB", "fcmPortOperProtocols"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
fcmPortBasicGroup = fcmPortBasicGroup.setStatus('current')
if mibBuilder.loadTexts: fcmPortBasicGroup.setDescription('Basic information about Fibre Channel ports.')
fcmPortStatsGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 10, 56, 3, 2, 4)).setObjects(("FC-MGMT-MIB", "fcmPortBBCreditZeros"), ("FC-MGMT-MIB", "fcmPortFullInputBuffers"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
fcmPortStatsGroup = fcmPortStatsGroup.setStatus('current')
if mibBuilder.loadTexts: fcmPortStatsGroup.setDescription('Traffic statistics, which are not specific to any one class of service, for Fibre Channel ports.')
fcmPortClass23StatsGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 10, 56, 3, 2, 5)).setObjects(("FC-MGMT-MIB", "fcmPortClass2RxFrames"), ("FC-MGMT-MIB", "fcmPortClass2RxOctets"), ("FC-MGMT-MIB", "fcmPortClass2TxFrames"), ("FC-MGMT-MIB", "fcmPortClass2TxOctets"), ("FC-MGMT-MIB", "fcmPortClass2Discards"), ("FC-MGMT-MIB", "fcmPortClass2RxFbsyFrames"), ("FC-MGMT-MIB", "fcmPortClass2RxPbsyFrames"), ("FC-MGMT-MIB", "fcmPortClass2RxFrjtFrames"), ("FC-MGMT-MIB", "fcmPortClass2RxPrjtFrames"), ("FC-MGMT-MIB", "fcmPortClass2TxFbsyFrames"), ("FC-MGMT-MIB", "fcmPortClass2TxPbsyFrames"), ("FC-MGMT-MIB", "fcmPortClass2TxFrjtFrames"), ("FC-MGMT-MIB", "fcmPortClass2TxPrjtFrames"), ("FC-MGMT-MIB", "fcmPortClass3RxFrames"), ("FC-MGMT-MIB", "fcmPortClass3RxOctets"), ("FC-MGMT-MIB", "fcmPortClass3TxFrames"), ("FC-MGMT-MIB", "fcmPortClass3TxOctets"), ("FC-MGMT-MIB", "fcmPortClass3Discards"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
fcmPortClass23StatsGroup = fcmPortClass23StatsGroup.setStatus('current')
if mibBuilder.loadTexts: fcmPortClass23StatsGroup.setDescription('Traffic statistics for Class 2 and Class 3 traffic on Fibre Channel ports.')
fcmPortClassFStatsGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 10, 56, 3, 2, 6)).setObjects(("FC-MGMT-MIB", "fcmPortClassFRxFrames"), ("FC-MGMT-MIB", "fcmPortClassFRxOctets"), ("FC-MGMT-MIB", "fcmPortClassFTxFrames"), ("FC-MGMT-MIB", "fcmPortClassFTxOctets"), ("FC-MGMT-MIB", "fcmPortClassFDiscards"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
fcmPortClassFStatsGroup = fcmPortClassFStatsGroup.setStatus('current')
if mibBuilder.loadTexts: fcmPortClassFStatsGroup.setDescription('Traffic statistics for Class F traffic on Fibre Channel ports.')
fcmPortLcStatsGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 10, 56, 3, 2, 7)).setObjects(("FC-MGMT-MIB", "fcmPortLcBBCreditZeros"), ("FC-MGMT-MIB", "fcmPortLcFullInputBuffers"), ("FC-MGMT-MIB", "fcmPortLcClass2RxFrames"), ("FC-MGMT-MIB", "fcmPortLcClass2RxOctets"), ("FC-MGMT-MIB", "fcmPortLcClass2TxFrames"), ("FC-MGMT-MIB", "fcmPortLcClass2TxOctets"), ("FC-MGMT-MIB", "fcmPortLcClass2Discards"), ("FC-MGMT-MIB", "fcmPortLcClass3Discards"), ("FC-MGMT-MIB", "fcmPortLcClass3RxFrames"), ("FC-MGMT-MIB", "fcmPortLcClass3RxOctets"), ("FC-MGMT-MIB", "fcmPortLcClass3TxFrames"), ("FC-MGMT-MIB", "fcmPortLcClass3TxOctets"), ("FC-MGMT-MIB", "fcmPortLcClass2RxFbsyFrames"), ("FC-MGMT-MIB", "fcmPortLcClass2RxPbsyFrames"), ("FC-MGMT-MIB", "fcmPortLcClass2RxFrjtFrames"), ("FC-MGMT-MIB", "fcmPortLcClass2RxPrjtFrames"), ("FC-MGMT-MIB", "fcmPortLcClass2TxFbsyFrames"), ("FC-MGMT-MIB", "fcmPortLcClass2TxPbsyFrames"), ("FC-MGMT-MIB", "fcmPortLcClass2TxFrjtFrames"), ("FC-MGMT-MIB", "fcmPortLcClass2TxPrjtFrames"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
fcmPortLcStatsGroup = fcmPortLcStatsGroup.setStatus('current')
if mibBuilder.loadTexts: fcmPortLcStatsGroup.setDescription('Low-capacity (32-bit) statistics for Fibre Channel ports.')
fcmPortErrorsGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 10, 56, 3, 2, 8)).setObjects(("FC-MGMT-MIB", "fcmPortRxLinkResets"), ("FC-MGMT-MIB", "fcmPortTxLinkResets"), ("FC-MGMT-MIB", "fcmPortLinkResets"), ("FC-MGMT-MIB", "fcmPortRxOfflineSequences"), ("FC-MGMT-MIB", "fcmPortTxOfflineSequences"), ("FC-MGMT-MIB", "fcmPortLinkFailures"), ("FC-MGMT-MIB", "fcmPortLossofSynchs"), ("FC-MGMT-MIB", "fcmPortLossofSignals"), ("FC-MGMT-MIB", "fcmPortPrimSeqProtocolErrors"), ("FC-MGMT-MIB", "fcmPortInvalidTxWords"), ("FC-MGMT-MIB", "fcmPortInvalidCRCs"), ("FC-MGMT-MIB", "fcmPortInvalidOrderedSets"), ("FC-MGMT-MIB", "fcmPortFrameTooLongs"), ("FC-MGMT-MIB", "fcmPortTruncatedFrames"), ("FC-MGMT-MIB", "fcmPortAddressErrors"), ("FC-MGMT-MIB", "fcmPortDelimiterErrors"), ("FC-MGMT-MIB", "fcmPortEncodingDisparityErrors"), ("FC-MGMT-MIB", "fcmPortOtherErrors"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
fcmPortErrorsGroup = fcmPortErrorsGroup.setStatus('current')
if mibBuilder.loadTexts: fcmPortErrorsGroup.setDescription('Error statistics for Fibre Channel ports.')
fcmSwitchPortGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 10, 56, 3, 2, 9)).setObjects(("FC-MGMT-MIB", "fcmFxPortRatov"), ("FC-MGMT-MIB", "fcmFxPortEdtov"), ("FC-MGMT-MIB", "fcmFxPortRttov"), ("FC-MGMT-MIB", "fcmFxPortHoldTime"), ("FC-MGMT-MIB", "fcmFxPortCapBbCreditMax"), ("FC-MGMT-MIB", "fcmFxPortCapBbCreditMin"), ("FC-MGMT-MIB", "fcmFxPortCapDataFieldSizeMax"), ("FC-MGMT-MIB", "fcmFxPortCapDataFieldSizeMin"), ("FC-MGMT-MIB", "fcmFxPortCapClass2SeqDeliv"), ("FC-MGMT-MIB", "fcmFxPortCapClass3SeqDeliv"), ("FC-MGMT-MIB", "fcmFxPortCapHoldTimeMax"), ("FC-MGMT-MIB", "fcmFxPortCapHoldTimeMin"), ("FC-MGMT-MIB", "fcmISPortClassFCredit"), ("FC-MGMT-MIB", "fcmISPortClassFDataFieldSize"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
fcmSwitchPortGroup = fcmSwitchPortGroup.setStatus('current')
if mibBuilder.loadTexts: fcmSwitchPortGroup.setDescription('Information about ports on a Fibre Channel switch.')
fcmSwitchLoginGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 10, 56, 3, 2, 10)).setObjects(("FC-MGMT-MIB", "fcmFLoginPortWwn"), ("FC-MGMT-MIB", "fcmFLoginNodeWwn"), ("FC-MGMT-MIB", "fcmFLoginBbCreditModel"), ("FC-MGMT-MIB", "fcmFLoginBbCredit"), ("FC-MGMT-MIB", "fcmFLoginClassesAgreed"), ("FC-MGMT-MIB", "fcmFLoginClass2SeqDelivAgreed"), ("FC-MGMT-MIB", "fcmFLoginClass2DataFieldSize"), ("FC-MGMT-MIB", "fcmFLoginClass3SeqDelivAgreed"), ("FC-MGMT-MIB", "fcmFLoginClass3DataFieldSize"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
fcmSwitchLoginGroup = fcmSwitchLoginGroup.setStatus('current')
if mibBuilder.loadTexts: fcmSwitchLoginGroup.setDescription('Information known to a Fibre Channel switch about attached/logged-in Nx_Ports.')
fcmLinkBasicGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 10, 56, 3, 2, 11)).setObjects(("FC-MGMT-MIB", "fcmLinkEnd1NodeWwn"), ("FC-MGMT-MIB", "fcmLinkEnd1PhysPortNumber"), ("FC-MGMT-MIB", "fcmLinkEnd1PortWwn"), ("FC-MGMT-MIB", "fcmLinkEnd2NodeWwn"), ("FC-MGMT-MIB", "fcmLinkEnd2PhysPortNumber"), ("FC-MGMT-MIB", "fcmLinkEnd2PortWwn"), ("FC-MGMT-MIB", "fcmLinkEnd2AgentAddress"), ("FC-MGMT-MIB", "fcmLinkEnd2PortType"), ("FC-MGMT-MIB", "fcmLinkEnd2UnitType"), ("FC-MGMT-MIB", "fcmLinkEnd2FcAddressId"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
fcmLinkBasicGroup = fcmLinkBasicGroup.setStatus('current')
if mibBuilder.loadTexts: fcmLinkBasicGroup.setDescription('Information about Fibre Channel links.')
mibBuilder.exportSymbols("FC-MGMT-MIB", fcmPortOtherErrors=fcmPortOtherErrors, fcmLinkEnd1PhysPortNumber=fcmLinkEnd1PhysPortNumber, FcClasses=FcClasses, fcmFxPortTable=fcmFxPortTable, fcmgmtConformance=fcmgmtConformance, fcmFLoginPortWwn=fcmFLoginPortWwn, fcmPortClass3RxOctets=fcmPortClass3RxOctets, fcmInstanceEntry=fcmInstanceEntry, FcBbCreditModel=FcBbCreditModel, fcmFLoginNxPortIndex=fcmFLoginNxPortIndex, fcmFLoginBbCredit=fcmFLoginBbCredit, fcmPortEntry=fcmPortEntry, fcmLinkEnd2PhysPortNumber=fcmLinkEnd2PhysPortNumber, FcAddressIdOrZero=FcAddressIdOrZero, fcmPortClass2RxFrames=fcmPortClass2RxFrames, fcmPortClass2RxPbsyFrames=fcmPortClass2RxPbsyFrames, fcmPortPhysicalNumber=fcmPortPhysicalNumber, fcmPortLossofSynchs=fcmPortLossofSynchs, fcmPortOperProtocols=fcmPortOperProtocols, fcmPortClass3TxFrames=fcmPortClass3TxFrames, fcmPortLinkResets=fcmPortLinkResets, fcmPortStatsGroup=fcmPortStatsGroup, fcmgmtNotifications=fcmgmtNotifications, fcmFxPortCapClass3SeqDeliv=fcmFxPortCapClass3SeqDeliv, fcmPortClassFDiscards=fcmPortClassFDiscards, fcmInstancePhysicalIndex=fcmInstancePhysicalIndex, fcmSwitchTable=fcmSwitchTable, fcmPortLcClass2RxOctets=fcmPortLcClass2RxOctets, fcmPortClass3TxOctets=fcmPortClass3TxOctets, fcmPortLcClass2TxFrames=fcmPortLcClass2TxFrames, fcmFxPortEdtov=fcmFxPortEdtov, fcmSwitchEntry=fcmSwitchEntry, fcmLinkEnd2PortWwn=fcmLinkEnd2PortWwn, fcmPortLcBBCreditZeros=fcmPortLcBBCreditZeros, fcmSwitchBasicGroup=fcmSwitchBasicGroup, fcmInstanceFunctions=fcmInstanceFunctions, fcmPortLcStatsGroup=fcmPortLcStatsGroup, fcmPortNodeWwn=fcmPortNodeWwn, fcmPortClassFStatsGroup=fcmPortClassFStatsGroup, fcmLinkTable=fcmLinkTable, fcmPortClass3Discards=fcmPortClass3Discards, fcmPortLcClass3TxFrames=fcmPortLcClass3TxFrames, fcmFLoginBbCreditModel=fcmFLoginBbCreditModel, fcmPortLcClass2RxFbsyFrames=fcmPortLcClass2RxFbsyFrames, fcmLinkIndex=fcmLinkIndex, fcmPortClassFTxFrames=fcmPortClassFTxFrames, fcmLinkEntry=fcmLinkEntry, fcmPortLcClass2TxPrjtFrames=fcmPortLcClass2TxPrjtFrames, fcmSwitchLoginGroup=fcmSwitchLoginGroup, fcmPortLinkFailures=fcmPortLinkFailures, fcmPortConnectorType=fcmPortConnectorType, fcmPortLcClass2TxFbsyFrames=fcmPortLcClass2TxFbsyFrames, fcmFLoginClass3DataFieldSize=fcmFLoginClass3DataFieldSize, fcmPortFrameTooLongs=fcmPortFrameTooLongs, fcmPortClass2RxFbsyFrames=fcmPortClass2RxFbsyFrames, fcmPortTxOfflineSequences=fcmPortTxOfflineSequences, fcmInstanceFabricId=fcmInstanceFabricId, fcmSwitchWWN=fcmSwitchWWN, fcmFLoginClass2DataFieldSize=fcmFLoginClass2DataFieldSize, fcmPortLcClass2Discards=fcmPortLcClass2Discards, fcmPortBasicGroup=fcmPortBasicGroup, fcmPortClassFTxOctets=fcmPortClassFTxOctets, fcmPortClass2TxFrjtFrames=fcmPortClass2TxFrjtFrames, fcmLinkEnd2NodeWwn=fcmLinkEnd2NodeWwn, fcmLinkEnd2PortType=fcmLinkEnd2PortType, fcmPortCapProtocols=fcmPortCapProtocols, fcmPortClass2TxFbsyFrames=fcmPortClass2TxFbsyFrames, fcmPortClass2TxFrames=fcmPortClass2TxFrames, fcmPortLcStatsTable=fcmPortLcStatsTable, fcmISPortTable=fcmISPortTable, fcMgmtMIB=fcMgmtMIB, fcmSwitchPortGroup=fcmSwitchPortGroup, FcNameIdOrZero=FcNameIdOrZero, fcmPortFcCapClass=fcmPortFcCapClass, fcmInstanceIndex=fcmInstanceIndex, fcmPortClass3RxFrames=fcmPortClass3RxFrames, fcmFLoginClassesAgreed=fcmFLoginClassesAgreed, fcmFLoginTable=fcmFLoginTable, fcmFLoginNodeWwn=fcmFLoginNodeWwn, fcmInstanceStatus=fcmInstanceStatus, fcmInstanceBasicGroup=fcmInstanceBasicGroup, fcmLinkEnd2FcAddressId=fcmLinkEnd2FcAddressId, fcmSwitchDomainId=fcmSwitchDomainId, fcmPortAdminSpeed=fcmPortAdminSpeed, fcmPortLcClass2RxPbsyFrames=fcmPortLcClass2RxPbsyFrames, fcmPortEncodingDisparityErrors=fcmPortEncodingDisparityErrors, fcmPortTransmitterType=fcmPortTransmitterType, fcmFxPortRttov=fcmFxPortRttov, fcmPortLcClass2TxFrjtFrames=fcmPortLcClass2TxFrjtFrames, fcmFxPortCapDataFieldSizeMax=fcmFxPortCapDataFieldSizeMax, fcmPortInvalidTxWords=fcmPortInvalidTxWords, fcmFxPortCapDataFieldSizeMin=fcmFxPortCapDataFieldSizeMin, fcmgmtCompliance=fcmgmtCompliance, fcmPortClass2TxPbsyFrames=fcmPortClass2TxPbsyFrames, fcmInstanceSoftwareIndex=fcmInstanceSoftwareIndex, PYSNMP_MODULE_ID=fcMgmtMIB, fcmFLoginClass2SeqDelivAgreed=fcmFLoginClass2SeqDelivAgreed, fcmPortClass2RxOctets=fcmPortClass2RxOctets, fcmPortLcClass3RxFrames=fcmPortLcClass3RxFrames, fcmInstanceWwn=fcmInstanceWwn, fcmISPortEntry=fcmISPortEntry, fcmPortTable=fcmPortTable, FcUnitFunctions=FcUnitFunctions, fcmPortAdminType=fcmPortAdminType, fcmFxPortHoldTime=fcmFxPortHoldTime, fcmPortFcOperClass=fcmPortFcOperClass, fcmPortClass2TxOctets=fcmPortClass2TxOctets, fcmPortClassFRxOctets=fcmPortClassFRxOctets, fcmFLoginClass3SeqDelivAgreed=fcmFLoginClass3SeqDelivAgreed, FcPortType=FcPortType, fcmPortTxLinkResets=fcmPortTxLinkResets, fcmPortLcClass2TxOctets=fcmPortLcClass2TxOctets, fcmPortInvalidOrderedSets=fcmPortInvalidOrderedSets, fcmLinkEnd1PortWwn=fcmLinkEnd1PortWwn, fcmPortErrorsGroup=fcmPortErrorsGroup, fcmPortLcClass3RxOctets=fcmPortLcClass3RxOctets, fcmPortLcFullInputBuffers=fcmPortLcFullInputBuffers, fcmPortErrorsEntry=fcmPortErrorsEntry, fcmPortLossofSignals=fcmPortLossofSignals, fcmFxPortCapBbCreditMax=fcmFxPortCapBbCreditMax, fcmFxPortCapBbCreditMin=fcmFxPortCapBbCreditMin, fcmPortLcClass2RxFrames=fcmPortLcClass2RxFrames, fcmFLoginEntry=fcmFLoginEntry, fcmPortOperType=fcmPortOperType, fcmInstanceTable=fcmInstanceTable, fcmLinkBasicGroup=fcmLinkBasicGroup, fcmInstanceDescr=fcmInstanceDescr, fcmPortInvalidCRCs=fcmPortInvalidCRCs, fcmgmtObjects=fcmgmtObjects, fcmPortBBCreditZeros=fcmPortBBCreditZeros, fcmPortFullInputBuffers=fcmPortFullInputBuffers, fcmSwitchIndex=fcmSwitchIndex, fcmPortSerialNumber=fcmPortSerialNumber, fcmPortErrorsTable=fcmPortErrorsTable, fcmPortLcClass3TxOctets=fcmPortLcClass3TxOctets, fcmPortWwn=fcmPortWwn, fcmPortRxOfflineSequences=fcmPortRxOfflineSequences, FcBbCredit=FcBbCredit, fcmInstanceTextName=fcmInstanceTextName, fcmPortInstanceIndex=fcmPortInstanceIndex, fcmFxPortCapClass2SeqDeliv=fcmFxPortCapClass2SeqDeliv, fcmPortClass2TxPrjtFrames=fcmPortClass2TxPrjtFrames, fcmgmtGroups=fcmgmtGroups, fcmPortLcClass2RxFrjtFrames=fcmPortLcClass2RxFrjtFrames, fcmLinkEnd2AgentAddress=fcmLinkEnd2AgentAddress, fcmgmtCompliances=fcmgmtCompliances, fcmPortClassFRxFrames=fcmPortClassFRxFrames, fcmPortStatsEntry=fcmPortStatsEntry, fcmgmtNotifPrefix=fcmgmtNotifPrefix, fcmPortClass2RxFrjtFrames=fcmPortClass2RxFrjtFrames, fcmPortClass2Discards=fcmPortClass2Discards, fcmISPortClassFDataFieldSize=fcmISPortClassFDataFieldSize, FcDataFieldSize=FcDataFieldSize, fcmPortLcClass3Discards=fcmPortLcClass3Discards, fcmFxPortEntry=fcmFxPortEntry, fcmPortTruncatedFrames=fcmPortTruncatedFrames, fcmFxPortCapHoldTimeMin=fcmFxPortCapHoldTimeMin, fcmFxPortRatov=fcmFxPortRatov, FcDomainIdOrZero=FcDomainIdOrZero, fcmPortClass2RxPrjtFrames=fcmPortClass2RxPrjtFrames, fcmPortRxLinkResets=fcmPortRxLinkResets, fcmPortAddressErrors=fcmPortAddressErrors, fcmSwitchPrincipal=fcmSwitchPrincipal, fcmPortPrimSeqProtocolErrors=fcmPortPrimSeqProtocolErrors, fcmLinkEnd2UnitType=fcmLinkEnd2UnitType, fcmISPortClassFCredit=fcmISPortClassFCredit, fcmLinkEnd1NodeWwn=fcmLinkEnd1NodeWwn, fcmPortLcClass2RxPrjtFrames=fcmPortLcClass2RxPrjtFrames, fcmPortClass23StatsGroup=fcmPortClass23StatsGroup, fcmPortDelimiterErrors=fcmPortDelimiterErrors, fcmPortLcClass2TxPbsyFrames=fcmPortLcClass2TxPbsyFrames, fcmFxPortCapHoldTimeMax=fcmFxPortCapHoldTimeMax, fcmPortLcStatsEntry=fcmPortLcStatsEntry, fcmPortStatsTable=fcmPortStatsTable)
| (octet_string, integer, object_identifier) = mibBuilder.importSymbols('ASN1', 'OctetString', 'Integer', 'ObjectIdentifier')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(constraints_union, value_size_constraint, single_value_constraint, value_range_constraint, constraints_intersection) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ConstraintsUnion', 'ValueSizeConstraint', 'SingleValueConstraint', 'ValueRangeConstraint', 'ConstraintsIntersection')
(if_index,) = mibBuilder.importSymbols('IF-MIB', 'ifIndex')
(snmp_admin_string,) = mibBuilder.importSymbols('SNMP-FRAMEWORK-MIB', 'SnmpAdminString')
(module_compliance, object_group, notification_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'ObjectGroup', 'NotificationGroup')
(object_identity, mib_scalar, mib_table, mib_table_row, mib_table_column, transmission, notification_type, integer32, counter64, counter32, module_identity, unsigned32, iso, mib_identifier, gauge32, bits, ip_address, time_ticks) = mibBuilder.importSymbols('SNMPv2-SMI', 'ObjectIdentity', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'transmission', 'NotificationType', 'Integer32', 'Counter64', 'Counter32', 'ModuleIdentity', 'Unsigned32', 'iso', 'MibIdentifier', 'Gauge32', 'Bits', 'IpAddress', 'TimeTicks')
(display_string, truth_value, textual_convention) = mibBuilder.importSymbols('SNMPv2-TC', 'DisplayString', 'TruthValue', 'TextualConvention')
fc_mgmt_mib = module_identity((1, 3, 6, 1, 2, 1, 10, 56))
fcMgmtMIB.setRevisions(('2005-04-26 00:00',))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
if mibBuilder.loadTexts:
fcMgmtMIB.setRevisionsDescriptions(('Initial version of the Fibre Channel Mgmt MIB module.',))
if mibBuilder.loadTexts:
fcMgmtMIB.setLastUpdated('200504260000Z')
if mibBuilder.loadTexts:
fcMgmtMIB.setOrganization('IETF IPS (IP-Storage) Working Group')
if mibBuilder.loadTexts:
fcMgmtMIB.setContactInfo(' Keith McCloghrie Cisco Systems, Inc. Tel: +1 408 526-5260 E-mail: kzm@cisco.com Postal: 170 West Tasman Drive San Jose, CA USA 95134 ')
if mibBuilder.loadTexts:
fcMgmtMIB.setDescription('This module defines management information specific to Fibre Channel-attached devices. Copyright (C) The Internet Society (2005). This version of this MIB module is part of RFC 4044; see the RFC itself for full legal notices.')
fcmgmt_objects = mib_identifier((1, 3, 6, 1, 2, 1, 10, 56, 1))
fcmgmt_notifications = mib_identifier((1, 3, 6, 1, 2, 1, 10, 56, 2))
fcmgmt_notif_prefix = mib_identifier((1, 3, 6, 1, 2, 1, 10, 56, 2, 0))
fcmgmt_conformance = mib_identifier((1, 3, 6, 1, 2, 1, 10, 56, 3))
class Fcnameidorzero(TextualConvention, OctetString):
description = 'The World Wide Name (WWN) associated with a Fibre Channel (FC) entity. WWNs were initially defined as 64-bits in length. The latest definition (for future use) is 128-bits long. The zero-length string value is used in circumstances in which the WWN is unassigned/unknown.'
status = 'current'
subtype_spec = OctetString.subtypeSpec + constraints_union(value_size_constraint(0, 0), value_size_constraint(8, 8), value_size_constraint(16, 16))
class Fcaddressidorzero(TextualConvention, OctetString):
description = 'A Fibre Channel Address ID, a 24-bit value unique within the address space of a Fabric. The zero-length string value is used in circumstances in which the WWN is unassigned/unknown.'
status = 'current'
subtype_spec = OctetString.subtypeSpec + constraints_union(value_size_constraint(0, 0), value_size_constraint(3, 3))
class Fcdomainidorzero(TextualConvention, Integer32):
description = 'The Domain Id (of an FC switch), or zero if the no Domain Id has been assigned.'
status = 'current'
subtype_spec = Integer32.subtypeSpec + value_range_constraint(0, 239)
class Fcporttype(TextualConvention, Unsigned32):
reference = 'The IANA-maintained registry for Fibre Channel port types (http://www.iana.org/).'
description = 'The type of a Fibre Channel port, as indicated by the use of the appropriate value assigned by IANA.'
status = 'current'
class Fcclasses(TextualConvention, Bits):
reference = 'Classes of service are described in FC-FS Section 13.'
description = 'A set of Fibre Channel classes of service.'
status = 'current'
named_values = named_values(('classF', 0), ('class1', 1), ('class2', 2), ('class3', 3), ('class4', 4), ('class5', 5), ('class6', 6))
class Fcbbcredit(TextualConvention, Integer32):
description = 'The buffer-to-buffer credit of an FC port.'
status = 'current'
subtype_spec = Integer32.subtypeSpec + value_range_constraint(0, 32767)
class Fcbbcreditmodel(TextualConvention, Integer32):
description = 'The buffer-to-buffer credit model of an Fx_Port.'
status = 'current'
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2))
named_values = named_values(('regular', 1), ('alternate', 2))
class Fcdatafieldsize(TextualConvention, Integer32):
description = 'The Receive Data Field Size associated with an FC port.'
status = 'current'
subtype_spec = Integer32.subtypeSpec + value_range_constraint(128, 2112)
class Fcunitfunctions(TextualConvention, Bits):
description = "A set of functions that a Fibre Channel Interconnect Element or Platform might perform. A value with no bits set indicates the function(s) are unknown. The individual bits have the following meanings: other - none of the following. hub - a device that interconnects L_Ports, but does not operate as an FL_Port. switch - a fabric element conforming to the Fibre Channel switch fabric set of standards (e.g., [FC-SW-3]). bridge - a device that encapsulates Fibre Channel frames within another protocol (e.g., [FC-BB], FC-BB-2). gateway - a device that converts an FC-4 to another protocol (e.g., FCP to iSCSI). host - a computer system that provides end users with services such as computation and storage access. storageSubsys - an integrated collection of storage controllers, storage devices, and necessary software that provides storage services to one or more hosts. storageAccessDev - a device that provides storage management and access for heterogeneous hosts and heterogeneous devices (e.g., medium changer). nas - a device that connects to a network and provides file access services. wdmux - a device that modulates/demodulates each of several data streams (e.g., Fibre Channel protocol data streams) onto/from a different part of the light spectrum in an optical fiber. storageDevice - a disk/tape/etc. device (without the controller and/or software required for it to be a 'storageSubsys')."
status = 'current'
named_values = named_values(('other', 0), ('hub', 1), ('switch', 2), ('bridge', 3), ('gateway', 4), ('host', 5), ('storageSubsys', 6), ('storageAccessDev', 7), ('nas', 8), ('wdmux', 9), ('storageDevice', 10))
fcm_instance_table = mib_table((1, 3, 6, 1, 2, 1, 10, 56, 1, 1))
if mibBuilder.loadTexts:
fcmInstanceTable.setStatus('current')
if mibBuilder.loadTexts:
fcmInstanceTable.setDescription('Information about the local Fibre Channel management instances.')
fcm_instance_entry = mib_table_row((1, 3, 6, 1, 2, 1, 10, 56, 1, 1, 1)).setIndexNames((0, 'FC-MGMT-MIB', 'fcmInstanceIndex'))
if mibBuilder.loadTexts:
fcmInstanceEntry.setStatus('current')
if mibBuilder.loadTexts:
fcmInstanceEntry.setDescription('A list of attributes for a particular local Fibre Channel management instance.')
fcm_instance_index = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 1, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 4294967295)))
if mibBuilder.loadTexts:
fcmInstanceIndex.setStatus('current')
if mibBuilder.loadTexts:
fcmInstanceIndex.setDescription('An arbitrary integer value that uniquely identifies this instance amongst all local Fibre Channel management instances. It is mandatory to keep this value constant between restarts of the agent, and to make every possible effort to keep it constant across restarts (but note, it is unrealistic to expect it to remain constant across all re-configurations of the local system, e.g., across the replacement of all non- volatile storage).')
fcm_instance_wwn = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 1, 1, 2), fc_name_id_or_zero()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmInstanceWwn.setStatus('current')
if mibBuilder.loadTexts:
fcmInstanceWwn.setDescription('If the instance has one (or more) WWN(s), then this object contains that (or one of those) WWN(s). If the instance does not have a WWN associated with it, then this object contains the zero-length string.')
fcm_instance_functions = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 1, 1, 3), fc_unit_functions()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmInstanceFunctions.setStatus('current')
if mibBuilder.loadTexts:
fcmInstanceFunctions.setDescription('One (or more) Fibre Channel unit functions being performed by this instance.')
fcm_instance_physical_index = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 1, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(0, 2147483647))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmInstancePhysicalIndex.setReference('entPhysicalIndex is defined in the Entity MIB, RFC 2737.')
if mibBuilder.loadTexts:
fcmInstancePhysicalIndex.setStatus('current')
if mibBuilder.loadTexts:
fcmInstancePhysicalIndex.setDescription("If this management instance corresponds to a physical component (or to a hierarchy of physical components) identified by the Entity-MIB, then this object's value is the value of the entPhysicalIndex of that component (or of the component at the root of that hierarchy). If there is no correspondence to a physical component (or no component that has an entPhysicalIndex value), then the value of this object is zero.")
fcm_instance_software_index = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 1, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(0, 2147483647))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmInstanceSoftwareIndex.setReference('hrSWInstalledIndex is defined in the Host Resources MIB, RFC 2790')
if mibBuilder.loadTexts:
fcmInstanceSoftwareIndex.setStatus('current')
if mibBuilder.loadTexts:
fcmInstanceSoftwareIndex.setDescription("If this management instance corresponds to an installed software module identified in the Host Resources MIB, then this object's value is the value of the hrSWInstalledIndex of that module. If there is no correspondence to an installed software module (or no module that has a hrSWInstalledIndex value), then the value of this object is zero.")
fcm_instance_status = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 1, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('unknown', 1), ('ok', 2), ('warning', 3), ('failed', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmInstanceStatus.setStatus('current')
if mibBuilder.loadTexts:
fcmInstanceStatus.setDescription('Overall status of the Fibre Channel entity/entities managed by this management instance. The value should reflect the most serious status of such entities.')
fcm_instance_text_name = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 1, 1, 7), snmp_admin_string().subtype(subtypeSpec=value_size_constraint(0, 79))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
fcmInstanceTextName.setStatus('current')
if mibBuilder.loadTexts:
fcmInstanceTextName.setDescription('A textual name for this management instance and the Fibre Channel entity/entities that it is managing.')
fcm_instance_descr = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 1, 1, 8), snmp_admin_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
fcmInstanceDescr.setStatus('current')
if mibBuilder.loadTexts:
fcmInstanceDescr.setDescription('A textual description of this management instance and the Fibre Channel entity/entities that it is managing.')
fcm_instance_fabric_id = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 1, 1, 9), fc_name_id_or_zero()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmInstanceFabricId.setStatus('current')
if mibBuilder.loadTexts:
fcmInstanceFabricId.setDescription('The globally unique Fabric Identifier that identifies the fabric to which the Fibre Channel entity/entities managed by this management instance are connected, or, of which they are a part. This is typically the Node WWN of the principal switch of a Fibre Channel fabric. The zero-length string indicates that the fabric identifier is unknown (or not applicable). In the event that the Fibre Channel entity/entities managed by this management instance is/are connected to multiple fabrics, then this object records the first (known) one.')
fcm_switch_table = mib_table((1, 3, 6, 1, 2, 1, 10, 56, 1, 2))
if mibBuilder.loadTexts:
fcmSwitchTable.setStatus('current')
if mibBuilder.loadTexts:
fcmSwitchTable.setDescription('A table of information about Fibre Channel switches that are managed by Fibre Channel management instances. Each Fibre Channel management instance can manage one or more Fibre Channel switches.')
fcm_switch_entry = mib_table_row((1, 3, 6, 1, 2, 1, 10, 56, 1, 2, 1)).setIndexNames((0, 'FC-MGMT-MIB', 'fcmInstanceIndex'), (0, 'FC-MGMT-MIB', 'fcmSwitchIndex'))
if mibBuilder.loadTexts:
fcmSwitchEntry.setStatus('current')
if mibBuilder.loadTexts:
fcmSwitchEntry.setDescription('Information about a particular Fibre Channel switch that is managed by the management instance given by fcmInstanceIndex.')
fcm_switch_index = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 2, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 4294967295)))
if mibBuilder.loadTexts:
fcmSwitchIndex.setStatus('current')
if mibBuilder.loadTexts:
fcmSwitchIndex.setDescription('An arbitrary integer that uniquely identifies a Fibre Channel switch amongst those managed by one Fibre Channel management instance. It is mandatory to keep this value constant between restarts of the agent, and to make every possible effort to keep it constant across restarts.')
fcm_switch_domain_id = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 2, 1, 2), fc_domain_id_or_zero()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
fcmSwitchDomainId.setStatus('current')
if mibBuilder.loadTexts:
fcmSwitchDomainId.setDescription('The Domain Id of this switch. A value of zero indicates that a switch has not (yet) been assigned a Domain Id.')
fcm_switch_principal = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 2, 1, 3), truth_value()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmSwitchPrincipal.setStatus('current')
if mibBuilder.loadTexts:
fcmSwitchPrincipal.setDescription('An indication of whether this switch is the principal switch within its fabric.')
fcm_switch_wwn = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 2, 1, 4), fc_name_id_or_zero()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmSwitchWWN.setStatus('current')
if mibBuilder.loadTexts:
fcmSwitchWWN.setDescription('The World Wide Name of this switch.')
fcm_port_table = mib_table((1, 3, 6, 1, 2, 1, 10, 56, 1, 3))
if mibBuilder.loadTexts:
fcmPortTable.setReference('RFC 2863, The Interfaces Group MIB, June 2000.')
if mibBuilder.loadTexts:
fcmPortTable.setStatus('current')
if mibBuilder.loadTexts:
fcmPortTable.setDescription("Information about Fibre Channel ports. Each Fibre Channel port is represented by one entry in the IF-MIB's ifTable.")
fcm_port_entry = mib_table_row((1, 3, 6, 1, 2, 1, 10, 56, 1, 3, 1)).setIndexNames((0, 'IF-MIB', 'ifIndex'))
if mibBuilder.loadTexts:
fcmPortEntry.setStatus('current')
if mibBuilder.loadTexts:
fcmPortEntry.setDescription('Each entry contains information about a specific port.')
fcm_port_instance_index = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 3, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 4294967295))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmPortInstanceIndex.setStatus('current')
if mibBuilder.loadTexts:
fcmPortInstanceIndex.setDescription('The value of fcmInstanceIndex by which the Fibre Channel management instance, which manages this port, is identified in the fcmInstanceTable.')
fcm_port_wwn = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 3, 1, 2), fc_name_id_or_zero()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmPortWwn.setStatus('current')
if mibBuilder.loadTexts:
fcmPortWwn.setDescription('The World Wide Name of the port, or the zero-length string if the port does not have a WWN.')
fcm_port_node_wwn = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 3, 1, 3), fc_name_id_or_zero()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmPortNodeWwn.setStatus('current')
if mibBuilder.loadTexts:
fcmPortNodeWwn.setDescription('The World Wide Name of the Node that contains this port, or the zero-length string if the port does not have a node WWN.')
fcm_port_admin_type = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 3, 1, 4), fc_port_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
fcmPortAdminType.setStatus('current')
if mibBuilder.loadTexts:
fcmPortAdminType.setDescription('The administratively desired type of this port.')
fcm_port_oper_type = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 3, 1, 5), fc_port_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmPortOperType.setStatus('current')
if mibBuilder.loadTexts:
fcmPortOperType.setDescription('The current operational type of this port.')
fcm_port_fc_cap_class = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 3, 1, 6), fc_classes()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmPortFcCapClass.setStatus('current')
if mibBuilder.loadTexts:
fcmPortFcCapClass.setDescription('The classes of service capability of this port.')
fcm_port_fc_oper_class = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 3, 1, 7), fc_classes()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmPortFcOperClass.setStatus('current')
if mibBuilder.loadTexts:
fcmPortFcOperClass.setDescription('The classes of service that are currently operational on this port. For an FL_Port, this is the union of the classes being supported across all attached NL_Ports.')
fcm_port_transmitter_type = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 3, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('unknown', 1), ('other', 2), ('shortwave850nm', 3), ('longwave1550nm', 4), ('longwave1310nm', 5), ('electrical', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmPortTransmitterType.setReference('FC-GS-3, section 6.1.2.2.3')
if mibBuilder.loadTexts:
fcmPortTransmitterType.setStatus('current')
if mibBuilder.loadTexts:
fcmPortTransmitterType.setDescription('The technology of the port transceiver.')
fcm_port_connector_type = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 3, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9))).clone(namedValues=named_values(('unknown', 1), ('other', 2), ('gbic', 3), ('embedded', 4), ('glm', 5), ('gbicSerialId', 6), ('gbicNoSerialId', 7), ('sfpSerialId', 8), ('sfpNoSerialId', 9)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmPortConnectorType.setReference('FC-GS-3, section 6.1.2.2.4')
if mibBuilder.loadTexts:
fcmPortConnectorType.setStatus('current')
if mibBuilder.loadTexts:
fcmPortConnectorType.setDescription("The module type of the port connector. This object refers to the hardware implementation of the port. It will be 'embedded' if the hardware equivalent to Gigabit interface card (GBIC) is part of the line card and is unremovable. It will be 'glm' if it's a gigabit link module (GLM). It will be 'gbicSerialId' if the GBIC serial id can be read, else it will be 'gbicNoSerialId'. It will be 'sfpSerialId' if the small form factor (SFP) pluggable GBICs serial id can be read, else it will be 'sfpNoSerialId'.")
fcm_port_serial_number = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 3, 1, 10), snmp_admin_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmPortSerialNumber.setReference('FC-GS-3, section 6.1.2.2.4')
if mibBuilder.loadTexts:
fcmPortSerialNumber.setStatus('current')
if mibBuilder.loadTexts:
fcmPortSerialNumber.setDescription("The serial number associated with the port (e.g., for a GBIC). If not applicable, the object's value is a zero- length string.")
fcm_port_physical_number = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 3, 1, 11), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmPortPhysicalNumber.setReference('FC-GS-3, section 6.1.2.2.5')
if mibBuilder.loadTexts:
fcmPortPhysicalNumber.setStatus('current')
if mibBuilder.loadTexts:
fcmPortPhysicalNumber.setDescription("This is the port's 'Physical Port Number' as defined by GS-3.")
fcm_port_admin_speed = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 3, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8))).clone(namedValues=named_values(('auto', 1), ('eighthGbs', 2), ('quarterGbs', 3), ('halfGbs', 4), ('oneGbs', 5), ('twoGbs', 6), ('fourGbs', 7), ('tenGbs', 8)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
fcmPortAdminSpeed.setStatus('current')
if mibBuilder.loadTexts:
fcmPortAdminSpeed.setDescription("The speed of the interface: 'auto' - auto-negotiation 'tenGbs' - 10Gbs 'fourGbs' - 4Gbs 'twoGbs' - 2Gbs 'oneGbs' - 1Gbs 'halfGbs' - 500Mbs 'quarterGbs' - 250Mbs 'eighthGbs' - 125Mbs")
fcm_port_cap_protocols = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 3, 1, 13), bits().clone(namedValues=named_values(('unknown', 0), ('loop', 1), ('fabric', 2), ('scsi', 3), ('tcpIp', 4), ('vi', 5), ('ficon', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmPortCapProtocols.setStatus('current')
if mibBuilder.loadTexts:
fcmPortCapProtocols.setDescription('A bit mask specifying the higher level protocols that are capable of running over this port. Note that for generic Fx_Ports, E_Ports, and B_Ports, this object will indicate all protocols.')
fcm_port_oper_protocols = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 3, 1, 14), bits().clone(namedValues=named_values(('unknown', 0), ('loop', 1), ('fabric', 2), ('scsi', 3), ('tcpIp', 4), ('vi', 5), ('ficon', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmPortOperProtocols.setStatus('current')
if mibBuilder.loadTexts:
fcmPortOperProtocols.setDescription("A bit mask specifying the higher level protocols that are currently operational on this port. For Fx_Ports, E_Ports, and B_Ports, this object will typically have the value 'unknown'.")
fcm_port_stats_table = mib_table((1, 3, 6, 1, 2, 1, 10, 56, 1, 4))
if mibBuilder.loadTexts:
fcmPortStatsTable.setStatus('current')
if mibBuilder.loadTexts:
fcmPortStatsTable.setDescription('A list of statistics for Fibre Channel ports.')
fcm_port_stats_entry = mib_table_row((1, 3, 6, 1, 2, 1, 10, 56, 1, 4, 1))
if mibBuilder.loadTexts:
fcmPortStatsEntry.setReference('The Interfaces Group MIB, RFC 2863, June 2000.')
fcmPortEntry.registerAugmentions(('FC-MGMT-MIB', 'fcmPortStatsEntry'))
fcmPortStatsEntry.setIndexNames(*fcmPortEntry.getIndexNames())
if mibBuilder.loadTexts:
fcmPortStatsEntry.setStatus('current')
if mibBuilder.loadTexts:
fcmPortStatsEntry.setDescription('An entry containing statistics for a Fibre Channel port. If any counter in this table suffers a discontinuity, the value of ifCounterDiscontinuityTime (defined in the IF-MIB) must be updated.')
fcm_port_bb_credit_zeros = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 4, 1, 1), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmPortBBCreditZeros.setStatus('current')
if mibBuilder.loadTexts:
fcmPortBBCreditZeros.setDescription('The number of transitions in/out of the buffer-to-buffer credit zero state. The other side is not providing any credit.')
fcm_port_full_input_buffers = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 4, 1, 2), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmPortFullInputBuffers.setStatus('current')
if mibBuilder.loadTexts:
fcmPortFullInputBuffers.setDescription('The number of occurrences when all input buffers of a port were full and outbound buffer-to-buffer credit transitioned to zero, i.e., there became no credit to provide to other side.')
fcm_port_class2_rx_frames = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 4, 1, 3), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmPortClass2RxFrames.setStatus('current')
if mibBuilder.loadTexts:
fcmPortClass2RxFrames.setDescription('The number of Class 2 frames received at this port.')
fcm_port_class2_rx_octets = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 4, 1, 4), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmPortClass2RxOctets.setStatus('current')
if mibBuilder.loadTexts:
fcmPortClass2RxOctets.setDescription('The number of octets contained in Class 2 frames received at this port.')
fcm_port_class2_tx_frames = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 4, 1, 5), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmPortClass2TxFrames.setStatus('current')
if mibBuilder.loadTexts:
fcmPortClass2TxFrames.setDescription('The number of Class 2 frames transmitted out of this port.')
fcm_port_class2_tx_octets = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 4, 1, 6), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmPortClass2TxOctets.setStatus('current')
if mibBuilder.loadTexts:
fcmPortClass2TxOctets.setDescription('The number of octets contained in Class 2 frames transmitted out of this port.')
fcm_port_class2_discards = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 4, 1, 7), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmPortClass2Discards.setStatus('current')
if mibBuilder.loadTexts:
fcmPortClass2Discards.setDescription('The number of Class 2 frames that were discarded upon reception at this port.')
fcm_port_class2_rx_fbsy_frames = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 4, 1, 8), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmPortClass2RxFbsyFrames.setStatus('current')
if mibBuilder.loadTexts:
fcmPortClass2RxFbsyFrames.setDescription('The number of times that F_BSY was returned to this port as a result of a Class 2 frame that could not be delivered to the other end of the link. This can occur when either the fabric or the destination port is temporarily busy. Note that this counter will never increment for an F_Port.')
fcm_port_class2_rx_pbsy_frames = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 4, 1, 9), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmPortClass2RxPbsyFrames.setStatus('current')
if mibBuilder.loadTexts:
fcmPortClass2RxPbsyFrames.setDescription('The number of times that P_BSY was returned to this port as a result of a Class 2 frame that could not be delivered to the other end of the link. This can occur when the destination port is temporarily busy.')
fcm_port_class2_rx_frjt_frames = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 4, 1, 10), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmPortClass2RxFrjtFrames.setStatus('current')
if mibBuilder.loadTexts:
fcmPortClass2RxFrjtFrames.setDescription('The number of times that F_RJT was returned to this port as a result of a Class 2 frame that was rejected by the fabric. Note that this counter will never increment for an F_Port.')
fcm_port_class2_rx_prjt_frames = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 4, 1, 11), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmPortClass2RxPrjtFrames.setStatus('current')
if mibBuilder.loadTexts:
fcmPortClass2RxPrjtFrames.setDescription('The number of times that P_RJT was returned to this port as a result of a Class 2 frame that was rejected at the destination N_Port.')
fcm_port_class2_tx_fbsy_frames = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 4, 1, 12), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmPortClass2TxFbsyFrames.setStatus('current')
if mibBuilder.loadTexts:
fcmPortClass2TxFbsyFrames.setDescription('The number of times that F_BSY was generated by this port as a result of a Class 2 frame that could not be delivered because either the Fabric or the destination port was temporarily busy. Note that this counter will never increment for an N_Port.')
fcm_port_class2_tx_pbsy_frames = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 4, 1, 13), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmPortClass2TxPbsyFrames.setStatus('current')
if mibBuilder.loadTexts:
fcmPortClass2TxPbsyFrames.setDescription('The number of times that P_BSY was generated by this port as a result of a Class 2 frame that could not be delivered because the destination port was temporarily busy. Note that this counter will never increment for an F_Port.')
fcm_port_class2_tx_frjt_frames = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 4, 1, 14), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmPortClass2TxFrjtFrames.setStatus('current')
if mibBuilder.loadTexts:
fcmPortClass2TxFrjtFrames.setDescription('The number of times that F_RJT was generated by this port as a result of a Class 2 frame being rejected by the fabric. Note that this counter will never increment for an N_Port.')
fcm_port_class2_tx_prjt_frames = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 4, 1, 15), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmPortClass2TxPrjtFrames.setStatus('current')
if mibBuilder.loadTexts:
fcmPortClass2TxPrjtFrames.setDescription('The number of times that P_RJT was generated by this port as a result of a Class 2 frame being rejected at the destination N_Port. Note that this counter will never increment for an F_Port.')
fcm_port_class3_rx_frames = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 4, 1, 16), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmPortClass3RxFrames.setStatus('current')
if mibBuilder.loadTexts:
fcmPortClass3RxFrames.setDescription('The number of Class 3 frames received at this port.')
fcm_port_class3_rx_octets = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 4, 1, 17), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmPortClass3RxOctets.setStatus('current')
if mibBuilder.loadTexts:
fcmPortClass3RxOctets.setDescription('The number of octets contained in Class 3 frames received at this port.')
fcm_port_class3_tx_frames = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 4, 1, 18), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmPortClass3TxFrames.setStatus('current')
if mibBuilder.loadTexts:
fcmPortClass3TxFrames.setDescription('The number of Class 3 frames transmitted out of this port.')
fcm_port_class3_tx_octets = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 4, 1, 19), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmPortClass3TxOctets.setStatus('current')
if mibBuilder.loadTexts:
fcmPortClass3TxOctets.setDescription('The number of octets contained in Class 3 frames transmitted out of this port.')
fcm_port_class3_discards = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 4, 1, 20), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmPortClass3Discards.setStatus('current')
if mibBuilder.loadTexts:
fcmPortClass3Discards.setDescription('The number of Class 3 frames that were discarded upon reception at this port.')
fcm_port_class_f_rx_frames = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 4, 1, 21), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmPortClassFRxFrames.setStatus('current')
if mibBuilder.loadTexts:
fcmPortClassFRxFrames.setDescription('The number of Class F frames received at this port.')
fcm_port_class_f_rx_octets = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 4, 1, 22), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmPortClassFRxOctets.setStatus('current')
if mibBuilder.loadTexts:
fcmPortClassFRxOctets.setDescription('The number of octets contained in Class F frames received at this port.')
fcm_port_class_f_tx_frames = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 4, 1, 23), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmPortClassFTxFrames.setStatus('current')
if mibBuilder.loadTexts:
fcmPortClassFTxFrames.setDescription('The number of Class F frames transmitted out of this port.')
fcm_port_class_f_tx_octets = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 4, 1, 24), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmPortClassFTxOctets.setStatus('current')
if mibBuilder.loadTexts:
fcmPortClassFTxOctets.setDescription('The number of octets contained in Class F frames transmitted out of this port.')
fcm_port_class_f_discards = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 4, 1, 25), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmPortClassFDiscards.setStatus('current')
if mibBuilder.loadTexts:
fcmPortClassFDiscards.setDescription('The number of Class F frames that were discarded upon reception at this port.')
fcm_port_lc_stats_table = mib_table((1, 3, 6, 1, 2, 1, 10, 56, 1, 5))
if mibBuilder.loadTexts:
fcmPortLcStatsTable.setStatus('current')
if mibBuilder.loadTexts:
fcmPortLcStatsTable.setDescription('A list of Counter32-based statistics for systems that do not support Counter64.')
fcm_port_lc_stats_entry = mib_table_row((1, 3, 6, 1, 2, 1, 10, 56, 1, 5, 1))
if mibBuilder.loadTexts:
fcmPortLcStatsEntry.setReference('The Interfaces Group MIB, RFC 2863, June 2000.')
fcmPortEntry.registerAugmentions(('FC-MGMT-MIB', 'fcmPortLcStatsEntry'))
fcmPortLcStatsEntry.setIndexNames(*fcmPortEntry.getIndexNames())
if mibBuilder.loadTexts:
fcmPortLcStatsEntry.setStatus('current')
if mibBuilder.loadTexts:
fcmPortLcStatsEntry.setDescription('An entry containing low-capacity (i.e., based on Counter32) statistics for a Fibre Channel port. If any counter in this table suffers a discontinuity, the value of ifCounterDiscontinuityTime (defined in the IF-MIB) must be updated.')
fcm_port_lc_bb_credit_zeros = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 5, 1, 1), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmPortLcBBCreditZeros.setStatus('current')
if mibBuilder.loadTexts:
fcmPortLcBBCreditZeros.setDescription('The number of transitions in/out of the buffer-to-buffer credit zero state. The other side is not providing any credit.')
fcm_port_lc_full_input_buffers = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 5, 1, 2), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmPortLcFullInputBuffers.setStatus('current')
if mibBuilder.loadTexts:
fcmPortLcFullInputBuffers.setDescription('The number of occurrences when all input buffers of a port were full and outbound buffer-to-buffer credit transitioned to zero, i.e., there became no credit to provide to other side.')
fcm_port_lc_class2_rx_frames = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 5, 1, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmPortLcClass2RxFrames.setStatus('current')
if mibBuilder.loadTexts:
fcmPortLcClass2RxFrames.setDescription('The number of Class 2 frames received at this port.')
fcm_port_lc_class2_rx_octets = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 5, 1, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmPortLcClass2RxOctets.setStatus('current')
if mibBuilder.loadTexts:
fcmPortLcClass2RxOctets.setDescription('The number of octets contained in Class 2 frames received at this port.')
fcm_port_lc_class2_tx_frames = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 5, 1, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmPortLcClass2TxFrames.setStatus('current')
if mibBuilder.loadTexts:
fcmPortLcClass2TxFrames.setDescription('The number of Class 2 frames transmitted out of this port.')
fcm_port_lc_class2_tx_octets = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 5, 1, 6), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmPortLcClass2TxOctets.setStatus('current')
if mibBuilder.loadTexts:
fcmPortLcClass2TxOctets.setDescription('The number of octets contained in Class 2 frames transmitted out of this port.')
fcm_port_lc_class2_discards = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 5, 1, 7), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmPortLcClass2Discards.setStatus('current')
if mibBuilder.loadTexts:
fcmPortLcClass2Discards.setDescription('The number of Class 2 frames that were discarded upon reception at this port.')
fcm_port_lc_class2_rx_fbsy_frames = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 5, 1, 8), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmPortLcClass2RxFbsyFrames.setStatus('current')
if mibBuilder.loadTexts:
fcmPortLcClass2RxFbsyFrames.setDescription('The number of times that F_BSY was returned to this port as a result of a Class 2 frame that could not be delivered to the other end of the link. This can occur when either the fabric or the destination port is temporarily busy. Note that this counter will never increment for an F_Port.')
fcm_port_lc_class2_rx_pbsy_frames = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 5, 1, 9), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmPortLcClass2RxPbsyFrames.setStatus('current')
if mibBuilder.loadTexts:
fcmPortLcClass2RxPbsyFrames.setDescription('The number of times that P_BSY was returned to this port as a result of a Class 2 frame that could not be delivered to the other end of the link. This can occur when the destination port is temporarily busy.')
fcm_port_lc_class2_rx_frjt_frames = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 5, 1, 10), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmPortLcClass2RxFrjtFrames.setStatus('current')
if mibBuilder.loadTexts:
fcmPortLcClass2RxFrjtFrames.setDescription('The number of times that F_RJT was returned to this port as a result of a Class 2 frame that was rejected by the fabric. Note that this counter will never increment for an F_Port.')
fcm_port_lc_class2_rx_prjt_frames = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 5, 1, 11), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmPortLcClass2RxPrjtFrames.setStatus('current')
if mibBuilder.loadTexts:
fcmPortLcClass2RxPrjtFrames.setDescription('The number of times that P_RJT was returned to this port as a result of a Class 2 frame that was rejected at the destination N_Port.')
fcm_port_lc_class2_tx_fbsy_frames = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 5, 1, 12), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmPortLcClass2TxFbsyFrames.setStatus('current')
if mibBuilder.loadTexts:
fcmPortLcClass2TxFbsyFrames.setDescription('The number of times that F_BSY was generated by this port as a result of a Class 2 frame that could not be delivered because either the Fabric or the destination port was temporarily busy. Note that this counter will never increment for an N_Port.')
fcm_port_lc_class2_tx_pbsy_frames = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 5, 1, 13), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmPortLcClass2TxPbsyFrames.setStatus('current')
if mibBuilder.loadTexts:
fcmPortLcClass2TxPbsyFrames.setDescription('The number of times that P_BSY was generated by this port as a result of a Class 2 frame that could not be delivered because the destination port was temporarily busy. Note that this counter will never increment for an F_Port.')
fcm_port_lc_class2_tx_frjt_frames = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 5, 1, 14), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmPortLcClass2TxFrjtFrames.setStatus('current')
if mibBuilder.loadTexts:
fcmPortLcClass2TxFrjtFrames.setDescription('The number of times that F_RJT was generated by this port as a result of a Class 2 frame being rejected by the fabric. Note that this counter will never increment for an N_Port.')
fcm_port_lc_class2_tx_prjt_frames = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 5, 1, 15), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmPortLcClass2TxPrjtFrames.setStatus('current')
if mibBuilder.loadTexts:
fcmPortLcClass2TxPrjtFrames.setDescription('The number of times that P_RJT was generated by this port as a result of a Class 2 frame being rejected at the destination N_Port. Note that this counter will never increment for an F_Port.')
fcm_port_lc_class3_rx_frames = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 5, 1, 16), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmPortLcClass3RxFrames.setStatus('current')
if mibBuilder.loadTexts:
fcmPortLcClass3RxFrames.setDescription('The number of Class 3 frames received at this port.')
fcm_port_lc_class3_rx_octets = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 5, 1, 17), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmPortLcClass3RxOctets.setStatus('current')
if mibBuilder.loadTexts:
fcmPortLcClass3RxOctets.setDescription('The number of octets contained in Class 3 frames received at this port.')
fcm_port_lc_class3_tx_frames = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 5, 1, 18), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmPortLcClass3TxFrames.setStatus('current')
if mibBuilder.loadTexts:
fcmPortLcClass3TxFrames.setDescription('The number of Class 3 frames transmitted out of this port.')
fcm_port_lc_class3_tx_octets = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 5, 1, 19), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmPortLcClass3TxOctets.setStatus('current')
if mibBuilder.loadTexts:
fcmPortLcClass3TxOctets.setDescription('The number of octets contained in Class 3 frames transmitted out of this port.')
fcm_port_lc_class3_discards = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 5, 1, 20), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmPortLcClass3Discards.setStatus('current')
if mibBuilder.loadTexts:
fcmPortLcClass3Discards.setDescription('The number of Class 3 frames that were discarded upon reception at this port.')
fcm_port_errors_table = mib_table((1, 3, 6, 1, 2, 1, 10, 56, 1, 6))
if mibBuilder.loadTexts:
fcmPortErrorsTable.setStatus('current')
if mibBuilder.loadTexts:
fcmPortErrorsTable.setDescription('Error counters for Fibre Channel ports.')
fcm_port_errors_entry = mib_table_row((1, 3, 6, 1, 2, 1, 10, 56, 1, 6, 1))
if mibBuilder.loadTexts:
fcmPortErrorsEntry.setReference('The Interfaces Group MIB, RFC 2863, June 2000.')
fcmPortEntry.registerAugmentions(('FC-MGMT-MIB', 'fcmPortErrorsEntry'))
fcmPortErrorsEntry.setIndexNames(*fcmPortEntry.getIndexNames())
if mibBuilder.loadTexts:
fcmPortErrorsEntry.setStatus('current')
if mibBuilder.loadTexts:
fcmPortErrorsEntry.setDescription('Error counters for a Fibre Channel port. If any counter in this table suffers a discontinuity, the value of ifCounterDiscontinuityTime (defined in the IF-MIB) must be updated.')
fcm_port_rx_link_resets = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 6, 1, 1), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmPortRxLinkResets.setStatus('current')
if mibBuilder.loadTexts:
fcmPortRxLinkResets.setDescription('The number of Link Reset (LR) Primitive Sequences received.')
fcm_port_tx_link_resets = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 6, 1, 2), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmPortTxLinkResets.setStatus('current')
if mibBuilder.loadTexts:
fcmPortTxLinkResets.setDescription('The number of Link Reset (LR) Primitive Sequences transmitted.')
fcm_port_link_resets = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 6, 1, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmPortLinkResets.setStatus('current')
if mibBuilder.loadTexts:
fcmPortLinkResets.setDescription('The number of times the reset link protocol was initiated on this port. This includes the number of Loop Initialization Primitive (LIP) events on an arbitrated loop port.')
fcm_port_rx_offline_sequences = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 6, 1, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmPortRxOfflineSequences.setStatus('current')
if mibBuilder.loadTexts:
fcmPortRxOfflineSequences.setDescription('The number of Offline (OLS) Primitive Sequences received at this port.')
fcm_port_tx_offline_sequences = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 6, 1, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmPortTxOfflineSequences.setStatus('current')
if mibBuilder.loadTexts:
fcmPortTxOfflineSequences.setDescription('The number of Offline (OLS) Primitive Sequences transmitted by this port.')
fcm_port_link_failures = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 6, 1, 6), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmPortLinkFailures.setReference('FC-PH, rev 4.3, 1 June 1994, section 29.8 [FC-PH].')
if mibBuilder.loadTexts:
fcmPortLinkFailures.setStatus('current')
if mibBuilder.loadTexts:
fcmPortLinkFailures.setDescription("The number of link failures. This count is part of FC-PH's Link Error Status Block (LESB).")
fcm_port_lossof_synchs = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 6, 1, 7), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmPortLossofSynchs.setReference('FC-PH, rev 4.3, 1 June 1994, section 29.8.')
if mibBuilder.loadTexts:
fcmPortLossofSynchs.setStatus('current')
if mibBuilder.loadTexts:
fcmPortLossofSynchs.setDescription("The number of instances of synchronization loss detected at this port. This count is part of FC-PH's Link Error Status Block (LESB).")
fcm_port_lossof_signals = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 6, 1, 8), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmPortLossofSignals.setReference('FC-PH, rev 4.3, 1 June 1994, section 29.8.')
if mibBuilder.loadTexts:
fcmPortLossofSignals.setStatus('current')
if mibBuilder.loadTexts:
fcmPortLossofSignals.setDescription("The number of instances of signal loss detected at this port. This count is part of FC-PH's Link Error Status Block (LESB).")
fcm_port_prim_seq_protocol_errors = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 6, 1, 9), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmPortPrimSeqProtocolErrors.setReference('FC-PH, rev 4.3, 1 June 1994, section 29.8.')
if mibBuilder.loadTexts:
fcmPortPrimSeqProtocolErrors.setStatus('current')
if mibBuilder.loadTexts:
fcmPortPrimSeqProtocolErrors.setDescription("The number of primitive sequence protocol errors detected at this port. This count is part of FC-PH's Link Error Status Block (LESB).")
fcm_port_invalid_tx_words = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 6, 1, 10), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmPortInvalidTxWords.setReference('FC-PH, rev 4.3, 1 June 1994, section 29.8.')
if mibBuilder.loadTexts:
fcmPortInvalidTxWords.setStatus('current')
if mibBuilder.loadTexts:
fcmPortInvalidTxWords.setDescription("The number of invalid transmission words received at this port. This count is part of FC-PH's Link Error Status Block (LESB).")
fcm_port_invalid_cr_cs = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 6, 1, 11), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmPortInvalidCRCs.setReference('FC-PH, rev 4.3, 1 June 1994, section 29.8.')
if mibBuilder.loadTexts:
fcmPortInvalidCRCs.setStatus('current')
if mibBuilder.loadTexts:
fcmPortInvalidCRCs.setDescription("The number of frames received with an invalid CRC. This count is part of FC-PH's Link Error Status Block (LESB).")
fcm_port_invalid_ordered_sets = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 6, 1, 12), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmPortInvalidOrderedSets.setStatus('current')
if mibBuilder.loadTexts:
fcmPortInvalidOrderedSets.setDescription('The number of invalid ordered sets received at this port.')
fcm_port_frame_too_longs = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 6, 1, 13), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmPortFrameTooLongs.setStatus('current')
if mibBuilder.loadTexts:
fcmPortFrameTooLongs.setDescription('The number of frames received at this port for which the frame length was greater than what was agreed to in FLOGI/PLOGI. This could be caused by losing the end of frame delimiter.')
fcm_port_truncated_frames = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 6, 1, 14), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmPortTruncatedFrames.setStatus('current')
if mibBuilder.loadTexts:
fcmPortTruncatedFrames.setDescription('The number of frames received at this port for which the frame length was less than the minimum indicated by the frame header - normally 24 bytes, but it could be more if the DFCTL field indicates an optional header should have been present.')
fcm_port_address_errors = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 6, 1, 15), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmPortAddressErrors.setStatus('current')
if mibBuilder.loadTexts:
fcmPortAddressErrors.setDescription('The number of frames received with unknown addressing; for example, an unknown SID or DID.')
fcm_port_delimiter_errors = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 6, 1, 16), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmPortDelimiterErrors.setStatus('current')
if mibBuilder.loadTexts:
fcmPortDelimiterErrors.setDescription('The number of invalid frame delimiters received at this port. An example is a frame with a class 2 start and a class 3 at the end.')
fcm_port_encoding_disparity_errors = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 6, 1, 17), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmPortEncodingDisparityErrors.setStatus('current')
if mibBuilder.loadTexts:
fcmPortEncodingDisparityErrors.setDescription('The number of encoding disparity errors received at this port.')
fcm_port_other_errors = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 6, 1, 18), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmPortOtherErrors.setStatus('current')
if mibBuilder.loadTexts:
fcmPortOtherErrors.setDescription('The number of errors that were detected on this port but not counted by any other error counter in this row.')
fcm_fx_port_table = mib_table((1, 3, 6, 1, 2, 1, 10, 56, 1, 7))
if mibBuilder.loadTexts:
fcmFxPortTable.setStatus('current')
if mibBuilder.loadTexts:
fcmFxPortTable.setDescription('Additional information about Fibre Channel ports that is specific to Fx_Ports. This table will contain one entry for each fcmPortTable entry that represents an Fx_Port.')
fcm_fx_port_entry = mib_table_row((1, 3, 6, 1, 2, 1, 10, 56, 1, 7, 1)).setIndexNames((0, 'IF-MIB', 'ifIndex'))
if mibBuilder.loadTexts:
fcmFxPortEntry.setStatus('current')
if mibBuilder.loadTexts:
fcmFxPortEntry.setDescription('Each entry contains information about a specific Fx_Port.')
fcm_fx_port_ratov = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 7, 1, 1), unsigned32()).setUnits('milliseconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmFxPortRatov.setStatus('current')
if mibBuilder.loadTexts:
fcmFxPortRatov.setDescription('The Resource_Allocation_Timeout Value configured for this Fx_Port. This is used as the timeout value for determining when to reuse an Nx_Port resource such as a Recovery_Qualifier. It represents the Error_Detect_Timeout value (see fcmFxPortEdtov) plus twice the maximum time that a frame may be delayed within the Fabric and still be delivered.')
fcm_fx_port_edtov = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 7, 1, 2), unsigned32()).setUnits('milliseconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmFxPortEdtov.setStatus('current')
if mibBuilder.loadTexts:
fcmFxPortEdtov.setDescription('The Error_Detect_Timeout value configured for this Fx_Port. This is used as the timeout value for detecting an error condition.')
fcm_fx_port_rttov = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 7, 1, 3), unsigned32()).setUnits('milliseconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmFxPortRttov.setStatus('current')
if mibBuilder.loadTexts:
fcmFxPortRttov.setDescription('The Receiver_Transmitter_Timeout value of this Fx_Port. This is used by the receiver logic to detect a Loss of Synchronization.')
fcm_fx_port_hold_time = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 7, 1, 4), unsigned32()).setUnits('microseconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmFxPortHoldTime.setStatus('current')
if mibBuilder.loadTexts:
fcmFxPortHoldTime.setDescription('The maximum time that this Fx_Port shall hold a frame before discarding the frame if it is unable to deliver the frame. The value 0 means that this Fx_Port does not support this parameter.')
fcm_fx_port_cap_bb_credit_max = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 7, 1, 5), fc_bb_credit()).setUnits('buffers').setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmFxPortCapBbCreditMax.setStatus('current')
if mibBuilder.loadTexts:
fcmFxPortCapBbCreditMax.setDescription('The maximum number of receive buffers that this port is capable of making available for holding frames from attached Nx_Port(s).')
fcm_fx_port_cap_bb_credit_min = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 7, 1, 6), fc_bb_credit()).setUnits('buffers').setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmFxPortCapBbCreditMin.setStatus('current')
if mibBuilder.loadTexts:
fcmFxPortCapBbCreditMin.setDescription('The minimum number of receive buffers that this port is capable of making available for holding frames from attached Nx_Port(s).')
fcm_fx_port_cap_data_field_size_max = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 7, 1, 7), fc_data_field_size()).setUnits('bytes').setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmFxPortCapDataFieldSizeMax.setStatus('current')
if mibBuilder.loadTexts:
fcmFxPortCapDataFieldSizeMax.setDescription('The maximum size in bytes of the Data Field in a frame that this Fx_Port is capable of receiving from an attached Nx_Port.')
fcm_fx_port_cap_data_field_size_min = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 7, 1, 8), fc_data_field_size()).setUnits('bytes').setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmFxPortCapDataFieldSizeMin.setStatus('current')
if mibBuilder.loadTexts:
fcmFxPortCapDataFieldSizeMin.setDescription('The minimum size in bytes of the Data Field in a frame that this Fx_Port is capable of receiving from an attached Nx_Port.')
fcm_fx_port_cap_class2_seq_deliv = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 7, 1, 9), truth_value()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmFxPortCapClass2SeqDeliv.setStatus('current')
if mibBuilder.loadTexts:
fcmFxPortCapClass2SeqDeliv.setDescription('An indication of whether this Fx_Port is capable of supporting Class 2 Sequential Delivery.')
fcm_fx_port_cap_class3_seq_deliv = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 7, 1, 10), truth_value()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmFxPortCapClass3SeqDeliv.setStatus('current')
if mibBuilder.loadTexts:
fcmFxPortCapClass3SeqDeliv.setDescription('An indication of whether this Fx_Port is capable of supporting Class 3 Sequential Delivery.')
fcm_fx_port_cap_hold_time_max = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 7, 1, 11), unsigned32()).setUnits('microseconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmFxPortCapHoldTimeMax.setStatus('current')
if mibBuilder.loadTexts:
fcmFxPortCapHoldTimeMax.setDescription('The maximum holding time that this Fx_Port is capable of supporting.')
fcm_fx_port_cap_hold_time_min = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 7, 1, 12), unsigned32()).setUnits('microseconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmFxPortCapHoldTimeMin.setStatus('current')
if mibBuilder.loadTexts:
fcmFxPortCapHoldTimeMin.setDescription('The minimum holding time that this Fx_Port is capable of supporting.')
fcm_is_port_table = mib_table((1, 3, 6, 1, 2, 1, 10, 56, 1, 8))
if mibBuilder.loadTexts:
fcmISPortTable.setStatus('current')
if mibBuilder.loadTexts:
fcmISPortTable.setDescription('Additional information about E_Ports, B_Ports, and any other type of Fibre Channel port to which inter-switch links can be connected. This table will contain one entry for each fcmPortTable entry that represents such a port.')
fcm_is_port_entry = mib_table_row((1, 3, 6, 1, 2, 1, 10, 56, 1, 8, 1)).setIndexNames((0, 'IF-MIB', 'ifIndex'))
if mibBuilder.loadTexts:
fcmISPortEntry.setStatus('current')
if mibBuilder.loadTexts:
fcmISPortEntry.setDescription('Each entry contains information about a specific port connected to an inter-switch link.')
fcm_is_port_class_f_credit = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 8, 1, 1), fc_bb_credit()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
fcmISPortClassFCredit.setStatus('current')
if mibBuilder.loadTexts:
fcmISPortClassFCredit.setDescription('The maximum number of Class F data frames that can be transmitted by the inter-switch port without receipt of ACK or Link_Response frames.')
fcm_is_port_class_f_data_field_size = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 8, 1, 2), fc_data_field_size()).setUnits('bytes').setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmISPortClassFDataFieldSize.setStatus('current')
if mibBuilder.loadTexts:
fcmISPortClassFDataFieldSize.setDescription('The Receive Data Field Size that the inter-switch port has agreed to support for Class F frames to/from this port. The size specifies the largest Data Field Size for an FT_1 frame.')
fcm_f_login_table = mib_table((1, 3, 6, 1, 2, 1, 10, 56, 1, 9))
if mibBuilder.loadTexts:
fcmFLoginTable.setStatus('current')
if mibBuilder.loadTexts:
fcmFLoginTable.setDescription('A table that contains one entry for each Nx_Port logged- in/attached to a particular Fx_Port in the switch. Each entry contains the services parameters established during the most recent Fabric Login, explicit or implicit. Note that an Fx_Port may have one or more Nx_Ports attached to it.')
fcm_f_login_entry = mib_table_row((1, 3, 6, 1, 2, 1, 10, 56, 1, 9, 1)).setIndexNames((0, 'IF-MIB', 'ifIndex'), (0, 'FC-MGMT-MIB', 'fcmFLoginNxPortIndex'))
if mibBuilder.loadTexts:
fcmFLoginEntry.setStatus('current')
if mibBuilder.loadTexts:
fcmFLoginEntry.setDescription('An entry containing service parameters established from a successful Fabric Login.')
fcm_f_login_nx_port_index = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 9, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 4294967295)))
if mibBuilder.loadTexts:
fcmFLoginNxPortIndex.setReference('The Interfaces Group MIB, RFC 2863, June 2000.')
if mibBuilder.loadTexts:
fcmFLoginNxPortIndex.setStatus('current')
if mibBuilder.loadTexts:
fcmFLoginNxPortIndex.setDescription('An arbitrary integer that uniquely identifies an Nx_Port amongst all those attached to the Fx_Port indicated by ifIndex. After a value of this object is assigned to a particular Nx_Port, that value can be re-used when and only when it is assigned to the same Nx_Port, or, after a reset of the value of the relevant instance of ifCounterDiscontinuityTime.')
fcm_f_login_port_wwn = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 9, 1, 2), fc_name_id_or_zero()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmFLoginPortWwn.setStatus('current')
if mibBuilder.loadTexts:
fcmFLoginPortWwn.setDescription('The port name of the attached Nx_Port, or the zero-length string if unknown.')
fcm_f_login_node_wwn = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 9, 1, 3), fc_name_id_or_zero()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmFLoginNodeWwn.setStatus('current')
if mibBuilder.loadTexts:
fcmFLoginNodeWwn.setDescription('The node name of the attached Nx_Port, or the zero-length string if unknown.')
fcm_f_login_bb_credit_model = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 9, 1, 4), fc_bb_credit_model()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmFLoginBbCreditModel.setStatus('current')
if mibBuilder.loadTexts:
fcmFLoginBbCreditModel.setDescription('The buffer-to-buffer credit model in use by the Fx_Port.')
fcm_f_login_bb_credit = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 9, 1, 5), fc_bb_credit()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmFLoginBbCredit.setStatus('current')
if mibBuilder.loadTexts:
fcmFLoginBbCredit.setDescription('The number of buffers available for holding frames to be transmitted to the attached Nx_Port. These buffers are for buffer-to-buffer flow control in the direction from Fx_Port to Nx_Port.')
fcm_f_login_classes_agreed = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 9, 1, 6), fc_classes()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmFLoginClassesAgreed.setStatus('current')
if mibBuilder.loadTexts:
fcmFLoginClassesAgreed.setDescription('The Classes of Service that the Fx_Port has agreed to support for this Nx_Port.')
fcm_f_login_class2_seq_deliv_agreed = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 9, 1, 7), truth_value()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmFLoginClass2SeqDelivAgreed.setStatus('current')
if mibBuilder.loadTexts:
fcmFLoginClass2SeqDelivAgreed.setDescription('An indication of whether the Fx_Port has agreed to support Class 2 sequential delivery for this Nx_Port. This is only meaningful if Class 2 service has been agreed upon.')
fcm_f_login_class2_data_field_size = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 9, 1, 8), fc_data_field_size()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmFLoginClass2DataFieldSize.setStatus('current')
if mibBuilder.loadTexts:
fcmFLoginClass2DataFieldSize.setDescription('The Receive Data Field Size that the Fx_Port has agreed to support for Class 2 frames to/from this Nx_Port. The size specifies the largest Data Field Size for an FT_1 frame. This is only meaningful if Class 2 service has been agreed upon.')
fcm_f_login_class3_seq_deliv_agreed = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 9, 1, 9), truth_value()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmFLoginClass3SeqDelivAgreed.setStatus('current')
if mibBuilder.loadTexts:
fcmFLoginClass3SeqDelivAgreed.setDescription('An indication of whether the Fx_Port has agreed to support Class 3 sequential delivery for this Nx_Port. This is only meaningful if Class 3 service has been agreed upon.')
fcm_f_login_class3_data_field_size = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 9, 1, 10), fc_data_field_size()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmFLoginClass3DataFieldSize.setStatus('current')
if mibBuilder.loadTexts:
fcmFLoginClass3DataFieldSize.setDescription('The Receive Data Field Size that the Fx_Port has agreed to support for Class 3 frames to/from this Nx_Port. The size specifies the largest Data Field Size for an FT_1 frame. This is only meaningful if Class 3 service has been agreed upon.')
fcm_link_table = mib_table((1, 3, 6, 1, 2, 1, 10, 56, 1, 10))
if mibBuilder.loadTexts:
fcmLinkTable.setStatus('current')
if mibBuilder.loadTexts:
fcmLinkTable.setDescription("A table containing any Fibre Channel link information that is known to local Fibre Channel managed instances. One end of such a link is typically at a local port, but the table can also contain information on links for which neither end is a local port. If one end of a link terminates locally, then that end is termed 'end1'; the other end is termed 'end2'.")
fcm_link_entry = mib_table_row((1, 3, 6, 1, 2, 1, 10, 56, 1, 10, 1)).setIndexNames((0, 'FC-MGMT-MIB', 'fcmInstanceIndex'), (0, 'FC-MGMT-MIB', 'fcmLinkIndex'))
if mibBuilder.loadTexts:
fcmLinkEntry.setStatus('current')
if mibBuilder.loadTexts:
fcmLinkEntry.setDescription("An entry containing information that a particular Fibre Channel managed instance has about a Fibre Channel link. The two ends of the link are called 'end1' and 'end2'.")
fcm_link_index = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 10, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 4294967295)))
if mibBuilder.loadTexts:
fcmLinkIndex.setStatus('current')
if mibBuilder.loadTexts:
fcmLinkIndex.setDescription('An arbitrary integer that uniquely identifies one link within the set of links about which a particular managed instance has information.')
fcm_link_end1_node_wwn = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 10, 1, 2), fc_name_id_or_zero()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmLinkEnd1NodeWwn.setStatus('current')
if mibBuilder.loadTexts:
fcmLinkEnd1NodeWwn.setDescription('The node name of end1, or the zero-length string if unknown.')
fcm_link_end1_phys_port_number = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 10, 1, 3), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmLinkEnd1PhysPortNumber.setReference('FC-GS-3, section 6.1.2.2.5')
if mibBuilder.loadTexts:
fcmLinkEnd1PhysPortNumber.setStatus('current')
if mibBuilder.loadTexts:
fcmLinkEnd1PhysPortNumber.setDescription('The physical port number of end1, or zero if unknown.')
fcm_link_end1_port_wwn = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 10, 1, 4), fc_name_id_or_zero()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmLinkEnd1PortWwn.setStatus('current')
if mibBuilder.loadTexts:
fcmLinkEnd1PortWwn.setDescription("The port WWN of end1, or the zero-length string if unknown. ('end1' is local if this value is equal to the value of fcmPortWwn in one of the rows of the fcmPortTable.)")
fcm_link_end2_node_wwn = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 10, 1, 5), fc_name_id_or_zero()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmLinkEnd2NodeWwn.setStatus('current')
if mibBuilder.loadTexts:
fcmLinkEnd2NodeWwn.setDescription('The node name of end2, or the zero-length string if unknown.')
fcm_link_end2_phys_port_number = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 10, 1, 6), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmLinkEnd2PhysPortNumber.setReference('FC-GS-3, section 6.1.2.2.5')
if mibBuilder.loadTexts:
fcmLinkEnd2PhysPortNumber.setStatus('current')
if mibBuilder.loadTexts:
fcmLinkEnd2PhysPortNumber.setDescription('The physical port number of end2, or zero if unknown.')
fcm_link_end2_port_wwn = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 10, 1, 7), fc_name_id_or_zero()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmLinkEnd2PortWwn.setStatus('current')
if mibBuilder.loadTexts:
fcmLinkEnd2PortWwn.setDescription('The port WWN of end2, or the zero-length string if unknown.')
fcm_link_end2_agent_address = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 10, 1, 8), snmp_admin_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmLinkEnd2AgentAddress.setReference('FC-GS-3, section 6.1.2.1.7')
if mibBuilder.loadTexts:
fcmLinkEnd2AgentAddress.setStatus('current')
if mibBuilder.loadTexts:
fcmLinkEnd2AgentAddress.setDescription('The address of the management agent for the Fibre Channel Interconnect Element or Platform of which end2 is a part. The GS-4 specification provides some information about management agents. If the address is unknown, the value of this object is the zero-length string.')
fcm_link_end2_port_type = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 10, 1, 9), fc_port_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmLinkEnd2PortType.setReference('FC-GS-3, section 6.1.2.2.2')
if mibBuilder.loadTexts:
fcmLinkEnd2PortType.setStatus('current')
if mibBuilder.loadTexts:
fcmLinkEnd2PortType.setDescription('The port type of end2.')
fcm_link_end2_unit_type = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 10, 1, 10), fc_unit_functions()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmLinkEnd2UnitType.setReference('FC-GS-3, sections 6.1.2.1.2 and 6.1.2.3.2')
if mibBuilder.loadTexts:
fcmLinkEnd2UnitType.setStatus('current')
if mibBuilder.loadTexts:
fcmLinkEnd2UnitType.setDescription('The type of/function(s) performed by the Fibre Channel Interconnect Element or Platform of which end2 is a part.')
fcm_link_end2_fc_address_id = mib_table_column((1, 3, 6, 1, 2, 1, 10, 56, 1, 10, 1, 11), fc_address_id_or_zero()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fcmLinkEnd2FcAddressId.setStatus('current')
if mibBuilder.loadTexts:
fcmLinkEnd2FcAddressId.setDescription('The Fibre Channel Address ID of end2, or the zero-length string if unknown.')
fcmgmt_compliances = mib_identifier((1, 3, 6, 1, 2, 1, 10, 56, 3, 1))
fcmgmt_groups = mib_identifier((1, 3, 6, 1, 2, 1, 10, 56, 3, 2))
fcmgmt_compliance = module_compliance((1, 3, 6, 1, 2, 1, 10, 56, 3, 1, 1)).setObjects(('FC-MGMT-MIB', 'fcmInstanceBasicGroup'), ('FC-MGMT-MIB', 'fcmPortBasicGroup'), ('FC-MGMT-MIB', 'fcmPortErrorsGroup'), ('FC-MGMT-MIB', 'fcmPortStatsGroup'), ('FC-MGMT-MIB', 'fcmPortClass23StatsGroup'), ('FC-MGMT-MIB', 'fcmPortClassFStatsGroup'), ('FC-MGMT-MIB', 'fcmPortLcStatsGroup'), ('FC-MGMT-MIB', 'fcmSwitchBasicGroup'), ('FC-MGMT-MIB', 'fcmSwitchPortGroup'), ('FC-MGMT-MIB', 'fcmSwitchLoginGroup'), ('FC-MGMT-MIB', 'fcmLinkBasicGroup'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
fcmgmt_compliance = fcmgmtCompliance.setStatus('current')
if mibBuilder.loadTexts:
fcmgmtCompliance.setDescription('Describes the requirements for compliance to this Fibre Channel Management MIB.')
fcm_instance_basic_group = object_group((1, 3, 6, 1, 2, 1, 10, 56, 3, 2, 1)).setObjects(('FC-MGMT-MIB', 'fcmInstanceWwn'), ('FC-MGMT-MIB', 'fcmInstanceFunctions'), ('FC-MGMT-MIB', 'fcmInstancePhysicalIndex'), ('FC-MGMT-MIB', 'fcmInstanceSoftwareIndex'), ('FC-MGMT-MIB', 'fcmInstanceStatus'), ('FC-MGMT-MIB', 'fcmInstanceTextName'), ('FC-MGMT-MIB', 'fcmInstanceDescr'), ('FC-MGMT-MIB', 'fcmInstanceFabricId'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
fcm_instance_basic_group = fcmInstanceBasicGroup.setStatus('current')
if mibBuilder.loadTexts:
fcmInstanceBasicGroup.setDescription('Basic information about Fibre Channel managed instances.')
fcm_switch_basic_group = object_group((1, 3, 6, 1, 2, 1, 10, 56, 3, 2, 2)).setObjects(('FC-MGMT-MIB', 'fcmSwitchDomainId'), ('FC-MGMT-MIB', 'fcmSwitchPrincipal'), ('FC-MGMT-MIB', 'fcmSwitchWWN'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
fcm_switch_basic_group = fcmSwitchBasicGroup.setStatus('current')
if mibBuilder.loadTexts:
fcmSwitchBasicGroup.setDescription('Basic information about Fibre Channel switches.')
fcm_port_basic_group = object_group((1, 3, 6, 1, 2, 1, 10, 56, 3, 2, 3)).setObjects(('FC-MGMT-MIB', 'fcmPortInstanceIndex'), ('FC-MGMT-MIB', 'fcmPortWwn'), ('FC-MGMT-MIB', 'fcmPortNodeWwn'), ('FC-MGMT-MIB', 'fcmPortAdminType'), ('FC-MGMT-MIB', 'fcmPortOperType'), ('FC-MGMT-MIB', 'fcmPortFcCapClass'), ('FC-MGMT-MIB', 'fcmPortFcOperClass'), ('FC-MGMT-MIB', 'fcmPortTransmitterType'), ('FC-MGMT-MIB', 'fcmPortConnectorType'), ('FC-MGMT-MIB', 'fcmPortSerialNumber'), ('FC-MGMT-MIB', 'fcmPortPhysicalNumber'), ('FC-MGMT-MIB', 'fcmPortAdminSpeed'), ('FC-MGMT-MIB', 'fcmPortCapProtocols'), ('FC-MGMT-MIB', 'fcmPortOperProtocols'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
fcm_port_basic_group = fcmPortBasicGroup.setStatus('current')
if mibBuilder.loadTexts:
fcmPortBasicGroup.setDescription('Basic information about Fibre Channel ports.')
fcm_port_stats_group = object_group((1, 3, 6, 1, 2, 1, 10, 56, 3, 2, 4)).setObjects(('FC-MGMT-MIB', 'fcmPortBBCreditZeros'), ('FC-MGMT-MIB', 'fcmPortFullInputBuffers'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
fcm_port_stats_group = fcmPortStatsGroup.setStatus('current')
if mibBuilder.loadTexts:
fcmPortStatsGroup.setDescription('Traffic statistics, which are not specific to any one class of service, for Fibre Channel ports.')
fcm_port_class23_stats_group = object_group((1, 3, 6, 1, 2, 1, 10, 56, 3, 2, 5)).setObjects(('FC-MGMT-MIB', 'fcmPortClass2RxFrames'), ('FC-MGMT-MIB', 'fcmPortClass2RxOctets'), ('FC-MGMT-MIB', 'fcmPortClass2TxFrames'), ('FC-MGMT-MIB', 'fcmPortClass2TxOctets'), ('FC-MGMT-MIB', 'fcmPortClass2Discards'), ('FC-MGMT-MIB', 'fcmPortClass2RxFbsyFrames'), ('FC-MGMT-MIB', 'fcmPortClass2RxPbsyFrames'), ('FC-MGMT-MIB', 'fcmPortClass2RxFrjtFrames'), ('FC-MGMT-MIB', 'fcmPortClass2RxPrjtFrames'), ('FC-MGMT-MIB', 'fcmPortClass2TxFbsyFrames'), ('FC-MGMT-MIB', 'fcmPortClass2TxPbsyFrames'), ('FC-MGMT-MIB', 'fcmPortClass2TxFrjtFrames'), ('FC-MGMT-MIB', 'fcmPortClass2TxPrjtFrames'), ('FC-MGMT-MIB', 'fcmPortClass3RxFrames'), ('FC-MGMT-MIB', 'fcmPortClass3RxOctets'), ('FC-MGMT-MIB', 'fcmPortClass3TxFrames'), ('FC-MGMT-MIB', 'fcmPortClass3TxOctets'), ('FC-MGMT-MIB', 'fcmPortClass3Discards'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
fcm_port_class23_stats_group = fcmPortClass23StatsGroup.setStatus('current')
if mibBuilder.loadTexts:
fcmPortClass23StatsGroup.setDescription('Traffic statistics for Class 2 and Class 3 traffic on Fibre Channel ports.')
fcm_port_class_f_stats_group = object_group((1, 3, 6, 1, 2, 1, 10, 56, 3, 2, 6)).setObjects(('FC-MGMT-MIB', 'fcmPortClassFRxFrames'), ('FC-MGMT-MIB', 'fcmPortClassFRxOctets'), ('FC-MGMT-MIB', 'fcmPortClassFTxFrames'), ('FC-MGMT-MIB', 'fcmPortClassFTxOctets'), ('FC-MGMT-MIB', 'fcmPortClassFDiscards'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
fcm_port_class_f_stats_group = fcmPortClassFStatsGroup.setStatus('current')
if mibBuilder.loadTexts:
fcmPortClassFStatsGroup.setDescription('Traffic statistics for Class F traffic on Fibre Channel ports.')
fcm_port_lc_stats_group = object_group((1, 3, 6, 1, 2, 1, 10, 56, 3, 2, 7)).setObjects(('FC-MGMT-MIB', 'fcmPortLcBBCreditZeros'), ('FC-MGMT-MIB', 'fcmPortLcFullInputBuffers'), ('FC-MGMT-MIB', 'fcmPortLcClass2RxFrames'), ('FC-MGMT-MIB', 'fcmPortLcClass2RxOctets'), ('FC-MGMT-MIB', 'fcmPortLcClass2TxFrames'), ('FC-MGMT-MIB', 'fcmPortLcClass2TxOctets'), ('FC-MGMT-MIB', 'fcmPortLcClass2Discards'), ('FC-MGMT-MIB', 'fcmPortLcClass3Discards'), ('FC-MGMT-MIB', 'fcmPortLcClass3RxFrames'), ('FC-MGMT-MIB', 'fcmPortLcClass3RxOctets'), ('FC-MGMT-MIB', 'fcmPortLcClass3TxFrames'), ('FC-MGMT-MIB', 'fcmPortLcClass3TxOctets'), ('FC-MGMT-MIB', 'fcmPortLcClass2RxFbsyFrames'), ('FC-MGMT-MIB', 'fcmPortLcClass2RxPbsyFrames'), ('FC-MGMT-MIB', 'fcmPortLcClass2RxFrjtFrames'), ('FC-MGMT-MIB', 'fcmPortLcClass2RxPrjtFrames'), ('FC-MGMT-MIB', 'fcmPortLcClass2TxFbsyFrames'), ('FC-MGMT-MIB', 'fcmPortLcClass2TxPbsyFrames'), ('FC-MGMT-MIB', 'fcmPortLcClass2TxFrjtFrames'), ('FC-MGMT-MIB', 'fcmPortLcClass2TxPrjtFrames'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
fcm_port_lc_stats_group = fcmPortLcStatsGroup.setStatus('current')
if mibBuilder.loadTexts:
fcmPortLcStatsGroup.setDescription('Low-capacity (32-bit) statistics for Fibre Channel ports.')
fcm_port_errors_group = object_group((1, 3, 6, 1, 2, 1, 10, 56, 3, 2, 8)).setObjects(('FC-MGMT-MIB', 'fcmPortRxLinkResets'), ('FC-MGMT-MIB', 'fcmPortTxLinkResets'), ('FC-MGMT-MIB', 'fcmPortLinkResets'), ('FC-MGMT-MIB', 'fcmPortRxOfflineSequences'), ('FC-MGMT-MIB', 'fcmPortTxOfflineSequences'), ('FC-MGMT-MIB', 'fcmPortLinkFailures'), ('FC-MGMT-MIB', 'fcmPortLossofSynchs'), ('FC-MGMT-MIB', 'fcmPortLossofSignals'), ('FC-MGMT-MIB', 'fcmPortPrimSeqProtocolErrors'), ('FC-MGMT-MIB', 'fcmPortInvalidTxWords'), ('FC-MGMT-MIB', 'fcmPortInvalidCRCs'), ('FC-MGMT-MIB', 'fcmPortInvalidOrderedSets'), ('FC-MGMT-MIB', 'fcmPortFrameTooLongs'), ('FC-MGMT-MIB', 'fcmPortTruncatedFrames'), ('FC-MGMT-MIB', 'fcmPortAddressErrors'), ('FC-MGMT-MIB', 'fcmPortDelimiterErrors'), ('FC-MGMT-MIB', 'fcmPortEncodingDisparityErrors'), ('FC-MGMT-MIB', 'fcmPortOtherErrors'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
fcm_port_errors_group = fcmPortErrorsGroup.setStatus('current')
if mibBuilder.loadTexts:
fcmPortErrorsGroup.setDescription('Error statistics for Fibre Channel ports.')
fcm_switch_port_group = object_group((1, 3, 6, 1, 2, 1, 10, 56, 3, 2, 9)).setObjects(('FC-MGMT-MIB', 'fcmFxPortRatov'), ('FC-MGMT-MIB', 'fcmFxPortEdtov'), ('FC-MGMT-MIB', 'fcmFxPortRttov'), ('FC-MGMT-MIB', 'fcmFxPortHoldTime'), ('FC-MGMT-MIB', 'fcmFxPortCapBbCreditMax'), ('FC-MGMT-MIB', 'fcmFxPortCapBbCreditMin'), ('FC-MGMT-MIB', 'fcmFxPortCapDataFieldSizeMax'), ('FC-MGMT-MIB', 'fcmFxPortCapDataFieldSizeMin'), ('FC-MGMT-MIB', 'fcmFxPortCapClass2SeqDeliv'), ('FC-MGMT-MIB', 'fcmFxPortCapClass3SeqDeliv'), ('FC-MGMT-MIB', 'fcmFxPortCapHoldTimeMax'), ('FC-MGMT-MIB', 'fcmFxPortCapHoldTimeMin'), ('FC-MGMT-MIB', 'fcmISPortClassFCredit'), ('FC-MGMT-MIB', 'fcmISPortClassFDataFieldSize'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
fcm_switch_port_group = fcmSwitchPortGroup.setStatus('current')
if mibBuilder.loadTexts:
fcmSwitchPortGroup.setDescription('Information about ports on a Fibre Channel switch.')
fcm_switch_login_group = object_group((1, 3, 6, 1, 2, 1, 10, 56, 3, 2, 10)).setObjects(('FC-MGMT-MIB', 'fcmFLoginPortWwn'), ('FC-MGMT-MIB', 'fcmFLoginNodeWwn'), ('FC-MGMT-MIB', 'fcmFLoginBbCreditModel'), ('FC-MGMT-MIB', 'fcmFLoginBbCredit'), ('FC-MGMT-MIB', 'fcmFLoginClassesAgreed'), ('FC-MGMT-MIB', 'fcmFLoginClass2SeqDelivAgreed'), ('FC-MGMT-MIB', 'fcmFLoginClass2DataFieldSize'), ('FC-MGMT-MIB', 'fcmFLoginClass3SeqDelivAgreed'), ('FC-MGMT-MIB', 'fcmFLoginClass3DataFieldSize'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
fcm_switch_login_group = fcmSwitchLoginGroup.setStatus('current')
if mibBuilder.loadTexts:
fcmSwitchLoginGroup.setDescription('Information known to a Fibre Channel switch about attached/logged-in Nx_Ports.')
fcm_link_basic_group = object_group((1, 3, 6, 1, 2, 1, 10, 56, 3, 2, 11)).setObjects(('FC-MGMT-MIB', 'fcmLinkEnd1NodeWwn'), ('FC-MGMT-MIB', 'fcmLinkEnd1PhysPortNumber'), ('FC-MGMT-MIB', 'fcmLinkEnd1PortWwn'), ('FC-MGMT-MIB', 'fcmLinkEnd2NodeWwn'), ('FC-MGMT-MIB', 'fcmLinkEnd2PhysPortNumber'), ('FC-MGMT-MIB', 'fcmLinkEnd2PortWwn'), ('FC-MGMT-MIB', 'fcmLinkEnd2AgentAddress'), ('FC-MGMT-MIB', 'fcmLinkEnd2PortType'), ('FC-MGMT-MIB', 'fcmLinkEnd2UnitType'), ('FC-MGMT-MIB', 'fcmLinkEnd2FcAddressId'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
fcm_link_basic_group = fcmLinkBasicGroup.setStatus('current')
if mibBuilder.loadTexts:
fcmLinkBasicGroup.setDescription('Information about Fibre Channel links.')
mibBuilder.exportSymbols('FC-MGMT-MIB', fcmPortOtherErrors=fcmPortOtherErrors, fcmLinkEnd1PhysPortNumber=fcmLinkEnd1PhysPortNumber, FcClasses=FcClasses, fcmFxPortTable=fcmFxPortTable, fcmgmtConformance=fcmgmtConformance, fcmFLoginPortWwn=fcmFLoginPortWwn, fcmPortClass3RxOctets=fcmPortClass3RxOctets, fcmInstanceEntry=fcmInstanceEntry, FcBbCreditModel=FcBbCreditModel, fcmFLoginNxPortIndex=fcmFLoginNxPortIndex, fcmFLoginBbCredit=fcmFLoginBbCredit, fcmPortEntry=fcmPortEntry, fcmLinkEnd2PhysPortNumber=fcmLinkEnd2PhysPortNumber, FcAddressIdOrZero=FcAddressIdOrZero, fcmPortClass2RxFrames=fcmPortClass2RxFrames, fcmPortClass2RxPbsyFrames=fcmPortClass2RxPbsyFrames, fcmPortPhysicalNumber=fcmPortPhysicalNumber, fcmPortLossofSynchs=fcmPortLossofSynchs, fcmPortOperProtocols=fcmPortOperProtocols, fcmPortClass3TxFrames=fcmPortClass3TxFrames, fcmPortLinkResets=fcmPortLinkResets, fcmPortStatsGroup=fcmPortStatsGroup, fcmgmtNotifications=fcmgmtNotifications, fcmFxPortCapClass3SeqDeliv=fcmFxPortCapClass3SeqDeliv, fcmPortClassFDiscards=fcmPortClassFDiscards, fcmInstancePhysicalIndex=fcmInstancePhysicalIndex, fcmSwitchTable=fcmSwitchTable, fcmPortLcClass2RxOctets=fcmPortLcClass2RxOctets, fcmPortClass3TxOctets=fcmPortClass3TxOctets, fcmPortLcClass2TxFrames=fcmPortLcClass2TxFrames, fcmFxPortEdtov=fcmFxPortEdtov, fcmSwitchEntry=fcmSwitchEntry, fcmLinkEnd2PortWwn=fcmLinkEnd2PortWwn, fcmPortLcBBCreditZeros=fcmPortLcBBCreditZeros, fcmSwitchBasicGroup=fcmSwitchBasicGroup, fcmInstanceFunctions=fcmInstanceFunctions, fcmPortLcStatsGroup=fcmPortLcStatsGroup, fcmPortNodeWwn=fcmPortNodeWwn, fcmPortClassFStatsGroup=fcmPortClassFStatsGroup, fcmLinkTable=fcmLinkTable, fcmPortClass3Discards=fcmPortClass3Discards, fcmPortLcClass3TxFrames=fcmPortLcClass3TxFrames, fcmFLoginBbCreditModel=fcmFLoginBbCreditModel, fcmPortLcClass2RxFbsyFrames=fcmPortLcClass2RxFbsyFrames, fcmLinkIndex=fcmLinkIndex, fcmPortClassFTxFrames=fcmPortClassFTxFrames, fcmLinkEntry=fcmLinkEntry, fcmPortLcClass2TxPrjtFrames=fcmPortLcClass2TxPrjtFrames, fcmSwitchLoginGroup=fcmSwitchLoginGroup, fcmPortLinkFailures=fcmPortLinkFailures, fcmPortConnectorType=fcmPortConnectorType, fcmPortLcClass2TxFbsyFrames=fcmPortLcClass2TxFbsyFrames, fcmFLoginClass3DataFieldSize=fcmFLoginClass3DataFieldSize, fcmPortFrameTooLongs=fcmPortFrameTooLongs, fcmPortClass2RxFbsyFrames=fcmPortClass2RxFbsyFrames, fcmPortTxOfflineSequences=fcmPortTxOfflineSequences, fcmInstanceFabricId=fcmInstanceFabricId, fcmSwitchWWN=fcmSwitchWWN, fcmFLoginClass2DataFieldSize=fcmFLoginClass2DataFieldSize, fcmPortLcClass2Discards=fcmPortLcClass2Discards, fcmPortBasicGroup=fcmPortBasicGroup, fcmPortClassFTxOctets=fcmPortClassFTxOctets, fcmPortClass2TxFrjtFrames=fcmPortClass2TxFrjtFrames, fcmLinkEnd2NodeWwn=fcmLinkEnd2NodeWwn, fcmLinkEnd2PortType=fcmLinkEnd2PortType, fcmPortCapProtocols=fcmPortCapProtocols, fcmPortClass2TxFbsyFrames=fcmPortClass2TxFbsyFrames, fcmPortClass2TxFrames=fcmPortClass2TxFrames, fcmPortLcStatsTable=fcmPortLcStatsTable, fcmISPortTable=fcmISPortTable, fcMgmtMIB=fcMgmtMIB, fcmSwitchPortGroup=fcmSwitchPortGroup, FcNameIdOrZero=FcNameIdOrZero, fcmPortFcCapClass=fcmPortFcCapClass, fcmInstanceIndex=fcmInstanceIndex, fcmPortClass3RxFrames=fcmPortClass3RxFrames, fcmFLoginClassesAgreed=fcmFLoginClassesAgreed, fcmFLoginTable=fcmFLoginTable, fcmFLoginNodeWwn=fcmFLoginNodeWwn, fcmInstanceStatus=fcmInstanceStatus, fcmInstanceBasicGroup=fcmInstanceBasicGroup, fcmLinkEnd2FcAddressId=fcmLinkEnd2FcAddressId, fcmSwitchDomainId=fcmSwitchDomainId, fcmPortAdminSpeed=fcmPortAdminSpeed, fcmPortLcClass2RxPbsyFrames=fcmPortLcClass2RxPbsyFrames, fcmPortEncodingDisparityErrors=fcmPortEncodingDisparityErrors, fcmPortTransmitterType=fcmPortTransmitterType, fcmFxPortRttov=fcmFxPortRttov, fcmPortLcClass2TxFrjtFrames=fcmPortLcClass2TxFrjtFrames, fcmFxPortCapDataFieldSizeMax=fcmFxPortCapDataFieldSizeMax, fcmPortInvalidTxWords=fcmPortInvalidTxWords, fcmFxPortCapDataFieldSizeMin=fcmFxPortCapDataFieldSizeMin, fcmgmtCompliance=fcmgmtCompliance, fcmPortClass2TxPbsyFrames=fcmPortClass2TxPbsyFrames, fcmInstanceSoftwareIndex=fcmInstanceSoftwareIndex, PYSNMP_MODULE_ID=fcMgmtMIB, fcmFLoginClass2SeqDelivAgreed=fcmFLoginClass2SeqDelivAgreed, fcmPortClass2RxOctets=fcmPortClass2RxOctets, fcmPortLcClass3RxFrames=fcmPortLcClass3RxFrames, fcmInstanceWwn=fcmInstanceWwn, fcmISPortEntry=fcmISPortEntry, fcmPortTable=fcmPortTable, FcUnitFunctions=FcUnitFunctions, fcmPortAdminType=fcmPortAdminType, fcmFxPortHoldTime=fcmFxPortHoldTime, fcmPortFcOperClass=fcmPortFcOperClass, fcmPortClass2TxOctets=fcmPortClass2TxOctets, fcmPortClassFRxOctets=fcmPortClassFRxOctets, fcmFLoginClass3SeqDelivAgreed=fcmFLoginClass3SeqDelivAgreed, FcPortType=FcPortType, fcmPortTxLinkResets=fcmPortTxLinkResets, fcmPortLcClass2TxOctets=fcmPortLcClass2TxOctets, fcmPortInvalidOrderedSets=fcmPortInvalidOrderedSets, fcmLinkEnd1PortWwn=fcmLinkEnd1PortWwn, fcmPortErrorsGroup=fcmPortErrorsGroup, fcmPortLcClass3RxOctets=fcmPortLcClass3RxOctets, fcmPortLcFullInputBuffers=fcmPortLcFullInputBuffers, fcmPortErrorsEntry=fcmPortErrorsEntry, fcmPortLossofSignals=fcmPortLossofSignals, fcmFxPortCapBbCreditMax=fcmFxPortCapBbCreditMax, fcmFxPortCapBbCreditMin=fcmFxPortCapBbCreditMin, fcmPortLcClass2RxFrames=fcmPortLcClass2RxFrames, fcmFLoginEntry=fcmFLoginEntry, fcmPortOperType=fcmPortOperType, fcmInstanceTable=fcmInstanceTable, fcmLinkBasicGroup=fcmLinkBasicGroup, fcmInstanceDescr=fcmInstanceDescr, fcmPortInvalidCRCs=fcmPortInvalidCRCs, fcmgmtObjects=fcmgmtObjects, fcmPortBBCreditZeros=fcmPortBBCreditZeros, fcmPortFullInputBuffers=fcmPortFullInputBuffers, fcmSwitchIndex=fcmSwitchIndex, fcmPortSerialNumber=fcmPortSerialNumber, fcmPortErrorsTable=fcmPortErrorsTable, fcmPortLcClass3TxOctets=fcmPortLcClass3TxOctets, fcmPortWwn=fcmPortWwn, fcmPortRxOfflineSequences=fcmPortRxOfflineSequences, FcBbCredit=FcBbCredit, fcmInstanceTextName=fcmInstanceTextName, fcmPortInstanceIndex=fcmPortInstanceIndex, fcmFxPortCapClass2SeqDeliv=fcmFxPortCapClass2SeqDeliv, fcmPortClass2TxPrjtFrames=fcmPortClass2TxPrjtFrames, fcmgmtGroups=fcmgmtGroups, fcmPortLcClass2RxFrjtFrames=fcmPortLcClass2RxFrjtFrames, fcmLinkEnd2AgentAddress=fcmLinkEnd2AgentAddress, fcmgmtCompliances=fcmgmtCompliances, fcmPortClassFRxFrames=fcmPortClassFRxFrames, fcmPortStatsEntry=fcmPortStatsEntry, fcmgmtNotifPrefix=fcmgmtNotifPrefix, fcmPortClass2RxFrjtFrames=fcmPortClass2RxFrjtFrames, fcmPortClass2Discards=fcmPortClass2Discards, fcmISPortClassFDataFieldSize=fcmISPortClassFDataFieldSize, FcDataFieldSize=FcDataFieldSize, fcmPortLcClass3Discards=fcmPortLcClass3Discards, fcmFxPortEntry=fcmFxPortEntry, fcmPortTruncatedFrames=fcmPortTruncatedFrames, fcmFxPortCapHoldTimeMin=fcmFxPortCapHoldTimeMin, fcmFxPortRatov=fcmFxPortRatov, FcDomainIdOrZero=FcDomainIdOrZero, fcmPortClass2RxPrjtFrames=fcmPortClass2RxPrjtFrames, fcmPortRxLinkResets=fcmPortRxLinkResets, fcmPortAddressErrors=fcmPortAddressErrors, fcmSwitchPrincipal=fcmSwitchPrincipal, fcmPortPrimSeqProtocolErrors=fcmPortPrimSeqProtocolErrors, fcmLinkEnd2UnitType=fcmLinkEnd2UnitType, fcmISPortClassFCredit=fcmISPortClassFCredit, fcmLinkEnd1NodeWwn=fcmLinkEnd1NodeWwn, fcmPortLcClass2RxPrjtFrames=fcmPortLcClass2RxPrjtFrames, fcmPortClass23StatsGroup=fcmPortClass23StatsGroup, fcmPortDelimiterErrors=fcmPortDelimiterErrors, fcmPortLcClass2TxPbsyFrames=fcmPortLcClass2TxPbsyFrames, fcmFxPortCapHoldTimeMax=fcmFxPortCapHoldTimeMax, fcmPortLcStatsEntry=fcmPortLcStatsEntry, fcmPortStatsTable=fcmPortStatsTable) |
EXPOSED_CRED_POLICY = 'AWSExposedCredentialPolicy_DO_NOT_REMOVE'
def rule(event):
request_params = event.get('requestParameters', {})
if request_params:
return (event['eventName'] == 'PutUserPolicy' and
request_params.get('policyName') == EXPOSED_CRED_POLICY)
return False
def dedup(event):
return event['userIdentity'].get('userName')
def title(event):
message = '{username}\'s access key ID [{key}] was uploaded to a public GitHub repo'
return message.format(username=dedup(event),
key=event['userIdentity'].get('accessKeyId'))
| exposed_cred_policy = 'AWSExposedCredentialPolicy_DO_NOT_REMOVE'
def rule(event):
request_params = event.get('requestParameters', {})
if request_params:
return event['eventName'] == 'PutUserPolicy' and request_params.get('policyName') == EXPOSED_CRED_POLICY
return False
def dedup(event):
return event['userIdentity'].get('userName')
def title(event):
message = "{username}'s access key ID [{key}] was uploaded to a public GitHub repo"
return message.format(username=dedup(event), key=event['userIdentity'].get('accessKeyId')) |
"""462. Total Occurrence of Target
"""
class Solution:
"""
@param A: A an integer array sorted in ascending order
@param target: An integer
@return: An integer
"""
def totalOccurrence(self, A, target):
# write your code here
### Practice:
if not A:
return 0
index = self.binarySearch(A, target)
if index == None:
return 0
cnt = 0
for i in range(index, len(A)):
if A[i] == target:
cnt += 1
return cnt
def binarySearch(self, nums, target):
start = 0
end = len(nums) - 1
while start + 1 < end:
mid = (start + end) // 2
if nums[mid] < target:
start = mid
else:
end = mid
if nums[start] == target:
return start
if nums[end] == target:
return end
return None
######
if not A:
return 0
start = 0
end = len(A) - 1
count = 0
while start + 1 < end:
mid = (start + end) // 2
if A[mid] < target:
start = mid
else:
end = mid
occur = 0
if A[start] == target:
occur = start
elif A[end] == target:
occur = end
else:
return 0
for i in range(occur, len(A)):
if A[i] != target:
break
count += 1
return count
| """462. Total Occurrence of Target
"""
class Solution:
"""
@param A: A an integer array sorted in ascending order
@param target: An integer
@return: An integer
"""
def total_occurrence(self, A, target):
if not A:
return 0
index = self.binarySearch(A, target)
if index == None:
return 0
cnt = 0
for i in range(index, len(A)):
if A[i] == target:
cnt += 1
return cnt
def binary_search(self, nums, target):
start = 0
end = len(nums) - 1
while start + 1 < end:
mid = (start + end) // 2
if nums[mid] < target:
start = mid
else:
end = mid
if nums[start] == target:
return start
if nums[end] == target:
return end
return None
if not A:
return 0
start = 0
end = len(A) - 1
count = 0
while start + 1 < end:
mid = (start + end) // 2
if A[mid] < target:
start = mid
else:
end = mid
occur = 0
if A[start] == target:
occur = start
elif A[end] == target:
occur = end
else:
return 0
for i in range(occur, len(A)):
if A[i] != target:
break
count += 1
return count |
# Definition for a binary tree node.
# class TreeNode:
# def __init__(self, val=0, left=None, right=None):
# self.val = val
# self.left = left
# self.right = right
class Solution:
def levelOrderBottom(self, root: Optional[TreeNode]) -> List[List[int]]:
result = []
depth = -1
def backtrack(root, curr):
nonlocal depth
if not root:
return
if curr > depth:
result.append([])
depth = curr
result[curr].append(root.val)
backtrack(root.left, curr+1)
backtrack(root.right, curr+1)
backtrack(root, 0)
return result[::-1] | class Solution:
def level_order_bottom(self, root: Optional[TreeNode]) -> List[List[int]]:
result = []
depth = -1
def backtrack(root, curr):
nonlocal depth
if not root:
return
if curr > depth:
result.append([])
depth = curr
result[curr].append(root.val)
backtrack(root.left, curr + 1)
backtrack(root.right, curr + 1)
backtrack(root, 0)
return result[::-1] |
"""
LJM library error codes.
"""
# Success
NOERROR = 0
# Warnings:
WARNINGS_BEGIN = 200
WARNINGS_END = 399
FRAMES_OMITTED_DUE_TO_PACKET_SIZE = 201
DEBUG_LOG_FAILURE = 202
USING_DEFAULT_CALIBRATION = 203
DEBUG_LOG_FILE_NOT_OPEN = 204
# Modbus Errors:
MODBUS_ERRORS_BEGIN = 1200
MODBUS_ERRORS_END = 1216
MBE1_ILLEGAL_FUNCTION = 1201
MBE2_ILLEGAL_DATA_ADDRESS = 1202
MBE3_ILLEGAL_DATA_VALUE = 1203
MBE4_SLAVE_DEVICE_FAILURE = 1204
MBE5_ACKNOWLEDGE = 1205
MBE6_SLAVE_DEVICE_BUSY = 1206
MBE8_MEMORY_PARITY_ERROR = 1208
MBE10_GATEWAY_PATH_UNAVAILABLE = 1210
MBE11_GATEWAY_TARGET_NO_RESPONSE = 1211
# Library Errors:
LIBRARY_ERRORS_BEGIN = 1220
LIBRARY_ERRORS_END = 1399
UNKNOWN_ERROR = 1221
INVALID_DEVICE_TYPE = 1222
INVALID_HANDLE = 1223
DEVICE_NOT_OPEN = 1224
STREAM_NOT_INITIALIZED = 1225
DEVICE_DISCONNECTED = 1226
DEVICE_NOT_FOUND = 1227
DEVICE_ALREADY_OPEN = 1229
DEVICE_CURRENTLY_CLAIMED_BY_ANOTHER_PROCESS = 1230
CANNOT_CONNECT = 1231
SOCKET_LEVEL_ERROR = 1233
CANNOT_OPEN_DEVICE = 1236
CANNOT_DISCONNECT = 1237
WINSOCK_FAILURE = 1238
RECONNECT_FAILED = 1239
CONNECTION_HAS_YIELDED_RECONNECT_FAILED = 1240
USB_FAILURE = 1241
# LJM does not support U3, U6, UE9, or U12 devices
U3_NOT_SUPPORTED_BY_LJM = 1243
U6_NOT_SUPPORTED_BY_LJM = 1246
UE9_NOT_SUPPORTED_BY_LJM = 1249
INVALID_ADDRESS = 1250
INVALID_CONNECTION_TYPE = 1251
INVALID_DIRECTION = 1252
INVALID_FUNCTION = 1253
INVALID_NUM_REGISTERS = 1254
INVALID_PARAMETER = 1255
INVALID_PROTOCOL_ID = 1256
INVALID_TRANSACTION_ID = 1257
UNKNOWN_VALUE_TYPE = 1259
MEMORY_ALLOCATION_FAILURE = 1260
NO_COMMAND_BYTES_SENT = 1261
INCORRECT_NUM_COMMAND_BYTES_SENT = 1262
NO_RESPONSE_BYTES_RECEIVED = 1263
INCORRECT_NUM_RESPONSE_BYTES_RECEIVED = 1264
MIXED_FORMAT_IP_ADDRESS = 1265
UNKNOWN_IDENTIFIER = 1266
NOT_IMPLEMENTED = 1267
INVALID_INDEX = 1268
INVALID_LENGTH = 1269
ERROR_BIT_SET = 1270
INVALID_MAXBYTESPERMBFB = 1271
NULL_POINTER = 1272
NULL_OBJ = 1273
RESERVED_NAME = 1274
UNPARSABLE_DEVICE_TYPE = 1275
UNPARSABLE_CONNECTION_TYPE = 1276
UNPARSABLE_IDENTIFIER = 1277
PACKET_SIZE_TOO_LARGE = 1278
TRANSACTION_ID_ERR = 1279
PROTOCOL_ID_ERR = 1280
LENGTH_ERR = 1281
UNIT_ID_ERR = 1282
FUNCTION_ERR = 1283
STARTING_REG_ERR = 1284
NUM_REGS_ERR = 1285
NUM_BYTES_ERR = 1286
CONFIG_FILE_NOT_FOUND = 1289
CONFIG_PARSING_ERROR = 1290
INVALID_NUM_VALUES = 1291
MODBUS_CONSTANTS_FILE_NOT_FOUND = 1292
INVALID_MODBUS_CONSTANTS_FILE = 1293
INVALID_NAME = 1294
OVERSPECIFIED_PORT = 1296
INTENT_NOT_READY = 1297
ATTR_LOAD_COMM_FAILURE = 1298
INVALID_CONFIG_NAME = 1299
ERROR_RETRIEVAL_FAILURE = 1300
LJM_BUFFER_FULL = 1301
COULD_NOT_START_STREAM = 1302
STREAM_NOT_RUNNING = 1303
UNABLE_TO_STOP_STREAM = 1304
INVALID_VALUE = 1305
SYNCHRONIZATION_TIMEOUT = 1306
OLD_FIRMWARE = 1307
CANNOT_READ_OUT_ONLY_STREAM = 1308
NO_SCANS_RETURNED = 1309
TEMPERATURE_OUT_OF_RANGE = 1310
VOLTAGE_OUT_OF_RANGE = 1311
FUNCTION_DOES_NOT_SUPPORT_THIS_TYPE = 1312
INVALID_INFO_HANDLE = 1313
NO_DEVICES_FOUND = 1314
AUTO_IPS_FILE_NOT_FOUND = 1316
AUTO_IPS_FILE_INVALID = 1317
INVALID_INTERVAL_HANDLE = 1318
NAMED_MUTEX_PERMISSION_DENIED = 1319
DIGITAL_AUTO_RECOVERY_ERROR_DETECTED = 1320
NEGATIVE_RECEIVE_BUFFER_SIZE = 1321
COULD_NOT_CLAIM_DEVICE = 1230 # Deprecated - use DEVICE_CURRENTLY_CLAIMED_BY_ANOTHER_PROCESS instead
U3_CANNOT_BE_OPENED_BY_LJM = 1243 # Deprecated - use U3_NOT_SUPPORTED_BY_LJM instead
U6_CANNOT_BE_OPENED_BY_LJM = 1246 # Deprecated - use U6_NOT_SUPPORTED_BY_LJM instead
UE9_CANNOT_BE_OPENED_BY_LJM = 1249 # Deprecated- use UE9_NOT_SUPPORTED_BY_LJM instead
INVALID_VALUE_TYPE = 1259 # Deprecated - use UNKNOWN_VALUE_TYPE instead
| """
LJM library error codes.
"""
noerror = 0
warnings_begin = 200
warnings_end = 399
frames_omitted_due_to_packet_size = 201
debug_log_failure = 202
using_default_calibration = 203
debug_log_file_not_open = 204
modbus_errors_begin = 1200
modbus_errors_end = 1216
mbe1_illegal_function = 1201
mbe2_illegal_data_address = 1202
mbe3_illegal_data_value = 1203
mbe4_slave_device_failure = 1204
mbe5_acknowledge = 1205
mbe6_slave_device_busy = 1206
mbe8_memory_parity_error = 1208
mbe10_gateway_path_unavailable = 1210
mbe11_gateway_target_no_response = 1211
library_errors_begin = 1220
library_errors_end = 1399
unknown_error = 1221
invalid_device_type = 1222
invalid_handle = 1223
device_not_open = 1224
stream_not_initialized = 1225
device_disconnected = 1226
device_not_found = 1227
device_already_open = 1229
device_currently_claimed_by_another_process = 1230
cannot_connect = 1231
socket_level_error = 1233
cannot_open_device = 1236
cannot_disconnect = 1237
winsock_failure = 1238
reconnect_failed = 1239
connection_has_yielded_reconnect_failed = 1240
usb_failure = 1241
u3_not_supported_by_ljm = 1243
u6_not_supported_by_ljm = 1246
ue9_not_supported_by_ljm = 1249
invalid_address = 1250
invalid_connection_type = 1251
invalid_direction = 1252
invalid_function = 1253
invalid_num_registers = 1254
invalid_parameter = 1255
invalid_protocol_id = 1256
invalid_transaction_id = 1257
unknown_value_type = 1259
memory_allocation_failure = 1260
no_command_bytes_sent = 1261
incorrect_num_command_bytes_sent = 1262
no_response_bytes_received = 1263
incorrect_num_response_bytes_received = 1264
mixed_format_ip_address = 1265
unknown_identifier = 1266
not_implemented = 1267
invalid_index = 1268
invalid_length = 1269
error_bit_set = 1270
invalid_maxbytespermbfb = 1271
null_pointer = 1272
null_obj = 1273
reserved_name = 1274
unparsable_device_type = 1275
unparsable_connection_type = 1276
unparsable_identifier = 1277
packet_size_too_large = 1278
transaction_id_err = 1279
protocol_id_err = 1280
length_err = 1281
unit_id_err = 1282
function_err = 1283
starting_reg_err = 1284
num_regs_err = 1285
num_bytes_err = 1286
config_file_not_found = 1289
config_parsing_error = 1290
invalid_num_values = 1291
modbus_constants_file_not_found = 1292
invalid_modbus_constants_file = 1293
invalid_name = 1294
overspecified_port = 1296
intent_not_ready = 1297
attr_load_comm_failure = 1298
invalid_config_name = 1299
error_retrieval_failure = 1300
ljm_buffer_full = 1301
could_not_start_stream = 1302
stream_not_running = 1303
unable_to_stop_stream = 1304
invalid_value = 1305
synchronization_timeout = 1306
old_firmware = 1307
cannot_read_out_only_stream = 1308
no_scans_returned = 1309
temperature_out_of_range = 1310
voltage_out_of_range = 1311
function_does_not_support_this_type = 1312
invalid_info_handle = 1313
no_devices_found = 1314
auto_ips_file_not_found = 1316
auto_ips_file_invalid = 1317
invalid_interval_handle = 1318
named_mutex_permission_denied = 1319
digital_auto_recovery_error_detected = 1320
negative_receive_buffer_size = 1321
could_not_claim_device = 1230
u3_cannot_be_opened_by_ljm = 1243
u6_cannot_be_opened_by_ljm = 1246
ue9_cannot_be_opened_by_ljm = 1249
invalid_value_type = 1259 |
#
# Copyright (C) 2019 Red Hat, 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 ofthe 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 specificlanguage governing permissions and
# limitations under the License.
#
class PacketInjection(object):
"""
Definition of a Skydive packet injection.
"""
def __init__(self, uuid="", src="", dst="", srcip="", dstip="", srcmac="",
dstmac="", srcport=0, dstport=0, type="icmp4", payload="",
trackingid="", icmpid=0, count=1, interval=0,
mode="unique", starttime="", ttl=64):
self.uuid = uuid
self.src = src
self.dst = dst
self.srcip = srcip
self.dstip = dstip
self.srcmac = srcmac
self.dstmac = dstmac
self.srcport = srcport
self.dstport = dstport
self.type = type
self.payload = payload
self.trackingid = trackingid
self.icmpid = icmpid
self.count = count
self.interval = interval
self.mode = mode
self.starttime = starttime
self.ttl = ttl
def repr_json(self):
obj = {}
if self.uuid:
obj["UUID"] = self.uuid
if self.src:
obj["Src"] = self.src
if self.dst:
obj["Dst"] = self.dst
if self.srcip:
obj["SrcIP"] = self.srcip
if self.dstip:
obj["DstIP"] = self.dstip
if self.srcmac:
obj["SrcMAC"] = self.srcmac
if self.dstmac:
obj["DstMAC"] = self.dstmac
if self.srcport:
obj["SrcPort"] = self.srcport
if self.dstport:
obj["DstPort"] = self.dstport
if self.type:
obj["Type"] = self.type
if self.payload:
obj["Payload"] = self.payload
if self.trackingid:
obj["TrackingID"] = self.trackingid
if self.icmpid:
obj["ICMPID"] = self.icmpid
if self.count:
obj["Count"] = self.count
if self.interval:
obj["Interval"] = self.interval
if self.mode:
obj["Mode"] = self.mode
if self.ttl:
obj["TTL"] = self.ttl
return obj
@classmethod
def from_object(self, obj):
return self(uuid=obj.get("UUID"),
src=obj.get("Src"),
dst=obj.get("Dst"),
srcip=obj.get("SrcIP"),
dstip=obj.get("DstIP"),
srcmac=obj.get("SrcMAC"),
dstmac=obj.get("DstMAC"),
srcport=obj.get("SrcPort"),
dstport=obj.get("DstPort"),
type=obj.get("Type"),
payload=obj.get("Payload"),
trackingid=obj.get("TrackingID"),
icmpid=obj.get("ICMPID"),
count=obj.get("Count"),
interval=obj.get("Interval"),
mode=obj.get("Mode"),
ttl=obj.get("TTL"))
| class Packetinjection(object):
"""
Definition of a Skydive packet injection.
"""
def __init__(self, uuid='', src='', dst='', srcip='', dstip='', srcmac='', dstmac='', srcport=0, dstport=0, type='icmp4', payload='', trackingid='', icmpid=0, count=1, interval=0, mode='unique', starttime='', ttl=64):
self.uuid = uuid
self.src = src
self.dst = dst
self.srcip = srcip
self.dstip = dstip
self.srcmac = srcmac
self.dstmac = dstmac
self.srcport = srcport
self.dstport = dstport
self.type = type
self.payload = payload
self.trackingid = trackingid
self.icmpid = icmpid
self.count = count
self.interval = interval
self.mode = mode
self.starttime = starttime
self.ttl = ttl
def repr_json(self):
obj = {}
if self.uuid:
obj['UUID'] = self.uuid
if self.src:
obj['Src'] = self.src
if self.dst:
obj['Dst'] = self.dst
if self.srcip:
obj['SrcIP'] = self.srcip
if self.dstip:
obj['DstIP'] = self.dstip
if self.srcmac:
obj['SrcMAC'] = self.srcmac
if self.dstmac:
obj['DstMAC'] = self.dstmac
if self.srcport:
obj['SrcPort'] = self.srcport
if self.dstport:
obj['DstPort'] = self.dstport
if self.type:
obj['Type'] = self.type
if self.payload:
obj['Payload'] = self.payload
if self.trackingid:
obj['TrackingID'] = self.trackingid
if self.icmpid:
obj['ICMPID'] = self.icmpid
if self.count:
obj['Count'] = self.count
if self.interval:
obj['Interval'] = self.interval
if self.mode:
obj['Mode'] = self.mode
if self.ttl:
obj['TTL'] = self.ttl
return obj
@classmethod
def from_object(self, obj):
return self(uuid=obj.get('UUID'), src=obj.get('Src'), dst=obj.get('Dst'), srcip=obj.get('SrcIP'), dstip=obj.get('DstIP'), srcmac=obj.get('SrcMAC'), dstmac=obj.get('DstMAC'), srcport=obj.get('SrcPort'), dstport=obj.get('DstPort'), type=obj.get('Type'), payload=obj.get('Payload'), trackingid=obj.get('TrackingID'), icmpid=obj.get('ICMPID'), count=obj.get('Count'), interval=obj.get('Interval'), mode=obj.get('Mode'), ttl=obj.get('TTL')) |
# Definition for a binary tree node.
# class TreeNode:
# def __init__(self, x):
# self.val = x
# self.left = None
# self.right = None
class Solution:
# @param {TreeNode} root
# @return {string[]}
def binaryTreePaths(self, root):
if not root:
return []
if not root.left and not root.right:
return [str(root.val)]
return map(lambda x:str(root.val)+'->'+x, self.binaryTreePaths(root.left)) + \
map(lambda x:str(root.val)+'->'+x, self.binaryTreePaths(root.right)) | class Solution:
def binary_tree_paths(self, root):
if not root:
return []
if not root.left and (not root.right):
return [str(root.val)]
return map(lambda x: str(root.val) + '->' + x, self.binaryTreePaths(root.left)) + map(lambda x: str(root.val) + '->' + x, self.binaryTreePaths(root.right)) |
def inc(x):
return x + 1
def dec(x):
return x - 1
def floor(par):
x = 0
y = 1
for i in par:
x = inc(x) if i == "(" else dec(x)
if x == -1:
return y
y += 1
return x
print(floor(
"((((()(()(((((((()))(((()((((()())(())()(((()((((((()((()(()(((()(()((())))()((()()())))))))))()((((((())((()))(((((()(((((((((()()))((()(())()((())((()(()))((()))()))()(((((()(((()()))()())((()((((())()())()((((())()(()(()(((()(())(()(())(((((((())()()(((())(()(()(()(())))(()((((())((()))(((()(()()(((((()()(()(((()(((((())()))()((()(()))()((()((((())((((())(()(((())()()(()()()()()(())((((())((())(()()))()((((())))((((()())()((((())((()())((())(())(((((()((((()(((()((((())(()(((()()))()))((((((()((())()())))(((()(()))(()()(()(((()(()))((()()()())((()()()(((())())()())())())((()))(()(()))(((((()(()(())((()(())(())()((((()())()))((((())(())((())())((((()(((())(())((()()((((()((((((()(())()()(()(()()((((()))(())()())()))(())))(())))())()()(())(()))()((()(()(())()()))(()())))))(()))(()()))(())(((((()(()(()()((())()())))))((())())((())(()(())((()))(())(((()((((((((()()()(()))()()(((()))()((()()(())(())())()(()(())))(((((()(())(())(()))))())()))(()))()(()(((((((()((((())))())())())())()((((((((((((((()()((((((()()()())())()())())())(())(())))())((()())((()(()))))))()))))))))))))))))())((())((())()()))))))(((()((()(()()))((())(()()))()()())))(())))))))(()(((())))())()())))()()(())()))()(()))())((()()))))(()))))()))(()()(())))))))()(((()))))()(()))(())())))))()))((()))((()))())(())))))))))((((())()))()))()))())(())()()(())))())))(()())()))((()()(())))(())((((((()(())((()(((()(()()(())))()))))))()))()(()((()))()(()))(()(((())((((())())(())(()))))))))())))))))())())))))())))))()()(((())()(()))))))))())))))(())()()()))()))()))(()(())()()())())))))))())()(()(()))))()()()))))())(()))))()()))))()())))))(((())()()))(()))))))))))()()))))()()()))))(()())())()()())()(()))))()(()))(())))))))(((((())(())())()()))()()))(())))))()(()))))(())(()()))()())()))()))()))()))))())()()))())())))(()))(()))))))())()(((())()))))))))()))()())))())))())))()))))))))))()()))(()()))))))(())()(()))))())(()))))(()))))(()())))))())())()()))))())()))))))))(()))))()))))))()(()())))))))()))())))())))())))())))))))())(()()))))))(()())())))()())()))))))))))))))())))()(())))()))())()()(())(()()))(())))())()())(()(()(()))))())))))))))))())(()))()))()))))(())()())()())))))))))))()()))))))))))))())())))))(()())))))))))))())(())))()))))))))())())(()))()))(())))()))()()(())()))))))()((((())()))())())))))()))()))))((()())()))))())))(())))))))))))))))))()))))()()())()))()()))))())()))((()())))())))(()))(()())))))))()))()))))(())))))))(())))))())()()(()))())()))()()))))())()()))))())()))())))))))(()))))()())()))))))))(()))())))(()))()))))(())()))())())(())())())))))))((((())))))()))()))()())()(())))()))()))()())(()())()()(()())()))))())())))))(()))()))))())(()()(())))))(())()()((())())))))(())(())))))))())))))))))()(())))))))()())())())()(()))))))))(()))))))))())()()))()(()))))))()))))))())))))))(())))()()(())()())))))(((())))()((())()))())))(()()))())(())())))()(((()())))))()(()()())))()()(()()(()()))())()(()()()))())()()))()())(()))))())))))())))(())()()))))(()))))(())(()))(())))))()()))()))))())()))()()(())())))((()))())()))))))()()))))((()(()))))()()))))))())))))())(()((()())))))))))))()())())))()))(()))))))(()))(())()())))(()))))))))())()()()()))))(()())))))))((())))()))(()))(())(())()())()))))))))(())))())))(()))()()))(()()))(()))())))()(())))())((()((()(())))((())))()))))((((())())()())))(())))()))))))())(()()((())))())()(()())))))(()())()))())))))))((())())))))))(()(()))())()()(()()(((()(((()())))))()))))))()(())(()()((()()(())()()))())()())()))()())())())))))))(((())))))))()()))))))(((())()))(()()))(()()))))(()(()()((((())()())((()()))))(()(())))))()((()()()())()()((()((()()))(()))(((()()()))(((())))()(((())()))))))((()(())())))(()())(((((()(()))(()((()))(()())()))))(()(()))()(()))(())(((())(()()))))()()))(((()))))(()()()()))())))((()()()(())()))()))))()()))()))))))((((((()()()))))())((()()(((()))))(()(())(()()())())())))()(((()()))(())((())))(()))(()()()())((())())())(()))))()))()((()(())()(()()(())(()))(())()))(())(()))))(())(())())(()()(()((()()((())))((()))()((())))(((()()()()((((()))(()()))()()()(((())((())())(()()(()()()))()((())(())()))())(((()()(())))()((()()())()())(()(())())(((())(())())((())(())()(((()()))(())))((())(()())())(())((()()()((((((())))((()(((((())()))()))(())(()()))()))(())()()))(())((()()())()()(()))())()((())))()((()()())((((()())((())())())((()((()))()))((())((()()(()((()()(((())(()()))))((()((())()(((())(()((())())((())(()((((((())())()(()())()(())(((())((((((()(())(()((()()()((()()(()()()())))()()(((((()()))()((((((()))()(()(()(()(((()())((()))())()((()))(())))()))()()))())()()))())((((())(()(()))(((((((())(((()(((((()(((()()((((())(((())())))(()()()(()(()))()))((((((()))((()(((()(())((()((((()((((((())(((((())))(((()(()))))(((()(((())()((())(()((()))(((()()(((())((((()(()(((((()))(((()(((((((()(()()()(()(()(()()())(())(((((()(())())()())(()(()(()))()(()()()())(()()(()((()))()((())())()(()))((())(()))()(()))()(((()(()(()((((((()()()()())()(((((()()(((()()()((()(((((()))((((((((()()()(((((()))))))(()()()(())(()))(()()))))(())()))(((((()(((((()()(()(()())(((()))((((()((()(()(()((()(()((())))()(((()((()))((()))(((((((((()((()((()(())))()((((()((()()))((())(((()(((((()()(()(()()((()(()()()(((((((())())()())))))((((()()(()))()))(()((())()(()(((((((((()()(((()(()())(()((()())((())())((((()(((()(((()((((()((()((((()(()((((((())((((((((((((()()(()()((((((((((((((()((()()))()((((((((((((())((((()(()())((()(()(()))()(((((()()(((()()))()())(())((()(((((()((())(((((()((()(((((()))()()((((())()((((())(((((((((()(())(()(())))())(()((())(((())(())(())())(()(()(())()()((()((())()(((()(((((()(())))()(((()((())))((()()()(((()(((()((()(()(())(()((()())(()(()(((()(((((((((())(()((((()()))(()((((()()()()(((()((((((((()(()()((((((()(()()(()((()((((((((((()()(((((((()())(())))(((()()))(((((()((()()())(()()((((())((()((((()))))(())((()(()()(((()(()(((()((((()(((((()))())())(()((())()))(((()())((())((())((((()((()((((((())(()((((()()))((((((())()(()))((()(((())((((((((((()()(((((()(((((()((()()()((((())))(()))()((()(())()()((()((((((((((()((())(())(((((()(()(()()))((((()((((()()((()(((()(((((((((()(()((()((()))((((((()(((())()()((()(((((((()())))()()(()((()((()()(((()(()()()()((((()((())((((()(((((((((()(((()()(((()(()(((()(((()((())()(()((()(()(()(()))()(((()))(()((((()((())((((())((((((())(()))(()((((())((()(()((((((((()()((((((()(()(()()()(())((()((()()(((()(((((((()()((()(((((((()))(((((()(((()(()()()(()(((()((()()((())(()(((((((((()(()((()((((((()()((())()))(((((()((())()())()(((((((((((()))((((()()()()())(()()(()(()()))()))(()))(()(((()()))())(()(()))()()((())(()())()())()(()))()))(()()(()((((((())((()(((((((((((()(())()((()(()((()((()(()((()((((((((((()()())((())()(())))((())()())()(((((()(()())((((()((()(())(()))(((())()((()))(((((())(()))()()(()))(((())((((()((((()(())))(((((((()))))())()())(())((())()(()()((()(()))()(()()(()()((()())((())((()()))((((()))()()))(()()(())()()(((((()(())((()((((()))()))(()())())(((()()(()()))(())))))(()))((())(((((()((((()))()((((()))()((())(((())))(((()())))((()(()()(("))
| def inc(x):
return x + 1
def dec(x):
return x - 1
def floor(par):
x = 0
y = 1
for i in par:
x = inc(x) if i == '(' else dec(x)
if x == -1:
return y
y += 1
return x
print(floor('((((()(()(((((((()))(((()((((()())(())()(((()((((((()((()(()(((()(()((())))()((()()())))))))))()((((((())((()))(((((()(((((((((()()))((()(())()((())((()(()))((()))()))()(((((()(((()()))()())((()((((())()())()((((())()(()(()(((()(())(()(())(((((((())()()(((())(()(()(()(())))(()((((())((()))(((()(()()(((((()()(()(((()(((((())()))()((()(()))()((()((((())((((())(()(((())()()(()()()()()(())((((())((())(()()))()((((())))((((()())()((((())((()())((())(())(((((()((((()(((()((((())(()(((()()))()))((((((()((())()())))(((()(()))(()()(()(((()(()))((()()()())((()()()(((())())()())())())((()))(()(()))(((((()(()(())((()(())(())()((((()())()))((((())(())((())())((((()(((())(())((()()((((()((((((()(())()()(()(()()((((()))(())()())()))(())))(())))())()()(())(()))()((()(()(())()()))(()())))))(()))(()()))(())(((((()(()(()()((())()())))))((())())((())(()(())((()))(())(((()((((((((()()()(()))()()(((()))()((()()(())(())())()(()(())))(((((()(())(())(()))))())()))(()))()(()(((((((()((((())))())())())())()((((((((((((((()()((((((()()()())())()())())())(())(())))())((()())((()(()))))))()))))))))))))))))())((())((())()()))))))(((()((()(()()))((())(()()))()()())))(())))))))(()(((())))())()())))()()(())()))()(()))())((()()))))(()))))()))(()()(())))))))()(((()))))()(()))(())())))))()))((()))((()))())(())))))))))((((())()))()))()))())(())()()(())))())))(()())()))((()()(())))(())((((((()(())((()(((()(()()(())))()))))))()))()(()((()))()(()))(()(((())((((())())(())(()))))))))())))))))())())))))())))))()()(((())()(()))))))))())))))(())()()()))()))()))(()(())()()())())))))))())()(()(()))))()()()))))())(()))))()()))))()())))))(((())()()))(()))))))))))()()))))()()()))))(()())())()()())()(()))))()(()))(())))))))(((((())(())())()()))()()))(())))))()(()))))(())(()()))()())()))()))()))()))))())()()))())())))(()))(()))))))())()(((())()))))))))()))()())))())))())))()))))))))))()()))(()()))))))(())()(()))))())(()))))(()))))(()())))))())())()()))))())()))))))))(()))))()))))))()(()())))))))()))())))())))())))())))))))())(()()))))))(()())())))()())()))))))))))))))())))()(())))()))())()()(())(()()))(())))())()())(()(()(()))))())))))))))))())(()))()))()))))(())()())()())))))))))))()()))))))))))))())())))))(()())))))))))))())(())))()))))))))())())(()))()))(())))()))()()(())()))))))()((((())()))())())))))()))()))))((()())()))))())))(())))))))))))))))))()))))()()())()))()()))))())()))((()())))())))(()))(()())))))))()))()))))(())))))))(())))))())()()(()))())()))()()))))())()()))))())()))())))))))(()))))()())()))))))))(()))())))(()))()))))(())()))())())(())())())))))))((((())))))()))()))()())()(())))()))()))()())(()())()()(()())()))))())())))))(()))()))))())(()()(())))))(())()()((())())))))(())(())))))))())))))))))()(())))))))()())())())()(()))))))))(()))))))))())()()))()(()))))))()))))))())))))))(())))()()(())()())))))(((())))()((())()))())))(()()))())(())())))()(((()())))))()(()()())))()()(()()(()()))())()(()()()))())()()))()())(()))))())))))())))(())()()))))(()))))(())(()))(())))))()()))()))))())()))()()(())())))((()))())()))))))()()))))((()(()))))()()))))))())))))())(()((()())))))))))))()())())))()))(()))))))(()))(())()())))(()))))))))())()()()()))))(()())))))))((())))()))(()))(())(())()())()))))))))(())))())))(()))()()))(()()))(()))())))()(())))())((()((()(())))((())))()))))((((())())()())))(())))()))))))())(()()((())))())()(()())))))(()())()))())))))))((())())))))))(()(()))())()()(()()(((()(((()())))))()))))))()(())(()()((()()(())()()))())()())()))()())())())))))))(((())))))))()()))))))(((())()))(()()))(()()))))(()(()()((((())()())((()()))))(()(())))))()((()()()())()()((()((()()))(()))(((()()()))(((())))()(((())()))))))((()(())())))(()())(((((()(()))(()((()))(()())()))))(()(()))()(()))(())(((())(()()))))()()))(((()))))(()()()()))())))((()()()(())()))()))))()()))()))))))((((((()()()))))())((()()(((()))))(()(())(()()())())())))()(((()()))(())((())))(()))(()()()())((())())())(()))))()))()((()(())()(()()(())(()))(())()))(())(()))))(())(())())(()()(()((()()((())))((()))()((())))(((()()()()((((()))(()()))()()()(((())((())())(()()(()()()))()((())(())()))())(((()()(())))()((()()())()())(()(())())(((())(())())((())(())()(((()()))(())))((())(()())())(())((()()()((((((())))((()(((((())()))()))(())(()()))()))(())()()))(())((()()())()()(()))())()((())))()((()()())((((()())((())())())((()((()))()))((())((()()(()((()()(((())(()()))))((()((())()(((())(()((())())((())(()((((((())())()(()())()(())(((())((((((()(())(()((()()()((()()(()()()())))()()(((((()()))()((((((()))()(()(()(()(((()())((()))())()((()))(())))()))()()))())()()))())((((())(()(()))(((((((())(((()(((((()(((()()((((())(((())())))(()()()(()(()))()))((((((()))((()(((()(())((()((((()((((((())(((((())))(((()(()))))(((()(((())()((())(()((()))(((()()(((())((((()(()(((((()))(((()(((((((()(()()()(()(()(()()())(())(((((()(())())()())(()(()(()))()(()()()())(()()(()((()))()((())())()(()))((())(()))()(()))()(((()(()(()((((((()()()()())()(((((()()(((()()()((()(((((()))((((((((()()()(((((()))))))(()()()(())(()))(()()))))(())()))(((((()(((((()()(()(()())(((()))((((()((()(()(()((()(()((())))()(((()((()))((()))(((((((((()((()((()(())))()((((()((()()))((())(((()(((((()()(()(()()((()(()()()(((((((())())()())))))((((()()(()))()))(()((())()(()(((((((((()()(((()(()())(()((()())((())())((((()(((()(((()((((()((()((((()(()((((((())((((((((((((()()(()()((((((((((((((()((()()))()((((((((((((())((((()(()())((()(()(()))()(((((()()(((()()))()())(())((()(((((()((())(((((()((()(((((()))()()((((())()((((())(((((((((()(())(()(())))())(()((())(((())(())(())())(()(()(())()()((()((())()(((()(((((()(())))()(((()((())))((()()()(((()(((()((()(()(())(()((()())(()(()(((()(((((((((())(()((((()()))(()((((()()()()(((()((((((((()(()()((((((()(()()(()((()((((((((((()()(((((((()())(())))(((()()))(((((()((()()())(()()((((())((()((((()))))(())((()(()()(((()(()(((()((((()(((((()))())())(()((())()))(((()())((())((())((((()((()((((((())(()((((()()))((((((())()(()))((()(((())((((((((((()()(((((()(((((()((()()()((((())))(()))()((()(())()()((()((((((((((()((())(())(((((()(()(()()))((((()((((()()((()(((()(((((((((()(()((()((()))((((((()(((())()()((()(((((((()())))()()(()((()((()()(((()(()()()()((((()((())((((()(((((((((()(((()()(((()(()(((()(((()((())()(()((()(()(()(()))()(((()))(()((((()((())((((())((((((())(()))(()((((())((()(()((((((((()()((((((()(()(()()()(())((()((()()(((()(((((((()()((()(((((((()))(((((()(((()(()()()(()(((()((()()((())(()(((((((((()(()((()((((((()()((())()))(((((()((())()())()(((((((((((()))((((()()()()())(()()(()(()()))()))(()))(()(((()()))())(()(()))()()((())(()())()())()(()))()))(()()(()((((((())((()(((((((((((()(())()((()(()((()((()(()((()((((((((((()()())((())()(())))((())()())()(((((()(()())((((()((()(())(()))(((())()((()))(((((())(()))()()(()))(((())((((()((((()(())))(((((((()))))())()())(())((())()(()()((()(()))()(()()(()()((()())((())((()()))((((()))()()))(()()(())()()(((((()(())((()((((()))()))(()())())(((()()(()()))(())))))(()))((())(((((()((((()))()((((()))()((())(((())))(((()())))((()(()()((')) |
"""
https://www.hackerrank.com/challenges/no-idea
There is an array of integers. There are also disjoint sets, and , each containing integers. You like all the integers in set and dislike all the integers in set . Your initial happiness is . For each integer in the array, if , you add to your happiness. If , you add to your happiness. Otherwise, your happiness does not change. Output your final happiness at the end.
Note: Since and are sets, they have no repeated elements. However, the array might contain duplicate elements.
Constraints
Input Format
The first line contains integers and separated by a space.
The second line contains integers, the elements of the array.
The third and fourth lines contain integers, and , respectively.
Output Format
Output a single integer, your total happiness.
Sample Input
3 2
1 5 3
3 1
5 7
Sample Output
1
Explanation
You gain unit of happiness for elements and in set . You lose unit for in set . The element in set does not exist in the array so it is not included in the calculation.
Hence, the total happiness is .
"""
#!/bin/python3
# Enter your code here. Read input from STDIN. Print output to STDOUT
def get_points(array, like_list, dislike_list):
points = 0
for number in array:
if number in like_list:
points += 1
if number in dislike_list:
points -= 1
return points
if __name__ == "__main__":
n,m = tuple(map(int, input().split()))
array = tuple(map(int, input().split()))
like_list = set(map(int, input().split()))
dislike_list = set(map(int, input().split()))
print(get_points(array, like_list, dislike_list))
| """
https://www.hackerrank.com/challenges/no-idea
There is an array of integers. There are also disjoint sets, and , each containing integers. You like all the integers in set and dislike all the integers in set . Your initial happiness is . For each integer in the array, if , you add to your happiness. If , you add to your happiness. Otherwise, your happiness does not change. Output your final happiness at the end.
Note: Since and are sets, they have no repeated elements. However, the array might contain duplicate elements.
Constraints
Input Format
The first line contains integers and separated by a space.
The second line contains integers, the elements of the array.
The third and fourth lines contain integers, and , respectively.
Output Format
Output a single integer, your total happiness.
Sample Input
3 2
1 5 3
3 1
5 7
Sample Output
1
Explanation
You gain unit of happiness for elements and in set . You lose unit for in set . The element in set does not exist in the array so it is not included in the calculation.
Hence, the total happiness is .
"""
def get_points(array, like_list, dislike_list):
points = 0
for number in array:
if number in like_list:
points += 1
if number in dislike_list:
points -= 1
return points
if __name__ == '__main__':
(n, m) = tuple(map(int, input().split()))
array = tuple(map(int, input().split()))
like_list = set(map(int, input().split()))
dislike_list = set(map(int, input().split()))
print(get_points(array, like_list, dislike_list)) |
#!/usr/bin/env python
# -*- coding: utf-8 -*-
def get_input(path):
with open(path) as infile:
return [line.rstrip('\n') for line in infile]
| def get_input(path):
with open(path) as infile:
return [line.rstrip('\n') for line in infile] |
#
# PySNMP MIB module JUNIPER-SMI (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/JUNIPER-SMI
# Produced by pysmi-0.3.4 at Wed May 1 11:37:53 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
OctetString, Integer, ObjectIdentifier = mibBuilder.importSymbols("ASN1", "OctetString", "Integer", "ObjectIdentifier")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ValueRangeConstraint, ValueSizeConstraint, ConstraintsUnion, ConstraintsIntersection, SingleValueConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ValueRangeConstraint", "ValueSizeConstraint", "ConstraintsUnion", "ConstraintsIntersection", "SingleValueConstraint")
ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup")
enterprises, Counter64, IpAddress, Counter32, Integer32, iso, TimeTicks, NotificationType, MibScalar, MibTable, MibTableRow, MibTableColumn, Unsigned32, MibIdentifier, Gauge32, Bits, ObjectIdentity, ModuleIdentity = mibBuilder.importSymbols("SNMPv2-SMI", "enterprises", "Counter64", "IpAddress", "Counter32", "Integer32", "iso", "TimeTicks", "NotificationType", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Unsigned32", "MibIdentifier", "Gauge32", "Bits", "ObjectIdentity", "ModuleIdentity")
DisplayString, TextualConvention = mibBuilder.importSymbols("SNMPv2-TC", "DisplayString", "TextualConvention")
juniperMIB = ModuleIdentity((1, 3, 6, 1, 4, 1, 2636))
juniperMIB.setRevisions(('2010-07-09 00:00', '2009-10-29 00:00', '2010-06-18 00:00', '2003-04-17 01:00', '2005-08-17 01:00', '2006-12-14 01:00', '2007-01-01 00:00', '2007-10-09 00:00', '2009-12-31 00:00', '2010-07-14 00:00', '2011-01-26 00:00', '2012-02-10 00:00', '2012-08-01 00:00', '2012-11-01 00:00', '2012-12-07 00:00', '2013-01-25 00:00', '2013-11-26 00:00',))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
if mibBuilder.loadTexts: juniperMIB.setRevisionsDescriptions(('Added jnxLicenseMibRoot branch.', 'Added jnxCosNotifications branch.', 'Added jnxLicenseMibRoot branch.', 'Added jnxExperiment branch.', 'Added jnxNsm branch.', 'Added jnxCA branch.', 'Added jnxUtilMibRoot branch.', 'Added jnxAdvancedInsightMgr branch.', 'Added jnxBxMibRoot branch.', 'Added jnxSubscriberMibRoot branch.', 'Added jnxDcfMibRoot branch.', 'Added jnxMediaFlow branch.', 'Added jnxSDKApplicationsRoot branch.', 'Added jnxJVAEMibRoot branch.', 'Added jnxStrm branch.', 'Added jnxIfOtnMibRoot branch. Added jnxOpticsMibRoot branch. Added jnxAlarmExtMibRoot branch. Added jnxoptIfMibRoot branch. Added jnxIfOtnNotifications branch. Added jnxOpticsNotifications branch.', ' Added jnxSnmpSetMibRoot branch',))
if mibBuilder.loadTexts: juniperMIB.setLastUpdated('201007090000Z')
if mibBuilder.loadTexts: juniperMIB.setOrganization('Juniper Networks, Inc.')
if mibBuilder.loadTexts: juniperMIB.setContactInfo(' Juniper Technical Assistance Center Juniper Networks, Inc. 1194 N. Mathilda Avenue Sunnyvale, CA 94089 E-mail: support@juniper.net')
if mibBuilder.loadTexts: juniperMIB.setDescription('The Structure of Management Information for Juniper Networks.')
jnxProducts = ObjectIdentity((1, 3, 6, 1, 4, 1, 2636, 1))
if mibBuilder.loadTexts: jnxProducts.setStatus('current')
if mibBuilder.loadTexts: jnxProducts.setDescription("The root of Juniper's Product OIDs.")
jnxMediaFlow = MibIdentifier((1, 3, 6, 1, 4, 1, 2636, 1, 2))
jnxJunosSpace = MibIdentifier((1, 3, 6, 1, 4, 1, 2636, 1, 3))
jnxReservedProducts3 = MibIdentifier((1, 3, 6, 1, 4, 1, 2636, 1, 4))
jnxReservedProducts4 = MibIdentifier((1, 3, 6, 1, 4, 1, 2636, 1, 5))
jnxReservedProducts5 = MibIdentifier((1, 3, 6, 1, 4, 1, 2636, 1, 6))
jnxSDKApplicationsRoot = MibIdentifier((1, 3, 6, 1, 4, 1, 2636, 1, 7))
jnxJAB = MibIdentifier((1, 3, 6, 1, 4, 1, 2636, 1, 8))
jnxStrm = MibIdentifier((1, 3, 6, 1, 4, 1, 2636, 1, 9))
jnxServices = ObjectIdentity((1, 3, 6, 1, 4, 1, 2636, 2))
if mibBuilder.loadTexts: jnxServices.setStatus('current')
if mibBuilder.loadTexts: jnxServices.setDescription("The root of Juniper's Services OIDs.")
jnxMibs = ObjectIdentity((1, 3, 6, 1, 4, 1, 2636, 3))
if mibBuilder.loadTexts: jnxMibs.setStatus('current')
if mibBuilder.loadTexts: jnxMibs.setDescription("The root of Juniper's MIB objects.")
jnxJsMibRoot = MibIdentifier((1, 3, 6, 1, 4, 1, 2636, 3, 39))
jnxExMibRoot = MibIdentifier((1, 3, 6, 1, 4, 1, 2636, 3, 40))
jnxWxMibRoot = MibIdentifier((1, 3, 6, 1, 4, 1, 2636, 3, 41))
jnxDcfMibRoot = MibIdentifier((1, 3, 6, 1, 4, 1, 2636, 3, 42))
jnxReservedMibs5 = MibIdentifier((1, 3, 6, 1, 4, 1, 2636, 3, 43))
jnxPfeMibRoot = MibIdentifier((1, 3, 6, 1, 4, 1, 2636, 3, 44))
jnxBfdMibRoot = MibIdentifier((1, 3, 6, 1, 4, 1, 2636, 3, 45))
jnxXstpMibs = MibIdentifier((1, 3, 6, 1, 4, 1, 2636, 3, 46))
jnxUtilMibRoot = MibIdentifier((1, 3, 6, 1, 4, 1, 2636, 3, 47))
jnxl2aldMibRoot = MibIdentifier((1, 3, 6, 1, 4, 1, 2636, 3, 48))
jnxL2tpMibRoot = MibIdentifier((1, 3, 6, 1, 4, 1, 2636, 3, 49))
jnxRpmMibRoot = MibIdentifier((1, 3, 6, 1, 4, 1, 2636, 3, 50))
jnxUserAAAMibRoot = MibIdentifier((1, 3, 6, 1, 4, 1, 2636, 3, 51))
jnxIpSecMibRoot = MibIdentifier((1, 3, 6, 1, 4, 1, 2636, 3, 52))
jnxL2cpMibRoot = MibIdentifier((1, 3, 6, 1, 4, 1, 2636, 3, 53))
jnxPwTdmMibRoot = MibIdentifier((1, 3, 6, 1, 4, 1, 2636, 3, 54))
jnxPwTCMibRoot = MibIdentifier((1, 3, 6, 1, 4, 1, 2636, 3, 55))
jnxOtnMibRoot = MibIdentifier((1, 3, 6, 1, 4, 1, 2636, 3, 56))
jnxPsuMIBRoot = MibIdentifier((1, 3, 6, 1, 4, 1, 2636, 3, 58))
jnxSvcsMibRoot = MibIdentifier((1, 3, 6, 1, 4, 1, 2636, 3, 59))
jnxDomMibRoot = MibIdentifier((1, 3, 6, 1, 4, 1, 2636, 3, 60))
jnxJdhcpMibRoot = MibIdentifier((1, 3, 6, 1, 4, 1, 2636, 3, 61))
jnxJdhcpv6MibRoot = MibIdentifier((1, 3, 6, 1, 4, 1, 2636, 3, 62))
jnxLicenseMibRoot = MibIdentifier((1, 3, 6, 1, 4, 1, 2636, 3, 63))
jnxSubscriberMibRoot = MibIdentifier((1, 3, 6, 1, 4, 1, 2636, 3, 64))
jnxMagMibRoot = MibIdentifier((1, 3, 6, 1, 4, 1, 2636, 3, 65))
jnxMobileGatewayMibRoot = MibIdentifier((1, 3, 6, 1, 4, 1, 2636, 3, 66))
jnxPppoeMibRoot = MibIdentifier((1, 3, 6, 1, 4, 1, 2636, 3, 67))
jnxPppMibRoot = MibIdentifier((1, 3, 6, 1, 4, 1, 2636, 3, 68))
jnxJVAEMibRoot = MibIdentifier((1, 3, 6, 1, 4, 1, 2636, 3, 69))
jnxIfOtnMibRoot = MibIdentifier((1, 3, 6, 1, 4, 1, 2636, 3, 70))
jnxOpticsMibRoot = MibIdentifier((1, 3, 6, 1, 4, 1, 2636, 3, 71))
jnxAlarmExtMibRoot = MibIdentifier((1, 3, 6, 1, 4, 1, 2636, 3, 72))
jnxoptIfMibRoot = MibIdentifier((1, 3, 6, 1, 4, 1, 2636, 3, 73))
jnxFruMibRoot = MibIdentifier((1, 3, 6, 1, 4, 1, 2636, 3, 74))
jnxTimingNotfnsMIBRoot = MibIdentifier((1, 3, 6, 1, 4, 1, 2636, 3, 75))
jnxSnmpSetMibRoot = MibIdentifier((1, 3, 6, 1, 4, 1, 2636, 3, 76))
jnxTraps = ObjectIdentity((1, 3, 6, 1, 4, 1, 2636, 4))
if mibBuilder.loadTexts: jnxTraps.setStatus('current')
if mibBuilder.loadTexts: jnxTraps.setDescription("The root of Juniper's Trap OIDs.")
jnxChassisTraps = MibIdentifier((1, 3, 6, 1, 4, 1, 2636, 4, 1))
jnxChassisOKTraps = MibIdentifier((1, 3, 6, 1, 4, 1, 2636, 4, 2))
jnxRmonTraps = MibIdentifier((1, 3, 6, 1, 4, 1, 2636, 4, 3))
jnxLdpTraps = MibIdentifier((1, 3, 6, 1, 4, 1, 2636, 4, 4))
jnxCmNotifications = MibIdentifier((1, 3, 6, 1, 4, 1, 2636, 4, 5))
jnxSonetNotifications = MibIdentifier((1, 3, 6, 1, 4, 1, 2636, 4, 6))
jnxPMonNotifications = MibIdentifier((1, 3, 6, 1, 4, 1, 2636, 4, 7))
jnxCollectorNotifications = MibIdentifier((1, 3, 6, 1, 4, 1, 2636, 4, 8))
jnxPingNotifications = MibIdentifier((1, 3, 6, 1, 4, 1, 2636, 4, 9))
jnxSpNotifications = MibIdentifier((1, 3, 6, 1, 4, 1, 2636, 4, 10))
jnxDfcNotifications = MibIdentifier((1, 3, 6, 1, 4, 1, 2636, 4, 11))
jnxSyslogNotifications = MibIdentifier((1, 3, 6, 1, 4, 1, 2636, 4, 12))
jnxEventNotifications = MibIdentifier((1, 3, 6, 1, 4, 1, 2636, 4, 13))
jnxVccpNotifications = MibIdentifier((1, 3, 6, 1, 4, 1, 2636, 4, 14))
jnxOtnNotifications = MibIdentifier((1, 3, 6, 1, 4, 1, 2636, 4, 15))
jnxSAIDPNotifications = MibIdentifier((1, 3, 6, 1, 4, 1, 2636, 4, 16))
jnxCosNotifications = MibIdentifier((1, 3, 6, 1, 4, 1, 2636, 4, 17))
jnxDomNotifications = MibIdentifier((1, 3, 6, 1, 4, 1, 2636, 4, 18))
jnxFabricChassisTraps = MibIdentifier((1, 3, 6, 1, 4, 1, 2636, 4, 19))
jnxFabricChassisOKTraps = MibIdentifier((1, 3, 6, 1, 4, 1, 2636, 4, 20))
jnxIfOtnNotifications = MibIdentifier((1, 3, 6, 1, 4, 1, 2636, 4, 21))
jnxOpticsNotifications = MibIdentifier((1, 3, 6, 1, 4, 1, 2636, 4, 22))
jnxFruTraps = MibIdentifier((1, 3, 6, 1, 4, 1, 2636, 4, 23))
jnxSnmpSetTraps = MibIdentifier((1, 3, 6, 1, 4, 1, 2636, 4, 24))
jnxExperiment = MibIdentifier((1, 3, 6, 1, 4, 1, 2636, 5))
jnxNsm = MibIdentifier((1, 3, 6, 1, 4, 1, 2636, 6))
jnxCA = MibIdentifier((1, 3, 6, 1, 4, 1, 2636, 7))
jnxAAA = MibIdentifier((1, 3, 6, 1, 4, 1, 2636, 8))
jnxAdvancedInsightMgr = MibIdentifier((1, 3, 6, 1, 4, 1, 2636, 9))
jnxBxMibRoot = MibIdentifier((1, 3, 6, 1, 4, 1, 2636, 10))
mibBuilder.exportSymbols("JUNIPER-SMI", jnxFabricChassisOKTraps=jnxFabricChassisOKTraps, jnxReservedProducts4=jnxReservedProducts4, jnxJsMibRoot=jnxJsMibRoot, jnxEventNotifications=jnxEventNotifications, jnxPingNotifications=jnxPingNotifications, jnxPppMibRoot=jnxPppMibRoot, jnxL2cpMibRoot=jnxL2cpMibRoot, jnxServices=jnxServices, jnxJVAEMibRoot=jnxJVAEMibRoot, jnxAAA=jnxAAA, jnxXstpMibs=jnxXstpMibs, jnxReservedMibs5=jnxReservedMibs5, jnxIfOtnNotifications=jnxIfOtnNotifications, jnxRmonTraps=jnxRmonTraps, jnxLdpTraps=jnxLdpTraps, jnxFruTraps=jnxFruTraps, jnxDomMibRoot=jnxDomMibRoot, jnxSonetNotifications=jnxSonetNotifications, jnxoptIfMibRoot=jnxoptIfMibRoot, jnxChassisTraps=jnxChassisTraps, jnxBfdMibRoot=jnxBfdMibRoot, jnxPwTdmMibRoot=jnxPwTdmMibRoot, jnxOpticsNotifications=jnxOpticsNotifications, jnxAdvancedInsightMgr=jnxAdvancedInsightMgr, jnxMediaFlow=jnxMediaFlow, jnxLicenseMibRoot=jnxLicenseMibRoot, jnxBxMibRoot=jnxBxMibRoot, jnxCA=jnxCA, jnxAlarmExtMibRoot=jnxAlarmExtMibRoot, jnxOtnMibRoot=jnxOtnMibRoot, jnxPsuMIBRoot=jnxPsuMIBRoot, jnxPMonNotifications=jnxPMonNotifications, jnxL2tpMibRoot=jnxL2tpMibRoot, jnxCmNotifications=jnxCmNotifications, jnxFabricChassisTraps=jnxFabricChassisTraps, jnxRpmMibRoot=jnxRpmMibRoot, jnxOpticsMibRoot=jnxOpticsMibRoot, jnxChassisOKTraps=jnxChassisOKTraps, jnxWxMibRoot=jnxWxMibRoot, jnxPwTCMibRoot=jnxPwTCMibRoot, jnxJdhcpMibRoot=jnxJdhcpMibRoot, jnxSnmpSetMibRoot=jnxSnmpSetMibRoot, jnxl2aldMibRoot=jnxl2aldMibRoot, jnxExperiment=jnxExperiment, jnxReservedProducts3=jnxReservedProducts3, jnxExMibRoot=jnxExMibRoot, jnxIfOtnMibRoot=jnxIfOtnMibRoot, jnxDomNotifications=jnxDomNotifications, jnxSDKApplicationsRoot=jnxSDKApplicationsRoot, jnxJdhcpv6MibRoot=jnxJdhcpv6MibRoot, jnxDfcNotifications=jnxDfcNotifications, jnxDcfMibRoot=jnxDcfMibRoot, jnxOtnNotifications=jnxOtnNotifications, PYSNMP_MODULE_ID=juniperMIB, jnxMagMibRoot=jnxMagMibRoot, jnxCosNotifications=jnxCosNotifications, jnxUserAAAMibRoot=jnxUserAAAMibRoot, jnxCollectorNotifications=jnxCollectorNotifications, juniperMIB=juniperMIB, jnxFruMibRoot=jnxFruMibRoot, jnxSvcsMibRoot=jnxSvcsMibRoot, jnxTimingNotfnsMIBRoot=jnxTimingNotfnsMIBRoot, jnxSpNotifications=jnxSpNotifications, jnxStrm=jnxStrm, jnxUtilMibRoot=jnxUtilMibRoot, jnxProducts=jnxProducts, jnxSubscriberMibRoot=jnxSubscriberMibRoot, jnxPfeMibRoot=jnxPfeMibRoot, jnxSAIDPNotifications=jnxSAIDPNotifications, jnxTraps=jnxTraps, jnxJunosSpace=jnxJunosSpace, jnxNsm=jnxNsm, jnxMibs=jnxMibs, jnxJAB=jnxJAB, jnxMobileGatewayMibRoot=jnxMobileGatewayMibRoot, jnxSyslogNotifications=jnxSyslogNotifications, jnxSnmpSetTraps=jnxSnmpSetTraps, jnxVccpNotifications=jnxVccpNotifications, jnxReservedProducts5=jnxReservedProducts5, jnxPppoeMibRoot=jnxPppoeMibRoot, jnxIpSecMibRoot=jnxIpSecMibRoot)
| (octet_string, integer, object_identifier) = mibBuilder.importSymbols('ASN1', 'OctetString', 'Integer', 'ObjectIdentifier')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(value_range_constraint, value_size_constraint, constraints_union, constraints_intersection, single_value_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ValueRangeConstraint', 'ValueSizeConstraint', 'ConstraintsUnion', 'ConstraintsIntersection', 'SingleValueConstraint')
(module_compliance, notification_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'NotificationGroup')
(enterprises, counter64, ip_address, counter32, integer32, iso, time_ticks, notification_type, mib_scalar, mib_table, mib_table_row, mib_table_column, unsigned32, mib_identifier, gauge32, bits, object_identity, module_identity) = mibBuilder.importSymbols('SNMPv2-SMI', 'enterprises', 'Counter64', 'IpAddress', 'Counter32', 'Integer32', 'iso', 'TimeTicks', 'NotificationType', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'Unsigned32', 'MibIdentifier', 'Gauge32', 'Bits', 'ObjectIdentity', 'ModuleIdentity')
(display_string, textual_convention) = mibBuilder.importSymbols('SNMPv2-TC', 'DisplayString', 'TextualConvention')
juniper_mib = module_identity((1, 3, 6, 1, 4, 1, 2636))
juniperMIB.setRevisions(('2010-07-09 00:00', '2009-10-29 00:00', '2010-06-18 00:00', '2003-04-17 01:00', '2005-08-17 01:00', '2006-12-14 01:00', '2007-01-01 00:00', '2007-10-09 00:00', '2009-12-31 00:00', '2010-07-14 00:00', '2011-01-26 00:00', '2012-02-10 00:00', '2012-08-01 00:00', '2012-11-01 00:00', '2012-12-07 00:00', '2013-01-25 00:00', '2013-11-26 00:00'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
if mibBuilder.loadTexts:
juniperMIB.setRevisionsDescriptions(('Added jnxLicenseMibRoot branch.', 'Added jnxCosNotifications branch.', 'Added jnxLicenseMibRoot branch.', 'Added jnxExperiment branch.', 'Added jnxNsm branch.', 'Added jnxCA branch.', 'Added jnxUtilMibRoot branch.', 'Added jnxAdvancedInsightMgr branch.', 'Added jnxBxMibRoot branch.', 'Added jnxSubscriberMibRoot branch.', 'Added jnxDcfMibRoot branch.', 'Added jnxMediaFlow branch.', 'Added jnxSDKApplicationsRoot branch.', 'Added jnxJVAEMibRoot branch.', 'Added jnxStrm branch.', 'Added jnxIfOtnMibRoot branch. Added jnxOpticsMibRoot branch. Added jnxAlarmExtMibRoot branch. Added jnxoptIfMibRoot branch. Added jnxIfOtnNotifications branch. Added jnxOpticsNotifications branch.', ' Added jnxSnmpSetMibRoot branch'))
if mibBuilder.loadTexts:
juniperMIB.setLastUpdated('201007090000Z')
if mibBuilder.loadTexts:
juniperMIB.setOrganization('Juniper Networks, Inc.')
if mibBuilder.loadTexts:
juniperMIB.setContactInfo(' Juniper Technical Assistance Center Juniper Networks, Inc. 1194 N. Mathilda Avenue Sunnyvale, CA 94089 E-mail: support@juniper.net')
if mibBuilder.loadTexts:
juniperMIB.setDescription('The Structure of Management Information for Juniper Networks.')
jnx_products = object_identity((1, 3, 6, 1, 4, 1, 2636, 1))
if mibBuilder.loadTexts:
jnxProducts.setStatus('current')
if mibBuilder.loadTexts:
jnxProducts.setDescription("The root of Juniper's Product OIDs.")
jnx_media_flow = mib_identifier((1, 3, 6, 1, 4, 1, 2636, 1, 2))
jnx_junos_space = mib_identifier((1, 3, 6, 1, 4, 1, 2636, 1, 3))
jnx_reserved_products3 = mib_identifier((1, 3, 6, 1, 4, 1, 2636, 1, 4))
jnx_reserved_products4 = mib_identifier((1, 3, 6, 1, 4, 1, 2636, 1, 5))
jnx_reserved_products5 = mib_identifier((1, 3, 6, 1, 4, 1, 2636, 1, 6))
jnx_sdk_applications_root = mib_identifier((1, 3, 6, 1, 4, 1, 2636, 1, 7))
jnx_jab = mib_identifier((1, 3, 6, 1, 4, 1, 2636, 1, 8))
jnx_strm = mib_identifier((1, 3, 6, 1, 4, 1, 2636, 1, 9))
jnx_services = object_identity((1, 3, 6, 1, 4, 1, 2636, 2))
if mibBuilder.loadTexts:
jnxServices.setStatus('current')
if mibBuilder.loadTexts:
jnxServices.setDescription("The root of Juniper's Services OIDs.")
jnx_mibs = object_identity((1, 3, 6, 1, 4, 1, 2636, 3))
if mibBuilder.loadTexts:
jnxMibs.setStatus('current')
if mibBuilder.loadTexts:
jnxMibs.setDescription("The root of Juniper's MIB objects.")
jnx_js_mib_root = mib_identifier((1, 3, 6, 1, 4, 1, 2636, 3, 39))
jnx_ex_mib_root = mib_identifier((1, 3, 6, 1, 4, 1, 2636, 3, 40))
jnx_wx_mib_root = mib_identifier((1, 3, 6, 1, 4, 1, 2636, 3, 41))
jnx_dcf_mib_root = mib_identifier((1, 3, 6, 1, 4, 1, 2636, 3, 42))
jnx_reserved_mibs5 = mib_identifier((1, 3, 6, 1, 4, 1, 2636, 3, 43))
jnx_pfe_mib_root = mib_identifier((1, 3, 6, 1, 4, 1, 2636, 3, 44))
jnx_bfd_mib_root = mib_identifier((1, 3, 6, 1, 4, 1, 2636, 3, 45))
jnx_xstp_mibs = mib_identifier((1, 3, 6, 1, 4, 1, 2636, 3, 46))
jnx_util_mib_root = mib_identifier((1, 3, 6, 1, 4, 1, 2636, 3, 47))
jnxl2ald_mib_root = mib_identifier((1, 3, 6, 1, 4, 1, 2636, 3, 48))
jnx_l2tp_mib_root = mib_identifier((1, 3, 6, 1, 4, 1, 2636, 3, 49))
jnx_rpm_mib_root = mib_identifier((1, 3, 6, 1, 4, 1, 2636, 3, 50))
jnx_user_aaa_mib_root = mib_identifier((1, 3, 6, 1, 4, 1, 2636, 3, 51))
jnx_ip_sec_mib_root = mib_identifier((1, 3, 6, 1, 4, 1, 2636, 3, 52))
jnx_l2cp_mib_root = mib_identifier((1, 3, 6, 1, 4, 1, 2636, 3, 53))
jnx_pw_tdm_mib_root = mib_identifier((1, 3, 6, 1, 4, 1, 2636, 3, 54))
jnx_pw_tc_mib_root = mib_identifier((1, 3, 6, 1, 4, 1, 2636, 3, 55))
jnx_otn_mib_root = mib_identifier((1, 3, 6, 1, 4, 1, 2636, 3, 56))
jnx_psu_mib_root = mib_identifier((1, 3, 6, 1, 4, 1, 2636, 3, 58))
jnx_svcs_mib_root = mib_identifier((1, 3, 6, 1, 4, 1, 2636, 3, 59))
jnx_dom_mib_root = mib_identifier((1, 3, 6, 1, 4, 1, 2636, 3, 60))
jnx_jdhcp_mib_root = mib_identifier((1, 3, 6, 1, 4, 1, 2636, 3, 61))
jnx_jdhcpv6_mib_root = mib_identifier((1, 3, 6, 1, 4, 1, 2636, 3, 62))
jnx_license_mib_root = mib_identifier((1, 3, 6, 1, 4, 1, 2636, 3, 63))
jnx_subscriber_mib_root = mib_identifier((1, 3, 6, 1, 4, 1, 2636, 3, 64))
jnx_mag_mib_root = mib_identifier((1, 3, 6, 1, 4, 1, 2636, 3, 65))
jnx_mobile_gateway_mib_root = mib_identifier((1, 3, 6, 1, 4, 1, 2636, 3, 66))
jnx_pppoe_mib_root = mib_identifier((1, 3, 6, 1, 4, 1, 2636, 3, 67))
jnx_ppp_mib_root = mib_identifier((1, 3, 6, 1, 4, 1, 2636, 3, 68))
jnx_jvae_mib_root = mib_identifier((1, 3, 6, 1, 4, 1, 2636, 3, 69))
jnx_if_otn_mib_root = mib_identifier((1, 3, 6, 1, 4, 1, 2636, 3, 70))
jnx_optics_mib_root = mib_identifier((1, 3, 6, 1, 4, 1, 2636, 3, 71))
jnx_alarm_ext_mib_root = mib_identifier((1, 3, 6, 1, 4, 1, 2636, 3, 72))
jnxopt_if_mib_root = mib_identifier((1, 3, 6, 1, 4, 1, 2636, 3, 73))
jnx_fru_mib_root = mib_identifier((1, 3, 6, 1, 4, 1, 2636, 3, 74))
jnx_timing_notfns_mib_root = mib_identifier((1, 3, 6, 1, 4, 1, 2636, 3, 75))
jnx_snmp_set_mib_root = mib_identifier((1, 3, 6, 1, 4, 1, 2636, 3, 76))
jnx_traps = object_identity((1, 3, 6, 1, 4, 1, 2636, 4))
if mibBuilder.loadTexts:
jnxTraps.setStatus('current')
if mibBuilder.loadTexts:
jnxTraps.setDescription("The root of Juniper's Trap OIDs.")
jnx_chassis_traps = mib_identifier((1, 3, 6, 1, 4, 1, 2636, 4, 1))
jnx_chassis_ok_traps = mib_identifier((1, 3, 6, 1, 4, 1, 2636, 4, 2))
jnx_rmon_traps = mib_identifier((1, 3, 6, 1, 4, 1, 2636, 4, 3))
jnx_ldp_traps = mib_identifier((1, 3, 6, 1, 4, 1, 2636, 4, 4))
jnx_cm_notifications = mib_identifier((1, 3, 6, 1, 4, 1, 2636, 4, 5))
jnx_sonet_notifications = mib_identifier((1, 3, 6, 1, 4, 1, 2636, 4, 6))
jnx_p_mon_notifications = mib_identifier((1, 3, 6, 1, 4, 1, 2636, 4, 7))
jnx_collector_notifications = mib_identifier((1, 3, 6, 1, 4, 1, 2636, 4, 8))
jnx_ping_notifications = mib_identifier((1, 3, 6, 1, 4, 1, 2636, 4, 9))
jnx_sp_notifications = mib_identifier((1, 3, 6, 1, 4, 1, 2636, 4, 10))
jnx_dfc_notifications = mib_identifier((1, 3, 6, 1, 4, 1, 2636, 4, 11))
jnx_syslog_notifications = mib_identifier((1, 3, 6, 1, 4, 1, 2636, 4, 12))
jnx_event_notifications = mib_identifier((1, 3, 6, 1, 4, 1, 2636, 4, 13))
jnx_vccp_notifications = mib_identifier((1, 3, 6, 1, 4, 1, 2636, 4, 14))
jnx_otn_notifications = mib_identifier((1, 3, 6, 1, 4, 1, 2636, 4, 15))
jnx_saidp_notifications = mib_identifier((1, 3, 6, 1, 4, 1, 2636, 4, 16))
jnx_cos_notifications = mib_identifier((1, 3, 6, 1, 4, 1, 2636, 4, 17))
jnx_dom_notifications = mib_identifier((1, 3, 6, 1, 4, 1, 2636, 4, 18))
jnx_fabric_chassis_traps = mib_identifier((1, 3, 6, 1, 4, 1, 2636, 4, 19))
jnx_fabric_chassis_ok_traps = mib_identifier((1, 3, 6, 1, 4, 1, 2636, 4, 20))
jnx_if_otn_notifications = mib_identifier((1, 3, 6, 1, 4, 1, 2636, 4, 21))
jnx_optics_notifications = mib_identifier((1, 3, 6, 1, 4, 1, 2636, 4, 22))
jnx_fru_traps = mib_identifier((1, 3, 6, 1, 4, 1, 2636, 4, 23))
jnx_snmp_set_traps = mib_identifier((1, 3, 6, 1, 4, 1, 2636, 4, 24))
jnx_experiment = mib_identifier((1, 3, 6, 1, 4, 1, 2636, 5))
jnx_nsm = mib_identifier((1, 3, 6, 1, 4, 1, 2636, 6))
jnx_ca = mib_identifier((1, 3, 6, 1, 4, 1, 2636, 7))
jnx_aaa = mib_identifier((1, 3, 6, 1, 4, 1, 2636, 8))
jnx_advanced_insight_mgr = mib_identifier((1, 3, 6, 1, 4, 1, 2636, 9))
jnx_bx_mib_root = mib_identifier((1, 3, 6, 1, 4, 1, 2636, 10))
mibBuilder.exportSymbols('JUNIPER-SMI', jnxFabricChassisOKTraps=jnxFabricChassisOKTraps, jnxReservedProducts4=jnxReservedProducts4, jnxJsMibRoot=jnxJsMibRoot, jnxEventNotifications=jnxEventNotifications, jnxPingNotifications=jnxPingNotifications, jnxPppMibRoot=jnxPppMibRoot, jnxL2cpMibRoot=jnxL2cpMibRoot, jnxServices=jnxServices, jnxJVAEMibRoot=jnxJVAEMibRoot, jnxAAA=jnxAAA, jnxXstpMibs=jnxXstpMibs, jnxReservedMibs5=jnxReservedMibs5, jnxIfOtnNotifications=jnxIfOtnNotifications, jnxRmonTraps=jnxRmonTraps, jnxLdpTraps=jnxLdpTraps, jnxFruTraps=jnxFruTraps, jnxDomMibRoot=jnxDomMibRoot, jnxSonetNotifications=jnxSonetNotifications, jnxoptIfMibRoot=jnxoptIfMibRoot, jnxChassisTraps=jnxChassisTraps, jnxBfdMibRoot=jnxBfdMibRoot, jnxPwTdmMibRoot=jnxPwTdmMibRoot, jnxOpticsNotifications=jnxOpticsNotifications, jnxAdvancedInsightMgr=jnxAdvancedInsightMgr, jnxMediaFlow=jnxMediaFlow, jnxLicenseMibRoot=jnxLicenseMibRoot, jnxBxMibRoot=jnxBxMibRoot, jnxCA=jnxCA, jnxAlarmExtMibRoot=jnxAlarmExtMibRoot, jnxOtnMibRoot=jnxOtnMibRoot, jnxPsuMIBRoot=jnxPsuMIBRoot, jnxPMonNotifications=jnxPMonNotifications, jnxL2tpMibRoot=jnxL2tpMibRoot, jnxCmNotifications=jnxCmNotifications, jnxFabricChassisTraps=jnxFabricChassisTraps, jnxRpmMibRoot=jnxRpmMibRoot, jnxOpticsMibRoot=jnxOpticsMibRoot, jnxChassisOKTraps=jnxChassisOKTraps, jnxWxMibRoot=jnxWxMibRoot, jnxPwTCMibRoot=jnxPwTCMibRoot, jnxJdhcpMibRoot=jnxJdhcpMibRoot, jnxSnmpSetMibRoot=jnxSnmpSetMibRoot, jnxl2aldMibRoot=jnxl2aldMibRoot, jnxExperiment=jnxExperiment, jnxReservedProducts3=jnxReservedProducts3, jnxExMibRoot=jnxExMibRoot, jnxIfOtnMibRoot=jnxIfOtnMibRoot, jnxDomNotifications=jnxDomNotifications, jnxSDKApplicationsRoot=jnxSDKApplicationsRoot, jnxJdhcpv6MibRoot=jnxJdhcpv6MibRoot, jnxDfcNotifications=jnxDfcNotifications, jnxDcfMibRoot=jnxDcfMibRoot, jnxOtnNotifications=jnxOtnNotifications, PYSNMP_MODULE_ID=juniperMIB, jnxMagMibRoot=jnxMagMibRoot, jnxCosNotifications=jnxCosNotifications, jnxUserAAAMibRoot=jnxUserAAAMibRoot, jnxCollectorNotifications=jnxCollectorNotifications, juniperMIB=juniperMIB, jnxFruMibRoot=jnxFruMibRoot, jnxSvcsMibRoot=jnxSvcsMibRoot, jnxTimingNotfnsMIBRoot=jnxTimingNotfnsMIBRoot, jnxSpNotifications=jnxSpNotifications, jnxStrm=jnxStrm, jnxUtilMibRoot=jnxUtilMibRoot, jnxProducts=jnxProducts, jnxSubscriberMibRoot=jnxSubscriberMibRoot, jnxPfeMibRoot=jnxPfeMibRoot, jnxSAIDPNotifications=jnxSAIDPNotifications, jnxTraps=jnxTraps, jnxJunosSpace=jnxJunosSpace, jnxNsm=jnxNsm, jnxMibs=jnxMibs, jnxJAB=jnxJAB, jnxMobileGatewayMibRoot=jnxMobileGatewayMibRoot, jnxSyslogNotifications=jnxSyslogNotifications, jnxSnmpSetTraps=jnxSnmpSetTraps, jnxVccpNotifications=jnxVccpNotifications, jnxReservedProducts5=jnxReservedProducts5, jnxPppoeMibRoot=jnxPppoeMibRoot, jnxIpSecMibRoot=jnxIpSecMibRoot) |
class TcpUtils:
"""
Stores constants related to TCP protocol and utility methods
"""
TCP_HEADER_LENGTH = 5
TCP_HEADER_LENGTH_BYTES = TCP_HEADER_LENGTH * 4
TCP_OPTIONS_MAX_LENGTH_BYTES = 40
@staticmethod
def validate_options_length(options):
length = len(options)
if length > TcpUtils.TCP_OPTIONS_MAX_LENGTH_BYTES:
raise ValueError(f"Max options length is "
f"{TcpUtils.TCP_OPTIONS_MAX_LENGTH_BYTES} "
f"got {length}")
| class Tcputils:
"""
Stores constants related to TCP protocol and utility methods
"""
tcp_header_length = 5
tcp_header_length_bytes = TCP_HEADER_LENGTH * 4
tcp_options_max_length_bytes = 40
@staticmethod
def validate_options_length(options):
length = len(options)
if length > TcpUtils.TCP_OPTIONS_MAX_LENGTH_BYTES:
raise value_error(f'Max options length is {TcpUtils.TCP_OPTIONS_MAX_LENGTH_BYTES} got {length}') |
# -*- coding: utf-8 -*-
"""
Created on Tue May 19 13:26:07 2020
@author: admin
"""
#Fibonacci last digit
n=int(input())
n1=0
n2=1
for i in range(2,n+1):
nex=n1+n2
n1=n2
n2=nex
print(nex%10) | """
Created on Tue May 19 13:26:07 2020
@author: admin
"""
n = int(input())
n1 = 0
n2 = 1
for i in range(2, n + 1):
nex = n1 + n2
n1 = n2
n2 = nex
print(nex % 10) |
"""
This test makes sure that the implicit rule dependencies are discoverable by
an IDE. We stuff all dependencies into _scala_toolchain so we just need to make
sure the targets we expect are there.
"""
attr_aspects = ["_scala_toolchain", "deps"]
def _aspect_impl(target, ctx):
visited = [str(target.label)]
for attr_name in attr_aspects:
if hasattr(ctx.rule.attr, attr_name):
for dep in getattr(ctx.rule.attr, attr_name):
if hasattr(dep, "visited"):
visited += dep.visited
return struct(visited = visited)
test_aspect = aspect(
attr_aspects = attr_aspects,
implementation = _aspect_impl,
)
def _rule_impl(ctx):
expected_deps = {
"scala_library": [
"//test/aspect:scala_library",
"//scala/private/toolchain_deps:scala_library_classpath",
],
"scala_test": [
"//test/aspect:scala_test",
"//scala/private/toolchain_deps:scala_library_classpath",
"//testing/toolchain:scalatest_classpath",
],
"scala_junit_test": [
"//test/aspect:scala_junit_test",
"//scala/private/toolchain_deps:scala_library_classpath",
"//testing/toolchain:junit_classpath",
],
"scala_specs2_junit_test": [
"//scala/private/toolchain_deps:scala_library_classpath",
"//test/aspect:scala_specs2_junit_test",
"//testing/toolchain:junit_classpath",
# From specs2/specs2.bzl:specs2_dependencies()
"@io_bazel_rules_scala//specs2:specs2",
"@io_bazel_rules_scala_org_specs2_specs2_common//:io_bazel_rules_scala_org_specs2_specs2_common",
"@io_bazel_rules_scala_org_specs2_specs2_core//:io_bazel_rules_scala_org_specs2_specs2_core",
"@io_bazel_rules_scala_org_specs2_specs2_fp//:io_bazel_rules_scala_org_specs2_specs2_fp",
"@io_bazel_rules_scala_org_specs2_specs2_matcher//:io_bazel_rules_scala_org_specs2_specs2_matcher",
"@io_bazel_rules_scala//scala/private/toolchain_deps:scala_xml",
"@io_bazel_rules_scala//scala/private/toolchain_deps:scala_library_classpath",
# From specs2/specs2_junit.bzl:specs2_junit_dependencies()
"@io_bazel_rules_scala_org_specs2_specs2_junit//:io_bazel_rules_scala_org_specs2_specs2_junit",
],
}
content = ""
for target in ctx.attr.targets:
visited = depset(sorted(target.visited)).to_list()
expected = depset(sorted(expected_deps[target.label.name])).to_list()
if visited != expected:
content += """
echo Expected these deps from {name}: 1>&2
echo {expected}, 1>&2
echo but got these instead: 1>&2
echo {visited} 1>&2
false # test returns 1 (and fails) if this is the final line
""".format(
name = target.label.name,
expected = ", ".join(expected),
visited = ", ".join(visited),
)
ctx.actions.write(
output = ctx.outputs.executable,
content = content,
)
return struct()
aspect_test = rule(
implementation = _rule_impl,
attrs = {
# The targets whose dependencies we want to verify.
"targets": attr.label_list(aspects = [test_aspect]),
},
test = True,
)
| """
This test makes sure that the implicit rule dependencies are discoverable by
an IDE. We stuff all dependencies into _scala_toolchain so we just need to make
sure the targets we expect are there.
"""
attr_aspects = ['_scala_toolchain', 'deps']
def _aspect_impl(target, ctx):
visited = [str(target.label)]
for attr_name in attr_aspects:
if hasattr(ctx.rule.attr, attr_name):
for dep in getattr(ctx.rule.attr, attr_name):
if hasattr(dep, 'visited'):
visited += dep.visited
return struct(visited=visited)
test_aspect = aspect(attr_aspects=attr_aspects, implementation=_aspect_impl)
def _rule_impl(ctx):
expected_deps = {'scala_library': ['//test/aspect:scala_library', '//scala/private/toolchain_deps:scala_library_classpath'], 'scala_test': ['//test/aspect:scala_test', '//scala/private/toolchain_deps:scala_library_classpath', '//testing/toolchain:scalatest_classpath'], 'scala_junit_test': ['//test/aspect:scala_junit_test', '//scala/private/toolchain_deps:scala_library_classpath', '//testing/toolchain:junit_classpath'], 'scala_specs2_junit_test': ['//scala/private/toolchain_deps:scala_library_classpath', '//test/aspect:scala_specs2_junit_test', '//testing/toolchain:junit_classpath', '@io_bazel_rules_scala//specs2:specs2', '@io_bazel_rules_scala_org_specs2_specs2_common//:io_bazel_rules_scala_org_specs2_specs2_common', '@io_bazel_rules_scala_org_specs2_specs2_core//:io_bazel_rules_scala_org_specs2_specs2_core', '@io_bazel_rules_scala_org_specs2_specs2_fp//:io_bazel_rules_scala_org_specs2_specs2_fp', '@io_bazel_rules_scala_org_specs2_specs2_matcher//:io_bazel_rules_scala_org_specs2_specs2_matcher', '@io_bazel_rules_scala//scala/private/toolchain_deps:scala_xml', '@io_bazel_rules_scala//scala/private/toolchain_deps:scala_library_classpath', '@io_bazel_rules_scala_org_specs2_specs2_junit//:io_bazel_rules_scala_org_specs2_specs2_junit']}
content = ''
for target in ctx.attr.targets:
visited = depset(sorted(target.visited)).to_list()
expected = depset(sorted(expected_deps[target.label.name])).to_list()
if visited != expected:
content += '\n echo Expected these deps from {name}: 1>&2\n echo {expected}, 1>&2\n echo but got these instead: 1>&2\n echo {visited} 1>&2\n false # test returns 1 (and fails) if this is the final line\n '.format(name=target.label.name, expected=', '.join(expected), visited=', '.join(visited))
ctx.actions.write(output=ctx.outputs.executable, content=content)
return struct()
aspect_test = rule(implementation=_rule_impl, attrs={'targets': attr.label_list(aspects=[test_aspect])}, test=True) |
# Hexadecimal
print(hex(12))
print(hex(512))
# Binary
print(bin(128))
print(bin(512))
# Exponential
print(pow(2, 4))
print(pow(2, 4, 3))
# Absolute value
print(abs(2))
# Round
print(round(3.6)) # Round up
print(round(3.4)) # Round down
print(round(3.4, 2)) # Round down
| print(hex(12))
print(hex(512))
print(bin(128))
print(bin(512))
print(pow(2, 4))
print(pow(2, 4, 3))
print(abs(2))
print(round(3.6))
print(round(3.4))
print(round(3.4, 2)) |
def update_matches(matches, nubank_month_data, mobills_month_data):
"""
Changes done in place. NuBank and Mobills expenses with match will be removed from original object.
"""
# Filter matches to only items that still exist
matches_cleaned = []
for match in matches:
[nubank_ids, mobills_ids] = match['nubank'], match['mobills']
nubank_ids_filtered = []
for nu_id in nubank_ids:
if nu_id in nubank_month_data:
nubank_ids_filtered.append(nu_id)
mobills_ids_filtered = []
for mo_id in mobills_ids:
if mo_id in mobills_month_data:
mobills_ids_filtered.append(mo_id)
if len(nubank_ids_filtered) > 0 and len(mobills_ids_filtered) > 0:
matches_cleaned.append([nubank_ids_filtered, mobills_ids_filtered])
for nu_id in nubank_ids_filtered:
del nubank_month_data[nu_id]
for mo_id in mobills_ids_filtered:
mobills_month_data[mo_id]['count'] -= 1
if mobills_month_data[mo_id]['count'] == 0:
del mobills_month_data[mo_id]
matches = matches_cleaned
| def update_matches(matches, nubank_month_data, mobills_month_data):
"""
Changes done in place. NuBank and Mobills expenses with match will be removed from original object.
"""
matches_cleaned = []
for match in matches:
[nubank_ids, mobills_ids] = (match['nubank'], match['mobills'])
nubank_ids_filtered = []
for nu_id in nubank_ids:
if nu_id in nubank_month_data:
nubank_ids_filtered.append(nu_id)
mobills_ids_filtered = []
for mo_id in mobills_ids:
if mo_id in mobills_month_data:
mobills_ids_filtered.append(mo_id)
if len(nubank_ids_filtered) > 0 and len(mobills_ids_filtered) > 0:
matches_cleaned.append([nubank_ids_filtered, mobills_ids_filtered])
for nu_id in nubank_ids_filtered:
del nubank_month_data[nu_id]
for mo_id in mobills_ids_filtered:
mobills_month_data[mo_id]['count'] -= 1
if mobills_month_data[mo_id]['count'] == 0:
del mobills_month_data[mo_id]
matches = matches_cleaned |
def nonConstructibleChange(coins):
if len(coins) == 0:
return 1
coins.sort()
change = 0
for coin in coins:
if coin > change + 1:
return change + 1
change += coin
return change + 1 | def non_constructible_change(coins):
if len(coins) == 0:
return 1
coins.sort()
change = 0
for coin in coins:
if coin > change + 1:
return change + 1
change += coin
return change + 1 |
# -*- coding: utf-8 -*-
"""The-lost-planet.py: A text-based interactive game."""
__author__ = "Razique Mahroua"
__copyright__ = "Copyright 20459, Planet GC-1450"
class ParseError(Exception):
pass
class Sentence(object):
def __init__(self, subject, verb, object):
self.subject = subject[1]
self.verb = verb[1]
self.object = object[1]
def __eq__(self, other):
return self.__dict__ == other.__dict__
def peek(word_list):
if word_list:
word = word_list[0]
return word[0]
else:
return None
def match(word_list, expecting):
if word_list:
word = word_list.pop(0)
if word[0] == expecting:
return word
else:
return None
else:
return None
def skip(word_list, word_type):
while peek(word_list) == word_type:
match(word_list, word_type)
def parse_verb(word_list):
skip(word_list, 'stop')
if peek(word_list) == 'verb':
return match(word_list, 'verb')
else:
raise ParseError("Expected a verb next.")
def parse_object(word_list):
skip(word_list, 'stop')
next = peek(word_list)
if next == 'noun':
return match(word_list, 'noun')
if next == 'direction':
return match(word_list, 'direction')
else:
raise ParseError("Expected a noun or direction next")
def parse_subject(word_list, subj):
verb = parse_verb(word_list)
obj = parse_object(word_list)
return Sentence(subj, verb, obj)
def parse_sentence(word_list):
skip(word_list, 'stop')
start = peek(word_list)
if start == 'noun':
subj = match(word_list, 'noun')
return parse_subject(word_list, subj)
elif start == 'verb':
return parse_subject(word_list, ('noun', 'player'))
else:
raise ParseError("Must start with subject, object, or verb not %s" % start)
| """The-lost-planet.py: A text-based interactive game."""
__author__ = 'Razique Mahroua'
__copyright__ = 'Copyright 20459, Planet GC-1450'
class Parseerror(Exception):
pass
class Sentence(object):
def __init__(self, subject, verb, object):
self.subject = subject[1]
self.verb = verb[1]
self.object = object[1]
def __eq__(self, other):
return self.__dict__ == other.__dict__
def peek(word_list):
if word_list:
word = word_list[0]
return word[0]
else:
return None
def match(word_list, expecting):
if word_list:
word = word_list.pop(0)
if word[0] == expecting:
return word
else:
return None
else:
return None
def skip(word_list, word_type):
while peek(word_list) == word_type:
match(word_list, word_type)
def parse_verb(word_list):
skip(word_list, 'stop')
if peek(word_list) == 'verb':
return match(word_list, 'verb')
else:
raise parse_error('Expected a verb next.')
def parse_object(word_list):
skip(word_list, 'stop')
next = peek(word_list)
if next == 'noun':
return match(word_list, 'noun')
if next == 'direction':
return match(word_list, 'direction')
else:
raise parse_error('Expected a noun or direction next')
def parse_subject(word_list, subj):
verb = parse_verb(word_list)
obj = parse_object(word_list)
return sentence(subj, verb, obj)
def parse_sentence(word_list):
skip(word_list, 'stop')
start = peek(word_list)
if start == 'noun':
subj = match(word_list, 'noun')
return parse_subject(word_list, subj)
elif start == 'verb':
return parse_subject(word_list, ('noun', 'player'))
else:
raise parse_error('Must start with subject, object, or verb not %s' % start) |
for i in range(int(input())):
n = int(input())
a = []
for j in range(n):
l,r = [int(k) for k in input().split()]
a.append((l,0))
a.append((r,1))
a.sort()
c = 0
f = 0
m = 1e5
for j in a:
if(j[1]):
f=1
c-=1
else:
if(f==1):
m=min(m,c)
c+=1
if(m==int(1e5)):
print(-1)
else:
print(m)
| for i in range(int(input())):
n = int(input())
a = []
for j in range(n):
(l, r) = [int(k) for k in input().split()]
a.append((l, 0))
a.append((r, 1))
a.sort()
c = 0
f = 0
m = 100000.0
for j in a:
if j[1]:
f = 1
c -= 1
else:
if f == 1:
m = min(m, c)
c += 1
if m == int(100000.0):
print(-1)
else:
print(m) |
class MyData:
def __del__(self):
print('test __del__ OK')
data = MyData()
| class Mydata:
def __del__(self):
print('test __del__ OK')
data = my_data() |
def validate_dog_age(letter):
"""this function takes a letter as age
and returns a tuple or range of ages"""
if "b" or "y" or "a" or "s" in letter:
return (1, 97)
elif "b" or "y" in letter:
return (1, 26)
elif "a" or "s" in letter:
return (25, 97)
elif 'b' in letter:
return (1, 13)
elif 'y' in letter:
return (13, 26)
elif 'a' in letter:
return (25, 38)
else:
return (37, 97)
| def validate_dog_age(letter):
"""this function takes a letter as age
and returns a tuple or range of ages"""
if 'b' or 'y' or 'a' or ('s' in letter):
return (1, 97)
elif 'b' or 'y' in letter:
return (1, 26)
elif 'a' or 's' in letter:
return (25, 97)
elif 'b' in letter:
return (1, 13)
elif 'y' in letter:
return (13, 26)
elif 'a' in letter:
return (25, 38)
else:
return (37, 97) |
map_sokoban = {
"x" : 5,
"y" : 5
}
player = {
"x" : 0,
"y" : 4
}
boxes = [
{"x" : 1, "y" : 1},
{"x" : 2, "y" : 2},
{"x" : 3, "y" : 3}
]
destinations = [
{"x" : 2, "y" : 1},
{"x" : 3, "y" : 2},
{"x" : 4, "y" : 3}
]
while True:
for y in range(map_sokoban["y"]):
for x in range(map_sokoban["x"]):
box_is_here = False
des_is_here = False
player_is_here = False
for box in boxes:
if box["x"] == x and box["y"] == y:
box_is_here = True
for des in destinations:
if des["x"] == x and des["y"] == y:
des_is_here = True
if x == player["x"] and y == player["y"]:
player_is_here = True
if box_is_here:
print("B",end=" ")
elif des_is_here:
print("D",end=" ")
elif player_is_here:
print("P",end=" ")
else:
print("-",end=" ")
print()
is_win = True
for box in boxes:
if box not in destinations:
is_win = False
if is_win:
print("WIN")
break
move = input("Your move? ").upper()
dx = 0
dy = 0
if move == "W":
dy = -1
elif move == "S":
dy = 1
elif move == "A":
dx = -1
elif move == "D":
dx = 1
if (player["x"] + dx) in range(0,map_sokoban["x"]) and \
(player["y"] + dy) in range(0,map_sokoban["y"]):
player["x"] += dx
player["y"] += dy
for box in boxes:
if box["x"] == player["x"] and box["y"] == player["y"]:
box["x"] += dx
box["y"] += dy
| map_sokoban = {'x': 5, 'y': 5}
player = {'x': 0, 'y': 4}
boxes = [{'x': 1, 'y': 1}, {'x': 2, 'y': 2}, {'x': 3, 'y': 3}]
destinations = [{'x': 2, 'y': 1}, {'x': 3, 'y': 2}, {'x': 4, 'y': 3}]
while True:
for y in range(map_sokoban['y']):
for x in range(map_sokoban['x']):
box_is_here = False
des_is_here = False
player_is_here = False
for box in boxes:
if box['x'] == x and box['y'] == y:
box_is_here = True
for des in destinations:
if des['x'] == x and des['y'] == y:
des_is_here = True
if x == player['x'] and y == player['y']:
player_is_here = True
if box_is_here:
print('B', end=' ')
elif des_is_here:
print('D', end=' ')
elif player_is_here:
print('P', end=' ')
else:
print('-', end=' ')
print()
is_win = True
for box in boxes:
if box not in destinations:
is_win = False
if is_win:
print('WIN')
break
move = input('Your move? ').upper()
dx = 0
dy = 0
if move == 'W':
dy = -1
elif move == 'S':
dy = 1
elif move == 'A':
dx = -1
elif move == 'D':
dx = 1
if player['x'] + dx in range(0, map_sokoban['x']) and player['y'] + dy in range(0, map_sokoban['y']):
player['x'] += dx
player['y'] += dy
for box in boxes:
if box['x'] == player['x'] and box['y'] == player['y']:
box['x'] += dx
box['y'] += dy |
input = """
edge(a,b,1).
edge(a,c,3).
edge(c,b,2).
edge(b,d,3).
edge(b,c,1).
edge(c,d,3).
town(T) :- edge(T,_,_).
town(T) :- edge(_,T,_).
"""
output = """
edge(a,b,1).
edge(a,c,3).
edge(c,b,2).
edge(b,d,3).
edge(b,c,1).
edge(c,d,3).
town(T) :- edge(T,_,_).
town(T) :- edge(_,T,_).
"""
| input = '\nedge(a,b,1).\nedge(a,c,3).\nedge(c,b,2).\nedge(b,d,3).\nedge(b,c,1).\nedge(c,d,3).\n\ntown(T) :- edge(T,_,_).\ntown(T) :- edge(_,T,_).\n'
output = '\nedge(a,b,1).\nedge(a,c,3).\nedge(c,b,2).\nedge(b,d,3).\nedge(b,c,1).\nedge(c,d,3).\n\ntown(T) :- edge(T,_,_).\ntown(T) :- edge(_,T,_).\n' |
class Queue:
def __init__(self):
self.queue = []
def enqueue(self, item):
self.queue.insert(0, item)
def dequeue(self):
return self.queue.pop()
def size(self):
return len(self.queue)
def is_empty(self):
return self.queue == [] | class Queue:
def __init__(self):
self.queue = []
def enqueue(self, item):
self.queue.insert(0, item)
def dequeue(self):
return self.queue.pop()
def size(self):
return len(self.queue)
def is_empty(self):
return self.queue == [] |
class Solution:
def addToArrayForm(self, A, K):
for i in range(len(A))[::-1]:
A[i], K = (A[i] + K) % 10, (A[i] + K) // 10
return [int(i) for i in str(K)] + A if K else A | class Solution:
def add_to_array_form(self, A, K):
for i in range(len(A))[::-1]:
(A[i], k) = ((A[i] + K) % 10, (A[i] + K) // 10)
return [int(i) for i in str(K)] + A if K else A |
# use a func to create the matrix
def create_matrix(rows):
result = []
for _ in range(rows):
result.append(list(int(el) for el in input().split()))
return result
#read input
rows, columns = [int(el) for el in input().split()]
matrix = create_matrix(rows)
max_sum_square = -9999999999999
#create for loop to check sums of 3x3 squares
for r in range(rows - 2):
for c in range(columns - 2):
sum_square = sum(matrix[r][c:c + 3]) + sum(matrix[r+1][c:c + 3]) + sum(matrix[r+2][c:c + 3])
if sum_square > max_sum_square:
max_sum_square = sum_square
max_square = [matrix[r][c:c + 3], matrix[r+1][c:c + 3], matrix[r+2][c:c + 3]]
print(f"Sum = {max_sum_square}")
for el in max_square:
print(*el, sep=" ") | def create_matrix(rows):
result = []
for _ in range(rows):
result.append(list((int(el) for el in input().split())))
return result
(rows, columns) = [int(el) for el in input().split()]
matrix = create_matrix(rows)
max_sum_square = -9999999999999
for r in range(rows - 2):
for c in range(columns - 2):
sum_square = sum(matrix[r][c:c + 3]) + sum(matrix[r + 1][c:c + 3]) + sum(matrix[r + 2][c:c + 3])
if sum_square > max_sum_square:
max_sum_square = sum_square
max_square = [matrix[r][c:c + 3], matrix[r + 1][c:c + 3], matrix[r + 2][c:c + 3]]
print(f'Sum = {max_sum_square}')
for el in max_square:
print(*el, sep=' ') |
def gnome_sort(a):
i, j, size = 1, 2, len(a)
while i < size:
if a[i-1] <= a[i]:
i, j = j, j+1
else:
a[i-1], a[i] = a[i], a[i-1]
i -= 1
if i == 0:
i, j = j, j+1
return a
| def gnome_sort(a):
(i, j, size) = (1, 2, len(a))
while i < size:
if a[i - 1] <= a[i]:
(i, j) = (j, j + 1)
else:
(a[i - 1], a[i]) = (a[i], a[i - 1])
i -= 1
if i == 0:
(i, j) = (j, j + 1)
return a |
# iteracyjne obliczanie silni
def silnia(n):
s = 1
for i in range(2,n+1):
s = s*i
return s
silnia(20)
| def silnia(n):
s = 1
for i in range(2, n + 1):
s = s * i
return s
silnia(20) |
class Solution(object):
def isPalindrome(self, x):
"""
:type x: int
:rtype: bool
"""
if x == 0:
return True
if x < 0 or x % 10 == 0:
return False
l = len(str(x))
i = 1
x1 = x2 = x
while i <= l / 2:
left = x1 / (10 ** (l - i))
x1 = x1 % (10 ** (l - i))
right = x2 % 10
x2 = x2 / 10
if left != right:
return False
i += 1
return True
| class Solution(object):
def is_palindrome(self, x):
"""
:type x: int
:rtype: bool
"""
if x == 0:
return True
if x < 0 or x % 10 == 0:
return False
l = len(str(x))
i = 1
x1 = x2 = x
while i <= l / 2:
left = x1 / 10 ** (l - i)
x1 = x1 % 10 ** (l - i)
right = x2 % 10
x2 = x2 / 10
if left != right:
return False
i += 1
return True |
def is_primel_4(n):
if n == 2:
return True # 2 is prime
if n % 2 == 0:
print(n, "is divisible by 2")
return False # all even numbers except 2 are not prime
if n < 2:
return False # numbers less then 2 are not prime
prime = True
m = n // 2 + 1
for x in range(3, m, 2):
if n % x == 0:
print(n, "is divisible by", x)
prime = False
break
return prime
while True:
number = int(input("Please enter a number (enter 0 to exit): "))
prime = is_primel_4(number)
if number is 0:
break
elif prime is True:
print(number, "is a prime number.")
else:
print(number, "is not a prime number")
| def is_primel_4(n):
if n == 2:
return True
if n % 2 == 0:
print(n, 'is divisible by 2')
return False
if n < 2:
return False
prime = True
m = n // 2 + 1
for x in range(3, m, 2):
if n % x == 0:
print(n, 'is divisible by', x)
prime = False
break
return prime
while True:
number = int(input('Please enter a number (enter 0 to exit): '))
prime = is_primel_4(number)
if number is 0:
break
elif prime is True:
print(number, 'is a prime number.')
else:
print(number, 'is not a prime number') |
#
# PySNMP MIB module NETSCREEN-RESOURCE-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/NETSCREEN-RESOURCE-MIB
# Produced by pysmi-0.3.4 at Wed May 1 14:20:16 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
ObjectIdentifier, Integer, OctetString = mibBuilder.importSymbols("ASN1", "ObjectIdentifier", "Integer", "OctetString")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ValueSizeConstraint, ConstraintsIntersection, ConstraintsUnion, SingleValueConstraint, ValueRangeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ValueSizeConstraint", "ConstraintsIntersection", "ConstraintsUnion", "SingleValueConstraint", "ValueRangeConstraint")
netscreenResource, = mibBuilder.importSymbols("NETSCREEN-SMI", "netscreenResource")
ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup")
Unsigned32, iso, Counter64, ModuleIdentity, MibScalar, MibTable, MibTableRow, MibTableColumn, IpAddress, Bits, TimeTicks, Counter32, ObjectIdentity, Integer32, NotificationType, MibIdentifier, Gauge32 = mibBuilder.importSymbols("SNMPv2-SMI", "Unsigned32", "iso", "Counter64", "ModuleIdentity", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "IpAddress", "Bits", "TimeTicks", "Counter32", "ObjectIdentity", "Integer32", "NotificationType", "MibIdentifier", "Gauge32")
DisplayString, TextualConvention = mibBuilder.importSymbols("SNMPv2-TC", "DisplayString", "TextualConvention")
netscreenResourceMibModule = ModuleIdentity((1, 3, 6, 1, 4, 1, 3224, 16, 0))
netscreenResourceMibModule.setRevisions(('2004-05-03 00:00', '2004-03-03 00:00', '2003-11-10 00:00', '2002-05-05 00:00', '2001-04-30 00:00',))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
if mibBuilder.loadTexts: netscreenResourceMibModule.setRevisionsDescriptions(('Modified copyright and contact information', 'Converted to SMIv2 by Longview Software', 'Correct spelling mistake', 'Remove active session', 'Creation Date',))
if mibBuilder.loadTexts: netscreenResourceMibModule.setLastUpdated('200405032022Z')
if mibBuilder.loadTexts: netscreenResourceMibModule.setOrganization('Juniper Networks, Inc.')
if mibBuilder.loadTexts: netscreenResourceMibModule.setContactInfo('Customer Support 1194 North Mathilda Avenue Sunnyvale, California 94089-1206 USA Tel: 1-800-638-8296 E-mail: customerservice@juniper.net HTTP://www.juniper.net')
if mibBuilder.loadTexts: netscreenResourceMibModule.setDescription('This module defines the object that are used to monitor resource in netscreen box')
nsResCPU = MibIdentifier((1, 3, 6, 1, 4, 1, 3224, 16, 1))
nsResCpuAvg = MibScalar((1, 3, 6, 1, 4, 1, 3224, 16, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nsResCpuAvg.setStatus('current')
if mibBuilder.loadTexts: nsResCpuAvg.setDescription('Average System CPU utilization in percentage.')
nsResCpuLast1Min = MibScalar((1, 3, 6, 1, 4, 1, 3224, 16, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nsResCpuLast1Min.setStatus('current')
if mibBuilder.loadTexts: nsResCpuLast1Min.setDescription('Last one minute CPU utilization in percentage.')
nsResCpuLast5Min = MibScalar((1, 3, 6, 1, 4, 1, 3224, 16, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nsResCpuLast5Min.setStatus('current')
if mibBuilder.loadTexts: nsResCpuLast5Min.setDescription('Last five minutes CPU utilization in percentage.')
nsResCpuLast15Min = MibScalar((1, 3, 6, 1, 4, 1, 3224, 16, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nsResCpuLast15Min.setStatus('current')
if mibBuilder.loadTexts: nsResCpuLast15Min.setDescription('Last fifteen minutes CPU utilization in percentage.')
nsResMem = MibIdentifier((1, 3, 6, 1, 4, 1, 3224, 16, 2))
nsResMemAllocate = MibScalar((1, 3, 6, 1, 4, 1, 3224, 16, 2, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nsResMemAllocate.setStatus('current')
if mibBuilder.loadTexts: nsResMemAllocate.setDescription('Memory allocated.')
nsResMemLeft = MibScalar((1, 3, 6, 1, 4, 1, 3224, 16, 2, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nsResMemLeft.setStatus('current')
if mibBuilder.loadTexts: nsResMemLeft.setDescription('Memory left.')
nsResMemFrag = MibScalar((1, 3, 6, 1, 4, 1, 3224, 16, 2, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nsResMemFrag.setStatus('current')
if mibBuilder.loadTexts: nsResMemFrag.setDescription('Memory fragment.')
nsResSession = MibIdentifier((1, 3, 6, 1, 4, 1, 3224, 16, 3))
nsResSessAllocate = MibScalar((1, 3, 6, 1, 4, 1, 3224, 16, 3, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nsResSessAllocate.setStatus('current')
if mibBuilder.loadTexts: nsResSessAllocate.setDescription('Allocate session number.')
nsResSessMaxium = MibScalar((1, 3, 6, 1, 4, 1, 3224, 16, 3, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nsResSessMaxium.setStatus('current')
if mibBuilder.loadTexts: nsResSessMaxium.setDescription('Maxium session number system can afford.')
nsResSessFailed = MibScalar((1, 3, 6, 1, 4, 1, 3224, 16, 3, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nsResSessFailed.setStatus('current')
if mibBuilder.loadTexts: nsResSessFailed.setDescription('Failed session allocation counters.')
mibBuilder.exportSymbols("NETSCREEN-RESOURCE-MIB", nsResSession=nsResSession, nsResCpuAvg=nsResCpuAvg, nsResCpuLast5Min=nsResCpuLast5Min, nsResMemFrag=nsResMemFrag, nsResSessFailed=nsResSessFailed, netscreenResourceMibModule=netscreenResourceMibModule, nsResCPU=nsResCPU, nsResMemAllocate=nsResMemAllocate, nsResCpuLast1Min=nsResCpuLast1Min, nsResSessAllocate=nsResSessAllocate, nsResCpuLast15Min=nsResCpuLast15Min, nsResMem=nsResMem, PYSNMP_MODULE_ID=netscreenResourceMibModule, nsResMemLeft=nsResMemLeft, nsResSessMaxium=nsResSessMaxium)
| (object_identifier, integer, octet_string) = mibBuilder.importSymbols('ASN1', 'ObjectIdentifier', 'Integer', 'OctetString')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(value_size_constraint, constraints_intersection, constraints_union, single_value_constraint, value_range_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ValueSizeConstraint', 'ConstraintsIntersection', 'ConstraintsUnion', 'SingleValueConstraint', 'ValueRangeConstraint')
(netscreen_resource,) = mibBuilder.importSymbols('NETSCREEN-SMI', 'netscreenResource')
(module_compliance, notification_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'NotificationGroup')
(unsigned32, iso, counter64, module_identity, mib_scalar, mib_table, mib_table_row, mib_table_column, ip_address, bits, time_ticks, counter32, object_identity, integer32, notification_type, mib_identifier, gauge32) = mibBuilder.importSymbols('SNMPv2-SMI', 'Unsigned32', 'iso', 'Counter64', 'ModuleIdentity', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'IpAddress', 'Bits', 'TimeTicks', 'Counter32', 'ObjectIdentity', 'Integer32', 'NotificationType', 'MibIdentifier', 'Gauge32')
(display_string, textual_convention) = mibBuilder.importSymbols('SNMPv2-TC', 'DisplayString', 'TextualConvention')
netscreen_resource_mib_module = module_identity((1, 3, 6, 1, 4, 1, 3224, 16, 0))
netscreenResourceMibModule.setRevisions(('2004-05-03 00:00', '2004-03-03 00:00', '2003-11-10 00:00', '2002-05-05 00:00', '2001-04-30 00:00'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
if mibBuilder.loadTexts:
netscreenResourceMibModule.setRevisionsDescriptions(('Modified copyright and contact information', 'Converted to SMIv2 by Longview Software', 'Correct spelling mistake', 'Remove active session', 'Creation Date'))
if mibBuilder.loadTexts:
netscreenResourceMibModule.setLastUpdated('200405032022Z')
if mibBuilder.loadTexts:
netscreenResourceMibModule.setOrganization('Juniper Networks, Inc.')
if mibBuilder.loadTexts:
netscreenResourceMibModule.setContactInfo('Customer Support 1194 North Mathilda Avenue Sunnyvale, California 94089-1206 USA Tel: 1-800-638-8296 E-mail: customerservice@juniper.net HTTP://www.juniper.net')
if mibBuilder.loadTexts:
netscreenResourceMibModule.setDescription('This module defines the object that are used to monitor resource in netscreen box')
ns_res_cpu = mib_identifier((1, 3, 6, 1, 4, 1, 3224, 16, 1))
ns_res_cpu_avg = mib_scalar((1, 3, 6, 1, 4, 1, 3224, 16, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nsResCpuAvg.setStatus('current')
if mibBuilder.loadTexts:
nsResCpuAvg.setDescription('Average System CPU utilization in percentage.')
ns_res_cpu_last1_min = mib_scalar((1, 3, 6, 1, 4, 1, 3224, 16, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nsResCpuLast1Min.setStatus('current')
if mibBuilder.loadTexts:
nsResCpuLast1Min.setDescription('Last one minute CPU utilization in percentage.')
ns_res_cpu_last5_min = mib_scalar((1, 3, 6, 1, 4, 1, 3224, 16, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nsResCpuLast5Min.setStatus('current')
if mibBuilder.loadTexts:
nsResCpuLast5Min.setDescription('Last five minutes CPU utilization in percentage.')
ns_res_cpu_last15_min = mib_scalar((1, 3, 6, 1, 4, 1, 3224, 16, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nsResCpuLast15Min.setStatus('current')
if mibBuilder.loadTexts:
nsResCpuLast15Min.setDescription('Last fifteen minutes CPU utilization in percentage.')
ns_res_mem = mib_identifier((1, 3, 6, 1, 4, 1, 3224, 16, 2))
ns_res_mem_allocate = mib_scalar((1, 3, 6, 1, 4, 1, 3224, 16, 2, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nsResMemAllocate.setStatus('current')
if mibBuilder.loadTexts:
nsResMemAllocate.setDescription('Memory allocated.')
ns_res_mem_left = mib_scalar((1, 3, 6, 1, 4, 1, 3224, 16, 2, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nsResMemLeft.setStatus('current')
if mibBuilder.loadTexts:
nsResMemLeft.setDescription('Memory left.')
ns_res_mem_frag = mib_scalar((1, 3, 6, 1, 4, 1, 3224, 16, 2, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nsResMemFrag.setStatus('current')
if mibBuilder.loadTexts:
nsResMemFrag.setDescription('Memory fragment.')
ns_res_session = mib_identifier((1, 3, 6, 1, 4, 1, 3224, 16, 3))
ns_res_sess_allocate = mib_scalar((1, 3, 6, 1, 4, 1, 3224, 16, 3, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nsResSessAllocate.setStatus('current')
if mibBuilder.loadTexts:
nsResSessAllocate.setDescription('Allocate session number.')
ns_res_sess_maxium = mib_scalar((1, 3, 6, 1, 4, 1, 3224, 16, 3, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nsResSessMaxium.setStatus('current')
if mibBuilder.loadTexts:
nsResSessMaxium.setDescription('Maxium session number system can afford.')
ns_res_sess_failed = mib_scalar((1, 3, 6, 1, 4, 1, 3224, 16, 3, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nsResSessFailed.setStatus('current')
if mibBuilder.loadTexts:
nsResSessFailed.setDescription('Failed session allocation counters.')
mibBuilder.exportSymbols('NETSCREEN-RESOURCE-MIB', nsResSession=nsResSession, nsResCpuAvg=nsResCpuAvg, nsResCpuLast5Min=nsResCpuLast5Min, nsResMemFrag=nsResMemFrag, nsResSessFailed=nsResSessFailed, netscreenResourceMibModule=netscreenResourceMibModule, nsResCPU=nsResCPU, nsResMemAllocate=nsResMemAllocate, nsResCpuLast1Min=nsResCpuLast1Min, nsResSessAllocate=nsResSessAllocate, nsResCpuLast15Min=nsResCpuLast15Min, nsResMem=nsResMem, PYSNMP_MODULE_ID=netscreenResourceMibModule, nsResMemLeft=nsResMemLeft, nsResSessMaxium=nsResSessMaxium) |
class OrderDetail(object):
def __init__(self, pro_id, pro_count, storage_detail, half_storage_detail):
self.pro_id = pro_id
self.pro_count = pro_count
self.storage_count = storage_detail.get(pro_id=self.pro_id).pro_count
self.half_storage_count = half_storage_detail.get(half_id=self.pro_id).half_count
@property
def subtotal_count(self):
if not hasattr(self, '_subtotal_count'):
self._subtotal_count = self.storage_count + self.half_storage_count - self.pro_count
return self._subtotal_count
@property
def pro_surplus(self):
if not hasattr(self, '_pro_surplus'):
self._pro_surplus = self.storage_count - self.pro_count
return self._pro_surplus | class Orderdetail(object):
def __init__(self, pro_id, pro_count, storage_detail, half_storage_detail):
self.pro_id = pro_id
self.pro_count = pro_count
self.storage_count = storage_detail.get(pro_id=self.pro_id).pro_count
self.half_storage_count = half_storage_detail.get(half_id=self.pro_id).half_count
@property
def subtotal_count(self):
if not hasattr(self, '_subtotal_count'):
self._subtotal_count = self.storage_count + self.half_storage_count - self.pro_count
return self._subtotal_count
@property
def pro_surplus(self):
if not hasattr(self, '_pro_surplus'):
self._pro_surplus = self.storage_count - self.pro_count
return self._pro_surplus |
x = [1,2,3,1]
print(type(x))
print(dir(x))
print('count:',x.count(1)) # 2, number of times the input occurs
print('index:',x.index(1)) # returns location of input (first occurance)
print(x,' : x')
try:
x[0] = 1.2 # lists are mutable
except(TypeError) as e:
print(e)
print(x,' : x[0]= 1.2')
x.append(7)
print(x,' : x.append(7) - on end')
x.extend([2,3])
print(x,' : x.extend([2,3]) - on end')
x.insert(3,10)
print(x,' : x.insert(3,10) - add 10 in space 3')
x.pop()
print(x,' : x.pop() - remove last item')
x.remove(2)
print(x,' : x.remove(2)- first occurance')
x.sort()
print(x,' : x.sort()')
x.reverse()
print(x,' : x.reverse()')
x.clear()
print(x,' : x.clear:') | x = [1, 2, 3, 1]
print(type(x))
print(dir(x))
print('count:', x.count(1))
print('index:', x.index(1))
print(x, ' : x')
try:
x[0] = 1.2
except TypeError as e:
print(e)
print(x, ' : x[0]= 1.2')
x.append(7)
print(x, ' : x.append(7) - on end')
x.extend([2, 3])
print(x, ' : x.extend([2,3]) - on end')
x.insert(3, 10)
print(x, ' : x.insert(3,10) - add 10 in space 3')
x.pop()
print(x, ' : x.pop() - remove last item')
x.remove(2)
print(x, ' : x.remove(2)- first occurance')
x.sort()
print(x, ' : x.sort()')
x.reverse()
print(x, ' : x.reverse()')
x.clear()
print(x, ' : x.clear:') |
def solveQuestion(inputPath):
fileP = open(inputPath, 'r')
fileLines = fileP.readlines()
fileP.close()
instructions = {}
toChangeInstructions = []
counter = 0
for valueLine in fileLines:
[instruction, value] = valueLine.strip('\n').split(' ')
instructions[counter] = [instruction, int(value)]
if instruction == 'nop' or instruction == 'jmp':
toChangeInstructions.append(counter)
counter += 1
counter = 0
for index in toChangeInstructions:
changedInstructions = dict(instructions)
[instruction, value] = changedInstructions[index]
if instruction == 'nop':
instruction = 'jmp'
else:
instruction = 'nop'
changedInstructions[index] = [instruction, value]
currentIndex = 0
indexList = []
accu = 0
while 1:
if currentIndex in indexList:
counter += 1
accu = 0
break
if currentIndex == len(changedInstructions):
break
indexList.append(currentIndex)
[instruction, value] = changedInstructions[currentIndex]
if instruction == 'nop':
currentIndex += 1
elif instruction == 'acc':
currentIndex += 1
accu += value
elif instruction == 'jmp':
currentIndex += value
if accu != 0:
return accu
print(solveQuestion('InputD08Q2.txt'))
| def solve_question(inputPath):
file_p = open(inputPath, 'r')
file_lines = fileP.readlines()
fileP.close()
instructions = {}
to_change_instructions = []
counter = 0
for value_line in fileLines:
[instruction, value] = valueLine.strip('\n').split(' ')
instructions[counter] = [instruction, int(value)]
if instruction == 'nop' or instruction == 'jmp':
toChangeInstructions.append(counter)
counter += 1
counter = 0
for index in toChangeInstructions:
changed_instructions = dict(instructions)
[instruction, value] = changedInstructions[index]
if instruction == 'nop':
instruction = 'jmp'
else:
instruction = 'nop'
changedInstructions[index] = [instruction, value]
current_index = 0
index_list = []
accu = 0
while 1:
if currentIndex in indexList:
counter += 1
accu = 0
break
if currentIndex == len(changedInstructions):
break
indexList.append(currentIndex)
[instruction, value] = changedInstructions[currentIndex]
if instruction == 'nop':
current_index += 1
elif instruction == 'acc':
current_index += 1
accu += value
elif instruction == 'jmp':
current_index += value
if accu != 0:
return accu
print(solve_question('InputD08Q2.txt')) |
# Definition for singly-linked list.
#class ListNode(object):
# def __init__(self, x):
# self.val = x
# self.next = None
class Solution(object):
def oddEvenList(self, head):
"""
:type head: ListNode
:rtype: ListNode
"""
if head is None:
return head
if head.next is None:
return head
odd, even_head = head, head.next
even = even_head
cur = even
while cur.next is not None:
odd.next = cur.next
odd = odd.next
cur = cur.next
if cur.next is not None:
even.next = cur.next
even = even.next
cur = cur.next
even.next = None
odd.next = even_head
return head
| class Solution(object):
def odd_even_list(self, head):
"""
:type head: ListNode
:rtype: ListNode
"""
if head is None:
return head
if head.next is None:
return head
(odd, even_head) = (head, head.next)
even = even_head
cur = even
while cur.next is not None:
odd.next = cur.next
odd = odd.next
cur = cur.next
if cur.next is not None:
even.next = cur.next
even = even.next
cur = cur.next
even.next = None
odd.next = even_head
return head |
class EWMA:
"""
Exponentially weighted moving average
"""
def __init__(self, momentum=0.98):
# set params
self._running_val = None
self._momentum = momentum
def update(self, new_val):
# update running val
if self._running_val is not None:
self._running_val = self._momentum * self._running_val + (1.0 - self._momentum) * new_val
else:
self._running_val = new_val
@property
def running_val(self):
return self._running_val
| class Ewma:
"""
Exponentially weighted moving average
"""
def __init__(self, momentum=0.98):
self._running_val = None
self._momentum = momentum
def update(self, new_val):
if self._running_val is not None:
self._running_val = self._momentum * self._running_val + (1.0 - self._momentum) * new_val
else:
self._running_val = new_val
@property
def running_val(self):
return self._running_val |
"""
To understand what's going on:
1. The Merge Sort Recursively breaks down a list of size N to
left and right, each of size N/2;
2. The new sliced lists are fed to cmp_sort that rearranges the
fed total list of size N with index to be sorted in the original list.
Since, Original list is Mutable - This Original list can be
either Sliced list or Original List.
3. Until sliced lists are merged recursively back to Parent List.
Turn on the comments to see what's happening.
Order for sanity check is based on Master Method:
T(n) <= aT(n/b) + O(n^d)
Tn = O(n^d*logn) | a = b^d
Tn = O(n^d) | a<b^d
Tn = O(n^loga, base=b) | a > b^d
"""
def cmp_sort(l1, l2, alist, index):
#given two sorted arrays
i = j = inc = incmax = 0
#print "the list {}\n".format(alist)
smaller,larger = (l1,l2) if(len(l1)<=len(l2)) else (l2,l1)
#print "left {} right {}\n".format(smaller, larger)
imax = len(smaller)
jmax = len(larger)
while (i < imax) and (j < jmax):
if smaller[i] > larger[j]:
alist[index] = larger[j]
j += 1
index += 1
else:
alist[index] = smaller[i]
i += 1
index += 1
#print "index i {} j {} index {}".format(i,j, index)
if jmax - j < imax - i:
inc = i
incmax = imax
l = smaller
else:
inc = j
incmax = jmax
l = larger
while incmax != inc:
alist[index] = l[inc]
inc += 1
index += 1
#print "list: {}".format(alist)
return alist
def merge_sort_rec(alist, index = 0):
ln = len(alist)
mid = ln//2
#print "index is {}".format(index)
#break down until base case of len =1 remains
if mid >= 1:
#print "Splitting...{}\n".format(alist)
left = merge_sort_rec(alist[:mid])
right = merge_sort_rec(alist[mid:])
#print "left {}\n".format(left)
#print "right {}\n".format(right)
return cmp_sort(left, right, alist, index)
else:
return alist
| """
To understand what's going on:
1. The Merge Sort Recursively breaks down a list of size N to
left and right, each of size N/2;
2. The new sliced lists are fed to cmp_sort that rearranges the
fed total list of size N with index to be sorted in the original list.
Since, Original list is Mutable - This Original list can be
either Sliced list or Original List.
3. Until sliced lists are merged recursively back to Parent List.
Turn on the comments to see what's happening.
Order for sanity check is based on Master Method:
T(n) <= aT(n/b) + O(n^d)
Tn = O(n^d*logn) | a = b^d
Tn = O(n^d) | a<b^d
Tn = O(n^loga, base=b) | a > b^d
"""
def cmp_sort(l1, l2, alist, index):
i = j = inc = incmax = 0
(smaller, larger) = (l1, l2) if len(l1) <= len(l2) else (l2, l1)
imax = len(smaller)
jmax = len(larger)
while i < imax and j < jmax:
if smaller[i] > larger[j]:
alist[index] = larger[j]
j += 1
index += 1
else:
alist[index] = smaller[i]
i += 1
index += 1
if jmax - j < imax - i:
inc = i
incmax = imax
l = smaller
else:
inc = j
incmax = jmax
l = larger
while incmax != inc:
alist[index] = l[inc]
inc += 1
index += 1
return alist
def merge_sort_rec(alist, index=0):
ln = len(alist)
mid = ln // 2
if mid >= 1:
left = merge_sort_rec(alist[:mid])
right = merge_sort_rec(alist[mid:])
return cmp_sort(left, right, alist, index)
else:
return alist |
ERROR_API_VERSION_NOT_FOUND = ("API version found in neither request path (/api/v#) nor 'Accept' "
'header (version=#)')
ERROR_API_VERSION_UNSUPPORTED = 'Unsupported API version'
ERROR_EMPTY_REQUEST_BODY = 'Empty request body - valid JSON required'
ERROR_ONLY_JSON_REQUESTS = 'WandAPI only supports JSON encoded requests'
ERROR_ONLY_JSON_RESPONSE = 'WandAPI only supports JSON encoded responses'
ERROR_INTERNAL_SERVER_ERROR = 'Internal Server Error'
ERROR_INVALID_JSON = 'Could not decode request body - JSON was incorrect or not encoded as UTF-8'
| error_api_version_not_found = "API version found in neither request path (/api/v#) nor 'Accept' header (version=#)"
error_api_version_unsupported = 'Unsupported API version'
error_empty_request_body = 'Empty request body - valid JSON required'
error_only_json_requests = 'WandAPI only supports JSON encoded requests'
error_only_json_response = 'WandAPI only supports JSON encoded responses'
error_internal_server_error = 'Internal Server Error'
error_invalid_json = 'Could not decode request body - JSON was incorrect or not encoded as UTF-8' |
# Code generated by font_to_py.py.
# Font: Ubuntu-R.ttf
# Cmd: font_to_py.py /usr/share/fonts/truetype/ubuntu/Ubuntu-R.ttf 16 -x ubuntu16.py
version = '0.33'
def height():
return 16
def baseline():
return 13
def max_width():
return 15
def hmap():
return True
def reverse():
return False
def monospaced():
return False
def min_ch():
return 32
def max_ch():
return 126
_font =\
b'\x06\x00\x00\x00\x38\x44\x04\x04\x18\x20\x20\x00\x00\x20\x20\x00'\
b'\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\
b'\x00\x00\x00\x00\x04\x00\x00\x00\x40\x40\x40\x40\x40\x40\x40\x00'\
b'\x00\x40\x40\x00\x00\x00\x07\x00\x48\x48\x48\x48\x00\x00\x00\x00'\
b'\x00\x00\x00\x00\x00\x00\x00\x00\x0b\x00\x00\x00\x00\x00\x08\x80'\
b'\x08\x80\x08\x80\x7f\xc0\x11\x00\x11\x00\x11\x00\x7f\xc0\x22\x00'\
b'\x22\x00\x22\x00\x00\x00\x00\x00\x00\x00\x09\x00\x08\x00\x08\x00'\
b'\x3e\x00\x40\x00\x40\x00\x40\x00\x30\x00\x08\x00\x06\x00\x01\x00'\
b'\x01\x00\x01\x00\x7e\x00\x08\x00\x08\x00\x00\x00\x0e\x00\x00\x00'\
b'\x00\x00\x38\x20\x44\x40\x44\x80\x44\x80\x45\x00\x3a\x70\x02\x88'\
b'\x04\x88\x04\x88\x08\x88\x10\x70\x00\x00\x00\x00\x00\x00\x0b\x00'\
b'\x00\x00\x00\x00\x1e\x00\x21\x00\x21\x00\x21\x00\x16\x00\x18\x00'\
b'\x24\x40\x42\x40\x41\x80\x41\x80\x3e\x40\x00\x00\x00\x00\x00\x00'\
b'\x04\x00\x40\x40\x40\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\
b'\x00\x00\x05\x00\x08\x10\x20\x20\x20\x40\x40\x40\x40\x40\x40\x20'\
b'\x20\x20\x10\x08\x05\x00\x80\x40\x20\x20\x20\x10\x10\x10\x10\x10'\
b'\x10\x20\x20\x20\x40\x80\x08\x00\x00\x00\x08\x49\x3e\x14\x14\x22'\
b'\x00\x00\x00\x00\x00\x00\x00\x00\x09\x00\x00\x00\x00\x00\x00\x00'\
b'\x00\x00\x00\x00\x08\x00\x08\x00\x08\x00\x7f\x00\x08\x00\x08\x00'\
b'\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00'\
b'\x00\x00\x00\x00\x00\x00\x00\x40\x40\x40\x40\x80\x06\x00\x00\x00'\
b'\x00\x00\x00\x00\x00\x00\x78\x00\x00\x00\x00\x00\x00\x00\x04\x00'\
b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x40\x00\x00\x00'\
b'\x07\x00\x02\x04\x04\x04\x08\x08\x08\x10\x10\x20\x20\x20\x40\x40'\
b'\x40\x80\x09\x00\x00\x00\x00\x00\x1c\x00\x22\x00\x41\x00\x41\x00'\
b'\x41\x00\x41\x00\x41\x00\x41\x00\x41\x00\x22\x00\x1c\x00\x00\x00'\
b'\x00\x00\x00\x00\x09\x00\x00\x00\x00\x00\x08\x00\x18\x00\x28\x00'\
b'\x48\x00\x08\x00\x08\x00\x08\x00\x08\x00\x08\x00\x08\x00\x08\x00'\
b'\x00\x00\x00\x00\x00\x00\x09\x00\x00\x00\x00\x00\x1c\x00\x22\x00'\
b'\x41\x00\x01\x00\x02\x00\x04\x00\x08\x00\x10\x00\x20\x00\x40\x00'\
b'\x7f\x00\x00\x00\x00\x00\x00\x00\x09\x00\x00\x00\x00\x00\x3c\x00'\
b'\x42\x00\x01\x00\x01\x00\x02\x00\x1c\x00\x02\x00\x01\x00\x01\x00'\
b'\x42\x00\x3c\x00\x00\x00\x00\x00\x00\x00\x09\x00\x00\x00\x00\x00'\
b'\x02\x00\x06\x00\x0a\x00\x12\x00\x12\x00\x22\x00\x42\x00\x7f\x00'\
b'\x02\x00\x02\x00\x02\x00\x00\x00\x00\x00\x00\x00\x09\x00\x00\x00'\
b'\x00\x00\x3f\x00\x20\x00\x20\x00\x20\x00\x3c\x00\x02\x00\x01\x00'\
b'\x01\x00\x01\x00\x42\x00\x3c\x00\x00\x00\x00\x00\x00\x00\x09\x00'\
b'\x00\x00\x00\x00\x0e\x00\x10\x00\x20\x00\x40\x00\x7c\x00\x42\x00'\
b'\x41\x00\x41\x00\x41\x00\x22\x00\x1c\x00\x00\x00\x00\x00\x00\x00'\
b'\x09\x00\x00\x00\x00\x00\x7f\x00\x01\x00\x02\x00\x04\x00\x04\x00'\
b'\x08\x00\x08\x00\x08\x00\x10\x00\x10\x00\x10\x00\x00\x00\x00\x00'\
b'\x00\x00\x09\x00\x00\x00\x00\x00\x1c\x00\x22\x00\x41\x00\x41\x00'\
b'\x22\x00\x1c\x00\x22\x00\x41\x00\x41\x00\x22\x00\x1c\x00\x00\x00'\
b'\x00\x00\x00\x00\x09\x00\x00\x00\x00\x00\x1c\x00\x22\x00\x41\x00'\
b'\x41\x00\x41\x00\x21\x00\x1f\x00\x01\x00\x02\x00\x04\x00\x38\x00'\
b'\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x40\x40\x00'\
b'\x00\x00\x00\x40\x40\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x40'\
b'\x40\x00\x00\x00\x00\x40\x40\x40\x40\x80\x09\x00\x00\x00\x00\x00'\
b'\x00\x00\x00\x00\x00\x00\x01\x00\x06\x00\x18\x00\x60\x00\x18\x00'\
b'\x06\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x09\x00\x00\x00'\
b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7f\x00\x00\x00\x00\x00'\
b'\x7f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x09\x00'\
b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x38\x00\x06\x00'\
b'\x01\x80\x06\x00\x38\x00\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00'\
b'\x06\x00\x00\x00\x38\x44\x04\x04\x18\x20\x20\x00\x00\x20\x20\x00'\
b'\x00\x00\x0f\x00\x00\x00\x00\x00\x07\xc0\x18\x30\x20\x08\x23\xe8'\
b'\x44\x24\x48\x24\x48\x24\x48\x24\x44\x24\x23\xd8\x20\x00\x18\x00'\
b'\x07\xe0\x00\x00\x0b\x00\x00\x00\x00\x00\x04\x00\x0a\x00\x0a\x00'\
b'\x11\x00\x11\x00\x20\x80\x20\x80\x3f\x80\x40\x40\x40\x40\x80\x20'\
b'\x00\x00\x00\x00\x00\x00\x0a\x00\x00\x00\x00\x00\x7c\x00\x42\x00'\
b'\x41\x00\x41\x00\x42\x00\x7e\x00\x41\x00\x40\x80\x40\x80\x41\x00'\
b'\x7e\x00\x00\x00\x00\x00\x00\x00\x0b\x00\x00\x00\x00\x00\x0f\x80'\
b'\x10\x40\x20\x00\x40\x00\x40\x00\x40\x00\x40\x00\x40\x00\x20\x00'\
b'\x10\x40\x0f\x80\x00\x00\x00\x00\x00\x00\x0b\x00\x00\x00\x00\x00'\
b'\x7e\x00\x41\x00\x40\x80\x40\x40\x40\x40\x40\x40\x40\x40\x40\x40'\
b'\x40\x80\x41\x00\x7e\x00\x00\x00\x00\x00\x00\x00\x09\x00\x00\x00'\
b'\x00\x00\x7f\x00\x40\x00\x40\x00\x40\x00\x40\x00\x7e\x00\x40\x00'\
b'\x40\x00\x40\x00\x40\x00\x7f\x00\x00\x00\x00\x00\x00\x00\x09\x00'\
b'\x00\x00\x00\x00\x7f\x00\x40\x00\x40\x00\x40\x00\x40\x00\x7e\x00'\
b'\x40\x00\x40\x00\x40\x00\x40\x00\x40\x00\x00\x00\x00\x00\x00\x00'\
b'\x0b\x00\x00\x00\x00\x00\x0f\x80\x10\x40\x20\x00\x40\x00\x40\x00'\
b'\x40\x00\x40\x40\x40\x40\x20\x40\x10\x40\x0f\xc0\x00\x00\x00\x00'\
b'\x00\x00\x0b\x00\x00\x00\x00\x00\x40\x40\x40\x40\x40\x40\x40\x40'\
b'\x40\x40\x7f\xc0\x40\x40\x40\x40\x40\x40\x40\x40\x40\x40\x00\x00'\
b'\x00\x00\x00\x00\x03\x00\x00\x00\x40\x40\x40\x40\x40\x40\x40\x40'\
b'\x40\x40\x40\x00\x00\x00\x08\x00\x00\x00\x02\x02\x02\x02\x02\x02'\
b'\x02\x02\x02\x84\x78\x00\x00\x00\x0a\x00\x00\x00\x00\x00\x40\x80'\
b'\x41\x00\x46\x00\x48\x00\x50\x00\x60\x00\x58\x00\x44\x00\x43\x00'\
b'\x40\x80\x40\x40\x00\x00\x00\x00\x00\x00\x08\x00\x00\x00\x40\x40'\
b'\x40\x40\x40\x40\x40\x40\x40\x40\x7f\x00\x00\x00\x0d\x00\x00\x00'\
b'\x00\x00\x20\x20\x30\x60\x30\x60\x28\xa0\x28\xa0\x25\x20\x45\x10'\
b'\x45\x10\x42\x10\x40\x10\x40\x10\x00\x00\x00\x00\x00\x00\x0b\x00'\
b'\x00\x00\x00\x00\x40\x40\x60\x40\x50\x40\x48\x40\x48\x40\x44\x40'\
b'\x42\x40\x41\x40\x41\x40\x40\xc0\x40\x40\x00\x00\x00\x00\x00\x00'\
b'\x0c\x00\x00\x00\x00\x00\x0f\x00\x10\x80\x20\x40\x40\x20\x40\x20'\
b'\x40\x20\x40\x20\x40\x20\x20\x40\x10\x80\x0f\x00\x00\x00\x00\x00'\
b'\x00\x00\x0a\x00\x00\x00\x00\x00\x7e\x00\x41\x00\x40\x80\x40\x80'\
b'\x40\x80\x41\x00\x7e\x00\x40\x00\x40\x00\x40\x00\x40\x00\x00\x00'\
b'\x00\x00\x00\x00\x0c\x00\x00\x00\x00\x00\x0f\x00\x10\x80\x20\x40'\
b'\x40\x20\x40\x20\x40\x20\x40\x20\x40\x20\x20\x40\x10\x80\x0f\x00'\
b'\x02\x00\x01\x00\x00\xc0\x0a\x00\x00\x00\x00\x00\x7e\x00\x41\x00'\
b'\x40\x80\x40\x80\x40\x80\x41\x00\x7e\x00\x42\x00\x41\x00\x40\x80'\
b'\x40\x40\x00\x00\x00\x00\x00\x00\x09\x00\x00\x00\x00\x00\x1e\x00'\
b'\x21\x00\x40\x00\x40\x00\x30\x00\x0c\x00\x02\x00\x01\x00\x01\x00'\
b'\x42\x00\x3c\x00\x00\x00\x00\x00\x00\x00\x09\x00\x00\x00\x00\x00'\
b'\xff\x80\x08\x00\x08\x00\x08\x00\x08\x00\x08\x00\x08\x00\x08\x00'\
b'\x08\x00\x08\x00\x08\x00\x00\x00\x00\x00\x00\x00\x0b\x00\x00\x00'\
b'\x00\x00\x40\x40\x40\x40\x40\x40\x40\x40\x40\x40\x40\x40\x40\x40'\
b'\x40\x40\x40\x40\x20\x80\x1f\x00\x00\x00\x00\x00\x00\x00\x09\x00'\
b'\x00\x00\x00\x00\x80\x80\x80\x80\x41\x00\x41\x00\x41\x00\x22\x00'\
b'\x22\x00\x14\x00\x14\x00\x14\x00\x08\x00\x00\x00\x00\x00\x00\x00'\
b'\x0d\x00\x00\x00\x00\x00\x80\x08\x82\x08\x42\x10\x45\x10\x45\x10'\
b'\x45\x10\x28\xa0\x28\xa0\x28\xa0\x10\x40\x10\x40\x00\x00\x00\x00'\
b'\x00\x00\x09\x00\x00\x00\x00\x00\x80\x80\x41\x00\x22\x00\x22\x00'\
b'\x14\x00\x08\x00\x14\x00\x22\x00\x22\x00\x41\x00\x80\x80\x00\x00'\
b'\x00\x00\x00\x00\x09\x00\x00\x00\x00\x00\x80\x80\x41\x00\x41\x00'\
b'\x22\x00\x22\x00\x14\x00\x08\x00\x08\x00\x08\x00\x08\x00\x08\x00'\
b'\x00\x00\x00\x00\x00\x00\x09\x00\x00\x00\x00\x00\x7f\x00\x01\x00'\
b'\x02\x00\x04\x00\x08\x00\x08\x00\x10\x00\x20\x00\x20\x00\x40\x00'\
b'\x7f\x00\x00\x00\x00\x00\x00\x00\x05\x00\x38\x20\x20\x20\x20\x20'\
b'\x20\x20\x20\x20\x20\x20\x20\x20\x20\x38\x07\x00\x80\x40\x40\x40'\
b'\x20\x20\x20\x10\x10\x08\x08\x08\x04\x04\x04\x02\x05\x00\xe0\x20'\
b'\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\xe0\x09\x00'\
b'\x00\x00\x00\x00\x08\x00\x14\x00\x14\x00\x22\x00\x22\x00\x41\x00'\
b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\
b'\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff'\
b'\x00\x00\x06\x00\x00\x40\x20\x10\x00\x00\x00\x00\x00\x00\x00\x00'\
b'\x00\x00\x00\x00\x08\x00\x00\x00\x00\x00\x00\x3c\x02\x02\x3e\x42'\
b'\x42\x42\x3e\x00\x00\x00\x09\x00\x00\x00\x40\x00\x40\x00\x40\x00'\
b'\x40\x00\x7c\x00\x42\x00\x41\x00\x41\x00\x41\x00\x41\x00\x42\x00'\
b'\x7c\x00\x00\x00\x00\x00\x00\x00\x08\x00\x00\x00\x00\x00\x00\x1e'\
b'\x20\x40\x40\x40\x40\x20\x1e\x00\x00\x00\x09\x00\x00\x00\x01\x00'\
b'\x01\x00\x01\x00\x01\x00\x1f\x00\x21\x00\x41\x00\x41\x00\x41\x00'\
b'\x41\x00\x21\x00\x1f\x00\x00\x00\x00\x00\x00\x00\x09\x00\x00\x00'\
b'\x00\x00\x00\x00\x00\x00\x00\x00\x1c\x00\x22\x00\x41\x00\x7f\x00'\
b'\x40\x00\x40\x00\x20\x00\x1e\x00\x00\x00\x00\x00\x00\x00\x06\x00'\
b'\x00\x3c\x40\x40\x40\x7c\x40\x40\x40\x40\x40\x40\x40\x00\x00\x00'\
b'\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1f\x00\x21\x00'\
b'\x41\x00\x41\x00\x41\x00\x41\x00\x21\x00\x1f\x00\x01\x00\x02\x00'\
b'\x7c\x00\x09\x00\x00\x00\x40\x00\x40\x00\x40\x00\x40\x00\x7c\x00'\
b'\x42\x00\x41\x00\x41\x00\x41\x00\x41\x00\x41\x00\x41\x00\x00\x00'\
b'\x00\x00\x00\x00\x03\x00\x00\x40\x40\x00\x00\x40\x40\x40\x40\x40'\
b'\x40\x40\x40\x00\x00\x00\x04\x00\x00\x20\x20\x00\x00\x20\x20\x20'\
b'\x20\x20\x20\x20\x20\x20\x20\xc0\x08\x00\x00\x40\x40\x40\x40\x44'\
b'\x48\x50\x60\x50\x48\x44\x42\x00\x00\x00\x04\x00\x00\x40\x40\x40'\
b'\x40\x40\x40\x40\x40\x40\x40\x40\x30\x00\x00\x00\x0d\x00\x00\x00'\
b'\x00\x00\x00\x00\x00\x00\x00\x00\x79\xc0\x46\x20\x42\x10\x42\x10'\
b'\x42\x10\x42\x10\x42\x10\x42\x10\x00\x00\x00\x00\x00\x00\x09\x00'\
b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00\x42\x00\x41\x00'\
b'\x41\x00\x41\x00\x41\x00\x41\x00\x41\x00\x00\x00\x00\x00\x00\x00'\
b'\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1e\x00\x21\x00'\
b'\x40\x80\x40\x80\x40\x80\x40\x80\x21\x00\x1e\x00\x00\x00\x00\x00'\
b'\x00\x00\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x00'\
b'\x42\x00\x41\x00\x41\x00\x41\x00\x41\x00\x42\x00\x7c\x00\x40\x00'\
b'\x40\x00\x40\x00\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\
b'\x1f\x00\x21\x00\x41\x00\x41\x00\x41\x00\x41\x00\x21\x00\x1f\x00'\
b'\x01\x00\x01\x00\x01\x00\x06\x00\x00\x00\x00\x00\x00\x7c\x40\x40'\
b'\x40\x40\x40\x40\x40\x00\x00\x00\x07\x00\x00\x00\x00\x00\x00\x3c'\
b'\x40\x40\x30\x08\x04\x04\x78\x00\x00\x00\x06\x00\x00\x00\x40\x40'\
b'\x40\x78\x40\x40\x40\x40\x40\x40\x38\x00\x00\x00\x09\x00\x00\x00'\
b'\x00\x00\x00\x00\x00\x00\x00\x00\x41\x00\x41\x00\x41\x00\x41\x00'\
b'\x41\x00\x41\x00\x21\x00\x1e\x00\x00\x00\x00\x00\x00\x00\x07\x00'\
b'\x00\x00\x00\x00\x00\x82\x82\x44\x44\x44\x28\x28\x10\x00\x00\x00'\
b'\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x82\x08\x82\x08'\
b'\x45\x10\x45\x10\x45\x10\x28\xa0\x28\xa0\x10\x40\x00\x00\x00\x00'\
b'\x00\x00\x08\x00\x00\x00\x00\x00\x00\x81\x42\x24\x18\x18\x24\x42'\
b'\x81\x00\x00\x00\x07\x00\x00\x00\x00\x00\x00\x82\x44\x44\x44\x28'\
b'\x28\x10\x10\x10\x20\xc0\x08\x00\x00\x00\x00\x00\x00\x7e\x02\x04'\
b'\x08\x10\x20\x40\x7e\x00\x00\x00\x05\x00\x18\x20\x20\x20\x20\x20'\
b'\x20\xc0\x20\x20\x20\x20\x20\x20\x20\x18\x04\x00\x40\x40\x40\x40'\
b'\x40\x40\x40\x40\x40\x40\x40\x40\x40\x40\x40\x40\x05\x00\xc0\x20'\
b'\x20\x20\x20\x20\x20\x18\x20\x20\x20\x20\x20\x20\x20\xc0\x09\x00'\
b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x39\x00'\
b'\x46\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'\
_index =\
b'\x00\x00\x12\x00\x24\x00\x36\x00\x48\x00\x6a\x00\x8c\x00\xae\x00'\
b'\xd0\x00\xe2\x00\xf4\x00\x06\x01\x18\x01\x3a\x01\x4c\x01\x5e\x01'\
b'\x70\x01\x82\x01\xa4\x01\xc6\x01\xe8\x01\x0a\x02\x2c\x02\x4e\x02'\
b'\x70\x02\x92\x02\xb4\x02\xd6\x02\xe8\x02\xfa\x02\x1c\x03\x3e\x03'\
b'\x60\x03\x72\x03\x94\x03\xb6\x03\xd8\x03\xfa\x03\x1c\x04\x3e\x04'\
b'\x60\x04\x82\x04\xa4\x04\xb6\x04\xc8\x04\xea\x04\xfc\x04\x1e\x05'\
b'\x40\x05\x62\x05\x84\x05\xa6\x05\xc8\x05\xea\x05\x0c\x06\x2e\x06'\
b'\x50\x06\x72\x06\x94\x06\xb6\x06\xd8\x06\xea\x06\xfc\x06\x0e\x07'\
b'\x30\x07\x42\x07\x54\x07\x66\x07\x88\x07\x9a\x07\xbc\x07\xde\x07'\
b'\xf0\x07\x12\x08\x34\x08\x46\x08\x58\x08\x6a\x08\x7c\x08\x9e\x08'\
b'\xc0\x08\xe2\x08\x04\x09\x26\x09\x38\x09\x4a\x09\x5c\x09\x7e\x09'\
b'\x90\x09\xb2\x09\xc4\x09\xd6\x09\xe8\x09\xfa\x09\x0c\x0a\x1e\x0a'\
b'\x40\x0a'
_mvfont = memoryview(_font)
_mvi = memoryview(_index)
ifb = lambda l : l[0] | (l[1] << 8)
def get_ch(ch):
oc = ord(ch)
ioff = 2 * (oc - 32 + 1) if oc >= 32 and oc <= 126 else 0
doff = ifb(_mvi[ioff : ])
width = ifb(_mvfont[doff : ])
next_offs = doff + 2 + ((width - 1)//8 + 1) * 16
return _mvfont[doff + 2:next_offs], 16, width
| version = '0.33'
def height():
return 16
def baseline():
return 13
def max_width():
return 15
def hmap():
return True
def reverse():
return False
def monospaced():
return False
def min_ch():
return 32
def max_ch():
return 126
_font = b'\x06\x00\x00\x008D\x04\x04\x18 \x00\x00 \x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00@@@@@@@\x00\x00@@\x00\x00\x00\x07\x00HHHH\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0b\x00\x00\x00\x00\x00\x08\x80\x08\x80\x08\x80\x7f\xc0\x11\x00\x11\x00\x11\x00\x7f\xc0"\x00"\x00"\x00\x00\x00\x00\x00\x00\x00\t\x00\x08\x00\x08\x00>\x00@\x00@\x00@\x000\x00\x08\x00\x06\x00\x01\x00\x01\x00\x01\x00~\x00\x08\x00\x08\x00\x00\x00\x0e\x00\x00\x00\x00\x008 D@D\x80D\x80E\x00:p\x02\x88\x04\x88\x04\x88\x08\x88\x10p\x00\x00\x00\x00\x00\x00\x0b\x00\x00\x00\x00\x00\x1e\x00!\x00!\x00!\x00\x16\x00\x18\x00$@B@A\x80A\x80>@\x00\x00\x00\x00\x00\x00\x04\x00@@@@\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x05\x00\x08\x10 @@@@@@ \x10\x08\x05\x00\x80@ \x10\x10\x10\x10\x10\x10 @\x80\x08\x00\x00\x00\x08I>\x14\x14"\x00\x00\x00\x00\x00\x00\x00\x00\t\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x08\x00\x08\x00\x08\x00\x7f\x00\x08\x00\x08\x00\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00@@@@\x80\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00x\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00@@\x00\x00\x00\x07\x00\x02\x04\x04\x04\x08\x08\x08\x10\x10 @@@\x80\t\x00\x00\x00\x00\x00\x1c\x00"\x00A\x00A\x00A\x00A\x00A\x00A\x00A\x00"\x00\x1c\x00\x00\x00\x00\x00\x00\x00\t\x00\x00\x00\x00\x00\x08\x00\x18\x00(\x00H\x00\x08\x00\x08\x00\x08\x00\x08\x00\x08\x00\x08\x00\x08\x00\x00\x00\x00\x00\x00\x00\t\x00\x00\x00\x00\x00\x1c\x00"\x00A\x00\x01\x00\x02\x00\x04\x00\x08\x00\x10\x00 \x00@\x00\x7f\x00\x00\x00\x00\x00\x00\x00\t\x00\x00\x00\x00\x00<\x00B\x00\x01\x00\x01\x00\x02\x00\x1c\x00\x02\x00\x01\x00\x01\x00B\x00<\x00\x00\x00\x00\x00\x00\x00\t\x00\x00\x00\x00\x00\x02\x00\x06\x00\n\x00\x12\x00\x12\x00"\x00B\x00\x7f\x00\x02\x00\x02\x00\x02\x00\x00\x00\x00\x00\x00\x00\t\x00\x00\x00\x00\x00?\x00 \x00 \x00 \x00<\x00\x02\x00\x01\x00\x01\x00\x01\x00B\x00<\x00\x00\x00\x00\x00\x00\x00\t\x00\x00\x00\x00\x00\x0e\x00\x10\x00 \x00@\x00|\x00B\x00A\x00A\x00A\x00"\x00\x1c\x00\x00\x00\x00\x00\x00\x00\t\x00\x00\x00\x00\x00\x7f\x00\x01\x00\x02\x00\x04\x00\x04\x00\x08\x00\x08\x00\x08\x00\x10\x00\x10\x00\x10\x00\x00\x00\x00\x00\x00\x00\t\x00\x00\x00\x00\x00\x1c\x00"\x00A\x00A\x00"\x00\x1c\x00"\x00A\x00A\x00"\x00\x1c\x00\x00\x00\x00\x00\x00\x00\t\x00\x00\x00\x00\x00\x1c\x00"\x00A\x00A\x00A\x00!\x00\x1f\x00\x01\x00\x02\x00\x04\x008\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00@@\x00\x00\x00\x00@@\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00@@\x00\x00\x00\x00@@@@\x80\t\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x06\x00\x18\x00`\x00\x18\x00\x06\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\t\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7f\x00\x00\x00\x00\x00\x7f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\t\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00@\x008\x00\x06\x00\x01\x80\x06\x008\x00@\x00\x00\x00\x00\x00\x00\x00\x00\x00\x06\x00\x00\x008D\x04\x04\x18 \x00\x00 \x00\x00\x00\x0f\x00\x00\x00\x00\x00\x07\xc0\x180 \x08#\xe8D$H$H$H$D$#\xd8 \x00\x18\x00\x07\xe0\x00\x00\x0b\x00\x00\x00\x00\x00\x04\x00\n\x00\n\x00\x11\x00\x11\x00 \x80 \x80?\x80@@@@\x80 \x00\x00\x00\x00\x00\x00\n\x00\x00\x00\x00\x00|\x00B\x00A\x00A\x00B\x00~\x00A\x00@\x80@\x80A\x00~\x00\x00\x00\x00\x00\x00\x00\x0b\x00\x00\x00\x00\x00\x0f\x80\x10@ \x00@\x00@\x00@\x00@\x00@\x00 \x00\x10@\x0f\x80\x00\x00\x00\x00\x00\x00\x0b\x00\x00\x00\x00\x00~\x00A\x00@\x80@@@@@@@@@@@\x80A\x00~\x00\x00\x00\x00\x00\x00\x00\t\x00\x00\x00\x00\x00\x7f\x00@\x00@\x00@\x00@\x00~\x00@\x00@\x00@\x00@\x00\x7f\x00\x00\x00\x00\x00\x00\x00\t\x00\x00\x00\x00\x00\x7f\x00@\x00@\x00@\x00@\x00~\x00@\x00@\x00@\x00@\x00@\x00\x00\x00\x00\x00\x00\x00\x0b\x00\x00\x00\x00\x00\x0f\x80\x10@ \x00@\x00@\x00@\x00@@@@ @\x10@\x0f\xc0\x00\x00\x00\x00\x00\x00\x0b\x00\x00\x00\x00\x00@@@@@@@@@@\x7f\xc0@@@@@@@@@@\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00@@@@@@@@@@@\x00\x00\x00\x08\x00\x00\x00\x02\x02\x02\x02\x02\x02\x02\x02\x02\x84x\x00\x00\x00\n\x00\x00\x00\x00\x00@\x80A\x00F\x00H\x00P\x00`\x00X\x00D\x00C\x00@\x80@@\x00\x00\x00\x00\x00\x00\x08\x00\x00\x00@@@@@@@@@@\x7f\x00\x00\x00\r\x00\x00\x00\x00\x00 0`0`(\xa0(\xa0% E\x10E\x10B\x10@\x10@\x10\x00\x00\x00\x00\x00\x00\x0b\x00\x00\x00\x00\x00@@`@P@H@H@D@B@A@A@@\xc0@@\x00\x00\x00\x00\x00\x00\x0c\x00\x00\x00\x00\x00\x0f\x00\x10\x80 @@ @ @ @ @ @\x10\x80\x0f\x00\x00\x00\x00\x00\x00\x00\n\x00\x00\x00\x00\x00~\x00A\x00@\x80@\x80@\x80A\x00~\x00@\x00@\x00@\x00@\x00\x00\x00\x00\x00\x00\x00\x0c\x00\x00\x00\x00\x00\x0f\x00\x10\x80 @@ @ @ @ @ @\x10\x80\x0f\x00\x02\x00\x01\x00\x00\xc0\n\x00\x00\x00\x00\x00~\x00A\x00@\x80@\x80@\x80A\x00~\x00B\x00A\x00@\x80@@\x00\x00\x00\x00\x00\x00\t\x00\x00\x00\x00\x00\x1e\x00!\x00@\x00@\x000\x00\x0c\x00\x02\x00\x01\x00\x01\x00B\x00<\x00\x00\x00\x00\x00\x00\x00\t\x00\x00\x00\x00\x00\xff\x80\x08\x00\x08\x00\x08\x00\x08\x00\x08\x00\x08\x00\x08\x00\x08\x00\x08\x00\x08\x00\x00\x00\x00\x00\x00\x00\x0b\x00\x00\x00\x00\x00@@@@@@@@@@@@@@@@@@ \x80\x1f\x00\x00\x00\x00\x00\x00\x00\t\x00\x00\x00\x00\x00\x80\x80\x80\x80A\x00A\x00A\x00"\x00"\x00\x14\x00\x14\x00\x14\x00\x08\x00\x00\x00\x00\x00\x00\x00\r\x00\x00\x00\x00\x00\x80\x08\x82\x08B\x10E\x10E\x10E\x10(\xa0(\xa0(\xa0\x10@\x10@\x00\x00\x00\x00\x00\x00\t\x00\x00\x00\x00\x00\x80\x80A\x00"\x00"\x00\x14\x00\x08\x00\x14\x00"\x00"\x00A\x00\x80\x80\x00\x00\x00\x00\x00\x00\t\x00\x00\x00\x00\x00\x80\x80A\x00A\x00"\x00"\x00\x14\x00\x08\x00\x08\x00\x08\x00\x08\x00\x08\x00\x00\x00\x00\x00\x00\x00\t\x00\x00\x00\x00\x00\x7f\x00\x01\x00\x02\x00\x04\x00\x08\x00\x08\x00\x10\x00 \x00 \x00@\x00\x7f\x00\x00\x00\x00\x00\x00\x00\x05\x008 8\x07\x00\x80@@@ \x10\x10\x08\x08\x08\x04\x04\x04\x02\x05\x00\xe0 \xe0\t\x00\x00\x00\x00\x00\x08\x00\x14\x00\x14\x00"\x00"\x00A\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\x00\x00\x06\x00\x00@ \x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x08\x00\x00\x00\x00\x00\x00<\x02\x02>BBB>\x00\x00\x00\t\x00\x00\x00@\x00@\x00@\x00@\x00|\x00B\x00A\x00A\x00A\x00A\x00B\x00|\x00\x00\x00\x00\x00\x00\x00\x08\x00\x00\x00\x00\x00\x00\x1e @@@@ \x1e\x00\x00\x00\t\x00\x00\x00\x01\x00\x01\x00\x01\x00\x01\x00\x1f\x00!\x00A\x00A\x00A\x00A\x00!\x00\x1f\x00\x00\x00\x00\x00\x00\x00\t\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1c\x00"\x00A\x00\x7f\x00@\x00@\x00 \x00\x1e\x00\x00\x00\x00\x00\x00\x00\x06\x00\x00<@@@|@@@@@@@\x00\x00\x00\t\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1f\x00!\x00A\x00A\x00A\x00A\x00!\x00\x1f\x00\x01\x00\x02\x00|\x00\t\x00\x00\x00@\x00@\x00@\x00@\x00|\x00B\x00A\x00A\x00A\x00A\x00A\x00A\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00@@\x00\x00@@@@@@@@\x00\x00\x00\x04\x00\x00 \x00\x00 \xc0\x08\x00\x00@@@@DHP`PHDB\x00\x00\x00\x04\x00\x00@@@@@@@@@@@0\x00\x00\x00\r\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00y\xc0F B\x10B\x10B\x10B\x10B\x10B\x10\x00\x00\x00\x00\x00\x00\t\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00|\x00B\x00A\x00A\x00A\x00A\x00A\x00A\x00\x00\x00\x00\x00\x00\x00\n\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1e\x00!\x00@\x80@\x80@\x80@\x80!\x00\x1e\x00\x00\x00\x00\x00\x00\x00\t\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00|\x00B\x00A\x00A\x00A\x00A\x00B\x00|\x00@\x00@\x00@\x00\t\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1f\x00!\x00A\x00A\x00A\x00A\x00!\x00\x1f\x00\x01\x00\x01\x00\x01\x00\x06\x00\x00\x00\x00\x00\x00|@@@@@@@\x00\x00\x00\x07\x00\x00\x00\x00\x00\x00<@@0\x08\x04\x04x\x00\x00\x00\x06\x00\x00\x00@@@x@@@@@@8\x00\x00\x00\t\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00A\x00A\x00A\x00A\x00A\x00A\x00!\x00\x1e\x00\x00\x00\x00\x00\x00\x00\x07\x00\x00\x00\x00\x00\x00\x82\x82DDD((\x10\x00\x00\x00\r\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x82\x08\x82\x08E\x10E\x10E\x10(\xa0(\xa0\x10@\x00\x00\x00\x00\x00\x00\x08\x00\x00\x00\x00\x00\x00\x81B$\x18\x18$B\x81\x00\x00\x00\x07\x00\x00\x00\x00\x00\x00\x82DDD((\x10\x10\x10 \xc0\x08\x00\x00\x00\x00\x00\x00~\x02\x04\x08\x10 @~\x00\x00\x00\x05\x00\x18 \xc0 \x18\x04\x00@@@@@@@@@@@@@@@@\x05\x00\xc0 \x18 \xc0\t\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x009\x00F\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'
_index = b'\x00\x00\x12\x00$\x006\x00H\x00j\x00\x8c\x00\xae\x00\xd0\x00\xe2\x00\xf4\x00\x06\x01\x18\x01:\x01L\x01^\x01p\x01\x82\x01\xa4\x01\xc6\x01\xe8\x01\n\x02,\x02N\x02p\x02\x92\x02\xb4\x02\xd6\x02\xe8\x02\xfa\x02\x1c\x03>\x03`\x03r\x03\x94\x03\xb6\x03\xd8\x03\xfa\x03\x1c\x04>\x04`\x04\x82\x04\xa4\x04\xb6\x04\xc8\x04\xea\x04\xfc\x04\x1e\x05@\x05b\x05\x84\x05\xa6\x05\xc8\x05\xea\x05\x0c\x06.\x06P\x06r\x06\x94\x06\xb6\x06\xd8\x06\xea\x06\xfc\x06\x0e\x070\x07B\x07T\x07f\x07\x88\x07\x9a\x07\xbc\x07\xde\x07\xf0\x07\x12\x084\x08F\x08X\x08j\x08|\x08\x9e\x08\xc0\x08\xe2\x08\x04\t&\t8\tJ\t\\\t~\t\x90\t\xb2\t\xc4\t\xd6\t\xe8\t\xfa\t\x0c\n\x1e\n@\n'
_mvfont = memoryview(_font)
_mvi = memoryview(_index)
ifb = lambda l: l[0] | l[1] << 8
def get_ch(ch):
oc = ord(ch)
ioff = 2 * (oc - 32 + 1) if oc >= 32 and oc <= 126 else 0
doff = ifb(_mvi[ioff:])
width = ifb(_mvfont[doff:])
next_offs = doff + 2 + ((width - 1) // 8 + 1) * 16
return (_mvfont[doff + 2:next_offs], 16, width) |
MERCADO_ABERTO = 1
MERCADO_FECHADO = 2
CAMPEONATO = 'campeonato'
TURNO = 'turno'
MES = 'mes'
RODADA = 'rodada'
PATRIMONIO = 'patrimonio'
| mercado_aberto = 1
mercado_fechado = 2
campeonato = 'campeonato'
turno = 'turno'
mes = 'mes'
rodada = 'rodada'
patrimonio = 'patrimonio' |
firstname = input("Enter first person name:")
secondname = input("Enter second person name:")
name = firstname + secondname
name = name.replace(" ","")
#print(name)
list = []
for x in name:
count = name.count(x)
if count > 0:
list.append(count)
name = name.replace(x,"").strip()
#print(list)
def addnums(list):
newlist = []
while len(list) > 1:
newlist.append(list.pop()+list.pop(0))
else:
newlist.extend(list)
if len(newlist) > 2 :
#print(newlist)
addnums(newlist)
elif len(newlist) > 1:
lastnum = int(str(newlist[0])+str(newlist[1]))
#print(lastnum)
if lastnum > 100:
print ("100 %")
else:
print(str(newlist[0])+str(newlist[1])+"%")
else:
print(str(newlist[0]) + "%")
addnums(list)
| firstname = input('Enter first person name:')
secondname = input('Enter second person name:')
name = firstname + secondname
name = name.replace(' ', '')
list = []
for x in name:
count = name.count(x)
if count > 0:
list.append(count)
name = name.replace(x, '').strip()
def addnums(list):
newlist = []
while len(list) > 1:
newlist.append(list.pop() + list.pop(0))
else:
newlist.extend(list)
if len(newlist) > 2:
addnums(newlist)
elif len(newlist) > 1:
lastnum = int(str(newlist[0]) + str(newlist[1]))
if lastnum > 100:
print('100 %')
else:
print(str(newlist[0]) + str(newlist[1]) + '%')
else:
print(str(newlist[0]) + '%')
addnums(list) |
DEPOSIT = "deposit"
DEPOSIT_STABLE = "deposit_stable"
MINT = "mint"
SEND = "send"
| deposit = 'deposit'
deposit_stable = 'deposit_stable'
mint = 'mint'
send = 'send' |
data = (
'ke', # 0x00
'keg', # 0x01
'kegg', # 0x02
'kegs', # 0x03
'ken', # 0x04
'kenj', # 0x05
'kenh', # 0x06
'ked', # 0x07
'kel', # 0x08
'kelg', # 0x09
'kelm', # 0x0a
'kelb', # 0x0b
'kels', # 0x0c
'kelt', # 0x0d
'kelp', # 0x0e
'kelh', # 0x0f
'kem', # 0x10
'keb', # 0x11
'kebs', # 0x12
'kes', # 0x13
'kess', # 0x14
'keng', # 0x15
'kej', # 0x16
'kec', # 0x17
'kek', # 0x18
'ket', # 0x19
'kep', # 0x1a
'keh', # 0x1b
'kyeo', # 0x1c
'kyeog', # 0x1d
'kyeogg', # 0x1e
'kyeogs', # 0x1f
'kyeon', # 0x20
'kyeonj', # 0x21
'kyeonh', # 0x22
'kyeod', # 0x23
'kyeol', # 0x24
'kyeolg', # 0x25
'kyeolm', # 0x26
'kyeolb', # 0x27
'kyeols', # 0x28
'kyeolt', # 0x29
'kyeolp', # 0x2a
'kyeolh', # 0x2b
'kyeom', # 0x2c
'kyeob', # 0x2d
'kyeobs', # 0x2e
'kyeos', # 0x2f
'kyeoss', # 0x30
'kyeong', # 0x31
'kyeoj', # 0x32
'kyeoc', # 0x33
'kyeok', # 0x34
'kyeot', # 0x35
'kyeop', # 0x36
'kyeoh', # 0x37
'kye', # 0x38
'kyeg', # 0x39
'kyegg', # 0x3a
'kyegs', # 0x3b
'kyen', # 0x3c
'kyenj', # 0x3d
'kyenh', # 0x3e
'kyed', # 0x3f
'kyel', # 0x40
'kyelg', # 0x41
'kyelm', # 0x42
'kyelb', # 0x43
'kyels', # 0x44
'kyelt', # 0x45
'kyelp', # 0x46
'kyelh', # 0x47
'kyem', # 0x48
'kyeb', # 0x49
'kyebs', # 0x4a
'kyes', # 0x4b
'kyess', # 0x4c
'kyeng', # 0x4d
'kyej', # 0x4e
'kyec', # 0x4f
'kyek', # 0x50
'kyet', # 0x51
'kyep', # 0x52
'kyeh', # 0x53
'ko', # 0x54
'kog', # 0x55
'kogg', # 0x56
'kogs', # 0x57
'kon', # 0x58
'konj', # 0x59
'konh', # 0x5a
'kod', # 0x5b
'kol', # 0x5c
'kolg', # 0x5d
'kolm', # 0x5e
'kolb', # 0x5f
'kols', # 0x60
'kolt', # 0x61
'kolp', # 0x62
'kolh', # 0x63
'kom', # 0x64
'kob', # 0x65
'kobs', # 0x66
'kos', # 0x67
'koss', # 0x68
'kong', # 0x69
'koj', # 0x6a
'koc', # 0x6b
'kok', # 0x6c
'kot', # 0x6d
'kop', # 0x6e
'koh', # 0x6f
'kwa', # 0x70
'kwag', # 0x71
'kwagg', # 0x72
'kwags', # 0x73
'kwan', # 0x74
'kwanj', # 0x75
'kwanh', # 0x76
'kwad', # 0x77
'kwal', # 0x78
'kwalg', # 0x79
'kwalm', # 0x7a
'kwalb', # 0x7b
'kwals', # 0x7c
'kwalt', # 0x7d
'kwalp', # 0x7e
'kwalh', # 0x7f
'kwam', # 0x80
'kwab', # 0x81
'kwabs', # 0x82
'kwas', # 0x83
'kwass', # 0x84
'kwang', # 0x85
'kwaj', # 0x86
'kwac', # 0x87
'kwak', # 0x88
'kwat', # 0x89
'kwap', # 0x8a
'kwah', # 0x8b
'kwae', # 0x8c
'kwaeg', # 0x8d
'kwaegg', # 0x8e
'kwaegs', # 0x8f
'kwaen', # 0x90
'kwaenj', # 0x91
'kwaenh', # 0x92
'kwaed', # 0x93
'kwael', # 0x94
'kwaelg', # 0x95
'kwaelm', # 0x96
'kwaelb', # 0x97
'kwaels', # 0x98
'kwaelt', # 0x99
'kwaelp', # 0x9a
'kwaelh', # 0x9b
'kwaem', # 0x9c
'kwaeb', # 0x9d
'kwaebs', # 0x9e
'kwaes', # 0x9f
'kwaess', # 0xa0
'kwaeng', # 0xa1
'kwaej', # 0xa2
'kwaec', # 0xa3
'kwaek', # 0xa4
'kwaet', # 0xa5
'kwaep', # 0xa6
'kwaeh', # 0xa7
'koe', # 0xa8
'koeg', # 0xa9
'koegg', # 0xaa
'koegs', # 0xab
'koen', # 0xac
'koenj', # 0xad
'koenh', # 0xae
'koed', # 0xaf
'koel', # 0xb0
'koelg', # 0xb1
'koelm', # 0xb2
'koelb', # 0xb3
'koels', # 0xb4
'koelt', # 0xb5
'koelp', # 0xb6
'koelh', # 0xb7
'koem', # 0xb8
'koeb', # 0xb9
'koebs', # 0xba
'koes', # 0xbb
'koess', # 0xbc
'koeng', # 0xbd
'koej', # 0xbe
'koec', # 0xbf
'koek', # 0xc0
'koet', # 0xc1
'koep', # 0xc2
'koeh', # 0xc3
'kyo', # 0xc4
'kyog', # 0xc5
'kyogg', # 0xc6
'kyogs', # 0xc7
'kyon', # 0xc8
'kyonj', # 0xc9
'kyonh', # 0xca
'kyod', # 0xcb
'kyol', # 0xcc
'kyolg', # 0xcd
'kyolm', # 0xce
'kyolb', # 0xcf
'kyols', # 0xd0
'kyolt', # 0xd1
'kyolp', # 0xd2
'kyolh', # 0xd3
'kyom', # 0xd4
'kyob', # 0xd5
'kyobs', # 0xd6
'kyos', # 0xd7
'kyoss', # 0xd8
'kyong', # 0xd9
'kyoj', # 0xda
'kyoc', # 0xdb
'kyok', # 0xdc
'kyot', # 0xdd
'kyop', # 0xde
'kyoh', # 0xdf
'ku', # 0xe0
'kug', # 0xe1
'kugg', # 0xe2
'kugs', # 0xe3
'kun', # 0xe4
'kunj', # 0xe5
'kunh', # 0xe6
'kud', # 0xe7
'kul', # 0xe8
'kulg', # 0xe9
'kulm', # 0xea
'kulb', # 0xeb
'kuls', # 0xec
'kult', # 0xed
'kulp', # 0xee
'kulh', # 0xef
'kum', # 0xf0
'kub', # 0xf1
'kubs', # 0xf2
'kus', # 0xf3
'kuss', # 0xf4
'kung', # 0xf5
'kuj', # 0xf6
'kuc', # 0xf7
'kuk', # 0xf8
'kut', # 0xf9
'kup', # 0xfa
'kuh', # 0xfb
'kweo', # 0xfc
'kweog', # 0xfd
'kweogg', # 0xfe
'kweogs', # 0xff
)
| data = ('ke', 'keg', 'kegg', 'kegs', 'ken', 'kenj', 'kenh', 'ked', 'kel', 'kelg', 'kelm', 'kelb', 'kels', 'kelt', 'kelp', 'kelh', 'kem', 'keb', 'kebs', 'kes', 'kess', 'keng', 'kej', 'kec', 'kek', 'ket', 'kep', 'keh', 'kyeo', 'kyeog', 'kyeogg', 'kyeogs', 'kyeon', 'kyeonj', 'kyeonh', 'kyeod', 'kyeol', 'kyeolg', 'kyeolm', 'kyeolb', 'kyeols', 'kyeolt', 'kyeolp', 'kyeolh', 'kyeom', 'kyeob', 'kyeobs', 'kyeos', 'kyeoss', 'kyeong', 'kyeoj', 'kyeoc', 'kyeok', 'kyeot', 'kyeop', 'kyeoh', 'kye', 'kyeg', 'kyegg', 'kyegs', 'kyen', 'kyenj', 'kyenh', 'kyed', 'kyel', 'kyelg', 'kyelm', 'kyelb', 'kyels', 'kyelt', 'kyelp', 'kyelh', 'kyem', 'kyeb', 'kyebs', 'kyes', 'kyess', 'kyeng', 'kyej', 'kyec', 'kyek', 'kyet', 'kyep', 'kyeh', 'ko', 'kog', 'kogg', 'kogs', 'kon', 'konj', 'konh', 'kod', 'kol', 'kolg', 'kolm', 'kolb', 'kols', 'kolt', 'kolp', 'kolh', 'kom', 'kob', 'kobs', 'kos', 'koss', 'kong', 'koj', 'koc', 'kok', 'kot', 'kop', 'koh', 'kwa', 'kwag', 'kwagg', 'kwags', 'kwan', 'kwanj', 'kwanh', 'kwad', 'kwal', 'kwalg', 'kwalm', 'kwalb', 'kwals', 'kwalt', 'kwalp', 'kwalh', 'kwam', 'kwab', 'kwabs', 'kwas', 'kwass', 'kwang', 'kwaj', 'kwac', 'kwak', 'kwat', 'kwap', 'kwah', 'kwae', 'kwaeg', 'kwaegg', 'kwaegs', 'kwaen', 'kwaenj', 'kwaenh', 'kwaed', 'kwael', 'kwaelg', 'kwaelm', 'kwaelb', 'kwaels', 'kwaelt', 'kwaelp', 'kwaelh', 'kwaem', 'kwaeb', 'kwaebs', 'kwaes', 'kwaess', 'kwaeng', 'kwaej', 'kwaec', 'kwaek', 'kwaet', 'kwaep', 'kwaeh', 'koe', 'koeg', 'koegg', 'koegs', 'koen', 'koenj', 'koenh', 'koed', 'koel', 'koelg', 'koelm', 'koelb', 'koels', 'koelt', 'koelp', 'koelh', 'koem', 'koeb', 'koebs', 'koes', 'koess', 'koeng', 'koej', 'koec', 'koek', 'koet', 'koep', 'koeh', 'kyo', 'kyog', 'kyogg', 'kyogs', 'kyon', 'kyonj', 'kyonh', 'kyod', 'kyol', 'kyolg', 'kyolm', 'kyolb', 'kyols', 'kyolt', 'kyolp', 'kyolh', 'kyom', 'kyob', 'kyobs', 'kyos', 'kyoss', 'kyong', 'kyoj', 'kyoc', 'kyok', 'kyot', 'kyop', 'kyoh', 'ku', 'kug', 'kugg', 'kugs', 'kun', 'kunj', 'kunh', 'kud', 'kul', 'kulg', 'kulm', 'kulb', 'kuls', 'kult', 'kulp', 'kulh', 'kum', 'kub', 'kubs', 'kus', 'kuss', 'kung', 'kuj', 'kuc', 'kuk', 'kut', 'kup', 'kuh', 'kweo', 'kweog', 'kweogg', 'kweogs') |
Scale.default = Scale.chromatic
Root.default = 0
Clock.bpm = 80
print(Scale.names())
print(SynthDefs)
print(Samples)
print(FxList)
print(Attributes)
print(PatternMethods)
print(Clock.playing)
var.ch = var([7,0,5,0,3],[4,4,4,4,8])
~p1 >> play('x..t', room=1)
~p2 >> play('f', dur=PDur(3,16)*2, room=1)
~p3 >> play('<V>< o>', dur=1, amp=.5, lpf=800)
~p4 >> play('-', dur=.5, amp=.25, delay=var([0,.25],[12,4]), sample=PRand(4), rate=PRand([.5,1,2]), room=1, mix=.25)
~s1 >> sinepad(var.ch, amp=.5, dur=4, sus=5, room=1).spread()
~s2 >> dbass(var.ch, dur=4, sus=6, oct=4, room=1, amp=.25, shape=.5, lpf=500).spread()
~s3 >> piano(var.ch+PWalk(), dur=PRand([.25,.5,.5,1]), amp=.5, oct=PRand([4,5,5,6]), scale=Scale.phrygian, formant=linvar([.1,.5],16), room=1)
~s4 >> sitar(var.ch+(0,5,12), amp=PRand([0,.4]), dur=PDur(var([3,5],[8,16]),8), oct=PRand([5,6,7]), room=1, formant=1)
| Scale.default = Scale.chromatic
Root.default = 0
Clock.bpm = 80
print(Scale.names())
print(SynthDefs)
print(Samples)
print(FxList)
print(Attributes)
print(PatternMethods)
print(Clock.playing)
var.ch = var([7, 0, 5, 0, 3], [4, 4, 4, 4, 8])
~p1 >> play('x..t', room=1)
~p2 >> play('f', dur=p_dur(3, 16) * 2, room=1)
~p3 >> play('<V>< o>', dur=1, amp=0.5, lpf=800)
~p4 >> play('-', dur=0.5, amp=0.25, delay=var([0, 0.25], [12, 4]), sample=p_rand(4), rate=p_rand([0.5, 1, 2]), room=1, mix=0.25)
~s1 >> sinepad(var.ch, amp=0.5, dur=4, sus=5, room=1).spread()
~s2 >> dbass(var.ch, dur=4, sus=6, oct=4, room=1, amp=0.25, shape=0.5, lpf=500).spread()
~s3 >> piano(var.ch + p_walk(), dur=p_rand([0.25, 0.5, 0.5, 1]), amp=0.5, oct=p_rand([4, 5, 5, 6]), scale=Scale.phrygian, formant=linvar([0.1, 0.5], 16), room=1)
~s4 >> sitar(var.ch + (0, 5, 12), amp=p_rand([0, 0.4]), dur=p_dur(var([3, 5], [8, 16]), 8), oct=p_rand([5, 6, 7]), room=1, formant=1) |
hnefatafl = """50022222005
00000200000
00000000000
20000100002
20001110002
22011711022
20001110002
20000100002
00000000000
00000200000
50022222005"""
brandubh = """5002005
0002000
0001000
2217122
0001000
0002000
5002005"""
hnefatafl_args = (hnefatafl, False)
brandubh_args = (brandubh, True)
| hnefatafl = '50022222005\n00000200000\n00000000000\n20000100002\n20001110002\n22011711022\n20001110002\n20000100002\n00000000000\n00000200000\n50022222005'
brandubh = '5002005\n0002000\n0001000\n2217122\n0001000\n0002000\n5002005'
hnefatafl_args = (hnefatafl, False)
brandubh_args = (brandubh, True) |
#!/usr/bin/env python
# -*- coding: utf-8 -*-
class Process:
""" this class is representing the process"""
def __init__(self, idt, arr, exc):
self.idt = idt
self.arr = arr
self.arr_aux = arr
self.exc = exc
self.prt = -1
self.start_exc = -1
def idt(self):
return self.idt
def arr(self):
return self.arr
def arr_aux(self):
return self.arr_aux
def arr_to_pair(self):
self.arr_aux += 1
def exc(self):
return self.exc
def start_exc(self):
return self.start_exc
def dec_exc(self, value):
self.exc = self.exc - value
def prt(self):
return self.prt
def set_prt(self, value):
self.prt = value
def set_ret(self, value):
self.ret = value
def set_start_exc(self, value):
self.start_exc = value
def dec_prt(self):
self.prt = self.prt - 1
def inc_prt(self):
self.prt = self.prt + 1 | class Process:
""" this class is representing the process"""
def __init__(self, idt, arr, exc):
self.idt = idt
self.arr = arr
self.arr_aux = arr
self.exc = exc
self.prt = -1
self.start_exc = -1
def idt(self):
return self.idt
def arr(self):
return self.arr
def arr_aux(self):
return self.arr_aux
def arr_to_pair(self):
self.arr_aux += 1
def exc(self):
return self.exc
def start_exc(self):
return self.start_exc
def dec_exc(self, value):
self.exc = self.exc - value
def prt(self):
return self.prt
def set_prt(self, value):
self.prt = value
def set_ret(self, value):
self.ret = value
def set_start_exc(self, value):
self.start_exc = value
def dec_prt(self):
self.prt = self.prt - 1
def inc_prt(self):
self.prt = self.prt + 1 |
"""
Moved to seperate py2pydantic package
"""
raise DeprecationWarning("Moved to front.py2pydantic")
| """
Moved to seperate py2pydantic package
"""
raise deprecation_warning('Moved to front.py2pydantic') |
#
# PySNMP MIB module CPQHSV-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/CPQHSV-MIB
# Produced by pysmi-0.3.4 at Wed May 1 12:27:33 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, ObjectIdentifier, Integer = mibBuilder.importSymbols("ASN1", "OctetString", "ObjectIdentifier", "Integer")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
SingleValueConstraint, ValueRangeConstraint, ConstraintsUnion, ConstraintsIntersection, ValueSizeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "SingleValueConstraint", "ValueRangeConstraint", "ConstraintsUnion", "ConstraintsIntersection", "ValueSizeConstraint")
ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup")
Counter32, Counter64, Integer32, Bits, NotificationType, ModuleIdentity, Gauge32, Unsigned32, ObjectIdentity, MibIdentifier, MibScalar, MibTable, MibTableRow, MibTableColumn, enterprises, NotificationType, iso, TimeTicks, IpAddress = mibBuilder.importSymbols("SNMPv2-SMI", "Counter32", "Counter64", "Integer32", "Bits", "NotificationType", "ModuleIdentity", "Gauge32", "Unsigned32", "ObjectIdentity", "MibIdentifier", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "enterprises", "NotificationType", "iso", "TimeTicks", "IpAddress")
TextualConvention, DisplayString = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "DisplayString")
compaq = MibIdentifier((1, 3, 6, 1, 4, 1, 232))
cpqElementManager = MibIdentifier((1, 3, 6, 1, 4, 1, 232, 136))
cpqHSV = MibIdentifier((1, 3, 6, 1, 4, 1, 232, 136, 1))
cpqHSVAgent = MibIdentifier((1, 3, 6, 1, 4, 1, 232, 136, 1, 1))
cpqHSVServer = MibIdentifier((1, 3, 6, 1, 4, 1, 232, 136, 1, 2))
hsvObject = MibIdentifier((1, 3, 6, 1, 4, 1, 232, 136, 1, 3))
maHSVMibRev = MibIdentifier((1, 3, 6, 1, 4, 1, 232, 136, 1, 4))
scell = MibIdentifier((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1))
agent = MibIdentifier((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 2))
host = MibIdentifier((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 3))
nsc = MibIdentifier((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 4))
shelf = MibIdentifier((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 8))
agManufacturer = MibScalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 1), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: agManufacturer.setStatus('mandatory')
if mibBuilder.loadTexts: agManufacturer.setDescription('The name of the StorageWorks HSV Agent manufacturer.')
agMajVersion = MibScalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: agMajVersion.setStatus('mandatory')
if mibBuilder.loadTexts: agMajVersion.setDescription('StorageWorks HSV Agent Major Version Number (e.g., 3 for 3.0).')
agMinVersion = MibScalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: agMinVersion.setStatus('mandatory')
if mibBuilder.loadTexts: agMinVersion.setDescription('StorageWorks HSV Agent Minor Version Number (e.g., 0 for 3.0).')
agHostName = MibScalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 4), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: agHostName.setStatus('mandatory')
if mibBuilder.loadTexts: agHostName.setDescription('The Host System Network Name where the agent resides.')
agEnterprise = MibScalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 5), ObjectIdentifier()).setMaxAccess("readonly")
if mibBuilder.loadTexts: agEnterprise.setStatus('mandatory')
if mibBuilder.loadTexts: agEnterprise.setDescription('The Enterprise ID subtree for StorageWorks HSV Agent MIB is registered.')
agDescription = MibScalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 6), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: agDescription.setStatus('mandatory')
if mibBuilder.loadTexts: agDescription.setDescription('The StorageWorks HSV Agent description.')
agStatusTable = MibTable((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 7), )
if mibBuilder.loadTexts: agStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts: agStatusTable.setDescription('This table holds the status information for each HSV Management Agent.')
agentEntry = MibTableRow((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 7, 1), ).setIndexNames((0, "CPQHSV-MIB", "agentEntryIndex"))
if mibBuilder.loadTexts: agentEntry.setStatus('mandatory')
if mibBuilder.loadTexts: agentEntry.setDescription('The Agent information entry.')
agentEntryIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 7, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: agentEntryIndex.setStatus('mandatory')
if mibBuilder.loadTexts: agentEntryIndex.setDescription('The index into agentStatusTable .')
agentStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 7, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("other", 1), ("ok", 2), ("degraded", 3), ("failed", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: agentStatus.setStatus('mandatory')
if mibBuilder.loadTexts: agentStatus.setDescription('This variable reports the overall status of the Agent. INFORMATIONAL: Normal Operating Condition MINOR: Warning Condition MAJOR: Failure or Failure Immanent CRITICAL: Agent condition is critical or unknown')
agentEventCode = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 7, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: agentEventCode.setStatus('mandatory')
if mibBuilder.loadTexts: agentEventCode.setDescription('The management agent event code.')
agentEventLevel = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 7, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: agentEventLevel.setStatus('mandatory')
if mibBuilder.loadTexts: agentEventLevel.setDescription('The management event level.')
agentEventTimeDate = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 7, 1, 5), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: agentEventTimeDate.setStatus('mandatory')
if mibBuilder.loadTexts: agentEventTimeDate.setDescription('The date and time the event occurred dd-mm-yyyy/hr:min:sec.')
agentEventDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 7, 1, 6), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: agentEventDescription.setStatus('mandatory')
if mibBuilder.loadTexts: agentEventDescription.setDescription('The Description of the management agent event.')
srvCPU = MibScalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 2, 1), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: srvCPU.setStatus('mandatory')
if mibBuilder.loadTexts: srvCPU.setDescription('The server CPU type (e.g., 80486).')
srvComputerType = MibScalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 2, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: srvComputerType.setStatus('mandatory')
if mibBuilder.loadTexts: srvComputerType.setDescription('The server Computer type (e.g., PC/AT).')
srvModel = MibScalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 2, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: srvModel.setStatus('mandatory')
if mibBuilder.loadTexts: srvModel.setDescription('The server model number.')
srvSubModel = MibScalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 2, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: srvSubModel.setStatus('mandatory')
if mibBuilder.loadTexts: srvSubModel.setDescription('The server submodel number.')
srvBiosVersion = MibScalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 2, 5), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: srvBiosVersion.setStatus('mandatory')
if mibBuilder.loadTexts: srvBiosVersion.setDescription('The server BIOS Version.')
srvOS = MibScalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 2, 6), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: srvOS.setStatus('mandatory')
if mibBuilder.loadTexts: srvOS.setDescription('The server operating system name (e.g., WINNT).')
srvOSMajVersion = MibScalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 2, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: srvOSMajVersion.setStatus('mandatory')
if mibBuilder.loadTexts: srvOSMajVersion.setDescription('The server OS major version number (e.g., 3 for WINNT 3.51).')
srvOSMinVersion = MibScalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 2, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: srvOSMinVersion.setStatus('mandatory')
if mibBuilder.loadTexts: srvOSMinVersion.setDescription('The server OS minor version number (e.g., 51 for WINNT 3.51).')
maHSVMibRevMajor = MibScalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 4, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: maHSVMibRevMajor.setStatus('mandatory')
if mibBuilder.loadTexts: maHSVMibRevMajor.setDescription('The Major Revision level. A change in the major revision level represents a major change in the architecture of the MIB. A change in the major revision level may indicate a significant change in the information supported and/or the meaning of the supported information, correct interpretation of data may require a MIB document with the same major revision level.')
maHSVMibRevMinor = MibScalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 4, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: maHSVMibRevMinor.setStatus('mandatory')
if mibBuilder.loadTexts: maHSVMibRevMinor.setDescription('The Minor Revision level. A change in the minor revision level may represent some minor additional support, no changes to any pre-existing information has occurred.')
scellTotal = MibScalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: scellTotal.setStatus('mandatory')
if mibBuilder.loadTexts: scellTotal.setDescription('The total number of StorageCells (storage pools) present in the Fusion System.')
scellStatusTable = MibTable((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2), )
if mibBuilder.loadTexts: scellStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts: scellStatusTable.setDescription('This table holds the status information for each StorageCell.')
scellEntry = MibTableRow((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2, 1), ).setIndexNames((0, "CPQHSV-MIB", "scellEntryIndex"))
if mibBuilder.loadTexts: scellEntry.setStatus('mandatory')
if mibBuilder.loadTexts: scellEntry.setDescription('The StorageCell information entry.')
scellEntryIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: scellEntryIndex.setStatus('mandatory')
if mibBuilder.loadTexts: scellEntryIndex.setDescription('The index into scellStatusTable .')
scellName = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: scellName.setStatus('mandatory')
if mibBuilder.loadTexts: scellName.setDescription('The StorageCell Name.')
scellUUID = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2, 1, 3), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: scellUUID.setStatus('mandatory')
if mibBuilder.loadTexts: scellUUID.setDescription('The StorageCell unique ID.')
scellStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("informational", 1), ("minor", 2), ("major", 3), ("failed", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: scellStatus.setStatus('mandatory')
if mibBuilder.loadTexts: scellStatus.setDescription('This variable reports the overall status of the StorageCell. INFORMATIONAL: Normal Operating Condition MINOR: Warning Condition MAJOR: Failure or Failure Immanent CRITICAL: Condition is critical or unknown')
scellEventDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2, 1, 5), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: scellEventDescription.setStatus('mandatory')
if mibBuilder.loadTexts: scellEventDescription.setDescription('The StorageCell Event Description.')
scellEventTimeDate = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2, 1, 6), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: scellEventTimeDate.setStatus('mandatory')
if mibBuilder.loadTexts: scellEventTimeDate.setDescription('The StorageCell Event Time and Date.')
scellEventCode = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2, 1, 7), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: scellEventCode.setStatus('mandatory')
if mibBuilder.loadTexts: scellEventCode.setDescription('The StorageCell Event Code.')
scellSWComponent = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2, 1, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: scellSWComponent.setStatus('mandatory')
if mibBuilder.loadTexts: scellSWComponent.setDescription('The Event Code Software Component ID.')
scellECode = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2, 1, 9), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: scellECode.setStatus('mandatory')
if mibBuilder.loadTexts: scellECode.setDescription('The StorageCell Event Code event number.')
scellCAC = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2, 1, 10), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: scellCAC.setStatus('mandatory')
if mibBuilder.loadTexts: scellCAC.setDescription('The event code Corrective Action Code.')
scellEIP = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2, 1, 11), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: scellEIP.setStatus('mandatory')
if mibBuilder.loadTexts: scellEIP.setDescription('The Event Code EIP Type.')
scellNameDateTime = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2, 1, 12), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: scellNameDateTime.setStatus('mandatory')
if mibBuilder.loadTexts: scellNameDateTime.setDescription('The StorageCell Name: Date & Time of Event.')
hostTotal = MibScalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 3, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hostTotal.setStatus('mandatory')
if mibBuilder.loadTexts: hostTotal.setDescription('The total number of hosts attached the Fusion System.')
hostStatusTable = MibTable((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 3, 2), )
if mibBuilder.loadTexts: hostStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts: hostStatusTable.setDescription('This table holds the status information for each Host.')
hostEntry = MibTableRow((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 3, 2, 1), ).setIndexNames((0, "CPQHSV-MIB", "hostEntryIndex"))
if mibBuilder.loadTexts: hostEntry.setStatus('mandatory')
if mibBuilder.loadTexts: hostEntry.setDescription('The Host information entry.')
hostEntryIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 3, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hostEntryIndex.setStatus('mandatory')
if mibBuilder.loadTexts: hostEntryIndex.setDescription('The index into hostStatusTable .')
hostName = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 3, 2, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hostName.setStatus('mandatory')
if mibBuilder.loadTexts: hostName.setDescription('The Host Name.')
hostUUID = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 3, 2, 1, 3), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hostUUID.setStatus('mandatory')
if mibBuilder.loadTexts: hostUUID.setDescription('The Host unique ID.')
hostStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 3, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("informational", 0), ("minor", 1), ("major", 2), ("critical", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: hostStatus.setStatus('mandatory')
if mibBuilder.loadTexts: hostStatus.setDescription('This variable reports the overall status of the Host. INFORMATIONAL: Normal Operating Condition MINOR: Warning Condition MAJOR: Failure or Failure Immanent CRITICAL: Condition is critical or unknown')
nscTotal = MibScalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 4, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nscTotal.setStatus('mandatory')
if mibBuilder.loadTexts: nscTotal.setDescription('The total number of Network Storage Controllers present in the Fusion System.')
nscStatusTable = MibTable((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 4, 2), )
if mibBuilder.loadTexts: nscStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts: nscStatusTable.setDescription('This table holds the status information for each Network Storage Controller.')
nscEntry = MibTableRow((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 4, 2, 1), ).setIndexNames((0, "CPQHSV-MIB", "nscEntryIndex"))
if mibBuilder.loadTexts: nscEntry.setStatus('mandatory')
if mibBuilder.loadTexts: nscEntry.setDescription('The NSC information entry.')
nscEntryIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 4, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nscEntryIndex.setStatus('mandatory')
if mibBuilder.loadTexts: nscEntryIndex.setDescription('The index into nscStatusTable .')
nscName = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 4, 2, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nscName.setStatus('mandatory')
if mibBuilder.loadTexts: nscName.setDescription('The Network Storage Controller Name.')
nscUUID = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 4, 2, 1, 3), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nscUUID.setStatus('mandatory')
if mibBuilder.loadTexts: nscUUID.setDescription('The NSC unique ID.')
nscStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 4, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("informational", 0), ("minor", 1), ("major", 2), ("critical", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: nscStatus.setStatus('mandatory')
if mibBuilder.loadTexts: nscStatus.setDescription('This variable reports the overall status of the Network Storage Controller. INFORMATIONAL: Normal Operating Condition MINOR: Warning Condition MAJOR: Failure or Failure Immanent CRITICAL: Condition is critical or unknown')
shelfTotal = MibScalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 8, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: shelfTotal.setStatus('mandatory')
if mibBuilder.loadTexts: shelfTotal.setDescription('The total number of disk shelves present in the HSV system.')
shelfStatusTable = MibTable((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 8, 2), )
if mibBuilder.loadTexts: shelfStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts: shelfStatusTable.setDescription('This table holds the status information for each Shelf.')
shelfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 8, 2, 1), ).setIndexNames((0, "CPQHSV-MIB", "shelfEntryIndex"))
if mibBuilder.loadTexts: shelfEntry.setStatus('mandatory')
if mibBuilder.loadTexts: shelfEntry.setDescription('The Shelf information entry.')
shelfEntryIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 8, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: shelfEntryIndex.setStatus('mandatory')
if mibBuilder.loadTexts: shelfEntryIndex.setDescription('The index into shelfStatusTable .')
shelfStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 8, 2, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("other", 1), ("ok", 2), ("degraded", 3), ("failed", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: shelfStatus.setStatus('mandatory')
if mibBuilder.loadTexts: shelfStatus.setDescription('This variable reports the overall status of the Shelf. OTHER: unknown or undeterminable OK: Normal Operating Condition DEGRADED: Warning Condition FAILED: Failure')
shelfId = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 8, 2, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: shelfId.setStatus('mandatory')
if mibBuilder.loadTexts: shelfId.setDescription('The Shelf Id (shelf number).')
shelfElementType = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 8, 2, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: shelfElementType.setStatus('mandatory')
if mibBuilder.loadTexts: shelfElementType.setDescription('The Shelf Element type. 01: Disk 02: Power Supply 03: Fan 04: Temp Sensor 06: Alarm Horn 07: EMU 12: LCD 15: GBIC 16: Language 17: Comm Port 18: Volt Sensor 19: Amp Sensor 128:Enclosure 130:Back plane 255:Host')
shelfElementNum = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 8, 2, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: shelfElementNum.setStatus('mandatory')
if mibBuilder.loadTexts: shelfElementNum.setDescription('Which particular Element of that type.')
shelfErrorCode = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 8, 2, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: shelfErrorCode.setStatus('mandatory')
if mibBuilder.loadTexts: shelfErrorCode.setDescription("The Element Type's Error Code.")
emuEventTrapInformative = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136001)).setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "shelfId"), ("CPQHSV-MIB", "shelfElementType"), ("CPQHSV-MIB", "shelfElementNum"), ("CPQHSV-MIB", "shelfErrorCode"))
if mibBuilder.loadTexts: emuEventTrapInformative.setDescription('An EMU Informational event has occurred scellNameDateTime: StorageCell name, and date/time emuShelfId: disk shelf number in the cabinet emuElementType: the element type 01: Disk 02: Pwr Supply 03: Fan 04: Temp Sensor 06: Alarm Horn 07: EMU 12: LCD 15: Xcvr 16: Lang 17: Comm Port 18: Volt Sensor 19: Amp Sensor 128:Encl 130:Back plane emuErrorCode: error number ')
emuEventTrapNoncritical = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002)).setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "shelfId"), ("CPQHSV-MIB", "shelfElementType"), ("CPQHSV-MIB", "shelfElementNum"), ("CPQHSV-MIB", "shelfErrorCode"))
if mibBuilder.loadTexts: emuEventTrapNoncritical.setDescription('An EMU Non-critical event has occurred scellNameDateTime: StorageCell name, and date/time emuShelfId: disk shelf number in the cabinet emuElementType: the element type 01: Disk 02: Pwr Supply 03: Fan 04: Temp Sensor 06: Alarm Horn 07: EMU 12: LCD 15: Xcvr 16: Lang 17: Comm Port 18: Volt Sensor 19: Amp Sensor 128:Encl 130:Back plane emuErrorCode: error number ')
emuEventTrapCritical = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003)).setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "shelfId"), ("CPQHSV-MIB", "shelfElementType"), ("CPQHSV-MIB", "shelfElementNum"), ("CPQHSV-MIB", "shelfErrorCode"))
if mibBuilder.loadTexts: emuEventTrapCritical.setDescription('An EMU Critical event has occurred scellNameDateTime: StorageCell name, and date/time emuShelfId: disk shelf number in the cabinet emuElementType: the element type 01: Disk 02: Pwr Supply 03: Fan 04: Temp Sensor 06: Alarm Horn 07: EMU 12: LCD 15: Xcvr 16: Lang 17: Comm Port 18: Volt Sensor 19: Amp Sensor 128:Encl 130:Back plane emuErrorCode: error number ')
emuEventTrapUnrecoverable = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004)).setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "shelfId"), ("CPQHSV-MIB", "shelfElementType"), ("CPQHSV-MIB", "shelfElementNum"), ("CPQHSV-MIB", "shelfErrorCode"))
if mibBuilder.loadTexts: emuEventTrapUnrecoverable.setDescription('An EMU Unrecoverable event has occurred scellNameDateTime: StorageCell name, and date/time emuShelfId: disk shelf number in the cabinet emuElementType: the element type 01: Disk 02: Pwr Supply 03: Fan 04: Temp Sensor 06: Alarm Horn 07: EMU 12: LCD 15: Xcvr 16: Lang 17: Comm Port 18: Volt Sensor 19: Amp Sensor 128:Encl 130:Back plane emuErrorCode: error number ')
sCellEventTrap_01_02 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13600258)).setLabel("sCellEventTrap-01-02").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_01_02.setDescription('Severity: Normal -- informational in nature. A time change occurred.')
sCellEventTrap_03_00 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13600768)).setLabel("sCellEventTrap-03-00").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_03_00.setDescription('Severity: Critical -- failure or failure imminent. An HSV210 controller has failed in communicating with the Cabinet (Rack) Bus Interface Controller.')
sCellEventTrap_03_01 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13600769)).setLabel("sCellEventTrap-03-01").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_03_01.setDescription('Severity: Critical -- failure or failure imminent. A physical disk drive has been rendered inoperable.')
sCellEventTrap_03_02 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13600770)).setLabel("sCellEventTrap-03-02").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_03_02.setDescription('Severity: Warning -- not failed but attention recommended or required. A physical disk drive will not be used because the maximum number of physical disk drives already exist in the current Storage System.')
sCellEventTrap_03_03 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13600771)).setLabel("sCellEventTrap-03-03").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_03_03.setDescription('Severity: Normal -- informational in nature. An HSV210 controller has begun booting.')
sCellEventTrap_03_04 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13600772)).setLabel("sCellEventTrap-03-04").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_03_04.setDescription('Severity: Normal -- informational in nature. An HSV210 controller has finished the process of bringing the Storage System online.')
sCellEventTrap_03_05 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13600773)).setLabel("sCellEventTrap-03-05").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_03_05.setDescription('Severity: Normal -- informational in nature. An HSV210 controller has been joined into the Storage System.')
sCellEventTrap_03_06 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13600774)).setLabel("sCellEventTrap-03-06").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_03_06.setDescription('Severity: Normal -- informational in nature. An HSV210 controller has been ousted from the Storage System.')
sCellEventTrap_03_07 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13600775)).setLabel("sCellEventTrap-03-07").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_03_07.setDescription('Severity: Normal -- informational in nature. An HSV210 controller is now the Storage System Master.')
sCellEventTrap_03_08 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13600776)).setLabel("sCellEventTrap-03-08").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_03_08.setDescription('Severity: Normal -- informational in nature. An HSV210 controller has been brought into the Storage System.')
sCellEventTrap_03_09 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13600777)).setLabel("sCellEventTrap-03-09").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_03_09.setDescription('Severity: Normal -- informational in nature. The Redundant Storage Set identified in the source-rss field has started migrating members to the Redundant Storage Set identified in the target-rss field.')
sCellEventTrap_03_0a = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13600778)).setLabel("sCellEventTrap-03-0a").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_03_0a.setDescription('Severity: Normal -- informational in nature. The Redundant Storage Set identified in the source-rss field has finished migrating members to the Redundant Storage Set identified in the target-rss field.')
sCellEventTrap_03_0b = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13600779)).setLabel("sCellEventTrap-03-0b").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_03_0b.setDescription('Severity: Warning -- not failed but attention recommended or required. A physical disk drive has failed during Storage System realization.')
sCellEventTrap_04_00 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601024)).setLabel("sCellEventTrap-04-00").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_04_00.setDescription('Severity: Undetermined -- more information needed to determine severity. HSV210 controller operation was terminated due to an unrecoverable event detected by either software or hardware or due to an action initiated via the Storage System Management Interface.')
sCellEventTrap_04_01 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601025)).setLabel("sCellEventTrap-04-01").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_04_01.setDescription('Severity: Undetermined -- more information needed to determine severity. This HSV210 controller has received a last gasp message from another HSV210 controller prior to it terminating operation.')
sCellEventTrap_04_02 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601026)).setLabel("sCellEventTrap-04-02").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_04_02.setDescription('Severity: Critical -- failure or failure imminent. A machine check occurred while a termination event was being processed.')
sCellEventTrap_04_03 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601027)).setLabel("sCellEventTrap-04-03").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_04_03.setDescription('Severity: Critical -- failure or failure imminent. An unexpected event occurred while a termination event was being processed.')
sCellEventTrap_04_04 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601028)).setLabel("sCellEventTrap-04-04").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_04_04.setDescription('Severity: Normal -- informational in nature. The Storage System Event Log validation completed successfully.')
sCellEventTrap_04_05 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601029)).setLabel("sCellEventTrap-04-05").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_04_05.setDescription('Severity: Normal -- informational in nature. The Storage System Event Log validation failed.')
sCellEventTrap_04_06 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601030)).setLabel("sCellEventTrap-04-06").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_04_06.setDescription('Severity: Normal -- informational in nature. Local event reports were lost due to an insufficient supply of Event Log Packets on this HSV210 controller.')
sCellEventTrap_04_07 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601031)).setLabel("sCellEventTrap-04-07").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_04_07.setDescription('Severity: Normal -- informational in nature. Remote event reports were lost due to an insufficient supply of Event Log Packets on this HSV210 controller.')
sCellEventTrap_04_08 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601032)).setLabel("sCellEventTrap-04-08").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_04_08.setDescription('Severity: Normal -- informational in nature. The Storage System Termination Event Log has become inaccessible.')
sCellEventTrap_04_09 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601033)).setLabel("sCellEventTrap-04-09").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_04_09.setDescription('Severity: Normal -- informational in nature. The Storage System Termination Event Log validation completed successfully.')
sCellEventTrap_04_0a = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601034)).setLabel("sCellEventTrap-04-0a").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_04_0a.setDescription('Severity: Normal -- informational in nature. The Storage System Termination Event Log validation failed.')
sCellEventTrap_04_0b = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601035)).setLabel("sCellEventTrap-04-0b").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_04_0b.setDescription('Severity: Normal -- informational in nature. The Storage System Termination Event Log has been updated with the termination event information obtained from the HSV210 controller that is not the Storage System Master.')
sCellEventTrap_04_0c = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601036)).setLabel("sCellEventTrap-04-0c").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_04_0c.setDescription('Severity: Normal -- informational in nature. The Fault Manager on the Storage System Master received an invalid Event Information Packet from the remote Fault Manager.')
sCellEventTrap_04_0d = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601037)).setLabel("sCellEventTrap-04-0d").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_04_0d.setDescription('Severity: Normal -- informational in nature. The Fault Manager operation was made quiescent.')
sCellEventTrap_04_0e = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601038)).setLabel("sCellEventTrap-04-0e").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_04_0e.setDescription('Severity: Undetermined -- more information needed to determine severity. An HSV210 controller sent a last gasp message prior to terminating operation with an indication that both HSV210 controllers should terminate operation.')
sCellEventTrap_04_0f = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601039)).setLabel("sCellEventTrap-04-0f").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_04_0f.setDescription('Severity: Normal -- informational in nature. This HSV210 controller sent its termination event information to the HSV210 controller that is the Storage System Master.')
sCellEventTrap_04_10 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601040)).setLabel("sCellEventTrap-04-10").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_04_10.setDescription('Severity: Normal -- informational in nature. Event reports were lost due to an insufficient supply of ISR Event Log Packets on the HSV210 controller that is the Storage System Master.')
sCellEventTrap_04_11 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601041)).setLabel("sCellEventTrap-04-11").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_04_11.setDescription('Severity: Normal -- informational in nature. Event reports were lost due to an insufficient supply of ISR Event Log Packets on the HSV210 controller that is not the Storage System Master.')
sCellEventTrap_04_12 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601042)).setLabel("sCellEventTrap-04-12").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_04_12.setDescription('Severity: Normal -- informational in nature. The last event reporting interval has changed or last event reporting has been enabled or disabled.')
sCellEventTrap_04_13 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601043)).setLabel("sCellEventTrap-04-13").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_04_13.setDescription('Severity: Normal -- informational in nature. Storage System event reporting is still active.')
sCellEventTrap_06_00 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601536)).setLabel("sCellEventTrap-06-00").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_06_00.setDescription('Severity: Critical -- failure or failure imminent. A physical disk drive has reported that it has exceeded its failure prediction threshold.')
sCellEventTrap_06_01 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601537)).setLabel("sCellEventTrap-06-01").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_06_01.setDescription('Severity: Warning -- not failed but attention recommended or required. A Fibre Channel port on the HSV210 controller has failed to respond.')
sCellEventTrap_06_02 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601538)).setLabel("sCellEventTrap-06-02").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_06_02.setDescription('Severity: Normal -- informational in nature. A physical disk drive has reported a check condition error.')
sCellEventTrap_06_03 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601539)).setLabel("sCellEventTrap-06-03").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_06_03.setDescription('Severity: Warning -- not failed but attention recommended or required. An exchange sent to a physical disk drive or another HSV210 controller via the mirror port or a Fibre Channel port has timed out.')
sCellEventTrap_06_04 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601540)).setLabel("sCellEventTrap-06-04").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_06_04.setDescription('Severity: Warning -- not failed but attention recommended or required. Work was unexpectedly sent to this HSV210 controller by a physical disk drive or another HSV210 controller.')
sCellEventTrap_06_05 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601541)).setLabel("sCellEventTrap-06-05").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_06_05.setDescription('Severity: Warning -- not failed but attention recommended or required. Work has been sent to a physical disk drive or another HSV210 controller via the mirror port but it did not respond.')
sCellEventTrap_06_07 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601543)).setLabel("sCellEventTrap-06-07").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_06_07.setDescription('Severity: Warning -- not failed but attention recommended or required. A Target Discovery Service Descriptor exchange sent to a physical disk drive has timed out.')
sCellEventTrap_06_08 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601544)).setLabel("sCellEventTrap-06-08").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_06_08.setDescription("Severity: Normal -- informational in nature. An excessive number of link errors were detected on a HSV210 controller's Fibre Channel port. This informational event is triggered by the occurrence of an excessive number of Tachyon chip link status errors detected within a particular link status error type.")
sCellEventTrap_06_09 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601545)).setLabel("sCellEventTrap-06-09").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_06_09.setDescription('Severity: Critical -- failure or failure imminent. A physical disk drive has reported numerous failure prediction threshold exceeded errors.')
sCellEventTrap_06_0a = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601546)).setLabel("sCellEventTrap-06-0a").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_06_0a.setDescription('Severity: Normal -- informational in nature. A physical disk drive has reported numerous check condition errors.')
sCellEventTrap_06_0b = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601547)).setLabel("sCellEventTrap-06-0b").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_06_0b.setDescription('Severity: Warning -- not failed but attention recommended or required. A non-data exchange sent to a physical disk drive has timed out.')
sCellEventTrap_06_0c = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601548)).setLabel("sCellEventTrap-06-0c").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_06_0c.setDescription('Severity: Normal -- informational in nature. A loop switch has been detected on a Fibre Channel port.')
sCellEventTrap_06_0d = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601549)).setLabel("sCellEventTrap-06-0d").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_06_0d.setDescription('Severity: Normal -- informational in nature. The location of a physical disk drive previously reported as unknown is now known.')
sCellEventTrap_06_0e = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601550)).setLabel("sCellEventTrap-06-0e").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_06_0e.setDescription('Severity: Critical -- failure or failure imminent. A Drive Enclosure Environmental Monitoring Unit requested a code update but the code update could not be found, so the update was not performed.')
sCellEventTrap_06_0f = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601551)).setLabel("sCellEventTrap-06-0f").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_06_0f.setDescription('Severity: Critical -- failure or failure imminent. The Drive Enclosure Environmental Monitoring Unit is able to communicate with a physical disk drive but this HSV210 controller is unable to communicate with that physical disk drive on the Fibre Channel bus.')
sCellEventTrap_06_10 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601552)).setLabel("sCellEventTrap-06-10").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_06_10.setDescription('Severity: Undetermined -- more information needed to determine severity. An HSV210 controller is unable to communicate with this Drive Enclosure Environmental Monitoring Unit.')
sCellEventTrap_06_12 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601554)).setLabel("sCellEventTrap-06-12").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_06_12.setDescription('Severity: Normal -- informational in nature. The retry count for a task assigned to a Drive Enclosure Environmental Monitoring Unit has been exhausted.')
sCellEventTrap_06_13 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601555)).setLabel("sCellEventTrap-06-13").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_06_13.setDescription('Severity: Normal -- informational in nature. A Drive Enclosure Environmental Monitoring Unit is able to communicate with this HSV210 controller.')
sCellEventTrap_06_14 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601556)).setLabel("sCellEventTrap-06-14").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_06_14.setDescription('Severity: Critical -- failure or failure imminent. There are too many drive enclosures attached to a Fibre Channel port.')
sCellEventTrap_06_15 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601557)).setLabel("sCellEventTrap-06-15").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_06_15.setDescription('Severity: Critical -- failure or failure imminent. The cable connected to the I/O module is attached to the wrong Fibre Channel port.')
sCellEventTrap_06_16 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601558)).setLabel("sCellEventTrap-06-16").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_06_16.setDescription('Severity: Critical -- failure or failure imminent. An HSV210 controller does not have an address on the enclosure address bus.')
sCellEventTrap_06_18 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601560)).setLabel("sCellEventTrap-06-18").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_06_18.setDescription('Severity: Normal -- informational in nature. A Drive Enclosure Environmental Monitoring Unit has begun updating its code. Do not power down this drive enclosure until the code update has completed.')
sCellEventTrap_06_19 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601561)).setLabel("sCellEventTrap-06-19").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_06_19.setDescription('Severity: Normal -- informational in nature. A Drive Enclosure Environmental Monitoring Unit has completed updating its code. It is now safe to power down this drive enclosure.')
sCellEventTrap_06_1a = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601562)).setLabel("sCellEventTrap-06-1a").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_06_1a.setDescription('Severity: Critical -- failure or failure imminent. A physical disk drive has exceeded its soft error threshold.')
sCellEventTrap_06_1b = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601563)).setLabel("sCellEventTrap-06-1b").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_06_1b.setDescription('Severity: Normal -- informational in nature. An HSV210 controller now has an address on the enclosure address bus.')
sCellEventTrap_06_1c = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601564)).setLabel("sCellEventTrap-06-1c").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_06_1c.setDescription('Severity: Warning -- not failed but attention recommended or required. An outbound frame targeted to a physical disk drive has timed out.')
sCellEventTrap_06_1d = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601565)).setLabel("sCellEventTrap-06-1d").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_06_1d.setDescription('Severity: Warning -- not failed but attention recommended or required. A Fibre Channel exchange to a physical disk drive has completed but is missing data.')
sCellEventTrap_06_1e = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601566)).setLabel("sCellEventTrap-06-1e").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_06_1e.setDescription('Severity: Critical -- failure or failure imminent. An HSV210 controller has detected only one port of a Fibre Channel device.')
sCellEventTrap_06_1f = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601567)).setLabel("sCellEventTrap-06-1f").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_06_1f.setDescription('Severity: Normal -- informational in nature. A previously reported Fibre Channel device with only one port has been corrected and redundancy has been restored.')
sCellEventTrap_06_20 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601568)).setLabel("sCellEventTrap-06-20").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_06_20.setDescription('Severity: Critical -- failure or failure imminent. An unsupported Fibre Channel device has been detected. The device has been failed to prevent possible data corruption or system instability.')
sCellEventTrap_06_21 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601569)).setLabel("sCellEventTrap-06-21").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_06_21.setDescription('Severity: Normal -- informational in nature. A Fibre Channel device with incorrect block size has been detected.')
sCellEventTrap_06_23 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601571)).setLabel("sCellEventTrap-06-23").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_06_23.setDescription('Severity: Normal -- informational in nature. An HSV210 controller is about to retry a failed port.')
sCellEventTrap_06_24 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601572)).setLabel("sCellEventTrap-06-24").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_06_24.setDescription('Severity: Normal -- informational in nature. An HSV210 controller has successfully retried a failed port.')
sCellEventTrap_06_25 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601573)).setLabel("sCellEventTrap-06-25").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_06_25.setDescription('Severity: Critical -- failure or failure imminent. A Drive Enclosure Environmental Monitoring Unit has failed to assign a hard address to a physical disk drive on the loop.')
sCellEventTrap_06_26 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601574)).setLabel("sCellEventTrap-06-26").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_06_26.setDescription('Severity: Critical -- failure or failure imminent. A Drive Enclosure Environmental Monitoring Unit has failed to assign an address to a physical disk drive on the loop. This has occurred because another physical disk drive has already obtained this AL-PA.')
sCellEventTrap_06_27 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601575)).setLabel("sCellEventTrap-06-27").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_06_27.setDescription('Severity: Critical -- failure or failure imminent. A Drive Enclosure Environmental Monitoring Unit has failed to assign address(s) to a physical disk drive on the loop. Soft addressing was detected for this enclosure.')
sCellEventTrap_06_28 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601576)).setLabel("sCellEventTrap-06-28").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_06_28.setDescription('Severity: Normal -- informational in nature. The retry count for an OB task assigned to a Drive Enclosure Environmental Monitoring Unit has been exhausted.')
sCellEventTrap_06_29 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601577)).setLabel("sCellEventTrap-06-29").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_06_29.setDescription('Severity: Normal -- informational in nature. The HSV210 controller has sent a Basic Link Service command Abort Sequence Frame.')
sCellEventTrap_06_2a = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601578)).setLabel("sCellEventTrap-06-2a").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_06_2a.setDescription('Severity: Normal -- informational in nature. The HSV210 controller has sent an Extended Link Service command Reinstate Recovery Qualifier.')
sCellEventTrap_06_2b = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601579)).setLabel("sCellEventTrap-06-2b").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_06_2b.setDescription('Severity: Critical -- failure or failure imminent. A physical disk drive was bypassed rendering it unusable.')
sCellEventTrap_06_2c = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601580)).setLabel("sCellEventTrap-06-2c").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_06_2c.setDescription('Severity: Normal -- informational in nature. One or more media defects were detected on a physical disk drive.')
sCellEventTrap_06_2d = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601581)).setLabel("sCellEventTrap-06-2d").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_06_2d.setDescription('Severity: Normal -- informational in nature. An HSV210 controller issued a directed LIP to an arbitrated loop physical address.')
sCellEventTrap_06_2e = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601582)).setLabel("sCellEventTrap-06-2e").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_06_2e.setDescription('Severity: Normal -- informational in nature. An HSV210 controller has detected loop receiver failures.')
sCellEventTrap_06_30 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601584)).setLabel("sCellEventTrap-06-30").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_06_30.setDescription('Severity: Critical -- failure or failure imminent. An HSV210 controller has detected only one port of all Fibre Channel devices in an enclosure.')
sCellEventTrap_06_31 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601585)).setLabel("sCellEventTrap-06-31").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_06_31.setDescription('Severity: Normal -- informational in nature. A previously reported Fibre Channel device enclosure with only one port has been corrected and redundancy has been restored.')
sCellEventTrap_06_32 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601586)).setLabel("sCellEventTrap-06-32").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_06_32.setDescription('Severity: Critical -- failure or failure imminent. An HSV210 controller has detected only one port of all Fibre Channel devices on a loop.')
sCellEventTrap_06_33 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601587)).setLabel("sCellEventTrap-06-33").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_06_33.setDescription('Severity: Normal -- informational in nature. A previously reported Fibre Channel loop with only one port has been corrected and redundancy has been restored.')
sCellEventTrap_06_34 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601588)).setLabel("sCellEventTrap-06-34").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_06_34.setDescription('Severity: Normal -- informational in nature. An HSV210 controller has been told to enable a device port, and that device port was not disabled during boot diagnostics.')
sCellEventTrap_06_35 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601589)).setLabel("sCellEventTrap-06-35").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_06_35.setDescription('Severity: Critical -- failure or failure imminent. An unrecognized Fibre Channel physical disk drive firmware revision has been detected by the physical disk drive firmware load process.')
sCellEventTrap_06_36 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601590)).setLabel("sCellEventTrap-06-36").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_06_36.setDescription('Severity: Critical -- failure or failure imminent. An unsupported Fibre Channel physical disk drive firmware revision has been detected by the physical disk drive firmware load process.')
sCellEventTrap_06_37 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601591)).setLabel("sCellEventTrap-06-37").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_06_37.setDescription('Severity: Normal -- informational in nature. A Fibre Channel physical disk drive firmware revision has been detected by the physical disk drive firmware load process that is later than the latest known supported revision.')
sCellEventTrap_06_38 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601592)).setLabel("sCellEventTrap-06-38").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_06_38.setDescription('Severity: Normal -- informational in nature. A Fibre Channel physical disk drive firmware revision has been detected by the physical disk drive firmware load process that has a newer supported revision available.')
sCellEventTrap_06_39 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601593)).setLabel("sCellEventTrap-06-39").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_06_39.setDescription('Severity: Normal -- informational in nature. The HSV210 controller bypassed a device bay in an attempt to restore operability.')
sCellEventTrap_06_3a = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601594)).setLabel("sCellEventTrap-06-3a").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_06_3a.setDescription('Severity: Normal -- informational in nature. The HSV210 controller is attempting to recovery devices on the indicated port.')
sCellEventTrap_06_3b = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601595)).setLabel("sCellEventTrap-06-3b").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_06_3b.setDescription('Severity: Normal -- informational in nature. The HSV210 controller has finished error recovery attempts on the indicated port.')
sCellEventTrap_06_3c = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601596)).setLabel("sCellEventTrap-06-3c").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_06_3c.setDescription('Severity: Normal -- informational in nature. The HSV210 controller been requested to unbypass device bays on the indicated port.')
sCellEventTrap_06_3d = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601597)).setLabel("sCellEventTrap-06-3d").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_06_3d.setDescription('Severity: Undetermined -- more information needed to determine severity. The HSV210 controller has detected a enclosure on the enclosure address bus that does not have a Fibre Channel connection.')
sCellEventTrap_06_3e = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601598)).setLabel("sCellEventTrap-06-3e").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_06_3e.setDescription('Severity: Critical -- failure or failure imminent. The HSV210 controller has detected an enclosure on the Fibre Channel but is unable to communicate with the Drive Enclosure Environmental Monitoring Unit on the enclosure address bus or the Drive Enclosure Environmental Monitoring Unit is reporting an invalid enclosure number.')
sCellEventTrap_06_3f = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601599)).setLabel("sCellEventTrap-06-3f").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_06_3f.setDescription('Severity: Warning -- not failed but attention recommended or required. A physical disk drive is using an improper protocol to attempt communication with an Drive Enclosure Environmental Monitoring Unit. The physical disk drive identified in the device field has stopped communicating with the HSV210 controller.')
sCellEventTrap_06_40 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601600)).setLabel("sCellEventTrap-06-40").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_06_40.setDescription('Severity: Critical -- failure or failure imminent. A Fibre Channel physical disk drive that has new capabilities has been detected. The physical disk drive has properties that may or may not be compatible with this release of Enterprise Virtual Array firmware -- the drive will be prevented from being used until the Approved Drive Firmware table has been updated to allow it.')
sCellEventTrap_06_41 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601601)).setLabel("sCellEventTrap-06-41").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_06_41.setDescription("Severity: Normal -- informational in nature. The device loop configuration has changed on a HSV210 controller's Fibre Channel port. This informational event contains a page of the newly genereated fibre channel loop map. Devices are listed in loop order using their ALPAs.")
sCellEventTrap_06_42 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601602)).setLabel("sCellEventTrap-06-42").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_06_42.setDescription('Severity: Normal -- informational in nature. A user command has been sent to a physical disk drive.')
sCellEventTrap_06_43 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601603)).setLabel("sCellEventTrap-06-43").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_06_43.setDescription("Severity: Normal -- informational in nature. An OLS-NOS-RCVD-BIT was set during loop switch detection on a HSV210 controller's Fibre Channel port. This informational event is triggered in fcs-loop-switch-chk.")
sCellEventTrap_07_00 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601792)).setLabel("sCellEventTrap-07-00").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_07_00.setDescription('Severity: Warning -- not failed but attention recommended or required. Allocation of a Virtual Disk has stalled due to insufficient space in the Disk Group caused by the failure or pulling of a physical disk drive.')
sCellEventTrap_07_01 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601793)).setLabel("sCellEventTrap-07-01").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_07_01.setDescription('Severity: Warning -- not failed but attention recommended or required. Expansion of a Virtual Disk has stalled due to insufficient space in the Disk Group caused by the failure or pulling of a physical disk drive.')
sCellEventTrap_07_02 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601794)).setLabel("sCellEventTrap-07-02").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_07_02.setDescription('Severity: Normal -- informational in nature. Leveling of capacity in a Disk Group has started.')
sCellEventTrap_07_03 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601795)).setLabel("sCellEventTrap-07-03").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_07_03.setDescription('Severity: Normal -- informational in nature. Leveling of capacity in a Disk Group has finished.')
sCellEventTrap_07_04 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601796)).setLabel("sCellEventTrap-07-04").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_07_04.setDescription('Severity: Normal -- informational in nature. A member management operation has started due to the appearance or disappearance of a physical disk drive.')
sCellEventTrap_07_05 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601797)).setLabel("sCellEventTrap-07-05").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_07_05.setDescription('Severity: Normal -- informational in nature. A member management operation has finished.')
sCellEventTrap_07_06 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601798)).setLabel("sCellEventTrap-07-06").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_07_06.setDescription('Severity: Normal -- informational in nature. A Disk Group has started changing its internal structure due to the appearance or disappearance of a Volume.')
sCellEventTrap_07_07 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601799)).setLabel("sCellEventTrap-07-07").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_07_07.setDescription('Severity: Normal -- informational in nature. A Disk Group has finished changing its internal structure due to the appearance or disappearance of a Volume.')
sCellEventTrap_07_08 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601800)).setLabel("sCellEventTrap-07-08").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_07_08.setDescription('Severity: Normal -- informational in nature. Deallocation of a Virtual Disk has failed after three attempts due to unknown circumstances. This will more than likely be caused by failing physical drives. The deletion will be restarted when a resync/reboot occurs.')
sCellEventTrap_07_09 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601801)).setLabel("sCellEventTrap-07-09").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_07_09.setDescription('Severity: Warning -- not failed but attention recommended or required. A member management operation has stalled due to insufficient space in the Disk Group.')
sCellEventTrap_07_0a = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601802)).setLabel("sCellEventTrap-07-0a").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_07_0a.setDescription('Severity: Normal -- informational in nature. A stalled member management operation is being restarted.')
sCellEventTrap_07_0b = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601803)).setLabel("sCellEventTrap-07-0b").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_07_0b.setDescription('Severity: Normal -- informational in nature. Unexpected metadata utility event. If available, the tag1 field contains the identity of the Volume, and tag2 field contains the identity of the Logical Disk.')
sCellEventTrap_09_01 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602305)).setLabel("sCellEventTrap-09-01").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_01.setDescription('Severity: Normal -- informational in nature. A physical disk drive has transitioned to the NORMAL state.')
sCellEventTrap_09_02 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602306)).setLabel("sCellEventTrap-09-02").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_02.setDescription('Severity: Normal -- informational in nature. The state of a Volume has changed.')
sCellEventTrap_09_03 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602307)).setLabel("sCellEventTrap-09-03").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_03.setDescription('Severity: Normal -- informational in nature. The state of a Logical Disk has changed.')
sCellEventTrap_09_04 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602308)).setLabel("sCellEventTrap-09-04").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_04.setDescription('Severity: Normal -- informational in nature. An HSV210 controller has transitioned to the NORMAL state.')
sCellEventTrap_09_05 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602309)).setLabel("sCellEventTrap-09-05").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_05.setDescription('Severity: Normal -- informational in nature. The state of a battery assembly has changed.')
sCellEventTrap_09_06 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602310)).setLabel("sCellEventTrap-09-06").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_06.setDescription('Severity: Undetermined -- more information needed to determine severity. A Volume has transitioned to the MISSING state.')
sCellEventTrap_09_07 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602311)).setLabel("sCellEventTrap-09-07").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_07.setDescription('Severity: Normal -- informational in nature. A Fibre Channel port has transitioned to the NORMAL state.')
sCellEventTrap_09_08 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602312)).setLabel("sCellEventTrap-09-08").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_08.setDescription("Severity: Warning -- not failed but attention recommended or required. A Disk Group's occupancy alarm level threshold has been reached.")
sCellEventTrap_09_09 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602313)).setLabel("sCellEventTrap-09-09").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_09.setDescription('Severity: Normal -- informational in nature. The resource availability state of a Volume has transitioned to the SUFFICIENT state.')
sCellEventTrap_09_0a = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602314)).setLabel("sCellEventTrap-09-0a").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_0a.setDescription('Severity: Normal -- informational in nature. The data availability state of an internal Logical Disk has transitioned to the NORMAL state.')
sCellEventTrap_09_0c = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602316)).setLabel("sCellEventTrap-09-0c").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_0c.setDescription('Severity: Normal -- informational in nature. A snapclone Logical Disk has completed the unsharing operation.')
sCellEventTrap_09_0d = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602317)).setLabel("sCellEventTrap-09-0d").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_0d.setDescription('Severity: Normal -- informational in nature. The state of the quorum disk flag of a Volume has changed.')
sCellEventTrap_09_0e = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602318)).setLabel("sCellEventTrap-09-0e").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_0e.setDescription('Severity: Critical -- failure or failure imminent. The temperature trip point for a temperature sensor located within an HSV210 controller has been reached.')
sCellEventTrap_09_0f = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602319)).setLabel("sCellEventTrap-09-0f").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_0f.setDescription('Severity: Warning -- not failed but attention recommended or required. The temperature within an HSV210 controller is approaching its trip point.')
sCellEventTrap_09_11 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602321)).setLabel("sCellEventTrap-09-11").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_11.setDescription("Severity: Normal -- informational in nature. An HSV210 controller's blower '1' is now present.")
sCellEventTrap_09_12 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602322)).setLabel("sCellEventTrap-09-12").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_12.setDescription("Severity: Critical -- failure or failure imminent. An HSV210 controller's blower '1' is running slower than the lowest acceptable speed.")
sCellEventTrap_09_13 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602323)).setLabel("sCellEventTrap-09-13").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_13.setDescription('Severity: Critical -- failure or failure imminent. A voltage sensor has reported a voltage that is out of range.')
sCellEventTrap_09_14 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602324)).setLabel("sCellEventTrap-09-14").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_14.setDescription('Severity: Undetermined -- more information needed to determine severity. A Volume has transitioned to the FAILED state.')
sCellEventTrap_09_15 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602325)).setLabel("sCellEventTrap-09-15").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_15.setDescription('Severity: Undetermined -- more information needed to determine severity. An HSV210 controller has failed.')
sCellEventTrap_09_16 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602326)).setLabel("sCellEventTrap-09-16").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_16.setDescription('Severity: Normal -- informational in nature. The temperature within an HSV210 controller has returned to its normal operating range.')
sCellEventTrap_09_17 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602327)).setLabel("sCellEventTrap-09-17").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_17.setDescription("Severity: Critical -- failure or failure imminent. An HSV210 controller's battery assembly '1' has been removed.")
sCellEventTrap_09_18 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602328)).setLabel("sCellEventTrap-09-18").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_18.setDescription("Severity: Normal -- informational in nature. An HSV210 controller's battery assembly '1' is now in use.")
sCellEventTrap_09_19 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602329)).setLabel("sCellEventTrap-09-19").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_19.setDescription('Severity: Normal -- informational in nature. A voltage sensor has returned to a normal range.')
sCellEventTrap_09_1a = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602330)).setLabel("sCellEventTrap-09-1a").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_1a.setDescription('Severity: Critical -- failure or failure imminent. The battery assembly voltage regulator located within an HSV210 controller is offline.')
sCellEventTrap_09_1b = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602331)).setLabel("sCellEventTrap-09-1b").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_1b.setDescription('Severity: Normal -- informational in nature. A Disk Group has transitioned to the NORMAL state.')
sCellEventTrap_09_1c = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602332)).setLabel("sCellEventTrap-09-1c").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_1c.setDescription('Severity: Normal -- informational in nature. The occupancy alarm level for a Disk Group has returned to the normal range.')
sCellEventTrap_09_1d = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602333)).setLabel("sCellEventTrap-09-1d").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_1d.setDescription("Severity: Critical -- failure or failure imminent. An HSV210 controller's battery assembly '1' has malfunctioned.")
sCellEventTrap_09_1e = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602334)).setLabel("sCellEventTrap-09-1e").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_1e.setDescription("Severity: Normal -- informational in nature. An HSV210 controller's battery assembly '1' is now present.")
sCellEventTrap_09_1f = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602335)).setLabel("sCellEventTrap-09-1f").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_1f.setDescription("Severity: Critical -- failure or failure imminent. An HSV210 controller's battery assembly '2' has been removed.")
sCellEventTrap_09_20 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602336)).setLabel("sCellEventTrap-09-20").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_20.setDescription("Severity: Normal -- informational in nature. An HSV210 controller's battery assembly '2' is now present.")
sCellEventTrap_09_21 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602337)).setLabel("sCellEventTrap-09-21").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_21.setDescription("Severity: Normal -- informational in nature. An HSV210 controller's battery assembly '2' is now functioning properly.")
sCellEventTrap_09_22 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602338)).setLabel("sCellEventTrap-09-22").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_22.setDescription("Severity: Critical -- failure or failure imminent. An HSV210 controller's battery assembly has malfunctioned.")
sCellEventTrap_09_23 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602339)).setLabel("sCellEventTrap-09-23").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_23.setDescription("Severity: Critical -- failure or failure imminent. An HSV210 controller's blower '2' has been removed.")
sCellEventTrap_09_24 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602340)).setLabel("sCellEventTrap-09-24").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_24.setDescription("Severity: Normal -- informational in nature. An HSV210 controller's blower assembly '2' is now present.")
sCellEventTrap_09_25 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602341)).setLabel("sCellEventTrap-09-25").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_25.setDescription("Severity: Critical -- failure or failure imminent. An HSV210 controller's blower assembly '2' is running slower than the lowest acceptable speed.")
sCellEventTrap_09_26 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602342)).setLabel("sCellEventTrap-09-26").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_26.setDescription("Severity: Critical -- failure or failure imminent. An HSV210 controller's '1' blower/power supply assembly has been removed or AC power has been removed from the power supply.")
sCellEventTrap_09_27 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602343)).setLabel("sCellEventTrap-09-27").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_27.setDescription("Severity: Normal -- informational in nature. An HSV210 controller's '1' blower/power supply assembly has been reinstalled or AC power has been restored to the power supply.")
sCellEventTrap_09_28 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602344)).setLabel("sCellEventTrap-09-28").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_28.setDescription("Severity: Critical -- failure or failure imminent. An HSV210 controller's '2' blower/power supply assembly has been removed or AC power has been removed from the power supply.")
sCellEventTrap_09_29 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602345)).setLabel("sCellEventTrap-09-29").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_29.setDescription("Severity: Normal -- informational in nature. An HSV210 controller's '2' blower/power supply assembly has been reinstalled or AC power has been restored to the power supply.")
sCellEventTrap_09_2a = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602346)).setLabel("sCellEventTrap-09-2a").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_2a.setDescription("Severity: Critical -- failure or failure imminent. An HSV210 controller's '1' blower/power supply is running slower than the lowest acceptable speed.")
sCellEventTrap_09_2b = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602347)).setLabel("sCellEventTrap-09-2b").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_2b.setDescription("Severity: Critical -- failure or failure imminent. An HSV210 controller's '2' blower/power supply is running slower than the lowest acceptable speed.")
sCellEventTrap_09_2c = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602348)).setLabel("sCellEventTrap-09-2c").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_2c.setDescription("Severity: Warning -- not failed but attention recommended or required. An HSV210 controller's battery assembly has transitioned to the 'Battery System Hold-up Time is zero hours' state.")
sCellEventTrap_09_2d = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602349)).setLabel("sCellEventTrap-09-2d").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_2d.setDescription('Severity: Undetermined -- more information needed to determine severity. The resource availability state of a Volume has transitioned to the INSUFFICIENT state.')
sCellEventTrap_09_2e = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602350)).setLabel("sCellEventTrap-09-2e").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_2e.setDescription('Severity: Normal -- informational in nature. An HSV210 controller has rejected a login attempt.')
sCellEventTrap_09_2f = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602351)).setLabel("sCellEventTrap-09-2f").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_2f.setDescription('Severity: Normal -- informational in nature. An HSV210 controller has processed a Storage System Management Interface command with the result of non-success return code.')
sCellEventTrap_09_30 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602352)).setLabel("sCellEventTrap-09-30").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_30.setDescription('Severity: Normal -- informational in nature. An HSV210 controller has updated the physical disk drive map for a loop pair.')
sCellEventTrap_09_31 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602353)).setLabel("sCellEventTrap-09-31").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_31.setDescription('Severity: Critical -- failure or failure imminent. A physical disk drive has transitioned to the DEGRADED state.')
sCellEventTrap_09_32 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602354)).setLabel("sCellEventTrap-09-32").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_32.setDescription('Severity: Critical -- failure or failure imminent. A physical disk drive has transitioned to the FAILED state.')
sCellEventTrap_09_33 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602355)).setLabel("sCellEventTrap-09-33").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_33.setDescription('Severity: Normal -- informational in nature. A Derived Unit was created.')
sCellEventTrap_09_34 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602356)).setLabel("sCellEventTrap-09-34").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_34.setDescription('Severity: Normal -- informational in nature. A Logical Disk was created.')
sCellEventTrap_09_35 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602357)).setLabel("sCellEventTrap-09-35").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_35.setDescription('Severity: Normal -- informational in nature. A Disk Group was created.')
sCellEventTrap_09_36 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602358)).setLabel("sCellEventTrap-09-36").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_36.setDescription('Severity: Normal -- informational in nature. A physical disk drive was discovered.')
sCellEventTrap_09_37 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602359)).setLabel("sCellEventTrap-09-37").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_37.setDescription('Severity: Normal -- informational in nature. A Presented Unit was created.')
sCellEventTrap_09_38 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602360)).setLabel("sCellEventTrap-09-38").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_38.setDescription('Severity: Normal -- informational in nature. A Storage System Host Path was created.')
sCellEventTrap_09_39 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602361)).setLabel("sCellEventTrap-09-39").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_39.setDescription('Severity: Normal -- informational in nature. A Storage System Virtual Disk was created.')
sCellEventTrap_09_3a = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602362)).setLabel("sCellEventTrap-09-3a").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_3a.setDescription('Severity: Normal -- informational in nature. A Volume was created.')
sCellEventTrap_09_3b = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602363)).setLabel("sCellEventTrap-09-3b").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_3b.setDescription('Severity: Normal -- informational in nature. A Derived Unit was deleted.')
sCellEventTrap_09_3c = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602364)).setLabel("sCellEventTrap-09-3c").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_3c.setDescription('Severity: Normal -- informational in nature. A Logical Disk was deleted.')
sCellEventTrap_09_3d = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602365)).setLabel("sCellEventTrap-09-3d").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_3d.setDescription('Severity: Normal -- informational in nature. A Disk Group was deleted.')
sCellEventTrap_09_3e = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602366)).setLabel("sCellEventTrap-09-3e").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_3e.setDescription('Severity: Critical -- failure or failure imminent. A physical disk drive has disappeared.')
sCellEventTrap_09_3f = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602367)).setLabel("sCellEventTrap-09-3f").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_3f.setDescription('Severity: Normal -- informational in nature. A Presented Unit was deleted.')
sCellEventTrap_09_40 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602368)).setLabel("sCellEventTrap-09-40").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_40.setDescription('Severity: Normal -- informational in nature. A Storage System Host Path was deleted.')
sCellEventTrap_09_41 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602369)).setLabel("sCellEventTrap-09-41").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_41.setDescription('Severity: Normal -- informational in nature. A Storage System Virtual Disk was deleted.')
sCellEventTrap_09_43 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602371)).setLabel("sCellEventTrap-09-43").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_43.setDescription('Severity: Normal -- informational in nature. An HSV210 controller has joined the Storage System.')
sCellEventTrap_09_44 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602372)).setLabel("sCellEventTrap-09-44").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_44.setDescription('Severity: Undetermined -- more information needed to determine severity. An HSV210 controller has left the Storage System.')
sCellEventTrap_09_45 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602373)).setLabel("sCellEventTrap-09-45").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_45.setDescription('Severity: Normal -- informational in nature. The Storage System has been deleted by an HSV210 controller.')
sCellEventTrap_09_46 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602374)).setLabel("sCellEventTrap-09-46").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_46.setDescription('Severity: Normal -- informational in nature. A Data Replication Group was created.')
sCellEventTrap_09_47 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602375)).setLabel("sCellEventTrap-09-47").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_47.setDescription('Severity: Normal -- informational in nature. A Data Replication Group was deleted.')
sCellEventTrap_09_48 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602376)).setLabel("sCellEventTrap-09-48").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_48.setDescription('Severity: Normal -- informational in nature. An internal Logical Disk associated with a snapshot Virtual Disk was created.')
sCellEventTrap_09_49 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602377)).setLabel("sCellEventTrap-09-49").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_49.setDescription('Severity: Normal -- informational in nature. An internal Logical Disk associated with a copy of a Virtual Disk was created.')
sCellEventTrap_09_4a = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602378)).setLabel("sCellEventTrap-09-4a").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_4a.setDescription('Severity: Normal -- informational in nature. Destination Data Replication Group not deleted due to inoperative members.')
sCellEventTrap_09_65 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602405)).setLabel("sCellEventTrap-09-65").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_65.setDescription('Severity: Normal -- informational in nature. A host operating system mode has changed.')
sCellEventTrap_09_66 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602406)).setLabel("sCellEventTrap-09-66").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_66.setDescription('Severity: Normal -- informational in nature. Time was set on a Storage System.')
sCellEventTrap_09_67 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602407)).setLabel("sCellEventTrap-09-67").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_67.setDescription('Severity: Normal -- informational in nature. The LUN of a Presented Unit has changed.')
sCellEventTrap_09_68 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602408)).setLabel("sCellEventTrap-09-68").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_68.setDescription('Severity: Normal -- informational in nature. The device addition policy of a Storage System has changed.')
sCellEventTrap_09_69 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602409)).setLabel("sCellEventTrap-09-69").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_69.setDescription('Severity: Normal -- informational in nature. The quiescent state of a Storage System Virtual Disk has changed.')
sCellEventTrap_09_6a = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602410)).setLabel("sCellEventTrap-09-6a").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_6a.setDescription('Severity: Normal -- informational in nature. The enabled/disabled state of a Storage System Virtual Disk has changed.')
sCellEventTrap_09_6b = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602411)).setLabel("sCellEventTrap-09-6b").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_6b.setDescription('Severity: Normal -- informational in nature. The cache policy of a Storage System Virtual Disk has changed.')
sCellEventTrap_09_6c = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602412)).setLabel("sCellEventTrap-09-6c").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_6c.setDescription('Severity: Normal -- informational in nature. The usage state of a Volume changed.')
sCellEventTrap_09_6d = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602413)).setLabel("sCellEventTrap-09-6d").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_6d.setDescription('Severity: Normal -- informational in nature. The disk failure protection level of a Disk Group has changed.')
sCellEventTrap_09_6e = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602414)).setLabel("sCellEventTrap-09-6e").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_6e.setDescription('Severity: Normal -- informational in nature. The write protected state of a Derived Unit has changed.')
sCellEventTrap_09_70 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602416)).setLabel("sCellEventTrap-09-70").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_70.setDescription('Severity: Warning -- not failed but attention recommended or required. A physical disk drive has experienced numerous communication failures on a particular Fibre Channel port.')
sCellEventTrap_09_71 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602417)).setLabel("sCellEventTrap-09-71").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_71.setDescription('Severity: Normal -- informational in nature. An HSV210 controller has received a request to shutdown.')
sCellEventTrap_09_72 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602418)).setLabel("sCellEventTrap-09-72").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_72.setDescription('Severity: Normal -- informational in nature. An HSV210 controller has completed its shutdown preparations.')
sCellEventTrap_09_73 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602419)).setLabel("sCellEventTrap-09-73").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_73.setDescription('Severity: Normal -- informational in nature. The failsafe state of a Data Replication Group has changed.')
sCellEventTrap_09_74 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602420)).setLabel("sCellEventTrap-09-74").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_74.setDescription('Severity: Normal -- informational in nature. The mode of a Data Replication Group has changed.')
sCellEventTrap_09_75 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602421)).setLabel("sCellEventTrap-09-75").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_75.setDescription('Severity: Normal -- informational in nature. The synchronous/asynchronous operational state of a Data Replication Group has changed.')
sCellEventTrap_09_76 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602422)).setLabel("sCellEventTrap-09-76").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_76.setDescription('Severity: Normal -- informational in nature. The read only attribute of a Data Replication Group has changed.')
sCellEventTrap_09_77 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602423)).setLabel("sCellEventTrap-09-77").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_77.setDescription('Severity: Normal -- informational in nature. A Data Replication Group failover has occurred.')
sCellEventTrap_09_78 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602424)).setLabel("sCellEventTrap-09-78").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_78.setDescription('Severity: Normal -- informational in nature. A Data Replication Group has been suspended or resumed.')
sCellEventTrap_09_79 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602425)).setLabel("sCellEventTrap-09-79").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_79.setDescription('Severity: Normal -- informational in nature. A Storage System Virtual Disk was added to a Data Replication Group.')
sCellEventTrap_09_7a = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602426)).setLabel("sCellEventTrap-09-7a").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_7a.setDescription('Severity: Normal -- informational in nature. A Storage System Virtual Disk was removed from a Data Replication Group.')
sCellEventTrap_09_7b = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602427)).setLabel("sCellEventTrap-09-7b").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_7b.setDescription('Severity: Normal -- informational in nature. The auto suspend attribute of a Data Replication Group has changed.')
sCellEventTrap_09_7c = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602428)).setLabel("sCellEventTrap-09-7c").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_7c.setDescription('Severity: Normal -- informational in nature. The destination presentation attribute of a Data Replication Group has changed.')
sCellEventTrap_09_c8 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602504)).setLabel("sCellEventTrap-09-c8").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_c8.setDescription('Severity: Undetermined -- more information needed to determine severity. An internal Logical Disk has transitioned to the DATA LOST state.')
sCellEventTrap_09_c9 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602505)).setLabel("sCellEventTrap-09-c9").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_c9.setDescription('Severity: Undetermined -- more information needed to determine severity. A Disk Group has transitioned to an INOPERATIVE state.')
sCellEventTrap_09_ca = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602506)).setLabel("sCellEventTrap-09-ca").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_ca.setDescription('Severity: Undetermined -- more information needed to determine severity. An internal Logical Disk has transitioned to the FAILED state.')
sCellEventTrap_09_cb = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602507)).setLabel("sCellEventTrap-09-cb").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_cb.setDescription('Severity: Critical -- failure or failure imminent. An internal Logical Disk has transitioned to the SNAPSHOT OVERCOMMIT state.')
sCellEventTrap_09_cc = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602508)).setLabel("sCellEventTrap-09-cc").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_cc.setDescription('Severity: Undetermined -- more information needed to determine severity. An internal Logical Disk has transitioned to the DEVICE DATA LOST state.')
sCellEventTrap_09_cd = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602509)).setLabel("sCellEventTrap-09-cd").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_cd.setDescription('Severity: Undetermined -- more information needed to determine severity. A Fibre Channel port has transitioned to the FAILED state.')
sCellEventTrap_09_ce = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602510)).setLabel("sCellEventTrap-09-ce").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_ce.setDescription('Severity: Normal -- informational in nature. A Disk Group has transitioned to an INOPERATIVE MARKED state.')
sCellEventTrap_09_cf = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602511)).setLabel("sCellEventTrap-09-cf").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_cf.setDescription('Severity: Warning -- not failed but attention recommended or required. A physical disk drive has transitioned to the NOT PRESENT state.')
sCellEventTrap_09_d0 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602512)).setLabel("sCellEventTrap-09-d0").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_d0.setDescription('Severity: Normal -- informational in nature. An HSV210 controller no longer needs attention.')
sCellEventTrap_09_d1 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602513)).setLabel("sCellEventTrap-09-d1").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_d1.setDescription('Severity: Undetermined -- more information needed to determine severity. An HSV210 controller needs attention.')
sCellEventTrap_09_d2 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602514)).setLabel("sCellEventTrap-09-d2").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_d2.setDescription("Severity: Critical -- failure or failure imminent. An HSV210 controller's blower '1' has been removed.")
sCellEventTrap_09_d3 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602515)).setLabel("sCellEventTrap-09-d3").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_d3.setDescription('Severity: Undetermined -- more information needed to determine severity. At least one Virtual Disk associated with a Data Replication Group has transitioned to the INOPERATIVE state. The remaining Virtual Disks associated with this Data Replication Group have been forced INOPERATIVE.')
sCellEventTrap_09_d4 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602516)).setLabel("sCellEventTrap-09-d4").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_d4.setDescription('Severity: Normal -- informational in nature. All the Virtual Disks associated with a Data Replication Group have transitioned to the OPERATIVE state.')
sCellEventTrap_09_d5 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602517)).setLabel("sCellEventTrap-09-d5").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_d5.setDescription('Severity: Normal -- informational in nature. The state of a physical disk drive has transitioned to the Single Port on Fibre state.')
sCellEventTrap_09_d6 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602518)).setLabel("sCellEventTrap-09-d6").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_d6.setDescription('Severity: Warning -- not failed but attention recommended or required. An HSV210 controller has been powered off because the temperature sensors do not agree and the system temperature can not be accurately determined.')
sCellEventTrap_09_d7 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602519)).setLabel("sCellEventTrap-09-d7").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_d7.setDescription('Severity: Warning -- not failed but attention recommended or required. An HSV210 controller has been powered off because the temperature sensors can not be accessed and the system temperature can not be accurately determined.')
sCellEventTrap_09_d8 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602520)).setLabel("sCellEventTrap-09-d8").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_d8.setDescription('Severity: Normal -- informational in nature. A Disk Group has lost its Single Point of Failure Robust Configuration.')
sCellEventTrap_09_d9 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602521)).setLabel("sCellEventTrap-09-d9").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_d9.setDescription('Severity: Normal -- informational in nature. A Disk Group has attained a Single Point of Failure Robust Configuration.')
sCellEventTrap_09_da = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602522)).setLabel("sCellEventTrap-09-da").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_da.setDescription("Severity: Normal -- informational in nature. An HSV210 controller's blower '1' is running at normal speed.")
sCellEventTrap_09_db = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602523)).setLabel("sCellEventTrap-09-db").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_09_db.setDescription("Severity: Normal -- informational in nature. An HSV210 controller's blower '2' is running at normal speed.")
sCellEventTrap_0b_00 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602816)).setLabel("sCellEventTrap-0b-00").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_0b_00.setDescription('Severity: Normal -- informational in nature. An HSV210 controller has begun a resynchronization operation. This is a restart of the HSV210 controller in a manner that has little or no impact on host system connectivity.')
sCellEventTrap_0b_01 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602817)).setLabel("sCellEventTrap-0b-01").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_0b_01.setDescription('Severity: Warning -- not failed but attention recommended or required. A migrate method drive codeload has stalled due to insufficient space in the Disk Group.')
sCellEventTrap_0b_02 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602818)).setLabel("sCellEventTrap-0b-02").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_0b_02.setDescription('Severity: Normal -- informational in nature. A Fibre Channel physical disk drive firmware version has been loaded into memory in preparation for codeload.')
sCellEventTrap_0b_03 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602819)).setLabel("sCellEventTrap-0b-03").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_0b_03.setDescription('Severity: Normal -- informational in nature. A Fibre Channel physical disk drive firmware version has been removed from memory.')
sCellEventTrap_0b_04 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602820)).setLabel("sCellEventTrap-0b-04").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_0b_04.setDescription('Severity: Normal -- informational in nature. A Fibre Channel physical disk drive firmware codeload begun.')
sCellEventTrap_0b_05 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602821)).setLabel("sCellEventTrap-0b-05").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_0b_05.setDescription('Severity: Normal -- informational in nature. A Fibre Channel physical disk drive firmware codeload has finished.')
sCellEventTrap_0c_03 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603075)).setLabel("sCellEventTrap-0c-03").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_0c_03.setDescription('Severity: Normal -- informational in nature. The specified Data Replication Group has transitioned to the Merging state, because the alternate Storage System or Destination Virtual Disk is now accessible or resumed.')
sCellEventTrap_0c_04 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603076)).setLabel("sCellEventTrap-0c-04").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_0c_04.setDescription('Severity: Critical -- failure or failure imminent. A Data Replication Group has entered the Failsafe Locked state because the Data Replication Destination Site is inaccessible.')
sCellEventTrap_0c_05 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603077)).setLabel("sCellEventTrap-0c-05").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_0c_05.setDescription('Severity: Critical -- failure or failure imminent. A Data Replication Group has entered the Failsafe Locked state due to an inoperative source.')
sCellEventTrap_0c_06 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603078)).setLabel("sCellEventTrap-0c-06").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_0c_06.setDescription('Severity: Critical -- failure or failure imminent. A Full Copy was terminated prior to completion: An unrecoverable read error occurred on the specified Source Virtual Disk during the Full Copy.')
sCellEventTrap_0c_07 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603079)).setLabel("sCellEventTrap-0c-07").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_0c_07.setDescription('Severity: Critical -- failure or failure imminent. A Full Copy terminated prior to completion: A remote copy error occurred due to an inaccessible alternate Storage System; The Full Copy will continue when the Data Replication Destination is restored.')
sCellEventTrap_0c_08 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603080)).setLabel("sCellEventTrap-0c-08").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_0c_08.setDescription('Severity: Critical -- failure or failure imminent. A Full Copy terminated prior to completion: A remote copy error occurred due to an inaccessible Destination Virtual Disk; The Full Copy will continue when the Data Replication Destination is restored.')
sCellEventTrap_0c_09 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603081)).setLabel("sCellEventTrap-0c-09").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_0c_09.setDescription('Severity: Warning -- not failed but attention recommended or required. A Data Replication Log has been reset due to insufficient Disk Group capacity; The Data Replication Destination has been marked for a Full Copy.')
sCellEventTrap_0c_0a = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603082)).setLabel("sCellEventTrap-0c-0a").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_0c_0a.setDescription('Severity: Normal -- informational in nature. A Data Replication Log has been reset due to a Data Replication Group failover.')
sCellEventTrap_0c_0c = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603084)).setLabel("sCellEventTrap-0c-0c").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_0c_0c.setDescription('Severity: Normal -- informational in nature. A Destination Data Replication Group has successfully completed a Merge.')
sCellEventTrap_0c_0f = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603087)).setLabel("sCellEventTrap-0c-0f").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_0c_0f.setDescription('Severity: Normal -- informational in nature. A Data Replication Group is no longer in a Failsafe Locked state.')
sCellEventTrap_0c_10 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603088)).setLabel("sCellEventTrap-0c-10").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_0c_10.setDescription('Severity: Normal -- informational in nature. A Destination Data Replication Group has been marked for a Full Copy.')
sCellEventTrap_0c_11 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603089)).setLabel("sCellEventTrap-0c-11").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_0c_11.setDescription('Severity: Normal -- informational in nature. A Storage System has discovered that a Data Replication Group failover has taken place: This Virtual Disk is transitioning from a Data Replication Source role to a Data Replication Destination role (The following fields are not valid: status, blocks, vda).')
sCellEventTrap_0c_12 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603090)).setLabel("sCellEventTrap-0c-12").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_0c_12.setDescription('Severity: Normal -- informational in nature. This Data Replication Group is transitioning from a Data Replication Destination role to a Data Replication Source role.')
sCellEventTrap_0c_15 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603093)).setLabel("sCellEventTrap-0c-15").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_0c_15.setDescription('Severity: Critical -- failure or failure imminent. The Data Replication Path between this Site and the Alternate Site has closed, possibly due to a connection failure between the specified host port and the Alternate Site.')
sCellEventTrap_0c_16 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603094)).setLabel("sCellEventTrap-0c-16").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_0c_16.setDescription('Severity: Normal -- informational in nature. An HSV210 controller has sent a time report message to this HSV210 controller.')
sCellEventTrap_0c_17 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603095)).setLabel("sCellEventTrap-0c-17").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_0c_17.setDescription('Severity: Critical -- failure or failure imminent. The Data Replication Manager communications protocol version between the Data Replication Source <REFERNECE>(DRM-SITE) and a Data Replication Destination <REFERNECE>(DRM-SITE) is mismatched.')
sCellEventTrap_0c_18 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603096)).setLabel("sCellEventTrap-0c-18").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_0c_18.setDescription('Severity: Critical -- failure or failure imminent. Conditions on the Data Replication Destination Site are preventing acceptable replication throughput: Initiating temporary logging on the affected Data Replication Group that is failsafe mode disabled.')
sCellEventTrap_0c_19 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603097)).setLabel("sCellEventTrap-0c-19").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_0c_19.setDescription('Severity: Critical -- failure or failure imminent. Overlapping concurrent host writes to Active/Active Sites violate a Data Replication Manager architectural requirement, resulting in a reparative resynchronization operation for the master Site and a Full Copy operation.')
sCellEventTrap_0c_1a = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603098)).setLabel("sCellEventTrap-0c-1a").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_0c_1a.setDescription('Severity: Normal -- informational in nature. The specified Destination Virtual Disk has successfully completed a Full Copy.')
sCellEventTrap_0c_1b = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603099)).setLabel("sCellEventTrap-0c-1b").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_0c_1b.setDescription('Severity: Critical -- failure or failure imminent. A Data Replication Group has transitioned to the Logging state because the alternate Storage System is not accessible.')
sCellEventTrap_0c_1c = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603100)).setLabel("sCellEventTrap-0c-1c").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_0c_1c.setDescription('Severity: Critical -- failure or failure imminent. The specified Source Data Replication Group has transitioned to the Logging state because the Destination Virtual Disk is not accessible.')
sCellEventTrap_0c_1d = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603101)).setLabel("sCellEventTrap-0c-1d").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_0c_1d.setDescription('Severity: Normal -- informational in nature. Inconsistency was found in the group log: A Full Copy of the affected Data Replication Group will be initiated.')
sCellEventTrap_0c_1e = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603102)).setLabel("sCellEventTrap-0c-1e").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_0c_1e.setDescription('Severity: Critical -- failure or failure imminent. The members of the specified Source Data Replication Group have not been presented to the host because the remote Storage System is not accessible: Suspend Source Data Replication Group to override this behavior, which will present the members.')
sCellEventTrap_0c_1f = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603103)).setLabel("sCellEventTrap-0c-1f").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_0c_1f.setDescription('Severity: Normal -- informational in nature. The members of the specified Source Data Replication Group have been presented to the host because the remote Storage System is now accessible or source group is now suspended.')
sCellEventTrap_0c_20 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603104)).setLabel("sCellEventTrap-0c-20").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_0c_20.setDescription('Severity: Critical -- failure or failure imminent. Conditions on the Data Replication Destination Site are preventing replication processing: The specified Source Data Replication Group will remain in the Logging or the Failsafe Locked state until corrective action is performed.')
sCellEventTrap_0c_21 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603105)).setLabel("sCellEventTrap-0c-21").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_0c_21.setDescription('Severity: Critical -- failure or failure imminent. Conditions on the Data Replication Source Site are preventing replication processing: The specified Source Data Replication Group will remain in the Logging or the Failsafe Locked state until corrective action is performed.')
sCellEventTrap_0c_22 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603106)).setLabel("sCellEventTrap-0c-22").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_0c_22.setDescription('Severity: Normal -- informational in nature. The Data Replication Path between this Site and the Alternate Site has been opened.')
sCellEventTrap_0d_00 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603328)).setLabel("sCellEventTrap-0d-00").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_0d_00.setDescription('Severity: Critical -- failure or failure imminent. An unrecognized event was reported by a Drive Enclosure Environmental Monitoring Unit.')
sCellEventTrap_0d_01 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603329)).setLabel("sCellEventTrap-0d-01").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_0d_01.setDescription('Severity: Critical -- failure or failure imminent. A physical disk drive was detected that is not Fibre Channel compatible or cannot operate at the link rate established by the drive enclosure I/O modules.')
sCellEventTrap_0d_02 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603330)).setLabel("sCellEventTrap-0d-02").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_0d_02.setDescription('Severity: Warning -- not failed but attention recommended or required. A physical disk drive is improperly installed or missing. This could affect the drive enclosure air flow and cause an over temperature condition.')
sCellEventTrap_0d_03 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603331)).setLabel("sCellEventTrap-0d-03").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_0d_03.setDescription('Severity: Warning -- not failed but attention recommended or required. A physical disk drive was removed while software-activated drive locking was enabled on a drive enclosure that does not support drive locking.')
sCellEventTrap_0d_04 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603332)).setLabel("sCellEventTrap-0d-04").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_0d_04.setDescription('Severity: Critical -- failure or failure imminent. A physical disk drive that is capable of operating at the loop link rate established by the drive enclosure I/O module was found to be running at a different rate.')
sCellEventTrap_0d_33 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603379)).setLabel("sCellEventTrap-0d-33").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_0d_33.setDescription('Severity: Warning -- not failed but attention recommended or required. The AC input to a drive enclosure power supply has been lost. Note that the remaining power supply has become a single point of failure.')
sCellEventTrap_0d_34 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603380)).setLabel("sCellEventTrap-0d-34").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_0d_34.setDescription('Severity: Critical -- failure or failure imminent. A drive enclosure power supply is improperly installed or missing. This could affect the drive enclosure air flow and cause an over temperature condition. The operational power supply will automatically shut down after a short period of time, thereby disabling the drive enclosure. This condition remains active until either the problem is corrected, or the operational power supply shuts down, whichever occurs first.')
sCellEventTrap_0d_35 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603381)).setLabel("sCellEventTrap-0d-35").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_0d_35.setDescription('Severity: Critical -- failure or failure imminent. A drive enclosure power supply component has failed.')
sCellEventTrap_0d_47 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603399)).setLabel("sCellEventTrap-0d-47").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_0d_47.setDescription('Severity: Critical -- failure or failure imminent. A drive enclosure blower is not operating properly. This could affect the drive enclosure air flow and cause an over temperature condition. A single blower operating at high speed can provide sufficient air flow to cool an enclosure and the elements for up to 100 hours. However, operating an enclosure at temperatures approaching an overheating threshold can damage elements and may reduce the mean time before failure of a specific element.')
sCellEventTrap_0d_4b = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603403)).setLabel("sCellEventTrap-0d-4b").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_0d_4b.setDescription('Severity: Critical -- failure or failure imminent. A drive enclosure blower is improperly installed or missing. This affects the drive enclosure air flow and can cause an over temperature condition.')
sCellEventTrap_0d_4c = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603404)).setLabel("sCellEventTrap-0d-4c").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_0d_4c.setDescription('Severity: Critical -- failure or failure imminent. Both drive enclosure blowers are missing. This severely affects the drive enclosure air flow and can cause an over temperature condition. The operational power supply(s) will automatically shut down after a short period of time, thereby disabling the drive enclosure. This condition remains active until either the problem is corrected, or the operational power supply(s) shut down, whichever occurs first.')
sCellEventTrap_0d_5b = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603419)).setLabel("sCellEventTrap-0d-5b").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_0d_5b.setDescription('Severity: Warning -- not failed but attention recommended or required. A drive enclosure temperature sensor out of range condition has been reported by one of the drive enclosure elements.')
sCellEventTrap_0d_5f = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603423)).setLabel("sCellEventTrap-0d-5f").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_0d_5f.setDescription('Severity: Critical -- failure or failure imminent. The average temperature of two of the three temperature sensor groups (i.e., Drive Enclosure Environmental Monitoring Unit, Disk Drives, and Power Supplies) exceeds the CRITICAL level. The operational power supply(s) will automatically shut down after a short period of time, thereby disabling the drive enclosure. This condition remains active until either the problem is corrected, or the operational power supply(s) shut down, whichever occurs first. Refer to the HSV element manager GUI for the temperature threshold values.')
sCellEventTrap_0d_6f = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603439)).setLabel("sCellEventTrap-0d-6f").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_0d_6f.setDescription('Severity: Warning -- not failed but attention recommended or required. An internal Drive Enclosure Environmental Monitoring Unit error has occurred.')
sCellEventTrap_0d_71 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603441)).setLabel("sCellEventTrap-0d-71").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_0d_71.setDescription('Severity: Normal -- informational in nature. An internal Drive Enclosure Environmental Monitoring Unit error has occurred.')
sCellEventTrap_0d_72 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603442)).setLabel("sCellEventTrap-0d-72").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_0d_72.setDescription('Severity: Warning -- not failed but attention recommended or required. A Drive Enclosure Environmental Monitoring Unit is unable to collect data for the SCSI-3 Enclosure Services (SES) page.')
sCellEventTrap_0d_7e = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603454)).setLabel("sCellEventTrap-0d-7e").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_0d_7e.setDescription('Severity: Warning -- not failed but attention recommended or required. Invalid data was read from a Drive Enclosure Environmental Monitoring Unit NVRAM.')
sCellEventTrap_0d_7f = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603455)).setLabel("sCellEventTrap-0d-7f").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_0d_7f.setDescription('Severity: Warning -- not failed but attention recommended or required. An internal Drive Enclosure Environmental Monitoring Unit error has occurred.')
sCellEventTrap_0d_82 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603458)).setLabel("sCellEventTrap-0d-82").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_0d_82.setDescription("Severity: Warning -- not failed but attention recommended or required. A drive enclosure's address is incorrect or the enclosure has no address.")
sCellEventTrap_0d_83 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603459)).setLabel("sCellEventTrap-0d-83").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_0d_83.setDescription('Severity: Critical -- failure or failure imminent. A Drive Enclosure Environmental Monitoring Unit has experienced a hardware failure.')
sCellEventTrap_0d_85 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603461)).setLabel("sCellEventTrap-0d-85").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_0d_85.setDescription('Severity: Warning -- not failed but attention recommended or required. A drive enclosure power supply failed to respond to a shut down command.')
sCellEventTrap_0d_8d = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603469)).setLabel("sCellEventTrap-0d-8d").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_0d_8d.setDescription('Severity: Critical -- failure or failure imminent. A drive enclosure transceiver error has been detected.')
sCellEventTrap_0d_a1 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603489)).setLabel("sCellEventTrap-0d-a1").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_0d_a1.setDescription('Severity: Critical -- failure or failure imminent. A drive enclosure power supply voltage sensor out-of-range condition has been reported.')
sCellEventTrap_0d_b5 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603509)).setLabel("sCellEventTrap-0d-b5").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_0d_b5.setDescription('Severity: Critical -- failure or failure imminent. A drive enclosure power supply current sensor out of range condition has been reported.')
sCellEventTrap_0d_d8 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603544)).setLabel("sCellEventTrap-0d-d8").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_0d_d8.setDescription('Severity: Warning -- not failed but attention recommended or required. A drive enclosure backplane invalid NVRAM read error has occurred.')
sCellEventTrap_0d_d9 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603545)).setLabel("sCellEventTrap-0d-d9").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_0d_d9.setDescription('Severity: Critical -- failure or failure imminent. A drive enclosure backplane error has occurred.')
sCellEventTrap_0d_dd = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603549)).setLabel("sCellEventTrap-0d-dd").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_0d_dd.setDescription('Severity: Critical -- failure or failure imminent. A drive enclosure I/O module error has occurred.')
sCellEventTrap_0d_de = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603550)).setLabel("sCellEventTrap-0d-de").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_0d_de.setDescription('Severity: Warning -- not failed but attention recommended or required. A drive enclosure I/O module is unable to communicate with the Drive Enclosure Environmental Monitoring Unit.')
sCellEventTrap_0d_ec = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603564)).setLabel("sCellEventTrap-0d-ec").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_0d_ec.setDescription('Severity: Warning -- not failed but attention recommended or required. A drive enclosure I/O module invalid NVRAM read error has occurred.')
sCellEventTrap_0d_f0 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603568)).setLabel("sCellEventTrap-0d-f0").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_0d_f0.setDescription('Severity: Normal -- informational in nature. The status has changed on one or more of the drive enclosures. This informational event is generated for the HSV element manager GUI and contains no user information.')
sCellEventTrap_42_00 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13616896)).setLabel("sCellEventTrap-42-00").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_42_00.setDescription('Severity: Normal -- informational in nature. A host Fibre Channel port transitioned to the link down state.')
sCellEventTrap_42_01 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13616897)).setLabel("sCellEventTrap-42-01").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_42_01.setDescription('Severity: Normal -- informational in nature. A host Fibre Channel port transitioned to the link failed state.')
sCellEventTrap_42_03 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13616899)).setLabel("sCellEventTrap-42-03").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_42_03.setDescription('Severity: Normal -- informational in nature. An excessive number of link errors were detected on a host Fibre Channel port.')
sCellEventTrap_42_04 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13616900)).setLabel("sCellEventTrap-42-04").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_42_04.setDescription('Severity: Warning -- not failed but attention recommended or required. A host Fibre Channel port has failed to respond.')
sCellEventTrap_42_05 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13616901)).setLabel("sCellEventTrap-42-05").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_42_05.setDescription('Severity: Normal -- informational in nature. A host Fibre Channel port has transitioned to the link wedged state.')
sCellEventTrap_83_00 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13633536)).setLabel("sCellEventTrap-83-00").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_83_00.setDescription("Severity: Critical -- failure or failure imminent. A failure was detected during the execution of this HSV210 controller's on-board diagnostics.")
sCellEventTrap_83_01 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13633537)).setLabel("sCellEventTrap-83-01").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_83_01.setDescription("Severity: Warning -- not failed but attention recommended or required. A GBIC SFF Serial ID Data check code failure was detected during the execution of this HSV210 controller's on-board diagnostics.")
sCellEventTrap_83_02 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13633538)).setLabel("sCellEventTrap-83-02").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_83_02.setDescription("Severity: Critical -- failure or failure imminent. A failure of battery assembly '1' was detected during the execution of this HSV210 controller's on-board diagnostics.")
sCellEventTrap_83_03 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13633539)).setLabel("sCellEventTrap-83-03").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_83_03.setDescription("Severity: Critical -- failure or failure imminent. A failure of battery assembly '2' was detected during the execution of this HSV210 controller's on-board diagnostics.")
sCellEventTrap_83_04 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13633540)).setLabel("sCellEventTrap-83-04").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_83_04.setDescription("Severity: Critical -- failure or failure imminent. A communication failure of battery assembly '1' was detected during the execution of this HSV210 controller's on-board diagnostics.")
sCellEventTrap_83_05 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13633541)).setLabel("sCellEventTrap-83-05").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_83_05.setDescription("Severity: Critical -- failure or failure imminent. A communication failure of battery assembly '2' was detected during the execution of this HSV210 controller's on-board diagnostics.")
sCellEventTrap_83_06 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13633542)).setLabel("sCellEventTrap-83-06").setObjects(("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "scellSWComponent"), ("CPQHSV-MIB", "scellECode"), ("CPQHSV-MIB", "scellCAC"), ("CPQHSV-MIB", "scellEIP"))
if mibBuilder.loadTexts: sCellEventTrap_83_06.setDescription("Severity: Critical -- failure or failure imminent. A soft cache memory ECC error or indication of low battery voltage was detected during the execution of this HSV210 controller's on-board diagnostics.")
mngmtAgentTrap_1 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000001)).setLabel("mngmtAgentTrap-1").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_1.setDescription('Object Already Exists')
mngmtAgentTrap_2 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000002)).setLabel("mngmtAgentTrap-2").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_2.setDescription('Supplied Buffer Too Small')
mngmtAgentTrap_3 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000003)).setLabel("mngmtAgentTrap-3").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_3.setDescription('Object Already Assigned')
mngmtAgentTrap_4 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000004)).setLabel("mngmtAgentTrap-4").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_4.setDescription('Insufficient Available Data Storage')
mngmtAgentTrap_5 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000005)).setLabel("mngmtAgentTrap-5").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_5.setDescription('Internal Error')
mngmtAgentTrap_6 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000006)).setLabel("mngmtAgentTrap-6").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_6.setDescription('Invalid status for logical disk')
mngmtAgentTrap_7 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000007)).setLabel("mngmtAgentTrap-7").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_7.setDescription('Invalid Class')
mngmtAgentTrap_8 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000008)).setLabel("mngmtAgentTrap-8").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8.setDescription('Invalid Function')
mngmtAgentTrap_9 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000009)).setLabel("mngmtAgentTrap-9").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_9.setDescription('Invalid Logical Disk Block State')
mngmtAgentTrap_10 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000010)).setLabel("mngmtAgentTrap-10").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_10.setDescription('Invalid Loop Configuration')
mngmtAgentTrap_11 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000011)).setLabel("mngmtAgentTrap-11").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_11.setDescription('Invalid Parameter')
mngmtAgentTrap_12 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000012)).setLabel("mngmtAgentTrap-12").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_12.setDescription('Invalid Parameter handle')
mngmtAgentTrap_13 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000013)).setLabel("mngmtAgentTrap-13").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_13.setDescription('Invalid Parameter Id')
mngmtAgentTrap_14 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000014)).setLabel("mngmtAgentTrap-14").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_14.setDescription('Invalid Quorum Configuration')
mngmtAgentTrap_15 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000015)).setLabel("mngmtAgentTrap-15").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_15.setDescription('Invalid Target Handle')
mngmtAgentTrap_16 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000016)).setLabel("mngmtAgentTrap-16").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_16.setDescription('Invalid Target Id')
mngmtAgentTrap_17 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000017)).setLabel("mngmtAgentTrap-17").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_17.setDescription('Invalid Time')
mngmtAgentTrap_18 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000018)).setLabel("mngmtAgentTrap-18").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_18.setDescription('Media is Inaccessible')
mngmtAgentTrap_19 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000019)).setLabel("mngmtAgentTrap-19").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_19.setDescription('No Fibre Channel Port')
mngmtAgentTrap_20 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000020)).setLabel("mngmtAgentTrap-20").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_20.setDescription('No Image')
mngmtAgentTrap_21 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000021)).setLabel("mngmtAgentTrap-21").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_21.setDescription('No Permission')
mngmtAgentTrap_22 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000022)).setLabel("mngmtAgentTrap-22").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_22.setDescription('Storage system not initialized')
mngmtAgentTrap_23 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000023)).setLabel("mngmtAgentTrap-23").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_23.setDescription('Not a Loop Port')
mngmtAgentTrap_24 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000024)).setLabel("mngmtAgentTrap-24").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_24.setDescription('Not a Participating Controller')
mngmtAgentTrap_25 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000025)).setLabel("mngmtAgentTrap-25").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_25.setDescription('Objects in your system are in use, and their state prevents the operation you wish to perform.')
mngmtAgentTrap_26 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000026)).setLabel("mngmtAgentTrap-26").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_26.setDescription('Parameter Object Does Not Exist')
mngmtAgentTrap_27 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000027)).setLabel("mngmtAgentTrap-27").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_27.setDescription('Target Object Does Not Exist')
mngmtAgentTrap_28 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000028)).setLabel("mngmtAgentTrap-28").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_28.setDescription('Timeout')
mngmtAgentTrap_29 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000029)).setLabel("mngmtAgentTrap-29").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_29.setDescription('Unknown Id')
mngmtAgentTrap_30 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000030)).setLabel("mngmtAgentTrap-30").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_30.setDescription('Unknown Parameter Handle')
mngmtAgentTrap_31 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000031)).setLabel("mngmtAgentTrap-31").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_31.setDescription('Unrecoverable Media Error')
mngmtAgentTrap_32 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000032)).setLabel("mngmtAgentTrap-32").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_32.setDescription('Invalid State')
mngmtAgentTrap_33 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000033)).setLabel("mngmtAgentTrap-33").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_33.setDescription('Transport Error')
mngmtAgentTrap_34 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000034)).setLabel("mngmtAgentTrap-34").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_34.setDescription('Volume is Missing')
mngmtAgentTrap_35 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000035)).setLabel("mngmtAgentTrap-35").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_35.setDescription('Invalid Cursor')
mngmtAgentTrap_36 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000036)).setLabel("mngmtAgentTrap-36").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_36.setDescription('Invalid Target for the Operation')
mngmtAgentTrap_37 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000037)).setLabel("mngmtAgentTrap-37").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_37.setDescription('No More Events')
mngmtAgentTrap_38 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000038)).setLabel("mngmtAgentTrap-38").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_38.setDescription('Lock Busy')
mngmtAgentTrap_39 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000039)).setLabel("mngmtAgentTrap-39").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_39.setDescription('Time Not Set')
mngmtAgentTrap_40 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000040)).setLabel("mngmtAgentTrap-40").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_40.setDescription('Not a Supported Version')
mngmtAgentTrap_41 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000041)).setLabel("mngmtAgentTrap-41").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_41.setDescription('No Logical Disk for Vdisk')
mngmtAgentTrap_42 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000042)).setLabel("mngmtAgentTrap-42").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_42.setDescription('Logical disk Presented')
mngmtAgentTrap_43 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000043)).setLabel("mngmtAgentTrap-43").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_43.setDescription('Operation Denied On Slave')
mngmtAgentTrap_44 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000044)).setLabel("mngmtAgentTrap-44").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_44.setDescription('Not licensed for data replication')
mngmtAgentTrap_45 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000045)).setLabel("mngmtAgentTrap-45").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_45.setDescription('Not DR group member')
mngmtAgentTrap_46 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000046)).setLabel("mngmtAgentTrap-46").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_46.setDescription('Invalid DR mode')
mngmtAgentTrap_47 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000047)).setLabel("mngmtAgentTrap-47").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_47.setDescription('Invalid DR State')
mngmtAgentTrap_48 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000048)).setLabel("mngmtAgentTrap-48").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_48.setDescription("Security credentials needed. Please update your system's ID and password in the Storage System Access menu.")
mngmtAgentTrap_49 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000049)).setLabel("mngmtAgentTrap-49").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_49.setDescription("Security credentials supplied were invalid. Please update your system's ID and password in the Storage System Access menu.")
mngmtAgentTrap_50 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000050)).setLabel("mngmtAgentTrap-50").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_50.setDescription("Security credentials supplied were invalid. Please update your system's ID and password in the Storage System Access menu.")
mngmtAgentTrap_51 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000051)).setLabel("mngmtAgentTrap-51").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_51.setDescription('Storage system connection down')
mngmtAgentTrap_52 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000052)).setLabel("mngmtAgentTrap-52").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_52.setDescription('DR group empty')
mngmtAgentTrap_53 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000053)).setLabel("mngmtAgentTrap-53").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_53.setDescription('Incompatible attribute')
mngmtAgentTrap_54 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000054)).setLabel("mngmtAgentTrap-54").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_54.setDescription('Vdisk is a DR group member')
mngmtAgentTrap_55 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000055)).setLabel("mngmtAgentTrap-55").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_55.setDescription('Vdisk is a DR log unit')
mngmtAgentTrap_56 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000056)).setLabel("mngmtAgentTrap-56").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_56.setDescription('Cache batteries failed or missing.')
mngmtAgentTrap_57 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000057)).setLabel("mngmtAgentTrap-57").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_57.setDescription('Vdisk is not presented')
mngmtAgentTrap_58 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000058)).setLabel("mngmtAgentTrap-58").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_58.setDescription('Other controller failed')
mngmtAgentTrap_59 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000059)).setLabel("mngmtAgentTrap-59").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_59.setDescription('Maximum Number of Objects Exceeded.')
mngmtAgentTrap_60 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000060)).setLabel("mngmtAgentTrap-60").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_60.setDescription('Max size')
mngmtAgentTrap_61 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000061)).setLabel("mngmtAgentTrap-61").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_61.setDescription("Password mismatch. Please update your system's password in the Storage System Access menu. Continued attempts to access this storage system with an incorrect password will disable management of this storage system.")
mngmtAgentTrap_62 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000062)).setLabel("mngmtAgentTrap-62").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_62.setDescription('DR group is merging')
mngmtAgentTrap_63 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000063)).setLabel("mngmtAgentTrap-63").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_63.setDescription('DR group is logging')
mngmtAgentTrap_64 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000064)).setLabel("mngmtAgentTrap-64").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_64.setDescription('Connection is suspended')
mngmtAgentTrap_65 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000065)).setLabel("mngmtAgentTrap-65").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_65.setDescription('Bad image header')
mngmtAgentTrap_66 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000066)).setLabel("mngmtAgentTrap-66").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_66.setDescription('Bad image')
mngmtAgentTrap_67 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000067)).setLabel("mngmtAgentTrap-67").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_67.setDescription('Image too large')
mngmtAgentTrap_68 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000068)).setLabel("mngmtAgentTrap-68").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_68.setDescription('EMU not available')
mngmtAgentTrap_69 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000069)).setLabel("mngmtAgentTrap-69").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_69.setDescription('EMU indefinite delay')
mngmtAgentTrap_70 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000070)).setLabel("mngmtAgentTrap-70").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_70.setDescription('Image incompatible with system configuration. Version conflict in upgrade or downgrade not allowed.')
mngmtAgentTrap_71 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000071)).setLabel("mngmtAgentTrap-71").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_71.setDescription('Bad image segment')
mngmtAgentTrap_72 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000072)).setLabel("mngmtAgentTrap-72").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_72.setDescription('Image already loaded')
mngmtAgentTrap_73 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000073)).setLabel("mngmtAgentTrap-73").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_73.setDescription('Image Write Error')
mngmtAgentTrap_74 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000074)).setLabel("mngmtAgentTrap-74").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_74.setDescription('Logical Disk Sharing')
mngmtAgentTrap_75 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000075)).setLabel("mngmtAgentTrap-75").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_75.setDescription('Bad Image Size')
mngmtAgentTrap_76 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000076)).setLabel("mngmtAgentTrap-76").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_76.setDescription('Image Load Busy')
mngmtAgentTrap_77 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000077)).setLabel("mngmtAgentTrap-77").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_77.setDescription('Volume Failure Predicted')
mngmtAgentTrap_78 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000078)).setLabel("mngmtAgentTrap-78").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_78.setDescription('Background allocation on the destination member is in progress. This action must complete before any others can be initiated.')
mngmtAgentTrap_79 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000079)).setLabel("mngmtAgentTrap-79").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_79.setDescription('Snapshot (or snapclone) deletion in progress. The requested operation is currently not allowed. Please try again later.')
mngmtAgentTrap_80 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000080)).setLabel("mngmtAgentTrap-80").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_80.setDescription('Invalid Volume Usage')
mngmtAgentTrap_81 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000081)).setLabel("mngmtAgentTrap-81").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_81.setDescription('Minimum Volumes In Disk Group')
mngmtAgentTrap_82 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000082)).setLabel("mngmtAgentTrap-82").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_82.setDescription('Shutdown In Progress')
mngmtAgentTrap_83 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000083)).setLabel("mngmtAgentTrap-83").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_83.setDescription('Controller API Not Ready, Try Again Later')
mngmtAgentTrap_84 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000084)).setLabel("mngmtAgentTrap-84").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_84.setDescription('Is Snapshot')
mngmtAgentTrap_85 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000085)).setLabel("mngmtAgentTrap-85").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_85.setDescription('Cannot add or remove DR group member. Mirror cache must be active for this Vdisk. Check controller cache condition.')
mngmtAgentTrap_86 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000086)).setLabel("mngmtAgentTrap-86").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_86.setDescription('Inoperative')
mngmtAgentTrap_87 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000087)).setLabel("mngmtAgentTrap-87").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_87.setDescription('Disk group inoperative or disks in group less than minimum.')
mngmtAgentTrap_88 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000088)).setLabel("mngmtAgentTrap-88").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_88.setDescription('Storage system inoperative')
mngmtAgentTrap_89 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000089)).setLabel("mngmtAgentTrap-89").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_89.setDescription('Failsafe Locked')
mngmtAgentTrap_90 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000090)).setLabel("mngmtAgentTrap-90").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_90.setDescription('Data Flush Incomplete')
mngmtAgentTrap_91 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000091)).setLabel("mngmtAgentTrap-91").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_91.setDescription('Redundancy Mirrored Inoperative')
mngmtAgentTrap_92 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000092)).setLabel("mngmtAgentTrap-92").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_92.setDescription('Duplicate LUN')
mngmtAgentTrap_93 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000093)).setLabel("mngmtAgentTrap-93").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_93.setDescription('Other remote controller failed')
mngmtAgentTrap_94 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000094)).setLabel("mngmtAgentTrap-94").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_94.setDescription('Unknown remote Vdisk')
mngmtAgentTrap_95 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000095)).setLabel("mngmtAgentTrap-95").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_95.setDescription('Unknown remote DR group')
mngmtAgentTrap_96 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000096)).setLabel("mngmtAgentTrap-96").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_96.setDescription('PLDMC failed')
mngmtAgentTrap_97 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000097)).setLabel("mngmtAgentTrap-97").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_97.setDescription('Storage system could not be locked. System busy. Try command again. ')
mngmtAgentTrap_98 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000098)).setLabel("mngmtAgentTrap-98").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_98.setDescription('Error on remote storage system.')
mngmtAgentTrap_99 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000099)).setLabel("mngmtAgentTrap-99").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_99.setDescription('The DR operation can only be completed when the source-destination connection is down. If you are doing a destination DR deletion, make sure the connection link to the source DR system is down or do a failover operation to make this system the source ')
mngmtAgentTrap_100 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000100)).setLabel("mngmtAgentTrap-100").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_100.setDescription('Login required - password changed.')
mngmtAgentTrap_101 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000101)).setLabel("mngmtAgentTrap-101").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_101.setDescription("Numerous login attempts have been detected that uses an incorrect password. Please update your system's password in the Storage System Access menu.")
mngmtAgentTrap_102 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000102)).setLabel("mngmtAgentTrap-102").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_102.setDescription('Invalid cookie')
mngmtAgentTrap_103 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000103)).setLabel("mngmtAgentTrap-103").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_103.setDescription('Login timed out')
mngmtAgentTrap_104 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000104)).setLabel("mngmtAgentTrap-104").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_104.setDescription('Max snapshot depth reached')
mngmtAgentTrap_105 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000105)).setLabel("mngmtAgentTrap-105").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_105.setDescription('Attribute mismatch')
mngmtAgentTrap_106 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000106)).setLabel("mngmtAgentTrap-106").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_106.setDescription('The password has been set in Command View EVA. The same password still needs to be set in the controllers.')
mngmtAgentTrap_107 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000107)).setLabel("mngmtAgentTrap-107").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_107.setDescription('Not host port')
mngmtAgentTrap_108 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000108)).setLabel("mngmtAgentTrap-108").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_108.setDescription('Duplicate Lun WWID')
mngmtAgentTrap_109 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000109)).setLabel("mngmtAgentTrap-109").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_109.setDescription('System Inoperative')
mngmtAgentTrap_110 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000110)).setLabel("mngmtAgentTrap-110").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_110.setDescription('SnapClone Active')
mngmtAgentTrap_111 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000111)).setLabel("mngmtAgentTrap-111").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_111.setDescription('Emu Load Busy')
mngmtAgentTrap_112 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000112)).setLabel("mngmtAgentTrap-112").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_112.setDescription('Duplicate User Name')
mngmtAgentTrap_113 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000113)).setLabel("mngmtAgentTrap-113").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_113.setDescription('Drive Reserved For Code Load')
mngmtAgentTrap_114 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000114)).setLabel("mngmtAgentTrap-114").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_114.setDescription('Already Presented')
mngmtAgentTrap_115 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000115)).setLabel("mngmtAgentTrap-115").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_115.setDescription('Invalid remote storage system')
mngmtAgentTrap_116 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000116)).setLabel("mngmtAgentTrap-116").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_116.setDescription('No Lock')
mngmtAgentTrap_117 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000117)).setLabel("mngmtAgentTrap-117").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_117.setDescription('Maximum Number of Members Exceeded')
mngmtAgentTrap_118 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000118)).setLabel("mngmtAgentTrap-118").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_118.setDescription('Max Destinations')
mngmtAgentTrap_119 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000119)).setLabel("mngmtAgentTrap-119").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_119.setDescription('Empty User Name')
mngmtAgentTrap_120 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000120)).setLabel("mngmtAgentTrap-120").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_120.setDescription('Storage system already initialized')
mngmtAgentTrap_121 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000121)).setLabel("mngmtAgentTrap-121").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_121.setDescription('Already Open')
mngmtAgentTrap_122 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000122)).setLabel("mngmtAgentTrap-122").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_122.setDescription('Session Not Open')
mngmtAgentTrap_123 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000123)).setLabel("mngmtAgentTrap-123").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_123.setDescription('Not Marked Inoperative')
mngmtAgentTrap_124 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000124)).setLabel("mngmtAgentTrap-124").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_124.setDescription('Media Not Available')
mngmtAgentTrap_125 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000125)).setLabel("mngmtAgentTrap-125").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_125.setDescription('Battery System Failed')
mngmtAgentTrap_126 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000126)).setLabel("mngmtAgentTrap-126").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_126.setDescription('DR Group Member Is Cache Data Lost')
mngmtAgentTrap_127 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000127)).setLabel("mngmtAgentTrap-127").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_127.setDescription('Internal Lock Collision')
mngmtAgentTrap_128 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000128)).setLabel("mngmtAgentTrap-128").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_128.setDescription('OCP Error')
mngmtAgentTrap_129 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000129)).setLabel("mngmtAgentTrap-129").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_129.setDescription('Mirror Offline')
mngmtAgentTrap_130 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000130)).setLabel("mngmtAgentTrap-130").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_130.setDescription('This operation cannot be completed if failsafe mode is enabled.')
mngmtAgentTrap_131 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000131)).setLabel("mngmtAgentTrap-131").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_131.setDescription('Drive firmware load abort due to Raid0 virtual disk(s).')
mngmtAgentTrap_132 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000132)).setLabel("mngmtAgentTrap-132").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_132.setDescription('Fibre channel ports are unavailable.')
mngmtAgentTrap_133 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000133)).setLabel("mngmtAgentTrap-133").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_133.setDescription('The storage system has reached its maximum number of DR relationship.')
mngmtAgentTrap_134 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000134)).setLabel("mngmtAgentTrap-134").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_134.setDescription('The requested DEFP level cannot be supported.')
mngmtAgentTrap_141 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000141)).setLabel("mngmtAgentTrap-141").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_141.setDescription('DILX is running.')
mngmtAgentTrap_142 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000142)).setLabel("mngmtAgentTrap-142").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_142.setDescription('DILX is not running.')
mngmtAgentTrap_148 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000148)).setLabel("mngmtAgentTrap-148").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_148.setDescription('The Id specified is invalid.')
mngmtAgentTrap_180 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000180)).setLabel("mngmtAgentTrap-180").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_180.setDescription('One or both controllers does not have the required 512 MB of memory.')
mngmtAgentTrap_181 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000181)).setLabel("mngmtAgentTrap-181").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_181.setDescription('Not enough disk drives of requested type to create the disk group.')
mngmtAgentTrap_182 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000182)).setLabel("mngmtAgentTrap-182").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_182.setDescription('Drive Types of Disk and Disk group are different.')
mngmtAgentTrap_183 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000183)).setLabel("mngmtAgentTrap-183").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_183.setDescription('Operation already in ON state.')
mngmtAgentTrap_184 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000184)).setLabel("mngmtAgentTrap-184").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_184.setDescription('Operation already in OFF state.')
mngmtAgentTrap_195 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000195)).setLabel("mngmtAgentTrap-195").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_195.setDescription('The logical disk is not an empty container')
mngmtAgentTrap_196 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000196)).setLabel("mngmtAgentTrap-196").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_196.setDescription('The source logical disk and empty container are in different disk groups')
mngmtAgentTrap_197 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000197)).setLabel("mngmtAgentTrap-197").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_197.setDescription('This operation is not allowed on an empty container')
mngmtAgentTrap_198 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000198)).setLabel("mngmtAgentTrap-198").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_198.setDescription('Unsupported operation for AA mode')
mngmtAgentTrap_199 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000199)).setLabel("mngmtAgentTrap-199").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_199.setDescription('The redundancy specified for this snap is not allowed. A redundancy level less than or equal to the parent must be selected.')
mngmtAgentTrap_200 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000200)).setLabel("mngmtAgentTrap-200").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_200.setDescription('All snapshots in the same virtual disk family must be the same redendancy level')
mngmtAgentTrap_201 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000201)).setLabel("mngmtAgentTrap-201").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_201.setDescription('The local storage system has no available path to the remote storage system.')
mngmtAgentTrap_202 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000202)).setLabel("mngmtAgentTrap-202").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_202.setDescription('The DR Group does not exist')
mngmtAgentTrap_1000 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136001000)).setLabel("mngmtAgentTrap-1000").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_1000.setDescription('Logical Disk Condition Change')
mngmtAgentTrap_1001 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136001001)).setLabel("mngmtAgentTrap-1001").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_1001.setDescription('Storage system is FULL **critical**')
mngmtAgentTrap_1002 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136001002)).setLabel("mngmtAgentTrap-1002").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_1002.setDescription('Storage system is almost FULL. Disk group at or above maximum capacity warning level.')
mngmtAgentTrap_1003 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136001003)).setLabel("mngmtAgentTrap-1003").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_1003.setDescription('Controller Cache Battery Condition Change')
mngmtAgentTrap_1004 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136001004)).setLabel("mngmtAgentTrap-1004").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_1004.setDescription('Controller Cache Condition Change')
mngmtAgentTrap_1005 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136001005)).setLabel("mngmtAgentTrap-1005").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_1005.setDescription('Controller Condition Change')
mngmtAgentTrap_1006 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136001006)).setLabel("mngmtAgentTrap-1006").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_1006.setDescription('Controller FC Port Condition Change')
mngmtAgentTrap_1007 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136001007)).setLabel("mngmtAgentTrap-1007").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_1007.setDescription('Physical Device Condition Change')
mngmtAgentTrap_1008 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136001008)).setLabel("mngmtAgentTrap-1008").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_1008.setDescription('Physical Store Condition Change')
mngmtAgentTrap_1009 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136001009)).setLabel("mngmtAgentTrap-1009").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_1009.setDescription('Host condition change')
mngmtAgentTrap_1010 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136001010)).setLabel("mngmtAgentTrap-1010").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_1010.setDescription('Storage system time has been set')
mngmtAgentTrap_1011 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136001011)).setLabel("mngmtAgentTrap-1011").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_1011.setDescription('Volume Condition change')
mngmtAgentTrap_1012 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136001012)).setLabel("mngmtAgentTrap-1012").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_1012.setDescription('Volume insufficient-resources condition change')
mngmtAgentTrap_1013 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136001013)).setLabel("mngmtAgentTrap-1013").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_1013.setDescription('Volume Quorum Disk change')
mngmtAgentTrap_1014 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136001014)).setLabel("mngmtAgentTrap-1014").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_1014.setDescription('The state of an object in the system has changed. View adjacent events for more detail.')
mngmtAgentTrap_2001 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002001)).setLabel("mngmtAgentTrap-2001").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_2001.setDescription('Startup Failed')
mngmtAgentTrap_2002 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002002)).setLabel("mngmtAgentTrap-2002").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_2002.setDescription('Management agent event log cleared successfully')
mngmtAgentTrap_2003 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002003)).setLabel("mngmtAgentTrap-2003").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_2003.setDescription('Invalid name specified for storage system')
mngmtAgentTrap_2004 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002004)).setLabel("mngmtAgentTrap-2004").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_2004.setDescription('Storage system is not initialized')
mngmtAgentTrap_2006 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002006)).setLabel("mngmtAgentTrap-2006").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_2006.setDescription('Invalid name specified')
mngmtAgentTrap_2007 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002007)).setLabel("mngmtAgentTrap-2007").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_2007.setDescription('Name exceeds maximum length')
mngmtAgentTrap_2008 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002008)).setLabel("mngmtAgentTrap-2008").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_2008.setDescription('Invalid parameter specified')
mngmtAgentTrap_2010 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002010)).setLabel("mngmtAgentTrap-2010").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_2010.setDescription('Specified size exceeds available size')
mngmtAgentTrap_2011 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002011)).setLabel("mngmtAgentTrap-2011").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_2011.setDescription('There are not enough disk drives to create a disk group')
mngmtAgentTrap_2012 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002012)).setLabel("mngmtAgentTrap-2012").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_2012.setDescription('Number of devices exceeds the available number of disks')
mngmtAgentTrap_2013 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002013)).setLabel("mngmtAgentTrap-2013").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_2013.setDescription('Number of devices is less than the minimum number required to create a disk group')
mngmtAgentTrap_2016 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002016)).setLabel("mngmtAgentTrap-2016").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_2016.setDescription('Completed unpresenting virtual disk to host')
mngmtAgentTrap_2021 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002021)).setLabel("mngmtAgentTrap-2021").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_2021.setDescription('Invalid refresh interval value. Should be numeric and non-negative.')
mngmtAgentTrap_2022 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002022)).setLabel("mngmtAgentTrap-2022").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_2022.setDescription('Invalid security message. Should not be blank.')
mngmtAgentTrap_2023 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002023)).setLabel("mngmtAgentTrap-2023").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_2023.setDescription('Create Complete')
mngmtAgentTrap_2025 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002025)).setLabel("mngmtAgentTrap-2025").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_2025.setDescription('Storage system successfully initialized')
mngmtAgentTrap_2026 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002026)).setLabel("mngmtAgentTrap-2026").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_2026.setDescription('Device Added Successfully')
mngmtAgentTrap_2030 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002030)).setLabel("mngmtAgentTrap-2030").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_2030.setDescription('Refresh Interval Changed')
mngmtAgentTrap_2031 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002031)).setLabel("mngmtAgentTrap-2031").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_2031.setDescription('Security Message Changed')
mngmtAgentTrap_2032 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002032)).setLabel("mngmtAgentTrap-2032").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_2032.setDescription('Present Vdisk to a Host - Complete')
mngmtAgentTrap_2033 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002033)).setLabel("mngmtAgentTrap-2033").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_2033.setDescription('Control Startup Complete')
mngmtAgentTrap_2034 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002034)).setLabel("mngmtAgentTrap-2034").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_2034.setDescription('Change Device Usage Complete')
mngmtAgentTrap_2035 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002035)).setLabel("mngmtAgentTrap-2035").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_2035.setDescription('Control Shutdown - Complete')
mngmtAgentTrap_2036 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002036)).setLabel("mngmtAgentTrap-2036").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_2036.setDescription('Controller Shutdown - Complete')
mngmtAgentTrap_2038 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002038)).setLabel("mngmtAgentTrap-2038").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_2038.setDescription('Control Memory Allocation Failure')
mngmtAgentTrap_2040 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002040)).setLabel("mngmtAgentTrap-2040").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_2040.setDescription('Access level denied or session activity timeout. Please log in again.')
mngmtAgentTrap_2041 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002041)).setLabel("mngmtAgentTrap-2041").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_2041.setDescription('Vdisk Snapshot - Completed')
mngmtAgentTrap_2042 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002042)).setLabel("mngmtAgentTrap-2042").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_2042.setDescription('Vdisk Snapclone - Completed')
mngmtAgentTrap_2047 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002047)).setLabel("mngmtAgentTrap-2047").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_2047.setDescription('Host record added successfully')
mngmtAgentTrap_2048 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002048)).setLabel("mngmtAgentTrap-2048").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_2048.setDescription('Logical component deleted successfully')
mngmtAgentTrap_2049 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002049)).setLabel("mngmtAgentTrap-2049").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_2049.setDescription('Invalid host adapter ID')
mngmtAgentTrap_2050 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002050)).setLabel("mngmtAgentTrap-2050").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_2050.setDescription('Specified device is already a member of the system')
mngmtAgentTrap_2051 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002051)).setLabel("mngmtAgentTrap-2051").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_2051.setDescription('Create Folder - Completed')
mngmtAgentTrap_2052 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002052)).setLabel("mngmtAgentTrap-2052").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_2052.setDescription('Change Object Properties - Completed')
mngmtAgentTrap_2057 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002057)).setLabel("mngmtAgentTrap-2057").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_2057.setDescription('Completed disk group creation')
mngmtAgentTrap_2058 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002058)).setLabel("mngmtAgentTrap-2058").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_2058.setDescription('Added host port')
mngmtAgentTrap_2059 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002059)).setLabel("mngmtAgentTrap-2059").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_2059.setDescription('Discarded host port')
mngmtAgentTrap_2060 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002060)).setLabel("mngmtAgentTrap-2060").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_2060.setDescription('EMU/Shelf code load complete')
mngmtAgentTrap_2061 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002061)).setLabel("mngmtAgentTrap-2061").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_2061.setDescription('Operation will exceed the available capacity of the disk group')
mngmtAgentTrap_2062 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002062)).setLabel("mngmtAgentTrap-2062").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_2062.setDescription('Controller(s) code load complete')
mngmtAgentTrap_2063 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002063)).setLabel("mngmtAgentTrap-2063").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_2063.setDescription('The target device is not in the right condition to perform the operation')
mngmtAgentTrap_2064 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002064)).setLabel("mngmtAgentTrap-2064").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_2064.setDescription('Storage system Device Addition Policy changed successfully')
mngmtAgentTrap_2065 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002065)).setLabel("mngmtAgentTrap-2065").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_2065.setDescription('Maximum number of disk groups exceeded')
mngmtAgentTrap_2066 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002066)).setLabel("mngmtAgentTrap-2066").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_2066.setDescription('Nsa object discard failed.')
mngmtAgentTrap_2067 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002067)).setLabel("mngmtAgentTrap-2067").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_2067.setDescription('There are not enough disks to meet the minimum number requirement')
mngmtAgentTrap_2068 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002068)).setLabel("mngmtAgentTrap-2068").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_2068.setDescription('Entry added successfully in the password file')
mngmtAgentTrap_2069 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002069)).setLabel("mngmtAgentTrap-2069").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_2069.setDescription('Entry updated successfully in the password file')
mngmtAgentTrap_2070 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002070)).setLabel("mngmtAgentTrap-2070").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_2070.setDescription('Entry discarded successfully in the password file')
mngmtAgentTrap_2071 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002071)).setLabel("mngmtAgentTrap-2071").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_2071.setDescription('The storage system is not responding to management command requests in a timely manner. This may be due to a prior management command request with excessively long response time, or a communication problem. CV EVA will recover automatically when the storage system is able to respond to management commands. Management command access to the storage system does not affect host I/O.')
mngmtAgentTrap_2072 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002072)).setLabel("mngmtAgentTrap-2072").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_2072.setDescription('Object not found. Operation on this object is completed')
mngmtAgentTrap_2073 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002073)).setLabel("mngmtAgentTrap-2073").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_2073.setDescription('There is no more available space')
mngmtAgentTrap_2074 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002074)).setLabel("mngmtAgentTrap-2074").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_2074.setDescription('Name or comments contains invalid character(s)')
mngmtAgentTrap_2075 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002075)).setLabel("mngmtAgentTrap-2075").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_2075.setDescription('Duplicate - Another object with the same name exists.')
mngmtAgentTrap_2076 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002076)).setLabel("mngmtAgentTrap-2076").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_2076.setDescription('No healthy disk group(s) to create a Vdisk. Resolve any abnormal conditions in the disk group first.')
mngmtAgentTrap_2077 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002077)).setLabel("mngmtAgentTrap-2077").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_2077.setDescription('Operating System ID must be a valid number.')
mngmtAgentTrap_2078 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002078)).setLabel("mngmtAgentTrap-2078").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_2078.setDescription('Watchdog successfully started')
mngmtAgentTrap_2079 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002079)).setLabel("mngmtAgentTrap-2079").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_2079.setDescription('Watchdog successfully stopped')
mngmtAgentTrap_2080 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002080)).setLabel("mngmtAgentTrap-2080").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_2080.setDescription('Delete Event Config List failed')
mngmtAgentTrap_2081 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002081)).setLabel("mngmtAgentTrap-2081").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_2081.setDescription('Inoperative Disk group repaired successfully.')
mngmtAgentTrap_2082 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002082)).setLabel("mngmtAgentTrap-2082").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_2082.setDescription('There are no available LUNs to present this Vdisk.')
mngmtAgentTrap_2083 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002083)).setLabel("mngmtAgentTrap-2083").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_2083.setDescription('Controller time synchronization turned on.')
mngmtAgentTrap_2084 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002084)).setLabel("mngmtAgentTrap-2084").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_2084.setDescription('Controller time synchronization turned off.')
mngmtAgentTrap_2085 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002085)).setLabel("mngmtAgentTrap-2085").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_2085.setDescription('System login failed. Invalid password.')
mngmtAgentTrap_2086 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002086)).setLabel("mngmtAgentTrap-2086").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_2086.setDescription('System is not set for password validation.')
mngmtAgentTrap_2087 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002087)).setLabel("mngmtAgentTrap-2087").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_2087.setDescription('Agent is already logged in to this system.')
mngmtAgentTrap_2088 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002088)).setLabel("mngmtAgentTrap-2088").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_2088.setDescription('Storage system time set to custom time. Controller time synchronization automatically turned off.')
mngmtAgentTrap_2089 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002089)).setLabel("mngmtAgentTrap-2089").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_2089.setDescription('Storage system time set to SAN management workstation time.')
mngmtAgentTrap_2090 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002090)).setLabel("mngmtAgentTrap-2090").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_2090.setDescription('Storage system time set to browser time. Controller time synchronization automatically turned off.')
mngmtAgentTrap_2091 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002091)).setLabel("mngmtAgentTrap-2091").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_2091.setDescription('Storage system time set to controller time. Controller time synchronization automatically turned off.')
mngmtAgentTrap_2092 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002092)).setLabel("mngmtAgentTrap-2092").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_2092.setDescription('Unable to find DR Group on remote storage system.')
mngmtAgentTrap_2093 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002093)).setLabel("mngmtAgentTrap-2093").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_2093.setDescription('A host must have at least one port. Cannot delete the only host port available.')
mngmtAgentTrap_2095 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002095)).setLabel("mngmtAgentTrap-2095").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_2095.setDescription('Host creation failed. Maximum number of hosts reached.')
mngmtAgentTrap_2096 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002096)).setLabel("mngmtAgentTrap-2096").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_2096.setDescription('Port already exists.')
mngmtAgentTrap_2097 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002097)).setLabel("mngmtAgentTrap-2097").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_2097.setDescription('Error reading parameter string. String is empty.')
mngmtAgentTrap_2098 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002098)).setLabel("mngmtAgentTrap-2098").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_2098.setDescription('Command could not be completed on Master. Controller not found.')
mngmtAgentTrap_2099 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002099)).setLabel("mngmtAgentTrap-2099").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_2099.setDescription('Command could not be completed on Slave. Controller not found.')
mngmtAgentTrap_2100 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002100)).setLabel("mngmtAgentTrap-2100").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_2100.setDescription('Password access for all known storage systems is already enabled or set.')
mngmtAgentTrap_2102 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002102)).setLabel("mngmtAgentTrap-2102").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_2102.setDescription('The local storage system has reached the maximum allowable DR relationship.')
mngmtAgentTrap_2103 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002103)).setLabel("mngmtAgentTrap-2103").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_2103.setDescription('The remote storage system has reached the maximum allowable DR relationship.')
mngmtAgentTrap_2104 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002104)).setLabel("mngmtAgentTrap-2104").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_2104.setDescription('Disk Group creation failed.Please make sure that you have the specified number of drives.If only near-online drives are present Go to the Advanced Options Page and specify the drive type as Near-Online.You need to have a minimum of 8 near-online drives to proceed.')
mngmtAgentTrap_2105 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002105)).setLabel("mngmtAgentTrap-2105").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_2105.setDescription('Disk Group creation failed.Please make sure that you have the specified number of near-online drives.')
mngmtAgentTrap_3001 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003001)).setLabel("mngmtAgentTrap-3001").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_3001.setDescription('Event Manager Offline')
mngmtAgentTrap_3002 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003002)).setLabel("mngmtAgentTrap-3002").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_3002.setDescription('Event Manager Online')
mngmtAgentTrap_3003 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003003)).setLabel("mngmtAgentTrap-3003").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_3003.setDescription('Event Manager - Startup Failed')
mngmtAgentTrap_3004 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003004)).setLabel("mngmtAgentTrap-3004").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_3004.setDescription('Event Manager - Startup Complete')
mngmtAgentTrap_3007 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003007)).setLabel("mngmtAgentTrap-3007").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_3007.setDescription('Event Manager - Shutdown Complete')
mngmtAgentTrap_3009 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003009)).setLabel("mngmtAgentTrap-3009").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_3009.setDescription('Unable to open NSA Local Event Log File')
mngmtAgentTrap_3012 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003012)).setLabel("mngmtAgentTrap-3012").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_3012.setDescription('Unable to open Local Temp Event File - possibly no initialized SC')
mngmtAgentTrap_3013 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003013)).setLabel("mngmtAgentTrap-3013").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_3013.setDescription('Unable to clear NSA Local Event Log File')
mngmtAgentTrap_3015 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003015)).setLabel("mngmtAgentTrap-3015").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_3015.setDescription('Unable to clear NSA Event Log File')
mngmtAgentTrap_3016 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003016)).setLabel("mngmtAgentTrap-3016").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_3016.setDescription('Local log file found on startup')
mngmtAgentTrap_3017 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003017)).setLabel("mngmtAgentTrap-3017").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_3017.setDescription('Event Queue Flush Error')
mngmtAgentTrap_3019 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003019)).setLabel("mngmtAgentTrap-3019").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_3019.setDescription('EM File Manager Online')
mngmtAgentTrap_3020 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003020)).setLabel("mngmtAgentTrap-3020").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_3020.setDescription('EM File Manager Offline')
mngmtAgentTrap_3021 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003021)).setLabel("mngmtAgentTrap-3021").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_3021.setDescription('EM Log Manager Online')
mngmtAgentTrap_3022 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003022)).setLabel("mngmtAgentTrap-3022").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_3022.setDescription('EM Log Manager Offline')
mngmtAgentTrap_3024 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003024)).setLabel("mngmtAgentTrap-3024").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_3024.setDescription('Local NSA logfile is empty')
mngmtAgentTrap_3025 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003025)).setLabel("mngmtAgentTrap-3025").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_3025.setDescription('Event Queue Online')
mngmtAgentTrap_3028 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003028)).setLabel("mngmtAgentTrap-3028").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_3028.setDescription('Status Descriptions Unavailable')
mngmtAgentTrap_3029 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003029)).setLabel("mngmtAgentTrap-3029").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_3029.setDescription('EM Description Mngr Online')
mngmtAgentTrap_3035 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003035)).setLabel("mngmtAgentTrap-3035").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_3035.setDescription('EM: NSA log file unavailable')
mngmtAgentTrap_3036 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003036)).setLabel("mngmtAgentTrap-3036").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_3036.setDescription('EM Memory Allocation Error')
mngmtAgentTrap_3037 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003037)).setLabel("mngmtAgentTrap-3037").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_3037.setDescription('EM: Local Event Configuration File Unavailable')
mngmtAgentTrap_3038 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003038)).setLabel("mngmtAgentTrap-3038").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_3038.setDescription('EM: MLD Notification File Unavailable - retrieving local backup copy')
mngmtAgentTrap_3039 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003039)).setLabel("mngmtAgentTrap-3039").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_3039.setDescription('EM: Local Notification Host List File Unavailable')
mngmtAgentTrap_3044 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003044)).setLabel("mngmtAgentTrap-3044").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_3044.setDescription('Override this description with missing filename')
mngmtAgentTrap_3045 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003045)).setLabel("mngmtAgentTrap-3045").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_3045.setDescription("Invalid storage system event sequence number - can't retrieve event")
mngmtAgentTrap_3046 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003046)).setLabel("mngmtAgentTrap-3046").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_3046.setDescription("Invalid SC termination event sequence number - can't retrieve event")
mngmtAgentTrap_3047 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003047)).setLabel("mngmtAgentTrap-3047").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_3047.setDescription('EM: Event config file unavailable from MLD - retrieving local backup copy')
mngmtAgentTrap_3048 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003048)).setLabel("mngmtAgentTrap-3048").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_3048.setDescription('EM: Local user defined event state file unavailable')
mngmtAgentTrap_3049 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003049)).setLabel("mngmtAgentTrap-3049").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_3049.setDescription('EM: EMU event monitoring thread unable to start')
mngmtAgentTrap_3050 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003050)).setLabel("mngmtAgentTrap-3050").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_3050.setDescription('EM: EMU event - this description will be overwritten')
mngmtAgentTrap_3051 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003051)).setLabel("mngmtAgentTrap-3051").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_3051.setDescription('EM: Failed to write Event Config file to MLD')
mngmtAgentTrap_3053 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003053)).setLabel("mngmtAgentTrap-3053").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_3053.setDescription('EM: Event Configuration Filename Error or File empty')
mngmtAgentTrap_3054 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003054)).setLabel("mngmtAgentTrap-3054").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_3054.setDescription('EM: Notification Hostlist Filename Error or File empty')
mngmtAgentTrap_3055 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003055)).setLabel("mngmtAgentTrap-3055").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_3055.setDescription('EM: Event Config List Object Reference Error')
mngmtAgentTrap_3056 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003056)).setLabel("mngmtAgentTrap-3056").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_3056.setDescription('EM: SC Parse File successfully uploaded')
mngmtAgentTrap_3057 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003057)).setLabel("mngmtAgentTrap-3057").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_3057.setDescription('EM: SC Parse File upload failed')
mngmtAgentTrap_3058 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003058)).setLabel("mngmtAgentTrap-3058").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_3058.setDescription('EM: Contents of the uploaded parse file invalid - unexpected contents')
mngmtAgentTrap_3059 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003059)).setLabel("mngmtAgentTrap-3059").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_3059.setDescription('EM: Parse file is empty')
mngmtAgentTrap_3060 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003060)).setLabel("mngmtAgentTrap-3060").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_3060.setDescription('Storage system being shutdown due to a command failure.')
mngmtAgentTrap_3061 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003061)).setLabel("mngmtAgentTrap-3061").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_3061.setDescription('EM: Could not retrieve a storage system event')
mngmtAgentTrap_3062 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003062)).setLabel("mngmtAgentTrap-3062").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_3062.setDescription('EM: Init SC Event config list failed')
mngmtAgentTrap_3063 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003063)).setLabel("mngmtAgentTrap-3063").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_3063.setDescription('Could not initialize Comm infrastructure for event logging to system log')
mngmtAgentTrap_3064 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003064)).setLabel("mngmtAgentTrap-3064").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_3064.setDescription('EM: Storage system pointer is NULL!')
mngmtAgentTrap_3065 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003065)).setLabel("mngmtAgentTrap-3065").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_3065.setDescription('EM: Failed to log event to the Windows Application Event Log - Windows Application Event Log may be full.')
mngmtAgentTrap_3066 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003066)).setLabel("mngmtAgentTrap-3066").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_3066.setDescription('EM: Description Mngr initialize storage system failed')
mngmtAgentTrap_3067 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003067)).setLabel("mngmtAgentTrap-3067").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_3067.setDescription('EM: Description file too small. File read problem Or Incomplete file.')
mngmtAgentTrap_3068 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003068)).setLabel("mngmtAgentTrap-3068").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_3068.setDescription("EM: Can't init NT Event object pointer")
mngmtAgentTrap_3069 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003069)).setLabel("mngmtAgentTrap-3069").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_3069.setDescription("EM: Can't init NT Notification object pointer")
mngmtAgentTrap_3070 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003070)).setLabel("mngmtAgentTrap-3070").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_3070.setDescription('EM: Management Workstation Event Logging Failure - Windows Application Event Log may be full.')
mngmtAgentTrap_3071 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003071)).setLabel("mngmtAgentTrap-3071").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_3071.setDescription('EM: SCMI returned bad additional events number')
mngmtAgentTrap_3072 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003072)).setLabel("mngmtAgentTrap-3072").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_3072.setDescription('EM: SCMI returned zero sized SC Event')
mngmtAgentTrap_3075 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003075)).setLabel("mngmtAgentTrap-3075").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_3075.setDescription('EventQueue index passed is out of bounds')
mngmtAgentTrap_3076 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003076)).setLabel("mngmtAgentTrap-3076").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_3076.setDescription('EM: An abnormal number of duplicate events logged - dropping duplicates')
mngmtAgentTrap_3077 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003077)).setLabel("mngmtAgentTrap-3077").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_3077.setDescription('EM: Update of the MLD Status Description file failed')
mngmtAgentTrap_3078 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003078)).setLabel("mngmtAgentTrap-3078").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_3078.setDescription('EM: NsaStatusDescriptions.txt open file error')
mngmtAgentTrap_3079 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003079)).setLabel("mngmtAgentTrap-3079").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_3079.setDescription('EM: NsaStatusDescriptions.txt file error - file size discrepancy from mld list')
mngmtAgentTrap_3080 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003080)).setLabel("mngmtAgentTrap-3080").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_3080.setDescription('SC Event Log has been cleared and restarted. Possibly disk group has gone into an inoperative state.')
mngmtAgentTrap_3081 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003081)).setLabel("mngmtAgentTrap-3081").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_3081.setDescription('Invalid logType parameter')
mngmtAgentTrap_3083 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003083)).setLabel("mngmtAgentTrap-3083").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_3083.setDescription('Log file is empty')
mngmtAgentTrap_3084 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003084)).setLabel("mngmtAgentTrap-3084").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_3084.setDescription('Storage System with this WWN is not visible to this agent or the WWN is invalid')
mngmtAgentTrap_3086 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003086)).setLabel("mngmtAgentTrap-3086").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_3086.setDescription('Parsefile for current firmware version not found. Upload correct parse file.')
mngmtAgentTrap_3090 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003090)).setLabel("mngmtAgentTrap-3090").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_3090.setDescription('The contents of this file appear to be invalid')
mngmtAgentTrap_3091 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003091)).setLabel("mngmtAgentTrap-3091").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_3091.setDescription('The MIB failed to build due to a missing parse file.')
mngmtAgentTrap_3092 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003092)).setLabel("mngmtAgentTrap-3092").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_3092.setDescription('MLD description file is older than local file but system is downrev')
mngmtAgentTrap_3094 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003094)).setLabel("mngmtAgentTrap-3094").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_3094.setDescription("System is initialized: can't get activeQ events")
mngmtAgentTrap_3095 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003095)).setLabel("mngmtAgentTrap-3095").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_3095.setDescription('Failed to write file - file could not be opened.')
mngmtAgentTrap_4000 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004000)).setLabel("mngmtAgentTrap-4000").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_4000.setDescription('MLD Manager Subsystem Error')
mngmtAgentTrap_4001 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004001)).setLabel("mngmtAgentTrap-4001").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_4001.setDescription('MLD Manager Offline')
mngmtAgentTrap_4004 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004004)).setLabel("mngmtAgentTrap-4004").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_4004.setDescription('MLD Manager Startup Complete')
mngmtAgentTrap_4005 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004005)).setLabel("mngmtAgentTrap-4005").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_4005.setDescription('MLD Manager Abnormal Startup')
mngmtAgentTrap_4007 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004007)).setLabel("mngmtAgentTrap-4007").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_4007.setDescription('MLD Manager Shutdown Complete')
mngmtAgentTrap_4011 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004011)).setLabel("mngmtAgentTrap-4011").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_4011.setDescription('Invalid Host IP Address specified')
mngmtAgentTrap_4012 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004012)).setLabel("mngmtAgentTrap-4012").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_4012.setDescription('Unable to open the NsaMldMgr.dat file for Write')
mngmtAgentTrap_4013 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004013)).setLabel("mngmtAgentTrap-4013").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_4013.setDescription('Unable to open the NsaMldMgr.dat file for Read')
mngmtAgentTrap_4014 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004014)).setLabel("mngmtAgentTrap-4014").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_4014.setDescription('Agent Uid does not exist')
mngmtAgentTrap_4015 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004015)).setLabel("mngmtAgentTrap-4015").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_4015.setDescription('Unable to find object')
mngmtAgentTrap_4016 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004016)).setLabel("mngmtAgentTrap-4016").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_4016.setDescription('Unable to store object')
mngmtAgentTrap_4017 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004017)).setLabel("mngmtAgentTrap-4017").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_4017.setDescription('Unable to find storage system object')
mngmtAgentTrap_4018 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004018)).setLabel("mngmtAgentTrap-4018").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_4018.setDescription('Unable to create MLD')
mngmtAgentTrap_4020 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004020)).setLabel("mngmtAgentTrap-4020").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_4020.setDescription('lastSafeChoiceDelay Expired')
mngmtAgentTrap_4021 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004021)).setLabel("mngmtAgentTrap-4021").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_4021.setDescription('crashDetectDelay Expired')
mngmtAgentTrap_4023 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004023)).setLabel("mngmtAgentTrap-4023").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_4023.setDescription('Unable to read Copy1 of MLD')
mngmtAgentTrap_4024 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004024)).setLabel("mngmtAgentTrap-4024").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_4024.setDescription('Copy 1 of MLD Invalid')
mngmtAgentTrap_4025 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004025)).setLabel("mngmtAgentTrap-4025").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_4025.setDescription('Invalid Copy block of MLD')
mngmtAgentTrap_4027 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004027)).setLabel("mngmtAgentTrap-4027").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_4027.setDescription('MLD database capacity not equal to true MLD capacity')
mngmtAgentTrap_4028 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004028)).setLabel("mngmtAgentTrap-4028").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_4028.setDescription('Backup range out of bounds of copy 1 range')
mngmtAgentTrap_4029 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004029)).setLabel("mngmtAgentTrap-4029").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_4029.setDescription('MLD Manager Lock Crash DetectDelay has expired, just taking lock!')
mngmtAgentTrap_4030 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004030)).setLabel("mngmtAgentTrap-4030").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_4030.setDescription('MLD Copy 1 Restored')
mngmtAgentTrap_4031 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004031)).setLabel("mngmtAgentTrap-4031").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_4031.setDescription('MLD Copy 2 Restored')
mngmtAgentTrap_4032 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004032)).setLabel("mngmtAgentTrap-4032").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_4032.setDescription('Unable to find UidAssoc Object')
mngmtAgentTrap_4033 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004033)).setLabel("mngmtAgentTrap-4033").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_4033.setDescription('Unable to store UID Association Object')
mngmtAgentTrap_4034 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004034)).setLabel("mngmtAgentTrap-4034").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_4034.setDescription('Unable to find UidAssoc Object')
mngmtAgentTrap_4035 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004035)).setLabel("mngmtAgentTrap-4035").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_4035.setDescription('Unable to read last Fusion event read')
mngmtAgentTrap_4036 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004036)).setLabel("mngmtAgentTrap-4036").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_4036.setDescription('MLD Notification Queue Empty')
mngmtAgentTrap_4037 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004037)).setLabel("mngmtAgentTrap-4037").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_4037.setDescription('Unable to find Notification Object')
mngmtAgentTrap_4040 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004040)).setLabel("mngmtAgentTrap-4040").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_4040.setDescription('Unable to read Event Log Pointer')
mngmtAgentTrap_4041 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004041)).setLabel("mngmtAgentTrap-4041").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_4041.setDescription('Unable to read Event Log')
mngmtAgentTrap_4042 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004042)).setLabel("mngmtAgentTrap-4042").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_4042.setDescription('Unable to store Event Log')
mngmtAgentTrap_4043 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004043)).setLabel("mngmtAgentTrap-4043").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_4043.setDescription('Unable to read Event Log')
mngmtAgentTrap_4047 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004047)).setLabel("mngmtAgentTrap-4047").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_4047.setDescription('Previously Read Object Properties do not Match')
mngmtAgentTrap_4048 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004048)).setLabel("mngmtAgentTrap-4048").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_4048.setDescription('Previously Read Object Properties do not Match')
mngmtAgentTrap_4049 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004049)).setLabel("mngmtAgentTrap-4049").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_4049.setDescription('Unable to read Notification Host List')
mngmtAgentTrap_4050 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004050)).setLabel("mngmtAgentTrap-4050").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_4050.setDescription('Unable to store Notification Host List')
mngmtAgentTrap_4051 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004051)).setLabel("mngmtAgentTrap-4051").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_4051.setDescription('Unable to store Notification Host List and free Lock')
mngmtAgentTrap_4052 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004052)).setLabel("mngmtAgentTrap-4052").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_4052.setDescription('Unable to read Event Configuration List')
mngmtAgentTrap_4053 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004053)).setLabel("mngmtAgentTrap-4053").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_4053.setDescription('Unable to store Event Configuration List')
mngmtAgentTrap_4054 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004054)).setLabel("mngmtAgentTrap-4054").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_4054.setDescription('Unable to store Event Configuration List and free Lock')
mngmtAgentTrap_4058 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004058)).setLabel("mngmtAgentTrap-4058").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_4058.setDescription('MLD Manager Mutex Timeout error')
mngmtAgentTrap_4059 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004059)).setLabel("mngmtAgentTrap-4059").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_4059.setDescription('MLD Manager list is empty')
mngmtAgentTrap_5001 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136005001)).setLabel("mngmtAgentTrap-5001").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_5001.setDescription('Monitor Startup Complete')
mngmtAgentTrap_5002 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136005002)).setLabel("mngmtAgentTrap-5002").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_5002.setDescription('Monitor Startup Failed')
mngmtAgentTrap_5003 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136005003)).setLabel("mngmtAgentTrap-5003").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_5003.setDescription('Monitor ShutDown Complete')
mngmtAgentTrap_5004 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136005004)).setLabel("mngmtAgentTrap-5004").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_5004.setDescription('Monitor Memory Allocation Failure')
mngmtAgentTrap_5005 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136005005)).setLabel("mngmtAgentTrap-5005").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_5005.setDescription('Monitor Mark Agent as Inactive')
mngmtAgentTrap_5006 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136005006)).setLabel("mngmtAgentTrap-5006").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_5006.setDescription('Monitor create thread error')
mngmtAgentTrap_5007 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136005007)).setLabel("mngmtAgentTrap-5007").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_5007.setDescription('Monitor create timer error')
mngmtAgentTrap_5008 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136005008)).setLabel("mngmtAgentTrap-5008").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_5008.setDescription('Monitor agent registration - Complete')
mngmtAgentTrap_5010 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136005010)).setLabel("mngmtAgentTrap-5010").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_5010.setDescription('Monitor initiated a storage system management shutdown because of controller failures')
mngmtAgentTrap_5011 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136005011)).setLabel("mngmtAgentTrap-5011").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_5011.setDescription('Unknown storage system rediscovery complete ')
mngmtAgentTrap_5012 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136005012)).setLabel("mngmtAgentTrap-5012").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_5012.setDescription('Start monitoring thread for storage system - Complete')
mngmtAgentTrap_5013 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136005013)).setLabel("mngmtAgentTrap-5013").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_5013.setDescription('Start monitoring thread for storage system - Fail')
mngmtAgentTrap_5014 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136005014)).setLabel("mngmtAgentTrap-5014").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_5014.setDescription('Monitoring thread for storage system terminated')
mngmtAgentTrap_5015 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136005015)).setLabel("mngmtAgentTrap-5015").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_5015.setDescription('Rediscover unknown storage system - Error')
mngmtAgentTrap_5016 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136005016)).setLabel("mngmtAgentTrap-5016").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_5016.setDescription('Controller time synchronized to management workstation time.')
mngmtAgentTrap_5017 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136005017)).setLabel("mngmtAgentTrap-5017").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_5017.setDescription('Management workstation and controller time checked for synchronization.')
mngmtAgentTrap_5018 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136005018)).setLabel("mngmtAgentTrap-5018").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_5018.setDescription('Controller and management workstation time are the same. No need to synchronize.')
mngmtAgentTrap_5019 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136005019)).setLabel("mngmtAgentTrap-5019").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_5019.setDescription('Exception caught in monitoring process.')
mngmtAgentTrap_6001 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006001)).setLabel("mngmtAgentTrap-6001").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_6001.setDescription('Ready')
mngmtAgentTrap_6002 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006002)).setLabel("mngmtAgentTrap-6002").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_6002.setDescription('Index Out of Range')
mngmtAgentTrap_6003 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006003)).setLabel("mngmtAgentTrap-6003").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_6003.setDescription('Cannot access storage system. Communications error.')
mngmtAgentTrap_6004 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006004)).setLabel("mngmtAgentTrap-6004").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_6004.setDescription('No controllers found')
mngmtAgentTrap_6005 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006005)).setLabel("mngmtAgentTrap-6005").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_6005.setDescription('Invalid Index')
mngmtAgentTrap_6006 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006006)).setLabel("mngmtAgentTrap-6006").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_6006.setDescription('Memory allocation failure')
mngmtAgentTrap_6007 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006007)).setLabel("mngmtAgentTrap-6007").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_6007.setDescription('No physical stores found')
mngmtAgentTrap_6008 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006008)).setLabel("mngmtAgentTrap-6008").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_6008.setDescription('No storage system found')
mngmtAgentTrap_6009 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006009)).setLabel("mngmtAgentTrap-6009").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_6009.setDescription('No disk group found')
mngmtAgentTrap_6010 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006010)).setLabel("mngmtAgentTrap-6010").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_6010.setDescription('Too many disk groups')
mngmtAgentTrap_6011 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006011)).setLabel("mngmtAgentTrap-6011").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_6011.setDescription('No volumes found')
mngmtAgentTrap_6012 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006012)).setLabel("mngmtAgentTrap-6012").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_6012.setDescription('No Logical Disks Found')
mngmtAgentTrap_6013 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006013)).setLabel("mngmtAgentTrap-6013").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_6013.setDescription('Context ID changed during operation')
mngmtAgentTrap_6014 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006014)).setLabel("mngmtAgentTrap-6014").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_6014.setDescription('No Name')
mngmtAgentTrap_6015 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006015)).setLabel("mngmtAgentTrap-6015").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_6015.setDescription('Name Size Exceeded')
mngmtAgentTrap_6016 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006016)).setLabel("mngmtAgentTrap-6016").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_6016.setDescription('Shutdown Complete')
mngmtAgentTrap_6017 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006017)).setLabel("mngmtAgentTrap-6017").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_6017.setDescription('Mutex Creation Failure')
mngmtAgentTrap_6018 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006018)).setLabel("mngmtAgentTrap-6018").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_6018.setDescription('The request has timed out. The system is busy processing another command.')
mngmtAgentTrap_6019 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006019)).setLabel("mngmtAgentTrap-6019").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_6019.setDescription('No MLD Handle Set')
mngmtAgentTrap_6020 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006020)).setLabel("mngmtAgentTrap-6020").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_6020.setDescription('Failed Transport Layer Communication - No Such Id')
mngmtAgentTrap_6021 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006021)).setLabel("mngmtAgentTrap-6021").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_6021.setDescription('Failed Transport Layer Communication - TimeOut')
mngmtAgentTrap_6022 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006022)).setLabel("mngmtAgentTrap-6022").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_6022.setDescription('No initialized storage system objects found')
mngmtAgentTrap_6023 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006023)).setLabel("mngmtAgentTrap-6023").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_6023.setDescription('No Attached Port Found')
mngmtAgentTrap_6024 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006024)).setLabel("mngmtAgentTrap-6024").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_6024.setDescription('Failed to get SCMI Object Handle')
mngmtAgentTrap_6025 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006025)).setLabel("mngmtAgentTrap-6025").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_6025.setDescription('Shutdown Both Restart And Power Off Requested')
mngmtAgentTrap_6026 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006026)).setLabel("mngmtAgentTrap-6026").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_6026.setDescription('Shutdown Drive Shelf Power Off But No Enclosure Power Off Requested')
mngmtAgentTrap_6027 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006027)).setLabel("mngmtAgentTrap-6027").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_6027.setDescription('Shutdown Disable Battery But No Enclosure Power Off Requested')
mngmtAgentTrap_6028 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006028)).setLabel("mngmtAgentTrap-6028").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_6028.setDescription('Shutdown Disable Battery But Shutdown Unconditional Requested')
mngmtAgentTrap_6029 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006029)).setLabel("mngmtAgentTrap-6029").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_6029.setDescription('Shutdown Delay Out Of Range')
mngmtAgentTrap_6030 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006030)).setLabel("mngmtAgentTrap-6030").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_6030.setDescription('Cache Write Failure')
mngmtAgentTrap_6031 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006031)).setLabel("mngmtAgentTrap-6031").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_6031.setDescription('Battery Disable Failure')
mngmtAgentTrap_6032 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006032)).setLabel("mngmtAgentTrap-6032").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_6032.setDescription('Drive Shelf Disable Failure')
mngmtAgentTrap_6033 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006033)).setLabel("mngmtAgentTrap-6033").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_6033.setDescription('Battery Disable Failed on Both Controllers Batteries')
mngmtAgentTrap_6034 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006034)).setLabel("mngmtAgentTrap-6034").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_6034.setDescription('Battery Disable Failed on This Controllers Battery')
mngmtAgentTrap_6035 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006035)).setLabel("mngmtAgentTrap-6035").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_6035.setDescription('Battery Disable Failed on the Other Controllers Battery')
mngmtAgentTrap_6036 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006036)).setLabel("mngmtAgentTrap-6036").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_6036.setDescription('Requested disk failure protection level is set. Actual level will change when sufficient disk space is available.')
mngmtAgentTrap_6037 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006037)).setLabel("mngmtAgentTrap-6037").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_6037.setDescription('Physical Store Contains Stale or Foreign Volume Information.')
mngmtAgentTrap_6038 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006038)).setLabel("mngmtAgentTrap-6038").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_6038.setDescription('Controller Resynchronization or Reboot Occurred. Context Error')
mngmtAgentTrap_8001 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008001)).setLabel("mngmtAgentTrap-8001").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8001.setDescription('Invalid Operation')
mngmtAgentTrap_8002 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008002)).setLabel("mngmtAgentTrap-8002").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8002.setDescription('Storage system already created')
mngmtAgentTrap_8003 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008003)).setLabel("mngmtAgentTrap-8003").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8003.setDescription('Controller already part of storage system configuration')
mngmtAgentTrap_8004 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008004)).setLabel("mngmtAgentTrap-8004").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8004.setDescription('Physical Store Count Below Minimum')
mngmtAgentTrap_8005 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008005)).setLabel("mngmtAgentTrap-8005").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8005.setDescription('Controller not part of storage system configuration')
mngmtAgentTrap_8006 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008006)).setLabel("mngmtAgentTrap-8006").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8006.setDescription('Failed to uninitialize storage system')
mngmtAgentTrap_8007 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008007)).setLabel("mngmtAgentTrap-8007").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8007.setDescription('Storage system File Open Error')
mngmtAgentTrap_8008 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008008)).setLabel("mngmtAgentTrap-8008").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8008.setDescription('Storage system File Write Error')
mngmtAgentTrap_8009 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008009)).setLabel("mngmtAgentTrap-8009").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8009.setDescription('Storage system File Read Error')
mngmtAgentTrap_8010 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008010)).setLabel("mngmtAgentTrap-8010").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8010.setDescription('Name too long')
mngmtAgentTrap_8011 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008011)).setLabel("mngmtAgentTrap-8011").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8011.setDescription('No String Error')
mngmtAgentTrap_8012 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008012)).setLabel("mngmtAgentTrap-8012").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8012.setDescription('No MLD Handle Found')
mngmtAgentTrap_8013 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008013)).setLabel("mngmtAgentTrap-8013").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8013.setDescription('No Controllers Found')
mngmtAgentTrap_8014 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008014)).setLabel("mngmtAgentTrap-8014").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8014.setDescription('Controller Not Found On Loop')
mngmtAgentTrap_8015 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008015)).setLabel("mngmtAgentTrap-8015").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8015.setDescription('No Disk Groups Found')
mngmtAgentTrap_8016 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008016)).setLabel("mngmtAgentTrap-8016").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8016.setDescription('No Volumes Found')
mngmtAgentTrap_8017 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008017)).setLabel("mngmtAgentTrap-8017").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8017.setDescription('No Physical Stores Found')
mngmtAgentTrap_8018 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008018)).setLabel("mngmtAgentTrap-8018").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8018.setDescription('No Vdisks Found')
mngmtAgentTrap_8019 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008019)).setLabel("mngmtAgentTrap-8019").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8019.setDescription('No Hosts Found')
mngmtAgentTrap_8020 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008020)).setLabel("mngmtAgentTrap-8020").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8020.setDescription('Name already exists')
mngmtAgentTrap_8021 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008021)).setLabel("mngmtAgentTrap-8021").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8021.setDescription('Folder is not empty')
mngmtAgentTrap_8022 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008022)).setLabel("mngmtAgentTrap-8022").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8022.setDescription('Spares goal could not be met')
mngmtAgentTrap_8023 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008023)).setLabel("mngmtAgentTrap-8023").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8023.setDescription('Storage system object found')
mngmtAgentTrap_8024 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008024)).setLabel("mngmtAgentTrap-8024").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8024.setDescription('Storage system object not found')
mngmtAgentTrap_8025 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008025)).setLabel("mngmtAgentTrap-8025").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8025.setDescription('New Physical Store Detected But Not Found In Physical Store List')
mngmtAgentTrap_8026 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008026)).setLabel("mngmtAgentTrap-8026").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8026.setDescription('MldManager Handle is NULL')
mngmtAgentTrap_8027 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008027)).setLabel("mngmtAgentTrap-8027").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8027.setDescription('NscMngrInterface Handle is NULL')
mngmtAgentTrap_8028 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008028)).setLabel("mngmtAgentTrap-8028").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8028.setDescription('ScLockMngr Handle is NULL')
mngmtAgentTrap_8029 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008029)).setLabel("mngmtAgentTrap-8029").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8029.setDescription('Storage system initialization failed')
mngmtAgentTrap_8030 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008030)).setLabel("mngmtAgentTrap-8030").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8030.setDescription('MldMngr, NscMngrInterfaceMngr, or ScLockMngr Handle is NULL')
mngmtAgentTrap_8031 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008031)).setLabel("mngmtAgentTrap-8031").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8031.setDescription('Storage system initialization failed')
mngmtAgentTrap_8032 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008032)).setLabel("mngmtAgentTrap-8032").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8032.setDescription('Storage system discovery failed')
mngmtAgentTrap_8033 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008033)).setLabel("mngmtAgentTrap-8033").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8033.setDescription('Storage system already uninitialized or does not exist')
mngmtAgentTrap_8034 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008034)).setLabel("mngmtAgentTrap-8034").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8034.setDescription('Get Total Storage Failed')
mngmtAgentTrap_8035 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008035)).setLabel("mngmtAgentTrap-8035").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8035.setDescription('Storage system is uninitialized')
mngmtAgentTrap_8036 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008036)).setLabel("mngmtAgentTrap-8036").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8036.setDescription('Get Total Storage Available Failed')
mngmtAgentTrap_8037 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008037)).setLabel("mngmtAgentTrap-8037").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8037.setDescription('Get Total Storage Occupied Failed')
mngmtAgentTrap_8038 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008038)).setLabel("mngmtAgentTrap-8038").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8038.setDescription('Get Total Storage Free Failed')
mngmtAgentTrap_8039 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008039)).setLabel("mngmtAgentTrap-8039").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8039.setDescription('Get Disk Group Failed')
mngmtAgentTrap_8040 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008040)).setLabel("mngmtAgentTrap-8040").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8040.setDescription('Get Disk Group List Failed')
mngmtAgentTrap_8041 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008041)).setLabel("mngmtAgentTrap-8041").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8041.setDescription('Get Disk Group Count Failed')
mngmtAgentTrap_8042 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008042)).setLabel("mngmtAgentTrap-8042").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8042.setDescription('Create Volume Failed')
mngmtAgentTrap_8043 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008043)).setLabel("mngmtAgentTrap-8043").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8043.setDescription('Get Volume Failed')
mngmtAgentTrap_8044 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008044)).setLabel("mngmtAgentTrap-8044").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8044.setDescription('Get Volumes Failed')
mngmtAgentTrap_8045 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008045)).setLabel("mngmtAgentTrap-8045").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8045.setDescription('Get Volumes Count Failed')
mngmtAgentTrap_8046 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008046)).setLabel("mngmtAgentTrap-8046").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8046.setDescription('Get Vdisk Failed')
mngmtAgentTrap_8047 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008047)).setLabel("mngmtAgentTrap-8047").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8047.setDescription('Get Vdisk List Failed')
mngmtAgentTrap_8048 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008048)).setLabel("mngmtAgentTrap-8048").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8048.setDescription('Get Physical Store Failed')
mngmtAgentTrap_8049 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008049)).setLabel("mngmtAgentTrap-8049").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8049.setDescription('Get Physical Stores Failed')
mngmtAgentTrap_8050 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008050)).setLabel("mngmtAgentTrap-8050").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8050.setDescription('Get Physical Stores Count Failed')
mngmtAgentTrap_8051 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008051)).setLabel("mngmtAgentTrap-8051").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8051.setDescription('Create Vdisk Failed')
mngmtAgentTrap_8052 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008052)).setLabel("mngmtAgentTrap-8052").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8052.setDescription('Delete Vdisk Failed')
mngmtAgentTrap_8053 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008053)).setLabel("mngmtAgentTrap-8053").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8053.setDescription('Get Device Addition Policy Failed')
mngmtAgentTrap_8054 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008054)).setLabel("mngmtAgentTrap-8054").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8054.setDescription('Get Spares Current Failed')
mngmtAgentTrap_8055 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008055)).setLabel("mngmtAgentTrap-8055").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8055.setDescription('Get Spares Goal Failed')
mngmtAgentTrap_8056 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008056)).setLabel("mngmtAgentTrap-8056").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8056.setDescription('Get storage system events failed')
mngmtAgentTrap_8057 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008057)).setLabel("mngmtAgentTrap-8057").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8057.setDescription('Get Volume Replacement Delay Failed')
mngmtAgentTrap_8058 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008058)).setLabel("mngmtAgentTrap-8058").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8058.setDescription('Set Device Addition Policy Failed')
mngmtAgentTrap_8059 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008059)).setLabel("mngmtAgentTrap-8059").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8059.setDescription('Set Spares Goal Failed')
mngmtAgentTrap_8060 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008060)).setLabel("mngmtAgentTrap-8060").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8060.setDescription('Set Volume Replacement Delay Failed')
mngmtAgentTrap_8061 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008061)).setLabel("mngmtAgentTrap-8061").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8061.setDescription('Create controller Failed')
mngmtAgentTrap_8062 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008062)).setLabel("mngmtAgentTrap-8062").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8062.setDescription('Update controller Failed')
mngmtAgentTrap_8063 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008063)).setLabel("mngmtAgentTrap-8063").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8063.setDescription('Create Host Failed')
mngmtAgentTrap_8064 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008064)).setLabel("mngmtAgentTrap-8064").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8064.setDescription('Discard Host Failed')
mngmtAgentTrap_8065 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008065)).setLabel("mngmtAgentTrap-8065").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8065.setDescription('Get Host Failed')
mngmtAgentTrap_8066 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008066)).setLabel("mngmtAgentTrap-8066").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8066.setDescription('Get Host List Failed')
mngmtAgentTrap_8067 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008067)).setLabel("mngmtAgentTrap-8067").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8067.setDescription('Get Host Count Failed')
mngmtAgentTrap_8068 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008068)).setLabel("mngmtAgentTrap-8068").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8068.setDescription('Get Presented Unit List Failed')
mngmtAgentTrap_8069 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008069)).setLabel("mngmtAgentTrap-8069").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8069.setDescription('Get Presented Unit Count Failed')
mngmtAgentTrap_8070 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008070)).setLabel("mngmtAgentTrap-8070").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8070.setDescription('Free View Failed')
mngmtAgentTrap_8071 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008071)).setLabel("mngmtAgentTrap-8071").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8071.setDescription('Storage system shutdown Failed')
mngmtAgentTrap_8073 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008073)).setLabel("mngmtAgentTrap-8073").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8073.setDescription('Get Derived Unit List Failed')
mngmtAgentTrap_8074 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008074)).setLabel("mngmtAgentTrap-8074").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8074.setDescription('Get Derived Unit Count Failed')
mngmtAgentTrap_8075 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008075)).setLabel("mngmtAgentTrap-8075").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8075.setDescription('Get Vdisk list failed')
mngmtAgentTrap_8076 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008076)).setLabel("mngmtAgentTrap-8076").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8076.setDescription('Get Vdisk count failed')
mngmtAgentTrap_8077 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008077)).setLabel("mngmtAgentTrap-8077").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8077.setDescription('Error while building Vdisk root view')
mngmtAgentTrap_8078 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008078)).setLabel("mngmtAgentTrap-8078").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8078.setDescription('Error while building host root view')
mngmtAgentTrap_8079 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008079)).setLabel("mngmtAgentTrap-8079").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8079.setDescription('Error while building disk group root view')
mngmtAgentTrap_8080 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008080)).setLabel("mngmtAgentTrap-8080").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8080.setDescription('Error while building hardware root view')
mngmtAgentTrap_8081 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008081)).setLabel("mngmtAgentTrap-8081").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8081.setDescription('Specified time format is incorrect')
mngmtAgentTrap_8082 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008082)).setLabel("mngmtAgentTrap-8082").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8082.setDescription('Error creating/opening time synchronization file.')
mngmtAgentTrap_8083 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008083)).setLabel("mngmtAgentTrap-8083").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8083.setDescription('NSCList reordered.')
mngmtAgentTrap_8084 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008084)).setLabel("mngmtAgentTrap-8084").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8084.setDescription('NscList mutex Get error')
mngmtAgentTrap_8085 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008085)).setLabel("mngmtAgentTrap-8085").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8085.setDescription('Storage System is managed by another agent')
mngmtAgentTrap_8086 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008086)).setLabel("mngmtAgentTrap-8086").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8086.setDescription('Memory allocation failure')
mngmtAgentTrap_8087 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008087)).setLabel("mngmtAgentTrap-8087").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8087.setDescription('Failed to obtain list of DR Groups')
mngmtAgentTrap_8088 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008088)).setLabel("mngmtAgentTrap-8088").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8088.setDescription('Failed to obtain count of DR Groups')
mngmtAgentTrap_8089 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008089)).setLabel("mngmtAgentTrap-8089").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8089.setDescription('Failed to build DR Group view')
mngmtAgentTrap_8090 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008090)).setLabel("mngmtAgentTrap-8090").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8090.setDescription('No Devices found on Controller Back End Loops')
mngmtAgentTrap_8091 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008091)).setLabel("mngmtAgentTrap-8091").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8091.setDescription('The DR Group cannot have Virtual Disks drawn from Disk Groups of different drive types.')
mngmtAgentTrap_8092 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008092)).setLabel("mngmtAgentTrap-8092").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8092.setDescription('The storage array name has changed.')
mngmtAgentTrap_8093 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008093)).setLabel("mngmtAgentTrap-8093").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8093.setDescription('A new storage array has been discovered.')
mngmtAgentTrap_8094 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008094)).setLabel("mngmtAgentTrap-8094").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8094.setDescription('The storage cell was uninitialized.')
mngmtAgentTrap_8095 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008095)).setLabel("mngmtAgentTrap-8095").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_8095.setDescription('The storage cell was initialized.')
mngmtAgentTrap_9001 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009001)).setLabel("mngmtAgentTrap-9001").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_9001.setDescription('Vdisk File Open Error')
mngmtAgentTrap_9002 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009002)).setLabel("mngmtAgentTrap-9002").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_9002.setDescription('Vdisk File Write Error')
mngmtAgentTrap_9003 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009003)).setLabel("mngmtAgentTrap-9003").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_9003.setDescription('Vdisk File Read Error')
mngmtAgentTrap_9004 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009004)).setLabel("mngmtAgentTrap-9004").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_9004.setDescription('Vdisk name too long')
mngmtAgentTrap_9005 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009005)).setLabel("mngmtAgentTrap-9005").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_9005.setDescription('Vdisk No String Error')
mngmtAgentTrap_9006 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009006)).setLabel("mngmtAgentTrap-9006").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_9006.setDescription('Vdisk No Object Error')
mngmtAgentTrap_9007 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009007)).setLabel("mngmtAgentTrap-9007").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_9007.setDescription('Vdisk still exists')
mngmtAgentTrap_9008 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009008)).setLabel("mngmtAgentTrap-9008").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_9008.setDescription('Vdisk Invalid Value')
mngmtAgentTrap_9009 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009009)).setLabel("mngmtAgentTrap-9009").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_9009.setDescription('An outstanding command is still in progress')
mngmtAgentTrap_9010 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009010)).setLabel("mngmtAgentTrap-9010").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_9010.setDescription('Requested Vdisk size exceeds the available size')
mngmtAgentTrap_9011 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009011)).setLabel("mngmtAgentTrap-9011").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_9011.setDescription('Vdisk size may be expanded but not reduced')
mngmtAgentTrap_9012 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009012)).setLabel("mngmtAgentTrap-9012").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_9012.setDescription('Deletion completed')
mngmtAgentTrap_9013 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009013)).setLabel("mngmtAgentTrap-9013").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_9013.setDescription('Creation completed')
mngmtAgentTrap_9014 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009014)).setLabel("mngmtAgentTrap-9014").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_9014.setDescription('Size expansion completed')
mngmtAgentTrap_9015 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009015)).setLabel("mngmtAgentTrap-9015").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_9015.setDescription('Vdisk cache data lost error')
mngmtAgentTrap_9016 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009016)).setLabel("mngmtAgentTrap-9016").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_9016.setDescription('Vdisk data lost error resolved')
mngmtAgentTrap_9017 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009017)).setLabel("mngmtAgentTrap-9017").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_9017.setDescription('Operation rejected - The Vdisk has a sharing relationship with another object ')
mngmtAgentTrap_9018 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009018)).setLabel("mngmtAgentTrap-9018").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_9018.setDescription('Operation on this Vdisk was rejected due to its degraded condition')
mngmtAgentTrap_9019 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009019)).setLabel("mngmtAgentTrap-9019").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_9019.setDescription('Operation on this Vdisk can only be performed if it is presented to a host')
mngmtAgentTrap_9020 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009020)).setLabel("mngmtAgentTrap-9020").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_9020.setDescription('Cache policies cannot be modified if Vdisk is presented to a host')
mngmtAgentTrap_9021 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009021)).setLabel("mngmtAgentTrap-9021").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_9021.setDescription('Allowed property changes successful. (Cache policy changes not allowed while Vdisk is presented to a host.)')
mngmtAgentTrap_9022 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009022)).setLabel("mngmtAgentTrap-9022").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_9022.setDescription('Requested redundancy type cannot be implemented with the current disk group condition.')
mngmtAgentTrap_9023 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009023)).setLabel("mngmtAgentTrap-9023").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_9023.setDescription('Your Vdisk was created but cannot be presented at this time. It can be presented when it is fully allocated.')
mngmtAgentTrap_9025 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009025)).setLabel("mngmtAgentTrap-9025").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_9025.setDescription('Vdisk device data lost error')
mngmtAgentTrap_9026 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009026)).setLabel("mngmtAgentTrap-9026").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_9026.setDescription('The first character of the World Wide LUN Name must be a 6.')
mngmtAgentTrap_9027 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009027)).setLabel("mngmtAgentTrap-9027").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_9027.setDescription('Virtual disk cache and inoperative data lost error')
mngmtAgentTrap_9028 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009028)).setLabel("mngmtAgentTrap-9028").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_9028.setDescription('Virtual disk inoperative data lost error')
mngmtAgentTrap_9029 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009029)).setLabel("mngmtAgentTrap-9029").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_9029.setDescription('Virtual disk condition failed because of an inoperative data lost error.')
mngmtAgentTrap_9030 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009030)).setLabel("mngmtAgentTrap-9030").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_9030.setDescription('The property requested cannot be changed on a snapshot.')
mngmtAgentTrap_9031 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009031)).setLabel("mngmtAgentTrap-9031").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_9031.setDescription('The World Wide LUN Name cannot be changed for a presented Vdisk Active member or snapshot.')
mngmtAgentTrap_9032 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009032)).setLabel("mngmtAgentTrap-9032").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_9032.setDescription('Unknown property, request rejected')
mngmtAgentTrap_9033 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009033)).setLabel("mngmtAgentTrap-9033").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_9033.setDescription('This Vdisk was deleted as the indirect result of another user command.')
mngmtAgentTrap_9034 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009034)).setLabel("mngmtAgentTrap-9034").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_9034.setDescription('The requested allocation policy cannot be satisfied. A different allocation policy is already in use by another snapshot in the same family.')
mngmtAgentTrap_9035 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009035)).setLabel("mngmtAgentTrap-9035").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_9035.setDescription('The deletion of this Vdisk cannot take place. The original Vdisk that this is being snapcloned from is in an Inoperative state which must first be resolved.')
mngmtAgentTrap_9036 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009036)).setLabel("mngmtAgentTrap-9036").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_9036.setDescription('Synchronous creation of virtual disk has been aborted due to an internal error. Switching to asynchronous mode to complete the virtual disk creation.')
mngmtAgentTrap_9037 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009037)).setLabel("mngmtAgentTrap-9037").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_9037.setDescription('Convert to Container Completed')
mngmtAgentTrap_9038 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009038)).setLabel("mngmtAgentTrap-9038").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_9038.setDescription('Source virtual disk write-cache policy must be Write-Through.')
mngmtAgentTrap_9039 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009039)).setLabel("mngmtAgentTrap-9039").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_9039.setDescription('WWID specified is invalid.')
mngmtAgentTrap_9040 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009040)).setLabel("mngmtAgentTrap-9040").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_9040.setDescription('This property cannot be changed on this virtual disk (vdisk is either an empty container or a snapshot).')
mngmtAgentTrap_9041 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009041)).setLabel("mngmtAgentTrap-9041").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_9041.setDescription('Cannot perform this operation on a Data Replication (DR) member virtual disk.')
mngmtAgentTrap_9042 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009042)).setLabel("mngmtAgentTrap-9042").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_9042.setDescription('Convert to Container Not Complete')
mngmtAgentTrap_10001 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010001)).setLabel("mngmtAgentTrap-10001").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_10001.setDescription('Storage Object Broker Ready')
mngmtAgentTrap_10004 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010004)).setLabel("mngmtAgentTrap-10004").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_10004.setDescription('Storage system is not initialized')
mngmtAgentTrap_10006 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010006)).setLabel("mngmtAgentTrap-10006").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_10006.setDescription('SOB Memory Allocation Failure')
mngmtAgentTrap_10010 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010010)).setLabel("mngmtAgentTrap-10010").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_10010.setDescription('Your initialized system must have at least one disk group')
mngmtAgentTrap_10011 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010011)).setLabel("mngmtAgentTrap-10011").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_10011.setDescription('Cannot talk to all available controllers')
mngmtAgentTrap_10012 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010012)).setLabel("mngmtAgentTrap-10012").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_10012.setDescription('Command rejected - Folder is not empty')
mngmtAgentTrap_10013 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010013)).setLabel("mngmtAgentTrap-10013").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_10013.setDescription('Command rejected - Vdisk(s), Container(s) or a data replication log are contained in this disk group')
mngmtAgentTrap_10014 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010014)).setLabel("mngmtAgentTrap-10014").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_10014.setDescription('Command rejected - Vdisk(s) are presented to this host')
mngmtAgentTrap_10015 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010015)).setLabel("mngmtAgentTrap-10015").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_10015.setDescription('Command rejected - This Vdisk has a sharing relationship with another object ')
mngmtAgentTrap_10017 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010017)).setLabel("mngmtAgentTrap-10017").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_10017.setDescription('Command rejected - Number of disk groups will exceed the maximum allowable number ')
mngmtAgentTrap_10018 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010018)).setLabel("mngmtAgentTrap-10018").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_10018.setDescription('Cannot access the password file ')
mngmtAgentTrap_10019 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010019)).setLabel("mngmtAgentTrap-10019").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_10019.setDescription('Enterprise Login - Complete')
mngmtAgentTrap_10020 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010020)).setLabel("mngmtAgentTrap-10020").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_10020.setDescription('Command rejected - Disks in the group would go below the minimum required number.')
mngmtAgentTrap_10021 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010021)).setLabel("mngmtAgentTrap-10021").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_10021.setDescription('Rediscovery of controllers - Complete')
mngmtAgentTrap_10022 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010022)).setLabel("mngmtAgentTrap-10022").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_10022.setDescription('Unable to establish communication with controller, check all connections. ')
mngmtAgentTrap_10023 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010023)).setLabel("mngmtAgentTrap-10023").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_10023.setDescription('Disk Group Data Lost Error Resolution Sequence 3 - Disk group resolved to normal')
mngmtAgentTrap_10024 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010024)).setLabel("mngmtAgentTrap-10024").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_10024.setDescription('Disk Group Data Lost Error Resolution Sequence 1 - Failed Vdisks marked for deletion')
mngmtAgentTrap_10025 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010025)).setLabel("mngmtAgentTrap-10025").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_10025.setDescription('Disk Group Data Lost Error Resolution Sequence 2 - Failed Vdisks deletion in progress')
mngmtAgentTrap_10026 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010026)).setLabel("mngmtAgentTrap-10026").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_10026.setDescription('Disk Group Data Lost Error Resolution Sequence 3 - Disk group deleted')
mngmtAgentTrap_10027 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010027)).setLabel("mngmtAgentTrap-10027").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_10027.setDescription('Creating the Vdisk would exceed the maximum allowable Vdisk count')
mngmtAgentTrap_10028 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010028)).setLabel("mngmtAgentTrap-10028").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_10028.setDescription('Volume insufficient resources')
mngmtAgentTrap_10029 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010029)).setLabel("mngmtAgentTrap-10029").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_10029.setDescription('Process mutex is locked')
mngmtAgentTrap_10030 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010030)).setLabel("mngmtAgentTrap-10030").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_10030.setDescription('Invalid URL request type')
mngmtAgentTrap_10031 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010031)).setLabel("mngmtAgentTrap-10031").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_10031.setDescription('Invalid URL object type')
mngmtAgentTrap_10035 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010035)).setLabel("mngmtAgentTrap-10035").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_10035.setDescription('The snapshot/Snapclone license cannot be validated. Either the license key has not been entered, or there is a system communication failure.')
mngmtAgentTrap_10036 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010036)).setLabel("mngmtAgentTrap-10036").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_10036.setDescription('A data replication license cannot be validated. Either the license key has not been entered, or there is a system communication failure.')
mngmtAgentTrap_10037 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010037)).setLabel("mngmtAgentTrap-10037").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_10037.setDescription('Object name should not be empty or exceed its maximum length')
mngmtAgentTrap_10038 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010038)).setLabel("mngmtAgentTrap-10038").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_10038.setDescription('Object comments exceeds maximum length')
mngmtAgentTrap_10039 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010039)).setLabel("mngmtAgentTrap-10039").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_10039.setDescription('Vdisk does not meet the requirements to be part of a DR group.')
mngmtAgentTrap_10040 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010040)).setLabel("mngmtAgentTrap-10040").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_10040.setDescription('The Eva selected as the Destination for the DR group is invalid. Either it has a DR relationship with another EVA or it is not the same EVA that the source EVA presently has a DR relationship with.')
mngmtAgentTrap_10041 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010041)).setLabel("mngmtAgentTrap-10041").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_10041.setDescription('Cannot group the specified disk device because the disk is already in a disk group.')
mngmtAgentTrap_10042 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010042)).setLabel("mngmtAgentTrap-10042").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_10042.setDescription('Cannot ungroup the specified disk device because the disk is not grouped.')
mngmtAgentTrap_10043 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010043)).setLabel("mngmtAgentTrap-10043").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_10043.setDescription('Object ID provided, or object type, is invalid for the requested operation.')
mngmtAgentTrap_10044 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010044)).setLabel("mngmtAgentTrap-10044").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_10044.setDescription('Specified remote disk group does not exist.')
mngmtAgentTrap_11001 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136011001)).setLabel("mngmtAgentTrap-11001").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_11001.setDescription('Agent startup complete')
mngmtAgentTrap_11002 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136011002)).setLabel("mngmtAgentTrap-11002").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_11002.setDescription('Agent shutdown complete')
mngmtAgentTrap_11003 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136011003)).setLabel("mngmtAgentTrap-11003").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_11003.setDescription('Insufficient memory to create a new object, Heap may be full!')
mngmtAgentTrap_11004 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136011004)).setLabel("mngmtAgentTrap-11004").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_11004.setDescription('Agent Startup Failed')
mngmtAgentTrap_12001 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136012001)).setLabel("mngmtAgentTrap-12001").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_12001.setDescription('Nsc Manager Interface No controllers Found')
mngmtAgentTrap_12002 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136012002)).setLabel("mngmtAgentTrap-12002").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_12002.setDescription('Nsc Manager Interface Index Out Of Range')
mngmtAgentTrap_12003 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136012003)).setLabel("mngmtAgentTrap-12003").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_12003.setDescription('Unable to process command at this time. Retry the command or check all connections. ')
mngmtAgentTrap_12004 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136012004)).setLabel("mngmtAgentTrap-12004").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_12004.setDescription('Nsc Manager Interface Initialization Complete')
mngmtAgentTrap_12005 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136012005)).setLabel("mngmtAgentTrap-12005").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_12005.setDescription('Nsc Manager Interface Initialization Failed')
mngmtAgentTrap_12008 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136012008)).setLabel("mngmtAgentTrap-12008").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_12008.setDescription('No Disk Groups Available For Access')
mngmtAgentTrap_13002 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136013002)).setLabel("mngmtAgentTrap-13002").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_13002.setDescription('Notification Mngr Online')
mngmtAgentTrap_13003 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136013003)).setLabel("mngmtAgentTrap-13003").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_13003.setDescription('Notification Mngr Offline')
mngmtAgentTrap_13004 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136013004)).setLabel("mngmtAgentTrap-13004").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_13004.setDescription('NM Startup Complete')
mngmtAgentTrap_13007 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136013007)).setLabel("mngmtAgentTrap-13007").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_13007.setDescription('Notification Failed')
mngmtAgentTrap_13009 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136013009)).setLabel("mngmtAgentTrap-13009").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_13009.setDescription('Notification Failed - Network Error')
mngmtAgentTrap_13012 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136013012)).setLabel("mngmtAgentTrap-13012").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_13012.setDescription('NM Prev Failed Notification Successfully Notified')
mngmtAgentTrap_13015 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136013015)).setLabel("mngmtAgentTrap-13015").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_13015.setDescription('NM SNMP Packet Failed')
mngmtAgentTrap_13017 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136013017)).setLabel("mngmtAgentTrap-13017").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_13017.setDescription('NM Memory Allocation Error')
mngmtAgentTrap_13018 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136013018)).setLabel("mngmtAgentTrap-13018").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_13018.setDescription('NM StorageCell handle is NULL')
mngmtAgentTrap_13019 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136013019)).setLabel("mngmtAgentTrap-13019").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_13019.setDescription('NM User defined event state file is empty')
mngmtAgentTrap_13020 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136013020)).setLabel("mngmtAgentTrap-13020").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_13020.setDescription('NM Notification Failed - Notification Matrix is NULL ')
mngmtAgentTrap_14001 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136014001)).setLabel("mngmtAgentTrap-14001").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_14001.setDescription('View Already Exists')
mngmtAgentTrap_14002 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136014002)).setLabel("mngmtAgentTrap-14002").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_14002.setDescription('View Is Not Set')
mngmtAgentTrap_14003 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136014003)).setLabel("mngmtAgentTrap-14003").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_14003.setDescription('Object not found in View')
mngmtAgentTrap_14004 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136014004)).setLabel("mngmtAgentTrap-14004").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_14004.setDescription('View Index Is Out Of Range')
mngmtAgentTrap_14005 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136014005)).setLabel("mngmtAgentTrap-14005").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_14005.setDescription('View Object - Invalid Object Condition')
mngmtAgentTrap_14006 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136014006)).setLabel("mngmtAgentTrap-14006").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_14006.setDescription('View Object - Invalid Object Type')
mngmtAgentTrap_14007 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136014007)).setLabel("mngmtAgentTrap-14007").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_14007.setDescription('View is not built.')
mngmtAgentTrap_14008 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136014008)).setLabel("mngmtAgentTrap-14008").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_14008.setDescription('View Object does not exist.')
mngmtAgentTrap_14009 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136014009)).setLabel("mngmtAgentTrap-14009").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_14009.setDescription('Building View List Object - Complete')
mngmtAgentTrap_14010 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136014010)).setLabel("mngmtAgentTrap-14010").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_14010.setDescription('Building View List Object - Failed')
mngmtAgentTrap_14012 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136014012)).setLabel("mngmtAgentTrap-14012").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_14012.setDescription('View Find by UID Failed')
mngmtAgentTrap_14013 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136014013)).setLabel("mngmtAgentTrap-14013").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_14013.setDescription('View Find by Type Failed')
mngmtAgentTrap_14017 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136014017)).setLabel("mngmtAgentTrap-14017").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_14017.setDescription('View Find by Type by Name Failed')
mngmtAgentTrap_15001 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136015001)).setLabel("mngmtAgentTrap-15001").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_15001.setDescription('Tree View Symbol Not Found')
mngmtAgentTrap_15002 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136015002)).setLabel("mngmtAgentTrap-15002").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_15002.setDescription('Tree View Id Symbol Not Found')
mngmtAgentTrap_15003 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136015003)).setLabel("mngmtAgentTrap-15003").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_15003.setDescription('Tree Cursor Symbol Not Found')
mngmtAgentTrap_15004 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136015004)).setLabel("mngmtAgentTrap-15004").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_15004.setDescription('Tree Cursor Id Symbol Not Found')
mngmtAgentTrap_15005 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136015005)).setLabel("mngmtAgentTrap-15005").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_15005.setDescription('Tree Sibling Symbol Not Found')
mngmtAgentTrap_15006 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136015006)).setLabel("mngmtAgentTrap-15006").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_15006.setDescription('Tree Total Children Symbol Not Found')
mngmtAgentTrap_15007 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136015007)).setLabel("mngmtAgentTrap-15007").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_15007.setDescription('Tree Expansion Symbol Not Found')
mngmtAgentTrap_15008 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136015008)).setLabel("mngmtAgentTrap-15008").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_15008.setDescription('Tree Contraction Symbol Not Found')
mngmtAgentTrap_15009 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136015009)).setLabel("mngmtAgentTrap-15009").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_15009.setDescription('Tree Invalid Descriptor String')
mngmtAgentTrap_16001 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016001)).setLabel("mngmtAgentTrap-16001").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_16001.setDescription('Ema Short Status - Reissue Command')
mngmtAgentTrap_16004 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016004)).setLabel("mngmtAgentTrap-16004").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_16004.setDescription('Ema Invalid Handle Set In Request Packet')
mngmtAgentTrap_16005 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016005)).setLabel("mngmtAgentTrap-16005").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_16005.setDescription('Ema No Pstore At Referenced Location')
mngmtAgentTrap_16008 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016008)).setLabel("mngmtAgentTrap-16008").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_16008.setDescription('Ema No Device Found')
mngmtAgentTrap_16010 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016010)).setLabel("mngmtAgentTrap-16010").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_16010.setDescription('Ema Could Not Find SubEnclosure in Configuration List')
mngmtAgentTrap_16012 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016012)).setLabel("mngmtAgentTrap-16012").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_16012.setDescription('Ema Non-specific error occurred ')
mngmtAgentTrap_16013 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016013)).setLabel("mngmtAgentTrap-16013").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_16013.setDescription('Ema Shelf WWN Could Not Be Accessed Through A Drive')
mngmtAgentTrap_16014 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016014)).setLabel("mngmtAgentTrap-16014").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_16014.setDescription('Ema EMU Failed To Enter Primary Mode')
mngmtAgentTrap_16015 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016015)).setLabel("mngmtAgentTrap-16015").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_16015.setDescription('Ema EMU Failed To Exit Primary Mode')
mngmtAgentTrap_16016 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016016)).setLabel("mngmtAgentTrap-16016").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_16016.setDescription('Ema Downloaded File Does Not Contain Valid Fibre Channel Loader [status:1]')
mngmtAgentTrap_16017 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016017)).setLabel("mngmtAgentTrap-16017").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_16017.setDescription('Ema Downloaded File Format Is Not Recognized [status:2]')
mngmtAgentTrap_16018 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016018)).setLabel("mngmtAgentTrap-16018").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_16018.setDescription('Ema Incorrect Firmware In Downloaded File [status:3]')
mngmtAgentTrap_16019 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016019)).setLabel("mngmtAgentTrap-16019").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_16019.setDescription('Ema Downloaded Loader is Too Large [status:4]')
mngmtAgentTrap_16020 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016020)).setLabel("mngmtAgentTrap-16020").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_16020.setDescription('Ema Invalid Checksum [status:5]')
mngmtAgentTrap_16021 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016021)).setLabel("mngmtAgentTrap-16021").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_16021.setDescription('Ema Previous Offset Plus Previous Length Not Equal To Current Offset [status:6]')
mngmtAgentTrap_16022 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016022)).setLabel("mngmtAgentTrap-16022").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_16022.setDescription('Ema Downloaded Loader Terminated Incorrectly [status:7]')
mngmtAgentTrap_16023 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016023)).setLabel("mngmtAgentTrap-16023").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_16023.setDescription('Ema EMU Out Of Memory [status:8]')
mngmtAgentTrap_16024 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016024)).setLabel("mngmtAgentTrap-16024").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_16024.setDescription('Ema EMU CDB Timeout -- Download Aborted [status:9]')
mngmtAgentTrap_16025 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016025)).setLabel("mngmtAgentTrap-16025").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_16025.setDescription('Ema EMU Internal State Machine Error [status:10]')
mngmtAgentTrap_16026 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016026)).setLabel("mngmtAgentTrap-16026").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_16026.setDescription('Ema EMU Flash Erasure Failure [status:11]')
mngmtAgentTrap_16027 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016027)).setLabel("mngmtAgentTrap-16027").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_16027.setDescription('Ema EMU In Primary Mode - Cannot Download To Primary EMU [status:12]')
mngmtAgentTrap_16028 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016028)).setLabel("mngmtAgentTrap-16028").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_16028.setDescription('Ema Previous Offset Plus Previous Length Greater Than Total Size [status:13]')
mngmtAgentTrap_16029 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016029)).setLabel("mngmtAgentTrap-16029").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_16029.setDescription('Ema Current Total Size Different From Previous Total Size [status:14]')
mngmtAgentTrap_16030 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016030)).setLabel("mngmtAgentTrap-16030").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_16030.setDescription('Ema Could Not Restore Reporting Group Number. Final Download Record Error')
mngmtAgentTrap_16031 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016031)).setLabel("mngmtAgentTrap-16031").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_16031.setDescription('Ema Could Not Recovery From Invop. Invop Retries Exhausted')
mngmtAgentTrap_16032 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016032)).setLabel("mngmtAgentTrap-16032").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_16032.setDescription('Ema Requested WWN Does Not Match Enclosure WWN')
mngmtAgentTrap_16033 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016033)).setLabel("mngmtAgentTrap-16033").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_16033.setDescription('Ema EMU Enclosure Services Error Occurred. EMU May Be Unavailable or Not Installed')
mngmtAgentTrap_16034 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016034)).setLabel("mngmtAgentTrap-16034").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_16034.setDescription('Ema SCSI Error Occurred While Trying To Communicate With EMU')
mngmtAgentTrap_16035 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016035)).setLabel("mngmtAgentTrap-16035").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_16035.setDescription('Ema Could Not Open EMU Firmware File')
mngmtAgentTrap_16036 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016036)).setLabel("mngmtAgentTrap-16036").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_16036.setDescription('Ema EMU Firmware File Name Is Null')
mngmtAgentTrap_16037 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016037)).setLabel("mngmtAgentTrap-16037").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_16037.setDescription('Ema EMU Firmware Download Retries Exhausted. Manual Download May Be Required')
mngmtAgentTrap_16038 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016038)).setLabel("mngmtAgentTrap-16038").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_16038.setDescription('Ema EMU Current Firmware Version Matches Upgrade Firmware Version. No Upgrade Will Be Performed.')
mngmtAgentTrap_16039 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016039)).setLabel("mngmtAgentTrap-16039").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_16039.setDescription('Ema EMU Firmware Upgrade Success')
mngmtAgentTrap_16040 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016040)).setLabel("mngmtAgentTrap-16040").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_16040.setDescription('Ema EMU In Load State. Do Not Power Off. Reload EMU Firmware ')
mngmtAgentTrap_17001 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136017001)).setLabel("mngmtAgentTrap-17001").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_17001.setDescription('Drive Code Load Descriptor File Open Error')
mngmtAgentTrap_17002 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136017002)).setLabel("mngmtAgentTrap-17002").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_17002.setDescription('Drive Code Load Descriptor File Parsing Error - Invalid Line')
mngmtAgentTrap_17003 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136017003)).setLabel("mngmtAgentTrap-17003").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_17003.setDescription('Drive Code Load Image File Open Error, ')
mngmtAgentTrap_17004 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136017004)).setLabel("mngmtAgentTrap-17004").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_17004.setDescription('Drive Code Load Image File Error Getting File Size')
mngmtAgentTrap_17005 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136017005)).setLabel("mngmtAgentTrap-17005").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_17005.setDescription('Drive Code Load Image File Buffer Allocation Error')
mngmtAgentTrap_17006 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136017006)).setLabel("mngmtAgentTrap-17006").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_17006.setDescription('Drive Code Load Image File Read Error')
mngmtAgentTrap_17007 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136017007)).setLabel("mngmtAgentTrap-17007").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_17007.setDescription('Drive Code Load Drive Firmware Update Failed ')
mngmtAgentTrap_17008 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136017008)).setLabel("mngmtAgentTrap-17008").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_17008.setDescription('Drive Code Load Drive Inquiry Failed')
mngmtAgentTrap_17009 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136017009)).setLabel("mngmtAgentTrap-17009").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_17009.setDescription('Drive Code Load Format Command Failed')
mngmtAgentTrap_17012 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136017012)).setLabel("mngmtAgentTrap-17012").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_17012.setDescription('Drive Code Load Get Physical Store Condition Failed')
mngmtAgentTrap_17013 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136017013)).setLabel("mngmtAgentTrap-17013").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_17013.setDescription('Drive Code Load Get Volume Condition Failed')
mngmtAgentTrap_17014 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136017014)).setLabel("mngmtAgentTrap-17014").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_17014.setDescription('Drive Code Load Drive Spin Up Error')
mngmtAgentTrap_17015 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136017015)).setLabel("mngmtAgentTrap-17015").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_17015.setDescription('Drive Code Load - Complete')
mngmtAgentTrap_17016 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136017016)).setLabel("mngmtAgentTrap-17016").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_17016.setDescription('Drive Code Load Disk Group Migration In Progress')
mngmtAgentTrap_17017 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136017017)).setLabel("mngmtAgentTrap-17017").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_17017.setDescription('Drive Code Load Unable To Code Load Disks Part Of A Group ')
mngmtAgentTrap_18001 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018001)).setLabel("mngmtAgentTrap-18001").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_18001.setDescription('Api Created Element Success')
mngmtAgentTrap_18002 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018002)).setLabel("mngmtAgentTrap-18002").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_18002.setDescription('Api Created Storage Success')
mngmtAgentTrap_18003 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018003)).setLabel("mngmtAgentTrap-18003").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_18003.setDescription('Api Created Storage Client Success')
mngmtAgentTrap_18004 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018004)).setLabel("mngmtAgentTrap-18004").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_18004.setDescription('Api Set Storage Success')
mngmtAgentTrap_18005 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018005)).setLabel("mngmtAgentTrap-18005").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_18005.setDescription('Api Set Element Success')
mngmtAgentTrap_18006 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018006)).setLabel("mngmtAgentTrap-18006").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_18006.setDescription('Api Deleted Element Success')
mngmtAgentTrap_18007 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018007)).setLabel("mngmtAgentTrap-18007").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_18007.setDescription('Api Deleted Storage Success')
mngmtAgentTrap_18008 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018008)).setLabel("mngmtAgentTrap-18008").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_18008.setDescription('Api Deleted Storage Client Success')
mngmtAgentTrap_18009 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018009)).setLabel("mngmtAgentTrap-18009").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_18009.setDescription('Api Created Snapshot Success ')
mngmtAgentTrap_18010 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018010)).setLabel("mngmtAgentTrap-18010").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_18010.setDescription('Api Created Clone Success')
mngmtAgentTrap_18018 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018018)).setLabel("mngmtAgentTrap-18018").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_18018.setDescription('Api Unable To Get The Lock')
mngmtAgentTrap_18019 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018019)).setLabel("mngmtAgentTrap-18019").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_18019.setDescription('Api Created PresentedUnit Success')
mngmtAgentTrap_18022 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018022)).setLabel("mngmtAgentTrap-18022").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_18022.setDescription('Api Create DiskGroup Success')
mngmtAgentTrap_18024 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018024)).setLabel("mngmtAgentTrap-18024").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_18024.setDescription('Api Create Folder Success')
mngmtAgentTrap_18025 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018025)).setLabel("mngmtAgentTrap-18025").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_18025.setDescription('Api Delete Folder Success')
mngmtAgentTrap_18028 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018028)).setLabel("mngmtAgentTrap-18028").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_18028.setDescription('Api Set Folder Success')
mngmtAgentTrap_18034 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018034)).setLabel("mngmtAgentTrap-18034").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_18034.setDescription('Api Invalid User Name Or Password Error')
mngmtAgentTrap_18036 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018036)).setLabel("mngmtAgentTrap-18036").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_18036.setDescription('Api Delete Presented Unit Success')
mngmtAgentTrap_18038 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018038)).setLabel("mngmtAgentTrap-18038").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_18038.setDescription('Api Set Diskgroup Success ')
mngmtAgentTrap_18039 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018039)).setLabel("mngmtAgentTrap-18039").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_18039.setDescription('Api Set Disk Success')
mngmtAgentTrap_18040 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018040)).setLabel("mngmtAgentTrap-18040").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_18040.setDescription('Api Delete Storage Family Success ')
mngmtAgentTrap_18041 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018041)).setLabel("mngmtAgentTrap-18041").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_18041.setDescription('Api Set Storage Family Success')
mngmtAgentTrap_18042 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018042)).setLabel("mngmtAgentTrap-18042").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_18042.setDescription('Api Control Memory Allocation Failure')
mngmtAgentTrap_18045 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018045)).setLabel("mngmtAgentTrap-18045").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_18045.setDescription('Api Element Codeload Success ')
mngmtAgentTrap_18047 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018047)).setLabel("mngmtAgentTrap-18047").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_18047.setDescription('Api Disk Codeload Success')
mngmtAgentTrap_18048 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018048)).setLabel("mngmtAgentTrap-18048").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_18048.setDescription('Api Monitor Codeload Success')
mngmtAgentTrap_18049 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018049)).setLabel("mngmtAgentTrap-18049").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_18049.setDescription('Api Added Port WWID Success')
mngmtAgentTrap_18050 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018050)).setLabel("mngmtAgentTrap-18050").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_18050.setDescription('Api Set Storage Client Success')
mngmtAgentTrap_18051 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018051)).setLabel("mngmtAgentTrap-18051").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_18051.setDescription('Api Invalid Operation')
mngmtAgentTrap_18052 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018052)).setLabel("mngmtAgentTrap-18052").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_18052.setDescription('Api Deleted Port WWID Success')
mngmtAgentTrap_18059 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018059)).setLabel("mngmtAgentTrap-18059").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_18059.setDescription('Api Set Power Success')
mngmtAgentTrap_18060 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018060)).setLabel("mngmtAgentTrap-18060").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_18060.setDescription('Api Element Is Not Initialized')
mngmtAgentTrap_18063 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018063)).setLabel("mngmtAgentTrap-18063").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_18063.setDescription('Api Error trying to delete a disk group')
mngmtAgentTrap_18065 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018065)).setLabel("mngmtAgentTrap-18065").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_18065.setDescription('Api A storage (Vdisk) operation is in progress. Try again later.')
mngmtAgentTrap_18066 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018066)).setLabel("mngmtAgentTrap-18066").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_18066.setDescription('Api The storage (Vdisk) condition is invalid. The storage may be in error. Try again later.')
mngmtAgentTrap_18067 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018067)).setLabel("mngmtAgentTrap-18067").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_18067.setDescription('Api Error calling get Vdisk condition. Vdisk may be deleted. Try again later.')
mngmtAgentTrap_18068 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018068)).setLabel("mngmtAgentTrap-18068").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_18068.setDescription('Api Invalid initialization of the API. Cannot start monitoring process. Storage system management limited.')
mngmtAgentTrap_18070 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018070)).setLabel("mngmtAgentTrap-18070").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_18070.setDescription('Api A command is currently under execution from another API call. Try again later.')
mngmtAgentTrap_18071 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018071)).setLabel("mngmtAgentTrap-18071").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_18071.setDescription('Api The server has not completed initialization, cannot process the request.')
mngmtAgentTrap_18073 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018073)).setLabel("mngmtAgentTrap-18073").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_18073.setDescription('Api Removal of disk from disk group successful')
mngmtAgentTrap_18074 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018074)).setLabel("mngmtAgentTrap-18074").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_18074.setDescription('Api Disk(s) added to disk group successfully')
mngmtAgentTrap_18075 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018075)).setLabel("mngmtAgentTrap-18075").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_18075.setDescription('Api Modify monitor properties successful')
mngmtAgentTrap_18076 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018076)).setLabel("mngmtAgentTrap-18076").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_18076.setDescription('Api Element name too long. Maximum is 20 characters.')
mngmtAgentTrap_18080 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018080)).setLabel("mngmtAgentTrap-18080").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_18080.setDescription('Api The snapshot/Snapclone license cannot be validated. Either the license key has not been entered, or there is a system communication failure.')
mngmtAgentTrap_18081 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018081)).setLabel("mngmtAgentTrap-18081").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_18081.setDescription("Api The folder operation is not valid for the specified folder. Either the folder is a root folder and cannot be modified, or it is a disk group folder for which you should use 'Set Group' command.")
mngmtAgentTrap_20001 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136020001)).setLabel("mngmtAgentTrap-20001").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_20001.setDescription('LicMngr Memory Allocation Failure')
mngmtAgentTrap_20002 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136020002)).setLabel("mngmtAgentTrap-20002").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_20002.setDescription('LicMngr Startup Complete')
mngmtAgentTrap_20003 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136020003)).setLabel("mngmtAgentTrap-20003").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_20003.setDescription('LicMngr Startup Failed')
mngmtAgentTrap_20004 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136020004)).setLabel("mngmtAgentTrap-20004").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_20004.setDescription('License successfully checked out')
mngmtAgentTrap_20005 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136020005)).setLabel("mngmtAgentTrap-20005").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_20005.setDescription('License checkout failed')
mngmtAgentTrap_20011 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136020011)).setLabel("mngmtAgentTrap-20011").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_20011.setDescription('License Line has an incorrect format')
mngmtAgentTrap_20013 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136020013)).setLabel("mngmtAgentTrap-20013").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_20013.setDescription('License Library runtime error')
mngmtAgentTrap_20015 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136020015)).setLabel("mngmtAgentTrap-20015").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_20015.setDescription('Failed to retrieve Node WWN from storage system')
mngmtAgentTrap_20016 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136020016)).setLabel("mngmtAgentTrap-20016").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_20016.setDescription('Failed to retrieve license list from MLD')
mngmtAgentTrap_20017 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136020017)).setLabel("mngmtAgentTrap-20017").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_20017.setDescription('Failed to write license list to MLD')
mngmtAgentTrap_20018 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136020018)).setLabel("mngmtAgentTrap-20018").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_20018.setDescription('This license line appears to be invalid')
mngmtAgentTrap_20019 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136020019)).setLabel("mngmtAgentTrap-20019").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_20019.setDescription('MLD Manager Handle is NULL - unable to update MLD License List')
mngmtAgentTrap_20020 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136020020)).setLabel("mngmtAgentTrap-20020").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_20020.setDescription('LicMngr: Storage system handle is NULL')
mngmtAgentTrap_20021 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136020021)).setLabel("mngmtAgentTrap-20021").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_20021.setDescription('The license you entered is a valid license but not for the Node WWN and/or firmware version on this controller pair')
mngmtAgentTrap_20022 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136020022)).setLabel("mngmtAgentTrap-20022").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_20022.setDescription('Function name string is null or in an incorrect format')
mngmtAgentTrap_20023 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136020023)).setLabel("mngmtAgentTrap-20023").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_20023.setDescription('Version string is null or in an incorrect format')
mngmtAgentTrap_21001 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136021001)).setLabel("mngmtAgentTrap-21001").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_21001.setDescription('HSV Upgrade Manager Image File Open Error')
mngmtAgentTrap_21002 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136021002)).setLabel("mngmtAgentTrap-21002").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_21002.setDescription('HSV Upgrade Manager Image File Buffer Allocation Error')
mngmtAgentTrap_21003 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136021003)).setLabel("mngmtAgentTrap-21003").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_21003.setDescription('HSV Upgrade Manager Image File Read Error')
mngmtAgentTrap_21004 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136021004)).setLabel("mngmtAgentTrap-21004").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_21004.setDescription('HSV Upgrade Manager Event File Write Error')
mngmtAgentTrap_21006 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136021006)).setLabel("mngmtAgentTrap-21006").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_21006.setDescription('HSV Upgrade Manager Global Header Edc Compute Error')
mngmtAgentTrap_21007 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136021007)).setLabel("mngmtAgentTrap-21007").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_21007.setDescription('HSV Upgrade Manager Image Header Edc Compute Error')
mngmtAgentTrap_21008 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136021008)).setLabel("mngmtAgentTrap-21008").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_21008.setDescription('HSV Upgrade Manager Image Type Exceeds Max Image Count')
mngmtAgentTrap_21009 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136021009)).setLabel("mngmtAgentTrap-21009").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_21009.setDescription('HSV Upgrade Manager Image Type Not Controller Image')
mngmtAgentTrap_21010 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136021010)).setLabel("mngmtAgentTrap-21010").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_21010.setDescription('HSV Upgrade Manager Image Size Exceeded')
mngmtAgentTrap_21011 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136021011)).setLabel("mngmtAgentTrap-21011").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_21011.setDescription('HSV Upgrade Manager Event File Open Error')
mngmtAgentTrap_21012 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136021012)).setLabel("mngmtAgentTrap-21012").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_21012.setDescription('HSV Upgrade Manager Image Edc Compute Error')
mngmtAgentTrap_21013 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136021013)).setLabel("mngmtAgentTrap-21013").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_21013.setDescription('HSV Upgrade Manager Begin Text Not Found')
mngmtAgentTrap_21014 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136021014)).setLabel("mngmtAgentTrap-21014").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_21014.setDescription('HSV Upgrade Manager After Text Not Found')
mngmtAgentTrap_21015 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136021015)).setLabel("mngmtAgentTrap-21015").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_21015.setDescription('HSV Upgrade Manager File Format Version Mismatch')
mngmtAgentTrap_21016 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136021016)).setLabel("mngmtAgentTrap-21016").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_21016.setDescription('HSV Upgrade Manager Global Header Format Version Mismatch')
mngmtAgentTrap_21017 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136021017)).setLabel("mngmtAgentTrap-21017").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_21017.setDescription('HSV Upgrade Manager Product Information Was Not Found')
mngmtAgentTrap_21018 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136021018)).setLabel("mngmtAgentTrap-21018").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_21018.setDescription('HSV Upgrade Manager Event File Was Not Found')
mngmtAgentTrap_21019 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136021019)).setLabel("mngmtAgentTrap-21019").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_21019.setDescription('HSV Upgrade Manager All Images Match Versions Already Loaded')
mngmtAgentTrap_22001 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136022001)).setLabel("mngmtAgentTrap-22001").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_22001.setDescription('Trace: Unable to write management agent trace file')
mngmtAgentTrap_22002 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136022002)).setLabel("mngmtAgentTrap-22002").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_22002.setDescription('Trace: file write succeeded')
mngmtAgentTrap_23002 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136023002)).setLabel("mngmtAgentTrap-23002").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_23002.setDescription('Diagnostic The view list has errors')
mngmtAgentTrap_23003 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136023003)).setLabel("mngmtAgentTrap-23003").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_23003.setDescription('Diagnostic Memory allocation failure')
mngmtAgentTrap_24001 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136024001)).setLabel("mngmtAgentTrap-24001").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_24001.setDescription('Windows system error')
mngmtAgentTrap_24002 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136024002)).setLabel("mngmtAgentTrap-24002").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_24002.setDescription('Lock is already taken')
mngmtAgentTrap_24003 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136024003)).setLabel("mngmtAgentTrap-24003").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_24003.setDescription('Lock is not taken')
mngmtAgentTrap_24004 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136024004)).setLabel("mngmtAgentTrap-24004").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_24004.setDescription('Request timed out')
mngmtAgentTrap_25001 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136025001)).setLabel("mngmtAgentTrap-25001").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_25001.setDescription('No path to controller')
mngmtAgentTrap_25002 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136025002)).setLabel("mngmtAgentTrap-25002").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_25002.setDescription('Thread is not running')
mngmtAgentTrap_25003 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136025003)).setLabel("mngmtAgentTrap-25003").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_25003.setDescription('No physical stores')
mngmtAgentTrap_25004 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136025004)).setLabel("mngmtAgentTrap-25004").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_25004.setDescription('Loop context ID changed')
mngmtAgentTrap_25005 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136025005)).setLabel("mngmtAgentTrap-25005").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_25005.setDescription('Storage Cell context ID changed')
mngmtAgentTrap_25006 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136025006)).setLabel("mngmtAgentTrap-25006").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_25006.setDescription('Cache Write Failure')
mngmtAgentTrap_25007 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136025007)).setLabel("mngmtAgentTrap-25007").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_25007.setDescription('Battery Disable Failure')
mngmtAgentTrap_25008 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136025008)).setLabel("mngmtAgentTrap-25008").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_25008.setDescription('Drive Shelf Disable Failure')
mngmtAgentTrap_25009 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136025009)).setLabel("mngmtAgentTrap-25009").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_25009.setDescription('Shutdown Both Restart And Power Off Requested')
mngmtAgentTrap_25010 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136025010)).setLabel("mngmtAgentTrap-25010").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_25010.setDescription('Shutdown Drive Shelf Power Off But No Enclosure Power Off Requested')
mngmtAgentTrap_25011 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136025011)).setLabel("mngmtAgentTrap-25011").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_25011.setDescription('Shutdown Disable Battery But No Enclosure Power Off Requested')
mngmtAgentTrap_25012 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136025012)).setLabel("mngmtAgentTrap-25012").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_25012.setDescription('Shutdown Disable Battery But Shutdown Unconditional Requested')
mngmtAgentTrap_25013 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136025013)).setLabel("mngmtAgentTrap-25013").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_25013.setDescription('Shutdown Delay Out Of Range')
mngmtAgentTrap_25014 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136025014)).setLabel("mngmtAgentTrap-25014").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_25014.setDescription('Invalid Storage Cell name')
mngmtAgentTrap_25015 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136025015)).setLabel("mngmtAgentTrap-25015").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_25015.setDescription('Requested spares goal cannot be satisfied')
mngmtAgentTrap_25016 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136025016)).setLabel("mngmtAgentTrap-25016").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_25016.setDescription('No valid LDAD found')
mngmtAgentTrap_25017 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136025017)).setLabel("mngmtAgentTrap-25017").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_25017.setDescription('Mismatched MLD size')
mngmtAgentTrap_25018 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136025018)).setLabel("mngmtAgentTrap-25018").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_25018.setDescription('Codeload image file error')
mngmtAgentTrap_25019 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136025019)).setLabel("mngmtAgentTrap-25019").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_25019.setDescription('Storage System is not initialized')
mngmtAgentTrap_26002 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136026002)).setLabel("mngmtAgentTrap-26002").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_26002.setDescription('Invalid data replication operation')
mngmtAgentTrap_26005 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136026005)).setLabel("mngmtAgentTrap-26005").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_26005.setDescription('DR group name exceeds maximum length')
mngmtAgentTrap_26006 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136026006)).setLabel("mngmtAgentTrap-26006").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_26006.setDescription('DR group created successfully')
mngmtAgentTrap_26007 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136026007)).setLabel("mngmtAgentTrap-26007").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_26007.setDescription('Data replication invalid mode for DR Group create ')
mngmtAgentTrap_26008 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136026008)).setLabel("mngmtAgentTrap-26008").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_26008.setDescription('A duplicate DR group name exists in the specified source or destination DR group.')
mngmtAgentTrap_26009 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136026009)).setLabel("mngmtAgentTrap-26009").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_26009.setDescription('Data replication invalid operation while DR Groups exist')
mngmtAgentTrap_26010 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136026010)).setLabel("mngmtAgentTrap-26010").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_26010.setDescription('Data replication root folder does not exist')
mngmtAgentTrap_26011 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136026011)).setLabel("mngmtAgentTrap-26011").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_26011.setDescription('DR group discarded')
mngmtAgentTrap_26012 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136026012)).setLabel("mngmtAgentTrap-26012").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_26012.setDescription('Data replication unknown remote storage system')
mngmtAgentTrap_26013 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136026013)).setLabel("mngmtAgentTrap-26013").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_26013.setDescription('Data replication Error. A conflicting Vdisk name exists on the remote storage system.')
mngmtAgentTrap_26014 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136026014)).setLabel("mngmtAgentTrap-26014").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_26014.setDescription('Data Replication Error. Invalid Remote Vdisk Name specified.')
mngmtAgentTrap_26015 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136026015)).setLabel("mngmtAgentTrap-26015").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_26015.setDescription('Data Replication Error. Remote Vdisk size cannot be modified.')
mngmtAgentTrap_26016 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136026016)).setLabel("mngmtAgentTrap-26016").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_26016.setDescription('Data Replication Error. Remote Vdisk should be unpresented to proceed with the discard/detach operation.')
mngmtAgentTrap_26017 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136026017)).setLabel("mngmtAgentTrap-26017").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_26017.setDescription('The element manager has successfully deallocated the log associated with the specified DR Group. If data exists in the log, DR Group members will be marked for a full copy.')
mngmtAgentTrap_26018 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136026018)).setLabel("mngmtAgentTrap-26018").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_26018.setDescription('The Data Replication value(s) specified in creating or modifying the DR group is invalid on this type of DR configuration.')
mngmtAgentTrap_26019 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136026019)).setLabel("mngmtAgentTrap-26019").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_26019.setDescription('No DR Group exist as reported by the controllers.')
mngmtAgentTrap_27001 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027001)).setLabel("mngmtAgentTrap-27001").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_27001.setDescription('The element manager has successfully initialized storage system. Command issued through XML Interface.')
mngmtAgentTrap_27002 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027002)).setLabel("mngmtAgentTrap-27002").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_27002.setDescription('The element manager has successfully created a virtual disk. Command issued through the XML Interface.')
mngmtAgentTrap_27003 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027003)).setLabel("mngmtAgentTrap-27003").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_27003.setDescription('The element manager has successfully created a disk group. Command issued through the XML Interface.')
mngmtAgentTrap_27004 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027004)).setLabel("mngmtAgentTrap-27004").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_27004.setDescription('The element manager has successfully created a DRM group. Command issued through the XML Interface.')
mngmtAgentTrap_27005 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027005)).setLabel("mngmtAgentTrap-27005").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_27005.setDescription('The element manager has successfully created a host. Command issued through the XML Interface.')
mngmtAgentTrap_27006 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027006)).setLabel("mngmtAgentTrap-27006").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_27006.setDescription('The element manager has successfully created a presented unit. Command issued through the XML Interface.')
mngmtAgentTrap_27007 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027007)).setLabel("mngmtAgentTrap-27007").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_27007.setDescription('The element manager has successfully created a virtual disk folder. Command issued through the XML Interface.')
mngmtAgentTrap_27008 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027008)).setLabel("mngmtAgentTrap-27008").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_27008.setDescription('The element manager has successfully created a host folder. Command issued through the XML Interface.')
mngmtAgentTrap_27009 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027009)).setLabel("mngmtAgentTrap-27009").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_27009.setDescription('The element manager has successfully created a disk group folder. Command issued through the XML Interface.')
mngmtAgentTrap_27010 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027010)).setLabel("mngmtAgentTrap-27010").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_27010.setDescription('The element manager has successfully created a DRM group folder. Command issued through the XML Interface.')
mngmtAgentTrap_27011 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027011)).setLabel("mngmtAgentTrap-27011").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_27011.setDescription('The element manager has successfully created a folder. Command issued through the XML Interface.')
mngmtAgentTrap_27012 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027012)).setLabel("mngmtAgentTrap-27012").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_27012.setDescription('The element manager has successfully created a snapshot. Command issued through the XML Interface.')
mngmtAgentTrap_27013 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027013)).setLabel("mngmtAgentTrap-27013").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_27013.setDescription('The element manager has successfully created a snapclone. Command issued through the XML Interface.')
mngmtAgentTrap_27014 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027014)).setLabel("mngmtAgentTrap-27014").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_27014.setDescription('The element manager has successfully uninitialized the storage system. Command issued through the XML Interface.')
mngmtAgentTrap_27015 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027015)).setLabel("mngmtAgentTrap-27015").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_27015.setDescription('The element manager has successfully deleted a virtual disk. Command issued through the XML Interface.')
mngmtAgentTrap_27016 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027016)).setLabel("mngmtAgentTrap-27016").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_27016.setDescription('The element manager has successfully deleted a disk group. Command issued through the XML Interface.')
mngmtAgentTrap_27017 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027017)).setLabel("mngmtAgentTrap-27017").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_27017.setDescription('The element manager has successfully deleted a DRM group. Command issued through the XML Interface.')
mngmtAgentTrap_27018 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027018)).setLabel("mngmtAgentTrap-27018").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_27018.setDescription('The element manager has successfully deleted a host. Command issued through the XML Interface.')
mngmtAgentTrap_27019 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027019)).setLabel("mngmtAgentTrap-27019").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_27019.setDescription('The element manager has successfully deleted a presented unit. Command issued through the XML Interface.')
mngmtAgentTrap_27020 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027020)).setLabel("mngmtAgentTrap-27020").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_27020.setDescription('The element manager has successfully deleted a virtual disk folder. Command issued through the XML Interface.')
mngmtAgentTrap_27021 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027021)).setLabel("mngmtAgentTrap-27021").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_27021.setDescription('The element manager has successfully deleted a host folder. Command issued through the XML Interface.')
mngmtAgentTrap_27022 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027022)).setLabel("mngmtAgentTrap-27022").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_27022.setDescription('The element manager has successfully deleted a disk group folder. Command issued through the XML Interface.')
mngmtAgentTrap_27023 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027023)).setLabel("mngmtAgentTrap-27023").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_27023.setDescription('The element manager has successfully deleted a DRM group folder. Command issued through the XML Interface.')
mngmtAgentTrap_27024 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027024)).setLabel("mngmtAgentTrap-27024").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_27024.setDescription('The element manager has successfully deleted a folder. Command issued through the XML Interface.')
mngmtAgentTrap_27025 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027025)).setLabel("mngmtAgentTrap-27025").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_27025.setDescription('The element manager has successfully deleted a snapshot. Command issued through the XML Interface.')
mngmtAgentTrap_27026 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027026)).setLabel("mngmtAgentTrap-27026").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_27026.setDescription('The element manager has successfully modified the properties of a storage system. Command issued through the XML Interface.')
mngmtAgentTrap_27027 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027027)).setLabel("mngmtAgentTrap-27027").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_27027.setDescription('The element manager has successfully modified the properties of a virtual disk. Command issued through the XML Interface.')
mngmtAgentTrap_27028 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027028)).setLabel("mngmtAgentTrap-27028").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_27028.setDescription('The element manager has successfully modified the properties of a disk group. Command issued through the XML Interface.')
mngmtAgentTrap_27029 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027029)).setLabel("mngmtAgentTrap-27029").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_27029.setDescription('The element manager has successfully modified the properties of a DRM group. Command issued through the XML Interface.')
mngmtAgentTrap_27030 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027030)).setLabel("mngmtAgentTrap-27030").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_27030.setDescription('The element manager has successfully modified the properties of a host. Command issued through the XML Interface.')
mngmtAgentTrap_27031 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027031)).setLabel("mngmtAgentTrap-27031").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_27031.setDescription('The element manager has successfully modified the properties of a presented unit. Command issued through the XML Interface.')
mngmtAgentTrap_27032 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027032)).setLabel("mngmtAgentTrap-27032").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_27032.setDescription('The element manager has successfully modified the properties of a virtual disk folder. Command issued through the XML Interface.')
mngmtAgentTrap_27033 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027033)).setLabel("mngmtAgentTrap-27033").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_27033.setDescription('The element manager has successfully modified the properties of a host folder. Command issued through the XML Interface.')
mngmtAgentTrap_27034 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027034)).setLabel("mngmtAgentTrap-27034").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_27034.setDescription('The element manager has successfully modified the properties of a hardware root folder. Command issued through the XML Interface.')
mngmtAgentTrap_27035 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027035)).setLabel("mngmtAgentTrap-27035").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_27035.setDescription('The element manager has successfully modified the properties of a disk group folder. Command issued through the XML Interface.')
mngmtAgentTrap_27036 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027036)).setLabel("mngmtAgentTrap-27036").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_27036.setDescription('The element manager has successfully modified the properties of a DRM group folder. Command issued through the XML Interface.')
mngmtAgentTrap_27037 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027037)).setLabel("mngmtAgentTrap-27037").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_27037.setDescription('The element manager has successfully modified the properties of a DRM group root folder. Command issued through the XML Interface.')
mngmtAgentTrap_27038 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027038)).setLabel("mngmtAgentTrap-27038").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_27038.setDescription('The element manager has successfully modified the properties of a folder. Command issued through the XML Interface.')
mngmtAgentTrap_27039 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027039)).setLabel("mngmtAgentTrap-27039").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_27039.setDescription('The element manager has successfully modified the properties of a snapshot. Command issued through the XML Interface.')
mngmtAgentTrap_27040 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027040)).setLabel("mngmtAgentTrap-27040").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_27040.setDescription('The element manager has successfully modified the properties of a disk. Command issued through the XML Interface.')
mngmtAgentTrap_27041 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027041)).setLabel("mngmtAgentTrap-27041").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_27041.setDescription('The element manager has successfully modified the properties of a disk shelf. Command issued through the XML Interface.')
mngmtAgentTrap_27042 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027042)).setLabel("mngmtAgentTrap-27042").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_27042.setDescription('The element manager has successfully modified the properties of a controller. Command issued through the XML Interface.')
mngmtAgentTrap_27043 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027043)).setLabel("mngmtAgentTrap-27043").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_27043.setDescription('The element manager has successfully modified the properties of a controller shelf. Command issued through the XML Interface.')
mngmtAgentTrap_27044 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027044)).setLabel("mngmtAgentTrap-27044").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_27044.setDescription('The element manager has successfully modified the properties of a cabinet. Command issued through the XML Interface.')
mngmtAgentTrap_27045 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027045)).setLabel("mngmtAgentTrap-27045").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_27045.setDescription('The element manager has successfully reserved an object. Command issued through the XML Interface.')
mngmtAgentTrap_27046 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027046)).setLabel("mngmtAgentTrap-27046").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_27046.setDescription('The element manager has successfully released an object. Command issued through the XML Interface.')
mngmtAgentTrap_27047 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027047)).setLabel("mngmtAgentTrap-27047").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_27047.setDescription('XML cache mutex timeout.')
mngmtAgentTrap_27048 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027048)).setLabel("mngmtAgentTrap-27048").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_27048.setDescription('XML cache memory allocation error.')
mngmtAgentTrap_27049 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027049)).setLabel("mngmtAgentTrap-27049").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_27049.setDescription('XML subsystem unknown error.')
mngmtAgentTrap_27050 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027050)).setLabel("mngmtAgentTrap-27050").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_27050.setDescription('The element manager has successfully created a virtual disk container. Command issued through the XML Interface.')
mngmtAgentTrap_27051 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027051)).setLabel("mngmtAgentTrap-27051").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_27051.setDescription('The element manager has successfully modified a virtual disk container. Command issued through the XML Interface.')
mngmtAgentTrap_27052 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027052)).setLabel("mngmtAgentTrap-27052").setObjects(("CPQHSV-MIB", "hostName"), ("CPQHSV-MIB", "scellNameDateTime"), ("CPQHSV-MIB", "agentEventCode"), ("CPQHSV-MIB", "agentEventDescription"))
if mibBuilder.loadTexts: mngmtAgentTrap_27052.setDescription('The element manager has successfully deleted a virtual disk container. Command issued through the XML Interface.')
mibBuilder.exportSymbols("CPQHSV-MIB", mngmtAgentTrap_36=mngmtAgentTrap_36, mngmtAgentTrap_15007=mngmtAgentTrap_15007, sCellEventTrap_09_73=sCellEventTrap_09_73, sCellEventTrap_0c_20=sCellEventTrap_0c_20, mngmtAgentTrap_16019=mngmtAgentTrap_16019, mngmtAgentTrap_3021=mngmtAgentTrap_3021, mngmtAgentTrap_4051=mngmtAgentTrap_4051, mngmtAgentTrap_8065=mngmtAgentTrap_8065, mngmtAgentTrap_31=mngmtAgentTrap_31, mngmtAgentTrap_8080=mngmtAgentTrap_8080, mngmtAgentTrap_27025=mngmtAgentTrap_27025, mngmtAgentTrap_6015=mngmtAgentTrap_6015, mngmtAgentTrap_9002=mngmtAgentTrap_9002, mngmtAgentTrap_2003=mngmtAgentTrap_2003, mngmtAgentTrap_18065=mngmtAgentTrap_18065, mngmtAgentTrap_21006=mngmtAgentTrap_21006, sCellEventTrap_03_03=sCellEventTrap_03_03, hostName=hostName, mngmtAgentTrap_2062=mngmtAgentTrap_2062, mngmtAgentTrap_8057=mngmtAgentTrap_8057, sCellEventTrap_06_2b=sCellEventTrap_06_2b, srvOSMinVersion=srvOSMinVersion, sCellEventTrap_04_07=sCellEventTrap_04_07, sCellEventTrap_0b_03=sCellEventTrap_0b_03, sCellEventTrap_04_03=sCellEventTrap_04_03, mngmtAgentTrap_48=mngmtAgentTrap_48, mngmtAgentTrap_14009=mngmtAgentTrap_14009, mngmtAgentTrap_21015=mngmtAgentTrap_21015, mngmtAgentTrap_9014=mngmtAgentTrap_9014, mngmtAgentTrap_8025=mngmtAgentTrap_8025, mngmtAgentTrap_134=mngmtAgentTrap_134, mngmtAgentTrap_2061=mngmtAgentTrap_2061, mngmtAgentTrap_2077=mngmtAgentTrap_2077, mngmtAgentTrap_2025=mngmtAgentTrap_2025, mngmtAgentTrap_20002=mngmtAgentTrap_20002, mngmtAgentTrap_8012=mngmtAgentTrap_8012, sCellEventTrap_06_1e=sCellEventTrap_06_1e, mngmtAgentTrap_123=mngmtAgentTrap_123, mngmtAgentTrap_2083=mngmtAgentTrap_2083, mngmtAgentTrap_10004=mngmtAgentTrap_10004, mngmtAgentTrap_27039=mngmtAgentTrap_27039, mngmtAgentTrap_8068=mngmtAgentTrap_8068, sCellEventTrap_09_25=sCellEventTrap_09_25, mngmtAgentTrap_8062=mngmtAgentTrap_8062, mngmtAgentTrap_38=mngmtAgentTrap_38, mngmtAgentTrap_80=mngmtAgentTrap_80, sCellEventTrap_83_06=sCellEventTrap_83_06, sCellEventTrap_06_14=sCellEventTrap_06_14, mngmtAgentTrap_8044=mngmtAgentTrap_8044, sCellEventTrap_09_d8=sCellEventTrap_09_d8, sCellEventTrap_09_44=sCellEventTrap_09_44, mngmtAgentTrap_124=mngmtAgentTrap_124, scellUUID=scellUUID, mngmtAgentTrap_2100=mngmtAgentTrap_2100, mngmtAgentTrap_8004=mngmtAgentTrap_8004, agentEventDescription=agentEventDescription, mngmtAgentTrap_4027=mngmtAgentTrap_4027, agentEventCode=agentEventCode, sCellEventTrap_06_0c=sCellEventTrap_06_0c, mngmtAgentTrap_3076=mngmtAgentTrap_3076, srvSubModel=srvSubModel, mngmtAgentTrap_75=mngmtAgentTrap_75, scellSWComponent=scellSWComponent, mngmtAgentTrap_13003=mngmtAgentTrap_13003, mngmtAgentTrap_14008=mngmtAgentTrap_14008, mngmtAgentTrap_20013=mngmtAgentTrap_20013, sCellEventTrap_09_13=sCellEventTrap_09_13, mngmtAgentTrap_30=mngmtAgentTrap_30, mngmtAgentTrap_1007=mngmtAgentTrap_1007, mngmtAgentTrap_13020=mngmtAgentTrap_13020, agDescription=agDescription, mngmtAgentTrap_18036=mngmtAgentTrap_18036, sCellEventTrap_06_34=sCellEventTrap_06_34, sCellEventTrap_03_06=sCellEventTrap_03_06, agManufacturer=agManufacturer, mngmtAgentTrap_65=mngmtAgentTrap_65, mngmtAgentTrap_8018=mngmtAgentTrap_8018, mngmtAgentTrap_21008=mngmtAgentTrap_21008, mngmtAgentTrap_8041=mngmtAgentTrap_8041, mngmtAgentTrap_26011=mngmtAgentTrap_26011, mngmtAgentTrap_57=mngmtAgentTrap_57, mngmtAgentTrap_3071=mngmtAgentTrap_3071, mngmtAgentTrap_12=mngmtAgentTrap_12, mngmtAgentTrap_56=mngmtAgentTrap_56, sCellEventTrap_09_1f=sCellEventTrap_09_1f, mngmtAgentTrap_3066=mngmtAgentTrap_3066, mngmtAgentTrap_34=mngmtAgentTrap_34, mngmtAgentTrap_37=mngmtAgentTrap_37, mngmtAgentTrap_4018=mngmtAgentTrap_4018, mngmtAgentTrap_4017=mngmtAgentTrap_4017, mngmtAgentTrap_7=mngmtAgentTrap_7, mngmtAgentTrap_20016=mngmtAgentTrap_20016, mngmtAgentTrap_27046=mngmtAgentTrap_27046, mngmtAgentTrap_1000=mngmtAgentTrap_1000, scellEventDescription=scellEventDescription, sCellEventTrap_09_c9=sCellEventTrap_09_c9, sCellEventTrap_0d_d9=sCellEventTrap_0d_d9, mngmtAgentTrap_2=mngmtAgentTrap_2, mngmtAgentTrap_8021=mngmtAgentTrap_8021, mngmtAgentTrap_25013=mngmtAgentTrap_25013, mngmtAgentTrap_40=mngmtAgentTrap_40, mngmtAgentTrap_2084=mngmtAgentTrap_2084, mngmtAgentTrap_27028=mngmtAgentTrap_27028, mngmtAgentTrap_13009=mngmtAgentTrap_13009, mngmtAgentTrap_3061=mngmtAgentTrap_3061, mngmtAgentTrap_15008=mngmtAgentTrap_15008, nsc=nsc, nscEntry=nscEntry, mngmtAgentTrap_13007=mngmtAgentTrap_13007, mngmtAgentTrap_26002=mngmtAgentTrap_26002, sCellEventTrap_04_04=sCellEventTrap_04_04, mngmtAgentTrap_21017=mngmtAgentTrap_21017, sCellEventTrap_09_db=sCellEventTrap_09_db, mngmtAgentTrap_2065=mngmtAgentTrap_2065, sCellEventTrap_0c_22=sCellEventTrap_0c_22, sCellEventTrap_09_28=sCellEventTrap_09_28, mngmtAgentTrap_180=mngmtAgentTrap_180, sCellEventTrap_06_21=sCellEventTrap_06_21, mngmtAgentTrap_6018=mngmtAgentTrap_6018, sCellEventTrap_09_32=sCellEventTrap_09_32, sCellEventTrap_04_0b=sCellEventTrap_04_0b, sCellEventTrap_09_45=sCellEventTrap_09_45, mngmtAgentTrap_26009=mngmtAgentTrap_26009, agentEntry=agentEntry, mngmtAgentTrap_15=mngmtAgentTrap_15, mngmtAgentTrap_181=mngmtAgentTrap_181, mngmtAgentTrap_10029=mngmtAgentTrap_10029, srvModel=srvModel, sCellEventTrap_09_20=sCellEventTrap_09_20, sCellEventTrap_09_d4=sCellEventTrap_09_d4, mngmtAgentTrap_3012=mngmtAgentTrap_3012, mngmtAgentTrap_97=mngmtAgentTrap_97, mngmtAgentTrap_10010=mngmtAgentTrap_10010, mngmtAgentTrap_201=mngmtAgentTrap_201, mngmtAgentTrap_18025=mngmtAgentTrap_18025, sCellEventTrap_83_03=sCellEventTrap_83_03, sCellEventTrap_09_06=sCellEventTrap_09_06, mngmtAgentTrap_5007=mngmtAgentTrap_5007, sCellEventTrap_09_d7=sCellEventTrap_09_d7, sCellEventTrap_0d_82=sCellEventTrap_0d_82, mngmtAgentTrap_9037=mngmtAgentTrap_9037, mngmtAgentTrap_1005=mngmtAgentTrap_1005, mngmtAgentTrap_10036=mngmtAgentTrap_10036, sCellEventTrap_0d_7e=sCellEventTrap_0d_7e, mngmtAgentTrap_70=mngmtAgentTrap_70, mngmtAgentTrap_5018=mngmtAgentTrap_5018, scellStatusTable=scellStatusTable, sCellEventTrap_42_05=sCellEventTrap_42_05, mngmtAgentTrap_8047=mngmtAgentTrap_8047, mngmtAgentTrap_3022=mngmtAgentTrap_3022, mngmtAgentTrap_12008=mngmtAgentTrap_12008, mngmtAgentTrap_20004=mngmtAgentTrap_20004, mngmtAgentTrap_25014=mngmtAgentTrap_25014, mngmtAgentTrap_17013=mngmtAgentTrap_17013, mngmtAgentTrap_16038=mngmtAgentTrap_16038, cpqHSVServer=cpqHSVServer, mngmtAgentTrap_25011=mngmtAgentTrap_25011, sCellEventTrap_0d_b5=sCellEventTrap_0d_b5, mngmtAgentTrap_2050=mngmtAgentTrap_2050, mngmtAgentTrap_141=mngmtAgentTrap_141, sCellEventTrap_0c_1c=sCellEventTrap_0c_1c, mngmtAgentTrap_8030=mngmtAgentTrap_8030, sCellEventTrap_0d_85=sCellEventTrap_0d_85, mngmtAgentTrap_197=mngmtAgentTrap_197, mngmtAgentTrap_8082=mngmtAgentTrap_8082, mngmtAgentTrap_3067=mngmtAgentTrap_3067, sCellEventTrap_03_00=sCellEventTrap_03_00, hsvObject=hsvObject, sCellEventTrap_06_43=sCellEventTrap_06_43, mngmtAgentTrap_4024=mngmtAgentTrap_4024, srvBiosVersion=srvBiosVersion, sCellEventTrap_42_01=sCellEventTrap_42_01, mngmtAgentTrap_195=mngmtAgentTrap_195, mngmtAgentTrap_3038=mngmtAgentTrap_3038, mngmtAgentTrap_94=mngmtAgentTrap_94, mngmtAgentTrap_3078=mngmtAgentTrap_3078, mngmtAgentTrap_88=mngmtAgentTrap_88, mngmtAgentTrap_13018=mngmtAgentTrap_13018, mngmtAgentTrap_25009=mngmtAgentTrap_25009, mngmtAgentTrap_27013=mngmtAgentTrap_27013, mngmtAgentTrap_4053=mngmtAgentTrap_4053, mngmtAgentTrap_10026=mngmtAgentTrap_10026, agMajVersion=agMajVersion, mngmtAgentTrap_9010=mngmtAgentTrap_9010, sCellEventTrap_09_15=sCellEventTrap_09_15, srvCPU=srvCPU, mngmtAgentTrap_182=mngmtAgentTrap_182, mngmtAgentTrap_2038=mngmtAgentTrap_2038, mngmtAgentTrap_2026=mngmtAgentTrap_2026, mngmtAgentTrap_16018=mngmtAgentTrap_16018, mngmtAgentTrap_26008=mngmtAgentTrap_26008, mngmtAgentTrap_3039=mngmtAgentTrap_3039, sCellEventTrap_0c_10=sCellEventTrap_0c_10, mngmtAgentTrap_8009=mngmtAgentTrap_8009, mngmtAgentTrap_9016=mngmtAgentTrap_9016, mngmtAgentTrap_11003=mngmtAgentTrap_11003, mngmtAgentTrap_17014=mngmtAgentTrap_17014, sCellEventTrap_0c_07=sCellEventTrap_0c_07, mngmtAgentTrap_2058=mngmtAgentTrap_2058, mngmtAgentTrap_8006=mngmtAgentTrap_8006, mngmtAgentTrap_19=mngmtAgentTrap_19, mngmtAgentTrap_101=mngmtAgentTrap_101, sCellEventTrap_09_cf=sCellEventTrap_09_cf, mngmtAgentTrap_128=mngmtAgentTrap_128, mngmtAgentTrap_4052=mngmtAgentTrap_4052, sCellEventTrap_06_0f=sCellEventTrap_06_0f, mngmtAgentTrap_6001=mngmtAgentTrap_6001, mngmtAgentTrap_17002=mngmtAgentTrap_17002, nscName=nscName, mngmtAgentTrap_12002=mngmtAgentTrap_12002, sCellEventTrap_09_21=sCellEventTrap_09_21, mngmtAgentTrap_1003=mngmtAgentTrap_1003, mngmtAgentTrap_110=mngmtAgentTrap_110, mngmtAgentTrap_3068=mngmtAgentTrap_3068, mngmtAgentTrap_26=mngmtAgentTrap_26, mngmtAgentTrap_90=mngmtAgentTrap_90, mngmtAgentTrap_27041=mngmtAgentTrap_27041, mngmtAgentTrap_21016=mngmtAgentTrap_21016, sCellEventTrap_09_68=sCellEventTrap_09_68, sCellEventTrap_06_2a=sCellEventTrap_06_2a, mngmtAgentTrap_17005=mngmtAgentTrap_17005, mngmtAgentTrap_45=mngmtAgentTrap_45, mngmtAgentTrap_2081=mngmtAgentTrap_2081, mngmtAgentTrap_6036=mngmtAgentTrap_6036, mngmtAgentTrap_3081=mngmtAgentTrap_3081, sCellEventTrap_09_74=sCellEventTrap_09_74, mngmtAgentTrap_9042=mngmtAgentTrap_9042, mngmtAgentTrap_26005=mngmtAgentTrap_26005, mngmtAgentTrap_51=mngmtAgentTrap_51, mngmtAgentTrap_8046=mngmtAgentTrap_8046, mngmtAgentTrap_26013=mngmtAgentTrap_26013, sCellEventTrap_0d_35=sCellEventTrap_0d_35, sCellEventTrap_06_41=sCellEventTrap_06_41, mngmtAgentTrap_2023=mngmtAgentTrap_2023, emuEventTrapInformative=emuEventTrapInformative, sCellEventTrap_09_0c=sCellEventTrap_09_0c, sCellEventTrap_09_29=sCellEventTrap_09_29, sCellEventTrap_07_03=sCellEventTrap_07_03, sCellEventTrap_03_07=sCellEventTrap_03_07, sCellEventTrap_09_70=sCellEventTrap_09_70, mngmtAgentTrap_3016=mngmtAgentTrap_3016, sCellEventTrap_09_18=sCellEventTrap_09_18, mngmtAgentTrap_10011=mngmtAgentTrap_10011, mngmtAgentTrap_15006=mngmtAgentTrap_15006, mngmtAgentTrap_16015=mngmtAgentTrap_16015, mngmtAgentTrap_27002=mngmtAgentTrap_27002, mngmtAgentTrap_27024=mngmtAgentTrap_27024, mngmtAgentTrap_14004=mngmtAgentTrap_14004, mngmtAgentTrap_8038=mngmtAgentTrap_8038, sCellEventTrap_06_3e=sCellEventTrap_06_3e, sCellEventTrap_0c_1b=sCellEventTrap_0c_1b, sCellEventTrap_09_07=sCellEventTrap_09_07, mngmtAgentTrap_2075=mngmtAgentTrap_2075, mngmtAgentTrap_10030=mngmtAgentTrap_10030)
mibBuilder.exportSymbols("CPQHSV-MIB", mngmtAgentTrap_18028=mngmtAgentTrap_18028, mngmtAgentTrap_10028=mngmtAgentTrap_10028, mngmtAgentTrap_5003=mngmtAgentTrap_5003, sCellEventTrap_06_23=sCellEventTrap_06_23, mngmtAgentTrap_200=mngmtAgentTrap_200, mngmtAgentTrap_8093=mngmtAgentTrap_8093, mngmtAgentTrap_9026=mngmtAgentTrap_9026, mngmtAgentTrap_10037=mngmtAgentTrap_10037, mngmtAgentTrap_26006=mngmtAgentTrap_26006, mngmtAgentTrap_10040=mngmtAgentTrap_10040, mngmtAgentTrap_21007=mngmtAgentTrap_21007, mngmtAgentTrap_39=mngmtAgentTrap_39, mngmtAgentTrap_8027=mngmtAgentTrap_8027, mngmtAgentTrap_16025=mngmtAgentTrap_16025, mngmtAgentTrap_25008=mngmtAgentTrap_25008, scellEventCode=scellEventCode, mngmtAgentTrap_81=mngmtAgentTrap_81, mngmtAgentTrap_24=mngmtAgentTrap_24, mngmtAgentTrap_11004=mngmtAgentTrap_11004, mngmtAgentTrap_13004=mngmtAgentTrap_13004, sCellEventTrap_04_10=sCellEventTrap_04_10, mngmtAgentTrap_16004=mngmtAgentTrap_16004, mngmtAgentTrap_8059=mngmtAgentTrap_8059, mngmtAgentTrap_3049=mngmtAgentTrap_3049, mngmtAgentTrap_18006=mngmtAgentTrap_18006, mngmtAgentTrap_23003=mngmtAgentTrap_23003, mngmtAgentTrap_8023=mngmtAgentTrap_8023, mngmtAgentTrap_74=mngmtAgentTrap_74, mngmtAgentTrap_105=mngmtAgentTrap_105, sCellEventTrap_09_67=sCellEventTrap_09_67, mngmtAgentTrap_8011=mngmtAgentTrap_8011, mngmtAgentTrap_16037=mngmtAgentTrap_16037, sCellEventTrap_09_04=sCellEventTrap_09_04, shelfEntry=shelfEntry, mngmtAgentTrap_25002=mngmtAgentTrap_25002, sCellEventTrap_04_12=sCellEventTrap_04_12, sCellEventTrap_09_01=sCellEventTrap_09_01, sCellEventTrap_09_03=sCellEventTrap_09_03, mngmtAgentTrap_18059=mngmtAgentTrap_18059, mngmtAgentTrap_6034=mngmtAgentTrap_6034, sCellEventTrap_0d_33=sCellEventTrap_0d_33, mngmtAgentTrap_18007=mngmtAgentTrap_18007, sCellEventTrap_03_0a=sCellEventTrap_03_0a, emuEventTrapUnrecoverable=emuEventTrapUnrecoverable, mngmtAgentTrap_16010=mngmtAgentTrap_16010, mngmtAgentTrap_3045=mngmtAgentTrap_3045, mngmtAgentTrap_5013=mngmtAgentTrap_5013, mngmtAgentTrap_2079=mngmtAgentTrap_2079, mngmtAgentTrap_3029=mngmtAgentTrap_3029, mngmtAgentTrap_4037=mngmtAgentTrap_4037, mngmtAgentTrap_27005=mngmtAgentTrap_27005, mngmtAgentTrap_10=mngmtAgentTrap_10, mngmtAgentTrap_6025=mngmtAgentTrap_6025, mngmtAgentTrap_9017=mngmtAgentTrap_9017, mngmtAgentTrap_16040=mngmtAgentTrap_16040, mngmtAgentTrap_32=mngmtAgentTrap_32, mngmtAgentTrap_133=mngmtAgentTrap_133, sCellEventTrap_06_07=sCellEventTrap_06_07, mngmtAgentTrap_8061=mngmtAgentTrap_8061, emuEventTrapNoncritical=emuEventTrapNoncritical, sCellEventTrap_09_66=sCellEventTrap_09_66, mngmtAgentTrap_12005=mngmtAgentTrap_12005, sCellEventTrap_83_01=sCellEventTrap_83_01, sCellEventTrap_04_0d=sCellEventTrap_04_0d, mngmtAgentTrap_2080=mngmtAgentTrap_2080, mngmtAgentTrap_8083=mngmtAgentTrap_8083, mngmtAgentTrap_18080=mngmtAgentTrap_18080, mngmtAgentTrap_27049=mngmtAgentTrap_27049, mngmtAgentTrap_2047=mngmtAgentTrap_2047, mngmtAgentTrap_3028=mngmtAgentTrap_3028, mngmtAgentTrap_16001=mngmtAgentTrap_16001, mngmtAgentTrap_9022=mngmtAgentTrap_9022, mngmtAgentTrap_16032=mngmtAgentTrap_16032, mngmtAgentTrap_8013=mngmtAgentTrap_8013, mngmtAgentTrap_10022=mngmtAgentTrap_10022, shelfTotal=shelfTotal, sCellEventTrap_09_09=sCellEventTrap_09_09, mngmtAgentTrap_18005=mngmtAgentTrap_18005, mngmtAgentTrap_132=mngmtAgentTrap_132, sCellEventTrap_0b_01=sCellEventTrap_0b_01, mngmtAgentTrap_27016=mngmtAgentTrap_27016, mngmtAgentTrap_2088=mngmtAgentTrap_2088, sCellEventTrap_09_0a=sCellEventTrap_09_0a, mngmtAgentTrap_2073=mngmtAgentTrap_2073, mngmtAgentTrap_27003=mngmtAgentTrap_27003, mngmtAgentTrap_4012=mngmtAgentTrap_4012, mngmtAgentTrap_20015=mngmtAgentTrap_20015, sCellEventTrap_09_d2=sCellEventTrap_09_d2, sCellEventTrap_0d_04=sCellEventTrap_0d_04, mngmtAgentTrap_2052=mngmtAgentTrap_2052, mngmtAgentTrap_16039=mngmtAgentTrap_16039, mngmtAgentTrap_6019=mngmtAgentTrap_6019, mngmtAgentTrap_18024=mngmtAgentTrap_18024, mngmtAgentTrap_8039=mngmtAgentTrap_8039, mngmtAgentTrap_3084=mngmtAgentTrap_3084, sCellEventTrap_09_27=sCellEventTrap_09_27, mngmtAgentTrap_4005=mngmtAgentTrap_4005, mngmtAgentTrap_3050=mngmtAgentTrap_3050, mngmtAgentTrap_1002=mngmtAgentTrap_1002, sCellEventTrap_09_6a=sCellEventTrap_09_6a, sCellEventTrap_06_1b=sCellEventTrap_06_1b, sCellEventTrap_09_11=sCellEventTrap_09_11, mngmtAgentTrap_27038=mngmtAgentTrap_27038, mngmtAgentTrap_126=mngmtAgentTrap_126, sCellEventTrap_09_34=sCellEventTrap_09_34, scellTotal=scellTotal, sCellEventTrap_0d_72=sCellEventTrap_0d_72, mngmtAgentTrap_15004=mngmtAgentTrap_15004, agentEventLevel=agentEventLevel, mngmtAgentTrap_130=mngmtAgentTrap_130, mngmtAgentTrap_55=mngmtAgentTrap_55, srvOSMajVersion=srvOSMajVersion, sCellEventTrap_07_07=sCellEventTrap_07_07, sCellEventTrap_09_76=sCellEventTrap_09_76, mngmtAgentTrap_107=mngmtAgentTrap_107, mngmtAgentTrap_3053=mngmtAgentTrap_3053, mngmtAgentTrap_20020=mngmtAgentTrap_20020, sCellEventTrap_09_c8=sCellEventTrap_09_c8, mngmtAgentTrap_3080=mngmtAgentTrap_3080, sCellEventTrap_09_37=sCellEventTrap_09_37, mngmtAgentTrap_2066=mngmtAgentTrap_2066, sCellEventTrap_04_00=sCellEventTrap_04_00, mngmtAgentTrap_2033=mngmtAgentTrap_2033, sCellEventTrap_09_1d=sCellEventTrap_09_1d, sCellEventTrap_09_6c=sCellEventTrap_09_6c, mngmtAgentTrap_119=mngmtAgentTrap_119, mngmtAgentTrap_17004=mngmtAgentTrap_17004, mngmtAgentTrap_21002=mngmtAgentTrap_21002, mngmtAgentTrap_10012=mngmtAgentTrap_10012, mngmtAgentTrap_2007=mngmtAgentTrap_2007, sCellEventTrap_03_01=sCellEventTrap_03_01, mngmtAgentTrap_16016=mngmtAgentTrap_16016, mngmtAgentTrap_27020=mngmtAgentTrap_27020, mngmtAgentTrap_27050=mngmtAgentTrap_27050, sCellEventTrap_09_26=sCellEventTrap_09_26, mngmtAgentTrap_18001=mngmtAgentTrap_18001, mngmtAgentTrap_3004=mngmtAgentTrap_3004, mngmtAgentTrap_9020=mngmtAgentTrap_9020, agMinVersion=agMinVersion, mngmtAgentTrap_41=mngmtAgentTrap_41, mngmtAgentTrap_3047=mngmtAgentTrap_3047, mngmtAgentTrap_3094=mngmtAgentTrap_3094, mngmtAgentTrap_10001=mngmtAgentTrap_10001, mngmtAgentTrap_6007=mngmtAgentTrap_6007, mngmtAgentTrap_6003=mngmtAgentTrap_6003, mngmtAgentTrap_18071=mngmtAgentTrap_18071, mngmtAgentTrap_8017=mngmtAgentTrap_8017, mngmtAgentTrap_8089=mngmtAgentTrap_8089, mngmtAgentTrap_49=mngmtAgentTrap_49, mngmtAgentTrap_142=mngmtAgentTrap_142, agStatusTable=agStatusTable, mngmtAgentTrap_27014=mngmtAgentTrap_27014, mngmtAgentTrap_27027=mngmtAgentTrap_27027, mngmtAgentTrap_2096=mngmtAgentTrap_2096, sCellEventTrap_09_7b=sCellEventTrap_09_7b, mngmtAgentTrap_3024=mngmtAgentTrap_3024, mngmtAgentTrap_15002=mngmtAgentTrap_15002, sCellEventTrap_06_28=sCellEventTrap_06_28, scellName=scellName, mngmtAgentTrap_27040=mngmtAgentTrap_27040, mngmtAgentTrap_25005=mngmtAgentTrap_25005, sCellEventTrap_06_39=sCellEventTrap_06_39, mngmtAgentTrap_16029=mngmtAgentTrap_16029, mngmtAgentTrap_8084=mngmtAgentTrap_8084, sCellEventTrap_09_7a=sCellEventTrap_09_7a, sCellEventTrap_09_ca=sCellEventTrap_09_ca, mngmtAgentTrap_10041=mngmtAgentTrap_10041, agEnterprise=agEnterprise, mngmtAgentTrap_122=mngmtAgentTrap_122, mngmtAgentTrap_4035=mngmtAgentTrap_4035, sCellEventTrap_06_3d=sCellEventTrap_06_3d, mngmtAgentTrap_24002=mngmtAgentTrap_24002, mngmtAgentTrap_8086=mngmtAgentTrap_8086, mngmtAgentTrap_14017=mngmtAgentTrap_14017, sCellEventTrap_07_02=sCellEventTrap_07_02, mngmtAgentTrap_2098=mngmtAgentTrap_2098, mngmtAgentTrap_6038=mngmtAgentTrap_6038, mngmtAgentTrap_27021=mngmtAgentTrap_27021, mngmtAgentTrap_14003=mngmtAgentTrap_14003, sCellEventTrap_09_08=sCellEventTrap_09_08, mngmtAgentTrap_6004=mngmtAgentTrap_6004, mngmtAgentTrap_18081=mngmtAgentTrap_18081, mngmtAgentTrap_6011=mngmtAgentTrap_6011, mngmtAgentTrap_25004=mngmtAgentTrap_25004, mngmtAgentTrap_9009=mngmtAgentTrap_9009, mngmtAgentTrap_10023=mngmtAgentTrap_10023, mngmtAgentTrap_10031=mngmtAgentTrap_10031, mngmtAgentTrap_26018=mngmtAgentTrap_26018, mngmtAgentTrap_8032=mngmtAgentTrap_8032, sCellEventTrap_09_1b=sCellEventTrap_09_1b, sCellEventTrap_09_da=sCellEventTrap_09_da, mngmtAgentTrap_17001=mngmtAgentTrap_17001, mngmtAgentTrap_27042=mngmtAgentTrap_27042, mngmtAgentTrap_2082=mngmtAgentTrap_2082, mngmtAgentTrap_6027=mngmtAgentTrap_6027, mngmtAgentTrap_33=mngmtAgentTrap_33, shelfErrorCode=shelfErrorCode, mngmtAgentTrap_4041=mngmtAgentTrap_4041, hostUUID=hostUUID, mngmtAgentTrap_8042=mngmtAgentTrap_8042, mngmtAgentTrap_14006=mngmtAgentTrap_14006, sCellEventTrap_0d_ec=sCellEventTrap_0d_ec, sCellEventTrap_06_3a=sCellEventTrap_06_3a, mngmtAgentTrap_9032=mngmtAgentTrap_9032, mngmtAgentTrap_8020=mngmtAgentTrap_8020, mngmtAgentTrap_13002=mngmtAgentTrap_13002, mngmtAgentTrap_25017=mngmtAgentTrap_25017, mngmtAgentTrap_6033=mngmtAgentTrap_6033, mngmtAgentTrap_27011=mngmtAgentTrap_27011, mngmtAgentTrap_24004=mngmtAgentTrap_24004, mngmtAgentTrap_25016=mngmtAgentTrap_25016, mngmtAgentTrap_14013=mngmtAgentTrap_14013, sCellEventTrap_0d_01=sCellEventTrap_0d_01, mngmtAgentTrap_93=mngmtAgentTrap_93, sCellEventTrap_09_6b=sCellEventTrap_09_6b, mngmtAgentTrap_10038=mngmtAgentTrap_10038, sCellEventTrap_03_08=sCellEventTrap_03_08, sCellEventTrap_0c_21=sCellEventTrap_0c_21, mngmtAgentTrap_61=mngmtAgentTrap_61, hostEntryIndex=hostEntryIndex, mngmtAgentTrap_2092=mngmtAgentTrap_2092, sCellEventTrap_04_01=sCellEventTrap_04_01, nscStatus=nscStatus, mngmtAgentTrap_2002=mngmtAgentTrap_2002, mngmtAgentTrap_3036=mngmtAgentTrap_3036, mngmtAgentTrap_8094=mngmtAgentTrap_8094, mngmtAgentTrap_21=mngmtAgentTrap_21, host=host, sCellEventTrap_09_2f=sCellEventTrap_09_2f, sCellEventTrap_07_0b=sCellEventTrap_07_0b, agent=agent, sCellEventTrap_09_48=sCellEventTrap_09_48, mngmtAgentTrap_3009=mngmtAgentTrap_3009, sCellEventTrap_09_d6=sCellEventTrap_09_d6, mngmtAgentTrap_8074=mngmtAgentTrap_8074, mngmtAgentTrap_183=mngmtAgentTrap_183, mngmtAgentTrap_9011=mngmtAgentTrap_9011, mngmtAgentTrap_111=mngmtAgentTrap_111, maHSVMibRevMinor=maHSVMibRevMinor, mngmtAgentTrap_106=mngmtAgentTrap_106, mngmtAgentTrap_52=mngmtAgentTrap_52, mngmtAgentTrap_8069=mngmtAgentTrap_8069, sCellEventTrap_06_3c=sCellEventTrap_06_3c, sCellEventTrap_06_19=sCellEventTrap_06_19, mngmtAgentTrap_9034=mngmtAgentTrap_9034, mngmtAgentTrap_8060=mngmtAgentTrap_8060, mngmtAgentTrap_16013=mngmtAgentTrap_16013, mngmtAgentTrap_24003=mngmtAgentTrap_24003, sCellEventTrap_06_13=sCellEventTrap_06_13, mngmtAgentTrap_1010=mngmtAgentTrap_1010, mngmtAgentTrap_84=mngmtAgentTrap_84, mngmtAgentTrap_27023=mngmtAgentTrap_27023, mngmtAgentTrap_28=mngmtAgentTrap_28, mngmtAgentTrap_2103=mngmtAgentTrap_2103)
mibBuilder.exportSymbols("CPQHSV-MIB", mngmtAgentTrap_14002=mngmtAgentTrap_14002, mngmtAgentTrap_16027=mngmtAgentTrap_16027, mngmtAgentTrap_3017=mngmtAgentTrap_3017, mngmtAgentTrap_6006=mngmtAgentTrap_6006, mngmtAgentTrap_2048=mngmtAgentTrap_2048, mngmtAgentTrap_17=mngmtAgentTrap_17, mngmtAgentTrap_25019=mngmtAgentTrap_25019, mngmtAgentTrap_3001=mngmtAgentTrap_3001, nscEntryIndex=nscEntryIndex, mngmtAgentTrap_21012=mngmtAgentTrap_21012, mngmtAgentTrap_2011=mngmtAgentTrap_2011, sCellEventTrap_04_13=sCellEventTrap_04_13, mngmtAgentTrap_6037=mngmtAgentTrap_6037, mngmtAgentTrap_86=mngmtAgentTrap_86, mngmtAgentTrap_10043=mngmtAgentTrap_10043, mngmtAgentTrap_17017=mngmtAgentTrap_17017, mngmtAgentTrap_43=mngmtAgentTrap_43, mngmtAgentTrap_2001=mngmtAgentTrap_2001, sCellEventTrap_09_69=sCellEventTrap_09_69, mngmtAgentTrap_4023=mngmtAgentTrap_4023, mngmtAgentTrap_1006=mngmtAgentTrap_1006, mngmtAgentTrap_4000=mngmtAgentTrap_4000, hostTotal=hostTotal, mngmtAgentTrap_9006=mngmtAgentTrap_9006, mngmtAgentTrap_127=mngmtAgentTrap_127, sCellEventTrap_09_46=sCellEventTrap_09_46, sCellEventTrap_09_ce=sCellEventTrap_09_ce, sCellEventTrap_09_d5=sCellEventTrap_09_d5, mngmtAgentTrap_18004=mngmtAgentTrap_18004, mngmtAgentTrap_10027=mngmtAgentTrap_10027, mngmtAgentTrap_3048=mngmtAgentTrap_3048, mngmtAgentTrap_9008=mngmtAgentTrap_9008, mngmtAgentTrap_4058=mngmtAgentTrap_4058, sCellEventTrap_04_11=sCellEventTrap_04_11, mngmtAgentTrap_5011=mngmtAgentTrap_5011, scellCAC=scellCAC, scellEventTimeDate=scellEventTimeDate, mngmtAgentTrap_10039=mngmtAgentTrap_10039, sCellEventTrap_09_1a=sCellEventTrap_09_1a, sCellEventTrap_06_36=sCellEventTrap_06_36, sCellEventTrap_42_04=sCellEventTrap_42_04, sCellEventTrap_03_0b=sCellEventTrap_03_0b, mngmtAgentTrap_3092=mngmtAgentTrap_3092, sCellEventTrap_0d_03=sCellEventTrap_0d_03, mngmtAgentTrap_17003=mngmtAgentTrap_17003, sCellEventTrap_09_2a=sCellEventTrap_09_2a, mngmtAgentTrap_25015=mngmtAgentTrap_25015, sCellEventTrap_0d_4b=sCellEventTrap_0d_4b, mngmtAgentTrap_6023=mngmtAgentTrap_6023, mngmtAgentTrap_27036=mngmtAgentTrap_27036, mngmtAgentTrap_4049=mngmtAgentTrap_4049, mngmtAgentTrap_16005=mngmtAgentTrap_16005, mngmtAgentTrap_6021=mngmtAgentTrap_6021, sCellEventTrap_0c_04=sCellEventTrap_0c_04, mngmtAgentTrap_27=mngmtAgentTrap_27, sCellEventTrap_07_06=sCellEventTrap_07_06, sCellEventTrap_09_36=sCellEventTrap_09_36, mngmtAgentTrap_21009=mngmtAgentTrap_21009, sCellEventTrap_06_18=sCellEventTrap_06_18, sCellEventTrap_06_10=sCellEventTrap_06_10, sCellEventTrap_07_00=sCellEventTrap_07_00, hostStatus=hostStatus, mngmtAgentTrap_4032=mngmtAgentTrap_4032, mngmtAgentTrap_2078=mngmtAgentTrap_2078, cpqElementManager=cpqElementManager, mngmtAgentTrap_26007=mngmtAgentTrap_26007, mngmtAgentTrap_2071=mngmtAgentTrap_2071, mngmtAgentTrap_17006=mngmtAgentTrap_17006, sCellEventTrap_04_06=sCellEventTrap_04_06, sCellEventTrap_09_19=sCellEventTrap_09_19, mngmtAgentTrap_2099=mngmtAgentTrap_2099, mngmtAgentTrap_9018=mngmtAgentTrap_9018, sCellEventTrap_06_3b=sCellEventTrap_06_3b, mngmtAgentTrap_2012=mngmtAgentTrap_2012, mngmtAgentTrap_2057=mngmtAgentTrap_2057, sCellEventTrap_09_71=sCellEventTrap_09_71, mngmtAgentTrap_21010=mngmtAgentTrap_21010, sCellEventTrap_0d_a1=sCellEventTrap_0d_a1, mngmtAgentTrap_98=mngmtAgentTrap_98, mngmtAgentTrap_9025=mngmtAgentTrap_9025, mngmtAgentTrap_5015=mngmtAgentTrap_5015, mngmtAgentTrap_14005=mngmtAgentTrap_14005, mngmtAgentTrap_20001=mngmtAgentTrap_20001, mngmtAgentTrap_25003=mngmtAgentTrap_25003, mngmtAgentTrap_196=mngmtAgentTrap_196, sCellEventTrap_06_12=sCellEventTrap_06_12, mngmtAgentTrap_25010=mngmtAgentTrap_25010, mngmtAgentTrap_4050=mngmtAgentTrap_4050, sCellEventTrap_09_d0=sCellEventTrap_09_d0, sCellEventTrap_09_79=sCellEventTrap_09_79, sCellEventTrap_0d_8d=sCellEventTrap_0d_8d, mngmtAgentTrap_3015=mngmtAgentTrap_3015, mngmtAgentTrap_3025=mngmtAgentTrap_3025, mngmtAgentTrap_3075=mngmtAgentTrap_3075, mngmtAgentTrap_25018=mngmtAgentTrap_25018, mngmtAgentTrap_4025=mngmtAgentTrap_4025, sCellEventTrap_06_00=sCellEventTrap_06_00, mngmtAgentTrap_3051=mngmtAgentTrap_3051, mngmtAgentTrap_26012=mngmtAgentTrap_26012, sCellEventTrap_09_3a=sCellEventTrap_09_3a, sCellEventTrap_04_09=sCellEventTrap_04_09, mngmtAgentTrap_8036=mngmtAgentTrap_8036, mngmtAgentTrap_2031=mngmtAgentTrap_2031, sCellEventTrap_06_20=sCellEventTrap_06_20, mngmtAgentTrap_1013=mngmtAgentTrap_1013, agHostName=agHostName, mngmtAgentTrap_4021=mngmtAgentTrap_4021, sCellEventTrap_09_30=sCellEventTrap_09_30, mngmtAgentTrap_4040=mngmtAgentTrap_4040, mngmtAgentTrap_16035=mngmtAgentTrap_16035, sCellEventTrap_03_09=sCellEventTrap_03_09, mngmtAgentTrap_120=mngmtAgentTrap_120, mngmtAgentTrap_6020=mngmtAgentTrap_6020, sCellEventTrap_09_3e=sCellEventTrap_09_3e, mngmtAgentTrap_8005=mngmtAgentTrap_8005, mngmtAgentTrap_18063=mngmtAgentTrap_18063, mngmtAgentTrap_3069=mngmtAgentTrap_3069, sCellEventTrap_06_24=sCellEventTrap_06_24, mngmtAgentTrap_2087=mngmtAgentTrap_2087, mngmtAgentTrap_6017=mngmtAgentTrap_6017, mngmtAgentTrap_8043=mngmtAgentTrap_8043, mngmtAgentTrap_23002=mngmtAgentTrap_23002, shelfElementType=shelfElementType, mngmtAgentTrap_58=mngmtAgentTrap_58, mngmtAgentTrap_2076=mngmtAgentTrap_2076, shelfStatus=shelfStatus, mngmtAgentTrap_27015=mngmtAgentTrap_27015, sCellEventTrap_07_09=sCellEventTrap_07_09, mngmtAgentTrap_26015=mngmtAgentTrap_26015, mngmtAgentTrap_3060=mngmtAgentTrap_3060, mngmtAgentTrap_25006=mngmtAgentTrap_25006, mngmtAgentTrap_8052=mngmtAgentTrap_8052, mngmtAgentTrap_62=mngmtAgentTrap_62, sCellEventTrap_0c_18=sCellEventTrap_0c_18, sCellEventTrap_0c_1a=sCellEventTrap_0c_1a, sCellEventTrap_09_0f=sCellEventTrap_09_0f, sCellEventTrap_0c_1f=sCellEventTrap_0c_1f, mngmtAgentTrap_2008=mngmtAgentTrap_2008, sCellEventTrap_04_0a=sCellEventTrap_04_0a, mngmtAgentTrap_8085=mngmtAgentTrap_8085, sCellEventTrap_09_4a=sCellEventTrap_09_4a, agentEntryIndex=agentEntryIndex, mngmtAgentTrap_8035=mngmtAgentTrap_8035, mngmtAgentTrap_13015=mngmtAgentTrap_13015, mngmtAgentTrap_27004=mngmtAgentTrap_27004, sCellEventTrap_0d_de=sCellEventTrap_0d_de, mngmtAgentTrap_14001=mngmtAgentTrap_14001, mngmtAgentTrap_4031=mngmtAgentTrap_4031, mngmtAgentTrap_14007=mngmtAgentTrap_14007, sCellEventTrap_09_72=sCellEventTrap_09_72, sCellEventTrap_09_d1=sCellEventTrap_09_d1, mngmtAgentTrap_6024=mngmtAgentTrap_6024, mngmtAgentTrap_4047=mngmtAgentTrap_4047, compaq=compaq, mngmtAgentTrap_9=mngmtAgentTrap_9, mngmtAgentTrap_202=mngmtAgentTrap_202, mngmtAgentTrap_20021=mngmtAgentTrap_20021, mngmtAgentTrap_20018=mngmtAgentTrap_20018, shelfEntryIndex=shelfEntryIndex, mngmtAgentTrap_27007=mngmtAgentTrap_27007, mngmtAgentTrap_113=mngmtAgentTrap_113, mngmtAgentTrap_103=mngmtAgentTrap_103, mngmtAgentTrap_3003=mngmtAgentTrap_3003, mngmtAgentTrap_6026=mngmtAgentTrap_6026, mngmtAgentTrap_8081=mngmtAgentTrap_8081, sCellEventTrap_04_0c=sCellEventTrap_04_0c, sCellEventTrap_0d_00=sCellEventTrap_0d_00, nscUUID=nscUUID, mngmtAgentTrap_9004=mngmtAgentTrap_9004, shelfStatusTable=shelfStatusTable, sCellEventTrap_09_38=sCellEventTrap_09_38, sCellEventTrap_0c_15=sCellEventTrap_0c_15, mngmtAgentTrap_1009=mngmtAgentTrap_1009, mngmtAgentTrap_16012=mngmtAgentTrap_16012, mngmtAgentTrap_25012=mngmtAgentTrap_25012, mngmtAgentTrap_8031=mngmtAgentTrap_8031, mngmtAgentTrap_9007=mngmtAgentTrap_9007, mngmtAgentTrap_9041=mngmtAgentTrap_9041, mngmtAgentTrap_54=mngmtAgentTrap_54, mngmtAgentTrap_8095=mngmtAgentTrap_8095, mngmtAgentTrap_18060=mngmtAgentTrap_18060, mngmtAgentTrap_3013=mngmtAgentTrap_3013, mngmtAgentTrap_20005=mngmtAgentTrap_20005, sCellEventTrap_0c_08=sCellEventTrap_0c_08, mngmtAgentTrap_10025=mngmtAgentTrap_10025, mngmtAgentTrap_47=mngmtAgentTrap_47, mngmtAgentTrap_9029=mngmtAgentTrap_9029, mngmtAgentTrap_4015=mngmtAgentTrap_4015, scellEIP=scellEIP, sCellEventTrap_0c_0c=sCellEventTrap_0c_0c, mngmtAgentTrap_3090=mngmtAgentTrap_3090, sCellEventTrap_06_16=sCellEventTrap_06_16, mngmtAgentTrap_6016=mngmtAgentTrap_6016, mngmtAgentTrap_8090=mngmtAgentTrap_8090, mngmtAgentTrap_2042=mngmtAgentTrap_2042, mngmtAgentTrap_9028=mngmtAgentTrap_9028, mngmtAgentTrap_2040=mngmtAgentTrap_2040, sCellEventTrap_42_00=sCellEventTrap_42_00, mngmtAgentTrap_8077=mngmtAgentTrap_8077, agentEventTimeDate=agentEventTimeDate, mngmtAgentTrap_18002=mngmtAgentTrap_18002, scellEntryIndex=scellEntryIndex, mngmtAgentTrap_5017=mngmtAgentTrap_5017, sCellEventTrap_09_17=sCellEventTrap_09_17, sCellEventTrap_06_25=sCellEventTrap_06_25, mngmtAgentTrap_72=mngmtAgentTrap_72, mngmtAgentTrap_3020=mngmtAgentTrap_3020, mngmtAgentTrap_8056=mngmtAgentTrap_8056, mngmtAgentTrap_8028=mngmtAgentTrap_8028, mngmtAgentTrap_9035=mngmtAgentTrap_9035, mngmtAgentTrap_27029=mngmtAgentTrap_27029, mngmtAgentTrap_1012=mngmtAgentTrap_1012, mngmtAgentTrap_9001=mngmtAgentTrap_9001, sCellEventTrap_06_33=sCellEventTrap_06_33, sCellEventTrap_09_cd=sCellEventTrap_09_cd, sCellEventTrap_09_14=sCellEventTrap_09_14, mngmtAgentTrap_46=mngmtAgentTrap_46, mngmtAgentTrap_3037=mngmtAgentTrap_3037, mngmtAgentTrap_2104=mngmtAgentTrap_2104, mngmtAgentTrap_18075=mngmtAgentTrap_18075, mngmtAgentTrap_24001=mngmtAgentTrap_24001, mngmtAgentTrap_92=mngmtAgentTrap_92, mngmtAgentTrap_2102=mngmtAgentTrap_2102, mngmtAgentTrap_6008=mngmtAgentTrap_6008, sCellEventTrap_83_05=sCellEventTrap_83_05, sCellEventTrap_0c_1d=sCellEventTrap_0c_1d, mngmtAgentTrap_18009=mngmtAgentTrap_18009, sCellEventTrap_0d_02=sCellEventTrap_0d_02, sCellEventTrap_06_05=sCellEventTrap_06_05, mngmtAgentTrap_8051=mngmtAgentTrap_8051, mngmtAgentTrap_11=mngmtAgentTrap_11, cpqHSVAgent=cpqHSVAgent, mngmtAgentTrap_69=mngmtAgentTrap_69, mngmtAgentTrap_10019=mngmtAgentTrap_10019, sCellEventTrap_0d_4c=sCellEventTrap_0d_4c, mngmtAgentTrap_4033=mngmtAgentTrap_4033, mngmtAgentTrap_10014=mngmtAgentTrap_10014, sCellEventTrap_06_27=sCellEventTrap_06_27, sCellEventTrap_03_05=sCellEventTrap_03_05, sCellEventTrap_0c_17=sCellEventTrap_0c_17, mngmtAgentTrap_3055=mngmtAgentTrap_3055, mngmtAgentTrap_18051=mngmtAgentTrap_18051, mngmtAgentTrap_184=mngmtAgentTrap_184, mngmtAgentTrap_18074=mngmtAgentTrap_18074, nscStatusTable=nscStatusTable, sCellEventTrap_0d_71=sCellEventTrap_0d_71, mngmtAgentTrap_21001=mngmtAgentTrap_21001, mngmtAgentTrap_8014=mngmtAgentTrap_8014, mngmtAgentTrap_8058=mngmtAgentTrap_8058, mngmtAgentTrap_3007=mngmtAgentTrap_3007, sCellEventTrap_06_2d=sCellEventTrap_06_2d, mngmtAgentTrap_21014=mngmtAgentTrap_21014, mngmtAgentTrap_3056=mngmtAgentTrap_3056, sCellEventTrap_06_26=sCellEventTrap_06_26)
mibBuilder.exportSymbols("CPQHSV-MIB", mngmtAgentTrap_4048=mngmtAgentTrap_4048, mngmtAgentTrap_10044=mngmtAgentTrap_10044, mngmtAgentTrap_16028=mngmtAgentTrap_16028, mngmtAgentTrap_20011=mngmtAgentTrap_20011, mngmtAgentTrap_25001=mngmtAgentTrap_25001, sCellEventTrap_09_6d=sCellEventTrap_09_6d, sCellEventTrap_09_2c=sCellEventTrap_09_2c, sCellEventTrap_09_d3=sCellEventTrap_09_d3, mngmtAgentTrap_5014=mngmtAgentTrap_5014, mngmtAgentTrap_6022=mngmtAgentTrap_6022, mngmtAgentTrap_63=mngmtAgentTrap_63, mngmtAgentTrap_8010=mngmtAgentTrap_8010, sCellEventTrap_0d_7f=sCellEventTrap_0d_7f, mngmtAgentTrap_8053=mngmtAgentTrap_8053, mngmtAgentTrap_18039=mngmtAgentTrap_18039, mngmtAgentTrap_27022=mngmtAgentTrap_27022, mngmtAgentTrap_131=mngmtAgentTrap_131, mngmtAgentTrap_77=mngmtAgentTrap_77, mngmtAgentTrap_10006=mngmtAgentTrap_10006, mngmtAgentTrap_4001=mngmtAgentTrap_4001, mngmtAgentTrap_95=mngmtAgentTrap_95, mngmtAgentTrap_15003=mngmtAgentTrap_15003, mngmtAgentTrap_21004=mngmtAgentTrap_21004, mngmtAgentTrap_2035=mngmtAgentTrap_2035, mngmtAgentTrap_2093=mngmtAgentTrap_2093, mngmtAgentTrap_115=mngmtAgentTrap_115, hostStatusTable=hostStatusTable, sCellEventTrap_0d_47=sCellEventTrap_0d_47, sCellEventTrap_06_02=sCellEventTrap_06_02, mngmtAgentTrap_3072=mngmtAgentTrap_3072, mngmtAgentTrap_8007=mngmtAgentTrap_8007, mngmtAgentTrap_2041=mngmtAgentTrap_2041, mngmtAgentTrap_8055=mngmtAgentTrap_8055, mngmtAgentTrap_5010=mngmtAgentTrap_5010, mngmtAgentTrap_10035=mngmtAgentTrap_10035, mngmtAgentTrap_14012=mngmtAgentTrap_14012, mngmtAgentTrap_18008=mngmtAgentTrap_18008, mngmtAgentTrap_27037=mngmtAgentTrap_27037, mngmtAgentTrap_9003=mngmtAgentTrap_9003, sCellEventTrap_09_12=sCellEventTrap_09_12, mngmtAgentTrap_18018=mngmtAgentTrap_18018, sCellEventTrap_0c_0f=sCellEventTrap_0c_0f, mngmtAgentTrap_112=mngmtAgentTrap_112, mngmtAgentTrap_2032=mngmtAgentTrap_2032, mngmtAgentTrap_9033=mngmtAgentTrap_9033, mngmtAgentTrap_16008=mngmtAgentTrap_16008, sCellEventTrap_07_05=sCellEventTrap_07_05, sCellEventTrap_0d_83=sCellEventTrap_0d_83, mngmtAgentTrap_16=mngmtAgentTrap_16, mngmtAgentTrap_8037=mngmtAgentTrap_8037, mngmtAgentTrap_27018=mngmtAgentTrap_27018, mngmtAgentTrap_8067=mngmtAgentTrap_8067, sCellEventTrap_09_3c=sCellEventTrap_09_3c, mngmtAgentTrap_16030=mngmtAgentTrap_16030, mngmtAgentTrap_3077=mngmtAgentTrap_3077, agentStatus=agentStatus, mngmtAgentTrap_18070=mngmtAgentTrap_18070, mngmtAgentTrap_18076=mngmtAgentTrap_18076, mngmtAgentTrap_15001=mngmtAgentTrap_15001, sCellEventTrap_06_08=sCellEventTrap_06_08, mngmtAgentTrap_21019=mngmtAgentTrap_21019, mngmtAgentTrap_6032=mngmtAgentTrap_6032, mngmtAgentTrap_3079=mngmtAgentTrap_3079, sCellEventTrap_0d_5b=sCellEventTrap_0d_5b, sCellEventTrap_09_49=sCellEventTrap_09_49, mngmtAgentTrap_23=mngmtAgentTrap_23, mngmtAgentTrap_5001=mngmtAgentTrap_5001, mngmtAgentTrap_3083=mngmtAgentTrap_3083, mngmtAgentTrap_68=mngmtAgentTrap_68, mngmtAgentTrap_44=mngmtAgentTrap_44, mngmtAgentTrap_16021=mngmtAgentTrap_16021, mngmtAgentTrap_13017=mngmtAgentTrap_13017, cpqHSV=cpqHSV, sCellEventTrap_06_29=sCellEventTrap_06_29, mngmtAgentTrap_8091=mngmtAgentTrap_8091, sCellEventTrap_09_d9=sCellEventTrap_09_d9, nscTotal=nscTotal, mngmtAgentTrap_3=mngmtAgentTrap_3, mngmtAgentTrap_18038=mngmtAgentTrap_18038, mngmtAgentTrap_76=mngmtAgentTrap_76, sCellEventTrap_04_02=sCellEventTrap_04_02, mngmtAgentTrap_20=mngmtAgentTrap_20, mngmtAgentTrap_9015=mngmtAgentTrap_9015, mngmtAgentTrap_27017=mngmtAgentTrap_27017, mngmtAgentTrap_100=mngmtAgentTrap_100, mngmtAgentTrap_3054=mngmtAgentTrap_3054, mngmtAgentTrap_82=mngmtAgentTrap_82, mngmtAgentTrap_18049=mngmtAgentTrap_18049, mngmtAgentTrap_4013=mngmtAgentTrap_4013, mngmtAgentTrap_6010=mngmtAgentTrap_6010, sCellEventTrap_09_2e=sCellEventTrap_09_2e, mngmtAgentTrap_27030=mngmtAgentTrap_27030, mngmtAgentTrap_27031=mngmtAgentTrap_27031, mngmtAgentTrap_3070=mngmtAgentTrap_3070, mngmtAgentTrap_2105=mngmtAgentTrap_2105, mngmtAgentTrap_4011=mngmtAgentTrap_4011, sCellEventTrap_04_08=sCellEventTrap_04_08, sCellEventTrap_06_2c=sCellEventTrap_06_2c, sCellEventTrap_09_2b=sCellEventTrap_09_2b, mngmtAgentTrap_73=mngmtAgentTrap_73, mngmtAgentTrap_6031=mngmtAgentTrap_6031, sCellEventTrap_0b_05=sCellEventTrap_0b_05, sCellEventTrap_0c_19=sCellEventTrap_0c_19, mngmtAgentTrap_9036=mngmtAgentTrap_9036, mngmtAgentTrap_17012=mngmtAgentTrap_17012, sCellEventTrap_0c_09=sCellEventTrap_0c_09, mngmtAgentTrap_21013=mngmtAgentTrap_21013, sCellEventTrap_04_05=sCellEventTrap_04_05, mngmtAgentTrap_4059=mngmtAgentTrap_4059, sCellEventTrap_03_04=sCellEventTrap_03_04, sCellEventTrap_09_31=sCellEventTrap_09_31, shelfId=shelfId, sCellEventTrap_06_30=sCellEventTrap_06_30, sCellEventTrap_09_23=sCellEventTrap_09_23, mngmtAgentTrap_198=mngmtAgentTrap_198, mngmtAgentTrap_2013=mngmtAgentTrap_2013, mngmtAgentTrap_3065=mngmtAgentTrap_3065, sCellEventTrap_06_0e=sCellEventTrap_06_0e, mngmtAgentTrap_11001=mngmtAgentTrap_11001, mngmtAgentTrap_1011=mngmtAgentTrap_1011, sCellEventTrap_0c_05=sCellEventTrap_0c_05, mngmtAgentTrap_2070=mngmtAgentTrap_2070, sCellEventTrap_83_04=sCellEventTrap_83_04, mngmtAgentTrap_4020=mngmtAgentTrap_4020, mngmtAgentTrap_4036=mngmtAgentTrap_4036, sCellEventTrap_07_01=sCellEventTrap_07_01, mngmtAgentTrap_17009=mngmtAgentTrap_17009, sCellEventTrap_09_75=sCellEventTrap_09_75, mngmtAgentTrap_71=mngmtAgentTrap_71, mngmtAgentTrap_83=mngmtAgentTrap_83, mngmtAgentTrap_3044=mngmtAgentTrap_3044, mngmtAgentTrap_8002=mngmtAgentTrap_8002, mngmtAgentTrap_2069=mngmtAgentTrap_2069, mngmtAgentTrap_4=mngmtAgentTrap_4, mngmtAgentTrap_3086=mngmtAgentTrap_3086, sCellEventTrap_06_1d=sCellEventTrap_06_1d, mngmtAgentTrap_2072=mngmtAgentTrap_2072, sCellEventTrap_09_77=sCellEventTrap_09_77, mngmtAgentTrap_6030=mngmtAgentTrap_6030, mngmtAgentTrap_26016=mngmtAgentTrap_26016, sCellEventTrap_06_37=sCellEventTrap_06_37, sCellEventTrap_0c_1e=sCellEventTrap_0c_1e, mngmtAgentTrap_10013=mngmtAgentTrap_10013, sCellEventTrap_0c_06=sCellEventTrap_0c_06, mngmtAgentTrap_18067=mngmtAgentTrap_18067, mngmtAgentTrap_26014=mngmtAgentTrap_26014, mngmtAgentTrap_13019=mngmtAgentTrap_13019, mngmtAgentTrap_2089=mngmtAgentTrap_2089, sCellEventTrap_09_33=sCellEventTrap_09_33, mngmtAgentTrap_8071=mngmtAgentTrap_8071, mngmtAgentTrap_9027=mngmtAgentTrap_9027, sCellEventTrap_09_39=sCellEventTrap_09_39, mngmtAgentTrap_18050=mngmtAgentTrap_18050, sCellEventTrap_83_02=sCellEventTrap_83_02, mngmtAgentTrap_5006=mngmtAgentTrap_5006, mngmtAgentTrap_20022=mngmtAgentTrap_20022, mngmtAgentTrap_2086=mngmtAgentTrap_2086, emuEventTrapCritical=emuEventTrapCritical, mngmtAgentTrap_21018=mngmtAgentTrap_21018, mngmtAgentTrap_20017=mngmtAgentTrap_20017, sCellEventTrap_03_02=sCellEventTrap_03_02, mngmtAgentTrap_6002=mngmtAgentTrap_6002, mngmtAgentTrap_4054=mngmtAgentTrap_4054, sCellEventTrap_09_47=sCellEventTrap_09_47, sCellEventTrap_09_1e=sCellEventTrap_09_1e, mngmtAgentTrap_2095=mngmtAgentTrap_2095, mngmtAgentTrap_8034=mngmtAgentTrap_8034, mngmtAgentTrap_8063=mngmtAgentTrap_8063, mngmtAgentTrap_16024=mngmtAgentTrap_16024, mngmtAgentTrap_22=mngmtAgentTrap_22, mngmtAgentTrap_2064=mngmtAgentTrap_2064, mngmtAgentTrap_53=mngmtAgentTrap_53, mngmtAgentTrap_25=mngmtAgentTrap_25, mngmtAgentTrap_25007=mngmtAgentTrap_25007, mngmtAgentTrap_148=mngmtAgentTrap_148, mngmtAgentTrap_3095=mngmtAgentTrap_3095, sCellEventTrap_06_03=sCellEventTrap_06_03, mngmtAgentTrap_78=mngmtAgentTrap_78, mngmtAgentTrap_27032=mngmtAgentTrap_27032, mngmtAgentTrap_91=mngmtAgentTrap_91, mngmtAgentTrap_6013=mngmtAgentTrap_6013, mngmtAgentTrap_2063=mngmtAgentTrap_2063, mngmtAgentTrap_8022=mngmtAgentTrap_8022, mngmtAgentTrap_8016=mngmtAgentTrap_8016, mngmtAgentTrap_18041=mngmtAgentTrap_18041, mngmtAgentTrap_8076=mngmtAgentTrap_8076, mngmtAgentTrap_17015=mngmtAgentTrap_17015, mngmtAgentTrap_8049=mngmtAgentTrap_8049, mngmtAgentTrap_5005=mngmtAgentTrap_5005, mngmtAgentTrap_16033=mngmtAgentTrap_16033, mngmtAgentTrap_5=mngmtAgentTrap_5, maHSVMibRev=maHSVMibRev, mngmtAgentTrap_3062=mngmtAgentTrap_3062, mngmtAgentTrap_66=mngmtAgentTrap_66, sCellEventTrap_0b_00=sCellEventTrap_0b_00, mngmtAgentTrap_3002=mngmtAgentTrap_3002, mngmtAgentTrap_114=mngmtAgentTrap_114, sCellEventTrap_09_24=sCellEventTrap_09_24, mngmtAgentTrap_117=mngmtAgentTrap_117, mngmtAgentTrap_121=mngmtAgentTrap_121, sCellEventTrap_0d_6f=sCellEventTrap_0d_6f, mngmtAgentTrap_2006=mngmtAgentTrap_2006, mngmtAgentTrap_2074=mngmtAgentTrap_2074, mngmtAgentTrap_9040=mngmtAgentTrap_9040, mngmtAgentTrap_26017=mngmtAgentTrap_26017, mngmtAgentTrap_35=mngmtAgentTrap_35, mngmtAgentTrap_16026=mngmtAgentTrap_16026, sCellEventTrap_09_78=sCellEventTrap_09_78, mngmtAgentTrap_13012=mngmtAgentTrap_13012, mngmtAgentTrap_21003=mngmtAgentTrap_21003, mngmtAgentTrap_27034=mngmtAgentTrap_27034, mngmtAgentTrap_27051=mngmtAgentTrap_27051, sCellEventTrap_06_42=sCellEventTrap_06_42, mngmtAgentTrap_18042=mngmtAgentTrap_18042, sCellEventTrap_09_43=sCellEventTrap_09_43, mngmtAgentTrap_1004=mngmtAgentTrap_1004, sCellEventTrap_06_35=sCellEventTrap_06_35, mngmtAgentTrap_10018=mngmtAgentTrap_10018, mngmtAgentTrap_8015=mngmtAgentTrap_8015, sCellEventTrap_0d_34=sCellEventTrap_0d_34, mngmtAgentTrap_8075=mngmtAgentTrap_8075, mngmtAgentTrap_3063=mngmtAgentTrap_3063, sCellEventTrap_0c_12=sCellEventTrap_0c_12, mngmtAgentTrap_10021=mngmtAgentTrap_10021, mngmtAgentTrap_11002=mngmtAgentTrap_11002, mngmtAgentTrap_14010=mngmtAgentTrap_14010, mngmtAgentTrap_1=mngmtAgentTrap_1, mngmtAgentTrap_4029=mngmtAgentTrap_4029, mngmtAgentTrap_5002=mngmtAgentTrap_5002, mngmtAgentTrap_42=mngmtAgentTrap_42, sCellEventTrap_09_16=sCellEventTrap_09_16, mngmtAgentTrap_12003=mngmtAgentTrap_12003, mngmtAgentTrap_5019=mngmtAgentTrap_5019, srvOS=srvOS, mngmtAgentTrap_6=mngmtAgentTrap_6, mngmtAgentTrap_8045=mngmtAgentTrap_8045, mngmtAgentTrap_2021=mngmtAgentTrap_2021, mngmtAgentTrap_1008=mngmtAgentTrap_1008, mngmtAgentTrap_9023=mngmtAgentTrap_9023, mngmtAgentTrap_3059=mngmtAgentTrap_3059, mngmtAgentTrap_8070=mngmtAgentTrap_8070, mngmtAgentTrap_17008=mngmtAgentTrap_17008, mngmtAgentTrap_2010=mngmtAgentTrap_2010, mngmtAgentTrap_3046=mngmtAgentTrap_3046, mngmtAgentTrap_27044=mngmtAgentTrap_27044, scellECode=scellECode, sCellEventTrap_0c_16=sCellEventTrap_0c_16, mngmtAgentTrap_2022=mngmtAgentTrap_2022, mngmtAgentTrap_2085=mngmtAgentTrap_2085, mngmtAgentTrap_4014=mngmtAgentTrap_4014, mngmtAgentTrap_6012=mngmtAgentTrap_6012, mngmtAgentTrap_16023=mngmtAgentTrap_16023, mngmtAgentTrap_16036=mngmtAgentTrap_16036, mngmtAgentTrap_27033=mngmtAgentTrap_27033)
mibBuilder.exportSymbols("CPQHSV-MIB", sCellEventTrap_83_00=sCellEventTrap_83_00, mngmtAgentTrap_2049=mngmtAgentTrap_2049, sCellEventTrap_0c_03=sCellEventTrap_0c_03, scellStatus=scellStatus, sCellEventTrap_04_0e=sCellEventTrap_04_0e, sCellEventTrap_0d_d8=sCellEventTrap_0d_d8, mngmtAgentTrap_5008=mngmtAgentTrap_5008, mngmtAgentTrap_3064=mngmtAgentTrap_3064, mngmtAgentTrap_8079=mngmtAgentTrap_8079, mngmtAgentTrap_18019=mngmtAgentTrap_18019, mngmtAgentTrap_26019=mngmtAgentTrap_26019, mngmtAgentTrap_18047=mngmtAgentTrap_18047, sCellEventTrap_0d_5f=sCellEventTrap_0d_5f, sCellEventTrap_04_0f=sCellEventTrap_04_0f, sCellEventTrap_07_08=sCellEventTrap_07_08, mngmtAgentTrap_3057=mngmtAgentTrap_3057, mngmtAgentTrap_6028=mngmtAgentTrap_6028, mngmtAgentTrap_8029=mngmtAgentTrap_8029, mngmtAgentTrap_2090=mngmtAgentTrap_2090, mngmtAgentTrap_16022=mngmtAgentTrap_16022, mngmtAgentTrap_2091=mngmtAgentTrap_2091, sCellEventTrap_0b_04=sCellEventTrap_0b_04, srvComputerType=srvComputerType, mngmtAgentTrap_4034=mngmtAgentTrap_4034, mngmtAgentTrap_27019=mngmtAgentTrap_27019, mngmtAgentTrap_18=mngmtAgentTrap_18, mngmtAgentTrap_3019=mngmtAgentTrap_3019, sCellEventTrap_06_1c=sCellEventTrap_06_1c, mngmtAgentTrap_9019=mngmtAgentTrap_9019, mngmtAgentTrap_29=mngmtAgentTrap_29, mngmtAgentTrap_18045=mngmtAgentTrap_18045, mngmtAgentTrap_18010=mngmtAgentTrap_18010, mngmtAgentTrap_16031=mngmtAgentTrap_16031, mngmtAgentTrap_18003=mngmtAgentTrap_18003, sCellEventTrap_06_04=sCellEventTrap_06_04, mngmtAgentTrap_26010=mngmtAgentTrap_26010, mngmtAgentTrap_15009=mngmtAgentTrap_15009, sCellEventTrap_06_0a=sCellEventTrap_06_0a, sCellEventTrap_06_15=sCellEventTrap_06_15, mngmtAgentTrap_2068=mngmtAgentTrap_2068, mngmtAgentTrap_27048=mngmtAgentTrap_27048, mngmtAgentTrap_9038=mngmtAgentTrap_9038, sCellEventTrap_0c_0a=sCellEventTrap_0c_0a, mngmtAgentTrap_129=mngmtAgentTrap_129, mngmtAgentTrap_2016=mngmtAgentTrap_2016, scell=scell, mngmtAgentTrap_10042=mngmtAgentTrap_10042, mngmtAgentTrap_9031=mngmtAgentTrap_9031, sCellEventTrap_09_65=sCellEventTrap_09_65, mngmtAgentTrap_6005=mngmtAgentTrap_6005, sCellEventTrap_0d_dd=sCellEventTrap_0d_dd, mngmtAgentTrap_4042=mngmtAgentTrap_4042, mngmtAgentTrap_15005=mngmtAgentTrap_15005, sCellEventTrap_01_02=sCellEventTrap_01_02, sCellEventTrap_06_40=sCellEventTrap_06_40, sCellEventTrap_06_38=sCellEventTrap_06_38, mngmtAgentTrap_18048=mngmtAgentTrap_18048, mngmtAgentTrap_2034=mngmtAgentTrap_2034, mngmtAgentTrap_20023=mngmtAgentTrap_20023, scellEntry=scellEntry, mngmtAgentTrap_50=mngmtAgentTrap_50, sCellEventTrap_0c_11=sCellEventTrap_0c_11, mngmtAgentTrap_2067=mngmtAgentTrap_2067, sCellEventTrap_09_0e=sCellEventTrap_09_0e, mngmtAgentTrap_10024=mngmtAgentTrap_10024, mngmtAgentTrap_17016=mngmtAgentTrap_17016, mngmtAgentTrap_5016=mngmtAgentTrap_5016, mngmtAgentTrap_27035=mngmtAgentTrap_27035, mngmtAgentTrap_27043=mngmtAgentTrap_27043, mngmtAgentTrap_8024=mngmtAgentTrap_8024, scellNameDateTime=scellNameDateTime, mngmtAgentTrap_4028=mngmtAgentTrap_4028, mngmtAgentTrap_22001=mngmtAgentTrap_22001, mngmtAgentTrap_9013=mngmtAgentTrap_9013, sCellEventTrap_09_22=sCellEventTrap_09_22, sCellEventTrap_42_03=sCellEventTrap_42_03, mngmtAgentTrap_8066=mngmtAgentTrap_8066, mngmtAgentTrap_18066=mngmtAgentTrap_18066, sCellEventTrap_06_01=sCellEventTrap_06_01, mngmtAgentTrap_8087=mngmtAgentTrap_8087, mngmtAgentTrap_18068=mngmtAgentTrap_18068, mngmtAgentTrap_8078=mngmtAgentTrap_8078, sCellEventTrap_06_2e=sCellEventTrap_06_2e, mngmtAgentTrap_2036=mngmtAgentTrap_2036, sCellEventTrap_09_6e=sCellEventTrap_09_6e, mngmtAgentTrap_27009=mngmtAgentTrap_27009, mngmtAgentTrap_27047=mngmtAgentTrap_27047, mngmtAgentTrap_59=mngmtAgentTrap_59, mngmtAgentTrap_89=mngmtAgentTrap_89, sCellEventTrap_06_0d=sCellEventTrap_06_0d, mngmtAgentTrap_2030=mngmtAgentTrap_2030, mngmtAgentTrap_8003=mngmtAgentTrap_8003, mngmtAgentTrap_12001=mngmtAgentTrap_12001, sCellEventTrap_09_cb=sCellEventTrap_09_cb, mngmtAgentTrap_8040=mngmtAgentTrap_8040, mngmtAgentTrap_5012=mngmtAgentTrap_5012, mngmtAgentTrap_8050=mngmtAgentTrap_8050, mngmtAgentTrap_8019=mngmtAgentTrap_8019, sCellEventTrap_09_2d=sCellEventTrap_09_2d, sCellEventTrap_06_32=sCellEventTrap_06_32, mngmtAgentTrap_17007=mngmtAgentTrap_17007, mngmtAgentTrap_8054=mngmtAgentTrap_8054, mngmtAgentTrap_8073=mngmtAgentTrap_8073, mngmtAgentTrap_10020=mngmtAgentTrap_10020, sCellEventTrap_09_35=sCellEventTrap_09_35, mngmtAgentTrap_85=mngmtAgentTrap_85, mngmtAgentTrap_4004=mngmtAgentTrap_4004, sCellEventTrap_09_3b=sCellEventTrap_09_3b, mngmtAgentTrap_20019=mngmtAgentTrap_20019, hostEntry=hostEntry, mngmtAgentTrap_2060=mngmtAgentTrap_2060, mngmtAgentTrap_1001=mngmtAgentTrap_1001, mngmtAgentTrap_18040=mngmtAgentTrap_18040, sCellEventTrap_06_09=sCellEventTrap_06_09, mngmtAgentTrap_1014=mngmtAgentTrap_1014, mngmtAgentTrap_16017=mngmtAgentTrap_16017, mngmtAgentTrap_87=mngmtAgentTrap_87, mngmtAgentTrap_4030=mngmtAgentTrap_4030, mngmtAgentTrap_8064=mngmtAgentTrap_8064, sCellEventTrap_06_31=sCellEventTrap_06_31, mngmtAgentTrap_104=mngmtAgentTrap_104, mngmtAgentTrap_2059=mngmtAgentTrap_2059, mngmtAgentTrap_22002=mngmtAgentTrap_22002, mngmtAgentTrap_27052=mngmtAgentTrap_27052, sCellEventTrap_0d_f0=sCellEventTrap_0d_f0, mngmtAgentTrap_20003=mngmtAgentTrap_20003, mngmtAgentTrap_4016=mngmtAgentTrap_4016, mngmtAgentTrap_8026=mngmtAgentTrap_8026, sCellEventTrap_07_0a=sCellEventTrap_07_0a, mngmtAgentTrap_3035=mngmtAgentTrap_3035, sCellEventTrap_09_7c=sCellEventTrap_09_7c, mngmtAgentTrap_64=mngmtAgentTrap_64, shelfElementNum=shelfElementNum, mngmtAgentTrap_16014=mngmtAgentTrap_16014, mngmtAgentTrap_8=mngmtAgentTrap_8, sCellEventTrap_09_0d=sCellEventTrap_09_0d, sCellEventTrap_06_3f=sCellEventTrap_06_3f, sCellEventTrap_09_02=sCellEventTrap_09_02, mngmtAgentTrap_5004=mngmtAgentTrap_5004, mngmtAgentTrap_21011=mngmtAgentTrap_21011, mngmtAgentTrap_102=mngmtAgentTrap_102, mngmtAgentTrap_3058=mngmtAgentTrap_3058, mngmtAgentTrap_3091=mngmtAgentTrap_3091, mngmtAgentTrap_96=mngmtAgentTrap_96, mngmtAgentTrap_8048=mngmtAgentTrap_8048, mngmtAgentTrap_8088=mngmtAgentTrap_8088, mngmtAgentTrap_18022=mngmtAgentTrap_18022, mngmtAgentTrap_2004=mngmtAgentTrap_2004, sCellEventTrap_09_cc=sCellEventTrap_09_cc, mngmtAgentTrap_14=mngmtAgentTrap_14, mngmtAgentTrap_18073=mngmtAgentTrap_18073, mngmtAgentTrap_27026=mngmtAgentTrap_27026, mngmtAgentTrap_6014=mngmtAgentTrap_6014, mngmtAgentTrap_27045=mngmtAgentTrap_27045, mngmtAgentTrap_6029=mngmtAgentTrap_6029, mngmtAgentTrap_10015=mngmtAgentTrap_10015, mngmtAgentTrap_6035=mngmtAgentTrap_6035, mngmtAgentTrap_67=mngmtAgentTrap_67, mngmtAgentTrap_109=mngmtAgentTrap_109, mngmtAgentTrap_2097=mngmtAgentTrap_2097, sCellEventTrap_09_05=sCellEventTrap_09_05, sCellEventTrap_09_41=sCellEventTrap_09_41, sCellEventTrap_09_40=sCellEventTrap_09_40, mngmtAgentTrap_27010=mngmtAgentTrap_27010, mngmtAgentTrap_4007=mngmtAgentTrap_4007, mngmtAgentTrap_108=mngmtAgentTrap_108, mngmtAgentTrap_79=mngmtAgentTrap_79, mngmtAgentTrap_8001=mngmtAgentTrap_8001, mngmtAgentTrap_9021=mngmtAgentTrap_9021, sCellEventTrap_06_1a=sCellEventTrap_06_1a, mngmtAgentTrap_2051=mngmtAgentTrap_2051, mngmtAgentTrap_6009=mngmtAgentTrap_6009, mngmtAgentTrap_99=mngmtAgentTrap_99, mngmtAgentTrap_8092=mngmtAgentTrap_8092, mngmtAgentTrap_16020=mngmtAgentTrap_16020, mngmtAgentTrap_9005=mngmtAgentTrap_9005, mngmtAgentTrap_9012=mngmtAgentTrap_9012, sCellEventTrap_09_3d=sCellEventTrap_09_3d, shelf=shelf, mngmtAgentTrap_4043=mngmtAgentTrap_4043, maHSVMibRevMajor=maHSVMibRevMajor, sCellEventTrap_09_1c=sCellEventTrap_09_1c, mngmtAgentTrap_12004=mngmtAgentTrap_12004, mngmtAgentTrap_125=mngmtAgentTrap_125, sCellEventTrap_06_1f=sCellEventTrap_06_1f, mngmtAgentTrap_18034=mngmtAgentTrap_18034, mngmtAgentTrap_8008=mngmtAgentTrap_8008, mngmtAgentTrap_27006=mngmtAgentTrap_27006, sCellEventTrap_09_3f=sCellEventTrap_09_3f, mngmtAgentTrap_116=mngmtAgentTrap_116, mngmtAgentTrap_27001=mngmtAgentTrap_27001, mngmtAgentTrap_199=mngmtAgentTrap_199, mngmtAgentTrap_9039=mngmtAgentTrap_9039, mngmtAgentTrap_60=mngmtAgentTrap_60, mngmtAgentTrap_16034=mngmtAgentTrap_16034, sCellEventTrap_07_04=sCellEventTrap_07_04, sCellEventTrap_06_0b=sCellEventTrap_06_0b, mngmtAgentTrap_8033=mngmtAgentTrap_8033, mngmtAgentTrap_27008=mngmtAgentTrap_27008, mngmtAgentTrap_13=mngmtAgentTrap_13, mngmtAgentTrap_27012=mngmtAgentTrap_27012, mngmtAgentTrap_118=mngmtAgentTrap_118, mngmtAgentTrap_10017=mngmtAgentTrap_10017, mngmtAgentTrap_9030=mngmtAgentTrap_9030, mngmtAgentTrap_18052=mngmtAgentTrap_18052, sCellEventTrap_0b_02=sCellEventTrap_0b_02)
| (octet_string, object_identifier, integer) = mibBuilder.importSymbols('ASN1', 'OctetString', 'ObjectIdentifier', 'Integer')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(single_value_constraint, value_range_constraint, constraints_union, constraints_intersection, value_size_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'SingleValueConstraint', 'ValueRangeConstraint', 'ConstraintsUnion', 'ConstraintsIntersection', 'ValueSizeConstraint')
(module_compliance, notification_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'NotificationGroup')
(counter32, counter64, integer32, bits, notification_type, module_identity, gauge32, unsigned32, object_identity, mib_identifier, mib_scalar, mib_table, mib_table_row, mib_table_column, enterprises, notification_type, iso, time_ticks, ip_address) = mibBuilder.importSymbols('SNMPv2-SMI', 'Counter32', 'Counter64', 'Integer32', 'Bits', 'NotificationType', 'ModuleIdentity', 'Gauge32', 'Unsigned32', 'ObjectIdentity', 'MibIdentifier', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'enterprises', 'NotificationType', 'iso', 'TimeTicks', 'IpAddress')
(textual_convention, display_string) = mibBuilder.importSymbols('SNMPv2-TC', 'TextualConvention', 'DisplayString')
compaq = mib_identifier((1, 3, 6, 1, 4, 1, 232))
cpq_element_manager = mib_identifier((1, 3, 6, 1, 4, 1, 232, 136))
cpq_hsv = mib_identifier((1, 3, 6, 1, 4, 1, 232, 136, 1))
cpq_hsv_agent = mib_identifier((1, 3, 6, 1, 4, 1, 232, 136, 1, 1))
cpq_hsv_server = mib_identifier((1, 3, 6, 1, 4, 1, 232, 136, 1, 2))
hsv_object = mib_identifier((1, 3, 6, 1, 4, 1, 232, 136, 1, 3))
ma_hsv_mib_rev = mib_identifier((1, 3, 6, 1, 4, 1, 232, 136, 1, 4))
scell = mib_identifier((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1))
agent = mib_identifier((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 2))
host = mib_identifier((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 3))
nsc = mib_identifier((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 4))
shelf = mib_identifier((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 8))
ag_manufacturer = mib_scalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 1), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
agManufacturer.setStatus('mandatory')
if mibBuilder.loadTexts:
agManufacturer.setDescription('The name of the StorageWorks HSV Agent manufacturer.')
ag_maj_version = mib_scalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
agMajVersion.setStatus('mandatory')
if mibBuilder.loadTexts:
agMajVersion.setDescription('StorageWorks HSV Agent Major Version Number (e.g., 3 for 3.0).')
ag_min_version = mib_scalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
agMinVersion.setStatus('mandatory')
if mibBuilder.loadTexts:
agMinVersion.setDescription('StorageWorks HSV Agent Minor Version Number (e.g., 0 for 3.0).')
ag_host_name = mib_scalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 4), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
agHostName.setStatus('mandatory')
if mibBuilder.loadTexts:
agHostName.setDescription('The Host System Network Name where the agent resides.')
ag_enterprise = mib_scalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 5), object_identifier()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
agEnterprise.setStatus('mandatory')
if mibBuilder.loadTexts:
agEnterprise.setDescription('The Enterprise ID subtree for StorageWorks HSV Agent MIB is registered.')
ag_description = mib_scalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 6), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
agDescription.setStatus('mandatory')
if mibBuilder.loadTexts:
agDescription.setDescription('The StorageWorks HSV Agent description.')
ag_status_table = mib_table((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 7))
if mibBuilder.loadTexts:
agStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts:
agStatusTable.setDescription('This table holds the status information for each HSV Management Agent.')
agent_entry = mib_table_row((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 7, 1)).setIndexNames((0, 'CPQHSV-MIB', 'agentEntryIndex'))
if mibBuilder.loadTexts:
agentEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
agentEntry.setDescription('The Agent information entry.')
agent_entry_index = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 7, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
agentEntryIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
agentEntryIndex.setDescription('The index into agentStatusTable .')
agent_status = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 7, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('other', 1), ('ok', 2), ('degraded', 3), ('failed', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
agentStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
agentStatus.setDescription('This variable reports the overall status of the Agent. INFORMATIONAL: Normal Operating Condition MINOR: Warning Condition MAJOR: Failure or Failure Immanent CRITICAL: Agent condition is critical or unknown')
agent_event_code = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 7, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
agentEventCode.setStatus('mandatory')
if mibBuilder.loadTexts:
agentEventCode.setDescription('The management agent event code.')
agent_event_level = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 7, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
agentEventLevel.setStatus('mandatory')
if mibBuilder.loadTexts:
agentEventLevel.setDescription('The management event level.')
agent_event_time_date = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 7, 1, 5), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
agentEventTimeDate.setStatus('mandatory')
if mibBuilder.loadTexts:
agentEventTimeDate.setDescription('The date and time the event occurred dd-mm-yyyy/hr:min:sec.')
agent_event_description = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 7, 1, 6), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
agentEventDescription.setStatus('mandatory')
if mibBuilder.loadTexts:
agentEventDescription.setDescription('The Description of the management agent event.')
srv_cpu = mib_scalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 2, 1), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
srvCPU.setStatus('mandatory')
if mibBuilder.loadTexts:
srvCPU.setDescription('The server CPU type (e.g., 80486).')
srv_computer_type = mib_scalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 2, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
srvComputerType.setStatus('mandatory')
if mibBuilder.loadTexts:
srvComputerType.setDescription('The server Computer type (e.g., PC/AT).')
srv_model = mib_scalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 2, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
srvModel.setStatus('mandatory')
if mibBuilder.loadTexts:
srvModel.setDescription('The server model number.')
srv_sub_model = mib_scalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 2, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
srvSubModel.setStatus('mandatory')
if mibBuilder.loadTexts:
srvSubModel.setDescription('The server submodel number.')
srv_bios_version = mib_scalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 2, 5), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
srvBiosVersion.setStatus('mandatory')
if mibBuilder.loadTexts:
srvBiosVersion.setDescription('The server BIOS Version.')
srv_os = mib_scalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 2, 6), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
srvOS.setStatus('mandatory')
if mibBuilder.loadTexts:
srvOS.setDescription('The server operating system name (e.g., WINNT).')
srv_os_maj_version = mib_scalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 2, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
srvOSMajVersion.setStatus('mandatory')
if mibBuilder.loadTexts:
srvOSMajVersion.setDescription('The server OS major version number (e.g., 3 for WINNT 3.51).')
srv_os_min_version = mib_scalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 2, 8), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
srvOSMinVersion.setStatus('mandatory')
if mibBuilder.loadTexts:
srvOSMinVersion.setDescription('The server OS minor version number (e.g., 51 for WINNT 3.51).')
ma_hsv_mib_rev_major = mib_scalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 4, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
maHSVMibRevMajor.setStatus('mandatory')
if mibBuilder.loadTexts:
maHSVMibRevMajor.setDescription('The Major Revision level. A change in the major revision level represents a major change in the architecture of the MIB. A change in the major revision level may indicate a significant change in the information supported and/or the meaning of the supported information, correct interpretation of data may require a MIB document with the same major revision level.')
ma_hsv_mib_rev_minor = mib_scalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 4, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
maHSVMibRevMinor.setStatus('mandatory')
if mibBuilder.loadTexts:
maHSVMibRevMinor.setDescription('The Minor Revision level. A change in the minor revision level may represent some minor additional support, no changes to any pre-existing information has occurred.')
scell_total = mib_scalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
scellTotal.setStatus('mandatory')
if mibBuilder.loadTexts:
scellTotal.setDescription('The total number of StorageCells (storage pools) present in the Fusion System.')
scell_status_table = mib_table((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2))
if mibBuilder.loadTexts:
scellStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts:
scellStatusTable.setDescription('This table holds the status information for each StorageCell.')
scell_entry = mib_table_row((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2, 1)).setIndexNames((0, 'CPQHSV-MIB', 'scellEntryIndex'))
if mibBuilder.loadTexts:
scellEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
scellEntry.setDescription('The StorageCell information entry.')
scell_entry_index = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
scellEntryIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
scellEntryIndex.setDescription('The index into scellStatusTable .')
scell_name = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
scellName.setStatus('mandatory')
if mibBuilder.loadTexts:
scellName.setDescription('The StorageCell Name.')
scell_uuid = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2, 1, 3), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
scellUUID.setStatus('mandatory')
if mibBuilder.loadTexts:
scellUUID.setDescription('The StorageCell unique ID.')
scell_status = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('informational', 1), ('minor', 2), ('major', 3), ('failed', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
scellStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
scellStatus.setDescription('This variable reports the overall status of the StorageCell. INFORMATIONAL: Normal Operating Condition MINOR: Warning Condition MAJOR: Failure or Failure Immanent CRITICAL: Condition is critical or unknown')
scell_event_description = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2, 1, 5), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
scellEventDescription.setStatus('mandatory')
if mibBuilder.loadTexts:
scellEventDescription.setDescription('The StorageCell Event Description.')
scell_event_time_date = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2, 1, 6), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
scellEventTimeDate.setStatus('mandatory')
if mibBuilder.loadTexts:
scellEventTimeDate.setDescription('The StorageCell Event Time and Date.')
scell_event_code = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2, 1, 7), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
scellEventCode.setStatus('mandatory')
if mibBuilder.loadTexts:
scellEventCode.setDescription('The StorageCell Event Code.')
scell_sw_component = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2, 1, 8), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
scellSWComponent.setStatus('mandatory')
if mibBuilder.loadTexts:
scellSWComponent.setDescription('The Event Code Software Component ID.')
scell_e_code = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2, 1, 9), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
scellECode.setStatus('mandatory')
if mibBuilder.loadTexts:
scellECode.setDescription('The StorageCell Event Code event number.')
scell_cac = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2, 1, 10), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
scellCAC.setStatus('mandatory')
if mibBuilder.loadTexts:
scellCAC.setDescription('The event code Corrective Action Code.')
scell_eip = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2, 1, 11), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
scellEIP.setStatus('mandatory')
if mibBuilder.loadTexts:
scellEIP.setDescription('The Event Code EIP Type.')
scell_name_date_time = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2, 1, 12), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
scellNameDateTime.setStatus('mandatory')
if mibBuilder.loadTexts:
scellNameDateTime.setDescription('The StorageCell Name: Date & Time of Event.')
host_total = mib_scalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 3, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hostTotal.setStatus('mandatory')
if mibBuilder.loadTexts:
hostTotal.setDescription('The total number of hosts attached the Fusion System.')
host_status_table = mib_table((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 3, 2))
if mibBuilder.loadTexts:
hostStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts:
hostStatusTable.setDescription('This table holds the status information for each Host.')
host_entry = mib_table_row((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 3, 2, 1)).setIndexNames((0, 'CPQHSV-MIB', 'hostEntryIndex'))
if mibBuilder.loadTexts:
hostEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
hostEntry.setDescription('The Host information entry.')
host_entry_index = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 3, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hostEntryIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
hostEntryIndex.setDescription('The index into hostStatusTable .')
host_name = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 3, 2, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hostName.setStatus('mandatory')
if mibBuilder.loadTexts:
hostName.setDescription('The Host Name.')
host_uuid = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 3, 2, 1, 3), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hostUUID.setStatus('mandatory')
if mibBuilder.loadTexts:
hostUUID.setDescription('The Host unique ID.')
host_status = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 3, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('informational', 0), ('minor', 1), ('major', 2), ('critical', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hostStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
hostStatus.setDescription('This variable reports the overall status of the Host. INFORMATIONAL: Normal Operating Condition MINOR: Warning Condition MAJOR: Failure or Failure Immanent CRITICAL: Condition is critical or unknown')
nsc_total = mib_scalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 4, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nscTotal.setStatus('mandatory')
if mibBuilder.loadTexts:
nscTotal.setDescription('The total number of Network Storage Controllers present in the Fusion System.')
nsc_status_table = mib_table((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 4, 2))
if mibBuilder.loadTexts:
nscStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts:
nscStatusTable.setDescription('This table holds the status information for each Network Storage Controller.')
nsc_entry = mib_table_row((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 4, 2, 1)).setIndexNames((0, 'CPQHSV-MIB', 'nscEntryIndex'))
if mibBuilder.loadTexts:
nscEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
nscEntry.setDescription('The NSC information entry.')
nsc_entry_index = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 4, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nscEntryIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
nscEntryIndex.setDescription('The index into nscStatusTable .')
nsc_name = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 4, 2, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nscName.setStatus('mandatory')
if mibBuilder.loadTexts:
nscName.setDescription('The Network Storage Controller Name.')
nsc_uuid = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 4, 2, 1, 3), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nscUUID.setStatus('mandatory')
if mibBuilder.loadTexts:
nscUUID.setDescription('The NSC unique ID.')
nsc_status = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 4, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('informational', 0), ('minor', 1), ('major', 2), ('critical', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nscStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
nscStatus.setDescription('This variable reports the overall status of the Network Storage Controller. INFORMATIONAL: Normal Operating Condition MINOR: Warning Condition MAJOR: Failure or Failure Immanent CRITICAL: Condition is critical or unknown')
shelf_total = mib_scalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 8, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
shelfTotal.setStatus('mandatory')
if mibBuilder.loadTexts:
shelfTotal.setDescription('The total number of disk shelves present in the HSV system.')
shelf_status_table = mib_table((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 8, 2))
if mibBuilder.loadTexts:
shelfStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts:
shelfStatusTable.setDescription('This table holds the status information for each Shelf.')
shelf_entry = mib_table_row((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 8, 2, 1)).setIndexNames((0, 'CPQHSV-MIB', 'shelfEntryIndex'))
if mibBuilder.loadTexts:
shelfEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
shelfEntry.setDescription('The Shelf information entry.')
shelf_entry_index = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 8, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
shelfEntryIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
shelfEntryIndex.setDescription('The index into shelfStatusTable .')
shelf_status = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 8, 2, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('other', 1), ('ok', 2), ('degraded', 3), ('failed', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
shelfStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
shelfStatus.setDescription('This variable reports the overall status of the Shelf. OTHER: unknown or undeterminable OK: Normal Operating Condition DEGRADED: Warning Condition FAILED: Failure')
shelf_id = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 8, 2, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
shelfId.setStatus('mandatory')
if mibBuilder.loadTexts:
shelfId.setDescription('The Shelf Id (shelf number).')
shelf_element_type = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 8, 2, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
shelfElementType.setStatus('mandatory')
if mibBuilder.loadTexts:
shelfElementType.setDescription('The Shelf Element type. 01: Disk 02: Power Supply 03: Fan 04: Temp Sensor 06: Alarm Horn 07: EMU 12: LCD 15: GBIC 16: Language 17: Comm Port 18: Volt Sensor 19: Amp Sensor 128:Enclosure 130:Back plane 255:Host')
shelf_element_num = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 8, 2, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
shelfElementNum.setStatus('mandatory')
if mibBuilder.loadTexts:
shelfElementNum.setDescription('Which particular Element of that type.')
shelf_error_code = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 8, 2, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
shelfErrorCode.setStatus('mandatory')
if mibBuilder.loadTexts:
shelfErrorCode.setDescription("The Element Type's Error Code.")
emu_event_trap_informative = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136001)).setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'shelfId'), ('CPQHSV-MIB', 'shelfElementType'), ('CPQHSV-MIB', 'shelfElementNum'), ('CPQHSV-MIB', 'shelfErrorCode'))
if mibBuilder.loadTexts:
emuEventTrapInformative.setDescription('An EMU Informational event has occurred scellNameDateTime: StorageCell name, and date/time emuShelfId: disk shelf number in the cabinet emuElementType: the element type 01: Disk 02: Pwr Supply 03: Fan 04: Temp Sensor 06: Alarm Horn 07: EMU 12: LCD 15: Xcvr 16: Lang 17: Comm Port 18: Volt Sensor 19: Amp Sensor 128:Encl 130:Back plane emuErrorCode: error number ')
emu_event_trap_noncritical = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002)).setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'shelfId'), ('CPQHSV-MIB', 'shelfElementType'), ('CPQHSV-MIB', 'shelfElementNum'), ('CPQHSV-MIB', 'shelfErrorCode'))
if mibBuilder.loadTexts:
emuEventTrapNoncritical.setDescription('An EMU Non-critical event has occurred scellNameDateTime: StorageCell name, and date/time emuShelfId: disk shelf number in the cabinet emuElementType: the element type 01: Disk 02: Pwr Supply 03: Fan 04: Temp Sensor 06: Alarm Horn 07: EMU 12: LCD 15: Xcvr 16: Lang 17: Comm Port 18: Volt Sensor 19: Amp Sensor 128:Encl 130:Back plane emuErrorCode: error number ')
emu_event_trap_critical = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003)).setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'shelfId'), ('CPQHSV-MIB', 'shelfElementType'), ('CPQHSV-MIB', 'shelfElementNum'), ('CPQHSV-MIB', 'shelfErrorCode'))
if mibBuilder.loadTexts:
emuEventTrapCritical.setDescription('An EMU Critical event has occurred scellNameDateTime: StorageCell name, and date/time emuShelfId: disk shelf number in the cabinet emuElementType: the element type 01: Disk 02: Pwr Supply 03: Fan 04: Temp Sensor 06: Alarm Horn 07: EMU 12: LCD 15: Xcvr 16: Lang 17: Comm Port 18: Volt Sensor 19: Amp Sensor 128:Encl 130:Back plane emuErrorCode: error number ')
emu_event_trap_unrecoverable = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004)).setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'shelfId'), ('CPQHSV-MIB', 'shelfElementType'), ('CPQHSV-MIB', 'shelfElementNum'), ('CPQHSV-MIB', 'shelfErrorCode'))
if mibBuilder.loadTexts:
emuEventTrapUnrecoverable.setDescription('An EMU Unrecoverable event has occurred scellNameDateTime: StorageCell name, and date/time emuShelfId: disk shelf number in the cabinet emuElementType: the element type 01: Disk 02: Pwr Supply 03: Fan 04: Temp Sensor 06: Alarm Horn 07: EMU 12: LCD 15: Xcvr 16: Lang 17: Comm Port 18: Volt Sensor 19: Amp Sensor 128:Encl 130:Back plane emuErrorCode: error number ')
s_cell_event_trap_01_02 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13600258)).setLabel('sCellEventTrap-01-02').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_01_02.setDescription('Severity: Normal -- informational in nature. A time change occurred.')
s_cell_event_trap_03_00 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13600768)).setLabel('sCellEventTrap-03-00').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_03_00.setDescription('Severity: Critical -- failure or failure imminent. An HSV210 controller has failed in communicating with the Cabinet (Rack) Bus Interface Controller.')
s_cell_event_trap_03_01 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13600769)).setLabel('sCellEventTrap-03-01').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_03_01.setDescription('Severity: Critical -- failure or failure imminent. A physical disk drive has been rendered inoperable.')
s_cell_event_trap_03_02 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13600770)).setLabel('sCellEventTrap-03-02').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_03_02.setDescription('Severity: Warning -- not failed but attention recommended or required. A physical disk drive will not be used because the maximum number of physical disk drives already exist in the current Storage System.')
s_cell_event_trap_03_03 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13600771)).setLabel('sCellEventTrap-03-03').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_03_03.setDescription('Severity: Normal -- informational in nature. An HSV210 controller has begun booting.')
s_cell_event_trap_03_04 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13600772)).setLabel('sCellEventTrap-03-04').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_03_04.setDescription('Severity: Normal -- informational in nature. An HSV210 controller has finished the process of bringing the Storage System online.')
s_cell_event_trap_03_05 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13600773)).setLabel('sCellEventTrap-03-05').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_03_05.setDescription('Severity: Normal -- informational in nature. An HSV210 controller has been joined into the Storage System.')
s_cell_event_trap_03_06 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13600774)).setLabel('sCellEventTrap-03-06').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_03_06.setDescription('Severity: Normal -- informational in nature. An HSV210 controller has been ousted from the Storage System.')
s_cell_event_trap_03_07 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13600775)).setLabel('sCellEventTrap-03-07').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_03_07.setDescription('Severity: Normal -- informational in nature. An HSV210 controller is now the Storage System Master.')
s_cell_event_trap_03_08 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13600776)).setLabel('sCellEventTrap-03-08').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_03_08.setDescription('Severity: Normal -- informational in nature. An HSV210 controller has been brought into the Storage System.')
s_cell_event_trap_03_09 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13600777)).setLabel('sCellEventTrap-03-09').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_03_09.setDescription('Severity: Normal -- informational in nature. The Redundant Storage Set identified in the source-rss field has started migrating members to the Redundant Storage Set identified in the target-rss field.')
s_cell_event_trap_03_0a = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13600778)).setLabel('sCellEventTrap-03-0a').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_03_0a.setDescription('Severity: Normal -- informational in nature. The Redundant Storage Set identified in the source-rss field has finished migrating members to the Redundant Storage Set identified in the target-rss field.')
s_cell_event_trap_03_0b = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13600779)).setLabel('sCellEventTrap-03-0b').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_03_0b.setDescription('Severity: Warning -- not failed but attention recommended or required. A physical disk drive has failed during Storage System realization.')
s_cell_event_trap_04_00 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601024)).setLabel('sCellEventTrap-04-00').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_04_00.setDescription('Severity: Undetermined -- more information needed to determine severity. HSV210 controller operation was terminated due to an unrecoverable event detected by either software or hardware or due to an action initiated via the Storage System Management Interface.')
s_cell_event_trap_04_01 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601025)).setLabel('sCellEventTrap-04-01').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_04_01.setDescription('Severity: Undetermined -- more information needed to determine severity. This HSV210 controller has received a last gasp message from another HSV210 controller prior to it terminating operation.')
s_cell_event_trap_04_02 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601026)).setLabel('sCellEventTrap-04-02').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_04_02.setDescription('Severity: Critical -- failure or failure imminent. A machine check occurred while a termination event was being processed.')
s_cell_event_trap_04_03 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601027)).setLabel('sCellEventTrap-04-03').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_04_03.setDescription('Severity: Critical -- failure or failure imminent. An unexpected event occurred while a termination event was being processed.')
s_cell_event_trap_04_04 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601028)).setLabel('sCellEventTrap-04-04').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_04_04.setDescription('Severity: Normal -- informational in nature. The Storage System Event Log validation completed successfully.')
s_cell_event_trap_04_05 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601029)).setLabel('sCellEventTrap-04-05').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_04_05.setDescription('Severity: Normal -- informational in nature. The Storage System Event Log validation failed.')
s_cell_event_trap_04_06 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601030)).setLabel('sCellEventTrap-04-06').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_04_06.setDescription('Severity: Normal -- informational in nature. Local event reports were lost due to an insufficient supply of Event Log Packets on this HSV210 controller.')
s_cell_event_trap_04_07 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601031)).setLabel('sCellEventTrap-04-07').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_04_07.setDescription('Severity: Normal -- informational in nature. Remote event reports were lost due to an insufficient supply of Event Log Packets on this HSV210 controller.')
s_cell_event_trap_04_08 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601032)).setLabel('sCellEventTrap-04-08').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_04_08.setDescription('Severity: Normal -- informational in nature. The Storage System Termination Event Log has become inaccessible.')
s_cell_event_trap_04_09 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601033)).setLabel('sCellEventTrap-04-09').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_04_09.setDescription('Severity: Normal -- informational in nature. The Storage System Termination Event Log validation completed successfully.')
s_cell_event_trap_04_0a = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601034)).setLabel('sCellEventTrap-04-0a').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_04_0a.setDescription('Severity: Normal -- informational in nature. The Storage System Termination Event Log validation failed.')
s_cell_event_trap_04_0b = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601035)).setLabel('sCellEventTrap-04-0b').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_04_0b.setDescription('Severity: Normal -- informational in nature. The Storage System Termination Event Log has been updated with the termination event information obtained from the HSV210 controller that is not the Storage System Master.')
s_cell_event_trap_04_0c = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601036)).setLabel('sCellEventTrap-04-0c').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_04_0c.setDescription('Severity: Normal -- informational in nature. The Fault Manager on the Storage System Master received an invalid Event Information Packet from the remote Fault Manager.')
s_cell_event_trap_04_0d = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601037)).setLabel('sCellEventTrap-04-0d').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_04_0d.setDescription('Severity: Normal -- informational in nature. The Fault Manager operation was made quiescent.')
s_cell_event_trap_04_0e = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601038)).setLabel('sCellEventTrap-04-0e').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_04_0e.setDescription('Severity: Undetermined -- more information needed to determine severity. An HSV210 controller sent a last gasp message prior to terminating operation with an indication that both HSV210 controllers should terminate operation.')
s_cell_event_trap_04_0f = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601039)).setLabel('sCellEventTrap-04-0f').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_04_0f.setDescription('Severity: Normal -- informational in nature. This HSV210 controller sent its termination event information to the HSV210 controller that is the Storage System Master.')
s_cell_event_trap_04_10 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601040)).setLabel('sCellEventTrap-04-10').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_04_10.setDescription('Severity: Normal -- informational in nature. Event reports were lost due to an insufficient supply of ISR Event Log Packets on the HSV210 controller that is the Storage System Master.')
s_cell_event_trap_04_11 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601041)).setLabel('sCellEventTrap-04-11').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_04_11.setDescription('Severity: Normal -- informational in nature. Event reports were lost due to an insufficient supply of ISR Event Log Packets on the HSV210 controller that is not the Storage System Master.')
s_cell_event_trap_04_12 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601042)).setLabel('sCellEventTrap-04-12').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_04_12.setDescription('Severity: Normal -- informational in nature. The last event reporting interval has changed or last event reporting has been enabled or disabled.')
s_cell_event_trap_04_13 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601043)).setLabel('sCellEventTrap-04-13').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_04_13.setDescription('Severity: Normal -- informational in nature. Storage System event reporting is still active.')
s_cell_event_trap_06_00 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601536)).setLabel('sCellEventTrap-06-00').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_06_00.setDescription('Severity: Critical -- failure or failure imminent. A physical disk drive has reported that it has exceeded its failure prediction threshold.')
s_cell_event_trap_06_01 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601537)).setLabel('sCellEventTrap-06-01').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_06_01.setDescription('Severity: Warning -- not failed but attention recommended or required. A Fibre Channel port on the HSV210 controller has failed to respond.')
s_cell_event_trap_06_02 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601538)).setLabel('sCellEventTrap-06-02').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_06_02.setDescription('Severity: Normal -- informational in nature. A physical disk drive has reported a check condition error.')
s_cell_event_trap_06_03 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601539)).setLabel('sCellEventTrap-06-03').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_06_03.setDescription('Severity: Warning -- not failed but attention recommended or required. An exchange sent to a physical disk drive or another HSV210 controller via the mirror port or a Fibre Channel port has timed out.')
s_cell_event_trap_06_04 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601540)).setLabel('sCellEventTrap-06-04').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_06_04.setDescription('Severity: Warning -- not failed but attention recommended or required. Work was unexpectedly sent to this HSV210 controller by a physical disk drive or another HSV210 controller.')
s_cell_event_trap_06_05 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601541)).setLabel('sCellEventTrap-06-05').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_06_05.setDescription('Severity: Warning -- not failed but attention recommended or required. Work has been sent to a physical disk drive or another HSV210 controller via the mirror port but it did not respond.')
s_cell_event_trap_06_07 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601543)).setLabel('sCellEventTrap-06-07').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_06_07.setDescription('Severity: Warning -- not failed but attention recommended or required. A Target Discovery Service Descriptor exchange sent to a physical disk drive has timed out.')
s_cell_event_trap_06_08 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601544)).setLabel('sCellEventTrap-06-08').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_06_08.setDescription("Severity: Normal -- informational in nature. An excessive number of link errors were detected on a HSV210 controller's Fibre Channel port. This informational event is triggered by the occurrence of an excessive number of Tachyon chip link status errors detected within a particular link status error type.")
s_cell_event_trap_06_09 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601545)).setLabel('sCellEventTrap-06-09').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_06_09.setDescription('Severity: Critical -- failure or failure imminent. A physical disk drive has reported numerous failure prediction threshold exceeded errors.')
s_cell_event_trap_06_0a = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601546)).setLabel('sCellEventTrap-06-0a').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_06_0a.setDescription('Severity: Normal -- informational in nature. A physical disk drive has reported numerous check condition errors.')
s_cell_event_trap_06_0b = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601547)).setLabel('sCellEventTrap-06-0b').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_06_0b.setDescription('Severity: Warning -- not failed but attention recommended or required. A non-data exchange sent to a physical disk drive has timed out.')
s_cell_event_trap_06_0c = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601548)).setLabel('sCellEventTrap-06-0c').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_06_0c.setDescription('Severity: Normal -- informational in nature. A loop switch has been detected on a Fibre Channel port.')
s_cell_event_trap_06_0d = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601549)).setLabel('sCellEventTrap-06-0d').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_06_0d.setDescription('Severity: Normal -- informational in nature. The location of a physical disk drive previously reported as unknown is now known.')
s_cell_event_trap_06_0e = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601550)).setLabel('sCellEventTrap-06-0e').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_06_0e.setDescription('Severity: Critical -- failure or failure imminent. A Drive Enclosure Environmental Monitoring Unit requested a code update but the code update could not be found, so the update was not performed.')
s_cell_event_trap_06_0f = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601551)).setLabel('sCellEventTrap-06-0f').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_06_0f.setDescription('Severity: Critical -- failure or failure imminent. The Drive Enclosure Environmental Monitoring Unit is able to communicate with a physical disk drive but this HSV210 controller is unable to communicate with that physical disk drive on the Fibre Channel bus.')
s_cell_event_trap_06_10 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601552)).setLabel('sCellEventTrap-06-10').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_06_10.setDescription('Severity: Undetermined -- more information needed to determine severity. An HSV210 controller is unable to communicate with this Drive Enclosure Environmental Monitoring Unit.')
s_cell_event_trap_06_12 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601554)).setLabel('sCellEventTrap-06-12').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_06_12.setDescription('Severity: Normal -- informational in nature. The retry count for a task assigned to a Drive Enclosure Environmental Monitoring Unit has been exhausted.')
s_cell_event_trap_06_13 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601555)).setLabel('sCellEventTrap-06-13').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_06_13.setDescription('Severity: Normal -- informational in nature. A Drive Enclosure Environmental Monitoring Unit is able to communicate with this HSV210 controller.')
s_cell_event_trap_06_14 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601556)).setLabel('sCellEventTrap-06-14').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_06_14.setDescription('Severity: Critical -- failure or failure imminent. There are too many drive enclosures attached to a Fibre Channel port.')
s_cell_event_trap_06_15 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601557)).setLabel('sCellEventTrap-06-15').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_06_15.setDescription('Severity: Critical -- failure or failure imminent. The cable connected to the I/O module is attached to the wrong Fibre Channel port.')
s_cell_event_trap_06_16 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601558)).setLabel('sCellEventTrap-06-16').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_06_16.setDescription('Severity: Critical -- failure or failure imminent. An HSV210 controller does not have an address on the enclosure address bus.')
s_cell_event_trap_06_18 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601560)).setLabel('sCellEventTrap-06-18').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_06_18.setDescription('Severity: Normal -- informational in nature. A Drive Enclosure Environmental Monitoring Unit has begun updating its code. Do not power down this drive enclosure until the code update has completed.')
s_cell_event_trap_06_19 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601561)).setLabel('sCellEventTrap-06-19').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_06_19.setDescription('Severity: Normal -- informational in nature. A Drive Enclosure Environmental Monitoring Unit has completed updating its code. It is now safe to power down this drive enclosure.')
s_cell_event_trap_06_1a = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601562)).setLabel('sCellEventTrap-06-1a').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_06_1a.setDescription('Severity: Critical -- failure or failure imminent. A physical disk drive has exceeded its soft error threshold.')
s_cell_event_trap_06_1b = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601563)).setLabel('sCellEventTrap-06-1b').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_06_1b.setDescription('Severity: Normal -- informational in nature. An HSV210 controller now has an address on the enclosure address bus.')
s_cell_event_trap_06_1c = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601564)).setLabel('sCellEventTrap-06-1c').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_06_1c.setDescription('Severity: Warning -- not failed but attention recommended or required. An outbound frame targeted to a physical disk drive has timed out.')
s_cell_event_trap_06_1d = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601565)).setLabel('sCellEventTrap-06-1d').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_06_1d.setDescription('Severity: Warning -- not failed but attention recommended or required. A Fibre Channel exchange to a physical disk drive has completed but is missing data.')
s_cell_event_trap_06_1e = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601566)).setLabel('sCellEventTrap-06-1e').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_06_1e.setDescription('Severity: Critical -- failure or failure imminent. An HSV210 controller has detected only one port of a Fibre Channel device.')
s_cell_event_trap_06_1f = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601567)).setLabel('sCellEventTrap-06-1f').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_06_1f.setDescription('Severity: Normal -- informational in nature. A previously reported Fibre Channel device with only one port has been corrected and redundancy has been restored.')
s_cell_event_trap_06_20 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601568)).setLabel('sCellEventTrap-06-20').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_06_20.setDescription('Severity: Critical -- failure or failure imminent. An unsupported Fibre Channel device has been detected. The device has been failed to prevent possible data corruption or system instability.')
s_cell_event_trap_06_21 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601569)).setLabel('sCellEventTrap-06-21').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_06_21.setDescription('Severity: Normal -- informational in nature. A Fibre Channel device with incorrect block size has been detected.')
s_cell_event_trap_06_23 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601571)).setLabel('sCellEventTrap-06-23').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_06_23.setDescription('Severity: Normal -- informational in nature. An HSV210 controller is about to retry a failed port.')
s_cell_event_trap_06_24 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601572)).setLabel('sCellEventTrap-06-24').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_06_24.setDescription('Severity: Normal -- informational in nature. An HSV210 controller has successfully retried a failed port.')
s_cell_event_trap_06_25 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601573)).setLabel('sCellEventTrap-06-25').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_06_25.setDescription('Severity: Critical -- failure or failure imminent. A Drive Enclosure Environmental Monitoring Unit has failed to assign a hard address to a physical disk drive on the loop.')
s_cell_event_trap_06_26 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601574)).setLabel('sCellEventTrap-06-26').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_06_26.setDescription('Severity: Critical -- failure or failure imminent. A Drive Enclosure Environmental Monitoring Unit has failed to assign an address to a physical disk drive on the loop. This has occurred because another physical disk drive has already obtained this AL-PA.')
s_cell_event_trap_06_27 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601575)).setLabel('sCellEventTrap-06-27').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_06_27.setDescription('Severity: Critical -- failure or failure imminent. A Drive Enclosure Environmental Monitoring Unit has failed to assign address(s) to a physical disk drive on the loop. Soft addressing was detected for this enclosure.')
s_cell_event_trap_06_28 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601576)).setLabel('sCellEventTrap-06-28').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_06_28.setDescription('Severity: Normal -- informational in nature. The retry count for an OB task assigned to a Drive Enclosure Environmental Monitoring Unit has been exhausted.')
s_cell_event_trap_06_29 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601577)).setLabel('sCellEventTrap-06-29').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_06_29.setDescription('Severity: Normal -- informational in nature. The HSV210 controller has sent a Basic Link Service command Abort Sequence Frame.')
s_cell_event_trap_06_2a = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601578)).setLabel('sCellEventTrap-06-2a').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_06_2a.setDescription('Severity: Normal -- informational in nature. The HSV210 controller has sent an Extended Link Service command Reinstate Recovery Qualifier.')
s_cell_event_trap_06_2b = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601579)).setLabel('sCellEventTrap-06-2b').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_06_2b.setDescription('Severity: Critical -- failure or failure imminent. A physical disk drive was bypassed rendering it unusable.')
s_cell_event_trap_06_2c = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601580)).setLabel('sCellEventTrap-06-2c').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_06_2c.setDescription('Severity: Normal -- informational in nature. One or more media defects were detected on a physical disk drive.')
s_cell_event_trap_06_2d = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601581)).setLabel('sCellEventTrap-06-2d').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_06_2d.setDescription('Severity: Normal -- informational in nature. An HSV210 controller issued a directed LIP to an arbitrated loop physical address.')
s_cell_event_trap_06_2e = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601582)).setLabel('sCellEventTrap-06-2e').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_06_2e.setDescription('Severity: Normal -- informational in nature. An HSV210 controller has detected loop receiver failures.')
s_cell_event_trap_06_30 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601584)).setLabel('sCellEventTrap-06-30').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_06_30.setDescription('Severity: Critical -- failure or failure imminent. An HSV210 controller has detected only one port of all Fibre Channel devices in an enclosure.')
s_cell_event_trap_06_31 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601585)).setLabel('sCellEventTrap-06-31').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_06_31.setDescription('Severity: Normal -- informational in nature. A previously reported Fibre Channel device enclosure with only one port has been corrected and redundancy has been restored.')
s_cell_event_trap_06_32 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601586)).setLabel('sCellEventTrap-06-32').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_06_32.setDescription('Severity: Critical -- failure or failure imminent. An HSV210 controller has detected only one port of all Fibre Channel devices on a loop.')
s_cell_event_trap_06_33 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601587)).setLabel('sCellEventTrap-06-33').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_06_33.setDescription('Severity: Normal -- informational in nature. A previously reported Fibre Channel loop with only one port has been corrected and redundancy has been restored.')
s_cell_event_trap_06_34 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601588)).setLabel('sCellEventTrap-06-34').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_06_34.setDescription('Severity: Normal -- informational in nature. An HSV210 controller has been told to enable a device port, and that device port was not disabled during boot diagnostics.')
s_cell_event_trap_06_35 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601589)).setLabel('sCellEventTrap-06-35').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_06_35.setDescription('Severity: Critical -- failure or failure imminent. An unrecognized Fibre Channel physical disk drive firmware revision has been detected by the physical disk drive firmware load process.')
s_cell_event_trap_06_36 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601590)).setLabel('sCellEventTrap-06-36').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_06_36.setDescription('Severity: Critical -- failure or failure imminent. An unsupported Fibre Channel physical disk drive firmware revision has been detected by the physical disk drive firmware load process.')
s_cell_event_trap_06_37 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601591)).setLabel('sCellEventTrap-06-37').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_06_37.setDescription('Severity: Normal -- informational in nature. A Fibre Channel physical disk drive firmware revision has been detected by the physical disk drive firmware load process that is later than the latest known supported revision.')
s_cell_event_trap_06_38 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601592)).setLabel('sCellEventTrap-06-38').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_06_38.setDescription('Severity: Normal -- informational in nature. A Fibre Channel physical disk drive firmware revision has been detected by the physical disk drive firmware load process that has a newer supported revision available.')
s_cell_event_trap_06_39 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601593)).setLabel('sCellEventTrap-06-39').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_06_39.setDescription('Severity: Normal -- informational in nature. The HSV210 controller bypassed a device bay in an attempt to restore operability.')
s_cell_event_trap_06_3a = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601594)).setLabel('sCellEventTrap-06-3a').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_06_3a.setDescription('Severity: Normal -- informational in nature. The HSV210 controller is attempting to recovery devices on the indicated port.')
s_cell_event_trap_06_3b = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601595)).setLabel('sCellEventTrap-06-3b').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_06_3b.setDescription('Severity: Normal -- informational in nature. The HSV210 controller has finished error recovery attempts on the indicated port.')
s_cell_event_trap_06_3c = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601596)).setLabel('sCellEventTrap-06-3c').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_06_3c.setDescription('Severity: Normal -- informational in nature. The HSV210 controller been requested to unbypass device bays on the indicated port.')
s_cell_event_trap_06_3d = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601597)).setLabel('sCellEventTrap-06-3d').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_06_3d.setDescription('Severity: Undetermined -- more information needed to determine severity. The HSV210 controller has detected a enclosure on the enclosure address bus that does not have a Fibre Channel connection.')
s_cell_event_trap_06_3e = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601598)).setLabel('sCellEventTrap-06-3e').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_06_3e.setDescription('Severity: Critical -- failure or failure imminent. The HSV210 controller has detected an enclosure on the Fibre Channel but is unable to communicate with the Drive Enclosure Environmental Monitoring Unit on the enclosure address bus or the Drive Enclosure Environmental Monitoring Unit is reporting an invalid enclosure number.')
s_cell_event_trap_06_3f = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601599)).setLabel('sCellEventTrap-06-3f').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_06_3f.setDescription('Severity: Warning -- not failed but attention recommended or required. A physical disk drive is using an improper protocol to attempt communication with an Drive Enclosure Environmental Monitoring Unit. The physical disk drive identified in the device field has stopped communicating with the HSV210 controller.')
s_cell_event_trap_06_40 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601600)).setLabel('sCellEventTrap-06-40').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_06_40.setDescription('Severity: Critical -- failure or failure imminent. A Fibre Channel physical disk drive that has new capabilities has been detected. The physical disk drive has properties that may or may not be compatible with this release of Enterprise Virtual Array firmware -- the drive will be prevented from being used until the Approved Drive Firmware table has been updated to allow it.')
s_cell_event_trap_06_41 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601601)).setLabel('sCellEventTrap-06-41').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_06_41.setDescription("Severity: Normal -- informational in nature. The device loop configuration has changed on a HSV210 controller's Fibre Channel port. This informational event contains a page of the newly genereated fibre channel loop map. Devices are listed in loop order using their ALPAs.")
s_cell_event_trap_06_42 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601602)).setLabel('sCellEventTrap-06-42').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_06_42.setDescription('Severity: Normal -- informational in nature. A user command has been sent to a physical disk drive.')
s_cell_event_trap_06_43 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601603)).setLabel('sCellEventTrap-06-43').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_06_43.setDescription("Severity: Normal -- informational in nature. An OLS-NOS-RCVD-BIT was set during loop switch detection on a HSV210 controller's Fibre Channel port. This informational event is triggered in fcs-loop-switch-chk.")
s_cell_event_trap_07_00 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601792)).setLabel('sCellEventTrap-07-00').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_07_00.setDescription('Severity: Warning -- not failed but attention recommended or required. Allocation of a Virtual Disk has stalled due to insufficient space in the Disk Group caused by the failure or pulling of a physical disk drive.')
s_cell_event_trap_07_01 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601793)).setLabel('sCellEventTrap-07-01').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_07_01.setDescription('Severity: Warning -- not failed but attention recommended or required. Expansion of a Virtual Disk has stalled due to insufficient space in the Disk Group caused by the failure or pulling of a physical disk drive.')
s_cell_event_trap_07_02 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601794)).setLabel('sCellEventTrap-07-02').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_07_02.setDescription('Severity: Normal -- informational in nature. Leveling of capacity in a Disk Group has started.')
s_cell_event_trap_07_03 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601795)).setLabel('sCellEventTrap-07-03').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_07_03.setDescription('Severity: Normal -- informational in nature. Leveling of capacity in a Disk Group has finished.')
s_cell_event_trap_07_04 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601796)).setLabel('sCellEventTrap-07-04').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_07_04.setDescription('Severity: Normal -- informational in nature. A member management operation has started due to the appearance or disappearance of a physical disk drive.')
s_cell_event_trap_07_05 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601797)).setLabel('sCellEventTrap-07-05').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_07_05.setDescription('Severity: Normal -- informational in nature. A member management operation has finished.')
s_cell_event_trap_07_06 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601798)).setLabel('sCellEventTrap-07-06').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_07_06.setDescription('Severity: Normal -- informational in nature. A Disk Group has started changing its internal structure due to the appearance or disappearance of a Volume.')
s_cell_event_trap_07_07 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601799)).setLabel('sCellEventTrap-07-07').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_07_07.setDescription('Severity: Normal -- informational in nature. A Disk Group has finished changing its internal structure due to the appearance or disappearance of a Volume.')
s_cell_event_trap_07_08 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601800)).setLabel('sCellEventTrap-07-08').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_07_08.setDescription('Severity: Normal -- informational in nature. Deallocation of a Virtual Disk has failed after three attempts due to unknown circumstances. This will more than likely be caused by failing physical drives. The deletion will be restarted when a resync/reboot occurs.')
s_cell_event_trap_07_09 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601801)).setLabel('sCellEventTrap-07-09').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_07_09.setDescription('Severity: Warning -- not failed but attention recommended or required. A member management operation has stalled due to insufficient space in the Disk Group.')
s_cell_event_trap_07_0a = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601802)).setLabel('sCellEventTrap-07-0a').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_07_0a.setDescription('Severity: Normal -- informational in nature. A stalled member management operation is being restarted.')
s_cell_event_trap_07_0b = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601803)).setLabel('sCellEventTrap-07-0b').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_07_0b.setDescription('Severity: Normal -- informational in nature. Unexpected metadata utility event. If available, the tag1 field contains the identity of the Volume, and tag2 field contains the identity of the Logical Disk.')
s_cell_event_trap_09_01 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602305)).setLabel('sCellEventTrap-09-01').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_01.setDescription('Severity: Normal -- informational in nature. A physical disk drive has transitioned to the NORMAL state.')
s_cell_event_trap_09_02 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602306)).setLabel('sCellEventTrap-09-02').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_02.setDescription('Severity: Normal -- informational in nature. The state of a Volume has changed.')
s_cell_event_trap_09_03 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602307)).setLabel('sCellEventTrap-09-03').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_03.setDescription('Severity: Normal -- informational in nature. The state of a Logical Disk has changed.')
s_cell_event_trap_09_04 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602308)).setLabel('sCellEventTrap-09-04').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_04.setDescription('Severity: Normal -- informational in nature. An HSV210 controller has transitioned to the NORMAL state.')
s_cell_event_trap_09_05 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602309)).setLabel('sCellEventTrap-09-05').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_05.setDescription('Severity: Normal -- informational in nature. The state of a battery assembly has changed.')
s_cell_event_trap_09_06 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602310)).setLabel('sCellEventTrap-09-06').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_06.setDescription('Severity: Undetermined -- more information needed to determine severity. A Volume has transitioned to the MISSING state.')
s_cell_event_trap_09_07 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602311)).setLabel('sCellEventTrap-09-07').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_07.setDescription('Severity: Normal -- informational in nature. A Fibre Channel port has transitioned to the NORMAL state.')
s_cell_event_trap_09_08 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602312)).setLabel('sCellEventTrap-09-08').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_08.setDescription("Severity: Warning -- not failed but attention recommended or required. A Disk Group's occupancy alarm level threshold has been reached.")
s_cell_event_trap_09_09 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602313)).setLabel('sCellEventTrap-09-09').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_09.setDescription('Severity: Normal -- informational in nature. The resource availability state of a Volume has transitioned to the SUFFICIENT state.')
s_cell_event_trap_09_0a = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602314)).setLabel('sCellEventTrap-09-0a').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_0a.setDescription('Severity: Normal -- informational in nature. The data availability state of an internal Logical Disk has transitioned to the NORMAL state.')
s_cell_event_trap_09_0c = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602316)).setLabel('sCellEventTrap-09-0c').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_0c.setDescription('Severity: Normal -- informational in nature. A snapclone Logical Disk has completed the unsharing operation.')
s_cell_event_trap_09_0d = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602317)).setLabel('sCellEventTrap-09-0d').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_0d.setDescription('Severity: Normal -- informational in nature. The state of the quorum disk flag of a Volume has changed.')
s_cell_event_trap_09_0e = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602318)).setLabel('sCellEventTrap-09-0e').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_0e.setDescription('Severity: Critical -- failure or failure imminent. The temperature trip point for a temperature sensor located within an HSV210 controller has been reached.')
s_cell_event_trap_09_0f = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602319)).setLabel('sCellEventTrap-09-0f').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_0f.setDescription('Severity: Warning -- not failed but attention recommended or required. The temperature within an HSV210 controller is approaching its trip point.')
s_cell_event_trap_09_11 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602321)).setLabel('sCellEventTrap-09-11').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_11.setDescription("Severity: Normal -- informational in nature. An HSV210 controller's blower '1' is now present.")
s_cell_event_trap_09_12 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602322)).setLabel('sCellEventTrap-09-12').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_12.setDescription("Severity: Critical -- failure or failure imminent. An HSV210 controller's blower '1' is running slower than the lowest acceptable speed.")
s_cell_event_trap_09_13 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602323)).setLabel('sCellEventTrap-09-13').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_13.setDescription('Severity: Critical -- failure or failure imminent. A voltage sensor has reported a voltage that is out of range.')
s_cell_event_trap_09_14 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602324)).setLabel('sCellEventTrap-09-14').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_14.setDescription('Severity: Undetermined -- more information needed to determine severity. A Volume has transitioned to the FAILED state.')
s_cell_event_trap_09_15 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602325)).setLabel('sCellEventTrap-09-15').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_15.setDescription('Severity: Undetermined -- more information needed to determine severity. An HSV210 controller has failed.')
s_cell_event_trap_09_16 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602326)).setLabel('sCellEventTrap-09-16').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_16.setDescription('Severity: Normal -- informational in nature. The temperature within an HSV210 controller has returned to its normal operating range.')
s_cell_event_trap_09_17 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602327)).setLabel('sCellEventTrap-09-17').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_17.setDescription("Severity: Critical -- failure or failure imminent. An HSV210 controller's battery assembly '1' has been removed.")
s_cell_event_trap_09_18 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602328)).setLabel('sCellEventTrap-09-18').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_18.setDescription("Severity: Normal -- informational in nature. An HSV210 controller's battery assembly '1' is now in use.")
s_cell_event_trap_09_19 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602329)).setLabel('sCellEventTrap-09-19').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_19.setDescription('Severity: Normal -- informational in nature. A voltage sensor has returned to a normal range.')
s_cell_event_trap_09_1a = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602330)).setLabel('sCellEventTrap-09-1a').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_1a.setDescription('Severity: Critical -- failure or failure imminent. The battery assembly voltage regulator located within an HSV210 controller is offline.')
s_cell_event_trap_09_1b = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602331)).setLabel('sCellEventTrap-09-1b').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_1b.setDescription('Severity: Normal -- informational in nature. A Disk Group has transitioned to the NORMAL state.')
s_cell_event_trap_09_1c = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602332)).setLabel('sCellEventTrap-09-1c').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_1c.setDescription('Severity: Normal -- informational in nature. The occupancy alarm level for a Disk Group has returned to the normal range.')
s_cell_event_trap_09_1d = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602333)).setLabel('sCellEventTrap-09-1d').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_1d.setDescription("Severity: Critical -- failure or failure imminent. An HSV210 controller's battery assembly '1' has malfunctioned.")
s_cell_event_trap_09_1e = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602334)).setLabel('sCellEventTrap-09-1e').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_1e.setDescription("Severity: Normal -- informational in nature. An HSV210 controller's battery assembly '1' is now present.")
s_cell_event_trap_09_1f = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602335)).setLabel('sCellEventTrap-09-1f').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_1f.setDescription("Severity: Critical -- failure or failure imminent. An HSV210 controller's battery assembly '2' has been removed.")
s_cell_event_trap_09_20 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602336)).setLabel('sCellEventTrap-09-20').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_20.setDescription("Severity: Normal -- informational in nature. An HSV210 controller's battery assembly '2' is now present.")
s_cell_event_trap_09_21 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602337)).setLabel('sCellEventTrap-09-21').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_21.setDescription("Severity: Normal -- informational in nature. An HSV210 controller's battery assembly '2' is now functioning properly.")
s_cell_event_trap_09_22 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602338)).setLabel('sCellEventTrap-09-22').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_22.setDescription("Severity: Critical -- failure or failure imminent. An HSV210 controller's battery assembly has malfunctioned.")
s_cell_event_trap_09_23 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602339)).setLabel('sCellEventTrap-09-23').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_23.setDescription("Severity: Critical -- failure or failure imminent. An HSV210 controller's blower '2' has been removed.")
s_cell_event_trap_09_24 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602340)).setLabel('sCellEventTrap-09-24').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_24.setDescription("Severity: Normal -- informational in nature. An HSV210 controller's blower assembly '2' is now present.")
s_cell_event_trap_09_25 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602341)).setLabel('sCellEventTrap-09-25').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_25.setDescription("Severity: Critical -- failure or failure imminent. An HSV210 controller's blower assembly '2' is running slower than the lowest acceptable speed.")
s_cell_event_trap_09_26 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602342)).setLabel('sCellEventTrap-09-26').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_26.setDescription("Severity: Critical -- failure or failure imminent. An HSV210 controller's '1' blower/power supply assembly has been removed or AC power has been removed from the power supply.")
s_cell_event_trap_09_27 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602343)).setLabel('sCellEventTrap-09-27').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_27.setDescription("Severity: Normal -- informational in nature. An HSV210 controller's '1' blower/power supply assembly has been reinstalled or AC power has been restored to the power supply.")
s_cell_event_trap_09_28 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602344)).setLabel('sCellEventTrap-09-28').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_28.setDescription("Severity: Critical -- failure or failure imminent. An HSV210 controller's '2' blower/power supply assembly has been removed or AC power has been removed from the power supply.")
s_cell_event_trap_09_29 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602345)).setLabel('sCellEventTrap-09-29').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_29.setDescription("Severity: Normal -- informational in nature. An HSV210 controller's '2' blower/power supply assembly has been reinstalled or AC power has been restored to the power supply.")
s_cell_event_trap_09_2a = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602346)).setLabel('sCellEventTrap-09-2a').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_2a.setDescription("Severity: Critical -- failure or failure imminent. An HSV210 controller's '1' blower/power supply is running slower than the lowest acceptable speed.")
s_cell_event_trap_09_2b = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602347)).setLabel('sCellEventTrap-09-2b').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_2b.setDescription("Severity: Critical -- failure or failure imminent. An HSV210 controller's '2' blower/power supply is running slower than the lowest acceptable speed.")
s_cell_event_trap_09_2c = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602348)).setLabel('sCellEventTrap-09-2c').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_2c.setDescription("Severity: Warning -- not failed but attention recommended or required. An HSV210 controller's battery assembly has transitioned to the 'Battery System Hold-up Time is zero hours' state.")
s_cell_event_trap_09_2d = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602349)).setLabel('sCellEventTrap-09-2d').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_2d.setDescription('Severity: Undetermined -- more information needed to determine severity. The resource availability state of a Volume has transitioned to the INSUFFICIENT state.')
s_cell_event_trap_09_2e = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602350)).setLabel('sCellEventTrap-09-2e').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_2e.setDescription('Severity: Normal -- informational in nature. An HSV210 controller has rejected a login attempt.')
s_cell_event_trap_09_2f = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602351)).setLabel('sCellEventTrap-09-2f').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_2f.setDescription('Severity: Normal -- informational in nature. An HSV210 controller has processed a Storage System Management Interface command with the result of non-success return code.')
s_cell_event_trap_09_30 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602352)).setLabel('sCellEventTrap-09-30').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_30.setDescription('Severity: Normal -- informational in nature. An HSV210 controller has updated the physical disk drive map for a loop pair.')
s_cell_event_trap_09_31 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602353)).setLabel('sCellEventTrap-09-31').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_31.setDescription('Severity: Critical -- failure or failure imminent. A physical disk drive has transitioned to the DEGRADED state.')
s_cell_event_trap_09_32 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602354)).setLabel('sCellEventTrap-09-32').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_32.setDescription('Severity: Critical -- failure or failure imminent. A physical disk drive has transitioned to the FAILED state.')
s_cell_event_trap_09_33 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602355)).setLabel('sCellEventTrap-09-33').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_33.setDescription('Severity: Normal -- informational in nature. A Derived Unit was created.')
s_cell_event_trap_09_34 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602356)).setLabel('sCellEventTrap-09-34').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_34.setDescription('Severity: Normal -- informational in nature. A Logical Disk was created.')
s_cell_event_trap_09_35 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602357)).setLabel('sCellEventTrap-09-35').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_35.setDescription('Severity: Normal -- informational in nature. A Disk Group was created.')
s_cell_event_trap_09_36 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602358)).setLabel('sCellEventTrap-09-36').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_36.setDescription('Severity: Normal -- informational in nature. A physical disk drive was discovered.')
s_cell_event_trap_09_37 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602359)).setLabel('sCellEventTrap-09-37').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_37.setDescription('Severity: Normal -- informational in nature. A Presented Unit was created.')
s_cell_event_trap_09_38 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602360)).setLabel('sCellEventTrap-09-38').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_38.setDescription('Severity: Normal -- informational in nature. A Storage System Host Path was created.')
s_cell_event_trap_09_39 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602361)).setLabel('sCellEventTrap-09-39').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_39.setDescription('Severity: Normal -- informational in nature. A Storage System Virtual Disk was created.')
s_cell_event_trap_09_3a = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602362)).setLabel('sCellEventTrap-09-3a').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_3a.setDescription('Severity: Normal -- informational in nature. A Volume was created.')
s_cell_event_trap_09_3b = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602363)).setLabel('sCellEventTrap-09-3b').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_3b.setDescription('Severity: Normal -- informational in nature. A Derived Unit was deleted.')
s_cell_event_trap_09_3c = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602364)).setLabel('sCellEventTrap-09-3c').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_3c.setDescription('Severity: Normal -- informational in nature. A Logical Disk was deleted.')
s_cell_event_trap_09_3d = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602365)).setLabel('sCellEventTrap-09-3d').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_3d.setDescription('Severity: Normal -- informational in nature. A Disk Group was deleted.')
s_cell_event_trap_09_3e = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602366)).setLabel('sCellEventTrap-09-3e').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_3e.setDescription('Severity: Critical -- failure or failure imminent. A physical disk drive has disappeared.')
s_cell_event_trap_09_3f = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602367)).setLabel('sCellEventTrap-09-3f').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_3f.setDescription('Severity: Normal -- informational in nature. A Presented Unit was deleted.')
s_cell_event_trap_09_40 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602368)).setLabel('sCellEventTrap-09-40').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_40.setDescription('Severity: Normal -- informational in nature. A Storage System Host Path was deleted.')
s_cell_event_trap_09_41 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602369)).setLabel('sCellEventTrap-09-41').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_41.setDescription('Severity: Normal -- informational in nature. A Storage System Virtual Disk was deleted.')
s_cell_event_trap_09_43 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602371)).setLabel('sCellEventTrap-09-43').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_43.setDescription('Severity: Normal -- informational in nature. An HSV210 controller has joined the Storage System.')
s_cell_event_trap_09_44 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602372)).setLabel('sCellEventTrap-09-44').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_44.setDescription('Severity: Undetermined -- more information needed to determine severity. An HSV210 controller has left the Storage System.')
s_cell_event_trap_09_45 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602373)).setLabel('sCellEventTrap-09-45').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_45.setDescription('Severity: Normal -- informational in nature. The Storage System has been deleted by an HSV210 controller.')
s_cell_event_trap_09_46 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602374)).setLabel('sCellEventTrap-09-46').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_46.setDescription('Severity: Normal -- informational in nature. A Data Replication Group was created.')
s_cell_event_trap_09_47 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602375)).setLabel('sCellEventTrap-09-47').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_47.setDescription('Severity: Normal -- informational in nature. A Data Replication Group was deleted.')
s_cell_event_trap_09_48 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602376)).setLabel('sCellEventTrap-09-48').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_48.setDescription('Severity: Normal -- informational in nature. An internal Logical Disk associated with a snapshot Virtual Disk was created.')
s_cell_event_trap_09_49 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602377)).setLabel('sCellEventTrap-09-49').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_49.setDescription('Severity: Normal -- informational in nature. An internal Logical Disk associated with a copy of a Virtual Disk was created.')
s_cell_event_trap_09_4a = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602378)).setLabel('sCellEventTrap-09-4a').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_4a.setDescription('Severity: Normal -- informational in nature. Destination Data Replication Group not deleted due to inoperative members.')
s_cell_event_trap_09_65 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602405)).setLabel('sCellEventTrap-09-65').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_65.setDescription('Severity: Normal -- informational in nature. A host operating system mode has changed.')
s_cell_event_trap_09_66 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602406)).setLabel('sCellEventTrap-09-66').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_66.setDescription('Severity: Normal -- informational in nature. Time was set on a Storage System.')
s_cell_event_trap_09_67 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602407)).setLabel('sCellEventTrap-09-67').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_67.setDescription('Severity: Normal -- informational in nature. The LUN of a Presented Unit has changed.')
s_cell_event_trap_09_68 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602408)).setLabel('sCellEventTrap-09-68').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_68.setDescription('Severity: Normal -- informational in nature. The device addition policy of a Storage System has changed.')
s_cell_event_trap_09_69 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602409)).setLabel('sCellEventTrap-09-69').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_69.setDescription('Severity: Normal -- informational in nature. The quiescent state of a Storage System Virtual Disk has changed.')
s_cell_event_trap_09_6a = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602410)).setLabel('sCellEventTrap-09-6a').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_6a.setDescription('Severity: Normal -- informational in nature. The enabled/disabled state of a Storage System Virtual Disk has changed.')
s_cell_event_trap_09_6b = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602411)).setLabel('sCellEventTrap-09-6b').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_6b.setDescription('Severity: Normal -- informational in nature. The cache policy of a Storage System Virtual Disk has changed.')
s_cell_event_trap_09_6c = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602412)).setLabel('sCellEventTrap-09-6c').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_6c.setDescription('Severity: Normal -- informational in nature. The usage state of a Volume changed.')
s_cell_event_trap_09_6d = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602413)).setLabel('sCellEventTrap-09-6d').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_6d.setDescription('Severity: Normal -- informational in nature. The disk failure protection level of a Disk Group has changed.')
s_cell_event_trap_09_6e = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602414)).setLabel('sCellEventTrap-09-6e').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_6e.setDescription('Severity: Normal -- informational in nature. The write protected state of a Derived Unit has changed.')
s_cell_event_trap_09_70 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602416)).setLabel('sCellEventTrap-09-70').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_70.setDescription('Severity: Warning -- not failed but attention recommended or required. A physical disk drive has experienced numerous communication failures on a particular Fibre Channel port.')
s_cell_event_trap_09_71 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602417)).setLabel('sCellEventTrap-09-71').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_71.setDescription('Severity: Normal -- informational in nature. An HSV210 controller has received a request to shutdown.')
s_cell_event_trap_09_72 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602418)).setLabel('sCellEventTrap-09-72').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_72.setDescription('Severity: Normal -- informational in nature. An HSV210 controller has completed its shutdown preparations.')
s_cell_event_trap_09_73 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602419)).setLabel('sCellEventTrap-09-73').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_73.setDescription('Severity: Normal -- informational in nature. The failsafe state of a Data Replication Group has changed.')
s_cell_event_trap_09_74 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602420)).setLabel('sCellEventTrap-09-74').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_74.setDescription('Severity: Normal -- informational in nature. The mode of a Data Replication Group has changed.')
s_cell_event_trap_09_75 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602421)).setLabel('sCellEventTrap-09-75').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_75.setDescription('Severity: Normal -- informational in nature. The synchronous/asynchronous operational state of a Data Replication Group has changed.')
s_cell_event_trap_09_76 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602422)).setLabel('sCellEventTrap-09-76').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_76.setDescription('Severity: Normal -- informational in nature. The read only attribute of a Data Replication Group has changed.')
s_cell_event_trap_09_77 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602423)).setLabel('sCellEventTrap-09-77').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_77.setDescription('Severity: Normal -- informational in nature. A Data Replication Group failover has occurred.')
s_cell_event_trap_09_78 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602424)).setLabel('sCellEventTrap-09-78').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_78.setDescription('Severity: Normal -- informational in nature. A Data Replication Group has been suspended or resumed.')
s_cell_event_trap_09_79 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602425)).setLabel('sCellEventTrap-09-79').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_79.setDescription('Severity: Normal -- informational in nature. A Storage System Virtual Disk was added to a Data Replication Group.')
s_cell_event_trap_09_7a = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602426)).setLabel('sCellEventTrap-09-7a').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_7a.setDescription('Severity: Normal -- informational in nature. A Storage System Virtual Disk was removed from a Data Replication Group.')
s_cell_event_trap_09_7b = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602427)).setLabel('sCellEventTrap-09-7b').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_7b.setDescription('Severity: Normal -- informational in nature. The auto suspend attribute of a Data Replication Group has changed.')
s_cell_event_trap_09_7c = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602428)).setLabel('sCellEventTrap-09-7c').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_7c.setDescription('Severity: Normal -- informational in nature. The destination presentation attribute of a Data Replication Group has changed.')
s_cell_event_trap_09_c8 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602504)).setLabel('sCellEventTrap-09-c8').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_c8.setDescription('Severity: Undetermined -- more information needed to determine severity. An internal Logical Disk has transitioned to the DATA LOST state.')
s_cell_event_trap_09_c9 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602505)).setLabel('sCellEventTrap-09-c9').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_c9.setDescription('Severity: Undetermined -- more information needed to determine severity. A Disk Group has transitioned to an INOPERATIVE state.')
s_cell_event_trap_09_ca = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602506)).setLabel('sCellEventTrap-09-ca').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_ca.setDescription('Severity: Undetermined -- more information needed to determine severity. An internal Logical Disk has transitioned to the FAILED state.')
s_cell_event_trap_09_cb = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602507)).setLabel('sCellEventTrap-09-cb').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_cb.setDescription('Severity: Critical -- failure or failure imminent. An internal Logical Disk has transitioned to the SNAPSHOT OVERCOMMIT state.')
s_cell_event_trap_09_cc = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602508)).setLabel('sCellEventTrap-09-cc').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_cc.setDescription('Severity: Undetermined -- more information needed to determine severity. An internal Logical Disk has transitioned to the DEVICE DATA LOST state.')
s_cell_event_trap_09_cd = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602509)).setLabel('sCellEventTrap-09-cd').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_cd.setDescription('Severity: Undetermined -- more information needed to determine severity. A Fibre Channel port has transitioned to the FAILED state.')
s_cell_event_trap_09_ce = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602510)).setLabel('sCellEventTrap-09-ce').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_ce.setDescription('Severity: Normal -- informational in nature. A Disk Group has transitioned to an INOPERATIVE MARKED state.')
s_cell_event_trap_09_cf = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602511)).setLabel('sCellEventTrap-09-cf').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_cf.setDescription('Severity: Warning -- not failed but attention recommended or required. A physical disk drive has transitioned to the NOT PRESENT state.')
s_cell_event_trap_09_d0 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602512)).setLabel('sCellEventTrap-09-d0').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_d0.setDescription('Severity: Normal -- informational in nature. An HSV210 controller no longer needs attention.')
s_cell_event_trap_09_d1 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602513)).setLabel('sCellEventTrap-09-d1').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_d1.setDescription('Severity: Undetermined -- more information needed to determine severity. An HSV210 controller needs attention.')
s_cell_event_trap_09_d2 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602514)).setLabel('sCellEventTrap-09-d2').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_d2.setDescription("Severity: Critical -- failure or failure imminent. An HSV210 controller's blower '1' has been removed.")
s_cell_event_trap_09_d3 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602515)).setLabel('sCellEventTrap-09-d3').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_d3.setDescription('Severity: Undetermined -- more information needed to determine severity. At least one Virtual Disk associated with a Data Replication Group has transitioned to the INOPERATIVE state. The remaining Virtual Disks associated with this Data Replication Group have been forced INOPERATIVE.')
s_cell_event_trap_09_d4 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602516)).setLabel('sCellEventTrap-09-d4').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_d4.setDescription('Severity: Normal -- informational in nature. All the Virtual Disks associated with a Data Replication Group have transitioned to the OPERATIVE state.')
s_cell_event_trap_09_d5 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602517)).setLabel('sCellEventTrap-09-d5').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_d5.setDescription('Severity: Normal -- informational in nature. The state of a physical disk drive has transitioned to the Single Port on Fibre state.')
s_cell_event_trap_09_d6 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602518)).setLabel('sCellEventTrap-09-d6').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_d6.setDescription('Severity: Warning -- not failed but attention recommended or required. An HSV210 controller has been powered off because the temperature sensors do not agree and the system temperature can not be accurately determined.')
s_cell_event_trap_09_d7 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602519)).setLabel('sCellEventTrap-09-d7').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_d7.setDescription('Severity: Warning -- not failed but attention recommended or required. An HSV210 controller has been powered off because the temperature sensors can not be accessed and the system temperature can not be accurately determined.')
s_cell_event_trap_09_d8 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602520)).setLabel('sCellEventTrap-09-d8').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_d8.setDescription('Severity: Normal -- informational in nature. A Disk Group has lost its Single Point of Failure Robust Configuration.')
s_cell_event_trap_09_d9 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602521)).setLabel('sCellEventTrap-09-d9').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_d9.setDescription('Severity: Normal -- informational in nature. A Disk Group has attained a Single Point of Failure Robust Configuration.')
s_cell_event_trap_09_da = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602522)).setLabel('sCellEventTrap-09-da').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_da.setDescription("Severity: Normal -- informational in nature. An HSV210 controller's blower '1' is running at normal speed.")
s_cell_event_trap_09_db = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602523)).setLabel('sCellEventTrap-09-db').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_09_db.setDescription("Severity: Normal -- informational in nature. An HSV210 controller's blower '2' is running at normal speed.")
s_cell_event_trap_0b_00 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602816)).setLabel('sCellEventTrap-0b-00').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_0b_00.setDescription('Severity: Normal -- informational in nature. An HSV210 controller has begun a resynchronization operation. This is a restart of the HSV210 controller in a manner that has little or no impact on host system connectivity.')
s_cell_event_trap_0b_01 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602817)).setLabel('sCellEventTrap-0b-01').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_0b_01.setDescription('Severity: Warning -- not failed but attention recommended or required. A migrate method drive codeload has stalled due to insufficient space in the Disk Group.')
s_cell_event_trap_0b_02 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602818)).setLabel('sCellEventTrap-0b-02').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_0b_02.setDescription('Severity: Normal -- informational in nature. A Fibre Channel physical disk drive firmware version has been loaded into memory in preparation for codeload.')
s_cell_event_trap_0b_03 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602819)).setLabel('sCellEventTrap-0b-03').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_0b_03.setDescription('Severity: Normal -- informational in nature. A Fibre Channel physical disk drive firmware version has been removed from memory.')
s_cell_event_trap_0b_04 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602820)).setLabel('sCellEventTrap-0b-04').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_0b_04.setDescription('Severity: Normal -- informational in nature. A Fibre Channel physical disk drive firmware codeload begun.')
s_cell_event_trap_0b_05 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602821)).setLabel('sCellEventTrap-0b-05').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_0b_05.setDescription('Severity: Normal -- informational in nature. A Fibre Channel physical disk drive firmware codeload has finished.')
s_cell_event_trap_0c_03 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603075)).setLabel('sCellEventTrap-0c-03').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_0c_03.setDescription('Severity: Normal -- informational in nature. The specified Data Replication Group has transitioned to the Merging state, because the alternate Storage System or Destination Virtual Disk is now accessible or resumed.')
s_cell_event_trap_0c_04 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603076)).setLabel('sCellEventTrap-0c-04').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_0c_04.setDescription('Severity: Critical -- failure or failure imminent. A Data Replication Group has entered the Failsafe Locked state because the Data Replication Destination Site is inaccessible.')
s_cell_event_trap_0c_05 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603077)).setLabel('sCellEventTrap-0c-05').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_0c_05.setDescription('Severity: Critical -- failure or failure imminent. A Data Replication Group has entered the Failsafe Locked state due to an inoperative source.')
s_cell_event_trap_0c_06 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603078)).setLabel('sCellEventTrap-0c-06').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_0c_06.setDescription('Severity: Critical -- failure or failure imminent. A Full Copy was terminated prior to completion: An unrecoverable read error occurred on the specified Source Virtual Disk during the Full Copy.')
s_cell_event_trap_0c_07 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603079)).setLabel('sCellEventTrap-0c-07').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_0c_07.setDescription('Severity: Critical -- failure or failure imminent. A Full Copy terminated prior to completion: A remote copy error occurred due to an inaccessible alternate Storage System; The Full Copy will continue when the Data Replication Destination is restored.')
s_cell_event_trap_0c_08 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603080)).setLabel('sCellEventTrap-0c-08').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_0c_08.setDescription('Severity: Critical -- failure or failure imminent. A Full Copy terminated prior to completion: A remote copy error occurred due to an inaccessible Destination Virtual Disk; The Full Copy will continue when the Data Replication Destination is restored.')
s_cell_event_trap_0c_09 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603081)).setLabel('sCellEventTrap-0c-09').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_0c_09.setDescription('Severity: Warning -- not failed but attention recommended or required. A Data Replication Log has been reset due to insufficient Disk Group capacity; The Data Replication Destination has been marked for a Full Copy.')
s_cell_event_trap_0c_0a = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603082)).setLabel('sCellEventTrap-0c-0a').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_0c_0a.setDescription('Severity: Normal -- informational in nature. A Data Replication Log has been reset due to a Data Replication Group failover.')
s_cell_event_trap_0c_0c = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603084)).setLabel('sCellEventTrap-0c-0c').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_0c_0c.setDescription('Severity: Normal -- informational in nature. A Destination Data Replication Group has successfully completed a Merge.')
s_cell_event_trap_0c_0f = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603087)).setLabel('sCellEventTrap-0c-0f').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_0c_0f.setDescription('Severity: Normal -- informational in nature. A Data Replication Group is no longer in a Failsafe Locked state.')
s_cell_event_trap_0c_10 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603088)).setLabel('sCellEventTrap-0c-10').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_0c_10.setDescription('Severity: Normal -- informational in nature. A Destination Data Replication Group has been marked for a Full Copy.')
s_cell_event_trap_0c_11 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603089)).setLabel('sCellEventTrap-0c-11').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_0c_11.setDescription('Severity: Normal -- informational in nature. A Storage System has discovered that a Data Replication Group failover has taken place: This Virtual Disk is transitioning from a Data Replication Source role to a Data Replication Destination role (The following fields are not valid: status, blocks, vda).')
s_cell_event_trap_0c_12 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603090)).setLabel('sCellEventTrap-0c-12').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_0c_12.setDescription('Severity: Normal -- informational in nature. This Data Replication Group is transitioning from a Data Replication Destination role to a Data Replication Source role.')
s_cell_event_trap_0c_15 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603093)).setLabel('sCellEventTrap-0c-15').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_0c_15.setDescription('Severity: Critical -- failure or failure imminent. The Data Replication Path between this Site and the Alternate Site has closed, possibly due to a connection failure between the specified host port and the Alternate Site.')
s_cell_event_trap_0c_16 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603094)).setLabel('sCellEventTrap-0c-16').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_0c_16.setDescription('Severity: Normal -- informational in nature. An HSV210 controller has sent a time report message to this HSV210 controller.')
s_cell_event_trap_0c_17 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603095)).setLabel('sCellEventTrap-0c-17').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_0c_17.setDescription('Severity: Critical -- failure or failure imminent. The Data Replication Manager communications protocol version between the Data Replication Source <REFERNECE>(DRM-SITE) and a Data Replication Destination <REFERNECE>(DRM-SITE) is mismatched.')
s_cell_event_trap_0c_18 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603096)).setLabel('sCellEventTrap-0c-18').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_0c_18.setDescription('Severity: Critical -- failure or failure imminent. Conditions on the Data Replication Destination Site are preventing acceptable replication throughput: Initiating temporary logging on the affected Data Replication Group that is failsafe mode disabled.')
s_cell_event_trap_0c_19 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603097)).setLabel('sCellEventTrap-0c-19').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_0c_19.setDescription('Severity: Critical -- failure or failure imminent. Overlapping concurrent host writes to Active/Active Sites violate a Data Replication Manager architectural requirement, resulting in a reparative resynchronization operation for the master Site and a Full Copy operation.')
s_cell_event_trap_0c_1a = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603098)).setLabel('sCellEventTrap-0c-1a').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_0c_1a.setDescription('Severity: Normal -- informational in nature. The specified Destination Virtual Disk has successfully completed a Full Copy.')
s_cell_event_trap_0c_1b = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603099)).setLabel('sCellEventTrap-0c-1b').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_0c_1b.setDescription('Severity: Critical -- failure or failure imminent. A Data Replication Group has transitioned to the Logging state because the alternate Storage System is not accessible.')
s_cell_event_trap_0c_1c = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603100)).setLabel('sCellEventTrap-0c-1c').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_0c_1c.setDescription('Severity: Critical -- failure or failure imminent. The specified Source Data Replication Group has transitioned to the Logging state because the Destination Virtual Disk is not accessible.')
s_cell_event_trap_0c_1d = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603101)).setLabel('sCellEventTrap-0c-1d').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_0c_1d.setDescription('Severity: Normal -- informational in nature. Inconsistency was found in the group log: A Full Copy of the affected Data Replication Group will be initiated.')
s_cell_event_trap_0c_1e = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603102)).setLabel('sCellEventTrap-0c-1e').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_0c_1e.setDescription('Severity: Critical -- failure or failure imminent. The members of the specified Source Data Replication Group have not been presented to the host because the remote Storage System is not accessible: Suspend Source Data Replication Group to override this behavior, which will present the members.')
s_cell_event_trap_0c_1f = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603103)).setLabel('sCellEventTrap-0c-1f').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_0c_1f.setDescription('Severity: Normal -- informational in nature. The members of the specified Source Data Replication Group have been presented to the host because the remote Storage System is now accessible or source group is now suspended.')
s_cell_event_trap_0c_20 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603104)).setLabel('sCellEventTrap-0c-20').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_0c_20.setDescription('Severity: Critical -- failure or failure imminent. Conditions on the Data Replication Destination Site are preventing replication processing: The specified Source Data Replication Group will remain in the Logging or the Failsafe Locked state until corrective action is performed.')
s_cell_event_trap_0c_21 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603105)).setLabel('sCellEventTrap-0c-21').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_0c_21.setDescription('Severity: Critical -- failure or failure imminent. Conditions on the Data Replication Source Site are preventing replication processing: The specified Source Data Replication Group will remain in the Logging or the Failsafe Locked state until corrective action is performed.')
s_cell_event_trap_0c_22 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603106)).setLabel('sCellEventTrap-0c-22').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_0c_22.setDescription('Severity: Normal -- informational in nature. The Data Replication Path between this Site and the Alternate Site has been opened.')
s_cell_event_trap_0d_00 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603328)).setLabel('sCellEventTrap-0d-00').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_0d_00.setDescription('Severity: Critical -- failure or failure imminent. An unrecognized event was reported by a Drive Enclosure Environmental Monitoring Unit.')
s_cell_event_trap_0d_01 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603329)).setLabel('sCellEventTrap-0d-01').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_0d_01.setDescription('Severity: Critical -- failure or failure imminent. A physical disk drive was detected that is not Fibre Channel compatible or cannot operate at the link rate established by the drive enclosure I/O modules.')
s_cell_event_trap_0d_02 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603330)).setLabel('sCellEventTrap-0d-02').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_0d_02.setDescription('Severity: Warning -- not failed but attention recommended or required. A physical disk drive is improperly installed or missing. This could affect the drive enclosure air flow and cause an over temperature condition.')
s_cell_event_trap_0d_03 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603331)).setLabel('sCellEventTrap-0d-03').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_0d_03.setDescription('Severity: Warning -- not failed but attention recommended or required. A physical disk drive was removed while software-activated drive locking was enabled on a drive enclosure that does not support drive locking.')
s_cell_event_trap_0d_04 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603332)).setLabel('sCellEventTrap-0d-04').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_0d_04.setDescription('Severity: Critical -- failure or failure imminent. A physical disk drive that is capable of operating at the loop link rate established by the drive enclosure I/O module was found to be running at a different rate.')
s_cell_event_trap_0d_33 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603379)).setLabel('sCellEventTrap-0d-33').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_0d_33.setDescription('Severity: Warning -- not failed but attention recommended or required. The AC input to a drive enclosure power supply has been lost. Note that the remaining power supply has become a single point of failure.')
s_cell_event_trap_0d_34 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603380)).setLabel('sCellEventTrap-0d-34').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_0d_34.setDescription('Severity: Critical -- failure or failure imminent. A drive enclosure power supply is improperly installed or missing. This could affect the drive enclosure air flow and cause an over temperature condition. The operational power supply will automatically shut down after a short period of time, thereby disabling the drive enclosure. This condition remains active until either the problem is corrected, or the operational power supply shuts down, whichever occurs first.')
s_cell_event_trap_0d_35 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603381)).setLabel('sCellEventTrap-0d-35').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_0d_35.setDescription('Severity: Critical -- failure or failure imminent. A drive enclosure power supply component has failed.')
s_cell_event_trap_0d_47 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603399)).setLabel('sCellEventTrap-0d-47').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_0d_47.setDescription('Severity: Critical -- failure or failure imminent. A drive enclosure blower is not operating properly. This could affect the drive enclosure air flow and cause an over temperature condition. A single blower operating at high speed can provide sufficient air flow to cool an enclosure and the elements for up to 100 hours. However, operating an enclosure at temperatures approaching an overheating threshold can damage elements and may reduce the mean time before failure of a specific element.')
s_cell_event_trap_0d_4b = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603403)).setLabel('sCellEventTrap-0d-4b').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_0d_4b.setDescription('Severity: Critical -- failure or failure imminent. A drive enclosure blower is improperly installed or missing. This affects the drive enclosure air flow and can cause an over temperature condition.')
s_cell_event_trap_0d_4c = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603404)).setLabel('sCellEventTrap-0d-4c').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_0d_4c.setDescription('Severity: Critical -- failure or failure imminent. Both drive enclosure blowers are missing. This severely affects the drive enclosure air flow and can cause an over temperature condition. The operational power supply(s) will automatically shut down after a short period of time, thereby disabling the drive enclosure. This condition remains active until either the problem is corrected, or the operational power supply(s) shut down, whichever occurs first.')
s_cell_event_trap_0d_5b = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603419)).setLabel('sCellEventTrap-0d-5b').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_0d_5b.setDescription('Severity: Warning -- not failed but attention recommended or required. A drive enclosure temperature sensor out of range condition has been reported by one of the drive enclosure elements.')
s_cell_event_trap_0d_5f = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603423)).setLabel('sCellEventTrap-0d-5f').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_0d_5f.setDescription('Severity: Critical -- failure or failure imminent. The average temperature of two of the three temperature sensor groups (i.e., Drive Enclosure Environmental Monitoring Unit, Disk Drives, and Power Supplies) exceeds the CRITICAL level. The operational power supply(s) will automatically shut down after a short period of time, thereby disabling the drive enclosure. This condition remains active until either the problem is corrected, or the operational power supply(s) shut down, whichever occurs first. Refer to the HSV element manager GUI for the temperature threshold values.')
s_cell_event_trap_0d_6f = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603439)).setLabel('sCellEventTrap-0d-6f').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_0d_6f.setDescription('Severity: Warning -- not failed but attention recommended or required. An internal Drive Enclosure Environmental Monitoring Unit error has occurred.')
s_cell_event_trap_0d_71 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603441)).setLabel('sCellEventTrap-0d-71').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_0d_71.setDescription('Severity: Normal -- informational in nature. An internal Drive Enclosure Environmental Monitoring Unit error has occurred.')
s_cell_event_trap_0d_72 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603442)).setLabel('sCellEventTrap-0d-72').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_0d_72.setDescription('Severity: Warning -- not failed but attention recommended or required. A Drive Enclosure Environmental Monitoring Unit is unable to collect data for the SCSI-3 Enclosure Services (SES) page.')
s_cell_event_trap_0d_7e = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603454)).setLabel('sCellEventTrap-0d-7e').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_0d_7e.setDescription('Severity: Warning -- not failed but attention recommended or required. Invalid data was read from a Drive Enclosure Environmental Monitoring Unit NVRAM.')
s_cell_event_trap_0d_7f = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603455)).setLabel('sCellEventTrap-0d-7f').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_0d_7f.setDescription('Severity: Warning -- not failed but attention recommended or required. An internal Drive Enclosure Environmental Monitoring Unit error has occurred.')
s_cell_event_trap_0d_82 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603458)).setLabel('sCellEventTrap-0d-82').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_0d_82.setDescription("Severity: Warning -- not failed but attention recommended or required. A drive enclosure's address is incorrect or the enclosure has no address.")
s_cell_event_trap_0d_83 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603459)).setLabel('sCellEventTrap-0d-83').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_0d_83.setDescription('Severity: Critical -- failure or failure imminent. A Drive Enclosure Environmental Monitoring Unit has experienced a hardware failure.')
s_cell_event_trap_0d_85 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603461)).setLabel('sCellEventTrap-0d-85').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_0d_85.setDescription('Severity: Warning -- not failed but attention recommended or required. A drive enclosure power supply failed to respond to a shut down command.')
s_cell_event_trap_0d_8d = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603469)).setLabel('sCellEventTrap-0d-8d').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_0d_8d.setDescription('Severity: Critical -- failure or failure imminent. A drive enclosure transceiver error has been detected.')
s_cell_event_trap_0d_a1 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603489)).setLabel('sCellEventTrap-0d-a1').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_0d_a1.setDescription('Severity: Critical -- failure or failure imminent. A drive enclosure power supply voltage sensor out-of-range condition has been reported.')
s_cell_event_trap_0d_b5 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603509)).setLabel('sCellEventTrap-0d-b5').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_0d_b5.setDescription('Severity: Critical -- failure or failure imminent. A drive enclosure power supply current sensor out of range condition has been reported.')
s_cell_event_trap_0d_d8 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603544)).setLabel('sCellEventTrap-0d-d8').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_0d_d8.setDescription('Severity: Warning -- not failed but attention recommended or required. A drive enclosure backplane invalid NVRAM read error has occurred.')
s_cell_event_trap_0d_d9 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603545)).setLabel('sCellEventTrap-0d-d9').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_0d_d9.setDescription('Severity: Critical -- failure or failure imminent. A drive enclosure backplane error has occurred.')
s_cell_event_trap_0d_dd = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603549)).setLabel('sCellEventTrap-0d-dd').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_0d_dd.setDescription('Severity: Critical -- failure or failure imminent. A drive enclosure I/O module error has occurred.')
s_cell_event_trap_0d_de = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603550)).setLabel('sCellEventTrap-0d-de').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_0d_de.setDescription('Severity: Warning -- not failed but attention recommended or required. A drive enclosure I/O module is unable to communicate with the Drive Enclosure Environmental Monitoring Unit.')
s_cell_event_trap_0d_ec = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603564)).setLabel('sCellEventTrap-0d-ec').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_0d_ec.setDescription('Severity: Warning -- not failed but attention recommended or required. A drive enclosure I/O module invalid NVRAM read error has occurred.')
s_cell_event_trap_0d_f0 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603568)).setLabel('sCellEventTrap-0d-f0').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_0d_f0.setDescription('Severity: Normal -- informational in nature. The status has changed on one or more of the drive enclosures. This informational event is generated for the HSV element manager GUI and contains no user information.')
s_cell_event_trap_42_00 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13616896)).setLabel('sCellEventTrap-42-00').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_42_00.setDescription('Severity: Normal -- informational in nature. A host Fibre Channel port transitioned to the link down state.')
s_cell_event_trap_42_01 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13616897)).setLabel('sCellEventTrap-42-01').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_42_01.setDescription('Severity: Normal -- informational in nature. A host Fibre Channel port transitioned to the link failed state.')
s_cell_event_trap_42_03 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13616899)).setLabel('sCellEventTrap-42-03').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_42_03.setDescription('Severity: Normal -- informational in nature. An excessive number of link errors were detected on a host Fibre Channel port.')
s_cell_event_trap_42_04 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13616900)).setLabel('sCellEventTrap-42-04').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_42_04.setDescription('Severity: Warning -- not failed but attention recommended or required. A host Fibre Channel port has failed to respond.')
s_cell_event_trap_42_05 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13616901)).setLabel('sCellEventTrap-42-05').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_42_05.setDescription('Severity: Normal -- informational in nature. A host Fibre Channel port has transitioned to the link wedged state.')
s_cell_event_trap_83_00 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13633536)).setLabel('sCellEventTrap-83-00').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_83_00.setDescription("Severity: Critical -- failure or failure imminent. A failure was detected during the execution of this HSV210 controller's on-board diagnostics.")
s_cell_event_trap_83_01 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13633537)).setLabel('sCellEventTrap-83-01').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_83_01.setDescription("Severity: Warning -- not failed but attention recommended or required. A GBIC SFF Serial ID Data check code failure was detected during the execution of this HSV210 controller's on-board diagnostics.")
s_cell_event_trap_83_02 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13633538)).setLabel('sCellEventTrap-83-02').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_83_02.setDescription("Severity: Critical -- failure or failure imminent. A failure of battery assembly '1' was detected during the execution of this HSV210 controller's on-board diagnostics.")
s_cell_event_trap_83_03 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13633539)).setLabel('sCellEventTrap-83-03').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_83_03.setDescription("Severity: Critical -- failure or failure imminent. A failure of battery assembly '2' was detected during the execution of this HSV210 controller's on-board diagnostics.")
s_cell_event_trap_83_04 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13633540)).setLabel('sCellEventTrap-83-04').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_83_04.setDescription("Severity: Critical -- failure or failure imminent. A communication failure of battery assembly '1' was detected during the execution of this HSV210 controller's on-board diagnostics.")
s_cell_event_trap_83_05 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13633541)).setLabel('sCellEventTrap-83-05').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_83_05.setDescription("Severity: Critical -- failure or failure imminent. A communication failure of battery assembly '2' was detected during the execution of this HSV210 controller's on-board diagnostics.")
s_cell_event_trap_83_06 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13633542)).setLabel('sCellEventTrap-83-06').setObjects(('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'scellSWComponent'), ('CPQHSV-MIB', 'scellECode'), ('CPQHSV-MIB', 'scellCAC'), ('CPQHSV-MIB', 'scellEIP'))
if mibBuilder.loadTexts:
sCellEventTrap_83_06.setDescription("Severity: Critical -- failure or failure imminent. A soft cache memory ECC error or indication of low battery voltage was detected during the execution of this HSV210 controller's on-board diagnostics.")
mngmt_agent_trap_1 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000001)).setLabel('mngmtAgentTrap-1').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_1.setDescription('Object Already Exists')
mngmt_agent_trap_2 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000002)).setLabel('mngmtAgentTrap-2').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_2.setDescription('Supplied Buffer Too Small')
mngmt_agent_trap_3 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000003)).setLabel('mngmtAgentTrap-3').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_3.setDescription('Object Already Assigned')
mngmt_agent_trap_4 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000004)).setLabel('mngmtAgentTrap-4').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_4.setDescription('Insufficient Available Data Storage')
mngmt_agent_trap_5 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000005)).setLabel('mngmtAgentTrap-5').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_5.setDescription('Internal Error')
mngmt_agent_trap_6 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000006)).setLabel('mngmtAgentTrap-6').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_6.setDescription('Invalid status for logical disk')
mngmt_agent_trap_7 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000007)).setLabel('mngmtAgentTrap-7').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_7.setDescription('Invalid Class')
mngmt_agent_trap_8 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000008)).setLabel('mngmtAgentTrap-8').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8.setDescription('Invalid Function')
mngmt_agent_trap_9 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000009)).setLabel('mngmtAgentTrap-9').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_9.setDescription('Invalid Logical Disk Block State')
mngmt_agent_trap_10 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000010)).setLabel('mngmtAgentTrap-10').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_10.setDescription('Invalid Loop Configuration')
mngmt_agent_trap_11 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000011)).setLabel('mngmtAgentTrap-11').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_11.setDescription('Invalid Parameter')
mngmt_agent_trap_12 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000012)).setLabel('mngmtAgentTrap-12').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_12.setDescription('Invalid Parameter handle')
mngmt_agent_trap_13 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000013)).setLabel('mngmtAgentTrap-13').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_13.setDescription('Invalid Parameter Id')
mngmt_agent_trap_14 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000014)).setLabel('mngmtAgentTrap-14').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_14.setDescription('Invalid Quorum Configuration')
mngmt_agent_trap_15 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000015)).setLabel('mngmtAgentTrap-15').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_15.setDescription('Invalid Target Handle')
mngmt_agent_trap_16 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000016)).setLabel('mngmtAgentTrap-16').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_16.setDescription('Invalid Target Id')
mngmt_agent_trap_17 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000017)).setLabel('mngmtAgentTrap-17').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_17.setDescription('Invalid Time')
mngmt_agent_trap_18 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000018)).setLabel('mngmtAgentTrap-18').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_18.setDescription('Media is Inaccessible')
mngmt_agent_trap_19 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000019)).setLabel('mngmtAgentTrap-19').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_19.setDescription('No Fibre Channel Port')
mngmt_agent_trap_20 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000020)).setLabel('mngmtAgentTrap-20').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_20.setDescription('No Image')
mngmt_agent_trap_21 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000021)).setLabel('mngmtAgentTrap-21').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_21.setDescription('No Permission')
mngmt_agent_trap_22 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000022)).setLabel('mngmtAgentTrap-22').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_22.setDescription('Storage system not initialized')
mngmt_agent_trap_23 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000023)).setLabel('mngmtAgentTrap-23').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_23.setDescription('Not a Loop Port')
mngmt_agent_trap_24 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000024)).setLabel('mngmtAgentTrap-24').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_24.setDescription('Not a Participating Controller')
mngmt_agent_trap_25 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000025)).setLabel('mngmtAgentTrap-25').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_25.setDescription('Objects in your system are in use, and their state prevents the operation you wish to perform.')
mngmt_agent_trap_26 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000026)).setLabel('mngmtAgentTrap-26').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_26.setDescription('Parameter Object Does Not Exist')
mngmt_agent_trap_27 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000027)).setLabel('mngmtAgentTrap-27').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_27.setDescription('Target Object Does Not Exist')
mngmt_agent_trap_28 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000028)).setLabel('mngmtAgentTrap-28').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_28.setDescription('Timeout')
mngmt_agent_trap_29 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000029)).setLabel('mngmtAgentTrap-29').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_29.setDescription('Unknown Id')
mngmt_agent_trap_30 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000030)).setLabel('mngmtAgentTrap-30').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_30.setDescription('Unknown Parameter Handle')
mngmt_agent_trap_31 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000031)).setLabel('mngmtAgentTrap-31').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_31.setDescription('Unrecoverable Media Error')
mngmt_agent_trap_32 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000032)).setLabel('mngmtAgentTrap-32').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_32.setDescription('Invalid State')
mngmt_agent_trap_33 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000033)).setLabel('mngmtAgentTrap-33').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_33.setDescription('Transport Error')
mngmt_agent_trap_34 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000034)).setLabel('mngmtAgentTrap-34').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_34.setDescription('Volume is Missing')
mngmt_agent_trap_35 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000035)).setLabel('mngmtAgentTrap-35').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_35.setDescription('Invalid Cursor')
mngmt_agent_trap_36 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000036)).setLabel('mngmtAgentTrap-36').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_36.setDescription('Invalid Target for the Operation')
mngmt_agent_trap_37 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000037)).setLabel('mngmtAgentTrap-37').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_37.setDescription('No More Events')
mngmt_agent_trap_38 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000038)).setLabel('mngmtAgentTrap-38').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_38.setDescription('Lock Busy')
mngmt_agent_trap_39 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000039)).setLabel('mngmtAgentTrap-39').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_39.setDescription('Time Not Set')
mngmt_agent_trap_40 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000040)).setLabel('mngmtAgentTrap-40').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_40.setDescription('Not a Supported Version')
mngmt_agent_trap_41 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000041)).setLabel('mngmtAgentTrap-41').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_41.setDescription('No Logical Disk for Vdisk')
mngmt_agent_trap_42 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000042)).setLabel('mngmtAgentTrap-42').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_42.setDescription('Logical disk Presented')
mngmt_agent_trap_43 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000043)).setLabel('mngmtAgentTrap-43').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_43.setDescription('Operation Denied On Slave')
mngmt_agent_trap_44 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000044)).setLabel('mngmtAgentTrap-44').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_44.setDescription('Not licensed for data replication')
mngmt_agent_trap_45 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000045)).setLabel('mngmtAgentTrap-45').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_45.setDescription('Not DR group member')
mngmt_agent_trap_46 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000046)).setLabel('mngmtAgentTrap-46').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_46.setDescription('Invalid DR mode')
mngmt_agent_trap_47 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000047)).setLabel('mngmtAgentTrap-47').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_47.setDescription('Invalid DR State')
mngmt_agent_trap_48 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000048)).setLabel('mngmtAgentTrap-48').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_48.setDescription("Security credentials needed. Please update your system's ID and password in the Storage System Access menu.")
mngmt_agent_trap_49 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000049)).setLabel('mngmtAgentTrap-49').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_49.setDescription("Security credentials supplied were invalid. Please update your system's ID and password in the Storage System Access menu.")
mngmt_agent_trap_50 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000050)).setLabel('mngmtAgentTrap-50').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_50.setDescription("Security credentials supplied were invalid. Please update your system's ID and password in the Storage System Access menu.")
mngmt_agent_trap_51 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000051)).setLabel('mngmtAgentTrap-51').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_51.setDescription('Storage system connection down')
mngmt_agent_trap_52 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000052)).setLabel('mngmtAgentTrap-52').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_52.setDescription('DR group empty')
mngmt_agent_trap_53 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000053)).setLabel('mngmtAgentTrap-53').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_53.setDescription('Incompatible attribute')
mngmt_agent_trap_54 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000054)).setLabel('mngmtAgentTrap-54').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_54.setDescription('Vdisk is a DR group member')
mngmt_agent_trap_55 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000055)).setLabel('mngmtAgentTrap-55').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_55.setDescription('Vdisk is a DR log unit')
mngmt_agent_trap_56 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000056)).setLabel('mngmtAgentTrap-56').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_56.setDescription('Cache batteries failed or missing.')
mngmt_agent_trap_57 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000057)).setLabel('mngmtAgentTrap-57').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_57.setDescription('Vdisk is not presented')
mngmt_agent_trap_58 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000058)).setLabel('mngmtAgentTrap-58').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_58.setDescription('Other controller failed')
mngmt_agent_trap_59 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000059)).setLabel('mngmtAgentTrap-59').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_59.setDescription('Maximum Number of Objects Exceeded.')
mngmt_agent_trap_60 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000060)).setLabel('mngmtAgentTrap-60').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_60.setDescription('Max size')
mngmt_agent_trap_61 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000061)).setLabel('mngmtAgentTrap-61').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_61.setDescription("Password mismatch. Please update your system's password in the Storage System Access menu. Continued attempts to access this storage system with an incorrect password will disable management of this storage system.")
mngmt_agent_trap_62 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000062)).setLabel('mngmtAgentTrap-62').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_62.setDescription('DR group is merging')
mngmt_agent_trap_63 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000063)).setLabel('mngmtAgentTrap-63').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_63.setDescription('DR group is logging')
mngmt_agent_trap_64 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000064)).setLabel('mngmtAgentTrap-64').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_64.setDescription('Connection is suspended')
mngmt_agent_trap_65 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000065)).setLabel('mngmtAgentTrap-65').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_65.setDescription('Bad image header')
mngmt_agent_trap_66 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000066)).setLabel('mngmtAgentTrap-66').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_66.setDescription('Bad image')
mngmt_agent_trap_67 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000067)).setLabel('mngmtAgentTrap-67').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_67.setDescription('Image too large')
mngmt_agent_trap_68 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000068)).setLabel('mngmtAgentTrap-68').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_68.setDescription('EMU not available')
mngmt_agent_trap_69 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000069)).setLabel('mngmtAgentTrap-69').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_69.setDescription('EMU indefinite delay')
mngmt_agent_trap_70 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000070)).setLabel('mngmtAgentTrap-70').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_70.setDescription('Image incompatible with system configuration. Version conflict in upgrade or downgrade not allowed.')
mngmt_agent_trap_71 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000071)).setLabel('mngmtAgentTrap-71').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_71.setDescription('Bad image segment')
mngmt_agent_trap_72 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000072)).setLabel('mngmtAgentTrap-72').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_72.setDescription('Image already loaded')
mngmt_agent_trap_73 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000073)).setLabel('mngmtAgentTrap-73').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_73.setDescription('Image Write Error')
mngmt_agent_trap_74 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000074)).setLabel('mngmtAgentTrap-74').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_74.setDescription('Logical Disk Sharing')
mngmt_agent_trap_75 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000075)).setLabel('mngmtAgentTrap-75').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_75.setDescription('Bad Image Size')
mngmt_agent_trap_76 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000076)).setLabel('mngmtAgentTrap-76').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_76.setDescription('Image Load Busy')
mngmt_agent_trap_77 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000077)).setLabel('mngmtAgentTrap-77').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_77.setDescription('Volume Failure Predicted')
mngmt_agent_trap_78 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000078)).setLabel('mngmtAgentTrap-78').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_78.setDescription('Background allocation on the destination member is in progress. This action must complete before any others can be initiated.')
mngmt_agent_trap_79 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000079)).setLabel('mngmtAgentTrap-79').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_79.setDescription('Snapshot (or snapclone) deletion in progress. The requested operation is currently not allowed. Please try again later.')
mngmt_agent_trap_80 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000080)).setLabel('mngmtAgentTrap-80').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_80.setDescription('Invalid Volume Usage')
mngmt_agent_trap_81 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000081)).setLabel('mngmtAgentTrap-81').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_81.setDescription('Minimum Volumes In Disk Group')
mngmt_agent_trap_82 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000082)).setLabel('mngmtAgentTrap-82').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_82.setDescription('Shutdown In Progress')
mngmt_agent_trap_83 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000083)).setLabel('mngmtAgentTrap-83').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_83.setDescription('Controller API Not Ready, Try Again Later')
mngmt_agent_trap_84 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000084)).setLabel('mngmtAgentTrap-84').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_84.setDescription('Is Snapshot')
mngmt_agent_trap_85 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000085)).setLabel('mngmtAgentTrap-85').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_85.setDescription('Cannot add or remove DR group member. Mirror cache must be active for this Vdisk. Check controller cache condition.')
mngmt_agent_trap_86 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000086)).setLabel('mngmtAgentTrap-86').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_86.setDescription('Inoperative')
mngmt_agent_trap_87 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000087)).setLabel('mngmtAgentTrap-87').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_87.setDescription('Disk group inoperative or disks in group less than minimum.')
mngmt_agent_trap_88 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000088)).setLabel('mngmtAgentTrap-88').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_88.setDescription('Storage system inoperative')
mngmt_agent_trap_89 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000089)).setLabel('mngmtAgentTrap-89').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_89.setDescription('Failsafe Locked')
mngmt_agent_trap_90 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000090)).setLabel('mngmtAgentTrap-90').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_90.setDescription('Data Flush Incomplete')
mngmt_agent_trap_91 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000091)).setLabel('mngmtAgentTrap-91').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_91.setDescription('Redundancy Mirrored Inoperative')
mngmt_agent_trap_92 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000092)).setLabel('mngmtAgentTrap-92').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_92.setDescription('Duplicate LUN')
mngmt_agent_trap_93 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000093)).setLabel('mngmtAgentTrap-93').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_93.setDescription('Other remote controller failed')
mngmt_agent_trap_94 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000094)).setLabel('mngmtAgentTrap-94').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_94.setDescription('Unknown remote Vdisk')
mngmt_agent_trap_95 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000095)).setLabel('mngmtAgentTrap-95').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_95.setDescription('Unknown remote DR group')
mngmt_agent_trap_96 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000096)).setLabel('mngmtAgentTrap-96').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_96.setDescription('PLDMC failed')
mngmt_agent_trap_97 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000097)).setLabel('mngmtAgentTrap-97').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_97.setDescription('Storage system could not be locked. System busy. Try command again. ')
mngmt_agent_trap_98 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000098)).setLabel('mngmtAgentTrap-98').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_98.setDescription('Error on remote storage system.')
mngmt_agent_trap_99 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000099)).setLabel('mngmtAgentTrap-99').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_99.setDescription('The DR operation can only be completed when the source-destination connection is down. If you are doing a destination DR deletion, make sure the connection link to the source DR system is down or do a failover operation to make this system the source ')
mngmt_agent_trap_100 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000100)).setLabel('mngmtAgentTrap-100').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_100.setDescription('Login required - password changed.')
mngmt_agent_trap_101 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000101)).setLabel('mngmtAgentTrap-101').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_101.setDescription("Numerous login attempts have been detected that uses an incorrect password. Please update your system's password in the Storage System Access menu.")
mngmt_agent_trap_102 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000102)).setLabel('mngmtAgentTrap-102').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_102.setDescription('Invalid cookie')
mngmt_agent_trap_103 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000103)).setLabel('mngmtAgentTrap-103').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_103.setDescription('Login timed out')
mngmt_agent_trap_104 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000104)).setLabel('mngmtAgentTrap-104').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_104.setDescription('Max snapshot depth reached')
mngmt_agent_trap_105 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000105)).setLabel('mngmtAgentTrap-105').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_105.setDescription('Attribute mismatch')
mngmt_agent_trap_106 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000106)).setLabel('mngmtAgentTrap-106').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_106.setDescription('The password has been set in Command View EVA. The same password still needs to be set in the controllers.')
mngmt_agent_trap_107 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000107)).setLabel('mngmtAgentTrap-107').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_107.setDescription('Not host port')
mngmt_agent_trap_108 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000108)).setLabel('mngmtAgentTrap-108').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_108.setDescription('Duplicate Lun WWID')
mngmt_agent_trap_109 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000109)).setLabel('mngmtAgentTrap-109').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_109.setDescription('System Inoperative')
mngmt_agent_trap_110 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000110)).setLabel('mngmtAgentTrap-110').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_110.setDescription('SnapClone Active')
mngmt_agent_trap_111 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000111)).setLabel('mngmtAgentTrap-111').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_111.setDescription('Emu Load Busy')
mngmt_agent_trap_112 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000112)).setLabel('mngmtAgentTrap-112').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_112.setDescription('Duplicate User Name')
mngmt_agent_trap_113 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000113)).setLabel('mngmtAgentTrap-113').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_113.setDescription('Drive Reserved For Code Load')
mngmt_agent_trap_114 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000114)).setLabel('mngmtAgentTrap-114').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_114.setDescription('Already Presented')
mngmt_agent_trap_115 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000115)).setLabel('mngmtAgentTrap-115').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_115.setDescription('Invalid remote storage system')
mngmt_agent_trap_116 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000116)).setLabel('mngmtAgentTrap-116').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_116.setDescription('No Lock')
mngmt_agent_trap_117 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000117)).setLabel('mngmtAgentTrap-117').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_117.setDescription('Maximum Number of Members Exceeded')
mngmt_agent_trap_118 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000118)).setLabel('mngmtAgentTrap-118').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_118.setDescription('Max Destinations')
mngmt_agent_trap_119 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000119)).setLabel('mngmtAgentTrap-119').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_119.setDescription('Empty User Name')
mngmt_agent_trap_120 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000120)).setLabel('mngmtAgentTrap-120').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_120.setDescription('Storage system already initialized')
mngmt_agent_trap_121 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000121)).setLabel('mngmtAgentTrap-121').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_121.setDescription('Already Open')
mngmt_agent_trap_122 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000122)).setLabel('mngmtAgentTrap-122').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_122.setDescription('Session Not Open')
mngmt_agent_trap_123 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000123)).setLabel('mngmtAgentTrap-123').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_123.setDescription('Not Marked Inoperative')
mngmt_agent_trap_124 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000124)).setLabel('mngmtAgentTrap-124').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_124.setDescription('Media Not Available')
mngmt_agent_trap_125 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000125)).setLabel('mngmtAgentTrap-125').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_125.setDescription('Battery System Failed')
mngmt_agent_trap_126 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000126)).setLabel('mngmtAgentTrap-126').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_126.setDescription('DR Group Member Is Cache Data Lost')
mngmt_agent_trap_127 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000127)).setLabel('mngmtAgentTrap-127').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_127.setDescription('Internal Lock Collision')
mngmt_agent_trap_128 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000128)).setLabel('mngmtAgentTrap-128').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_128.setDescription('OCP Error')
mngmt_agent_trap_129 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000129)).setLabel('mngmtAgentTrap-129').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_129.setDescription('Mirror Offline')
mngmt_agent_trap_130 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000130)).setLabel('mngmtAgentTrap-130').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_130.setDescription('This operation cannot be completed if failsafe mode is enabled.')
mngmt_agent_trap_131 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000131)).setLabel('mngmtAgentTrap-131').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_131.setDescription('Drive firmware load abort due to Raid0 virtual disk(s).')
mngmt_agent_trap_132 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000132)).setLabel('mngmtAgentTrap-132').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_132.setDescription('Fibre channel ports are unavailable.')
mngmt_agent_trap_133 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000133)).setLabel('mngmtAgentTrap-133').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_133.setDescription('The storage system has reached its maximum number of DR relationship.')
mngmt_agent_trap_134 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000134)).setLabel('mngmtAgentTrap-134').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_134.setDescription('The requested DEFP level cannot be supported.')
mngmt_agent_trap_141 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000141)).setLabel('mngmtAgentTrap-141').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_141.setDescription('DILX is running.')
mngmt_agent_trap_142 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000142)).setLabel('mngmtAgentTrap-142').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_142.setDescription('DILX is not running.')
mngmt_agent_trap_148 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000148)).setLabel('mngmtAgentTrap-148').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_148.setDescription('The Id specified is invalid.')
mngmt_agent_trap_180 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000180)).setLabel('mngmtAgentTrap-180').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_180.setDescription('One or both controllers does not have the required 512 MB of memory.')
mngmt_agent_trap_181 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000181)).setLabel('mngmtAgentTrap-181').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_181.setDescription('Not enough disk drives of requested type to create the disk group.')
mngmt_agent_trap_182 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000182)).setLabel('mngmtAgentTrap-182').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_182.setDescription('Drive Types of Disk and Disk group are different.')
mngmt_agent_trap_183 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000183)).setLabel('mngmtAgentTrap-183').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_183.setDescription('Operation already in ON state.')
mngmt_agent_trap_184 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000184)).setLabel('mngmtAgentTrap-184').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_184.setDescription('Operation already in OFF state.')
mngmt_agent_trap_195 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000195)).setLabel('mngmtAgentTrap-195').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_195.setDescription('The logical disk is not an empty container')
mngmt_agent_trap_196 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000196)).setLabel('mngmtAgentTrap-196').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_196.setDescription('The source logical disk and empty container are in different disk groups')
mngmt_agent_trap_197 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000197)).setLabel('mngmtAgentTrap-197').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_197.setDescription('This operation is not allowed on an empty container')
mngmt_agent_trap_198 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000198)).setLabel('mngmtAgentTrap-198').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_198.setDescription('Unsupported operation for AA mode')
mngmt_agent_trap_199 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000199)).setLabel('mngmtAgentTrap-199').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_199.setDescription('The redundancy specified for this snap is not allowed. A redundancy level less than or equal to the parent must be selected.')
mngmt_agent_trap_200 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000200)).setLabel('mngmtAgentTrap-200').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_200.setDescription('All snapshots in the same virtual disk family must be the same redendancy level')
mngmt_agent_trap_201 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000201)).setLabel('mngmtAgentTrap-201').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_201.setDescription('The local storage system has no available path to the remote storage system.')
mngmt_agent_trap_202 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000202)).setLabel('mngmtAgentTrap-202').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_202.setDescription('The DR Group does not exist')
mngmt_agent_trap_1000 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136001000)).setLabel('mngmtAgentTrap-1000').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_1000.setDescription('Logical Disk Condition Change')
mngmt_agent_trap_1001 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136001001)).setLabel('mngmtAgentTrap-1001').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_1001.setDescription('Storage system is FULL **critical**')
mngmt_agent_trap_1002 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136001002)).setLabel('mngmtAgentTrap-1002').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_1002.setDescription('Storage system is almost FULL. Disk group at or above maximum capacity warning level.')
mngmt_agent_trap_1003 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136001003)).setLabel('mngmtAgentTrap-1003').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_1003.setDescription('Controller Cache Battery Condition Change')
mngmt_agent_trap_1004 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136001004)).setLabel('mngmtAgentTrap-1004').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_1004.setDescription('Controller Cache Condition Change')
mngmt_agent_trap_1005 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136001005)).setLabel('mngmtAgentTrap-1005').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_1005.setDescription('Controller Condition Change')
mngmt_agent_trap_1006 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136001006)).setLabel('mngmtAgentTrap-1006').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_1006.setDescription('Controller FC Port Condition Change')
mngmt_agent_trap_1007 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136001007)).setLabel('mngmtAgentTrap-1007').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_1007.setDescription('Physical Device Condition Change')
mngmt_agent_trap_1008 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136001008)).setLabel('mngmtAgentTrap-1008').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_1008.setDescription('Physical Store Condition Change')
mngmt_agent_trap_1009 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136001009)).setLabel('mngmtAgentTrap-1009').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_1009.setDescription('Host condition change')
mngmt_agent_trap_1010 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136001010)).setLabel('mngmtAgentTrap-1010').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_1010.setDescription('Storage system time has been set')
mngmt_agent_trap_1011 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136001011)).setLabel('mngmtAgentTrap-1011').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_1011.setDescription('Volume Condition change')
mngmt_agent_trap_1012 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136001012)).setLabel('mngmtAgentTrap-1012').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_1012.setDescription('Volume insufficient-resources condition change')
mngmt_agent_trap_1013 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136001013)).setLabel('mngmtAgentTrap-1013').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_1013.setDescription('Volume Quorum Disk change')
mngmt_agent_trap_1014 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136001014)).setLabel('mngmtAgentTrap-1014').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_1014.setDescription('The state of an object in the system has changed. View adjacent events for more detail.')
mngmt_agent_trap_2001 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002001)).setLabel('mngmtAgentTrap-2001').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_2001.setDescription('Startup Failed')
mngmt_agent_trap_2002 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002002)).setLabel('mngmtAgentTrap-2002').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_2002.setDescription('Management agent event log cleared successfully')
mngmt_agent_trap_2003 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002003)).setLabel('mngmtAgentTrap-2003').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_2003.setDescription('Invalid name specified for storage system')
mngmt_agent_trap_2004 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002004)).setLabel('mngmtAgentTrap-2004').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_2004.setDescription('Storage system is not initialized')
mngmt_agent_trap_2006 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002006)).setLabel('mngmtAgentTrap-2006').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_2006.setDescription('Invalid name specified')
mngmt_agent_trap_2007 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002007)).setLabel('mngmtAgentTrap-2007').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_2007.setDescription('Name exceeds maximum length')
mngmt_agent_trap_2008 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002008)).setLabel('mngmtAgentTrap-2008').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_2008.setDescription('Invalid parameter specified')
mngmt_agent_trap_2010 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002010)).setLabel('mngmtAgentTrap-2010').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_2010.setDescription('Specified size exceeds available size')
mngmt_agent_trap_2011 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002011)).setLabel('mngmtAgentTrap-2011').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_2011.setDescription('There are not enough disk drives to create a disk group')
mngmt_agent_trap_2012 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002012)).setLabel('mngmtAgentTrap-2012').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_2012.setDescription('Number of devices exceeds the available number of disks')
mngmt_agent_trap_2013 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002013)).setLabel('mngmtAgentTrap-2013').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_2013.setDescription('Number of devices is less than the minimum number required to create a disk group')
mngmt_agent_trap_2016 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002016)).setLabel('mngmtAgentTrap-2016').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_2016.setDescription('Completed unpresenting virtual disk to host')
mngmt_agent_trap_2021 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002021)).setLabel('mngmtAgentTrap-2021').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_2021.setDescription('Invalid refresh interval value. Should be numeric and non-negative.')
mngmt_agent_trap_2022 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002022)).setLabel('mngmtAgentTrap-2022').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_2022.setDescription('Invalid security message. Should not be blank.')
mngmt_agent_trap_2023 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002023)).setLabel('mngmtAgentTrap-2023').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_2023.setDescription('Create Complete')
mngmt_agent_trap_2025 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002025)).setLabel('mngmtAgentTrap-2025').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_2025.setDescription('Storage system successfully initialized')
mngmt_agent_trap_2026 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002026)).setLabel('mngmtAgentTrap-2026').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_2026.setDescription('Device Added Successfully')
mngmt_agent_trap_2030 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002030)).setLabel('mngmtAgentTrap-2030').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_2030.setDescription('Refresh Interval Changed')
mngmt_agent_trap_2031 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002031)).setLabel('mngmtAgentTrap-2031').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_2031.setDescription('Security Message Changed')
mngmt_agent_trap_2032 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002032)).setLabel('mngmtAgentTrap-2032').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_2032.setDescription('Present Vdisk to a Host - Complete')
mngmt_agent_trap_2033 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002033)).setLabel('mngmtAgentTrap-2033').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_2033.setDescription('Control Startup Complete')
mngmt_agent_trap_2034 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002034)).setLabel('mngmtAgentTrap-2034').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_2034.setDescription('Change Device Usage Complete')
mngmt_agent_trap_2035 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002035)).setLabel('mngmtAgentTrap-2035').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_2035.setDescription('Control Shutdown - Complete')
mngmt_agent_trap_2036 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002036)).setLabel('mngmtAgentTrap-2036').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_2036.setDescription('Controller Shutdown - Complete')
mngmt_agent_trap_2038 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002038)).setLabel('mngmtAgentTrap-2038').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_2038.setDescription('Control Memory Allocation Failure')
mngmt_agent_trap_2040 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002040)).setLabel('mngmtAgentTrap-2040').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_2040.setDescription('Access level denied or session activity timeout. Please log in again.')
mngmt_agent_trap_2041 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002041)).setLabel('mngmtAgentTrap-2041').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_2041.setDescription('Vdisk Snapshot - Completed')
mngmt_agent_trap_2042 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002042)).setLabel('mngmtAgentTrap-2042').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_2042.setDescription('Vdisk Snapclone - Completed')
mngmt_agent_trap_2047 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002047)).setLabel('mngmtAgentTrap-2047').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_2047.setDescription('Host record added successfully')
mngmt_agent_trap_2048 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002048)).setLabel('mngmtAgentTrap-2048').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_2048.setDescription('Logical component deleted successfully')
mngmt_agent_trap_2049 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002049)).setLabel('mngmtAgentTrap-2049').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_2049.setDescription('Invalid host adapter ID')
mngmt_agent_trap_2050 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002050)).setLabel('mngmtAgentTrap-2050').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_2050.setDescription('Specified device is already a member of the system')
mngmt_agent_trap_2051 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002051)).setLabel('mngmtAgentTrap-2051').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_2051.setDescription('Create Folder - Completed')
mngmt_agent_trap_2052 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002052)).setLabel('mngmtAgentTrap-2052').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_2052.setDescription('Change Object Properties - Completed')
mngmt_agent_trap_2057 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002057)).setLabel('mngmtAgentTrap-2057').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_2057.setDescription('Completed disk group creation')
mngmt_agent_trap_2058 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002058)).setLabel('mngmtAgentTrap-2058').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_2058.setDescription('Added host port')
mngmt_agent_trap_2059 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002059)).setLabel('mngmtAgentTrap-2059').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_2059.setDescription('Discarded host port')
mngmt_agent_trap_2060 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002060)).setLabel('mngmtAgentTrap-2060').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_2060.setDescription('EMU/Shelf code load complete')
mngmt_agent_trap_2061 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002061)).setLabel('mngmtAgentTrap-2061').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_2061.setDescription('Operation will exceed the available capacity of the disk group')
mngmt_agent_trap_2062 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002062)).setLabel('mngmtAgentTrap-2062').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_2062.setDescription('Controller(s) code load complete')
mngmt_agent_trap_2063 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002063)).setLabel('mngmtAgentTrap-2063').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_2063.setDescription('The target device is not in the right condition to perform the operation')
mngmt_agent_trap_2064 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002064)).setLabel('mngmtAgentTrap-2064').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_2064.setDescription('Storage system Device Addition Policy changed successfully')
mngmt_agent_trap_2065 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002065)).setLabel('mngmtAgentTrap-2065').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_2065.setDescription('Maximum number of disk groups exceeded')
mngmt_agent_trap_2066 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002066)).setLabel('mngmtAgentTrap-2066').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_2066.setDescription('Nsa object discard failed.')
mngmt_agent_trap_2067 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002067)).setLabel('mngmtAgentTrap-2067').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_2067.setDescription('There are not enough disks to meet the minimum number requirement')
mngmt_agent_trap_2068 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002068)).setLabel('mngmtAgentTrap-2068').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_2068.setDescription('Entry added successfully in the password file')
mngmt_agent_trap_2069 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002069)).setLabel('mngmtAgentTrap-2069').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_2069.setDescription('Entry updated successfully in the password file')
mngmt_agent_trap_2070 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002070)).setLabel('mngmtAgentTrap-2070').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_2070.setDescription('Entry discarded successfully in the password file')
mngmt_agent_trap_2071 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002071)).setLabel('mngmtAgentTrap-2071').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_2071.setDescription('The storage system is not responding to management command requests in a timely manner. This may be due to a prior management command request with excessively long response time, or a communication problem. CV EVA will recover automatically when the storage system is able to respond to management commands. Management command access to the storage system does not affect host I/O.')
mngmt_agent_trap_2072 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002072)).setLabel('mngmtAgentTrap-2072').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_2072.setDescription('Object not found. Operation on this object is completed')
mngmt_agent_trap_2073 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002073)).setLabel('mngmtAgentTrap-2073').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_2073.setDescription('There is no more available space')
mngmt_agent_trap_2074 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002074)).setLabel('mngmtAgentTrap-2074').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_2074.setDescription('Name or comments contains invalid character(s)')
mngmt_agent_trap_2075 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002075)).setLabel('mngmtAgentTrap-2075').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_2075.setDescription('Duplicate - Another object with the same name exists.')
mngmt_agent_trap_2076 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002076)).setLabel('mngmtAgentTrap-2076').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_2076.setDescription('No healthy disk group(s) to create a Vdisk. Resolve any abnormal conditions in the disk group first.')
mngmt_agent_trap_2077 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002077)).setLabel('mngmtAgentTrap-2077').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_2077.setDescription('Operating System ID must be a valid number.')
mngmt_agent_trap_2078 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002078)).setLabel('mngmtAgentTrap-2078').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_2078.setDescription('Watchdog successfully started')
mngmt_agent_trap_2079 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002079)).setLabel('mngmtAgentTrap-2079').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_2079.setDescription('Watchdog successfully stopped')
mngmt_agent_trap_2080 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002080)).setLabel('mngmtAgentTrap-2080').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_2080.setDescription('Delete Event Config List failed')
mngmt_agent_trap_2081 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002081)).setLabel('mngmtAgentTrap-2081').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_2081.setDescription('Inoperative Disk group repaired successfully.')
mngmt_agent_trap_2082 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002082)).setLabel('mngmtAgentTrap-2082').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_2082.setDescription('There are no available LUNs to present this Vdisk.')
mngmt_agent_trap_2083 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002083)).setLabel('mngmtAgentTrap-2083').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_2083.setDescription('Controller time synchronization turned on.')
mngmt_agent_trap_2084 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002084)).setLabel('mngmtAgentTrap-2084').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_2084.setDescription('Controller time synchronization turned off.')
mngmt_agent_trap_2085 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002085)).setLabel('mngmtAgentTrap-2085').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_2085.setDescription('System login failed. Invalid password.')
mngmt_agent_trap_2086 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002086)).setLabel('mngmtAgentTrap-2086').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_2086.setDescription('System is not set for password validation.')
mngmt_agent_trap_2087 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002087)).setLabel('mngmtAgentTrap-2087').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_2087.setDescription('Agent is already logged in to this system.')
mngmt_agent_trap_2088 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002088)).setLabel('mngmtAgentTrap-2088').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_2088.setDescription('Storage system time set to custom time. Controller time synchronization automatically turned off.')
mngmt_agent_trap_2089 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002089)).setLabel('mngmtAgentTrap-2089').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_2089.setDescription('Storage system time set to SAN management workstation time.')
mngmt_agent_trap_2090 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002090)).setLabel('mngmtAgentTrap-2090').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_2090.setDescription('Storage system time set to browser time. Controller time synchronization automatically turned off.')
mngmt_agent_trap_2091 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002091)).setLabel('mngmtAgentTrap-2091').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_2091.setDescription('Storage system time set to controller time. Controller time synchronization automatically turned off.')
mngmt_agent_trap_2092 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002092)).setLabel('mngmtAgentTrap-2092').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_2092.setDescription('Unable to find DR Group on remote storage system.')
mngmt_agent_trap_2093 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002093)).setLabel('mngmtAgentTrap-2093').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_2093.setDescription('A host must have at least one port. Cannot delete the only host port available.')
mngmt_agent_trap_2095 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002095)).setLabel('mngmtAgentTrap-2095').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_2095.setDescription('Host creation failed. Maximum number of hosts reached.')
mngmt_agent_trap_2096 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002096)).setLabel('mngmtAgentTrap-2096').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_2096.setDescription('Port already exists.')
mngmt_agent_trap_2097 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002097)).setLabel('mngmtAgentTrap-2097').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_2097.setDescription('Error reading parameter string. String is empty.')
mngmt_agent_trap_2098 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002098)).setLabel('mngmtAgentTrap-2098').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_2098.setDescription('Command could not be completed on Master. Controller not found.')
mngmt_agent_trap_2099 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002099)).setLabel('mngmtAgentTrap-2099').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_2099.setDescription('Command could not be completed on Slave. Controller not found.')
mngmt_agent_trap_2100 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002100)).setLabel('mngmtAgentTrap-2100').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_2100.setDescription('Password access for all known storage systems is already enabled or set.')
mngmt_agent_trap_2102 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002102)).setLabel('mngmtAgentTrap-2102').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_2102.setDescription('The local storage system has reached the maximum allowable DR relationship.')
mngmt_agent_trap_2103 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002103)).setLabel('mngmtAgentTrap-2103').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_2103.setDescription('The remote storage system has reached the maximum allowable DR relationship.')
mngmt_agent_trap_2104 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002104)).setLabel('mngmtAgentTrap-2104').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_2104.setDescription('Disk Group creation failed.Please make sure that you have the specified number of drives.If only near-online drives are present Go to the Advanced Options Page and specify the drive type as Near-Online.You need to have a minimum of 8 near-online drives to proceed.')
mngmt_agent_trap_2105 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002105)).setLabel('mngmtAgentTrap-2105').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_2105.setDescription('Disk Group creation failed.Please make sure that you have the specified number of near-online drives.')
mngmt_agent_trap_3001 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003001)).setLabel('mngmtAgentTrap-3001').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_3001.setDescription('Event Manager Offline')
mngmt_agent_trap_3002 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003002)).setLabel('mngmtAgentTrap-3002').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_3002.setDescription('Event Manager Online')
mngmt_agent_trap_3003 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003003)).setLabel('mngmtAgentTrap-3003').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_3003.setDescription('Event Manager - Startup Failed')
mngmt_agent_trap_3004 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003004)).setLabel('mngmtAgentTrap-3004').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_3004.setDescription('Event Manager - Startup Complete')
mngmt_agent_trap_3007 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003007)).setLabel('mngmtAgentTrap-3007').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_3007.setDescription('Event Manager - Shutdown Complete')
mngmt_agent_trap_3009 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003009)).setLabel('mngmtAgentTrap-3009').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_3009.setDescription('Unable to open NSA Local Event Log File')
mngmt_agent_trap_3012 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003012)).setLabel('mngmtAgentTrap-3012').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_3012.setDescription('Unable to open Local Temp Event File - possibly no initialized SC')
mngmt_agent_trap_3013 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003013)).setLabel('mngmtAgentTrap-3013').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_3013.setDescription('Unable to clear NSA Local Event Log File')
mngmt_agent_trap_3015 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003015)).setLabel('mngmtAgentTrap-3015').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_3015.setDescription('Unable to clear NSA Event Log File')
mngmt_agent_trap_3016 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003016)).setLabel('mngmtAgentTrap-3016').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_3016.setDescription('Local log file found on startup')
mngmt_agent_trap_3017 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003017)).setLabel('mngmtAgentTrap-3017').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_3017.setDescription('Event Queue Flush Error')
mngmt_agent_trap_3019 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003019)).setLabel('mngmtAgentTrap-3019').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_3019.setDescription('EM File Manager Online')
mngmt_agent_trap_3020 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003020)).setLabel('mngmtAgentTrap-3020').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_3020.setDescription('EM File Manager Offline')
mngmt_agent_trap_3021 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003021)).setLabel('mngmtAgentTrap-3021').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_3021.setDescription('EM Log Manager Online')
mngmt_agent_trap_3022 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003022)).setLabel('mngmtAgentTrap-3022').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_3022.setDescription('EM Log Manager Offline')
mngmt_agent_trap_3024 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003024)).setLabel('mngmtAgentTrap-3024').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_3024.setDescription('Local NSA logfile is empty')
mngmt_agent_trap_3025 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003025)).setLabel('mngmtAgentTrap-3025').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_3025.setDescription('Event Queue Online')
mngmt_agent_trap_3028 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003028)).setLabel('mngmtAgentTrap-3028').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_3028.setDescription('Status Descriptions Unavailable')
mngmt_agent_trap_3029 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003029)).setLabel('mngmtAgentTrap-3029').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_3029.setDescription('EM Description Mngr Online')
mngmt_agent_trap_3035 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003035)).setLabel('mngmtAgentTrap-3035').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_3035.setDescription('EM: NSA log file unavailable')
mngmt_agent_trap_3036 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003036)).setLabel('mngmtAgentTrap-3036').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_3036.setDescription('EM Memory Allocation Error')
mngmt_agent_trap_3037 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003037)).setLabel('mngmtAgentTrap-3037').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_3037.setDescription('EM: Local Event Configuration File Unavailable')
mngmt_agent_trap_3038 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003038)).setLabel('mngmtAgentTrap-3038').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_3038.setDescription('EM: MLD Notification File Unavailable - retrieving local backup copy')
mngmt_agent_trap_3039 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003039)).setLabel('mngmtAgentTrap-3039').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_3039.setDescription('EM: Local Notification Host List File Unavailable')
mngmt_agent_trap_3044 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003044)).setLabel('mngmtAgentTrap-3044').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_3044.setDescription('Override this description with missing filename')
mngmt_agent_trap_3045 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003045)).setLabel('mngmtAgentTrap-3045').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_3045.setDescription("Invalid storage system event sequence number - can't retrieve event")
mngmt_agent_trap_3046 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003046)).setLabel('mngmtAgentTrap-3046').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_3046.setDescription("Invalid SC termination event sequence number - can't retrieve event")
mngmt_agent_trap_3047 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003047)).setLabel('mngmtAgentTrap-3047').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_3047.setDescription('EM: Event config file unavailable from MLD - retrieving local backup copy')
mngmt_agent_trap_3048 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003048)).setLabel('mngmtAgentTrap-3048').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_3048.setDescription('EM: Local user defined event state file unavailable')
mngmt_agent_trap_3049 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003049)).setLabel('mngmtAgentTrap-3049').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_3049.setDescription('EM: EMU event monitoring thread unable to start')
mngmt_agent_trap_3050 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003050)).setLabel('mngmtAgentTrap-3050').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_3050.setDescription('EM: EMU event - this description will be overwritten')
mngmt_agent_trap_3051 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003051)).setLabel('mngmtAgentTrap-3051').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_3051.setDescription('EM: Failed to write Event Config file to MLD')
mngmt_agent_trap_3053 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003053)).setLabel('mngmtAgentTrap-3053').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_3053.setDescription('EM: Event Configuration Filename Error or File empty')
mngmt_agent_trap_3054 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003054)).setLabel('mngmtAgentTrap-3054').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_3054.setDescription('EM: Notification Hostlist Filename Error or File empty')
mngmt_agent_trap_3055 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003055)).setLabel('mngmtAgentTrap-3055').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_3055.setDescription('EM: Event Config List Object Reference Error')
mngmt_agent_trap_3056 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003056)).setLabel('mngmtAgentTrap-3056').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_3056.setDescription('EM: SC Parse File successfully uploaded')
mngmt_agent_trap_3057 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003057)).setLabel('mngmtAgentTrap-3057').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_3057.setDescription('EM: SC Parse File upload failed')
mngmt_agent_trap_3058 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003058)).setLabel('mngmtAgentTrap-3058').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_3058.setDescription('EM: Contents of the uploaded parse file invalid - unexpected contents')
mngmt_agent_trap_3059 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003059)).setLabel('mngmtAgentTrap-3059').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_3059.setDescription('EM: Parse file is empty')
mngmt_agent_trap_3060 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003060)).setLabel('mngmtAgentTrap-3060').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_3060.setDescription('Storage system being shutdown due to a command failure.')
mngmt_agent_trap_3061 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003061)).setLabel('mngmtAgentTrap-3061').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_3061.setDescription('EM: Could not retrieve a storage system event')
mngmt_agent_trap_3062 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003062)).setLabel('mngmtAgentTrap-3062').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_3062.setDescription('EM: Init SC Event config list failed')
mngmt_agent_trap_3063 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003063)).setLabel('mngmtAgentTrap-3063').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_3063.setDescription('Could not initialize Comm infrastructure for event logging to system log')
mngmt_agent_trap_3064 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003064)).setLabel('mngmtAgentTrap-3064').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_3064.setDescription('EM: Storage system pointer is NULL!')
mngmt_agent_trap_3065 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003065)).setLabel('mngmtAgentTrap-3065').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_3065.setDescription('EM: Failed to log event to the Windows Application Event Log - Windows Application Event Log may be full.')
mngmt_agent_trap_3066 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003066)).setLabel('mngmtAgentTrap-3066').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_3066.setDescription('EM: Description Mngr initialize storage system failed')
mngmt_agent_trap_3067 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003067)).setLabel('mngmtAgentTrap-3067').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_3067.setDescription('EM: Description file too small. File read problem Or Incomplete file.')
mngmt_agent_trap_3068 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003068)).setLabel('mngmtAgentTrap-3068').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_3068.setDescription("EM: Can't init NT Event object pointer")
mngmt_agent_trap_3069 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003069)).setLabel('mngmtAgentTrap-3069').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_3069.setDescription("EM: Can't init NT Notification object pointer")
mngmt_agent_trap_3070 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003070)).setLabel('mngmtAgentTrap-3070').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_3070.setDescription('EM: Management Workstation Event Logging Failure - Windows Application Event Log may be full.')
mngmt_agent_trap_3071 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003071)).setLabel('mngmtAgentTrap-3071').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_3071.setDescription('EM: SCMI returned bad additional events number')
mngmt_agent_trap_3072 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003072)).setLabel('mngmtAgentTrap-3072').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_3072.setDescription('EM: SCMI returned zero sized SC Event')
mngmt_agent_trap_3075 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003075)).setLabel('mngmtAgentTrap-3075').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_3075.setDescription('EventQueue index passed is out of bounds')
mngmt_agent_trap_3076 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003076)).setLabel('mngmtAgentTrap-3076').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_3076.setDescription('EM: An abnormal number of duplicate events logged - dropping duplicates')
mngmt_agent_trap_3077 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003077)).setLabel('mngmtAgentTrap-3077').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_3077.setDescription('EM: Update of the MLD Status Description file failed')
mngmt_agent_trap_3078 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003078)).setLabel('mngmtAgentTrap-3078').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_3078.setDescription('EM: NsaStatusDescriptions.txt open file error')
mngmt_agent_trap_3079 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003079)).setLabel('mngmtAgentTrap-3079').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_3079.setDescription('EM: NsaStatusDescriptions.txt file error - file size discrepancy from mld list')
mngmt_agent_trap_3080 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003080)).setLabel('mngmtAgentTrap-3080').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_3080.setDescription('SC Event Log has been cleared and restarted. Possibly disk group has gone into an inoperative state.')
mngmt_agent_trap_3081 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003081)).setLabel('mngmtAgentTrap-3081').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_3081.setDescription('Invalid logType parameter')
mngmt_agent_trap_3083 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003083)).setLabel('mngmtAgentTrap-3083').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_3083.setDescription('Log file is empty')
mngmt_agent_trap_3084 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003084)).setLabel('mngmtAgentTrap-3084').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_3084.setDescription('Storage System with this WWN is not visible to this agent or the WWN is invalid')
mngmt_agent_trap_3086 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003086)).setLabel('mngmtAgentTrap-3086').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_3086.setDescription('Parsefile for current firmware version not found. Upload correct parse file.')
mngmt_agent_trap_3090 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003090)).setLabel('mngmtAgentTrap-3090').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_3090.setDescription('The contents of this file appear to be invalid')
mngmt_agent_trap_3091 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003091)).setLabel('mngmtAgentTrap-3091').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_3091.setDescription('The MIB failed to build due to a missing parse file.')
mngmt_agent_trap_3092 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003092)).setLabel('mngmtAgentTrap-3092').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_3092.setDescription('MLD description file is older than local file but system is downrev')
mngmt_agent_trap_3094 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003094)).setLabel('mngmtAgentTrap-3094').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_3094.setDescription("System is initialized: can't get activeQ events")
mngmt_agent_trap_3095 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003095)).setLabel('mngmtAgentTrap-3095').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_3095.setDescription('Failed to write file - file could not be opened.')
mngmt_agent_trap_4000 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004000)).setLabel('mngmtAgentTrap-4000').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_4000.setDescription('MLD Manager Subsystem Error')
mngmt_agent_trap_4001 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004001)).setLabel('mngmtAgentTrap-4001').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_4001.setDescription('MLD Manager Offline')
mngmt_agent_trap_4004 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004004)).setLabel('mngmtAgentTrap-4004').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_4004.setDescription('MLD Manager Startup Complete')
mngmt_agent_trap_4005 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004005)).setLabel('mngmtAgentTrap-4005').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_4005.setDescription('MLD Manager Abnormal Startup')
mngmt_agent_trap_4007 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004007)).setLabel('mngmtAgentTrap-4007').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_4007.setDescription('MLD Manager Shutdown Complete')
mngmt_agent_trap_4011 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004011)).setLabel('mngmtAgentTrap-4011').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_4011.setDescription('Invalid Host IP Address specified')
mngmt_agent_trap_4012 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004012)).setLabel('mngmtAgentTrap-4012').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_4012.setDescription('Unable to open the NsaMldMgr.dat file for Write')
mngmt_agent_trap_4013 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004013)).setLabel('mngmtAgentTrap-4013').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_4013.setDescription('Unable to open the NsaMldMgr.dat file for Read')
mngmt_agent_trap_4014 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004014)).setLabel('mngmtAgentTrap-4014').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_4014.setDescription('Agent Uid does not exist')
mngmt_agent_trap_4015 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004015)).setLabel('mngmtAgentTrap-4015').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_4015.setDescription('Unable to find object')
mngmt_agent_trap_4016 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004016)).setLabel('mngmtAgentTrap-4016').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_4016.setDescription('Unable to store object')
mngmt_agent_trap_4017 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004017)).setLabel('mngmtAgentTrap-4017').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_4017.setDescription('Unable to find storage system object')
mngmt_agent_trap_4018 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004018)).setLabel('mngmtAgentTrap-4018').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_4018.setDescription('Unable to create MLD')
mngmt_agent_trap_4020 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004020)).setLabel('mngmtAgentTrap-4020').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_4020.setDescription('lastSafeChoiceDelay Expired')
mngmt_agent_trap_4021 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004021)).setLabel('mngmtAgentTrap-4021').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_4021.setDescription('crashDetectDelay Expired')
mngmt_agent_trap_4023 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004023)).setLabel('mngmtAgentTrap-4023').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_4023.setDescription('Unable to read Copy1 of MLD')
mngmt_agent_trap_4024 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004024)).setLabel('mngmtAgentTrap-4024').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_4024.setDescription('Copy 1 of MLD Invalid')
mngmt_agent_trap_4025 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004025)).setLabel('mngmtAgentTrap-4025').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_4025.setDescription('Invalid Copy block of MLD')
mngmt_agent_trap_4027 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004027)).setLabel('mngmtAgentTrap-4027').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_4027.setDescription('MLD database capacity not equal to true MLD capacity')
mngmt_agent_trap_4028 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004028)).setLabel('mngmtAgentTrap-4028').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_4028.setDescription('Backup range out of bounds of copy 1 range')
mngmt_agent_trap_4029 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004029)).setLabel('mngmtAgentTrap-4029').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_4029.setDescription('MLD Manager Lock Crash DetectDelay has expired, just taking lock!')
mngmt_agent_trap_4030 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004030)).setLabel('mngmtAgentTrap-4030').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_4030.setDescription('MLD Copy 1 Restored')
mngmt_agent_trap_4031 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004031)).setLabel('mngmtAgentTrap-4031').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_4031.setDescription('MLD Copy 2 Restored')
mngmt_agent_trap_4032 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004032)).setLabel('mngmtAgentTrap-4032').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_4032.setDescription('Unable to find UidAssoc Object')
mngmt_agent_trap_4033 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004033)).setLabel('mngmtAgentTrap-4033').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_4033.setDescription('Unable to store UID Association Object')
mngmt_agent_trap_4034 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004034)).setLabel('mngmtAgentTrap-4034').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_4034.setDescription('Unable to find UidAssoc Object')
mngmt_agent_trap_4035 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004035)).setLabel('mngmtAgentTrap-4035').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_4035.setDescription('Unable to read last Fusion event read')
mngmt_agent_trap_4036 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004036)).setLabel('mngmtAgentTrap-4036').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_4036.setDescription('MLD Notification Queue Empty')
mngmt_agent_trap_4037 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004037)).setLabel('mngmtAgentTrap-4037').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_4037.setDescription('Unable to find Notification Object')
mngmt_agent_trap_4040 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004040)).setLabel('mngmtAgentTrap-4040').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_4040.setDescription('Unable to read Event Log Pointer')
mngmt_agent_trap_4041 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004041)).setLabel('mngmtAgentTrap-4041').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_4041.setDescription('Unable to read Event Log')
mngmt_agent_trap_4042 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004042)).setLabel('mngmtAgentTrap-4042').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_4042.setDescription('Unable to store Event Log')
mngmt_agent_trap_4043 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004043)).setLabel('mngmtAgentTrap-4043').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_4043.setDescription('Unable to read Event Log')
mngmt_agent_trap_4047 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004047)).setLabel('mngmtAgentTrap-4047').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_4047.setDescription('Previously Read Object Properties do not Match')
mngmt_agent_trap_4048 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004048)).setLabel('mngmtAgentTrap-4048').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_4048.setDescription('Previously Read Object Properties do not Match')
mngmt_agent_trap_4049 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004049)).setLabel('mngmtAgentTrap-4049').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_4049.setDescription('Unable to read Notification Host List')
mngmt_agent_trap_4050 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004050)).setLabel('mngmtAgentTrap-4050').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_4050.setDescription('Unable to store Notification Host List')
mngmt_agent_trap_4051 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004051)).setLabel('mngmtAgentTrap-4051').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_4051.setDescription('Unable to store Notification Host List and free Lock')
mngmt_agent_trap_4052 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004052)).setLabel('mngmtAgentTrap-4052').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_4052.setDescription('Unable to read Event Configuration List')
mngmt_agent_trap_4053 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004053)).setLabel('mngmtAgentTrap-4053').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_4053.setDescription('Unable to store Event Configuration List')
mngmt_agent_trap_4054 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004054)).setLabel('mngmtAgentTrap-4054').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_4054.setDescription('Unable to store Event Configuration List and free Lock')
mngmt_agent_trap_4058 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004058)).setLabel('mngmtAgentTrap-4058').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_4058.setDescription('MLD Manager Mutex Timeout error')
mngmt_agent_trap_4059 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004059)).setLabel('mngmtAgentTrap-4059').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_4059.setDescription('MLD Manager list is empty')
mngmt_agent_trap_5001 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136005001)).setLabel('mngmtAgentTrap-5001').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_5001.setDescription('Monitor Startup Complete')
mngmt_agent_trap_5002 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136005002)).setLabel('mngmtAgentTrap-5002').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_5002.setDescription('Monitor Startup Failed')
mngmt_agent_trap_5003 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136005003)).setLabel('mngmtAgentTrap-5003').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_5003.setDescription('Monitor ShutDown Complete')
mngmt_agent_trap_5004 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136005004)).setLabel('mngmtAgentTrap-5004').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_5004.setDescription('Monitor Memory Allocation Failure')
mngmt_agent_trap_5005 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136005005)).setLabel('mngmtAgentTrap-5005').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_5005.setDescription('Monitor Mark Agent as Inactive')
mngmt_agent_trap_5006 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136005006)).setLabel('mngmtAgentTrap-5006').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_5006.setDescription('Monitor create thread error')
mngmt_agent_trap_5007 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136005007)).setLabel('mngmtAgentTrap-5007').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_5007.setDescription('Monitor create timer error')
mngmt_agent_trap_5008 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136005008)).setLabel('mngmtAgentTrap-5008').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_5008.setDescription('Monitor agent registration - Complete')
mngmt_agent_trap_5010 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136005010)).setLabel('mngmtAgentTrap-5010').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_5010.setDescription('Monitor initiated a storage system management shutdown because of controller failures')
mngmt_agent_trap_5011 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136005011)).setLabel('mngmtAgentTrap-5011').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_5011.setDescription('Unknown storage system rediscovery complete ')
mngmt_agent_trap_5012 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136005012)).setLabel('mngmtAgentTrap-5012').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_5012.setDescription('Start monitoring thread for storage system - Complete')
mngmt_agent_trap_5013 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136005013)).setLabel('mngmtAgentTrap-5013').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_5013.setDescription('Start monitoring thread for storage system - Fail')
mngmt_agent_trap_5014 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136005014)).setLabel('mngmtAgentTrap-5014').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_5014.setDescription('Monitoring thread for storage system terminated')
mngmt_agent_trap_5015 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136005015)).setLabel('mngmtAgentTrap-5015').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_5015.setDescription('Rediscover unknown storage system - Error')
mngmt_agent_trap_5016 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136005016)).setLabel('mngmtAgentTrap-5016').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_5016.setDescription('Controller time synchronized to management workstation time.')
mngmt_agent_trap_5017 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136005017)).setLabel('mngmtAgentTrap-5017').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_5017.setDescription('Management workstation and controller time checked for synchronization.')
mngmt_agent_trap_5018 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136005018)).setLabel('mngmtAgentTrap-5018').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_5018.setDescription('Controller and management workstation time are the same. No need to synchronize.')
mngmt_agent_trap_5019 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136005019)).setLabel('mngmtAgentTrap-5019').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_5019.setDescription('Exception caught in monitoring process.')
mngmt_agent_trap_6001 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006001)).setLabel('mngmtAgentTrap-6001').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_6001.setDescription('Ready')
mngmt_agent_trap_6002 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006002)).setLabel('mngmtAgentTrap-6002').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_6002.setDescription('Index Out of Range')
mngmt_agent_trap_6003 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006003)).setLabel('mngmtAgentTrap-6003').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_6003.setDescription('Cannot access storage system. Communications error.')
mngmt_agent_trap_6004 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006004)).setLabel('mngmtAgentTrap-6004').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_6004.setDescription('No controllers found')
mngmt_agent_trap_6005 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006005)).setLabel('mngmtAgentTrap-6005').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_6005.setDescription('Invalid Index')
mngmt_agent_trap_6006 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006006)).setLabel('mngmtAgentTrap-6006').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_6006.setDescription('Memory allocation failure')
mngmt_agent_trap_6007 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006007)).setLabel('mngmtAgentTrap-6007').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_6007.setDescription('No physical stores found')
mngmt_agent_trap_6008 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006008)).setLabel('mngmtAgentTrap-6008').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_6008.setDescription('No storage system found')
mngmt_agent_trap_6009 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006009)).setLabel('mngmtAgentTrap-6009').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_6009.setDescription('No disk group found')
mngmt_agent_trap_6010 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006010)).setLabel('mngmtAgentTrap-6010').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_6010.setDescription('Too many disk groups')
mngmt_agent_trap_6011 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006011)).setLabel('mngmtAgentTrap-6011').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_6011.setDescription('No volumes found')
mngmt_agent_trap_6012 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006012)).setLabel('mngmtAgentTrap-6012').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_6012.setDescription('No Logical Disks Found')
mngmt_agent_trap_6013 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006013)).setLabel('mngmtAgentTrap-6013').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_6013.setDescription('Context ID changed during operation')
mngmt_agent_trap_6014 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006014)).setLabel('mngmtAgentTrap-6014').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_6014.setDescription('No Name')
mngmt_agent_trap_6015 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006015)).setLabel('mngmtAgentTrap-6015').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_6015.setDescription('Name Size Exceeded')
mngmt_agent_trap_6016 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006016)).setLabel('mngmtAgentTrap-6016').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_6016.setDescription('Shutdown Complete')
mngmt_agent_trap_6017 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006017)).setLabel('mngmtAgentTrap-6017').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_6017.setDescription('Mutex Creation Failure')
mngmt_agent_trap_6018 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006018)).setLabel('mngmtAgentTrap-6018').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_6018.setDescription('The request has timed out. The system is busy processing another command.')
mngmt_agent_trap_6019 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006019)).setLabel('mngmtAgentTrap-6019').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_6019.setDescription('No MLD Handle Set')
mngmt_agent_trap_6020 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006020)).setLabel('mngmtAgentTrap-6020').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_6020.setDescription('Failed Transport Layer Communication - No Such Id')
mngmt_agent_trap_6021 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006021)).setLabel('mngmtAgentTrap-6021').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_6021.setDescription('Failed Transport Layer Communication - TimeOut')
mngmt_agent_trap_6022 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006022)).setLabel('mngmtAgentTrap-6022').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_6022.setDescription('No initialized storage system objects found')
mngmt_agent_trap_6023 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006023)).setLabel('mngmtAgentTrap-6023').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_6023.setDescription('No Attached Port Found')
mngmt_agent_trap_6024 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006024)).setLabel('mngmtAgentTrap-6024').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_6024.setDescription('Failed to get SCMI Object Handle')
mngmt_agent_trap_6025 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006025)).setLabel('mngmtAgentTrap-6025').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_6025.setDescription('Shutdown Both Restart And Power Off Requested')
mngmt_agent_trap_6026 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006026)).setLabel('mngmtAgentTrap-6026').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_6026.setDescription('Shutdown Drive Shelf Power Off But No Enclosure Power Off Requested')
mngmt_agent_trap_6027 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006027)).setLabel('mngmtAgentTrap-6027').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_6027.setDescription('Shutdown Disable Battery But No Enclosure Power Off Requested')
mngmt_agent_trap_6028 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006028)).setLabel('mngmtAgentTrap-6028').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_6028.setDescription('Shutdown Disable Battery But Shutdown Unconditional Requested')
mngmt_agent_trap_6029 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006029)).setLabel('mngmtAgentTrap-6029').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_6029.setDescription('Shutdown Delay Out Of Range')
mngmt_agent_trap_6030 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006030)).setLabel('mngmtAgentTrap-6030').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_6030.setDescription('Cache Write Failure')
mngmt_agent_trap_6031 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006031)).setLabel('mngmtAgentTrap-6031').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_6031.setDescription('Battery Disable Failure')
mngmt_agent_trap_6032 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006032)).setLabel('mngmtAgentTrap-6032').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_6032.setDescription('Drive Shelf Disable Failure')
mngmt_agent_trap_6033 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006033)).setLabel('mngmtAgentTrap-6033').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_6033.setDescription('Battery Disable Failed on Both Controllers Batteries')
mngmt_agent_trap_6034 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006034)).setLabel('mngmtAgentTrap-6034').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_6034.setDescription('Battery Disable Failed on This Controllers Battery')
mngmt_agent_trap_6035 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006035)).setLabel('mngmtAgentTrap-6035').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_6035.setDescription('Battery Disable Failed on the Other Controllers Battery')
mngmt_agent_trap_6036 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006036)).setLabel('mngmtAgentTrap-6036').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_6036.setDescription('Requested disk failure protection level is set. Actual level will change when sufficient disk space is available.')
mngmt_agent_trap_6037 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006037)).setLabel('mngmtAgentTrap-6037').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_6037.setDescription('Physical Store Contains Stale or Foreign Volume Information.')
mngmt_agent_trap_6038 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006038)).setLabel('mngmtAgentTrap-6038').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_6038.setDescription('Controller Resynchronization or Reboot Occurred. Context Error')
mngmt_agent_trap_8001 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008001)).setLabel('mngmtAgentTrap-8001').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8001.setDescription('Invalid Operation')
mngmt_agent_trap_8002 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008002)).setLabel('mngmtAgentTrap-8002').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8002.setDescription('Storage system already created')
mngmt_agent_trap_8003 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008003)).setLabel('mngmtAgentTrap-8003').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8003.setDescription('Controller already part of storage system configuration')
mngmt_agent_trap_8004 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008004)).setLabel('mngmtAgentTrap-8004').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8004.setDescription('Physical Store Count Below Minimum')
mngmt_agent_trap_8005 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008005)).setLabel('mngmtAgentTrap-8005').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8005.setDescription('Controller not part of storage system configuration')
mngmt_agent_trap_8006 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008006)).setLabel('mngmtAgentTrap-8006').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8006.setDescription('Failed to uninitialize storage system')
mngmt_agent_trap_8007 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008007)).setLabel('mngmtAgentTrap-8007').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8007.setDescription('Storage system File Open Error')
mngmt_agent_trap_8008 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008008)).setLabel('mngmtAgentTrap-8008').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8008.setDescription('Storage system File Write Error')
mngmt_agent_trap_8009 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008009)).setLabel('mngmtAgentTrap-8009').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8009.setDescription('Storage system File Read Error')
mngmt_agent_trap_8010 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008010)).setLabel('mngmtAgentTrap-8010').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8010.setDescription('Name too long')
mngmt_agent_trap_8011 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008011)).setLabel('mngmtAgentTrap-8011').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8011.setDescription('No String Error')
mngmt_agent_trap_8012 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008012)).setLabel('mngmtAgentTrap-8012').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8012.setDescription('No MLD Handle Found')
mngmt_agent_trap_8013 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008013)).setLabel('mngmtAgentTrap-8013').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8013.setDescription('No Controllers Found')
mngmt_agent_trap_8014 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008014)).setLabel('mngmtAgentTrap-8014').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8014.setDescription('Controller Not Found On Loop')
mngmt_agent_trap_8015 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008015)).setLabel('mngmtAgentTrap-8015').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8015.setDescription('No Disk Groups Found')
mngmt_agent_trap_8016 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008016)).setLabel('mngmtAgentTrap-8016').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8016.setDescription('No Volumes Found')
mngmt_agent_trap_8017 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008017)).setLabel('mngmtAgentTrap-8017').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8017.setDescription('No Physical Stores Found')
mngmt_agent_trap_8018 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008018)).setLabel('mngmtAgentTrap-8018').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8018.setDescription('No Vdisks Found')
mngmt_agent_trap_8019 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008019)).setLabel('mngmtAgentTrap-8019').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8019.setDescription('No Hosts Found')
mngmt_agent_trap_8020 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008020)).setLabel('mngmtAgentTrap-8020').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8020.setDescription('Name already exists')
mngmt_agent_trap_8021 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008021)).setLabel('mngmtAgentTrap-8021').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8021.setDescription('Folder is not empty')
mngmt_agent_trap_8022 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008022)).setLabel('mngmtAgentTrap-8022').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8022.setDescription('Spares goal could not be met')
mngmt_agent_trap_8023 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008023)).setLabel('mngmtAgentTrap-8023').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8023.setDescription('Storage system object found')
mngmt_agent_trap_8024 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008024)).setLabel('mngmtAgentTrap-8024').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8024.setDescription('Storage system object not found')
mngmt_agent_trap_8025 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008025)).setLabel('mngmtAgentTrap-8025').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8025.setDescription('New Physical Store Detected But Not Found In Physical Store List')
mngmt_agent_trap_8026 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008026)).setLabel('mngmtAgentTrap-8026').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8026.setDescription('MldManager Handle is NULL')
mngmt_agent_trap_8027 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008027)).setLabel('mngmtAgentTrap-8027').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8027.setDescription('NscMngrInterface Handle is NULL')
mngmt_agent_trap_8028 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008028)).setLabel('mngmtAgentTrap-8028').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8028.setDescription('ScLockMngr Handle is NULL')
mngmt_agent_trap_8029 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008029)).setLabel('mngmtAgentTrap-8029').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8029.setDescription('Storage system initialization failed')
mngmt_agent_trap_8030 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008030)).setLabel('mngmtAgentTrap-8030').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8030.setDescription('MldMngr, NscMngrInterfaceMngr, or ScLockMngr Handle is NULL')
mngmt_agent_trap_8031 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008031)).setLabel('mngmtAgentTrap-8031').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8031.setDescription('Storage system initialization failed')
mngmt_agent_trap_8032 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008032)).setLabel('mngmtAgentTrap-8032').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8032.setDescription('Storage system discovery failed')
mngmt_agent_trap_8033 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008033)).setLabel('mngmtAgentTrap-8033').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8033.setDescription('Storage system already uninitialized or does not exist')
mngmt_agent_trap_8034 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008034)).setLabel('mngmtAgentTrap-8034').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8034.setDescription('Get Total Storage Failed')
mngmt_agent_trap_8035 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008035)).setLabel('mngmtAgentTrap-8035').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8035.setDescription('Storage system is uninitialized')
mngmt_agent_trap_8036 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008036)).setLabel('mngmtAgentTrap-8036').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8036.setDescription('Get Total Storage Available Failed')
mngmt_agent_trap_8037 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008037)).setLabel('mngmtAgentTrap-8037').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8037.setDescription('Get Total Storage Occupied Failed')
mngmt_agent_trap_8038 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008038)).setLabel('mngmtAgentTrap-8038').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8038.setDescription('Get Total Storage Free Failed')
mngmt_agent_trap_8039 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008039)).setLabel('mngmtAgentTrap-8039').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8039.setDescription('Get Disk Group Failed')
mngmt_agent_trap_8040 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008040)).setLabel('mngmtAgentTrap-8040').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8040.setDescription('Get Disk Group List Failed')
mngmt_agent_trap_8041 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008041)).setLabel('mngmtAgentTrap-8041').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8041.setDescription('Get Disk Group Count Failed')
mngmt_agent_trap_8042 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008042)).setLabel('mngmtAgentTrap-8042').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8042.setDescription('Create Volume Failed')
mngmt_agent_trap_8043 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008043)).setLabel('mngmtAgentTrap-8043').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8043.setDescription('Get Volume Failed')
mngmt_agent_trap_8044 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008044)).setLabel('mngmtAgentTrap-8044').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8044.setDescription('Get Volumes Failed')
mngmt_agent_trap_8045 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008045)).setLabel('mngmtAgentTrap-8045').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8045.setDescription('Get Volumes Count Failed')
mngmt_agent_trap_8046 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008046)).setLabel('mngmtAgentTrap-8046').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8046.setDescription('Get Vdisk Failed')
mngmt_agent_trap_8047 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008047)).setLabel('mngmtAgentTrap-8047').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8047.setDescription('Get Vdisk List Failed')
mngmt_agent_trap_8048 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008048)).setLabel('mngmtAgentTrap-8048').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8048.setDescription('Get Physical Store Failed')
mngmt_agent_trap_8049 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008049)).setLabel('mngmtAgentTrap-8049').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8049.setDescription('Get Physical Stores Failed')
mngmt_agent_trap_8050 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008050)).setLabel('mngmtAgentTrap-8050').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8050.setDescription('Get Physical Stores Count Failed')
mngmt_agent_trap_8051 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008051)).setLabel('mngmtAgentTrap-8051').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8051.setDescription('Create Vdisk Failed')
mngmt_agent_trap_8052 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008052)).setLabel('mngmtAgentTrap-8052').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8052.setDescription('Delete Vdisk Failed')
mngmt_agent_trap_8053 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008053)).setLabel('mngmtAgentTrap-8053').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8053.setDescription('Get Device Addition Policy Failed')
mngmt_agent_trap_8054 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008054)).setLabel('mngmtAgentTrap-8054').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8054.setDescription('Get Spares Current Failed')
mngmt_agent_trap_8055 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008055)).setLabel('mngmtAgentTrap-8055').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8055.setDescription('Get Spares Goal Failed')
mngmt_agent_trap_8056 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008056)).setLabel('mngmtAgentTrap-8056').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8056.setDescription('Get storage system events failed')
mngmt_agent_trap_8057 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008057)).setLabel('mngmtAgentTrap-8057').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8057.setDescription('Get Volume Replacement Delay Failed')
mngmt_agent_trap_8058 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008058)).setLabel('mngmtAgentTrap-8058').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8058.setDescription('Set Device Addition Policy Failed')
mngmt_agent_trap_8059 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008059)).setLabel('mngmtAgentTrap-8059').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8059.setDescription('Set Spares Goal Failed')
mngmt_agent_trap_8060 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008060)).setLabel('mngmtAgentTrap-8060').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8060.setDescription('Set Volume Replacement Delay Failed')
mngmt_agent_trap_8061 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008061)).setLabel('mngmtAgentTrap-8061').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8061.setDescription('Create controller Failed')
mngmt_agent_trap_8062 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008062)).setLabel('mngmtAgentTrap-8062').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8062.setDescription('Update controller Failed')
mngmt_agent_trap_8063 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008063)).setLabel('mngmtAgentTrap-8063').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8063.setDescription('Create Host Failed')
mngmt_agent_trap_8064 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008064)).setLabel('mngmtAgentTrap-8064').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8064.setDescription('Discard Host Failed')
mngmt_agent_trap_8065 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008065)).setLabel('mngmtAgentTrap-8065').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8065.setDescription('Get Host Failed')
mngmt_agent_trap_8066 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008066)).setLabel('mngmtAgentTrap-8066').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8066.setDescription('Get Host List Failed')
mngmt_agent_trap_8067 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008067)).setLabel('mngmtAgentTrap-8067').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8067.setDescription('Get Host Count Failed')
mngmt_agent_trap_8068 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008068)).setLabel('mngmtAgentTrap-8068').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8068.setDescription('Get Presented Unit List Failed')
mngmt_agent_trap_8069 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008069)).setLabel('mngmtAgentTrap-8069').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8069.setDescription('Get Presented Unit Count Failed')
mngmt_agent_trap_8070 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008070)).setLabel('mngmtAgentTrap-8070').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8070.setDescription('Free View Failed')
mngmt_agent_trap_8071 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008071)).setLabel('mngmtAgentTrap-8071').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8071.setDescription('Storage system shutdown Failed')
mngmt_agent_trap_8073 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008073)).setLabel('mngmtAgentTrap-8073').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8073.setDescription('Get Derived Unit List Failed')
mngmt_agent_trap_8074 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008074)).setLabel('mngmtAgentTrap-8074').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8074.setDescription('Get Derived Unit Count Failed')
mngmt_agent_trap_8075 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008075)).setLabel('mngmtAgentTrap-8075').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8075.setDescription('Get Vdisk list failed')
mngmt_agent_trap_8076 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008076)).setLabel('mngmtAgentTrap-8076').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8076.setDescription('Get Vdisk count failed')
mngmt_agent_trap_8077 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008077)).setLabel('mngmtAgentTrap-8077').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8077.setDescription('Error while building Vdisk root view')
mngmt_agent_trap_8078 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008078)).setLabel('mngmtAgentTrap-8078').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8078.setDescription('Error while building host root view')
mngmt_agent_trap_8079 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008079)).setLabel('mngmtAgentTrap-8079').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8079.setDescription('Error while building disk group root view')
mngmt_agent_trap_8080 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008080)).setLabel('mngmtAgentTrap-8080').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8080.setDescription('Error while building hardware root view')
mngmt_agent_trap_8081 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008081)).setLabel('mngmtAgentTrap-8081').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8081.setDescription('Specified time format is incorrect')
mngmt_agent_trap_8082 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008082)).setLabel('mngmtAgentTrap-8082').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8082.setDescription('Error creating/opening time synchronization file.')
mngmt_agent_trap_8083 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008083)).setLabel('mngmtAgentTrap-8083').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8083.setDescription('NSCList reordered.')
mngmt_agent_trap_8084 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008084)).setLabel('mngmtAgentTrap-8084').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8084.setDescription('NscList mutex Get error')
mngmt_agent_trap_8085 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008085)).setLabel('mngmtAgentTrap-8085').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8085.setDescription('Storage System is managed by another agent')
mngmt_agent_trap_8086 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008086)).setLabel('mngmtAgentTrap-8086').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8086.setDescription('Memory allocation failure')
mngmt_agent_trap_8087 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008087)).setLabel('mngmtAgentTrap-8087').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8087.setDescription('Failed to obtain list of DR Groups')
mngmt_agent_trap_8088 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008088)).setLabel('mngmtAgentTrap-8088').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8088.setDescription('Failed to obtain count of DR Groups')
mngmt_agent_trap_8089 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008089)).setLabel('mngmtAgentTrap-8089').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8089.setDescription('Failed to build DR Group view')
mngmt_agent_trap_8090 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008090)).setLabel('mngmtAgentTrap-8090').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8090.setDescription('No Devices found on Controller Back End Loops')
mngmt_agent_trap_8091 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008091)).setLabel('mngmtAgentTrap-8091').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8091.setDescription('The DR Group cannot have Virtual Disks drawn from Disk Groups of different drive types.')
mngmt_agent_trap_8092 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008092)).setLabel('mngmtAgentTrap-8092').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8092.setDescription('The storage array name has changed.')
mngmt_agent_trap_8093 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008093)).setLabel('mngmtAgentTrap-8093').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8093.setDescription('A new storage array has been discovered.')
mngmt_agent_trap_8094 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008094)).setLabel('mngmtAgentTrap-8094').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8094.setDescription('The storage cell was uninitialized.')
mngmt_agent_trap_8095 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008095)).setLabel('mngmtAgentTrap-8095').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_8095.setDescription('The storage cell was initialized.')
mngmt_agent_trap_9001 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009001)).setLabel('mngmtAgentTrap-9001').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_9001.setDescription('Vdisk File Open Error')
mngmt_agent_trap_9002 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009002)).setLabel('mngmtAgentTrap-9002').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_9002.setDescription('Vdisk File Write Error')
mngmt_agent_trap_9003 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009003)).setLabel('mngmtAgentTrap-9003').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_9003.setDescription('Vdisk File Read Error')
mngmt_agent_trap_9004 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009004)).setLabel('mngmtAgentTrap-9004').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_9004.setDescription('Vdisk name too long')
mngmt_agent_trap_9005 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009005)).setLabel('mngmtAgentTrap-9005').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_9005.setDescription('Vdisk No String Error')
mngmt_agent_trap_9006 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009006)).setLabel('mngmtAgentTrap-9006').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_9006.setDescription('Vdisk No Object Error')
mngmt_agent_trap_9007 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009007)).setLabel('mngmtAgentTrap-9007').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_9007.setDescription('Vdisk still exists')
mngmt_agent_trap_9008 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009008)).setLabel('mngmtAgentTrap-9008').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_9008.setDescription('Vdisk Invalid Value')
mngmt_agent_trap_9009 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009009)).setLabel('mngmtAgentTrap-9009').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_9009.setDescription('An outstanding command is still in progress')
mngmt_agent_trap_9010 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009010)).setLabel('mngmtAgentTrap-9010').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_9010.setDescription('Requested Vdisk size exceeds the available size')
mngmt_agent_trap_9011 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009011)).setLabel('mngmtAgentTrap-9011').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_9011.setDescription('Vdisk size may be expanded but not reduced')
mngmt_agent_trap_9012 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009012)).setLabel('mngmtAgentTrap-9012').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_9012.setDescription('Deletion completed')
mngmt_agent_trap_9013 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009013)).setLabel('mngmtAgentTrap-9013').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_9013.setDescription('Creation completed')
mngmt_agent_trap_9014 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009014)).setLabel('mngmtAgentTrap-9014').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_9014.setDescription('Size expansion completed')
mngmt_agent_trap_9015 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009015)).setLabel('mngmtAgentTrap-9015').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_9015.setDescription('Vdisk cache data lost error')
mngmt_agent_trap_9016 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009016)).setLabel('mngmtAgentTrap-9016').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_9016.setDescription('Vdisk data lost error resolved')
mngmt_agent_trap_9017 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009017)).setLabel('mngmtAgentTrap-9017').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_9017.setDescription('Operation rejected - The Vdisk has a sharing relationship with another object ')
mngmt_agent_trap_9018 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009018)).setLabel('mngmtAgentTrap-9018').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_9018.setDescription('Operation on this Vdisk was rejected due to its degraded condition')
mngmt_agent_trap_9019 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009019)).setLabel('mngmtAgentTrap-9019').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_9019.setDescription('Operation on this Vdisk can only be performed if it is presented to a host')
mngmt_agent_trap_9020 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009020)).setLabel('mngmtAgentTrap-9020').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_9020.setDescription('Cache policies cannot be modified if Vdisk is presented to a host')
mngmt_agent_trap_9021 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009021)).setLabel('mngmtAgentTrap-9021').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_9021.setDescription('Allowed property changes successful. (Cache policy changes not allowed while Vdisk is presented to a host.)')
mngmt_agent_trap_9022 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009022)).setLabel('mngmtAgentTrap-9022').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_9022.setDescription('Requested redundancy type cannot be implemented with the current disk group condition.')
mngmt_agent_trap_9023 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009023)).setLabel('mngmtAgentTrap-9023').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_9023.setDescription('Your Vdisk was created but cannot be presented at this time. It can be presented when it is fully allocated.')
mngmt_agent_trap_9025 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009025)).setLabel('mngmtAgentTrap-9025').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_9025.setDescription('Vdisk device data lost error')
mngmt_agent_trap_9026 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009026)).setLabel('mngmtAgentTrap-9026').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_9026.setDescription('The first character of the World Wide LUN Name must be a 6.')
mngmt_agent_trap_9027 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009027)).setLabel('mngmtAgentTrap-9027').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_9027.setDescription('Virtual disk cache and inoperative data lost error')
mngmt_agent_trap_9028 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009028)).setLabel('mngmtAgentTrap-9028').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_9028.setDescription('Virtual disk inoperative data lost error')
mngmt_agent_trap_9029 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009029)).setLabel('mngmtAgentTrap-9029').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_9029.setDescription('Virtual disk condition failed because of an inoperative data lost error.')
mngmt_agent_trap_9030 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009030)).setLabel('mngmtAgentTrap-9030').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_9030.setDescription('The property requested cannot be changed on a snapshot.')
mngmt_agent_trap_9031 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009031)).setLabel('mngmtAgentTrap-9031').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_9031.setDescription('The World Wide LUN Name cannot be changed for a presented Vdisk Active member or snapshot.')
mngmt_agent_trap_9032 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009032)).setLabel('mngmtAgentTrap-9032').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_9032.setDescription('Unknown property, request rejected')
mngmt_agent_trap_9033 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009033)).setLabel('mngmtAgentTrap-9033').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_9033.setDescription('This Vdisk was deleted as the indirect result of another user command.')
mngmt_agent_trap_9034 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009034)).setLabel('mngmtAgentTrap-9034').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_9034.setDescription('The requested allocation policy cannot be satisfied. A different allocation policy is already in use by another snapshot in the same family.')
mngmt_agent_trap_9035 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009035)).setLabel('mngmtAgentTrap-9035').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_9035.setDescription('The deletion of this Vdisk cannot take place. The original Vdisk that this is being snapcloned from is in an Inoperative state which must first be resolved.')
mngmt_agent_trap_9036 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009036)).setLabel('mngmtAgentTrap-9036').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_9036.setDescription('Synchronous creation of virtual disk has been aborted due to an internal error. Switching to asynchronous mode to complete the virtual disk creation.')
mngmt_agent_trap_9037 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009037)).setLabel('mngmtAgentTrap-9037').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_9037.setDescription('Convert to Container Completed')
mngmt_agent_trap_9038 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009038)).setLabel('mngmtAgentTrap-9038').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_9038.setDescription('Source virtual disk write-cache policy must be Write-Through.')
mngmt_agent_trap_9039 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009039)).setLabel('mngmtAgentTrap-9039').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_9039.setDescription('WWID specified is invalid.')
mngmt_agent_trap_9040 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009040)).setLabel('mngmtAgentTrap-9040').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_9040.setDescription('This property cannot be changed on this virtual disk (vdisk is either an empty container or a snapshot).')
mngmt_agent_trap_9041 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009041)).setLabel('mngmtAgentTrap-9041').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_9041.setDescription('Cannot perform this operation on a Data Replication (DR) member virtual disk.')
mngmt_agent_trap_9042 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009042)).setLabel('mngmtAgentTrap-9042').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_9042.setDescription('Convert to Container Not Complete')
mngmt_agent_trap_10001 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010001)).setLabel('mngmtAgentTrap-10001').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_10001.setDescription('Storage Object Broker Ready')
mngmt_agent_trap_10004 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010004)).setLabel('mngmtAgentTrap-10004').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_10004.setDescription('Storage system is not initialized')
mngmt_agent_trap_10006 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010006)).setLabel('mngmtAgentTrap-10006').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_10006.setDescription('SOB Memory Allocation Failure')
mngmt_agent_trap_10010 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010010)).setLabel('mngmtAgentTrap-10010').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_10010.setDescription('Your initialized system must have at least one disk group')
mngmt_agent_trap_10011 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010011)).setLabel('mngmtAgentTrap-10011').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_10011.setDescription('Cannot talk to all available controllers')
mngmt_agent_trap_10012 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010012)).setLabel('mngmtAgentTrap-10012').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_10012.setDescription('Command rejected - Folder is not empty')
mngmt_agent_trap_10013 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010013)).setLabel('mngmtAgentTrap-10013').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_10013.setDescription('Command rejected - Vdisk(s), Container(s) or a data replication log are contained in this disk group')
mngmt_agent_trap_10014 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010014)).setLabel('mngmtAgentTrap-10014').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_10014.setDescription('Command rejected - Vdisk(s) are presented to this host')
mngmt_agent_trap_10015 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010015)).setLabel('mngmtAgentTrap-10015').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_10015.setDescription('Command rejected - This Vdisk has a sharing relationship with another object ')
mngmt_agent_trap_10017 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010017)).setLabel('mngmtAgentTrap-10017').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_10017.setDescription('Command rejected - Number of disk groups will exceed the maximum allowable number ')
mngmt_agent_trap_10018 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010018)).setLabel('mngmtAgentTrap-10018').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_10018.setDescription('Cannot access the password file ')
mngmt_agent_trap_10019 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010019)).setLabel('mngmtAgentTrap-10019').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_10019.setDescription('Enterprise Login - Complete')
mngmt_agent_trap_10020 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010020)).setLabel('mngmtAgentTrap-10020').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_10020.setDescription('Command rejected - Disks in the group would go below the minimum required number.')
mngmt_agent_trap_10021 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010021)).setLabel('mngmtAgentTrap-10021').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_10021.setDescription('Rediscovery of controllers - Complete')
mngmt_agent_trap_10022 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010022)).setLabel('mngmtAgentTrap-10022').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_10022.setDescription('Unable to establish communication with controller, check all connections. ')
mngmt_agent_trap_10023 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010023)).setLabel('mngmtAgentTrap-10023').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_10023.setDescription('Disk Group Data Lost Error Resolution Sequence 3 - Disk group resolved to normal')
mngmt_agent_trap_10024 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010024)).setLabel('mngmtAgentTrap-10024').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_10024.setDescription('Disk Group Data Lost Error Resolution Sequence 1 - Failed Vdisks marked for deletion')
mngmt_agent_trap_10025 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010025)).setLabel('mngmtAgentTrap-10025').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_10025.setDescription('Disk Group Data Lost Error Resolution Sequence 2 - Failed Vdisks deletion in progress')
mngmt_agent_trap_10026 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010026)).setLabel('mngmtAgentTrap-10026').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_10026.setDescription('Disk Group Data Lost Error Resolution Sequence 3 - Disk group deleted')
mngmt_agent_trap_10027 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010027)).setLabel('mngmtAgentTrap-10027').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_10027.setDescription('Creating the Vdisk would exceed the maximum allowable Vdisk count')
mngmt_agent_trap_10028 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010028)).setLabel('mngmtAgentTrap-10028').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_10028.setDescription('Volume insufficient resources')
mngmt_agent_trap_10029 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010029)).setLabel('mngmtAgentTrap-10029').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_10029.setDescription('Process mutex is locked')
mngmt_agent_trap_10030 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010030)).setLabel('mngmtAgentTrap-10030').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_10030.setDescription('Invalid URL request type')
mngmt_agent_trap_10031 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010031)).setLabel('mngmtAgentTrap-10031').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_10031.setDescription('Invalid URL object type')
mngmt_agent_trap_10035 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010035)).setLabel('mngmtAgentTrap-10035').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_10035.setDescription('The snapshot/Snapclone license cannot be validated. Either the license key has not been entered, or there is a system communication failure.')
mngmt_agent_trap_10036 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010036)).setLabel('mngmtAgentTrap-10036').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_10036.setDescription('A data replication license cannot be validated. Either the license key has not been entered, or there is a system communication failure.')
mngmt_agent_trap_10037 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010037)).setLabel('mngmtAgentTrap-10037').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_10037.setDescription('Object name should not be empty or exceed its maximum length')
mngmt_agent_trap_10038 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010038)).setLabel('mngmtAgentTrap-10038').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_10038.setDescription('Object comments exceeds maximum length')
mngmt_agent_trap_10039 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010039)).setLabel('mngmtAgentTrap-10039').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_10039.setDescription('Vdisk does not meet the requirements to be part of a DR group.')
mngmt_agent_trap_10040 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010040)).setLabel('mngmtAgentTrap-10040').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_10040.setDescription('The Eva selected as the Destination for the DR group is invalid. Either it has a DR relationship with another EVA or it is not the same EVA that the source EVA presently has a DR relationship with.')
mngmt_agent_trap_10041 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010041)).setLabel('mngmtAgentTrap-10041').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_10041.setDescription('Cannot group the specified disk device because the disk is already in a disk group.')
mngmt_agent_trap_10042 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010042)).setLabel('mngmtAgentTrap-10042').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_10042.setDescription('Cannot ungroup the specified disk device because the disk is not grouped.')
mngmt_agent_trap_10043 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010043)).setLabel('mngmtAgentTrap-10043').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_10043.setDescription('Object ID provided, or object type, is invalid for the requested operation.')
mngmt_agent_trap_10044 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010044)).setLabel('mngmtAgentTrap-10044').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_10044.setDescription('Specified remote disk group does not exist.')
mngmt_agent_trap_11001 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136011001)).setLabel('mngmtAgentTrap-11001').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_11001.setDescription('Agent startup complete')
mngmt_agent_trap_11002 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136011002)).setLabel('mngmtAgentTrap-11002').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_11002.setDescription('Agent shutdown complete')
mngmt_agent_trap_11003 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136011003)).setLabel('mngmtAgentTrap-11003').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_11003.setDescription('Insufficient memory to create a new object, Heap may be full!')
mngmt_agent_trap_11004 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136011004)).setLabel('mngmtAgentTrap-11004').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_11004.setDescription('Agent Startup Failed')
mngmt_agent_trap_12001 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136012001)).setLabel('mngmtAgentTrap-12001').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_12001.setDescription('Nsc Manager Interface No controllers Found')
mngmt_agent_trap_12002 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136012002)).setLabel('mngmtAgentTrap-12002').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_12002.setDescription('Nsc Manager Interface Index Out Of Range')
mngmt_agent_trap_12003 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136012003)).setLabel('mngmtAgentTrap-12003').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_12003.setDescription('Unable to process command at this time. Retry the command or check all connections. ')
mngmt_agent_trap_12004 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136012004)).setLabel('mngmtAgentTrap-12004').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_12004.setDescription('Nsc Manager Interface Initialization Complete')
mngmt_agent_trap_12005 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136012005)).setLabel('mngmtAgentTrap-12005').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_12005.setDescription('Nsc Manager Interface Initialization Failed')
mngmt_agent_trap_12008 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136012008)).setLabel('mngmtAgentTrap-12008').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_12008.setDescription('No Disk Groups Available For Access')
mngmt_agent_trap_13002 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136013002)).setLabel('mngmtAgentTrap-13002').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_13002.setDescription('Notification Mngr Online')
mngmt_agent_trap_13003 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136013003)).setLabel('mngmtAgentTrap-13003').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_13003.setDescription('Notification Mngr Offline')
mngmt_agent_trap_13004 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136013004)).setLabel('mngmtAgentTrap-13004').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_13004.setDescription('NM Startup Complete')
mngmt_agent_trap_13007 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136013007)).setLabel('mngmtAgentTrap-13007').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_13007.setDescription('Notification Failed')
mngmt_agent_trap_13009 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136013009)).setLabel('mngmtAgentTrap-13009').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_13009.setDescription('Notification Failed - Network Error')
mngmt_agent_trap_13012 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136013012)).setLabel('mngmtAgentTrap-13012').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_13012.setDescription('NM Prev Failed Notification Successfully Notified')
mngmt_agent_trap_13015 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136013015)).setLabel('mngmtAgentTrap-13015').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_13015.setDescription('NM SNMP Packet Failed')
mngmt_agent_trap_13017 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136013017)).setLabel('mngmtAgentTrap-13017').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_13017.setDescription('NM Memory Allocation Error')
mngmt_agent_trap_13018 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136013018)).setLabel('mngmtAgentTrap-13018').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_13018.setDescription('NM StorageCell handle is NULL')
mngmt_agent_trap_13019 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136013019)).setLabel('mngmtAgentTrap-13019').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_13019.setDescription('NM User defined event state file is empty')
mngmt_agent_trap_13020 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136013020)).setLabel('mngmtAgentTrap-13020').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_13020.setDescription('NM Notification Failed - Notification Matrix is NULL ')
mngmt_agent_trap_14001 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136014001)).setLabel('mngmtAgentTrap-14001').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_14001.setDescription('View Already Exists')
mngmt_agent_trap_14002 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136014002)).setLabel('mngmtAgentTrap-14002').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_14002.setDescription('View Is Not Set')
mngmt_agent_trap_14003 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136014003)).setLabel('mngmtAgentTrap-14003').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_14003.setDescription('Object not found in View')
mngmt_agent_trap_14004 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136014004)).setLabel('mngmtAgentTrap-14004').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_14004.setDescription('View Index Is Out Of Range')
mngmt_agent_trap_14005 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136014005)).setLabel('mngmtAgentTrap-14005').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_14005.setDescription('View Object - Invalid Object Condition')
mngmt_agent_trap_14006 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136014006)).setLabel('mngmtAgentTrap-14006').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_14006.setDescription('View Object - Invalid Object Type')
mngmt_agent_trap_14007 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136014007)).setLabel('mngmtAgentTrap-14007').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_14007.setDescription('View is not built.')
mngmt_agent_trap_14008 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136014008)).setLabel('mngmtAgentTrap-14008').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_14008.setDescription('View Object does not exist.')
mngmt_agent_trap_14009 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136014009)).setLabel('mngmtAgentTrap-14009').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_14009.setDescription('Building View List Object - Complete')
mngmt_agent_trap_14010 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136014010)).setLabel('mngmtAgentTrap-14010').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_14010.setDescription('Building View List Object - Failed')
mngmt_agent_trap_14012 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136014012)).setLabel('mngmtAgentTrap-14012').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_14012.setDescription('View Find by UID Failed')
mngmt_agent_trap_14013 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136014013)).setLabel('mngmtAgentTrap-14013').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_14013.setDescription('View Find by Type Failed')
mngmt_agent_trap_14017 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136014017)).setLabel('mngmtAgentTrap-14017').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_14017.setDescription('View Find by Type by Name Failed')
mngmt_agent_trap_15001 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136015001)).setLabel('mngmtAgentTrap-15001').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_15001.setDescription('Tree View Symbol Not Found')
mngmt_agent_trap_15002 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136015002)).setLabel('mngmtAgentTrap-15002').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_15002.setDescription('Tree View Id Symbol Not Found')
mngmt_agent_trap_15003 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136015003)).setLabel('mngmtAgentTrap-15003').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_15003.setDescription('Tree Cursor Symbol Not Found')
mngmt_agent_trap_15004 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136015004)).setLabel('mngmtAgentTrap-15004').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_15004.setDescription('Tree Cursor Id Symbol Not Found')
mngmt_agent_trap_15005 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136015005)).setLabel('mngmtAgentTrap-15005').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_15005.setDescription('Tree Sibling Symbol Not Found')
mngmt_agent_trap_15006 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136015006)).setLabel('mngmtAgentTrap-15006').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_15006.setDescription('Tree Total Children Symbol Not Found')
mngmt_agent_trap_15007 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136015007)).setLabel('mngmtAgentTrap-15007').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_15007.setDescription('Tree Expansion Symbol Not Found')
mngmt_agent_trap_15008 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136015008)).setLabel('mngmtAgentTrap-15008').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_15008.setDescription('Tree Contraction Symbol Not Found')
mngmt_agent_trap_15009 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136015009)).setLabel('mngmtAgentTrap-15009').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_15009.setDescription('Tree Invalid Descriptor String')
mngmt_agent_trap_16001 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016001)).setLabel('mngmtAgentTrap-16001').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_16001.setDescription('Ema Short Status - Reissue Command')
mngmt_agent_trap_16004 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016004)).setLabel('mngmtAgentTrap-16004').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_16004.setDescription('Ema Invalid Handle Set In Request Packet')
mngmt_agent_trap_16005 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016005)).setLabel('mngmtAgentTrap-16005').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_16005.setDescription('Ema No Pstore At Referenced Location')
mngmt_agent_trap_16008 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016008)).setLabel('mngmtAgentTrap-16008').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_16008.setDescription('Ema No Device Found')
mngmt_agent_trap_16010 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016010)).setLabel('mngmtAgentTrap-16010').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_16010.setDescription('Ema Could Not Find SubEnclosure in Configuration List')
mngmt_agent_trap_16012 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016012)).setLabel('mngmtAgentTrap-16012').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_16012.setDescription('Ema Non-specific error occurred ')
mngmt_agent_trap_16013 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016013)).setLabel('mngmtAgentTrap-16013').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_16013.setDescription('Ema Shelf WWN Could Not Be Accessed Through A Drive')
mngmt_agent_trap_16014 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016014)).setLabel('mngmtAgentTrap-16014').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_16014.setDescription('Ema EMU Failed To Enter Primary Mode')
mngmt_agent_trap_16015 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016015)).setLabel('mngmtAgentTrap-16015').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_16015.setDescription('Ema EMU Failed To Exit Primary Mode')
mngmt_agent_trap_16016 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016016)).setLabel('mngmtAgentTrap-16016').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_16016.setDescription('Ema Downloaded File Does Not Contain Valid Fibre Channel Loader [status:1]')
mngmt_agent_trap_16017 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016017)).setLabel('mngmtAgentTrap-16017').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_16017.setDescription('Ema Downloaded File Format Is Not Recognized [status:2]')
mngmt_agent_trap_16018 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016018)).setLabel('mngmtAgentTrap-16018').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_16018.setDescription('Ema Incorrect Firmware In Downloaded File [status:3]')
mngmt_agent_trap_16019 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016019)).setLabel('mngmtAgentTrap-16019').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_16019.setDescription('Ema Downloaded Loader is Too Large [status:4]')
mngmt_agent_trap_16020 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016020)).setLabel('mngmtAgentTrap-16020').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_16020.setDescription('Ema Invalid Checksum [status:5]')
mngmt_agent_trap_16021 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016021)).setLabel('mngmtAgentTrap-16021').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_16021.setDescription('Ema Previous Offset Plus Previous Length Not Equal To Current Offset [status:6]')
mngmt_agent_trap_16022 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016022)).setLabel('mngmtAgentTrap-16022').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_16022.setDescription('Ema Downloaded Loader Terminated Incorrectly [status:7]')
mngmt_agent_trap_16023 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016023)).setLabel('mngmtAgentTrap-16023').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_16023.setDescription('Ema EMU Out Of Memory [status:8]')
mngmt_agent_trap_16024 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016024)).setLabel('mngmtAgentTrap-16024').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_16024.setDescription('Ema EMU CDB Timeout -- Download Aborted [status:9]')
mngmt_agent_trap_16025 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016025)).setLabel('mngmtAgentTrap-16025').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_16025.setDescription('Ema EMU Internal State Machine Error [status:10]')
mngmt_agent_trap_16026 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016026)).setLabel('mngmtAgentTrap-16026').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_16026.setDescription('Ema EMU Flash Erasure Failure [status:11]')
mngmt_agent_trap_16027 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016027)).setLabel('mngmtAgentTrap-16027').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_16027.setDescription('Ema EMU In Primary Mode - Cannot Download To Primary EMU [status:12]')
mngmt_agent_trap_16028 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016028)).setLabel('mngmtAgentTrap-16028').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_16028.setDescription('Ema Previous Offset Plus Previous Length Greater Than Total Size [status:13]')
mngmt_agent_trap_16029 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016029)).setLabel('mngmtAgentTrap-16029').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_16029.setDescription('Ema Current Total Size Different From Previous Total Size [status:14]')
mngmt_agent_trap_16030 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016030)).setLabel('mngmtAgentTrap-16030').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_16030.setDescription('Ema Could Not Restore Reporting Group Number. Final Download Record Error')
mngmt_agent_trap_16031 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016031)).setLabel('mngmtAgentTrap-16031').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_16031.setDescription('Ema Could Not Recovery From Invop. Invop Retries Exhausted')
mngmt_agent_trap_16032 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016032)).setLabel('mngmtAgentTrap-16032').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_16032.setDescription('Ema Requested WWN Does Not Match Enclosure WWN')
mngmt_agent_trap_16033 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016033)).setLabel('mngmtAgentTrap-16033').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_16033.setDescription('Ema EMU Enclosure Services Error Occurred. EMU May Be Unavailable or Not Installed')
mngmt_agent_trap_16034 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016034)).setLabel('mngmtAgentTrap-16034').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_16034.setDescription('Ema SCSI Error Occurred While Trying To Communicate With EMU')
mngmt_agent_trap_16035 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016035)).setLabel('mngmtAgentTrap-16035').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_16035.setDescription('Ema Could Not Open EMU Firmware File')
mngmt_agent_trap_16036 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016036)).setLabel('mngmtAgentTrap-16036').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_16036.setDescription('Ema EMU Firmware File Name Is Null')
mngmt_agent_trap_16037 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016037)).setLabel('mngmtAgentTrap-16037').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_16037.setDescription('Ema EMU Firmware Download Retries Exhausted. Manual Download May Be Required')
mngmt_agent_trap_16038 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016038)).setLabel('mngmtAgentTrap-16038').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_16038.setDescription('Ema EMU Current Firmware Version Matches Upgrade Firmware Version. No Upgrade Will Be Performed.')
mngmt_agent_trap_16039 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016039)).setLabel('mngmtAgentTrap-16039').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_16039.setDescription('Ema EMU Firmware Upgrade Success')
mngmt_agent_trap_16040 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016040)).setLabel('mngmtAgentTrap-16040').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_16040.setDescription('Ema EMU In Load State. Do Not Power Off. Reload EMU Firmware ')
mngmt_agent_trap_17001 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136017001)).setLabel('mngmtAgentTrap-17001').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_17001.setDescription('Drive Code Load Descriptor File Open Error')
mngmt_agent_trap_17002 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136017002)).setLabel('mngmtAgentTrap-17002').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_17002.setDescription('Drive Code Load Descriptor File Parsing Error - Invalid Line')
mngmt_agent_trap_17003 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136017003)).setLabel('mngmtAgentTrap-17003').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_17003.setDescription('Drive Code Load Image File Open Error, ')
mngmt_agent_trap_17004 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136017004)).setLabel('mngmtAgentTrap-17004').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_17004.setDescription('Drive Code Load Image File Error Getting File Size')
mngmt_agent_trap_17005 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136017005)).setLabel('mngmtAgentTrap-17005').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_17005.setDescription('Drive Code Load Image File Buffer Allocation Error')
mngmt_agent_trap_17006 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136017006)).setLabel('mngmtAgentTrap-17006').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_17006.setDescription('Drive Code Load Image File Read Error')
mngmt_agent_trap_17007 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136017007)).setLabel('mngmtAgentTrap-17007').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_17007.setDescription('Drive Code Load Drive Firmware Update Failed ')
mngmt_agent_trap_17008 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136017008)).setLabel('mngmtAgentTrap-17008').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_17008.setDescription('Drive Code Load Drive Inquiry Failed')
mngmt_agent_trap_17009 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136017009)).setLabel('mngmtAgentTrap-17009').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_17009.setDescription('Drive Code Load Format Command Failed')
mngmt_agent_trap_17012 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136017012)).setLabel('mngmtAgentTrap-17012').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_17012.setDescription('Drive Code Load Get Physical Store Condition Failed')
mngmt_agent_trap_17013 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136017013)).setLabel('mngmtAgentTrap-17013').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_17013.setDescription('Drive Code Load Get Volume Condition Failed')
mngmt_agent_trap_17014 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136017014)).setLabel('mngmtAgentTrap-17014').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_17014.setDescription('Drive Code Load Drive Spin Up Error')
mngmt_agent_trap_17015 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136017015)).setLabel('mngmtAgentTrap-17015').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_17015.setDescription('Drive Code Load - Complete')
mngmt_agent_trap_17016 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136017016)).setLabel('mngmtAgentTrap-17016').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_17016.setDescription('Drive Code Load Disk Group Migration In Progress')
mngmt_agent_trap_17017 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136017017)).setLabel('mngmtAgentTrap-17017').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_17017.setDescription('Drive Code Load Unable To Code Load Disks Part Of A Group ')
mngmt_agent_trap_18001 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018001)).setLabel('mngmtAgentTrap-18001').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_18001.setDescription('Api Created Element Success')
mngmt_agent_trap_18002 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018002)).setLabel('mngmtAgentTrap-18002').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_18002.setDescription('Api Created Storage Success')
mngmt_agent_trap_18003 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018003)).setLabel('mngmtAgentTrap-18003').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_18003.setDescription('Api Created Storage Client Success')
mngmt_agent_trap_18004 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018004)).setLabel('mngmtAgentTrap-18004').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_18004.setDescription('Api Set Storage Success')
mngmt_agent_trap_18005 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018005)).setLabel('mngmtAgentTrap-18005').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_18005.setDescription('Api Set Element Success')
mngmt_agent_trap_18006 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018006)).setLabel('mngmtAgentTrap-18006').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_18006.setDescription('Api Deleted Element Success')
mngmt_agent_trap_18007 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018007)).setLabel('mngmtAgentTrap-18007').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_18007.setDescription('Api Deleted Storage Success')
mngmt_agent_trap_18008 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018008)).setLabel('mngmtAgentTrap-18008').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_18008.setDescription('Api Deleted Storage Client Success')
mngmt_agent_trap_18009 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018009)).setLabel('mngmtAgentTrap-18009').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_18009.setDescription('Api Created Snapshot Success ')
mngmt_agent_trap_18010 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018010)).setLabel('mngmtAgentTrap-18010').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_18010.setDescription('Api Created Clone Success')
mngmt_agent_trap_18018 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018018)).setLabel('mngmtAgentTrap-18018').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_18018.setDescription('Api Unable To Get The Lock')
mngmt_agent_trap_18019 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018019)).setLabel('mngmtAgentTrap-18019').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_18019.setDescription('Api Created PresentedUnit Success')
mngmt_agent_trap_18022 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018022)).setLabel('mngmtAgentTrap-18022').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_18022.setDescription('Api Create DiskGroup Success')
mngmt_agent_trap_18024 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018024)).setLabel('mngmtAgentTrap-18024').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_18024.setDescription('Api Create Folder Success')
mngmt_agent_trap_18025 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018025)).setLabel('mngmtAgentTrap-18025').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_18025.setDescription('Api Delete Folder Success')
mngmt_agent_trap_18028 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018028)).setLabel('mngmtAgentTrap-18028').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_18028.setDescription('Api Set Folder Success')
mngmt_agent_trap_18034 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018034)).setLabel('mngmtAgentTrap-18034').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_18034.setDescription('Api Invalid User Name Or Password Error')
mngmt_agent_trap_18036 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018036)).setLabel('mngmtAgentTrap-18036').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_18036.setDescription('Api Delete Presented Unit Success')
mngmt_agent_trap_18038 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018038)).setLabel('mngmtAgentTrap-18038').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_18038.setDescription('Api Set Diskgroup Success ')
mngmt_agent_trap_18039 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018039)).setLabel('mngmtAgentTrap-18039').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_18039.setDescription('Api Set Disk Success')
mngmt_agent_trap_18040 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018040)).setLabel('mngmtAgentTrap-18040').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_18040.setDescription('Api Delete Storage Family Success ')
mngmt_agent_trap_18041 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018041)).setLabel('mngmtAgentTrap-18041').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_18041.setDescription('Api Set Storage Family Success')
mngmt_agent_trap_18042 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018042)).setLabel('mngmtAgentTrap-18042').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_18042.setDescription('Api Control Memory Allocation Failure')
mngmt_agent_trap_18045 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018045)).setLabel('mngmtAgentTrap-18045').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_18045.setDescription('Api Element Codeload Success ')
mngmt_agent_trap_18047 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018047)).setLabel('mngmtAgentTrap-18047').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_18047.setDescription('Api Disk Codeload Success')
mngmt_agent_trap_18048 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018048)).setLabel('mngmtAgentTrap-18048').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_18048.setDescription('Api Monitor Codeload Success')
mngmt_agent_trap_18049 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018049)).setLabel('mngmtAgentTrap-18049').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_18049.setDescription('Api Added Port WWID Success')
mngmt_agent_trap_18050 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018050)).setLabel('mngmtAgentTrap-18050').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_18050.setDescription('Api Set Storage Client Success')
mngmt_agent_trap_18051 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018051)).setLabel('mngmtAgentTrap-18051').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_18051.setDescription('Api Invalid Operation')
mngmt_agent_trap_18052 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018052)).setLabel('mngmtAgentTrap-18052').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_18052.setDescription('Api Deleted Port WWID Success')
mngmt_agent_trap_18059 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018059)).setLabel('mngmtAgentTrap-18059').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_18059.setDescription('Api Set Power Success')
mngmt_agent_trap_18060 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018060)).setLabel('mngmtAgentTrap-18060').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_18060.setDescription('Api Element Is Not Initialized')
mngmt_agent_trap_18063 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018063)).setLabel('mngmtAgentTrap-18063').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_18063.setDescription('Api Error trying to delete a disk group')
mngmt_agent_trap_18065 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018065)).setLabel('mngmtAgentTrap-18065').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_18065.setDescription('Api A storage (Vdisk) operation is in progress. Try again later.')
mngmt_agent_trap_18066 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018066)).setLabel('mngmtAgentTrap-18066').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_18066.setDescription('Api The storage (Vdisk) condition is invalid. The storage may be in error. Try again later.')
mngmt_agent_trap_18067 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018067)).setLabel('mngmtAgentTrap-18067').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_18067.setDescription('Api Error calling get Vdisk condition. Vdisk may be deleted. Try again later.')
mngmt_agent_trap_18068 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018068)).setLabel('mngmtAgentTrap-18068').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_18068.setDescription('Api Invalid initialization of the API. Cannot start monitoring process. Storage system management limited.')
mngmt_agent_trap_18070 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018070)).setLabel('mngmtAgentTrap-18070').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_18070.setDescription('Api A command is currently under execution from another API call. Try again later.')
mngmt_agent_trap_18071 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018071)).setLabel('mngmtAgentTrap-18071').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_18071.setDescription('Api The server has not completed initialization, cannot process the request.')
mngmt_agent_trap_18073 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018073)).setLabel('mngmtAgentTrap-18073').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_18073.setDescription('Api Removal of disk from disk group successful')
mngmt_agent_trap_18074 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018074)).setLabel('mngmtAgentTrap-18074').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_18074.setDescription('Api Disk(s) added to disk group successfully')
mngmt_agent_trap_18075 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018075)).setLabel('mngmtAgentTrap-18075').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_18075.setDescription('Api Modify monitor properties successful')
mngmt_agent_trap_18076 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018076)).setLabel('mngmtAgentTrap-18076').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_18076.setDescription('Api Element name too long. Maximum is 20 characters.')
mngmt_agent_trap_18080 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018080)).setLabel('mngmtAgentTrap-18080').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_18080.setDescription('Api The snapshot/Snapclone license cannot be validated. Either the license key has not been entered, or there is a system communication failure.')
mngmt_agent_trap_18081 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018081)).setLabel('mngmtAgentTrap-18081').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_18081.setDescription("Api The folder operation is not valid for the specified folder. Either the folder is a root folder and cannot be modified, or it is a disk group folder for which you should use 'Set Group' command.")
mngmt_agent_trap_20001 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136020001)).setLabel('mngmtAgentTrap-20001').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_20001.setDescription('LicMngr Memory Allocation Failure')
mngmt_agent_trap_20002 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136020002)).setLabel('mngmtAgentTrap-20002').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_20002.setDescription('LicMngr Startup Complete')
mngmt_agent_trap_20003 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136020003)).setLabel('mngmtAgentTrap-20003').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_20003.setDescription('LicMngr Startup Failed')
mngmt_agent_trap_20004 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136020004)).setLabel('mngmtAgentTrap-20004').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_20004.setDescription('License successfully checked out')
mngmt_agent_trap_20005 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136020005)).setLabel('mngmtAgentTrap-20005').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_20005.setDescription('License checkout failed')
mngmt_agent_trap_20011 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136020011)).setLabel('mngmtAgentTrap-20011').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_20011.setDescription('License Line has an incorrect format')
mngmt_agent_trap_20013 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136020013)).setLabel('mngmtAgentTrap-20013').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_20013.setDescription('License Library runtime error')
mngmt_agent_trap_20015 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136020015)).setLabel('mngmtAgentTrap-20015').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_20015.setDescription('Failed to retrieve Node WWN from storage system')
mngmt_agent_trap_20016 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136020016)).setLabel('mngmtAgentTrap-20016').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_20016.setDescription('Failed to retrieve license list from MLD')
mngmt_agent_trap_20017 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136020017)).setLabel('mngmtAgentTrap-20017').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_20017.setDescription('Failed to write license list to MLD')
mngmt_agent_trap_20018 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136020018)).setLabel('mngmtAgentTrap-20018').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_20018.setDescription('This license line appears to be invalid')
mngmt_agent_trap_20019 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136020019)).setLabel('mngmtAgentTrap-20019').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_20019.setDescription('MLD Manager Handle is NULL - unable to update MLD License List')
mngmt_agent_trap_20020 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136020020)).setLabel('mngmtAgentTrap-20020').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_20020.setDescription('LicMngr: Storage system handle is NULL')
mngmt_agent_trap_20021 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136020021)).setLabel('mngmtAgentTrap-20021').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_20021.setDescription('The license you entered is a valid license but not for the Node WWN and/or firmware version on this controller pair')
mngmt_agent_trap_20022 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136020022)).setLabel('mngmtAgentTrap-20022').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_20022.setDescription('Function name string is null or in an incorrect format')
mngmt_agent_trap_20023 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136020023)).setLabel('mngmtAgentTrap-20023').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_20023.setDescription('Version string is null or in an incorrect format')
mngmt_agent_trap_21001 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136021001)).setLabel('mngmtAgentTrap-21001').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_21001.setDescription('HSV Upgrade Manager Image File Open Error')
mngmt_agent_trap_21002 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136021002)).setLabel('mngmtAgentTrap-21002').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_21002.setDescription('HSV Upgrade Manager Image File Buffer Allocation Error')
mngmt_agent_trap_21003 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136021003)).setLabel('mngmtAgentTrap-21003').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_21003.setDescription('HSV Upgrade Manager Image File Read Error')
mngmt_agent_trap_21004 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136021004)).setLabel('mngmtAgentTrap-21004').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_21004.setDescription('HSV Upgrade Manager Event File Write Error')
mngmt_agent_trap_21006 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136021006)).setLabel('mngmtAgentTrap-21006').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_21006.setDescription('HSV Upgrade Manager Global Header Edc Compute Error')
mngmt_agent_trap_21007 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136021007)).setLabel('mngmtAgentTrap-21007').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_21007.setDescription('HSV Upgrade Manager Image Header Edc Compute Error')
mngmt_agent_trap_21008 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136021008)).setLabel('mngmtAgentTrap-21008').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_21008.setDescription('HSV Upgrade Manager Image Type Exceeds Max Image Count')
mngmt_agent_trap_21009 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136021009)).setLabel('mngmtAgentTrap-21009').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_21009.setDescription('HSV Upgrade Manager Image Type Not Controller Image')
mngmt_agent_trap_21010 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136021010)).setLabel('mngmtAgentTrap-21010').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_21010.setDescription('HSV Upgrade Manager Image Size Exceeded')
mngmt_agent_trap_21011 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136021011)).setLabel('mngmtAgentTrap-21011').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_21011.setDescription('HSV Upgrade Manager Event File Open Error')
mngmt_agent_trap_21012 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136021012)).setLabel('mngmtAgentTrap-21012').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_21012.setDescription('HSV Upgrade Manager Image Edc Compute Error')
mngmt_agent_trap_21013 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136021013)).setLabel('mngmtAgentTrap-21013').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_21013.setDescription('HSV Upgrade Manager Begin Text Not Found')
mngmt_agent_trap_21014 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136021014)).setLabel('mngmtAgentTrap-21014').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_21014.setDescription('HSV Upgrade Manager After Text Not Found')
mngmt_agent_trap_21015 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136021015)).setLabel('mngmtAgentTrap-21015').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_21015.setDescription('HSV Upgrade Manager File Format Version Mismatch')
mngmt_agent_trap_21016 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136021016)).setLabel('mngmtAgentTrap-21016').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_21016.setDescription('HSV Upgrade Manager Global Header Format Version Mismatch')
mngmt_agent_trap_21017 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136021017)).setLabel('mngmtAgentTrap-21017').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_21017.setDescription('HSV Upgrade Manager Product Information Was Not Found')
mngmt_agent_trap_21018 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136021018)).setLabel('mngmtAgentTrap-21018').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_21018.setDescription('HSV Upgrade Manager Event File Was Not Found')
mngmt_agent_trap_21019 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136021019)).setLabel('mngmtAgentTrap-21019').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_21019.setDescription('HSV Upgrade Manager All Images Match Versions Already Loaded')
mngmt_agent_trap_22001 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136022001)).setLabel('mngmtAgentTrap-22001').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_22001.setDescription('Trace: Unable to write management agent trace file')
mngmt_agent_trap_22002 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136022002)).setLabel('mngmtAgentTrap-22002').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_22002.setDescription('Trace: file write succeeded')
mngmt_agent_trap_23002 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136023002)).setLabel('mngmtAgentTrap-23002').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_23002.setDescription('Diagnostic The view list has errors')
mngmt_agent_trap_23003 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136023003)).setLabel('mngmtAgentTrap-23003').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_23003.setDescription('Diagnostic Memory allocation failure')
mngmt_agent_trap_24001 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136024001)).setLabel('mngmtAgentTrap-24001').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_24001.setDescription('Windows system error')
mngmt_agent_trap_24002 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136024002)).setLabel('mngmtAgentTrap-24002').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_24002.setDescription('Lock is already taken')
mngmt_agent_trap_24003 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136024003)).setLabel('mngmtAgentTrap-24003').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_24003.setDescription('Lock is not taken')
mngmt_agent_trap_24004 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136024004)).setLabel('mngmtAgentTrap-24004').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_24004.setDescription('Request timed out')
mngmt_agent_trap_25001 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136025001)).setLabel('mngmtAgentTrap-25001').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_25001.setDescription('No path to controller')
mngmt_agent_trap_25002 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136025002)).setLabel('mngmtAgentTrap-25002').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_25002.setDescription('Thread is not running')
mngmt_agent_trap_25003 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136025003)).setLabel('mngmtAgentTrap-25003').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_25003.setDescription('No physical stores')
mngmt_agent_trap_25004 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136025004)).setLabel('mngmtAgentTrap-25004').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_25004.setDescription('Loop context ID changed')
mngmt_agent_trap_25005 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136025005)).setLabel('mngmtAgentTrap-25005').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_25005.setDescription('Storage Cell context ID changed')
mngmt_agent_trap_25006 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136025006)).setLabel('mngmtAgentTrap-25006').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_25006.setDescription('Cache Write Failure')
mngmt_agent_trap_25007 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136025007)).setLabel('mngmtAgentTrap-25007').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_25007.setDescription('Battery Disable Failure')
mngmt_agent_trap_25008 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136025008)).setLabel('mngmtAgentTrap-25008').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_25008.setDescription('Drive Shelf Disable Failure')
mngmt_agent_trap_25009 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136025009)).setLabel('mngmtAgentTrap-25009').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_25009.setDescription('Shutdown Both Restart And Power Off Requested')
mngmt_agent_trap_25010 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136025010)).setLabel('mngmtAgentTrap-25010').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_25010.setDescription('Shutdown Drive Shelf Power Off But No Enclosure Power Off Requested')
mngmt_agent_trap_25011 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136025011)).setLabel('mngmtAgentTrap-25011').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_25011.setDescription('Shutdown Disable Battery But No Enclosure Power Off Requested')
mngmt_agent_trap_25012 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136025012)).setLabel('mngmtAgentTrap-25012').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_25012.setDescription('Shutdown Disable Battery But Shutdown Unconditional Requested')
mngmt_agent_trap_25013 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136025013)).setLabel('mngmtAgentTrap-25013').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_25013.setDescription('Shutdown Delay Out Of Range')
mngmt_agent_trap_25014 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136025014)).setLabel('mngmtAgentTrap-25014').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_25014.setDescription('Invalid Storage Cell name')
mngmt_agent_trap_25015 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136025015)).setLabel('mngmtAgentTrap-25015').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_25015.setDescription('Requested spares goal cannot be satisfied')
mngmt_agent_trap_25016 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136025016)).setLabel('mngmtAgentTrap-25016').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_25016.setDescription('No valid LDAD found')
mngmt_agent_trap_25017 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136025017)).setLabel('mngmtAgentTrap-25017').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_25017.setDescription('Mismatched MLD size')
mngmt_agent_trap_25018 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136025018)).setLabel('mngmtAgentTrap-25018').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_25018.setDescription('Codeload image file error')
mngmt_agent_trap_25019 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136025019)).setLabel('mngmtAgentTrap-25019').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_25019.setDescription('Storage System is not initialized')
mngmt_agent_trap_26002 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136026002)).setLabel('mngmtAgentTrap-26002').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_26002.setDescription('Invalid data replication operation')
mngmt_agent_trap_26005 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136026005)).setLabel('mngmtAgentTrap-26005').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_26005.setDescription('DR group name exceeds maximum length')
mngmt_agent_trap_26006 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136026006)).setLabel('mngmtAgentTrap-26006').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_26006.setDescription('DR group created successfully')
mngmt_agent_trap_26007 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136026007)).setLabel('mngmtAgentTrap-26007').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_26007.setDescription('Data replication invalid mode for DR Group create ')
mngmt_agent_trap_26008 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136026008)).setLabel('mngmtAgentTrap-26008').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_26008.setDescription('A duplicate DR group name exists in the specified source or destination DR group.')
mngmt_agent_trap_26009 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136026009)).setLabel('mngmtAgentTrap-26009').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_26009.setDescription('Data replication invalid operation while DR Groups exist')
mngmt_agent_trap_26010 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136026010)).setLabel('mngmtAgentTrap-26010').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_26010.setDescription('Data replication root folder does not exist')
mngmt_agent_trap_26011 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136026011)).setLabel('mngmtAgentTrap-26011').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_26011.setDescription('DR group discarded')
mngmt_agent_trap_26012 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136026012)).setLabel('mngmtAgentTrap-26012').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_26012.setDescription('Data replication unknown remote storage system')
mngmt_agent_trap_26013 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136026013)).setLabel('mngmtAgentTrap-26013').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_26013.setDescription('Data replication Error. A conflicting Vdisk name exists on the remote storage system.')
mngmt_agent_trap_26014 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136026014)).setLabel('mngmtAgentTrap-26014').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_26014.setDescription('Data Replication Error. Invalid Remote Vdisk Name specified.')
mngmt_agent_trap_26015 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136026015)).setLabel('mngmtAgentTrap-26015').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_26015.setDescription('Data Replication Error. Remote Vdisk size cannot be modified.')
mngmt_agent_trap_26016 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136026016)).setLabel('mngmtAgentTrap-26016').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_26016.setDescription('Data Replication Error. Remote Vdisk should be unpresented to proceed with the discard/detach operation.')
mngmt_agent_trap_26017 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136026017)).setLabel('mngmtAgentTrap-26017').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_26017.setDescription('The element manager has successfully deallocated the log associated with the specified DR Group. If data exists in the log, DR Group members will be marked for a full copy.')
mngmt_agent_trap_26018 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136026018)).setLabel('mngmtAgentTrap-26018').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_26018.setDescription('The Data Replication value(s) specified in creating or modifying the DR group is invalid on this type of DR configuration.')
mngmt_agent_trap_26019 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136026019)).setLabel('mngmtAgentTrap-26019').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_26019.setDescription('No DR Group exist as reported by the controllers.')
mngmt_agent_trap_27001 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027001)).setLabel('mngmtAgentTrap-27001').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_27001.setDescription('The element manager has successfully initialized storage system. Command issued through XML Interface.')
mngmt_agent_trap_27002 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027002)).setLabel('mngmtAgentTrap-27002').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_27002.setDescription('The element manager has successfully created a virtual disk. Command issued through the XML Interface.')
mngmt_agent_trap_27003 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027003)).setLabel('mngmtAgentTrap-27003').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_27003.setDescription('The element manager has successfully created a disk group. Command issued through the XML Interface.')
mngmt_agent_trap_27004 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027004)).setLabel('mngmtAgentTrap-27004').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_27004.setDescription('The element manager has successfully created a DRM group. Command issued through the XML Interface.')
mngmt_agent_trap_27005 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027005)).setLabel('mngmtAgentTrap-27005').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_27005.setDescription('The element manager has successfully created a host. Command issued through the XML Interface.')
mngmt_agent_trap_27006 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027006)).setLabel('mngmtAgentTrap-27006').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_27006.setDescription('The element manager has successfully created a presented unit. Command issued through the XML Interface.')
mngmt_agent_trap_27007 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027007)).setLabel('mngmtAgentTrap-27007').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_27007.setDescription('The element manager has successfully created a virtual disk folder. Command issued through the XML Interface.')
mngmt_agent_trap_27008 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027008)).setLabel('mngmtAgentTrap-27008').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_27008.setDescription('The element manager has successfully created a host folder. Command issued through the XML Interface.')
mngmt_agent_trap_27009 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027009)).setLabel('mngmtAgentTrap-27009').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_27009.setDescription('The element manager has successfully created a disk group folder. Command issued through the XML Interface.')
mngmt_agent_trap_27010 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027010)).setLabel('mngmtAgentTrap-27010').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_27010.setDescription('The element manager has successfully created a DRM group folder. Command issued through the XML Interface.')
mngmt_agent_trap_27011 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027011)).setLabel('mngmtAgentTrap-27011').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_27011.setDescription('The element manager has successfully created a folder. Command issued through the XML Interface.')
mngmt_agent_trap_27012 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027012)).setLabel('mngmtAgentTrap-27012').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_27012.setDescription('The element manager has successfully created a snapshot. Command issued through the XML Interface.')
mngmt_agent_trap_27013 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027013)).setLabel('mngmtAgentTrap-27013').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_27013.setDescription('The element manager has successfully created a snapclone. Command issued through the XML Interface.')
mngmt_agent_trap_27014 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027014)).setLabel('mngmtAgentTrap-27014').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_27014.setDescription('The element manager has successfully uninitialized the storage system. Command issued through the XML Interface.')
mngmt_agent_trap_27015 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027015)).setLabel('mngmtAgentTrap-27015').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_27015.setDescription('The element manager has successfully deleted a virtual disk. Command issued through the XML Interface.')
mngmt_agent_trap_27016 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027016)).setLabel('mngmtAgentTrap-27016').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_27016.setDescription('The element manager has successfully deleted a disk group. Command issued through the XML Interface.')
mngmt_agent_trap_27017 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027017)).setLabel('mngmtAgentTrap-27017').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_27017.setDescription('The element manager has successfully deleted a DRM group. Command issued through the XML Interface.')
mngmt_agent_trap_27018 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027018)).setLabel('mngmtAgentTrap-27018').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_27018.setDescription('The element manager has successfully deleted a host. Command issued through the XML Interface.')
mngmt_agent_trap_27019 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027019)).setLabel('mngmtAgentTrap-27019').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_27019.setDescription('The element manager has successfully deleted a presented unit. Command issued through the XML Interface.')
mngmt_agent_trap_27020 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027020)).setLabel('mngmtAgentTrap-27020').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_27020.setDescription('The element manager has successfully deleted a virtual disk folder. Command issued through the XML Interface.')
mngmt_agent_trap_27021 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027021)).setLabel('mngmtAgentTrap-27021').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_27021.setDescription('The element manager has successfully deleted a host folder. Command issued through the XML Interface.')
mngmt_agent_trap_27022 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027022)).setLabel('mngmtAgentTrap-27022').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_27022.setDescription('The element manager has successfully deleted a disk group folder. Command issued through the XML Interface.')
mngmt_agent_trap_27023 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027023)).setLabel('mngmtAgentTrap-27023').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_27023.setDescription('The element manager has successfully deleted a DRM group folder. Command issued through the XML Interface.')
mngmt_agent_trap_27024 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027024)).setLabel('mngmtAgentTrap-27024').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_27024.setDescription('The element manager has successfully deleted a folder. Command issued through the XML Interface.')
mngmt_agent_trap_27025 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027025)).setLabel('mngmtAgentTrap-27025').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_27025.setDescription('The element manager has successfully deleted a snapshot. Command issued through the XML Interface.')
mngmt_agent_trap_27026 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027026)).setLabel('mngmtAgentTrap-27026').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_27026.setDescription('The element manager has successfully modified the properties of a storage system. Command issued through the XML Interface.')
mngmt_agent_trap_27027 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027027)).setLabel('mngmtAgentTrap-27027').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_27027.setDescription('The element manager has successfully modified the properties of a virtual disk. Command issued through the XML Interface.')
mngmt_agent_trap_27028 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027028)).setLabel('mngmtAgentTrap-27028').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_27028.setDescription('The element manager has successfully modified the properties of a disk group. Command issued through the XML Interface.')
mngmt_agent_trap_27029 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027029)).setLabel('mngmtAgentTrap-27029').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_27029.setDescription('The element manager has successfully modified the properties of a DRM group. Command issued through the XML Interface.')
mngmt_agent_trap_27030 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027030)).setLabel('mngmtAgentTrap-27030').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_27030.setDescription('The element manager has successfully modified the properties of a host. Command issued through the XML Interface.')
mngmt_agent_trap_27031 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027031)).setLabel('mngmtAgentTrap-27031').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_27031.setDescription('The element manager has successfully modified the properties of a presented unit. Command issued through the XML Interface.')
mngmt_agent_trap_27032 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027032)).setLabel('mngmtAgentTrap-27032').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_27032.setDescription('The element manager has successfully modified the properties of a virtual disk folder. Command issued through the XML Interface.')
mngmt_agent_trap_27033 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027033)).setLabel('mngmtAgentTrap-27033').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_27033.setDescription('The element manager has successfully modified the properties of a host folder. Command issued through the XML Interface.')
mngmt_agent_trap_27034 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027034)).setLabel('mngmtAgentTrap-27034').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_27034.setDescription('The element manager has successfully modified the properties of a hardware root folder. Command issued through the XML Interface.')
mngmt_agent_trap_27035 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027035)).setLabel('mngmtAgentTrap-27035').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_27035.setDescription('The element manager has successfully modified the properties of a disk group folder. Command issued through the XML Interface.')
mngmt_agent_trap_27036 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027036)).setLabel('mngmtAgentTrap-27036').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_27036.setDescription('The element manager has successfully modified the properties of a DRM group folder. Command issued through the XML Interface.')
mngmt_agent_trap_27037 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027037)).setLabel('mngmtAgentTrap-27037').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_27037.setDescription('The element manager has successfully modified the properties of a DRM group root folder. Command issued through the XML Interface.')
mngmt_agent_trap_27038 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027038)).setLabel('mngmtAgentTrap-27038').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_27038.setDescription('The element manager has successfully modified the properties of a folder. Command issued through the XML Interface.')
mngmt_agent_trap_27039 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027039)).setLabel('mngmtAgentTrap-27039').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_27039.setDescription('The element manager has successfully modified the properties of a snapshot. Command issued through the XML Interface.')
mngmt_agent_trap_27040 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027040)).setLabel('mngmtAgentTrap-27040').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_27040.setDescription('The element manager has successfully modified the properties of a disk. Command issued through the XML Interface.')
mngmt_agent_trap_27041 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027041)).setLabel('mngmtAgentTrap-27041').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_27041.setDescription('The element manager has successfully modified the properties of a disk shelf. Command issued through the XML Interface.')
mngmt_agent_trap_27042 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027042)).setLabel('mngmtAgentTrap-27042').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_27042.setDescription('The element manager has successfully modified the properties of a controller. Command issued through the XML Interface.')
mngmt_agent_trap_27043 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027043)).setLabel('mngmtAgentTrap-27043').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_27043.setDescription('The element manager has successfully modified the properties of a controller shelf. Command issued through the XML Interface.')
mngmt_agent_trap_27044 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027044)).setLabel('mngmtAgentTrap-27044').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_27044.setDescription('The element manager has successfully modified the properties of a cabinet. Command issued through the XML Interface.')
mngmt_agent_trap_27045 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027045)).setLabel('mngmtAgentTrap-27045').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_27045.setDescription('The element manager has successfully reserved an object. Command issued through the XML Interface.')
mngmt_agent_trap_27046 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027046)).setLabel('mngmtAgentTrap-27046').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_27046.setDescription('The element manager has successfully released an object. Command issued through the XML Interface.')
mngmt_agent_trap_27047 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027047)).setLabel('mngmtAgentTrap-27047').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_27047.setDescription('XML cache mutex timeout.')
mngmt_agent_trap_27048 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027048)).setLabel('mngmtAgentTrap-27048').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_27048.setDescription('XML cache memory allocation error.')
mngmt_agent_trap_27049 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027049)).setLabel('mngmtAgentTrap-27049').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_27049.setDescription('XML subsystem unknown error.')
mngmt_agent_trap_27050 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027050)).setLabel('mngmtAgentTrap-27050').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_27050.setDescription('The element manager has successfully created a virtual disk container. Command issued through the XML Interface.')
mngmt_agent_trap_27051 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027051)).setLabel('mngmtAgentTrap-27051').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_27051.setDescription('The element manager has successfully modified a virtual disk container. Command issued through the XML Interface.')
mngmt_agent_trap_27052 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027052)).setLabel('mngmtAgentTrap-27052').setObjects(('CPQHSV-MIB', 'hostName'), ('CPQHSV-MIB', 'scellNameDateTime'), ('CPQHSV-MIB', 'agentEventCode'), ('CPQHSV-MIB', 'agentEventDescription'))
if mibBuilder.loadTexts:
mngmtAgentTrap_27052.setDescription('The element manager has successfully deleted a virtual disk container. Command issued through the XML Interface.')
mibBuilder.exportSymbols('CPQHSV-MIB', mngmtAgentTrap_36=mngmtAgentTrap_36, mngmtAgentTrap_15007=mngmtAgentTrap_15007, sCellEventTrap_09_73=sCellEventTrap_09_73, sCellEventTrap_0c_20=sCellEventTrap_0c_20, mngmtAgentTrap_16019=mngmtAgentTrap_16019, mngmtAgentTrap_3021=mngmtAgentTrap_3021, mngmtAgentTrap_4051=mngmtAgentTrap_4051, mngmtAgentTrap_8065=mngmtAgentTrap_8065, mngmtAgentTrap_31=mngmtAgentTrap_31, mngmtAgentTrap_8080=mngmtAgentTrap_8080, mngmtAgentTrap_27025=mngmtAgentTrap_27025, mngmtAgentTrap_6015=mngmtAgentTrap_6015, mngmtAgentTrap_9002=mngmtAgentTrap_9002, mngmtAgentTrap_2003=mngmtAgentTrap_2003, mngmtAgentTrap_18065=mngmtAgentTrap_18065, mngmtAgentTrap_21006=mngmtAgentTrap_21006, sCellEventTrap_03_03=sCellEventTrap_03_03, hostName=hostName, mngmtAgentTrap_2062=mngmtAgentTrap_2062, mngmtAgentTrap_8057=mngmtAgentTrap_8057, sCellEventTrap_06_2b=sCellEventTrap_06_2b, srvOSMinVersion=srvOSMinVersion, sCellEventTrap_04_07=sCellEventTrap_04_07, sCellEventTrap_0b_03=sCellEventTrap_0b_03, sCellEventTrap_04_03=sCellEventTrap_04_03, mngmtAgentTrap_48=mngmtAgentTrap_48, mngmtAgentTrap_14009=mngmtAgentTrap_14009, mngmtAgentTrap_21015=mngmtAgentTrap_21015, mngmtAgentTrap_9014=mngmtAgentTrap_9014, mngmtAgentTrap_8025=mngmtAgentTrap_8025, mngmtAgentTrap_134=mngmtAgentTrap_134, mngmtAgentTrap_2061=mngmtAgentTrap_2061, mngmtAgentTrap_2077=mngmtAgentTrap_2077, mngmtAgentTrap_2025=mngmtAgentTrap_2025, mngmtAgentTrap_20002=mngmtAgentTrap_20002, mngmtAgentTrap_8012=mngmtAgentTrap_8012, sCellEventTrap_06_1e=sCellEventTrap_06_1e, mngmtAgentTrap_123=mngmtAgentTrap_123, mngmtAgentTrap_2083=mngmtAgentTrap_2083, mngmtAgentTrap_10004=mngmtAgentTrap_10004, mngmtAgentTrap_27039=mngmtAgentTrap_27039, mngmtAgentTrap_8068=mngmtAgentTrap_8068, sCellEventTrap_09_25=sCellEventTrap_09_25, mngmtAgentTrap_8062=mngmtAgentTrap_8062, mngmtAgentTrap_38=mngmtAgentTrap_38, mngmtAgentTrap_80=mngmtAgentTrap_80, sCellEventTrap_83_06=sCellEventTrap_83_06, sCellEventTrap_06_14=sCellEventTrap_06_14, mngmtAgentTrap_8044=mngmtAgentTrap_8044, sCellEventTrap_09_d8=sCellEventTrap_09_d8, sCellEventTrap_09_44=sCellEventTrap_09_44, mngmtAgentTrap_124=mngmtAgentTrap_124, scellUUID=scellUUID, mngmtAgentTrap_2100=mngmtAgentTrap_2100, mngmtAgentTrap_8004=mngmtAgentTrap_8004, agentEventDescription=agentEventDescription, mngmtAgentTrap_4027=mngmtAgentTrap_4027, agentEventCode=agentEventCode, sCellEventTrap_06_0c=sCellEventTrap_06_0c, mngmtAgentTrap_3076=mngmtAgentTrap_3076, srvSubModel=srvSubModel, mngmtAgentTrap_75=mngmtAgentTrap_75, scellSWComponent=scellSWComponent, mngmtAgentTrap_13003=mngmtAgentTrap_13003, mngmtAgentTrap_14008=mngmtAgentTrap_14008, mngmtAgentTrap_20013=mngmtAgentTrap_20013, sCellEventTrap_09_13=sCellEventTrap_09_13, mngmtAgentTrap_30=mngmtAgentTrap_30, mngmtAgentTrap_1007=mngmtAgentTrap_1007, mngmtAgentTrap_13020=mngmtAgentTrap_13020, agDescription=agDescription, mngmtAgentTrap_18036=mngmtAgentTrap_18036, sCellEventTrap_06_34=sCellEventTrap_06_34, sCellEventTrap_03_06=sCellEventTrap_03_06, agManufacturer=agManufacturer, mngmtAgentTrap_65=mngmtAgentTrap_65, mngmtAgentTrap_8018=mngmtAgentTrap_8018, mngmtAgentTrap_21008=mngmtAgentTrap_21008, mngmtAgentTrap_8041=mngmtAgentTrap_8041, mngmtAgentTrap_26011=mngmtAgentTrap_26011, mngmtAgentTrap_57=mngmtAgentTrap_57, mngmtAgentTrap_3071=mngmtAgentTrap_3071, mngmtAgentTrap_12=mngmtAgentTrap_12, mngmtAgentTrap_56=mngmtAgentTrap_56, sCellEventTrap_09_1f=sCellEventTrap_09_1f, mngmtAgentTrap_3066=mngmtAgentTrap_3066, mngmtAgentTrap_34=mngmtAgentTrap_34, mngmtAgentTrap_37=mngmtAgentTrap_37, mngmtAgentTrap_4018=mngmtAgentTrap_4018, mngmtAgentTrap_4017=mngmtAgentTrap_4017, mngmtAgentTrap_7=mngmtAgentTrap_7, mngmtAgentTrap_20016=mngmtAgentTrap_20016, mngmtAgentTrap_27046=mngmtAgentTrap_27046, mngmtAgentTrap_1000=mngmtAgentTrap_1000, scellEventDescription=scellEventDescription, sCellEventTrap_09_c9=sCellEventTrap_09_c9, sCellEventTrap_0d_d9=sCellEventTrap_0d_d9, mngmtAgentTrap_2=mngmtAgentTrap_2, mngmtAgentTrap_8021=mngmtAgentTrap_8021, mngmtAgentTrap_25013=mngmtAgentTrap_25013, mngmtAgentTrap_40=mngmtAgentTrap_40, mngmtAgentTrap_2084=mngmtAgentTrap_2084, mngmtAgentTrap_27028=mngmtAgentTrap_27028, mngmtAgentTrap_13009=mngmtAgentTrap_13009, mngmtAgentTrap_3061=mngmtAgentTrap_3061, mngmtAgentTrap_15008=mngmtAgentTrap_15008, nsc=nsc, nscEntry=nscEntry, mngmtAgentTrap_13007=mngmtAgentTrap_13007, mngmtAgentTrap_26002=mngmtAgentTrap_26002, sCellEventTrap_04_04=sCellEventTrap_04_04, mngmtAgentTrap_21017=mngmtAgentTrap_21017, sCellEventTrap_09_db=sCellEventTrap_09_db, mngmtAgentTrap_2065=mngmtAgentTrap_2065, sCellEventTrap_0c_22=sCellEventTrap_0c_22, sCellEventTrap_09_28=sCellEventTrap_09_28, mngmtAgentTrap_180=mngmtAgentTrap_180, sCellEventTrap_06_21=sCellEventTrap_06_21, mngmtAgentTrap_6018=mngmtAgentTrap_6018, sCellEventTrap_09_32=sCellEventTrap_09_32, sCellEventTrap_04_0b=sCellEventTrap_04_0b, sCellEventTrap_09_45=sCellEventTrap_09_45, mngmtAgentTrap_26009=mngmtAgentTrap_26009, agentEntry=agentEntry, mngmtAgentTrap_15=mngmtAgentTrap_15, mngmtAgentTrap_181=mngmtAgentTrap_181, mngmtAgentTrap_10029=mngmtAgentTrap_10029, srvModel=srvModel, sCellEventTrap_09_20=sCellEventTrap_09_20, sCellEventTrap_09_d4=sCellEventTrap_09_d4, mngmtAgentTrap_3012=mngmtAgentTrap_3012, mngmtAgentTrap_97=mngmtAgentTrap_97, mngmtAgentTrap_10010=mngmtAgentTrap_10010, mngmtAgentTrap_201=mngmtAgentTrap_201, mngmtAgentTrap_18025=mngmtAgentTrap_18025, sCellEventTrap_83_03=sCellEventTrap_83_03, sCellEventTrap_09_06=sCellEventTrap_09_06, mngmtAgentTrap_5007=mngmtAgentTrap_5007, sCellEventTrap_09_d7=sCellEventTrap_09_d7, sCellEventTrap_0d_82=sCellEventTrap_0d_82, mngmtAgentTrap_9037=mngmtAgentTrap_9037, mngmtAgentTrap_1005=mngmtAgentTrap_1005, mngmtAgentTrap_10036=mngmtAgentTrap_10036, sCellEventTrap_0d_7e=sCellEventTrap_0d_7e, mngmtAgentTrap_70=mngmtAgentTrap_70, mngmtAgentTrap_5018=mngmtAgentTrap_5018, scellStatusTable=scellStatusTable, sCellEventTrap_42_05=sCellEventTrap_42_05, mngmtAgentTrap_8047=mngmtAgentTrap_8047, mngmtAgentTrap_3022=mngmtAgentTrap_3022, mngmtAgentTrap_12008=mngmtAgentTrap_12008, mngmtAgentTrap_20004=mngmtAgentTrap_20004, mngmtAgentTrap_25014=mngmtAgentTrap_25014, mngmtAgentTrap_17013=mngmtAgentTrap_17013, mngmtAgentTrap_16038=mngmtAgentTrap_16038, cpqHSVServer=cpqHSVServer, mngmtAgentTrap_25011=mngmtAgentTrap_25011, sCellEventTrap_0d_b5=sCellEventTrap_0d_b5, mngmtAgentTrap_2050=mngmtAgentTrap_2050, mngmtAgentTrap_141=mngmtAgentTrap_141, sCellEventTrap_0c_1c=sCellEventTrap_0c_1c, mngmtAgentTrap_8030=mngmtAgentTrap_8030, sCellEventTrap_0d_85=sCellEventTrap_0d_85, mngmtAgentTrap_197=mngmtAgentTrap_197, mngmtAgentTrap_8082=mngmtAgentTrap_8082, mngmtAgentTrap_3067=mngmtAgentTrap_3067, sCellEventTrap_03_00=sCellEventTrap_03_00, hsvObject=hsvObject, sCellEventTrap_06_43=sCellEventTrap_06_43, mngmtAgentTrap_4024=mngmtAgentTrap_4024, srvBiosVersion=srvBiosVersion, sCellEventTrap_42_01=sCellEventTrap_42_01, mngmtAgentTrap_195=mngmtAgentTrap_195, mngmtAgentTrap_3038=mngmtAgentTrap_3038, mngmtAgentTrap_94=mngmtAgentTrap_94, mngmtAgentTrap_3078=mngmtAgentTrap_3078, mngmtAgentTrap_88=mngmtAgentTrap_88, mngmtAgentTrap_13018=mngmtAgentTrap_13018, mngmtAgentTrap_25009=mngmtAgentTrap_25009, mngmtAgentTrap_27013=mngmtAgentTrap_27013, mngmtAgentTrap_4053=mngmtAgentTrap_4053, mngmtAgentTrap_10026=mngmtAgentTrap_10026, agMajVersion=agMajVersion, mngmtAgentTrap_9010=mngmtAgentTrap_9010, sCellEventTrap_09_15=sCellEventTrap_09_15, srvCPU=srvCPU, mngmtAgentTrap_182=mngmtAgentTrap_182, mngmtAgentTrap_2038=mngmtAgentTrap_2038, mngmtAgentTrap_2026=mngmtAgentTrap_2026, mngmtAgentTrap_16018=mngmtAgentTrap_16018, mngmtAgentTrap_26008=mngmtAgentTrap_26008, mngmtAgentTrap_3039=mngmtAgentTrap_3039, sCellEventTrap_0c_10=sCellEventTrap_0c_10, mngmtAgentTrap_8009=mngmtAgentTrap_8009, mngmtAgentTrap_9016=mngmtAgentTrap_9016, mngmtAgentTrap_11003=mngmtAgentTrap_11003, mngmtAgentTrap_17014=mngmtAgentTrap_17014, sCellEventTrap_0c_07=sCellEventTrap_0c_07, mngmtAgentTrap_2058=mngmtAgentTrap_2058, mngmtAgentTrap_8006=mngmtAgentTrap_8006, mngmtAgentTrap_19=mngmtAgentTrap_19, mngmtAgentTrap_101=mngmtAgentTrap_101, sCellEventTrap_09_cf=sCellEventTrap_09_cf, mngmtAgentTrap_128=mngmtAgentTrap_128, mngmtAgentTrap_4052=mngmtAgentTrap_4052, sCellEventTrap_06_0f=sCellEventTrap_06_0f, mngmtAgentTrap_6001=mngmtAgentTrap_6001, mngmtAgentTrap_17002=mngmtAgentTrap_17002, nscName=nscName, mngmtAgentTrap_12002=mngmtAgentTrap_12002, sCellEventTrap_09_21=sCellEventTrap_09_21, mngmtAgentTrap_1003=mngmtAgentTrap_1003, mngmtAgentTrap_110=mngmtAgentTrap_110, mngmtAgentTrap_3068=mngmtAgentTrap_3068, mngmtAgentTrap_26=mngmtAgentTrap_26, mngmtAgentTrap_90=mngmtAgentTrap_90, mngmtAgentTrap_27041=mngmtAgentTrap_27041, mngmtAgentTrap_21016=mngmtAgentTrap_21016, sCellEventTrap_09_68=sCellEventTrap_09_68, sCellEventTrap_06_2a=sCellEventTrap_06_2a, mngmtAgentTrap_17005=mngmtAgentTrap_17005, mngmtAgentTrap_45=mngmtAgentTrap_45, mngmtAgentTrap_2081=mngmtAgentTrap_2081, mngmtAgentTrap_6036=mngmtAgentTrap_6036, mngmtAgentTrap_3081=mngmtAgentTrap_3081, sCellEventTrap_09_74=sCellEventTrap_09_74, mngmtAgentTrap_9042=mngmtAgentTrap_9042, mngmtAgentTrap_26005=mngmtAgentTrap_26005, mngmtAgentTrap_51=mngmtAgentTrap_51, mngmtAgentTrap_8046=mngmtAgentTrap_8046, mngmtAgentTrap_26013=mngmtAgentTrap_26013, sCellEventTrap_0d_35=sCellEventTrap_0d_35, sCellEventTrap_06_41=sCellEventTrap_06_41, mngmtAgentTrap_2023=mngmtAgentTrap_2023, emuEventTrapInformative=emuEventTrapInformative, sCellEventTrap_09_0c=sCellEventTrap_09_0c, sCellEventTrap_09_29=sCellEventTrap_09_29, sCellEventTrap_07_03=sCellEventTrap_07_03, sCellEventTrap_03_07=sCellEventTrap_03_07, sCellEventTrap_09_70=sCellEventTrap_09_70, mngmtAgentTrap_3016=mngmtAgentTrap_3016, sCellEventTrap_09_18=sCellEventTrap_09_18, mngmtAgentTrap_10011=mngmtAgentTrap_10011, mngmtAgentTrap_15006=mngmtAgentTrap_15006, mngmtAgentTrap_16015=mngmtAgentTrap_16015, mngmtAgentTrap_27002=mngmtAgentTrap_27002, mngmtAgentTrap_27024=mngmtAgentTrap_27024, mngmtAgentTrap_14004=mngmtAgentTrap_14004, mngmtAgentTrap_8038=mngmtAgentTrap_8038, sCellEventTrap_06_3e=sCellEventTrap_06_3e, sCellEventTrap_0c_1b=sCellEventTrap_0c_1b, sCellEventTrap_09_07=sCellEventTrap_09_07, mngmtAgentTrap_2075=mngmtAgentTrap_2075, mngmtAgentTrap_10030=mngmtAgentTrap_10030)
mibBuilder.exportSymbols('CPQHSV-MIB', mngmtAgentTrap_18028=mngmtAgentTrap_18028, mngmtAgentTrap_10028=mngmtAgentTrap_10028, mngmtAgentTrap_5003=mngmtAgentTrap_5003, sCellEventTrap_06_23=sCellEventTrap_06_23, mngmtAgentTrap_200=mngmtAgentTrap_200, mngmtAgentTrap_8093=mngmtAgentTrap_8093, mngmtAgentTrap_9026=mngmtAgentTrap_9026, mngmtAgentTrap_10037=mngmtAgentTrap_10037, mngmtAgentTrap_26006=mngmtAgentTrap_26006, mngmtAgentTrap_10040=mngmtAgentTrap_10040, mngmtAgentTrap_21007=mngmtAgentTrap_21007, mngmtAgentTrap_39=mngmtAgentTrap_39, mngmtAgentTrap_8027=mngmtAgentTrap_8027, mngmtAgentTrap_16025=mngmtAgentTrap_16025, mngmtAgentTrap_25008=mngmtAgentTrap_25008, scellEventCode=scellEventCode, mngmtAgentTrap_81=mngmtAgentTrap_81, mngmtAgentTrap_24=mngmtAgentTrap_24, mngmtAgentTrap_11004=mngmtAgentTrap_11004, mngmtAgentTrap_13004=mngmtAgentTrap_13004, sCellEventTrap_04_10=sCellEventTrap_04_10, mngmtAgentTrap_16004=mngmtAgentTrap_16004, mngmtAgentTrap_8059=mngmtAgentTrap_8059, mngmtAgentTrap_3049=mngmtAgentTrap_3049, mngmtAgentTrap_18006=mngmtAgentTrap_18006, mngmtAgentTrap_23003=mngmtAgentTrap_23003, mngmtAgentTrap_8023=mngmtAgentTrap_8023, mngmtAgentTrap_74=mngmtAgentTrap_74, mngmtAgentTrap_105=mngmtAgentTrap_105, sCellEventTrap_09_67=sCellEventTrap_09_67, mngmtAgentTrap_8011=mngmtAgentTrap_8011, mngmtAgentTrap_16037=mngmtAgentTrap_16037, sCellEventTrap_09_04=sCellEventTrap_09_04, shelfEntry=shelfEntry, mngmtAgentTrap_25002=mngmtAgentTrap_25002, sCellEventTrap_04_12=sCellEventTrap_04_12, sCellEventTrap_09_01=sCellEventTrap_09_01, sCellEventTrap_09_03=sCellEventTrap_09_03, mngmtAgentTrap_18059=mngmtAgentTrap_18059, mngmtAgentTrap_6034=mngmtAgentTrap_6034, sCellEventTrap_0d_33=sCellEventTrap_0d_33, mngmtAgentTrap_18007=mngmtAgentTrap_18007, sCellEventTrap_03_0a=sCellEventTrap_03_0a, emuEventTrapUnrecoverable=emuEventTrapUnrecoverable, mngmtAgentTrap_16010=mngmtAgentTrap_16010, mngmtAgentTrap_3045=mngmtAgentTrap_3045, mngmtAgentTrap_5013=mngmtAgentTrap_5013, mngmtAgentTrap_2079=mngmtAgentTrap_2079, mngmtAgentTrap_3029=mngmtAgentTrap_3029, mngmtAgentTrap_4037=mngmtAgentTrap_4037, mngmtAgentTrap_27005=mngmtAgentTrap_27005, mngmtAgentTrap_10=mngmtAgentTrap_10, mngmtAgentTrap_6025=mngmtAgentTrap_6025, mngmtAgentTrap_9017=mngmtAgentTrap_9017, mngmtAgentTrap_16040=mngmtAgentTrap_16040, mngmtAgentTrap_32=mngmtAgentTrap_32, mngmtAgentTrap_133=mngmtAgentTrap_133, sCellEventTrap_06_07=sCellEventTrap_06_07, mngmtAgentTrap_8061=mngmtAgentTrap_8061, emuEventTrapNoncritical=emuEventTrapNoncritical, sCellEventTrap_09_66=sCellEventTrap_09_66, mngmtAgentTrap_12005=mngmtAgentTrap_12005, sCellEventTrap_83_01=sCellEventTrap_83_01, sCellEventTrap_04_0d=sCellEventTrap_04_0d, mngmtAgentTrap_2080=mngmtAgentTrap_2080, mngmtAgentTrap_8083=mngmtAgentTrap_8083, mngmtAgentTrap_18080=mngmtAgentTrap_18080, mngmtAgentTrap_27049=mngmtAgentTrap_27049, mngmtAgentTrap_2047=mngmtAgentTrap_2047, mngmtAgentTrap_3028=mngmtAgentTrap_3028, mngmtAgentTrap_16001=mngmtAgentTrap_16001, mngmtAgentTrap_9022=mngmtAgentTrap_9022, mngmtAgentTrap_16032=mngmtAgentTrap_16032, mngmtAgentTrap_8013=mngmtAgentTrap_8013, mngmtAgentTrap_10022=mngmtAgentTrap_10022, shelfTotal=shelfTotal, sCellEventTrap_09_09=sCellEventTrap_09_09, mngmtAgentTrap_18005=mngmtAgentTrap_18005, mngmtAgentTrap_132=mngmtAgentTrap_132, sCellEventTrap_0b_01=sCellEventTrap_0b_01, mngmtAgentTrap_27016=mngmtAgentTrap_27016, mngmtAgentTrap_2088=mngmtAgentTrap_2088, sCellEventTrap_09_0a=sCellEventTrap_09_0a, mngmtAgentTrap_2073=mngmtAgentTrap_2073, mngmtAgentTrap_27003=mngmtAgentTrap_27003, mngmtAgentTrap_4012=mngmtAgentTrap_4012, mngmtAgentTrap_20015=mngmtAgentTrap_20015, sCellEventTrap_09_d2=sCellEventTrap_09_d2, sCellEventTrap_0d_04=sCellEventTrap_0d_04, mngmtAgentTrap_2052=mngmtAgentTrap_2052, mngmtAgentTrap_16039=mngmtAgentTrap_16039, mngmtAgentTrap_6019=mngmtAgentTrap_6019, mngmtAgentTrap_18024=mngmtAgentTrap_18024, mngmtAgentTrap_8039=mngmtAgentTrap_8039, mngmtAgentTrap_3084=mngmtAgentTrap_3084, sCellEventTrap_09_27=sCellEventTrap_09_27, mngmtAgentTrap_4005=mngmtAgentTrap_4005, mngmtAgentTrap_3050=mngmtAgentTrap_3050, mngmtAgentTrap_1002=mngmtAgentTrap_1002, sCellEventTrap_09_6a=sCellEventTrap_09_6a, sCellEventTrap_06_1b=sCellEventTrap_06_1b, sCellEventTrap_09_11=sCellEventTrap_09_11, mngmtAgentTrap_27038=mngmtAgentTrap_27038, mngmtAgentTrap_126=mngmtAgentTrap_126, sCellEventTrap_09_34=sCellEventTrap_09_34, scellTotal=scellTotal, sCellEventTrap_0d_72=sCellEventTrap_0d_72, mngmtAgentTrap_15004=mngmtAgentTrap_15004, agentEventLevel=agentEventLevel, mngmtAgentTrap_130=mngmtAgentTrap_130, mngmtAgentTrap_55=mngmtAgentTrap_55, srvOSMajVersion=srvOSMajVersion, sCellEventTrap_07_07=sCellEventTrap_07_07, sCellEventTrap_09_76=sCellEventTrap_09_76, mngmtAgentTrap_107=mngmtAgentTrap_107, mngmtAgentTrap_3053=mngmtAgentTrap_3053, mngmtAgentTrap_20020=mngmtAgentTrap_20020, sCellEventTrap_09_c8=sCellEventTrap_09_c8, mngmtAgentTrap_3080=mngmtAgentTrap_3080, sCellEventTrap_09_37=sCellEventTrap_09_37, mngmtAgentTrap_2066=mngmtAgentTrap_2066, sCellEventTrap_04_00=sCellEventTrap_04_00, mngmtAgentTrap_2033=mngmtAgentTrap_2033, sCellEventTrap_09_1d=sCellEventTrap_09_1d, sCellEventTrap_09_6c=sCellEventTrap_09_6c, mngmtAgentTrap_119=mngmtAgentTrap_119, mngmtAgentTrap_17004=mngmtAgentTrap_17004, mngmtAgentTrap_21002=mngmtAgentTrap_21002, mngmtAgentTrap_10012=mngmtAgentTrap_10012, mngmtAgentTrap_2007=mngmtAgentTrap_2007, sCellEventTrap_03_01=sCellEventTrap_03_01, mngmtAgentTrap_16016=mngmtAgentTrap_16016, mngmtAgentTrap_27020=mngmtAgentTrap_27020, mngmtAgentTrap_27050=mngmtAgentTrap_27050, sCellEventTrap_09_26=sCellEventTrap_09_26, mngmtAgentTrap_18001=mngmtAgentTrap_18001, mngmtAgentTrap_3004=mngmtAgentTrap_3004, mngmtAgentTrap_9020=mngmtAgentTrap_9020, agMinVersion=agMinVersion, mngmtAgentTrap_41=mngmtAgentTrap_41, mngmtAgentTrap_3047=mngmtAgentTrap_3047, mngmtAgentTrap_3094=mngmtAgentTrap_3094, mngmtAgentTrap_10001=mngmtAgentTrap_10001, mngmtAgentTrap_6007=mngmtAgentTrap_6007, mngmtAgentTrap_6003=mngmtAgentTrap_6003, mngmtAgentTrap_18071=mngmtAgentTrap_18071, mngmtAgentTrap_8017=mngmtAgentTrap_8017, mngmtAgentTrap_8089=mngmtAgentTrap_8089, mngmtAgentTrap_49=mngmtAgentTrap_49, mngmtAgentTrap_142=mngmtAgentTrap_142, agStatusTable=agStatusTable, mngmtAgentTrap_27014=mngmtAgentTrap_27014, mngmtAgentTrap_27027=mngmtAgentTrap_27027, mngmtAgentTrap_2096=mngmtAgentTrap_2096, sCellEventTrap_09_7b=sCellEventTrap_09_7b, mngmtAgentTrap_3024=mngmtAgentTrap_3024, mngmtAgentTrap_15002=mngmtAgentTrap_15002, sCellEventTrap_06_28=sCellEventTrap_06_28, scellName=scellName, mngmtAgentTrap_27040=mngmtAgentTrap_27040, mngmtAgentTrap_25005=mngmtAgentTrap_25005, sCellEventTrap_06_39=sCellEventTrap_06_39, mngmtAgentTrap_16029=mngmtAgentTrap_16029, mngmtAgentTrap_8084=mngmtAgentTrap_8084, sCellEventTrap_09_7a=sCellEventTrap_09_7a, sCellEventTrap_09_ca=sCellEventTrap_09_ca, mngmtAgentTrap_10041=mngmtAgentTrap_10041, agEnterprise=agEnterprise, mngmtAgentTrap_122=mngmtAgentTrap_122, mngmtAgentTrap_4035=mngmtAgentTrap_4035, sCellEventTrap_06_3d=sCellEventTrap_06_3d, mngmtAgentTrap_24002=mngmtAgentTrap_24002, mngmtAgentTrap_8086=mngmtAgentTrap_8086, mngmtAgentTrap_14017=mngmtAgentTrap_14017, sCellEventTrap_07_02=sCellEventTrap_07_02, mngmtAgentTrap_2098=mngmtAgentTrap_2098, mngmtAgentTrap_6038=mngmtAgentTrap_6038, mngmtAgentTrap_27021=mngmtAgentTrap_27021, mngmtAgentTrap_14003=mngmtAgentTrap_14003, sCellEventTrap_09_08=sCellEventTrap_09_08, mngmtAgentTrap_6004=mngmtAgentTrap_6004, mngmtAgentTrap_18081=mngmtAgentTrap_18081, mngmtAgentTrap_6011=mngmtAgentTrap_6011, mngmtAgentTrap_25004=mngmtAgentTrap_25004, mngmtAgentTrap_9009=mngmtAgentTrap_9009, mngmtAgentTrap_10023=mngmtAgentTrap_10023, mngmtAgentTrap_10031=mngmtAgentTrap_10031, mngmtAgentTrap_26018=mngmtAgentTrap_26018, mngmtAgentTrap_8032=mngmtAgentTrap_8032, sCellEventTrap_09_1b=sCellEventTrap_09_1b, sCellEventTrap_09_da=sCellEventTrap_09_da, mngmtAgentTrap_17001=mngmtAgentTrap_17001, mngmtAgentTrap_27042=mngmtAgentTrap_27042, mngmtAgentTrap_2082=mngmtAgentTrap_2082, mngmtAgentTrap_6027=mngmtAgentTrap_6027, mngmtAgentTrap_33=mngmtAgentTrap_33, shelfErrorCode=shelfErrorCode, mngmtAgentTrap_4041=mngmtAgentTrap_4041, hostUUID=hostUUID, mngmtAgentTrap_8042=mngmtAgentTrap_8042, mngmtAgentTrap_14006=mngmtAgentTrap_14006, sCellEventTrap_0d_ec=sCellEventTrap_0d_ec, sCellEventTrap_06_3a=sCellEventTrap_06_3a, mngmtAgentTrap_9032=mngmtAgentTrap_9032, mngmtAgentTrap_8020=mngmtAgentTrap_8020, mngmtAgentTrap_13002=mngmtAgentTrap_13002, mngmtAgentTrap_25017=mngmtAgentTrap_25017, mngmtAgentTrap_6033=mngmtAgentTrap_6033, mngmtAgentTrap_27011=mngmtAgentTrap_27011, mngmtAgentTrap_24004=mngmtAgentTrap_24004, mngmtAgentTrap_25016=mngmtAgentTrap_25016, mngmtAgentTrap_14013=mngmtAgentTrap_14013, sCellEventTrap_0d_01=sCellEventTrap_0d_01, mngmtAgentTrap_93=mngmtAgentTrap_93, sCellEventTrap_09_6b=sCellEventTrap_09_6b, mngmtAgentTrap_10038=mngmtAgentTrap_10038, sCellEventTrap_03_08=sCellEventTrap_03_08, sCellEventTrap_0c_21=sCellEventTrap_0c_21, mngmtAgentTrap_61=mngmtAgentTrap_61, hostEntryIndex=hostEntryIndex, mngmtAgentTrap_2092=mngmtAgentTrap_2092, sCellEventTrap_04_01=sCellEventTrap_04_01, nscStatus=nscStatus, mngmtAgentTrap_2002=mngmtAgentTrap_2002, mngmtAgentTrap_3036=mngmtAgentTrap_3036, mngmtAgentTrap_8094=mngmtAgentTrap_8094, mngmtAgentTrap_21=mngmtAgentTrap_21, host=host, sCellEventTrap_09_2f=sCellEventTrap_09_2f, sCellEventTrap_07_0b=sCellEventTrap_07_0b, agent=agent, sCellEventTrap_09_48=sCellEventTrap_09_48, mngmtAgentTrap_3009=mngmtAgentTrap_3009, sCellEventTrap_09_d6=sCellEventTrap_09_d6, mngmtAgentTrap_8074=mngmtAgentTrap_8074, mngmtAgentTrap_183=mngmtAgentTrap_183, mngmtAgentTrap_9011=mngmtAgentTrap_9011, mngmtAgentTrap_111=mngmtAgentTrap_111, maHSVMibRevMinor=maHSVMibRevMinor, mngmtAgentTrap_106=mngmtAgentTrap_106, mngmtAgentTrap_52=mngmtAgentTrap_52, mngmtAgentTrap_8069=mngmtAgentTrap_8069, sCellEventTrap_06_3c=sCellEventTrap_06_3c, sCellEventTrap_06_19=sCellEventTrap_06_19, mngmtAgentTrap_9034=mngmtAgentTrap_9034, mngmtAgentTrap_8060=mngmtAgentTrap_8060, mngmtAgentTrap_16013=mngmtAgentTrap_16013, mngmtAgentTrap_24003=mngmtAgentTrap_24003, sCellEventTrap_06_13=sCellEventTrap_06_13, mngmtAgentTrap_1010=mngmtAgentTrap_1010, mngmtAgentTrap_84=mngmtAgentTrap_84, mngmtAgentTrap_27023=mngmtAgentTrap_27023, mngmtAgentTrap_28=mngmtAgentTrap_28, mngmtAgentTrap_2103=mngmtAgentTrap_2103)
mibBuilder.exportSymbols('CPQHSV-MIB', mngmtAgentTrap_14002=mngmtAgentTrap_14002, mngmtAgentTrap_16027=mngmtAgentTrap_16027, mngmtAgentTrap_3017=mngmtAgentTrap_3017, mngmtAgentTrap_6006=mngmtAgentTrap_6006, mngmtAgentTrap_2048=mngmtAgentTrap_2048, mngmtAgentTrap_17=mngmtAgentTrap_17, mngmtAgentTrap_25019=mngmtAgentTrap_25019, mngmtAgentTrap_3001=mngmtAgentTrap_3001, nscEntryIndex=nscEntryIndex, mngmtAgentTrap_21012=mngmtAgentTrap_21012, mngmtAgentTrap_2011=mngmtAgentTrap_2011, sCellEventTrap_04_13=sCellEventTrap_04_13, mngmtAgentTrap_6037=mngmtAgentTrap_6037, mngmtAgentTrap_86=mngmtAgentTrap_86, mngmtAgentTrap_10043=mngmtAgentTrap_10043, mngmtAgentTrap_17017=mngmtAgentTrap_17017, mngmtAgentTrap_43=mngmtAgentTrap_43, mngmtAgentTrap_2001=mngmtAgentTrap_2001, sCellEventTrap_09_69=sCellEventTrap_09_69, mngmtAgentTrap_4023=mngmtAgentTrap_4023, mngmtAgentTrap_1006=mngmtAgentTrap_1006, mngmtAgentTrap_4000=mngmtAgentTrap_4000, hostTotal=hostTotal, mngmtAgentTrap_9006=mngmtAgentTrap_9006, mngmtAgentTrap_127=mngmtAgentTrap_127, sCellEventTrap_09_46=sCellEventTrap_09_46, sCellEventTrap_09_ce=sCellEventTrap_09_ce, sCellEventTrap_09_d5=sCellEventTrap_09_d5, mngmtAgentTrap_18004=mngmtAgentTrap_18004, mngmtAgentTrap_10027=mngmtAgentTrap_10027, mngmtAgentTrap_3048=mngmtAgentTrap_3048, mngmtAgentTrap_9008=mngmtAgentTrap_9008, mngmtAgentTrap_4058=mngmtAgentTrap_4058, sCellEventTrap_04_11=sCellEventTrap_04_11, mngmtAgentTrap_5011=mngmtAgentTrap_5011, scellCAC=scellCAC, scellEventTimeDate=scellEventTimeDate, mngmtAgentTrap_10039=mngmtAgentTrap_10039, sCellEventTrap_09_1a=sCellEventTrap_09_1a, sCellEventTrap_06_36=sCellEventTrap_06_36, sCellEventTrap_42_04=sCellEventTrap_42_04, sCellEventTrap_03_0b=sCellEventTrap_03_0b, mngmtAgentTrap_3092=mngmtAgentTrap_3092, sCellEventTrap_0d_03=sCellEventTrap_0d_03, mngmtAgentTrap_17003=mngmtAgentTrap_17003, sCellEventTrap_09_2a=sCellEventTrap_09_2a, mngmtAgentTrap_25015=mngmtAgentTrap_25015, sCellEventTrap_0d_4b=sCellEventTrap_0d_4b, mngmtAgentTrap_6023=mngmtAgentTrap_6023, mngmtAgentTrap_27036=mngmtAgentTrap_27036, mngmtAgentTrap_4049=mngmtAgentTrap_4049, mngmtAgentTrap_16005=mngmtAgentTrap_16005, mngmtAgentTrap_6021=mngmtAgentTrap_6021, sCellEventTrap_0c_04=sCellEventTrap_0c_04, mngmtAgentTrap_27=mngmtAgentTrap_27, sCellEventTrap_07_06=sCellEventTrap_07_06, sCellEventTrap_09_36=sCellEventTrap_09_36, mngmtAgentTrap_21009=mngmtAgentTrap_21009, sCellEventTrap_06_18=sCellEventTrap_06_18, sCellEventTrap_06_10=sCellEventTrap_06_10, sCellEventTrap_07_00=sCellEventTrap_07_00, hostStatus=hostStatus, mngmtAgentTrap_4032=mngmtAgentTrap_4032, mngmtAgentTrap_2078=mngmtAgentTrap_2078, cpqElementManager=cpqElementManager, mngmtAgentTrap_26007=mngmtAgentTrap_26007, mngmtAgentTrap_2071=mngmtAgentTrap_2071, mngmtAgentTrap_17006=mngmtAgentTrap_17006, sCellEventTrap_04_06=sCellEventTrap_04_06, sCellEventTrap_09_19=sCellEventTrap_09_19, mngmtAgentTrap_2099=mngmtAgentTrap_2099, mngmtAgentTrap_9018=mngmtAgentTrap_9018, sCellEventTrap_06_3b=sCellEventTrap_06_3b, mngmtAgentTrap_2012=mngmtAgentTrap_2012, mngmtAgentTrap_2057=mngmtAgentTrap_2057, sCellEventTrap_09_71=sCellEventTrap_09_71, mngmtAgentTrap_21010=mngmtAgentTrap_21010, sCellEventTrap_0d_a1=sCellEventTrap_0d_a1, mngmtAgentTrap_98=mngmtAgentTrap_98, mngmtAgentTrap_9025=mngmtAgentTrap_9025, mngmtAgentTrap_5015=mngmtAgentTrap_5015, mngmtAgentTrap_14005=mngmtAgentTrap_14005, mngmtAgentTrap_20001=mngmtAgentTrap_20001, mngmtAgentTrap_25003=mngmtAgentTrap_25003, mngmtAgentTrap_196=mngmtAgentTrap_196, sCellEventTrap_06_12=sCellEventTrap_06_12, mngmtAgentTrap_25010=mngmtAgentTrap_25010, mngmtAgentTrap_4050=mngmtAgentTrap_4050, sCellEventTrap_09_d0=sCellEventTrap_09_d0, sCellEventTrap_09_79=sCellEventTrap_09_79, sCellEventTrap_0d_8d=sCellEventTrap_0d_8d, mngmtAgentTrap_3015=mngmtAgentTrap_3015, mngmtAgentTrap_3025=mngmtAgentTrap_3025, mngmtAgentTrap_3075=mngmtAgentTrap_3075, mngmtAgentTrap_25018=mngmtAgentTrap_25018, mngmtAgentTrap_4025=mngmtAgentTrap_4025, sCellEventTrap_06_00=sCellEventTrap_06_00, mngmtAgentTrap_3051=mngmtAgentTrap_3051, mngmtAgentTrap_26012=mngmtAgentTrap_26012, sCellEventTrap_09_3a=sCellEventTrap_09_3a, sCellEventTrap_04_09=sCellEventTrap_04_09, mngmtAgentTrap_8036=mngmtAgentTrap_8036, mngmtAgentTrap_2031=mngmtAgentTrap_2031, sCellEventTrap_06_20=sCellEventTrap_06_20, mngmtAgentTrap_1013=mngmtAgentTrap_1013, agHostName=agHostName, mngmtAgentTrap_4021=mngmtAgentTrap_4021, sCellEventTrap_09_30=sCellEventTrap_09_30, mngmtAgentTrap_4040=mngmtAgentTrap_4040, mngmtAgentTrap_16035=mngmtAgentTrap_16035, sCellEventTrap_03_09=sCellEventTrap_03_09, mngmtAgentTrap_120=mngmtAgentTrap_120, mngmtAgentTrap_6020=mngmtAgentTrap_6020, sCellEventTrap_09_3e=sCellEventTrap_09_3e, mngmtAgentTrap_8005=mngmtAgentTrap_8005, mngmtAgentTrap_18063=mngmtAgentTrap_18063, mngmtAgentTrap_3069=mngmtAgentTrap_3069, sCellEventTrap_06_24=sCellEventTrap_06_24, mngmtAgentTrap_2087=mngmtAgentTrap_2087, mngmtAgentTrap_6017=mngmtAgentTrap_6017, mngmtAgentTrap_8043=mngmtAgentTrap_8043, mngmtAgentTrap_23002=mngmtAgentTrap_23002, shelfElementType=shelfElementType, mngmtAgentTrap_58=mngmtAgentTrap_58, mngmtAgentTrap_2076=mngmtAgentTrap_2076, shelfStatus=shelfStatus, mngmtAgentTrap_27015=mngmtAgentTrap_27015, sCellEventTrap_07_09=sCellEventTrap_07_09, mngmtAgentTrap_26015=mngmtAgentTrap_26015, mngmtAgentTrap_3060=mngmtAgentTrap_3060, mngmtAgentTrap_25006=mngmtAgentTrap_25006, mngmtAgentTrap_8052=mngmtAgentTrap_8052, mngmtAgentTrap_62=mngmtAgentTrap_62, sCellEventTrap_0c_18=sCellEventTrap_0c_18, sCellEventTrap_0c_1a=sCellEventTrap_0c_1a, sCellEventTrap_09_0f=sCellEventTrap_09_0f, sCellEventTrap_0c_1f=sCellEventTrap_0c_1f, mngmtAgentTrap_2008=mngmtAgentTrap_2008, sCellEventTrap_04_0a=sCellEventTrap_04_0a, mngmtAgentTrap_8085=mngmtAgentTrap_8085, sCellEventTrap_09_4a=sCellEventTrap_09_4a, agentEntryIndex=agentEntryIndex, mngmtAgentTrap_8035=mngmtAgentTrap_8035, mngmtAgentTrap_13015=mngmtAgentTrap_13015, mngmtAgentTrap_27004=mngmtAgentTrap_27004, sCellEventTrap_0d_de=sCellEventTrap_0d_de, mngmtAgentTrap_14001=mngmtAgentTrap_14001, mngmtAgentTrap_4031=mngmtAgentTrap_4031, mngmtAgentTrap_14007=mngmtAgentTrap_14007, sCellEventTrap_09_72=sCellEventTrap_09_72, sCellEventTrap_09_d1=sCellEventTrap_09_d1, mngmtAgentTrap_6024=mngmtAgentTrap_6024, mngmtAgentTrap_4047=mngmtAgentTrap_4047, compaq=compaq, mngmtAgentTrap_9=mngmtAgentTrap_9, mngmtAgentTrap_202=mngmtAgentTrap_202, mngmtAgentTrap_20021=mngmtAgentTrap_20021, mngmtAgentTrap_20018=mngmtAgentTrap_20018, shelfEntryIndex=shelfEntryIndex, mngmtAgentTrap_27007=mngmtAgentTrap_27007, mngmtAgentTrap_113=mngmtAgentTrap_113, mngmtAgentTrap_103=mngmtAgentTrap_103, mngmtAgentTrap_3003=mngmtAgentTrap_3003, mngmtAgentTrap_6026=mngmtAgentTrap_6026, mngmtAgentTrap_8081=mngmtAgentTrap_8081, sCellEventTrap_04_0c=sCellEventTrap_04_0c, sCellEventTrap_0d_00=sCellEventTrap_0d_00, nscUUID=nscUUID, mngmtAgentTrap_9004=mngmtAgentTrap_9004, shelfStatusTable=shelfStatusTable, sCellEventTrap_09_38=sCellEventTrap_09_38, sCellEventTrap_0c_15=sCellEventTrap_0c_15, mngmtAgentTrap_1009=mngmtAgentTrap_1009, mngmtAgentTrap_16012=mngmtAgentTrap_16012, mngmtAgentTrap_25012=mngmtAgentTrap_25012, mngmtAgentTrap_8031=mngmtAgentTrap_8031, mngmtAgentTrap_9007=mngmtAgentTrap_9007, mngmtAgentTrap_9041=mngmtAgentTrap_9041, mngmtAgentTrap_54=mngmtAgentTrap_54, mngmtAgentTrap_8095=mngmtAgentTrap_8095, mngmtAgentTrap_18060=mngmtAgentTrap_18060, mngmtAgentTrap_3013=mngmtAgentTrap_3013, mngmtAgentTrap_20005=mngmtAgentTrap_20005, sCellEventTrap_0c_08=sCellEventTrap_0c_08, mngmtAgentTrap_10025=mngmtAgentTrap_10025, mngmtAgentTrap_47=mngmtAgentTrap_47, mngmtAgentTrap_9029=mngmtAgentTrap_9029, mngmtAgentTrap_4015=mngmtAgentTrap_4015, scellEIP=scellEIP, sCellEventTrap_0c_0c=sCellEventTrap_0c_0c, mngmtAgentTrap_3090=mngmtAgentTrap_3090, sCellEventTrap_06_16=sCellEventTrap_06_16, mngmtAgentTrap_6016=mngmtAgentTrap_6016, mngmtAgentTrap_8090=mngmtAgentTrap_8090, mngmtAgentTrap_2042=mngmtAgentTrap_2042, mngmtAgentTrap_9028=mngmtAgentTrap_9028, mngmtAgentTrap_2040=mngmtAgentTrap_2040, sCellEventTrap_42_00=sCellEventTrap_42_00, mngmtAgentTrap_8077=mngmtAgentTrap_8077, agentEventTimeDate=agentEventTimeDate, mngmtAgentTrap_18002=mngmtAgentTrap_18002, scellEntryIndex=scellEntryIndex, mngmtAgentTrap_5017=mngmtAgentTrap_5017, sCellEventTrap_09_17=sCellEventTrap_09_17, sCellEventTrap_06_25=sCellEventTrap_06_25, mngmtAgentTrap_72=mngmtAgentTrap_72, mngmtAgentTrap_3020=mngmtAgentTrap_3020, mngmtAgentTrap_8056=mngmtAgentTrap_8056, mngmtAgentTrap_8028=mngmtAgentTrap_8028, mngmtAgentTrap_9035=mngmtAgentTrap_9035, mngmtAgentTrap_27029=mngmtAgentTrap_27029, mngmtAgentTrap_1012=mngmtAgentTrap_1012, mngmtAgentTrap_9001=mngmtAgentTrap_9001, sCellEventTrap_06_33=sCellEventTrap_06_33, sCellEventTrap_09_cd=sCellEventTrap_09_cd, sCellEventTrap_09_14=sCellEventTrap_09_14, mngmtAgentTrap_46=mngmtAgentTrap_46, mngmtAgentTrap_3037=mngmtAgentTrap_3037, mngmtAgentTrap_2104=mngmtAgentTrap_2104, mngmtAgentTrap_18075=mngmtAgentTrap_18075, mngmtAgentTrap_24001=mngmtAgentTrap_24001, mngmtAgentTrap_92=mngmtAgentTrap_92, mngmtAgentTrap_2102=mngmtAgentTrap_2102, mngmtAgentTrap_6008=mngmtAgentTrap_6008, sCellEventTrap_83_05=sCellEventTrap_83_05, sCellEventTrap_0c_1d=sCellEventTrap_0c_1d, mngmtAgentTrap_18009=mngmtAgentTrap_18009, sCellEventTrap_0d_02=sCellEventTrap_0d_02, sCellEventTrap_06_05=sCellEventTrap_06_05, mngmtAgentTrap_8051=mngmtAgentTrap_8051, mngmtAgentTrap_11=mngmtAgentTrap_11, cpqHSVAgent=cpqHSVAgent, mngmtAgentTrap_69=mngmtAgentTrap_69, mngmtAgentTrap_10019=mngmtAgentTrap_10019, sCellEventTrap_0d_4c=sCellEventTrap_0d_4c, mngmtAgentTrap_4033=mngmtAgentTrap_4033, mngmtAgentTrap_10014=mngmtAgentTrap_10014, sCellEventTrap_06_27=sCellEventTrap_06_27, sCellEventTrap_03_05=sCellEventTrap_03_05, sCellEventTrap_0c_17=sCellEventTrap_0c_17, mngmtAgentTrap_3055=mngmtAgentTrap_3055, mngmtAgentTrap_18051=mngmtAgentTrap_18051, mngmtAgentTrap_184=mngmtAgentTrap_184, mngmtAgentTrap_18074=mngmtAgentTrap_18074, nscStatusTable=nscStatusTable, sCellEventTrap_0d_71=sCellEventTrap_0d_71, mngmtAgentTrap_21001=mngmtAgentTrap_21001, mngmtAgentTrap_8014=mngmtAgentTrap_8014, mngmtAgentTrap_8058=mngmtAgentTrap_8058, mngmtAgentTrap_3007=mngmtAgentTrap_3007, sCellEventTrap_06_2d=sCellEventTrap_06_2d, mngmtAgentTrap_21014=mngmtAgentTrap_21014, mngmtAgentTrap_3056=mngmtAgentTrap_3056, sCellEventTrap_06_26=sCellEventTrap_06_26)
mibBuilder.exportSymbols('CPQHSV-MIB', mngmtAgentTrap_4048=mngmtAgentTrap_4048, mngmtAgentTrap_10044=mngmtAgentTrap_10044, mngmtAgentTrap_16028=mngmtAgentTrap_16028, mngmtAgentTrap_20011=mngmtAgentTrap_20011, mngmtAgentTrap_25001=mngmtAgentTrap_25001, sCellEventTrap_09_6d=sCellEventTrap_09_6d, sCellEventTrap_09_2c=sCellEventTrap_09_2c, sCellEventTrap_09_d3=sCellEventTrap_09_d3, mngmtAgentTrap_5014=mngmtAgentTrap_5014, mngmtAgentTrap_6022=mngmtAgentTrap_6022, mngmtAgentTrap_63=mngmtAgentTrap_63, mngmtAgentTrap_8010=mngmtAgentTrap_8010, sCellEventTrap_0d_7f=sCellEventTrap_0d_7f, mngmtAgentTrap_8053=mngmtAgentTrap_8053, mngmtAgentTrap_18039=mngmtAgentTrap_18039, mngmtAgentTrap_27022=mngmtAgentTrap_27022, mngmtAgentTrap_131=mngmtAgentTrap_131, mngmtAgentTrap_77=mngmtAgentTrap_77, mngmtAgentTrap_10006=mngmtAgentTrap_10006, mngmtAgentTrap_4001=mngmtAgentTrap_4001, mngmtAgentTrap_95=mngmtAgentTrap_95, mngmtAgentTrap_15003=mngmtAgentTrap_15003, mngmtAgentTrap_21004=mngmtAgentTrap_21004, mngmtAgentTrap_2035=mngmtAgentTrap_2035, mngmtAgentTrap_2093=mngmtAgentTrap_2093, mngmtAgentTrap_115=mngmtAgentTrap_115, hostStatusTable=hostStatusTable, sCellEventTrap_0d_47=sCellEventTrap_0d_47, sCellEventTrap_06_02=sCellEventTrap_06_02, mngmtAgentTrap_3072=mngmtAgentTrap_3072, mngmtAgentTrap_8007=mngmtAgentTrap_8007, mngmtAgentTrap_2041=mngmtAgentTrap_2041, mngmtAgentTrap_8055=mngmtAgentTrap_8055, mngmtAgentTrap_5010=mngmtAgentTrap_5010, mngmtAgentTrap_10035=mngmtAgentTrap_10035, mngmtAgentTrap_14012=mngmtAgentTrap_14012, mngmtAgentTrap_18008=mngmtAgentTrap_18008, mngmtAgentTrap_27037=mngmtAgentTrap_27037, mngmtAgentTrap_9003=mngmtAgentTrap_9003, sCellEventTrap_09_12=sCellEventTrap_09_12, mngmtAgentTrap_18018=mngmtAgentTrap_18018, sCellEventTrap_0c_0f=sCellEventTrap_0c_0f, mngmtAgentTrap_112=mngmtAgentTrap_112, mngmtAgentTrap_2032=mngmtAgentTrap_2032, mngmtAgentTrap_9033=mngmtAgentTrap_9033, mngmtAgentTrap_16008=mngmtAgentTrap_16008, sCellEventTrap_07_05=sCellEventTrap_07_05, sCellEventTrap_0d_83=sCellEventTrap_0d_83, mngmtAgentTrap_16=mngmtAgentTrap_16, mngmtAgentTrap_8037=mngmtAgentTrap_8037, mngmtAgentTrap_27018=mngmtAgentTrap_27018, mngmtAgentTrap_8067=mngmtAgentTrap_8067, sCellEventTrap_09_3c=sCellEventTrap_09_3c, mngmtAgentTrap_16030=mngmtAgentTrap_16030, mngmtAgentTrap_3077=mngmtAgentTrap_3077, agentStatus=agentStatus, mngmtAgentTrap_18070=mngmtAgentTrap_18070, mngmtAgentTrap_18076=mngmtAgentTrap_18076, mngmtAgentTrap_15001=mngmtAgentTrap_15001, sCellEventTrap_06_08=sCellEventTrap_06_08, mngmtAgentTrap_21019=mngmtAgentTrap_21019, mngmtAgentTrap_6032=mngmtAgentTrap_6032, mngmtAgentTrap_3079=mngmtAgentTrap_3079, sCellEventTrap_0d_5b=sCellEventTrap_0d_5b, sCellEventTrap_09_49=sCellEventTrap_09_49, mngmtAgentTrap_23=mngmtAgentTrap_23, mngmtAgentTrap_5001=mngmtAgentTrap_5001, mngmtAgentTrap_3083=mngmtAgentTrap_3083, mngmtAgentTrap_68=mngmtAgentTrap_68, mngmtAgentTrap_44=mngmtAgentTrap_44, mngmtAgentTrap_16021=mngmtAgentTrap_16021, mngmtAgentTrap_13017=mngmtAgentTrap_13017, cpqHSV=cpqHSV, sCellEventTrap_06_29=sCellEventTrap_06_29, mngmtAgentTrap_8091=mngmtAgentTrap_8091, sCellEventTrap_09_d9=sCellEventTrap_09_d9, nscTotal=nscTotal, mngmtAgentTrap_3=mngmtAgentTrap_3, mngmtAgentTrap_18038=mngmtAgentTrap_18038, mngmtAgentTrap_76=mngmtAgentTrap_76, sCellEventTrap_04_02=sCellEventTrap_04_02, mngmtAgentTrap_20=mngmtAgentTrap_20, mngmtAgentTrap_9015=mngmtAgentTrap_9015, mngmtAgentTrap_27017=mngmtAgentTrap_27017, mngmtAgentTrap_100=mngmtAgentTrap_100, mngmtAgentTrap_3054=mngmtAgentTrap_3054, mngmtAgentTrap_82=mngmtAgentTrap_82, mngmtAgentTrap_18049=mngmtAgentTrap_18049, mngmtAgentTrap_4013=mngmtAgentTrap_4013, mngmtAgentTrap_6010=mngmtAgentTrap_6010, sCellEventTrap_09_2e=sCellEventTrap_09_2e, mngmtAgentTrap_27030=mngmtAgentTrap_27030, mngmtAgentTrap_27031=mngmtAgentTrap_27031, mngmtAgentTrap_3070=mngmtAgentTrap_3070, mngmtAgentTrap_2105=mngmtAgentTrap_2105, mngmtAgentTrap_4011=mngmtAgentTrap_4011, sCellEventTrap_04_08=sCellEventTrap_04_08, sCellEventTrap_06_2c=sCellEventTrap_06_2c, sCellEventTrap_09_2b=sCellEventTrap_09_2b, mngmtAgentTrap_73=mngmtAgentTrap_73, mngmtAgentTrap_6031=mngmtAgentTrap_6031, sCellEventTrap_0b_05=sCellEventTrap_0b_05, sCellEventTrap_0c_19=sCellEventTrap_0c_19, mngmtAgentTrap_9036=mngmtAgentTrap_9036, mngmtAgentTrap_17012=mngmtAgentTrap_17012, sCellEventTrap_0c_09=sCellEventTrap_0c_09, mngmtAgentTrap_21013=mngmtAgentTrap_21013, sCellEventTrap_04_05=sCellEventTrap_04_05, mngmtAgentTrap_4059=mngmtAgentTrap_4059, sCellEventTrap_03_04=sCellEventTrap_03_04, sCellEventTrap_09_31=sCellEventTrap_09_31, shelfId=shelfId, sCellEventTrap_06_30=sCellEventTrap_06_30, sCellEventTrap_09_23=sCellEventTrap_09_23, mngmtAgentTrap_198=mngmtAgentTrap_198, mngmtAgentTrap_2013=mngmtAgentTrap_2013, mngmtAgentTrap_3065=mngmtAgentTrap_3065, sCellEventTrap_06_0e=sCellEventTrap_06_0e, mngmtAgentTrap_11001=mngmtAgentTrap_11001, mngmtAgentTrap_1011=mngmtAgentTrap_1011, sCellEventTrap_0c_05=sCellEventTrap_0c_05, mngmtAgentTrap_2070=mngmtAgentTrap_2070, sCellEventTrap_83_04=sCellEventTrap_83_04, mngmtAgentTrap_4020=mngmtAgentTrap_4020, mngmtAgentTrap_4036=mngmtAgentTrap_4036, sCellEventTrap_07_01=sCellEventTrap_07_01, mngmtAgentTrap_17009=mngmtAgentTrap_17009, sCellEventTrap_09_75=sCellEventTrap_09_75, mngmtAgentTrap_71=mngmtAgentTrap_71, mngmtAgentTrap_83=mngmtAgentTrap_83, mngmtAgentTrap_3044=mngmtAgentTrap_3044, mngmtAgentTrap_8002=mngmtAgentTrap_8002, mngmtAgentTrap_2069=mngmtAgentTrap_2069, mngmtAgentTrap_4=mngmtAgentTrap_4, mngmtAgentTrap_3086=mngmtAgentTrap_3086, sCellEventTrap_06_1d=sCellEventTrap_06_1d, mngmtAgentTrap_2072=mngmtAgentTrap_2072, sCellEventTrap_09_77=sCellEventTrap_09_77, mngmtAgentTrap_6030=mngmtAgentTrap_6030, mngmtAgentTrap_26016=mngmtAgentTrap_26016, sCellEventTrap_06_37=sCellEventTrap_06_37, sCellEventTrap_0c_1e=sCellEventTrap_0c_1e, mngmtAgentTrap_10013=mngmtAgentTrap_10013, sCellEventTrap_0c_06=sCellEventTrap_0c_06, mngmtAgentTrap_18067=mngmtAgentTrap_18067, mngmtAgentTrap_26014=mngmtAgentTrap_26014, mngmtAgentTrap_13019=mngmtAgentTrap_13019, mngmtAgentTrap_2089=mngmtAgentTrap_2089, sCellEventTrap_09_33=sCellEventTrap_09_33, mngmtAgentTrap_8071=mngmtAgentTrap_8071, mngmtAgentTrap_9027=mngmtAgentTrap_9027, sCellEventTrap_09_39=sCellEventTrap_09_39, mngmtAgentTrap_18050=mngmtAgentTrap_18050, sCellEventTrap_83_02=sCellEventTrap_83_02, mngmtAgentTrap_5006=mngmtAgentTrap_5006, mngmtAgentTrap_20022=mngmtAgentTrap_20022, mngmtAgentTrap_2086=mngmtAgentTrap_2086, emuEventTrapCritical=emuEventTrapCritical, mngmtAgentTrap_21018=mngmtAgentTrap_21018, mngmtAgentTrap_20017=mngmtAgentTrap_20017, sCellEventTrap_03_02=sCellEventTrap_03_02, mngmtAgentTrap_6002=mngmtAgentTrap_6002, mngmtAgentTrap_4054=mngmtAgentTrap_4054, sCellEventTrap_09_47=sCellEventTrap_09_47, sCellEventTrap_09_1e=sCellEventTrap_09_1e, mngmtAgentTrap_2095=mngmtAgentTrap_2095, mngmtAgentTrap_8034=mngmtAgentTrap_8034, mngmtAgentTrap_8063=mngmtAgentTrap_8063, mngmtAgentTrap_16024=mngmtAgentTrap_16024, mngmtAgentTrap_22=mngmtAgentTrap_22, mngmtAgentTrap_2064=mngmtAgentTrap_2064, mngmtAgentTrap_53=mngmtAgentTrap_53, mngmtAgentTrap_25=mngmtAgentTrap_25, mngmtAgentTrap_25007=mngmtAgentTrap_25007, mngmtAgentTrap_148=mngmtAgentTrap_148, mngmtAgentTrap_3095=mngmtAgentTrap_3095, sCellEventTrap_06_03=sCellEventTrap_06_03, mngmtAgentTrap_78=mngmtAgentTrap_78, mngmtAgentTrap_27032=mngmtAgentTrap_27032, mngmtAgentTrap_91=mngmtAgentTrap_91, mngmtAgentTrap_6013=mngmtAgentTrap_6013, mngmtAgentTrap_2063=mngmtAgentTrap_2063, mngmtAgentTrap_8022=mngmtAgentTrap_8022, mngmtAgentTrap_8016=mngmtAgentTrap_8016, mngmtAgentTrap_18041=mngmtAgentTrap_18041, mngmtAgentTrap_8076=mngmtAgentTrap_8076, mngmtAgentTrap_17015=mngmtAgentTrap_17015, mngmtAgentTrap_8049=mngmtAgentTrap_8049, mngmtAgentTrap_5005=mngmtAgentTrap_5005, mngmtAgentTrap_16033=mngmtAgentTrap_16033, mngmtAgentTrap_5=mngmtAgentTrap_5, maHSVMibRev=maHSVMibRev, mngmtAgentTrap_3062=mngmtAgentTrap_3062, mngmtAgentTrap_66=mngmtAgentTrap_66, sCellEventTrap_0b_00=sCellEventTrap_0b_00, mngmtAgentTrap_3002=mngmtAgentTrap_3002, mngmtAgentTrap_114=mngmtAgentTrap_114, sCellEventTrap_09_24=sCellEventTrap_09_24, mngmtAgentTrap_117=mngmtAgentTrap_117, mngmtAgentTrap_121=mngmtAgentTrap_121, sCellEventTrap_0d_6f=sCellEventTrap_0d_6f, mngmtAgentTrap_2006=mngmtAgentTrap_2006, mngmtAgentTrap_2074=mngmtAgentTrap_2074, mngmtAgentTrap_9040=mngmtAgentTrap_9040, mngmtAgentTrap_26017=mngmtAgentTrap_26017, mngmtAgentTrap_35=mngmtAgentTrap_35, mngmtAgentTrap_16026=mngmtAgentTrap_16026, sCellEventTrap_09_78=sCellEventTrap_09_78, mngmtAgentTrap_13012=mngmtAgentTrap_13012, mngmtAgentTrap_21003=mngmtAgentTrap_21003, mngmtAgentTrap_27034=mngmtAgentTrap_27034, mngmtAgentTrap_27051=mngmtAgentTrap_27051, sCellEventTrap_06_42=sCellEventTrap_06_42, mngmtAgentTrap_18042=mngmtAgentTrap_18042, sCellEventTrap_09_43=sCellEventTrap_09_43, mngmtAgentTrap_1004=mngmtAgentTrap_1004, sCellEventTrap_06_35=sCellEventTrap_06_35, mngmtAgentTrap_10018=mngmtAgentTrap_10018, mngmtAgentTrap_8015=mngmtAgentTrap_8015, sCellEventTrap_0d_34=sCellEventTrap_0d_34, mngmtAgentTrap_8075=mngmtAgentTrap_8075, mngmtAgentTrap_3063=mngmtAgentTrap_3063, sCellEventTrap_0c_12=sCellEventTrap_0c_12, mngmtAgentTrap_10021=mngmtAgentTrap_10021, mngmtAgentTrap_11002=mngmtAgentTrap_11002, mngmtAgentTrap_14010=mngmtAgentTrap_14010, mngmtAgentTrap_1=mngmtAgentTrap_1, mngmtAgentTrap_4029=mngmtAgentTrap_4029, mngmtAgentTrap_5002=mngmtAgentTrap_5002, mngmtAgentTrap_42=mngmtAgentTrap_42, sCellEventTrap_09_16=sCellEventTrap_09_16, mngmtAgentTrap_12003=mngmtAgentTrap_12003, mngmtAgentTrap_5019=mngmtAgentTrap_5019, srvOS=srvOS, mngmtAgentTrap_6=mngmtAgentTrap_6, mngmtAgentTrap_8045=mngmtAgentTrap_8045, mngmtAgentTrap_2021=mngmtAgentTrap_2021, mngmtAgentTrap_1008=mngmtAgentTrap_1008, mngmtAgentTrap_9023=mngmtAgentTrap_9023, mngmtAgentTrap_3059=mngmtAgentTrap_3059, mngmtAgentTrap_8070=mngmtAgentTrap_8070, mngmtAgentTrap_17008=mngmtAgentTrap_17008, mngmtAgentTrap_2010=mngmtAgentTrap_2010, mngmtAgentTrap_3046=mngmtAgentTrap_3046, mngmtAgentTrap_27044=mngmtAgentTrap_27044, scellECode=scellECode, sCellEventTrap_0c_16=sCellEventTrap_0c_16, mngmtAgentTrap_2022=mngmtAgentTrap_2022, mngmtAgentTrap_2085=mngmtAgentTrap_2085, mngmtAgentTrap_4014=mngmtAgentTrap_4014, mngmtAgentTrap_6012=mngmtAgentTrap_6012, mngmtAgentTrap_16023=mngmtAgentTrap_16023, mngmtAgentTrap_16036=mngmtAgentTrap_16036, mngmtAgentTrap_27033=mngmtAgentTrap_27033)
mibBuilder.exportSymbols('CPQHSV-MIB', sCellEventTrap_83_00=sCellEventTrap_83_00, mngmtAgentTrap_2049=mngmtAgentTrap_2049, sCellEventTrap_0c_03=sCellEventTrap_0c_03, scellStatus=scellStatus, sCellEventTrap_04_0e=sCellEventTrap_04_0e, sCellEventTrap_0d_d8=sCellEventTrap_0d_d8, mngmtAgentTrap_5008=mngmtAgentTrap_5008, mngmtAgentTrap_3064=mngmtAgentTrap_3064, mngmtAgentTrap_8079=mngmtAgentTrap_8079, mngmtAgentTrap_18019=mngmtAgentTrap_18019, mngmtAgentTrap_26019=mngmtAgentTrap_26019, mngmtAgentTrap_18047=mngmtAgentTrap_18047, sCellEventTrap_0d_5f=sCellEventTrap_0d_5f, sCellEventTrap_04_0f=sCellEventTrap_04_0f, sCellEventTrap_07_08=sCellEventTrap_07_08, mngmtAgentTrap_3057=mngmtAgentTrap_3057, mngmtAgentTrap_6028=mngmtAgentTrap_6028, mngmtAgentTrap_8029=mngmtAgentTrap_8029, mngmtAgentTrap_2090=mngmtAgentTrap_2090, mngmtAgentTrap_16022=mngmtAgentTrap_16022, mngmtAgentTrap_2091=mngmtAgentTrap_2091, sCellEventTrap_0b_04=sCellEventTrap_0b_04, srvComputerType=srvComputerType, mngmtAgentTrap_4034=mngmtAgentTrap_4034, mngmtAgentTrap_27019=mngmtAgentTrap_27019, mngmtAgentTrap_18=mngmtAgentTrap_18, mngmtAgentTrap_3019=mngmtAgentTrap_3019, sCellEventTrap_06_1c=sCellEventTrap_06_1c, mngmtAgentTrap_9019=mngmtAgentTrap_9019, mngmtAgentTrap_29=mngmtAgentTrap_29, mngmtAgentTrap_18045=mngmtAgentTrap_18045, mngmtAgentTrap_18010=mngmtAgentTrap_18010, mngmtAgentTrap_16031=mngmtAgentTrap_16031, mngmtAgentTrap_18003=mngmtAgentTrap_18003, sCellEventTrap_06_04=sCellEventTrap_06_04, mngmtAgentTrap_26010=mngmtAgentTrap_26010, mngmtAgentTrap_15009=mngmtAgentTrap_15009, sCellEventTrap_06_0a=sCellEventTrap_06_0a, sCellEventTrap_06_15=sCellEventTrap_06_15, mngmtAgentTrap_2068=mngmtAgentTrap_2068, mngmtAgentTrap_27048=mngmtAgentTrap_27048, mngmtAgentTrap_9038=mngmtAgentTrap_9038, sCellEventTrap_0c_0a=sCellEventTrap_0c_0a, mngmtAgentTrap_129=mngmtAgentTrap_129, mngmtAgentTrap_2016=mngmtAgentTrap_2016, scell=scell, mngmtAgentTrap_10042=mngmtAgentTrap_10042, mngmtAgentTrap_9031=mngmtAgentTrap_9031, sCellEventTrap_09_65=sCellEventTrap_09_65, mngmtAgentTrap_6005=mngmtAgentTrap_6005, sCellEventTrap_0d_dd=sCellEventTrap_0d_dd, mngmtAgentTrap_4042=mngmtAgentTrap_4042, mngmtAgentTrap_15005=mngmtAgentTrap_15005, sCellEventTrap_01_02=sCellEventTrap_01_02, sCellEventTrap_06_40=sCellEventTrap_06_40, sCellEventTrap_06_38=sCellEventTrap_06_38, mngmtAgentTrap_18048=mngmtAgentTrap_18048, mngmtAgentTrap_2034=mngmtAgentTrap_2034, mngmtAgentTrap_20023=mngmtAgentTrap_20023, scellEntry=scellEntry, mngmtAgentTrap_50=mngmtAgentTrap_50, sCellEventTrap_0c_11=sCellEventTrap_0c_11, mngmtAgentTrap_2067=mngmtAgentTrap_2067, sCellEventTrap_09_0e=sCellEventTrap_09_0e, mngmtAgentTrap_10024=mngmtAgentTrap_10024, mngmtAgentTrap_17016=mngmtAgentTrap_17016, mngmtAgentTrap_5016=mngmtAgentTrap_5016, mngmtAgentTrap_27035=mngmtAgentTrap_27035, mngmtAgentTrap_27043=mngmtAgentTrap_27043, mngmtAgentTrap_8024=mngmtAgentTrap_8024, scellNameDateTime=scellNameDateTime, mngmtAgentTrap_4028=mngmtAgentTrap_4028, mngmtAgentTrap_22001=mngmtAgentTrap_22001, mngmtAgentTrap_9013=mngmtAgentTrap_9013, sCellEventTrap_09_22=sCellEventTrap_09_22, sCellEventTrap_42_03=sCellEventTrap_42_03, mngmtAgentTrap_8066=mngmtAgentTrap_8066, mngmtAgentTrap_18066=mngmtAgentTrap_18066, sCellEventTrap_06_01=sCellEventTrap_06_01, mngmtAgentTrap_8087=mngmtAgentTrap_8087, mngmtAgentTrap_18068=mngmtAgentTrap_18068, mngmtAgentTrap_8078=mngmtAgentTrap_8078, sCellEventTrap_06_2e=sCellEventTrap_06_2e, mngmtAgentTrap_2036=mngmtAgentTrap_2036, sCellEventTrap_09_6e=sCellEventTrap_09_6e, mngmtAgentTrap_27009=mngmtAgentTrap_27009, mngmtAgentTrap_27047=mngmtAgentTrap_27047, mngmtAgentTrap_59=mngmtAgentTrap_59, mngmtAgentTrap_89=mngmtAgentTrap_89, sCellEventTrap_06_0d=sCellEventTrap_06_0d, mngmtAgentTrap_2030=mngmtAgentTrap_2030, mngmtAgentTrap_8003=mngmtAgentTrap_8003, mngmtAgentTrap_12001=mngmtAgentTrap_12001, sCellEventTrap_09_cb=sCellEventTrap_09_cb, mngmtAgentTrap_8040=mngmtAgentTrap_8040, mngmtAgentTrap_5012=mngmtAgentTrap_5012, mngmtAgentTrap_8050=mngmtAgentTrap_8050, mngmtAgentTrap_8019=mngmtAgentTrap_8019, sCellEventTrap_09_2d=sCellEventTrap_09_2d, sCellEventTrap_06_32=sCellEventTrap_06_32, mngmtAgentTrap_17007=mngmtAgentTrap_17007, mngmtAgentTrap_8054=mngmtAgentTrap_8054, mngmtAgentTrap_8073=mngmtAgentTrap_8073, mngmtAgentTrap_10020=mngmtAgentTrap_10020, sCellEventTrap_09_35=sCellEventTrap_09_35, mngmtAgentTrap_85=mngmtAgentTrap_85, mngmtAgentTrap_4004=mngmtAgentTrap_4004, sCellEventTrap_09_3b=sCellEventTrap_09_3b, mngmtAgentTrap_20019=mngmtAgentTrap_20019, hostEntry=hostEntry, mngmtAgentTrap_2060=mngmtAgentTrap_2060, mngmtAgentTrap_1001=mngmtAgentTrap_1001, mngmtAgentTrap_18040=mngmtAgentTrap_18040, sCellEventTrap_06_09=sCellEventTrap_06_09, mngmtAgentTrap_1014=mngmtAgentTrap_1014, mngmtAgentTrap_16017=mngmtAgentTrap_16017, mngmtAgentTrap_87=mngmtAgentTrap_87, mngmtAgentTrap_4030=mngmtAgentTrap_4030, mngmtAgentTrap_8064=mngmtAgentTrap_8064, sCellEventTrap_06_31=sCellEventTrap_06_31, mngmtAgentTrap_104=mngmtAgentTrap_104, mngmtAgentTrap_2059=mngmtAgentTrap_2059, mngmtAgentTrap_22002=mngmtAgentTrap_22002, mngmtAgentTrap_27052=mngmtAgentTrap_27052, sCellEventTrap_0d_f0=sCellEventTrap_0d_f0, mngmtAgentTrap_20003=mngmtAgentTrap_20003, mngmtAgentTrap_4016=mngmtAgentTrap_4016, mngmtAgentTrap_8026=mngmtAgentTrap_8026, sCellEventTrap_07_0a=sCellEventTrap_07_0a, mngmtAgentTrap_3035=mngmtAgentTrap_3035, sCellEventTrap_09_7c=sCellEventTrap_09_7c, mngmtAgentTrap_64=mngmtAgentTrap_64, shelfElementNum=shelfElementNum, mngmtAgentTrap_16014=mngmtAgentTrap_16014, mngmtAgentTrap_8=mngmtAgentTrap_8, sCellEventTrap_09_0d=sCellEventTrap_09_0d, sCellEventTrap_06_3f=sCellEventTrap_06_3f, sCellEventTrap_09_02=sCellEventTrap_09_02, mngmtAgentTrap_5004=mngmtAgentTrap_5004, mngmtAgentTrap_21011=mngmtAgentTrap_21011, mngmtAgentTrap_102=mngmtAgentTrap_102, mngmtAgentTrap_3058=mngmtAgentTrap_3058, mngmtAgentTrap_3091=mngmtAgentTrap_3091, mngmtAgentTrap_96=mngmtAgentTrap_96, mngmtAgentTrap_8048=mngmtAgentTrap_8048, mngmtAgentTrap_8088=mngmtAgentTrap_8088, mngmtAgentTrap_18022=mngmtAgentTrap_18022, mngmtAgentTrap_2004=mngmtAgentTrap_2004, sCellEventTrap_09_cc=sCellEventTrap_09_cc, mngmtAgentTrap_14=mngmtAgentTrap_14, mngmtAgentTrap_18073=mngmtAgentTrap_18073, mngmtAgentTrap_27026=mngmtAgentTrap_27026, mngmtAgentTrap_6014=mngmtAgentTrap_6014, mngmtAgentTrap_27045=mngmtAgentTrap_27045, mngmtAgentTrap_6029=mngmtAgentTrap_6029, mngmtAgentTrap_10015=mngmtAgentTrap_10015, mngmtAgentTrap_6035=mngmtAgentTrap_6035, mngmtAgentTrap_67=mngmtAgentTrap_67, mngmtAgentTrap_109=mngmtAgentTrap_109, mngmtAgentTrap_2097=mngmtAgentTrap_2097, sCellEventTrap_09_05=sCellEventTrap_09_05, sCellEventTrap_09_41=sCellEventTrap_09_41, sCellEventTrap_09_40=sCellEventTrap_09_40, mngmtAgentTrap_27010=mngmtAgentTrap_27010, mngmtAgentTrap_4007=mngmtAgentTrap_4007, mngmtAgentTrap_108=mngmtAgentTrap_108, mngmtAgentTrap_79=mngmtAgentTrap_79, mngmtAgentTrap_8001=mngmtAgentTrap_8001, mngmtAgentTrap_9021=mngmtAgentTrap_9021, sCellEventTrap_06_1a=sCellEventTrap_06_1a, mngmtAgentTrap_2051=mngmtAgentTrap_2051, mngmtAgentTrap_6009=mngmtAgentTrap_6009, mngmtAgentTrap_99=mngmtAgentTrap_99, mngmtAgentTrap_8092=mngmtAgentTrap_8092, mngmtAgentTrap_16020=mngmtAgentTrap_16020, mngmtAgentTrap_9005=mngmtAgentTrap_9005, mngmtAgentTrap_9012=mngmtAgentTrap_9012, sCellEventTrap_09_3d=sCellEventTrap_09_3d, shelf=shelf, mngmtAgentTrap_4043=mngmtAgentTrap_4043, maHSVMibRevMajor=maHSVMibRevMajor, sCellEventTrap_09_1c=sCellEventTrap_09_1c, mngmtAgentTrap_12004=mngmtAgentTrap_12004, mngmtAgentTrap_125=mngmtAgentTrap_125, sCellEventTrap_06_1f=sCellEventTrap_06_1f, mngmtAgentTrap_18034=mngmtAgentTrap_18034, mngmtAgentTrap_8008=mngmtAgentTrap_8008, mngmtAgentTrap_27006=mngmtAgentTrap_27006, sCellEventTrap_09_3f=sCellEventTrap_09_3f, mngmtAgentTrap_116=mngmtAgentTrap_116, mngmtAgentTrap_27001=mngmtAgentTrap_27001, mngmtAgentTrap_199=mngmtAgentTrap_199, mngmtAgentTrap_9039=mngmtAgentTrap_9039, mngmtAgentTrap_60=mngmtAgentTrap_60, mngmtAgentTrap_16034=mngmtAgentTrap_16034, sCellEventTrap_07_04=sCellEventTrap_07_04, sCellEventTrap_06_0b=sCellEventTrap_06_0b, mngmtAgentTrap_8033=mngmtAgentTrap_8033, mngmtAgentTrap_27008=mngmtAgentTrap_27008, mngmtAgentTrap_13=mngmtAgentTrap_13, mngmtAgentTrap_27012=mngmtAgentTrap_27012, mngmtAgentTrap_118=mngmtAgentTrap_118, mngmtAgentTrap_10017=mngmtAgentTrap_10017, mngmtAgentTrap_9030=mngmtAgentTrap_9030, mngmtAgentTrap_18052=mngmtAgentTrap_18052, sCellEventTrap_0b_02=sCellEventTrap_0b_02) |
# Python Program To Create Emp Class
# And Make All The Members Of The Emp Class Available To Another Class ie. Myclass
'''
Function Name : This Class Contain Employee Details.
Function Date : 17 Sep 2020
Function Author : Prasad Dangare
Input : String,Integer
Output : String,Integer
'''
class Emp:
# This Is A Constructor
def __init__(self, id, name, salary):
self.id = id
self.name = name
self.salary = salary
# This Is An Instance Method
def display(self):
print('Id = ', self.id)
print('Name = ', self.name)
print('Salary = ', self.salary)
# This Class Display Employee Details
class Myclass:
# Method To Receive Emp Class Instance
# And Display Employee Details
@staticmethod
def mymethod(e):
# Increment Salary Of e By 1000
e.salary+=1000;
e.display()
# Create Emp Class Instance e
e = Emp(10, 'Prasad Dangare', 7057.75)
# Call Static Method Of Myclass And Pass e
Myclass.mymethod(e)
| """
Function Name : This Class Contain Employee Details.
Function Date : 17 Sep 2020
Function Author : Prasad Dangare
Input : String,Integer
Output : String,Integer
"""
class Emp:
def __init__(self, id, name, salary):
self.id = id
self.name = name
self.salary = salary
def display(self):
print('Id = ', self.id)
print('Name = ', self.name)
print('Salary = ', self.salary)
class Myclass:
@staticmethod
def mymethod(e):
e.salary += 1000
e.display()
e = emp(10, 'Prasad Dangare', 7057.75)
Myclass.mymethod(e) |
pi = 3.1456
def funcao1(a, b):
return a + b
| pi = 3.1456
def funcao1(a, b):
return a + b |
# -*- coding: utf-8 -*-
class Solution(object):
def moveZeroes(self, nums):
"""
:type nums: List[int]
:rtype: None Do not return anything, modify nums in-place instead.
"""
pos = 0
for i in range(len(nums)):
if nums[i]:
nums[i], nums[pos] = nums[pos], nums[i]
pos += 1
nums = [0,1,0,3,12]
Solution().moveZeroes(nums)
print(nums) | class Solution(object):
def move_zeroes(self, nums):
"""
:type nums: List[int]
:rtype: None Do not return anything, modify nums in-place instead.
"""
pos = 0
for i in range(len(nums)):
if nums[i]:
(nums[i], nums[pos]) = (nums[pos], nums[i])
pos += 1
nums = [0, 1, 0, 3, 12]
solution().moveZeroes(nums)
print(nums) |
# 2. Sum Matrix Columns
# Write a program that reads a matrix from the console and prints the sum for each column on separate lines.
# On the first line, you will get matrix sizes in format "{rows}, {columns}".
# On the next rows, you will get elements for each column separated with a single space.
# rows, cols = [int(el) for el in input().split(', ')]
#
# matrix = []
# sum_cols = []
#
# for row in range(rows):
# matrix.append([int(el) for el in input().split()])
#
# for col in range(cols):
# sum_cols.extend([0])
# for row in range(rows):
# sum_cols[col] += matrix[row][col]
#
# print("\n".join([str(el) for el in sum_cols]))
rows, cols = [int(el) for el in input().split(', ')]
matrix = []
for row in range(rows):
matrix.append([int(el) for el in input().split()])
for col in range(cols):
sum_col = 0
for row in range(rows):
sum_col += matrix[row][col]
print(sum_col)
| (rows, cols) = [int(el) for el in input().split(', ')]
matrix = []
for row in range(rows):
matrix.append([int(el) for el in input().split()])
for col in range(cols):
sum_col = 0
for row in range(rows):
sum_col += matrix[row][col]
print(sum_col) |
__all__ = (
"TagScriptError",
"WorkloadExceededError",
"ProcessError",
"EmbedParseError",
"BadColourArgument",
)
class TagScriptError(Exception):
"""Base class for all module errors."""
class WorkloadExceededError(TagScriptError):
"""Raised when the interpreter goes over its passed character limit."""
class ProcessError(TagScriptError):
"""
Raised when an exception occurs during interpreter processing.
Attributes
----------
original: Exception
The original exception that occurred during processing.
"""
def __init__(self, error: Exception):
self.original = error
super().__init__(error)
class EmbedParseError(TagScriptError):
"""Raised if an exception occurs while attempting to parse an embed."""
class BadColourArgument(EmbedParseError):
"""
Raised when the passed input fails to convert to `discord.Colour`.
Attributes
----------
argument: str
The invalid input.
"""
def __init__(self, argument: str):
self.argument = argument
super().__init__(f'Colour "{argument}" is invalid.')
| __all__ = ('TagScriptError', 'WorkloadExceededError', 'ProcessError', 'EmbedParseError', 'BadColourArgument')
class Tagscripterror(Exception):
"""Base class for all module errors."""
class Workloadexceedederror(TagScriptError):
"""Raised when the interpreter goes over its passed character limit."""
class Processerror(TagScriptError):
"""
Raised when an exception occurs during interpreter processing.
Attributes
----------
original: Exception
The original exception that occurred during processing.
"""
def __init__(self, error: Exception):
self.original = error
super().__init__(error)
class Embedparseerror(TagScriptError):
"""Raised if an exception occurs while attempting to parse an embed."""
class Badcolourargument(EmbedParseError):
"""
Raised when the passed input fails to convert to `discord.Colour`.
Attributes
----------
argument: str
The invalid input.
"""
def __init__(self, argument: str):
self.argument = argument
super().__init__(f'Colour "{argument}" is invalid.') |
class RawSecurityDescriptor(GenericSecurityDescriptor):
"""
Represents a security descriptor. A security descriptor includes an owner,a primary group,a Discretionary Access Control List (DACL),and a System Access Control List (SACL).
RawSecurityDescriptor(flags: ControlFlags,owner: SecurityIdentifier,group: SecurityIdentifier,systemAcl: RawAcl,discretionaryAcl: RawAcl)
RawSecurityDescriptor(sddlForm: str)
RawSecurityDescriptor(binaryForm: Array[Byte],offset: int)
"""
def SetFlags(self, flags):
"""
SetFlags(self: RawSecurityDescriptor,flags: ControlFlags)
Sets the System.Security.AccessControl.RawSecurityDescriptor.ControlFlags property of this
System.Security.AccessControl.RawSecurityDescriptor object to the specified value.
flags: One or more values of the System.Security.AccessControl.ControlFlags enumeration combined with a
logical OR operation.
"""
pass
@staticmethod
def __new__(self, *__args):
"""
__new__(cls: type,flags: ControlFlags,owner: SecurityIdentifier,group: SecurityIdentifier,systemAcl: RawAcl,discretionaryAcl: RawAcl)
__new__(cls: type,sddlForm: str)
__new__(cls: type,binaryForm: Array[Byte],offset: int)
"""
pass
ControlFlags = property(
lambda self: object(), lambda self, v: None, lambda self: None
)
"""Gets values that specify behavior of the System.Security.AccessControl.RawSecurityDescriptor object.
Get: ControlFlags(self: RawSecurityDescriptor) -> ControlFlags
"""
DiscretionaryAcl = property(
lambda self: object(), lambda self, v: None, lambda self: None
)
"""Gets or sets the Discretionary Access Control List (DACL) for this System.Security.AccessControl.RawSecurityDescriptor object. The DACL contains access rules.
Get: DiscretionaryAcl(self: RawSecurityDescriptor) -> RawAcl
Set: DiscretionaryAcl(self: RawSecurityDescriptor)=value
"""
Group = property(lambda self: object(), lambda self, v: None, lambda self: None)
"""Gets or sets the primary group for this System.Security.AccessControl.RawSecurityDescriptor object.
Get: Group(self: RawSecurityDescriptor) -> SecurityIdentifier
Set: Group(self: RawSecurityDescriptor)=value
"""
Owner = property(lambda self: object(), lambda self, v: None, lambda self: None)
"""Gets or sets the owner of the object associated with this System.Security.AccessControl.RawSecurityDescriptor object.
Get: Owner(self: RawSecurityDescriptor) -> SecurityIdentifier
Set: Owner(self: RawSecurityDescriptor)=value
"""
ResourceManagerControl = property(
lambda self: object(), lambda self, v: None, lambda self: None
)
"""Gets or sets a byte value that represents the resource manager control bits associated with this System.Security.AccessControl.RawSecurityDescriptor object.
Get: ResourceManagerControl(self: RawSecurityDescriptor) -> Byte
Set: ResourceManagerControl(self: RawSecurityDescriptor)=value
"""
SystemAcl = property(lambda self: object(), lambda self, v: None, lambda self: None)
"""Gets or sets the System Access Control List (SACL) for this System.Security.AccessControl.RawSecurityDescriptor object. The SACL contains audit rules.
Get: SystemAcl(self: RawSecurityDescriptor) -> RawAcl
Set: SystemAcl(self: RawSecurityDescriptor)=value
"""
| class Rawsecuritydescriptor(GenericSecurityDescriptor):
"""
Represents a security descriptor. A security descriptor includes an owner,a primary group,a Discretionary Access Control List (DACL),and a System Access Control List (SACL).
RawSecurityDescriptor(flags: ControlFlags,owner: SecurityIdentifier,group: SecurityIdentifier,systemAcl: RawAcl,discretionaryAcl: RawAcl)
RawSecurityDescriptor(sddlForm: str)
RawSecurityDescriptor(binaryForm: Array[Byte],offset: int)
"""
def set_flags(self, flags):
"""
SetFlags(self: RawSecurityDescriptor,flags: ControlFlags)
Sets the System.Security.AccessControl.RawSecurityDescriptor.ControlFlags property of this
System.Security.AccessControl.RawSecurityDescriptor object to the specified value.
flags: One or more values of the System.Security.AccessControl.ControlFlags enumeration combined with a
logical OR operation.
"""
pass
@staticmethod
def __new__(self, *__args):
"""
__new__(cls: type,flags: ControlFlags,owner: SecurityIdentifier,group: SecurityIdentifier,systemAcl: RawAcl,discretionaryAcl: RawAcl)
__new__(cls: type,sddlForm: str)
__new__(cls: type,binaryForm: Array[Byte],offset: int)
"""
pass
control_flags = property(lambda self: object(), lambda self, v: None, lambda self: None)
'Gets values that specify behavior of the System.Security.AccessControl.RawSecurityDescriptor object.\n\n\n\nGet: ControlFlags(self: RawSecurityDescriptor) -> ControlFlags\n\n\n\n'
discretionary_acl = property(lambda self: object(), lambda self, v: None, lambda self: None)
'Gets or sets the Discretionary Access Control List (DACL) for this System.Security.AccessControl.RawSecurityDescriptor object. The DACL contains access rules.\n\n\n\nGet: DiscretionaryAcl(self: RawSecurityDescriptor) -> RawAcl\n\n\n\nSet: DiscretionaryAcl(self: RawSecurityDescriptor)=value\n\n'
group = property(lambda self: object(), lambda self, v: None, lambda self: None)
'Gets or sets the primary group for this System.Security.AccessControl.RawSecurityDescriptor object.\n\n\n\nGet: Group(self: RawSecurityDescriptor) -> SecurityIdentifier\n\n\n\nSet: Group(self: RawSecurityDescriptor)=value\n\n'
owner = property(lambda self: object(), lambda self, v: None, lambda self: None)
'Gets or sets the owner of the object associated with this System.Security.AccessControl.RawSecurityDescriptor object.\n\n\n\nGet: Owner(self: RawSecurityDescriptor) -> SecurityIdentifier\n\n\n\nSet: Owner(self: RawSecurityDescriptor)=value\n\n'
resource_manager_control = property(lambda self: object(), lambda self, v: None, lambda self: None)
'Gets or sets a byte value that represents the resource manager control bits associated with this System.Security.AccessControl.RawSecurityDescriptor object.\n\n\n\nGet: ResourceManagerControl(self: RawSecurityDescriptor) -> Byte\n\n\n\nSet: ResourceManagerControl(self: RawSecurityDescriptor)=value\n\n'
system_acl = property(lambda self: object(), lambda self, v: None, lambda self: None)
'Gets or sets the System Access Control List (SACL) for this System.Security.AccessControl.RawSecurityDescriptor object. The SACL contains audit rules.\n\n\n\nGet: SystemAcl(self: RawSecurityDescriptor) -> RawAcl\n\n\n\nSet: SystemAcl(self: RawSecurityDescriptor)=value\n\n' |
##Patterns: E0100
class Test():
##Err: E0100
def __init__(self):
for i in (1, 2, 3):
yield i * i | class Test:
def __init__(self):
for i in (1, 2, 3):
yield (i * i) |
class ChromaprintNotFoundException(Exception):
pass
class FingerprintGenerationError(Exception):
pass
class WebServiceError(Exception):
pass
class FileNotIdentifiedException(Exception):
pass
| class Chromaprintnotfoundexception(Exception):
pass
class Fingerprintgenerationerror(Exception):
pass
class Webserviceerror(Exception):
pass
class Filenotidentifiedexception(Exception):
pass |
class Sample():
# class object attribute
# same for any instant of a class
species = 'mammal'
def __init__(self, my_breed, name, spots):
# attributes
# we take in the argument
# Assign it using self.attribute_name
self.breed = my_breed
self.name = name
# Expect boolean True/False
self.spots = spots
# operation/Actions ---> Methods
def bark(self, number):
print("Woof! My name is {} and number is {}".format(self.name, number))
my_dog = Sample(my_breed='Lab', name='Sammy', spots=False)
print(my_dog.species)
print(my_dog.name)
my_dog = my_dog.bark(10)
print(my_dog)
class Circle():
# CLASS OBJECT ATTRIBUTE
pi = 3.1416
def __init__(self, radius=1):
self.radius = radius
self.area = radius * radius * Circle.pi
# METHOD
def get_circumference(self):
return self.radius * self.pi * 2
my_circle = Circle(30)
print(my_circle.area)
| class Sample:
species = 'mammal'
def __init__(self, my_breed, name, spots):
self.breed = my_breed
self.name = name
self.spots = spots
def bark(self, number):
print('Woof! My name is {} and number is {}'.format(self.name, number))
my_dog = sample(my_breed='Lab', name='Sammy', spots=False)
print(my_dog.species)
print(my_dog.name)
my_dog = my_dog.bark(10)
print(my_dog)
class Circle:
pi = 3.1416
def __init__(self, radius=1):
self.radius = radius
self.area = radius * radius * Circle.pi
def get_circumference(self):
return self.radius * self.pi * 2
my_circle = circle(30)
print(my_circle.area) |
# 23049 - WH 4th job advancement
BELLE = 2159111
GELIMERS_KEY_CARD = 4032743
SECRET_PLAZA = 310010000
sm.setSpeakerID(BELLE)
sm.sendNext("Did you destroy the Black Wings' new weapon? Nice work. I'm proud to have you in the Resistance.")
if sm.sendAskYesNo("But it's too early to celebrate. #p2154009# will show up with his goons when he hears the news. Let's get out of here via the Underground Base Hideout Return Scroll. On my count. One... two... three!"):
sm.completeQuest(parentID)
sm.consumeItem(GELIMERS_KEY_CARD)
sm.warpInstanceOut(SECRET_PLAZA, 0)
else:
sm.dispose() | belle = 2159111
gelimers_key_card = 4032743
secret_plaza = 310010000
sm.setSpeakerID(BELLE)
sm.sendNext("Did you destroy the Black Wings' new weapon? Nice work. I'm proud to have you in the Resistance.")
if sm.sendAskYesNo("But it's too early to celebrate. #p2154009# will show up with his goons when he hears the news. Let's get out of here via the Underground Base Hideout Return Scroll. On my count. One... two... three!"):
sm.completeQuest(parentID)
sm.consumeItem(GELIMERS_KEY_CARD)
sm.warpInstanceOut(SECRET_PLAZA, 0)
else:
sm.dispose() |
# ----------------------------------------------------------------------------
# CLASSES: nightly
#
# Test Case: bov.py
#
# Tests: mesh - 3D rectilinear, multiple domain
# plots - Pseudocolor, Subset, Label, Contour
# operators - Slice
#
# Programmer: Brad Whitlock
# Date: Fri Mar 17 14:37:45 PST 2006
#
# Modifications:
# Brad Whitlock, Thu May 4 14:02:29 PST 2006
# Added testing of INT and DOUBLE BOV files.
#
# ----------------------------------------------------------------------------
def SaveTestImage(name):
# Save these images somewhat larger than a regular test case image
# since the images contain a lot of text.
backup = GetSaveWindowAttributes()
swa = SaveWindowAttributes()
swa.width = 500
swa.height = 500
swa.screenCapture = 0
Test(name, swa)
SetSaveWindowAttributes(backup)
def TestBOVDivide(prefix, db, doSubset):
# Take a picture to make sure that the division took. There will be
# a lot of bricks.
OpenDatabase(db)
if doSubset:
AddPlot("Subset", "bricks")
subAtts = SubsetAttributes()
subAtts.legendFlag = 0
SetPlotOptions(subAtts)
else:
AddPlot("Pseudocolor", "myvar")
DrawPlots()
v = View3DAttributes()
v.viewNormal = (0.534598, 0.40012, 0.744385)
v.focus = (15, 15, 15)
v.viewUp = (-0.228183, 0.916444, -0.32873)
v.viewAngle = 30
v.parallelScale = 8.66025
v.nearPlane = -17.3205
v.farPlane = 17.3205
v.imagePan = (0, 0)
v.imageZoom = 1
v.perspective = 1
v.eyeAngle = 2
v.centerOfRotationSet = 0
v.centerOfRotation = (15, 15, 15)
SetView3D(v)
Test(prefix + "00")
# Make sure there are the right number of zones.
Query("NumZones",use_actual_data=0)
TestText(prefix + "01", GetQueryOutputString())
# Let's slice a few times to make sure that crucial areas have the
# right values
AddPlot("Mesh", "mesh")
AddPlot("Label", "myvar")
L = LabelAttributes()
L.textHeight1 = 0.03
L.textHeight2 = 0.03
SetPlotOptions(L)
SetActivePlots((0,1,2))
AddOperator("Slice")
s = SliceAttributes()
s.originType = s.Intercept # Point, Intercept, Percent, Zone, Node
s.originIntercept = 10.001
s.normal = (0, 0, 1)
s.axisType = s.ZAxis # XAxis, YAxis, ZAxis, Arbitrary
s.upAxis = (0, 1, 0)
s.project2d = 1
SetOperatorOptions(s)
DrawPlots()
v2 = GetView2D()
v2.windowCoords = (12.0201, 13.0004, 9.99781, 10.9888)
v2.viewportCoords = (0.2, 0.95, 0.15, 0.95)
v2.fullFrameActivationMode = v2.Auto # On, Off, Auto
v2.fullFrameAutoThreshold = 100
SetView2D(v2)
SaveTestImage(prefix+"02")
# Move to another slice on the far edge that will have the max zone #
s.originIntercept = 19.998
SetOperatorOptions(s)
v3 = View2DAttributes()
v3.windowCoords = (19.2017, 20.0179, 19.1966, 20.0217)
v3.viewportCoords = (0.2, 0.95, 0.15, 0.95)
v3.fullFrameActivationMode = v3.Auto # On, Off, Auto
v3.fullFrameAutoThreshold = 100
SetView2D(v3)
SaveTestImage(prefix+"03")
# Move to another slice in the middle.
s.originIntercept = 15.01
SetOperatorOptions(s)
v4 = View2DAttributes()
v4.windowCoords = (14.6419, 15.361, 15.638, 16.365)
v4.viewportCoords = (0.2, 0.95, 0.15, 0.95)
v4.fullFrameActivationMode = v4.Auto # On, Off, Auto
v4.fullFrameAutoThreshold = 100
SetView2D(v4)
SaveTestImage(prefix+"04")
DeleteAllPlots()
# Test that ghost zones are right.
AddPlot("Pseudocolor", "myvar")
p = PseudocolorAttributes()
p.SetOpacityType(p.Constant)
p.opacity = 0.25
SetPlotOptions(p)
DrawPlots()
v5 = View3DAttributes()
v5.viewNormal = (0.772475, 0.402431, 0.491255)
v5.focus = (15, 15, 15)
v5.viewUp = (-0.355911, 0.915018, -0.18992)
v5.viewAngle = 30
v5.parallelScale = 8.66025
v5.nearPlane = -17.3205
v5.farPlane = 17.3205
v5.imagePan = (-0.0253114, 0.0398304)
v5.imageZoom = 1.20806
v5.perspective = 1
v5.eyeAngle = 2
v5.centerOfRotationSet = 0
v5.centerOfRotation = (15, 15, 15)
SetView3D(v5)
Test(prefix+"05")
# Zoom in on a contour plot to make sure that there are no tears.
# This means that the ghost zones were created properly.
ClearWindow()
p.SetOpacityType(p.FullyOpaque)
SetPlotOptions(p)
AddOperator("Isosurface")
iso = IsosurfaceAttributes()
iso.variable = "radial"
SetOperatorOptions(iso)
DrawPlots()
v6 = View3DAttributes()
v6.viewNormal = (0.373168, 0.412282, 0.831125)
v6.focus = (15, 15, 15)
v6.viewUp = (-0.181836, 0.910964, -0.370244)
v6.viewAngle = 30
v6.parallelScale = 8.66025
v6.nearPlane = -17.3205
v6.farPlane = 17.3205
v6.imagePan = (0.0994254, 0.0810457)
v6.imageZoom = 1.94126
v6.perspective = 1
v6.eyeAngle = 2
v6.centerOfRotationSet = 0
v6.centerOfRotation = (15, 15, 15)
SetView3D(v6)
Test(prefix+"06")
DeleteAllPlots()
CloseDatabase(db)
def TestBOVType(bovtype, prefixes):
# Test the original BOV file without it being divided.
TestSection("Reading BOV file of %s" % bovtype)
TestBOVDivide(prefixes[0], data_path("bov_test_data/%s_indices.bov") % bovtype, 0)
#
# Test 2 BOV files that are being subdivided into smaller bricks
# by the BOV plugin so that there are multiple domains that
# can be processed in parallel.
#
TestSection("Decomposing BOV of %s into smaller bricks" % bovtype)
TestBOVDivide(prefixes[1], data_path("bov_test_data/%s_indices_div.bov") % bovtype, 1)
TestSection("Decomposing BOV of %s with small header into smaller bricks" % bovtype)
TestBOVDivide(prefixes[2], data_path("bov_test_data/%s_indices_div_with_header.bov") % bovtype, 1)
def main():
# Define some expressions
DefineScalarExpression("x", "coord(mesh)[0]")
DefineScalarExpression("y", "coord(mesh)[1]")
DefineScalarExpression("z", "coord(mesh)[2]")
DefineScalarExpression("dx", "x - 15.")
DefineScalarExpression("dy", "y - 15.")
DefineScalarExpression("dz", "z - 15.")
DefineScalarExpression("radial", "sqrt(dx*dx + dy*dy + dz*dz)")
TestBOVType("FLOAT", ("bov_0_", "bov_1_", "bov_2_"))
TestBOVType("DOUBLE", ("bov_3_", "bov_4_", "bov_5_"))
TestBOVType("INT", ("bov_6_", "bov_7_", "bov_8_"))
Exit()
main()
| def save_test_image(name):
backup = get_save_window_attributes()
swa = save_window_attributes()
swa.width = 500
swa.height = 500
swa.screenCapture = 0
test(name, swa)
set_save_window_attributes(backup)
def test_bov_divide(prefix, db, doSubset):
open_database(db)
if doSubset:
add_plot('Subset', 'bricks')
sub_atts = subset_attributes()
subAtts.legendFlag = 0
set_plot_options(subAtts)
else:
add_plot('Pseudocolor', 'myvar')
draw_plots()
v = view3_d_attributes()
v.viewNormal = (0.534598, 0.40012, 0.744385)
v.focus = (15, 15, 15)
v.viewUp = (-0.228183, 0.916444, -0.32873)
v.viewAngle = 30
v.parallelScale = 8.66025
v.nearPlane = -17.3205
v.farPlane = 17.3205
v.imagePan = (0, 0)
v.imageZoom = 1
v.perspective = 1
v.eyeAngle = 2
v.centerOfRotationSet = 0
v.centerOfRotation = (15, 15, 15)
set_view3_d(v)
test(prefix + '00')
query('NumZones', use_actual_data=0)
test_text(prefix + '01', get_query_output_string())
add_plot('Mesh', 'mesh')
add_plot('Label', 'myvar')
l = label_attributes()
L.textHeight1 = 0.03
L.textHeight2 = 0.03
set_plot_options(L)
set_active_plots((0, 1, 2))
add_operator('Slice')
s = slice_attributes()
s.originType = s.Intercept
s.originIntercept = 10.001
s.normal = (0, 0, 1)
s.axisType = s.ZAxis
s.upAxis = (0, 1, 0)
s.project2d = 1
set_operator_options(s)
draw_plots()
v2 = get_view2_d()
v2.windowCoords = (12.0201, 13.0004, 9.99781, 10.9888)
v2.viewportCoords = (0.2, 0.95, 0.15, 0.95)
v2.fullFrameActivationMode = v2.Auto
v2.fullFrameAutoThreshold = 100
set_view2_d(v2)
save_test_image(prefix + '02')
s.originIntercept = 19.998
set_operator_options(s)
v3 = view2_d_attributes()
v3.windowCoords = (19.2017, 20.0179, 19.1966, 20.0217)
v3.viewportCoords = (0.2, 0.95, 0.15, 0.95)
v3.fullFrameActivationMode = v3.Auto
v3.fullFrameAutoThreshold = 100
set_view2_d(v3)
save_test_image(prefix + '03')
s.originIntercept = 15.01
set_operator_options(s)
v4 = view2_d_attributes()
v4.windowCoords = (14.6419, 15.361, 15.638, 16.365)
v4.viewportCoords = (0.2, 0.95, 0.15, 0.95)
v4.fullFrameActivationMode = v4.Auto
v4.fullFrameAutoThreshold = 100
set_view2_d(v4)
save_test_image(prefix + '04')
delete_all_plots()
add_plot('Pseudocolor', 'myvar')
p = pseudocolor_attributes()
p.SetOpacityType(p.Constant)
p.opacity = 0.25
set_plot_options(p)
draw_plots()
v5 = view3_d_attributes()
v5.viewNormal = (0.772475, 0.402431, 0.491255)
v5.focus = (15, 15, 15)
v5.viewUp = (-0.355911, 0.915018, -0.18992)
v5.viewAngle = 30
v5.parallelScale = 8.66025
v5.nearPlane = -17.3205
v5.farPlane = 17.3205
v5.imagePan = (-0.0253114, 0.0398304)
v5.imageZoom = 1.20806
v5.perspective = 1
v5.eyeAngle = 2
v5.centerOfRotationSet = 0
v5.centerOfRotation = (15, 15, 15)
set_view3_d(v5)
test(prefix + '05')
clear_window()
p.SetOpacityType(p.FullyOpaque)
set_plot_options(p)
add_operator('Isosurface')
iso = isosurface_attributes()
iso.variable = 'radial'
set_operator_options(iso)
draw_plots()
v6 = view3_d_attributes()
v6.viewNormal = (0.373168, 0.412282, 0.831125)
v6.focus = (15, 15, 15)
v6.viewUp = (-0.181836, 0.910964, -0.370244)
v6.viewAngle = 30
v6.parallelScale = 8.66025
v6.nearPlane = -17.3205
v6.farPlane = 17.3205
v6.imagePan = (0.0994254, 0.0810457)
v6.imageZoom = 1.94126
v6.perspective = 1
v6.eyeAngle = 2
v6.centerOfRotationSet = 0
v6.centerOfRotation = (15, 15, 15)
set_view3_d(v6)
test(prefix + '06')
delete_all_plots()
close_database(db)
def test_bov_type(bovtype, prefixes):
test_section('Reading BOV file of %s' % bovtype)
test_bov_divide(prefixes[0], data_path('bov_test_data/%s_indices.bov') % bovtype, 0)
test_section('Decomposing BOV of %s into smaller bricks' % bovtype)
test_bov_divide(prefixes[1], data_path('bov_test_data/%s_indices_div.bov') % bovtype, 1)
test_section('Decomposing BOV of %s with small header into smaller bricks' % bovtype)
test_bov_divide(prefixes[2], data_path('bov_test_data/%s_indices_div_with_header.bov') % bovtype, 1)
def main():
define_scalar_expression('x', 'coord(mesh)[0]')
define_scalar_expression('y', 'coord(mesh)[1]')
define_scalar_expression('z', 'coord(mesh)[2]')
define_scalar_expression('dx', 'x - 15.')
define_scalar_expression('dy', 'y - 15.')
define_scalar_expression('dz', 'z - 15.')
define_scalar_expression('radial', 'sqrt(dx*dx + dy*dy + dz*dz)')
test_bov_type('FLOAT', ('bov_0_', 'bov_1_', 'bov_2_'))
test_bov_type('DOUBLE', ('bov_3_', 'bov_4_', 'bov_5_'))
test_bov_type('INT', ('bov_6_', 'bov_7_', 'bov_8_'))
exit()
main() |
def record(data, source, target="_use_source_"):
if source in data:
# get source var value:
source_var_value = data[source]
# get target var name:
if target == "_use_source_":
target = source
# record variable:
_ttp_["vars"].update({target: source_var_value})
_ttp_["global_vars"].update({target: source_var_value})
return data, None
| def record(data, source, target='_use_source_'):
if source in data:
source_var_value = data[source]
if target == '_use_source_':
target = source
_ttp_['vars'].update({target: source_var_value})
_ttp_['global_vars'].update({target: source_var_value})
return (data, None) |
def print_formatted(number):
align = len(bin(number)[2:])
for num in range(1, number + 1):
n_dec = str(num)
n_oct = oct(num)[2:]
n_hex = hex(num)[2:].upper()
n_bin = bin(num)[2:]
print(n_dec.rjust(align), n_oct.rjust(align), n_hex.rjust(align), n_bin.rjust(align)) | def print_formatted(number):
align = len(bin(number)[2:])
for num in range(1, number + 1):
n_dec = str(num)
n_oct = oct(num)[2:]
n_hex = hex(num)[2:].upper()
n_bin = bin(num)[2:]
print(n_dec.rjust(align), n_oct.rjust(align), n_hex.rjust(align), n_bin.rjust(align)) |
#T# the following code shows how to do an algebraic determination that a quadrilateral is a parallelogram
#T# create the points of the quadrilateral
A = (0, 0)
B = (5, 0)
C = (8, 2.4)
D = (3, 2.4)
#T# calculate the slopes of the four sides
m_AB = (B[1] - A[1])/(B[0] - A[0]) # 0.0
m_BC = (C[1] - B[1])/(C[0] - B[0]) # 0.7999999999999999
m_CD = (D[1] - C[1])/(D[0] - C[0]) # -0.0
m_DA = (A[1] - D[1])/(A[0] - D[0]) # 0.7999999999999999
#T# check if the opposite sides have equal slopes, if they do, then the quadrilateral is a parallelogram
bool_AB_CD = m_AB == m_CD # True
bool_BC_DA = m_BC == m_DA # True | a = (0, 0)
b = (5, 0)
c = (8, 2.4)
d = (3, 2.4)
m_ab = (B[1] - A[1]) / (B[0] - A[0])
m_bc = (C[1] - B[1]) / (C[0] - B[0])
m_cd = (D[1] - C[1]) / (D[0] - C[0])
m_da = (A[1] - D[1]) / (A[0] - D[0])
bool_ab_cd = m_AB == m_CD
bool_bc_da = m_BC == m_DA |
EXPECTED_CREATE_REQUEST = {
'ServiceDeskPlus(val.ID===obj.ID)': {
'Request': {
'Subject': 'Create request test',
'Mode': {
'name': 'E-Mail',
'id': '123640000000006665'
},
'IsRead': False,
'CancellationRequested': False,
'IsTrashed': False,
'Id': '123456789',
'Group': {
'site': None,
'deleted': False,
'name': 'Network',
'id': '123640000000006681'
},
'Requester': {
'email_id': None,
'is_technician': False,
'sms_mail': None,
'phone': None,
'name': 'First Last',
'mobile': None,
'id': '123640000000244019',
'photo_url': 'https://contacts.zoho.com/file?exp=10&ID=-1&t=user&height=60&width=60',
'is_vip_user': False,
'department': None
},
'CreatedTime': '2020-06-24T12:05:00.000Z',
'Level': {
'name': 'Tier 1',
'id': '123640000000006671'
},
'Impact': {
'name': 'Affects Group',
'id': '123640000000008036'
},
'Priority': {
'color': '#ff0000',
'name': 'High',
'id': '123640000000006805'
},
'CreatedBy': {
'email_id': 'email@address.com',
'is_technician': True,
'sms_mail': None,
'phone': None,
'name': 'First Last',
'mobile': None,
'id': '123640000000142582',
'photo_url': 'https://contacts.zoho.com/file?exp=10&ID=712874208&t=user&height=60&width=60',
'is_vip_user': False,
'department': None
},
'IsEscalated': False,
'LastUpdatedTime': '2020-06-24T12:05:00.000Z',
'HasNotes': False,
'Status': 'On Hold',
'Template': {
'name': 'Default Request',
'id': '123640000000006655'
},
'RequestType': {
'name': 'Incident',
'id': '123640000000008391'
},
'DisplayId': '102',
'TimeElapsed': '0',
'Description': 'The description of the request',
'IsServiceRequest': False,
'Urgency': {
'name': 'Normal',
'id': '123640000000007921'
},
'HasRequestInitiatedChange': False,
'IsReopened': False,
'HasAttachments': False,
'HasLinkedRequests': False,
'IsOverdue': False,
'HasProblem': False,
'IsFcr': False,
'HasProject': False,
'IsFirstResponseOverdue': False,
'UnrepliedCount': 0
}
}
}
EXPECTED_UPDATE_REQUEST = {
'ServiceDeskPlus(val.ID===obj.ID)': {
'Request': {
'Subject': 'Test create request',
'Mode': {
'name': 'E-Mail',
'id': '123640000000006665'
},
'IsRead': False,
'CancellationRequested': False,
'IsTrashed': False,
'Id': '123456789',
'Group': {
'site': None,
'deleted': False,
'name': 'Network',
'id': '123640000000006681'
},
'Requester': {
'email_id': None,
'is_technician': False,
'sms_mail': None,
'phone': None,
'name': 'First Last',
'mobile': None,
'id': '123640000000244019',
'photo_url': 'https://contacts.zoho.com/file?exp=10&ID=-1&t=user&height=60&width=60',
'is_vip_user': False,
'department': None
},
'CreatedTime': '2020-06-24T12:05:00.000Z',
'Level': {
'name': 'Tier 1',
'id': '123640000000006671'
},
'Impact': {
'name': 'Affects Business',
'id': '123640000000008033'
},
'Priority': {
'color': '#ff0000',
'name': 'High',
'id': '123640000000006805'
},
'CreatedBy': {
'email_id': 'email@address.com',
'is_technician': True,
'sms_mail': None,
'phone': None,
'name': 'First Last',
'mobile': None,
'id': '123640000000142582',
'photo_url': 'https://contacts.zoho.com/file?exp=10&ID=712874208&t=user&height=60&width=60',
'is_vip_user': False,
'department': None
},
'IsEscalated': False,
'LastUpdatedTime': '2020-06-24T15:06:17.000Z',
'HasNotes': False,
'Status': 'Open',
'Template': {
'name': 'Default Request',
'id': '123640000000006655'
},
'RequestType': {
'name': 'Incident',
'id': '123640000000008391'
},
'DisplayId': '102',
'TimeElapsed': '0',
'Description': 'Update the description',
'IsServiceRequest': False,
'Urgency': {
'name': 'Normal',
'id': '123640000000007921'
},
'HasRequestInitiatedChange': False,
'IsReopened': False,
'HasAttachments': False,
'HasLinkedRequests': False,
'IsOverdue': False,
'HasProblem': False,
'IsFcr': False,
'HasProject': False,
'IsFirstResponseOverdue': False,
'UnrepliedCount': 0
}
}
}
EXPECTED_LIST_SINGLE_REQUEST = {
'ServiceDeskPlus(val.ID===obj.ID)': {
'Request': [{
'Subject': 'Test create request',
'Mode': {
'name': 'E-Mail',
'id': '123640000000006665'
},
'IsRead': False,
'CancellationRequested': False,
'IsTrashed': False,
'Id': '123640000000240013',
'Group': {
'site': None,
'deleted': False,
'name': 'Network',
'id': '123640000000006681'
},
'Requester': {
'email_id': None,
'is_technician': False,
'sms_mail': None,
'phone': None,
'name': 'First Last',
'mobile': None,
'id': '123640000000244019',
'photo_url': 'https://contacts.zoho.com/file?exp=10&ID=-1&t=user&height=60&width=60',
'is_vip_user': False,
'department': None
},
'CreatedTime': '2020-06-24T12:05:00.000Z',
'Level': {
'name': 'Tier 1',
'id': '123640000000006671'
},
'Impact': {
'name': 'Affects Business',
'id': '123640000000008033'
},
'Priority': {
'color': '#ff0000',
'name': 'High',
'id': '123640000000006805'
},
'CreatedBy': {
'email_id': 'email@address.com',
'is_technician': True,
'sms_mail': None,
'phone': None,
'name': 'First Last',
'mobile': None,
'id': '123640000000142582',
'photo_url': 'https://contacts.zoho.com/file?exp=10&ID=712874208&t=user&height=60&width=60',
'is_vip_user': False,
'department': None
},
'IsEscalated': False,
'LastUpdatedTime': '2020-06-24T15:27:44.000Z',
'HasNotes': False,
'Status': 'Open',
'Template': {
'name': 'Default Request',
'id': '123640000000006655'
},
'RequestType': {
'name': 'Incident',
'id': '123640000000008391'
},
'DisplayId': '102',
'TimeElapsed': '0',
'Description': 'Update the description',
'IsServiceRequest': False,
'Urgency': {
'name': 'Normal',
'id': '123640000000007921'
},
'HasRequestInitiatedChange': False,
'IsReopened': False,
'HasAttachments': False,
'HasLinkedRequests': False,
'IsOverdue': False,
'HasProblem': False,
'IsFcr': False,
'HasProject': False,
'IsFirstResponseOverdue': False,
'UnrepliedCount': 0
}]
}
}
EXPECTED_LIST_MULTIPLE_REQUESTS = {
'ServiceDeskPlus(val.ID===obj.ID)': {
'Request': [{
'Requester': {
'email_id': 'email@address.com',
'is_technician': True,
'sms_mail': None,
'phone': None,
'name': 'First Last',
'mobile': None,
'id': '123640000000142582',
'photo_url': 'https://contacts.zoho.com/file?exp=10&ID=712874208&t=user&height=60&width=60',
'is_vip_user': False,
'department': None
},
'Template': {
'name': 'Default Request',
'id': '123640000000006655'
},
'CreatedTime': '2020-06-08T12:07:36.000Z',
'DisplayId': '74',
'Subject': 'request 1',
'Technician': {
'email_id': 'email@address.com',
'cost_per_hour': '0',
'phone': None,
'name': 'First Last',
'mobile': None,
'id': '123640000000142552',
'photo_url': 'https://contacts.zoho.com/file?exp=10&ID=712510951&t=user&height=60&width=60',
'sms_mail_id': None
},
'IsServiceRequest': False,
'CancellationRequested': False,
'HasNotes': False,
'Id': '123640000000215007',
'Status': 'Open'
}, {
'Requester': {
'email_id': 'email@address.com',
'is_technician': True,
'sms_mail': None,
'phone': None,
'name': 'First Last',
'mobile': None,
'id': '123640000000142582',
'photo_url': 'https://contacts.zoho.com/file?exp=10&ID=712874208&t=user&height=60&width=60',
'is_vip_user': False,
'department': None
},
'Template': {
'name': 'Default Request',
'id': '123640000000006655'
},
'CreatedTime': '2020-06-08T12:05:44.000Z',
'DisplayId': '73',
'Subject': 'check request outputs',
'Technician': {
'email_id': 'email@address.com',
'cost_per_hour': '0',
'phone': None,
'name': 'First Last',
'mobile': None,
'id': '123640000000142552',
'photo_url': 'https://contacts.zoho.com/file?exp=10&ID=712510951&t=user&height=60&width=60',
'sms_mail_id': None
},
'IsServiceRequest': False,
'CancellationRequested': False,
'HasNotes': False,
'Id': '123640000000216003',
'Status': 'Open'
}, {
'Requester': {
'email_id': 'email@address.com',
'is_technician': True,
'sms_mail': None,
'phone': None,
'name': 'First Last',
'mobile': None,
'id': '123640000000142582',
'photo_url': 'https://contacts.zoho.com/file?exp=10&ID=712874208&t=user&height=60&width=60',
'is_vip_user': False,
'department': None
},
'Template': {
'name': 'Default Request',
'id': '123640000000006655'
},
'CreatedTime': '2020-06-08T12:15:35.000Z',
'DisplayId': '75',
'Subject': 'updated request 2 from demisto',
'Technician': {
'email_id': 'email@address.com',
'cost_per_hour': '0',
'phone': None,
'name': 'First Last',
'mobile': None,
'id': '123640000000142552',
'photo_url': 'https://contacts.zoho.com/file?exp=10&ID=712510951&t=user&height=60&width=60',
'sms_mail_id': None
},
'IsServiceRequest': False,
'CancellationRequested': False,
'HasNotes': False,
'Id': '123640000000217001',
'Status': 'Open'
}]
}
}
EXPECTED_LINKED_REQUEST_LIST = {
'ServiceDeskPlus.Request(val.ID===obj.ID)': {
'LinkRequests': [{
'LinkedRequest': {
'subject': 'Test create request',
'id': '123640000000240013',
'udf_fields': {
'udf_char1': None
},
'display_id': '102'
}
}, {
'LinkedRequest': {
'subject': 'Updating the last request',
'id': '123640000000241001',
'udf_fields': {
'udf_char1': None
},
'display_id': '96'
}
}]
}
}
EXPECTED_RESOLUTION_LIST = {
'ServiceDeskPlus.Request(val.ID===obj.ID)': {
'Resolution': {
'SubmittedOn': '2020-06-09T14:32:15.000Z',
'SubmittedBy': {
'email_id': 'email@address.com',
'is_technician': True,
'sms_mail': None,
'phone': None,
'name': 'First Last',
'mobile': None,
'id': '123640000000142582',
'photo_url': 'https://contacts.zoho.com/file?exp=10&ID=712874208&t=user&height=60&width=60',
'is_vip_user': False,
'department': None
},
'Content': 'changing resolution from demisto'
}
}
}
EXPECTED_NO_RESOLUTION_LIST = {}
| expected_create_request = {'ServiceDeskPlus(val.ID===obj.ID)': {'Request': {'Subject': 'Create request test', 'Mode': {'name': 'E-Mail', 'id': '123640000000006665'}, 'IsRead': False, 'CancellationRequested': False, 'IsTrashed': False, 'Id': '123456789', 'Group': {'site': None, 'deleted': False, 'name': 'Network', 'id': '123640000000006681'}, 'Requester': {'email_id': None, 'is_technician': False, 'sms_mail': None, 'phone': None, 'name': 'First Last', 'mobile': None, 'id': '123640000000244019', 'photo_url': 'https://contacts.zoho.com/file?exp=10&ID=-1&t=user&height=60&width=60', 'is_vip_user': False, 'department': None}, 'CreatedTime': '2020-06-24T12:05:00.000Z', 'Level': {'name': 'Tier 1', 'id': '123640000000006671'}, 'Impact': {'name': 'Affects Group', 'id': '123640000000008036'}, 'Priority': {'color': '#ff0000', 'name': 'High', 'id': '123640000000006805'}, 'CreatedBy': {'email_id': 'email@address.com', 'is_technician': True, 'sms_mail': None, 'phone': None, 'name': 'First Last', 'mobile': None, 'id': '123640000000142582', 'photo_url': 'https://contacts.zoho.com/file?exp=10&ID=712874208&t=user&height=60&width=60', 'is_vip_user': False, 'department': None}, 'IsEscalated': False, 'LastUpdatedTime': '2020-06-24T12:05:00.000Z', 'HasNotes': False, 'Status': 'On Hold', 'Template': {'name': 'Default Request', 'id': '123640000000006655'}, 'RequestType': {'name': 'Incident', 'id': '123640000000008391'}, 'DisplayId': '102', 'TimeElapsed': '0', 'Description': 'The description of the request', 'IsServiceRequest': False, 'Urgency': {'name': 'Normal', 'id': '123640000000007921'}, 'HasRequestInitiatedChange': False, 'IsReopened': False, 'HasAttachments': False, 'HasLinkedRequests': False, 'IsOverdue': False, 'HasProblem': False, 'IsFcr': False, 'HasProject': False, 'IsFirstResponseOverdue': False, 'UnrepliedCount': 0}}}
expected_update_request = {'ServiceDeskPlus(val.ID===obj.ID)': {'Request': {'Subject': 'Test create request', 'Mode': {'name': 'E-Mail', 'id': '123640000000006665'}, 'IsRead': False, 'CancellationRequested': False, 'IsTrashed': False, 'Id': '123456789', 'Group': {'site': None, 'deleted': False, 'name': 'Network', 'id': '123640000000006681'}, 'Requester': {'email_id': None, 'is_technician': False, 'sms_mail': None, 'phone': None, 'name': 'First Last', 'mobile': None, 'id': '123640000000244019', 'photo_url': 'https://contacts.zoho.com/file?exp=10&ID=-1&t=user&height=60&width=60', 'is_vip_user': False, 'department': None}, 'CreatedTime': '2020-06-24T12:05:00.000Z', 'Level': {'name': 'Tier 1', 'id': '123640000000006671'}, 'Impact': {'name': 'Affects Business', 'id': '123640000000008033'}, 'Priority': {'color': '#ff0000', 'name': 'High', 'id': '123640000000006805'}, 'CreatedBy': {'email_id': 'email@address.com', 'is_technician': True, 'sms_mail': None, 'phone': None, 'name': 'First Last', 'mobile': None, 'id': '123640000000142582', 'photo_url': 'https://contacts.zoho.com/file?exp=10&ID=712874208&t=user&height=60&width=60', 'is_vip_user': False, 'department': None}, 'IsEscalated': False, 'LastUpdatedTime': '2020-06-24T15:06:17.000Z', 'HasNotes': False, 'Status': 'Open', 'Template': {'name': 'Default Request', 'id': '123640000000006655'}, 'RequestType': {'name': 'Incident', 'id': '123640000000008391'}, 'DisplayId': '102', 'TimeElapsed': '0', 'Description': 'Update the description', 'IsServiceRequest': False, 'Urgency': {'name': 'Normal', 'id': '123640000000007921'}, 'HasRequestInitiatedChange': False, 'IsReopened': False, 'HasAttachments': False, 'HasLinkedRequests': False, 'IsOverdue': False, 'HasProblem': False, 'IsFcr': False, 'HasProject': False, 'IsFirstResponseOverdue': False, 'UnrepliedCount': 0}}}
expected_list_single_request = {'ServiceDeskPlus(val.ID===obj.ID)': {'Request': [{'Subject': 'Test create request', 'Mode': {'name': 'E-Mail', 'id': '123640000000006665'}, 'IsRead': False, 'CancellationRequested': False, 'IsTrashed': False, 'Id': '123640000000240013', 'Group': {'site': None, 'deleted': False, 'name': 'Network', 'id': '123640000000006681'}, 'Requester': {'email_id': None, 'is_technician': False, 'sms_mail': None, 'phone': None, 'name': 'First Last', 'mobile': None, 'id': '123640000000244019', 'photo_url': 'https://contacts.zoho.com/file?exp=10&ID=-1&t=user&height=60&width=60', 'is_vip_user': False, 'department': None}, 'CreatedTime': '2020-06-24T12:05:00.000Z', 'Level': {'name': 'Tier 1', 'id': '123640000000006671'}, 'Impact': {'name': 'Affects Business', 'id': '123640000000008033'}, 'Priority': {'color': '#ff0000', 'name': 'High', 'id': '123640000000006805'}, 'CreatedBy': {'email_id': 'email@address.com', 'is_technician': True, 'sms_mail': None, 'phone': None, 'name': 'First Last', 'mobile': None, 'id': '123640000000142582', 'photo_url': 'https://contacts.zoho.com/file?exp=10&ID=712874208&t=user&height=60&width=60', 'is_vip_user': False, 'department': None}, 'IsEscalated': False, 'LastUpdatedTime': '2020-06-24T15:27:44.000Z', 'HasNotes': False, 'Status': 'Open', 'Template': {'name': 'Default Request', 'id': '123640000000006655'}, 'RequestType': {'name': 'Incident', 'id': '123640000000008391'}, 'DisplayId': '102', 'TimeElapsed': '0', 'Description': 'Update the description', 'IsServiceRequest': False, 'Urgency': {'name': 'Normal', 'id': '123640000000007921'}, 'HasRequestInitiatedChange': False, 'IsReopened': False, 'HasAttachments': False, 'HasLinkedRequests': False, 'IsOverdue': False, 'HasProblem': False, 'IsFcr': False, 'HasProject': False, 'IsFirstResponseOverdue': False, 'UnrepliedCount': 0}]}}
expected_list_multiple_requests = {'ServiceDeskPlus(val.ID===obj.ID)': {'Request': [{'Requester': {'email_id': 'email@address.com', 'is_technician': True, 'sms_mail': None, 'phone': None, 'name': 'First Last', 'mobile': None, 'id': '123640000000142582', 'photo_url': 'https://contacts.zoho.com/file?exp=10&ID=712874208&t=user&height=60&width=60', 'is_vip_user': False, 'department': None}, 'Template': {'name': 'Default Request', 'id': '123640000000006655'}, 'CreatedTime': '2020-06-08T12:07:36.000Z', 'DisplayId': '74', 'Subject': 'request 1', 'Technician': {'email_id': 'email@address.com', 'cost_per_hour': '0', 'phone': None, 'name': 'First Last', 'mobile': None, 'id': '123640000000142552', 'photo_url': 'https://contacts.zoho.com/file?exp=10&ID=712510951&t=user&height=60&width=60', 'sms_mail_id': None}, 'IsServiceRequest': False, 'CancellationRequested': False, 'HasNotes': False, 'Id': '123640000000215007', 'Status': 'Open'}, {'Requester': {'email_id': 'email@address.com', 'is_technician': True, 'sms_mail': None, 'phone': None, 'name': 'First Last', 'mobile': None, 'id': '123640000000142582', 'photo_url': 'https://contacts.zoho.com/file?exp=10&ID=712874208&t=user&height=60&width=60', 'is_vip_user': False, 'department': None}, 'Template': {'name': 'Default Request', 'id': '123640000000006655'}, 'CreatedTime': '2020-06-08T12:05:44.000Z', 'DisplayId': '73', 'Subject': 'check request outputs', 'Technician': {'email_id': 'email@address.com', 'cost_per_hour': '0', 'phone': None, 'name': 'First Last', 'mobile': None, 'id': '123640000000142552', 'photo_url': 'https://contacts.zoho.com/file?exp=10&ID=712510951&t=user&height=60&width=60', 'sms_mail_id': None}, 'IsServiceRequest': False, 'CancellationRequested': False, 'HasNotes': False, 'Id': '123640000000216003', 'Status': 'Open'}, {'Requester': {'email_id': 'email@address.com', 'is_technician': True, 'sms_mail': None, 'phone': None, 'name': 'First Last', 'mobile': None, 'id': '123640000000142582', 'photo_url': 'https://contacts.zoho.com/file?exp=10&ID=712874208&t=user&height=60&width=60', 'is_vip_user': False, 'department': None}, 'Template': {'name': 'Default Request', 'id': '123640000000006655'}, 'CreatedTime': '2020-06-08T12:15:35.000Z', 'DisplayId': '75', 'Subject': 'updated request 2 from demisto', 'Technician': {'email_id': 'email@address.com', 'cost_per_hour': '0', 'phone': None, 'name': 'First Last', 'mobile': None, 'id': '123640000000142552', 'photo_url': 'https://contacts.zoho.com/file?exp=10&ID=712510951&t=user&height=60&width=60', 'sms_mail_id': None}, 'IsServiceRequest': False, 'CancellationRequested': False, 'HasNotes': False, 'Id': '123640000000217001', 'Status': 'Open'}]}}
expected_linked_request_list = {'ServiceDeskPlus.Request(val.ID===obj.ID)': {'LinkRequests': [{'LinkedRequest': {'subject': 'Test create request', 'id': '123640000000240013', 'udf_fields': {'udf_char1': None}, 'display_id': '102'}}, {'LinkedRequest': {'subject': 'Updating the last request', 'id': '123640000000241001', 'udf_fields': {'udf_char1': None}, 'display_id': '96'}}]}}
expected_resolution_list = {'ServiceDeskPlus.Request(val.ID===obj.ID)': {'Resolution': {'SubmittedOn': '2020-06-09T14:32:15.000Z', 'SubmittedBy': {'email_id': 'email@address.com', 'is_technician': True, 'sms_mail': None, 'phone': None, 'name': 'First Last', 'mobile': None, 'id': '123640000000142582', 'photo_url': 'https://contacts.zoho.com/file?exp=10&ID=712874208&t=user&height=60&width=60', 'is_vip_user': False, 'department': None}, 'Content': 'changing resolution from demisto'}}}
expected_no_resolution_list = {} |
# Declaracion de constantes.
PESO_HOT_WHEELS_REMOLQUE_TIBURON = 300
PESO_FUNKO_FELPA = 390
PRECIO_BARRA_PAN = 8.90
DESCUENTO_PAN_VIEJO = 0.20
| peso_hot_wheels_remolque_tiburon = 300
peso_funko_felpa = 390
precio_barra_pan = 8.9
descuento_pan_viejo = 0.2 |
# From https://github.com/RLBot/RLBot/blob/master/src/main/python/rlbot/version.py
# Store the version here so:
# 1) we don't load dependencies by storing it in __init__.py
# 2) we can import it in setup.py for the same reason
# 3) we can import it into your module module
# https://stackoverflow.com/questions/458550/standard-way-to-embed-version-into-python-package
__version__ = '1.0.3'
release_notes = {
'1.0.3': """
- Updated to include all utils from RLGym
""",
'1.0.2': """
- Fixed car_id
""",
'1.0.1': """
- Fixed on_ground bug
""",
'1.0.0': """
Initial Release
- Tested with RLGym 0.4.1
"""
}
def get_current_release_notes():
if __version__ in release_notes:
return release_notes[__version__]
return ''
def print_current_release_notes():
print(f"Version {__version__}")
print(get_current_release_notes())
print("")
| __version__ = '1.0.3'
release_notes = {'1.0.3': '\n - Updated to include all utils from RLGym\n ', '1.0.2': '\n - Fixed car_id\n ', '1.0.1': '\n - Fixed on_ground bug\n ', '1.0.0': '\n Initial Release\n - Tested with RLGym 0.4.1\n '}
def get_current_release_notes():
if __version__ in release_notes:
return release_notes[__version__]
return ''
def print_current_release_notes():
print(f'Version {__version__}')
print(get_current_release_notes())
print('') |
# Copyright 2010-2018, Google Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are
# met:
#
# * Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# * Redistributions in binary form must reproduce the above
# copyright notice, this list of conditions and the following disclaimer
# in the documentation and/or other materials provided with the
# distribution.
# * Neither the name of Google Inc. nor the names of its
# contributors may be used to endorse or promote products derived from
# this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
{
'variables': {
'relative_dir': 'renderer',
'gen_out_dir': '<(SHARED_INTERMEDIATE_DIR)/<(relative_dir)',
'conditions': [
['branding=="GoogleJapaneseInput"', {
'renderer_product_name_win': 'GoogleIMEJaRenderer',
}, { # else
'renderer_product_name_win': 'mozc_renderer',
}],
],
},
'targets': [
{
'target_name': 'table_layout',
'type': 'static_library',
'sources': [
'table_layout.cc',
],
'dependencies': [
'../base/base.gyp:base',
],
},
{
'target_name': 'window_util',
'type': 'static_library',
'sources': [
'window_util.cc',
],
'dependencies': [
'../base/base.gyp:base',
],
},
{
'target_name': 'renderer_client',
'type': 'static_library',
'sources': [
'renderer_client.cc',
],
'dependencies': [
'../base/base.gyp:base',
'../ipc/ipc.gyp:ipc',
'../protocol/protocol.gyp:commands_proto',
'../protocol/protocol.gyp:config_proto',
'../protocol/protocol.gyp:renderer_proto',
],
},
{
'target_name': 'renderer_server',
'type': 'static_library',
'sources': [
'renderer_server.cc',
],
'dependencies': [
'../base/base.gyp:base',
'../client/client.gyp:client',
'../config/config.gyp:config_handler',
'../ipc/ipc.gyp:ipc',
'../protocol/protocol.gyp:commands_proto',
'../protocol/protocol.gyp:renderer_proto',
],
},
{
'target_name': 'renderer_client_test',
'type': 'executable',
'sources': [
'renderer_client_test.cc',
],
'dependencies': [
'../testing/testing.gyp:gtest_main',
'renderer_client',
],
'variables': {
'test_size': 'small',
},
},
{
'target_name': 'renderer_server_test',
'type': 'executable',
'sources': [
'renderer_server_test.cc',
],
'dependencies': [
'../ipc/ipc.gyp:ipc_test_util',
'../testing/testing.gyp:gtest_main',
'renderer_client',
'renderer_server',
],
'variables': {
'test_size': 'small',
},
},
{
'target_name': 'table_layout_test',
'type': 'executable',
'sources': [
'table_layout_test.cc',
],
'dependencies': [
'../testing/testing.gyp:gtest_main',
'table_layout',
],
'variables': {
'test_size': 'small',
},
},
{
'target_name': 'window_util_test',
'type': 'executable',
'sources': [
'window_util_test.cc',
],
'dependencies': [
'../testing/testing.gyp:gtest_main',
'window_util',
],
'variables': {
'test_size': 'small',
},
},
{
'target_name': 'renderer_style_handler',
'type': 'static_library',
'sources': [
'renderer_style_handler.cc',
],
'dependencies': [
'../protocol/protocol.gyp:renderer_proto',
],
'variables': {
'test_size': 'small',
},
},
{
'target_name': 'renderer_style_handler_test',
'type': 'executable',
'sources': [
'renderer_style_handler_test.cc',
],
'dependencies': [
'../protocol/protocol.gyp:renderer_proto',
'../testing/testing.gyp:gtest_main',
'renderer_style_handler',
],
'variables': {
'test_size': 'small',
},
},
# Test cases meta target: this target is referred from gyp/tests.gyp
{
'target_name': 'renderer_all_test',
'type': 'none',
'dependencies': [
'renderer_client_test',
'renderer_server_test',
'renderer_style_handler_test',
'table_layout_test',
'window_util_test',
],
'conditions': [
['OS=="win"', {
'dependencies': [
'win32_font_util_test',
'win32_renderer_core_test',
],
}],
['target_platform=="Linux" and enable_gtk_renderer==1', {
'dependencies': [
'gtk_renderer_test',
],
}],
# Android runs nothing.
['target_platform=="Android"', {
'dependencies=': [],
},
],
],
},
],
'conditions': [
['OS=="win"', {
'targets': [
{
'target_name': 'gen_mozc_renderer_resource_header',
'toolsets': ['host'],
'variables': {
'gen_resource_proj_name': 'mozc_renderer',
'gen_main_resource_path': 'renderer/mozc_renderer.rc',
'gen_output_resource_path':
'<(gen_out_dir)/mozc_renderer_autogen.rc',
},
'includes': [
'../gyp/gen_win32_resource_header.gypi',
],
},
{
'target_name': 'win32_font_util',
'type': 'static_library',
'sources': [
'win32/win32_font_util.cc',
],
'dependencies': [
'../base/base.gyp:base',
'../protocol/protocol.gyp:commands_proto',
'../protocol/protocol.gyp:config_proto',
'../protocol/protocol.gyp:renderer_proto',
],
},
{
'target_name': 'win32_font_util_test',
'type': 'executable',
'sources': [
'win32/win32_font_util_test.cc',
],
'dependencies': [
'../testing/testing.gyp:gtest_main',
'win32_font_util',
],
'variables': {
'test_size': 'small',
},
},
{
'target_name': 'win32_renderer_core',
'type': 'static_library',
'sources': [
'win32/win32_image_util.cc',
'win32/win32_renderer_util.cc',
],
'dependencies': [
'../base/base.gyp:base',
'../protocol/protocol.gyp:commands_proto',
'../protocol/protocol.gyp:config_proto',
'../protocol/protocol.gyp:renderer_proto',
'win32_font_util',
],
},
{
'target_name': 'install_renderer_core_test_data',
'type': 'none',
'variables': {
'test_data': [
'../<(test_data_subdir)/balloon_blur_alpha_-1.png',
'../<(test_data_subdir)/balloon_blur_alpha_-1.png.json',
'../<(test_data_subdir)/balloon_blur_alpha_0.png',
'../<(test_data_subdir)/balloon_blur_alpha_0.png.json',
'../<(test_data_subdir)/balloon_blur_alpha_10.png',
'../<(test_data_subdir)/balloon_blur_alpha_10.png.json',
'../<(test_data_subdir)/balloon_blur_color_32_64_128.png',
'../<(test_data_subdir)/balloon_blur_color_32_64_128.png.json',
'../<(test_data_subdir)/balloon_blur_offset_-20_-10.png',
'../<(test_data_subdir)/balloon_blur_offset_-20_-10.png.json',
'../<(test_data_subdir)/balloon_blur_offset_0_0.png',
'../<(test_data_subdir)/balloon_blur_offset_0_0.png.json',
'../<(test_data_subdir)/balloon_blur_offset_20_5.png',
'../<(test_data_subdir)/balloon_blur_offset_20_5.png.json',
'../<(test_data_subdir)/balloon_blur_sigma_0.0.png',
'../<(test_data_subdir)/balloon_blur_sigma_0.0.png.json',
'../<(test_data_subdir)/balloon_blur_sigma_0.5.png',
'../<(test_data_subdir)/balloon_blur_sigma_0.5.png.json',
'../<(test_data_subdir)/balloon_blur_sigma_1.0.png',
'../<(test_data_subdir)/balloon_blur_sigma_1.0.png.json',
'../<(test_data_subdir)/balloon_blur_sigma_2.0.png',
'../<(test_data_subdir)/balloon_blur_sigma_2.0.png.json',
'../<(test_data_subdir)/balloon_frame_thickness_-1.png',
'../<(test_data_subdir)/balloon_frame_thickness_-1.png.json',
'../<(test_data_subdir)/balloon_frame_thickness_0.png',
'../<(test_data_subdir)/balloon_frame_thickness_0.png.json',
'../<(test_data_subdir)/balloon_frame_thickness_1.5.png',
'../<(test_data_subdir)/balloon_frame_thickness_1.5.png.json',
'../<(test_data_subdir)/balloon_frame_thickness_3.png',
'../<(test_data_subdir)/balloon_frame_thickness_3.png.json',
'../<(test_data_subdir)/balloon_inside_color_32_64_128.png',
'../<(test_data_subdir)/balloon_inside_color_32_64_128.png.json',
'../<(test_data_subdir)/balloon_no_label.png',
'../<(test_data_subdir)/balloon_no_label.png.json',
'../<(test_data_subdir)/balloon_tail_bottom.png',
'../<(test_data_subdir)/balloon_tail_bottom.png.json',
'../<(test_data_subdir)/balloon_tail_left.png',
'../<(test_data_subdir)/balloon_tail_left.png.json',
'../<(test_data_subdir)/balloon_tail_right.png',
'../<(test_data_subdir)/balloon_tail_right.png.json',
'../<(test_data_subdir)/balloon_tail_top.png',
'../<(test_data_subdir)/balloon_tail_top.png.json',
'../<(test_data_subdir)/balloon_tail_width_height_-10_-10.png',
'../<(test_data_subdir)/balloon_tail_width_height_-10_-10.png.json',
'../<(test_data_subdir)/balloon_tail_width_height_0_0.png',
'../<(test_data_subdir)/balloon_tail_width_height_0_0.png.json',
'../<(test_data_subdir)/balloon_tail_width_height_10_20.png',
'../<(test_data_subdir)/balloon_tail_width_height_10_20.png.json',
'../<(test_data_subdir)/balloon_width_height_40_30.png',
'../<(test_data_subdir)/balloon_width_height_40_30.png.json',
],
'test_data_subdir': 'data/test/renderer/win32',
},
'includes': ['../gyp/install_testdata.gypi'],
},
{
'target_name': 'win32_renderer_core_test',
'type': 'executable',
'sources': [
'win32/win32_image_util_test.cc',
'win32/win32_renderer_util_test.cc',
],
'dependencies': [
'../base/base.gyp:win_font_test_helper',
'../net/jsoncpp.gyp:jsoncpp',
'../testing/testing.gyp:gtest_main',
'../testing/testing.gyp:mozctest',
'install_renderer_core_test_data',
'win32_renderer_core',
],
'variables': {
'test_size': 'small',
},
'msvs_settings': {
'VCLinkerTool': {
'AdditionalDependencies': [
'gdiplus.lib', # used in 'win32_image_util_test.cc'
],
},
},
},
{
'target_name': 'win32_text_renderer',
'type': 'static_library',
'sources': [
'win32/text_renderer.cc',
],
'dependencies': [
'../base/base.gyp:base',
'../protocol/protocol.gyp:renderer_proto',
'renderer_style_handler',
],
'link_settings': {
'msvs_settings': {
'VCLinkerTool': {
'AdditionalDependencies': [
'd2d1.lib',
'dwrite.lib',
],
},
},
},
},
{
'target_name': 'gen_pbgra32_bitmap',
'type': 'executable',
'sources': [
'win32/gen_pbgra32_bitmap.cc',
],
'dependencies': [
'../base/base.gyp:base_core',
'../base/base.gyp:scoped_handle',
],
'msvs_settings': {
'VCLinkerTool': {
'AdditionalDependencies': [
'gdiplus.lib', # used in 'gen_pbgra32_bitmap.cc'
],
'SubSystem': '1', # 1 == subSystemConsole
},
},
},
{
'target_name': 'mozc_renderer',
'product_name': '<(renderer_product_name_win)',
'type': 'executable',
'sources': [
'mozc_renderer_main.cc',
'win32/win32_server.cc',
'win32/window_manager.cc',
'win32/candidate_window.cc',
'win32/composition_window.cc',
'win32/infolist_window.cc',
'win32/indicator_window.cc',
'<(gen_out_dir)/mozc_renderer_autogen.rc',
],
'dependencies': [
'../base/base.gyp:base',
'../base/base.gyp:crash_report_handler',
'../client/client.gyp:client',
'../config/config.gyp:stats_config_util',
'../ipc/ipc.gyp:ipc',
'../protocol/protocol.gyp:commands_proto',
'../protocol/protocol.gyp:config_proto',
'../protocol/protocol.gyp:renderer_proto',
'gen_mozc_renderer_resource_header#host',
'renderer_server',
'renderer_style_handler',
'table_layout',
'win32_renderer_core',
'win32_text_renderer',
'window_util',
],
'msvs_settings': {
'VCManifestTool': {
'AdditionalManifestFiles': 'mozc_renderer.exe.manifest',
'EmbedManifest': 'true',
},
},
},
{
'target_name': 'win32_renderer_client',
'type': 'static_library',
'sources': [
'win32/win32_renderer_client.cc',
],
'dependencies': [
'../base/base.gyp:base',
'../protocol/protocol.gyp:renderer_proto',
'renderer_client',
],
},
],
}],
['OS=="mac"', {
'targets': [
{
'target_name': 'mozc_renderer',
'type': 'executable',
'mac_bundle': 1,
'product_name': '<(branding)Renderer',
'sources': [
'mozc_renderer_main.cc',
'mac/mac_server.mm',
'mac/mac_server_send_command.mm',
'mac/CandidateController.mm',
'mac/CandidateWindow.mm',
'mac/CandidateView.mm',
'mac/InfolistWindow.mm',
'mac/InfolistView.mm',
'mac/RendererBaseWindow.mm',
'mac/mac_view_util.mm',
],
'mac_bundle_resources': [
'../data/images/mac/candidate_window_logo.tiff',
'../data/images/mac/product_icon.icns',
],
'dependencies': [
'../base/base.gyp:base',
'../base/base.gyp:crash_report_handler',
'../client/client.gyp:client',
'../config/config.gyp:stats_config_util',
'../ipc/ipc.gyp:ipc',
'../protocol/protocol.gyp:commands_proto',
'../protocol/protocol.gyp:config_proto',
'../protocol/protocol.gyp:renderer_proto',
'gen_renderer_files#host',
'renderer_server',
'renderer_style_handler',
'table_layout',
'window_util',
],
'xcode_settings': {
'INFOPLIST_FILE': '<(gen_out_dir)/Info.plist',
},
'link_settings': {
'libraries': [
'$(SDKROOT)/System/Library/Frameworks/Carbon.framework',
],
},
'variables': {
# This product name is used in postbuilds_mac.gypi.
'product_name': '<(branding)Renderer',
},
'includes': [
'../gyp/postbuilds_mac.gypi',
],
},
{
'target_name': 'gen_renderer_files',
'type': 'none',
'toolsets': ['host'],
'actions': [
{
'action_name': 'generate_infoplist',
'inputs': [
'mac/Info.plist',
],
'outputs': [
'<(gen_out_dir)/Info.plist',
],
'action': [
'python', '../build_tools/tweak_info_plist.py',
'--output', '<(gen_out_dir)/Info.plist',
'--input', 'mac/Info.plist',
'--version_file', '../mozc_version.txt',
'--branding', '<(branding)',
],
},
],
},
],
}],
['target_platform=="Linux" and enable_gtk_renderer==1', {
'targets': [
{
# Meta target to set up build environment for gtk+-2.0.
# Required 'cflags' and 'link_settings' will be automatically
# injected into any target which directly or indirectly depends
# on this target.
'target_name': 'gtk2_build_environment',
'type': 'none',
'variables': {
'target_pkgs' : [
'glib-2.0',
'gobject-2.0',
'gthread-2.0',
'gtk+-2.0',
'gdk-2.0',
],
},
'all_dependent_settings': {
'cflags': [
'<!@(pkg-config --cflags <@(target_pkgs))',
],
'link_settings': {
'libraries': [
'<!@(pkg-config --libs-only-l <@(target_pkgs))',
],
'ldflags': [
'<!@(pkg-config --libs-only-L <@(target_pkgs))',
],
},
},
},
{
'target_name': 'mozc_renderer_lib',
'type': 'static_library',
'sources': [
'unix/cairo_factory.cc',
'unix/cairo_wrapper.cc',
'unix/candidate_window.cc',
'unix/draw_tool.cc',
'unix/font_spec.cc',
'unix/gtk_window_base.cc',
'unix/gtk_wrapper.cc',
'unix/infolist_window.cc',
'unix/pango_wrapper.cc',
'unix/text_renderer.cc',
'unix/unix_renderer.cc',
'unix/unix_server.cc',
'unix/window_manager.cc',
],
'dependencies': [
'../base/base.gyp:base',
'../client/client.gyp:client',
'../config/config.gyp:stats_config_util',
'../ipc/ipc.gyp:ipc',
'../protocol/protocol.gyp:genproto_config_proto#host',
'../protocol/protocol.gyp:renderer_proto',
'gtk2_build_environment',
'renderer_server',
'renderer_style_handler',
'table_layout',
'window_util',
],
},
{
'target_name': 'mozc_renderer',
'type': 'executable',
'sources': [
'mozc_renderer_main.cc',
],
'dependencies': [
'../base/base.gyp:crash_report_handler',
'mozc_renderer_lib',
],
},
{
'target_name': 'gtk_renderer_test',
'type': 'executable',
'sources': [
'unix/candidate_window_test.cc',
'unix/draw_tool_test.cc',
'unix/font_spec_test.cc',
'unix/gtk_window_base_test.cc',
'unix/infolist_window_test.cc',
'unix/text_renderer_test.cc',
'unix/unix_renderer_test.cc',
'unix/unix_server_test.cc',
'unix/window_manager_test.cc',
],
'dependencies': [
'../testing/testing.gyp:gtest_main',
'mozc_renderer_lib',
],
},
],
}],
],
}
| {'variables': {'relative_dir': 'renderer', 'gen_out_dir': '<(SHARED_INTERMEDIATE_DIR)/<(relative_dir)', 'conditions': [['branding=="GoogleJapaneseInput"', {'renderer_product_name_win': 'GoogleIMEJaRenderer'}, {'renderer_product_name_win': 'mozc_renderer'}]]}, 'targets': [{'target_name': 'table_layout', 'type': 'static_library', 'sources': ['table_layout.cc'], 'dependencies': ['../base/base.gyp:base']}, {'target_name': 'window_util', 'type': 'static_library', 'sources': ['window_util.cc'], 'dependencies': ['../base/base.gyp:base']}, {'target_name': 'renderer_client', 'type': 'static_library', 'sources': ['renderer_client.cc'], 'dependencies': ['../base/base.gyp:base', '../ipc/ipc.gyp:ipc', '../protocol/protocol.gyp:commands_proto', '../protocol/protocol.gyp:config_proto', '../protocol/protocol.gyp:renderer_proto']}, {'target_name': 'renderer_server', 'type': 'static_library', 'sources': ['renderer_server.cc'], 'dependencies': ['../base/base.gyp:base', '../client/client.gyp:client', '../config/config.gyp:config_handler', '../ipc/ipc.gyp:ipc', '../protocol/protocol.gyp:commands_proto', '../protocol/protocol.gyp:renderer_proto']}, {'target_name': 'renderer_client_test', 'type': 'executable', 'sources': ['renderer_client_test.cc'], 'dependencies': ['../testing/testing.gyp:gtest_main', 'renderer_client'], 'variables': {'test_size': 'small'}}, {'target_name': 'renderer_server_test', 'type': 'executable', 'sources': ['renderer_server_test.cc'], 'dependencies': ['../ipc/ipc.gyp:ipc_test_util', '../testing/testing.gyp:gtest_main', 'renderer_client', 'renderer_server'], 'variables': {'test_size': 'small'}}, {'target_name': 'table_layout_test', 'type': 'executable', 'sources': ['table_layout_test.cc'], 'dependencies': ['../testing/testing.gyp:gtest_main', 'table_layout'], 'variables': {'test_size': 'small'}}, {'target_name': 'window_util_test', 'type': 'executable', 'sources': ['window_util_test.cc'], 'dependencies': ['../testing/testing.gyp:gtest_main', 'window_util'], 'variables': {'test_size': 'small'}}, {'target_name': 'renderer_style_handler', 'type': 'static_library', 'sources': ['renderer_style_handler.cc'], 'dependencies': ['../protocol/protocol.gyp:renderer_proto'], 'variables': {'test_size': 'small'}}, {'target_name': 'renderer_style_handler_test', 'type': 'executable', 'sources': ['renderer_style_handler_test.cc'], 'dependencies': ['../protocol/protocol.gyp:renderer_proto', '../testing/testing.gyp:gtest_main', 'renderer_style_handler'], 'variables': {'test_size': 'small'}}, {'target_name': 'renderer_all_test', 'type': 'none', 'dependencies': ['renderer_client_test', 'renderer_server_test', 'renderer_style_handler_test', 'table_layout_test', 'window_util_test'], 'conditions': [['OS=="win"', {'dependencies': ['win32_font_util_test', 'win32_renderer_core_test']}], ['target_platform=="Linux" and enable_gtk_renderer==1', {'dependencies': ['gtk_renderer_test']}], ['target_platform=="Android"', {'dependencies=': []}]]}], 'conditions': [['OS=="win"', {'targets': [{'target_name': 'gen_mozc_renderer_resource_header', 'toolsets': ['host'], 'variables': {'gen_resource_proj_name': 'mozc_renderer', 'gen_main_resource_path': 'renderer/mozc_renderer.rc', 'gen_output_resource_path': '<(gen_out_dir)/mozc_renderer_autogen.rc'}, 'includes': ['../gyp/gen_win32_resource_header.gypi']}, {'target_name': 'win32_font_util', 'type': 'static_library', 'sources': ['win32/win32_font_util.cc'], 'dependencies': ['../base/base.gyp:base', '../protocol/protocol.gyp:commands_proto', '../protocol/protocol.gyp:config_proto', '../protocol/protocol.gyp:renderer_proto']}, {'target_name': 'win32_font_util_test', 'type': 'executable', 'sources': ['win32/win32_font_util_test.cc'], 'dependencies': ['../testing/testing.gyp:gtest_main', 'win32_font_util'], 'variables': {'test_size': 'small'}}, {'target_name': 'win32_renderer_core', 'type': 'static_library', 'sources': ['win32/win32_image_util.cc', 'win32/win32_renderer_util.cc'], 'dependencies': ['../base/base.gyp:base', '../protocol/protocol.gyp:commands_proto', '../protocol/protocol.gyp:config_proto', '../protocol/protocol.gyp:renderer_proto', 'win32_font_util']}, {'target_name': 'install_renderer_core_test_data', 'type': 'none', 'variables': {'test_data': ['../<(test_data_subdir)/balloon_blur_alpha_-1.png', '../<(test_data_subdir)/balloon_blur_alpha_-1.png.json', '../<(test_data_subdir)/balloon_blur_alpha_0.png', '../<(test_data_subdir)/balloon_blur_alpha_0.png.json', '../<(test_data_subdir)/balloon_blur_alpha_10.png', '../<(test_data_subdir)/balloon_blur_alpha_10.png.json', '../<(test_data_subdir)/balloon_blur_color_32_64_128.png', '../<(test_data_subdir)/balloon_blur_color_32_64_128.png.json', '../<(test_data_subdir)/balloon_blur_offset_-20_-10.png', '../<(test_data_subdir)/balloon_blur_offset_-20_-10.png.json', '../<(test_data_subdir)/balloon_blur_offset_0_0.png', '../<(test_data_subdir)/balloon_blur_offset_0_0.png.json', '../<(test_data_subdir)/balloon_blur_offset_20_5.png', '../<(test_data_subdir)/balloon_blur_offset_20_5.png.json', '../<(test_data_subdir)/balloon_blur_sigma_0.0.png', '../<(test_data_subdir)/balloon_blur_sigma_0.0.png.json', '../<(test_data_subdir)/balloon_blur_sigma_0.5.png', '../<(test_data_subdir)/balloon_blur_sigma_0.5.png.json', '../<(test_data_subdir)/balloon_blur_sigma_1.0.png', '../<(test_data_subdir)/balloon_blur_sigma_1.0.png.json', '../<(test_data_subdir)/balloon_blur_sigma_2.0.png', '../<(test_data_subdir)/balloon_blur_sigma_2.0.png.json', '../<(test_data_subdir)/balloon_frame_thickness_-1.png', '../<(test_data_subdir)/balloon_frame_thickness_-1.png.json', '../<(test_data_subdir)/balloon_frame_thickness_0.png', '../<(test_data_subdir)/balloon_frame_thickness_0.png.json', '../<(test_data_subdir)/balloon_frame_thickness_1.5.png', '../<(test_data_subdir)/balloon_frame_thickness_1.5.png.json', '../<(test_data_subdir)/balloon_frame_thickness_3.png', '../<(test_data_subdir)/balloon_frame_thickness_3.png.json', '../<(test_data_subdir)/balloon_inside_color_32_64_128.png', '../<(test_data_subdir)/balloon_inside_color_32_64_128.png.json', '../<(test_data_subdir)/balloon_no_label.png', '../<(test_data_subdir)/balloon_no_label.png.json', '../<(test_data_subdir)/balloon_tail_bottom.png', '../<(test_data_subdir)/balloon_tail_bottom.png.json', '../<(test_data_subdir)/balloon_tail_left.png', '../<(test_data_subdir)/balloon_tail_left.png.json', '../<(test_data_subdir)/balloon_tail_right.png', '../<(test_data_subdir)/balloon_tail_right.png.json', '../<(test_data_subdir)/balloon_tail_top.png', '../<(test_data_subdir)/balloon_tail_top.png.json', '../<(test_data_subdir)/balloon_tail_width_height_-10_-10.png', '../<(test_data_subdir)/balloon_tail_width_height_-10_-10.png.json', '../<(test_data_subdir)/balloon_tail_width_height_0_0.png', '../<(test_data_subdir)/balloon_tail_width_height_0_0.png.json', '../<(test_data_subdir)/balloon_tail_width_height_10_20.png', '../<(test_data_subdir)/balloon_tail_width_height_10_20.png.json', '../<(test_data_subdir)/balloon_width_height_40_30.png', '../<(test_data_subdir)/balloon_width_height_40_30.png.json'], 'test_data_subdir': 'data/test/renderer/win32'}, 'includes': ['../gyp/install_testdata.gypi']}, {'target_name': 'win32_renderer_core_test', 'type': 'executable', 'sources': ['win32/win32_image_util_test.cc', 'win32/win32_renderer_util_test.cc'], 'dependencies': ['../base/base.gyp:win_font_test_helper', '../net/jsoncpp.gyp:jsoncpp', '../testing/testing.gyp:gtest_main', '../testing/testing.gyp:mozctest', 'install_renderer_core_test_data', 'win32_renderer_core'], 'variables': {'test_size': 'small'}, 'msvs_settings': {'VCLinkerTool': {'AdditionalDependencies': ['gdiplus.lib']}}}, {'target_name': 'win32_text_renderer', 'type': 'static_library', 'sources': ['win32/text_renderer.cc'], 'dependencies': ['../base/base.gyp:base', '../protocol/protocol.gyp:renderer_proto', 'renderer_style_handler'], 'link_settings': {'msvs_settings': {'VCLinkerTool': {'AdditionalDependencies': ['d2d1.lib', 'dwrite.lib']}}}}, {'target_name': 'gen_pbgra32_bitmap', 'type': 'executable', 'sources': ['win32/gen_pbgra32_bitmap.cc'], 'dependencies': ['../base/base.gyp:base_core', '../base/base.gyp:scoped_handle'], 'msvs_settings': {'VCLinkerTool': {'AdditionalDependencies': ['gdiplus.lib'], 'SubSystem': '1'}}}, {'target_name': 'mozc_renderer', 'product_name': '<(renderer_product_name_win)', 'type': 'executable', 'sources': ['mozc_renderer_main.cc', 'win32/win32_server.cc', 'win32/window_manager.cc', 'win32/candidate_window.cc', 'win32/composition_window.cc', 'win32/infolist_window.cc', 'win32/indicator_window.cc', '<(gen_out_dir)/mozc_renderer_autogen.rc'], 'dependencies': ['../base/base.gyp:base', '../base/base.gyp:crash_report_handler', '../client/client.gyp:client', '../config/config.gyp:stats_config_util', '../ipc/ipc.gyp:ipc', '../protocol/protocol.gyp:commands_proto', '../protocol/protocol.gyp:config_proto', '../protocol/protocol.gyp:renderer_proto', 'gen_mozc_renderer_resource_header#host', 'renderer_server', 'renderer_style_handler', 'table_layout', 'win32_renderer_core', 'win32_text_renderer', 'window_util'], 'msvs_settings': {'VCManifestTool': {'AdditionalManifestFiles': 'mozc_renderer.exe.manifest', 'EmbedManifest': 'true'}}}, {'target_name': 'win32_renderer_client', 'type': 'static_library', 'sources': ['win32/win32_renderer_client.cc'], 'dependencies': ['../base/base.gyp:base', '../protocol/protocol.gyp:renderer_proto', 'renderer_client']}]}], ['OS=="mac"', {'targets': [{'target_name': 'mozc_renderer', 'type': 'executable', 'mac_bundle': 1, 'product_name': '<(branding)Renderer', 'sources': ['mozc_renderer_main.cc', 'mac/mac_server.mm', 'mac/mac_server_send_command.mm', 'mac/CandidateController.mm', 'mac/CandidateWindow.mm', 'mac/CandidateView.mm', 'mac/InfolistWindow.mm', 'mac/InfolistView.mm', 'mac/RendererBaseWindow.mm', 'mac/mac_view_util.mm'], 'mac_bundle_resources': ['../data/images/mac/candidate_window_logo.tiff', '../data/images/mac/product_icon.icns'], 'dependencies': ['../base/base.gyp:base', '../base/base.gyp:crash_report_handler', '../client/client.gyp:client', '../config/config.gyp:stats_config_util', '../ipc/ipc.gyp:ipc', '../protocol/protocol.gyp:commands_proto', '../protocol/protocol.gyp:config_proto', '../protocol/protocol.gyp:renderer_proto', 'gen_renderer_files#host', 'renderer_server', 'renderer_style_handler', 'table_layout', 'window_util'], 'xcode_settings': {'INFOPLIST_FILE': '<(gen_out_dir)/Info.plist'}, 'link_settings': {'libraries': ['$(SDKROOT)/System/Library/Frameworks/Carbon.framework']}, 'variables': {'product_name': '<(branding)Renderer'}, 'includes': ['../gyp/postbuilds_mac.gypi']}, {'target_name': 'gen_renderer_files', 'type': 'none', 'toolsets': ['host'], 'actions': [{'action_name': 'generate_infoplist', 'inputs': ['mac/Info.plist'], 'outputs': ['<(gen_out_dir)/Info.plist'], 'action': ['python', '../build_tools/tweak_info_plist.py', '--output', '<(gen_out_dir)/Info.plist', '--input', 'mac/Info.plist', '--version_file', '../mozc_version.txt', '--branding', '<(branding)']}]}]}], ['target_platform=="Linux" and enable_gtk_renderer==1', {'targets': [{'target_name': 'gtk2_build_environment', 'type': 'none', 'variables': {'target_pkgs': ['glib-2.0', 'gobject-2.0', 'gthread-2.0', 'gtk+-2.0', 'gdk-2.0']}, 'all_dependent_settings': {'cflags': ['<!@(pkg-config --cflags <@(target_pkgs))'], 'link_settings': {'libraries': ['<!@(pkg-config --libs-only-l <@(target_pkgs))'], 'ldflags': ['<!@(pkg-config --libs-only-L <@(target_pkgs))']}}}, {'target_name': 'mozc_renderer_lib', 'type': 'static_library', 'sources': ['unix/cairo_factory.cc', 'unix/cairo_wrapper.cc', 'unix/candidate_window.cc', 'unix/draw_tool.cc', 'unix/font_spec.cc', 'unix/gtk_window_base.cc', 'unix/gtk_wrapper.cc', 'unix/infolist_window.cc', 'unix/pango_wrapper.cc', 'unix/text_renderer.cc', 'unix/unix_renderer.cc', 'unix/unix_server.cc', 'unix/window_manager.cc'], 'dependencies': ['../base/base.gyp:base', '../client/client.gyp:client', '../config/config.gyp:stats_config_util', '../ipc/ipc.gyp:ipc', '../protocol/protocol.gyp:genproto_config_proto#host', '../protocol/protocol.gyp:renderer_proto', 'gtk2_build_environment', 'renderer_server', 'renderer_style_handler', 'table_layout', 'window_util']}, {'target_name': 'mozc_renderer', 'type': 'executable', 'sources': ['mozc_renderer_main.cc'], 'dependencies': ['../base/base.gyp:crash_report_handler', 'mozc_renderer_lib']}, {'target_name': 'gtk_renderer_test', 'type': 'executable', 'sources': ['unix/candidate_window_test.cc', 'unix/draw_tool_test.cc', 'unix/font_spec_test.cc', 'unix/gtk_window_base_test.cc', 'unix/infolist_window_test.cc', 'unix/text_renderer_test.cc', 'unix/unix_renderer_test.cc', 'unix/unix_server_test.cc', 'unix/window_manager_test.cc'], 'dependencies': ['../testing/testing.gyp:gtest_main', 'mozc_renderer_lib']}]}]]} |
class EventHook(object):
def __init__(self):
self.__handlers = []
def __iadd__(self, handler):
self.__handlers.append(handler)
return self
def __isub__(self, handler):
self.__handlers.remove(handler)
return self
def fire(self, *args, **keywargs):
for handler in self.__handlers:
handler(*args, **keywargs)
def clearObjectHandlers(self, inObject):
for theHandler in self.__handlers:
if theHandler.im_self == inObject:
self -= theHandler | class Eventhook(object):
def __init__(self):
self.__handlers = []
def __iadd__(self, handler):
self.__handlers.append(handler)
return self
def __isub__(self, handler):
self.__handlers.remove(handler)
return self
def fire(self, *args, **keywargs):
for handler in self.__handlers:
handler(*args, **keywargs)
def clear_object_handlers(self, inObject):
for the_handler in self.__handlers:
if theHandler.im_self == inObject:
self -= theHandler |
# lec10prob2.py
# In lecture, we saw a version of linear search that used the fact that a set
# of elements is sorted in increasing order. Here is the code from lecture:
def search(L, e):
for i in range(len(L)):
if L[i] == e:
return True
if L[i] > e:
return False
return False
# Consider the following code, which is an alternative version of search.
def search1(L, e):
for i in L:
if i == e:
return True
if i > e:
return False
return False
# Which of the following statements is correct? You may assume that each
# function is tested with a list L whose elements are sorted in increasing
# order; for simplicity, assume L is a list of positive integers.
#
# - search and search1 return the same answers
# - search and search1 return the same answers provided L is non-empty
# - search and search1 return the same answers provided L is non-empty and e is in L
# - search and search1 do not return the same answers
# - search and search1 return the same answers for lists of length 0 and 1 only
# Sample list and calls to both search and search1 with different lists
# to match conditions in above possible answers
# Search for a number in list
print(search([2, 5, 7, 10, 15, 27, 35, 44], 35))
print(search1([2, 5, 7, 10, 15, 27, 35, 44], 35))
print
# Search for a number not in list
print(search([2, 5, 7, 10, 15, 27, 35, 44], 3))
print(search1([2, 5, 7, 10, 15, 27, 35, 44], 3))
print
# Search for a number in an empty list
print(search([], 5))
print(search1([], 5))
print
# Search for a number in a single element list
print(search([5], 5))
print(search1([5], 5))
print
| def search(L, e):
for i in range(len(L)):
if L[i] == e:
return True
if L[i] > e:
return False
return False
def search1(L, e):
for i in L:
if i == e:
return True
if i > e:
return False
return False
print(search([2, 5, 7, 10, 15, 27, 35, 44], 35))
print(search1([2, 5, 7, 10, 15, 27, 35, 44], 35))
print
print(search([2, 5, 7, 10, 15, 27, 35, 44], 3))
print(search1([2, 5, 7, 10, 15, 27, 35, 44], 3))
print
print(search([], 5))
print(search1([], 5))
print
print(search([5], 5))
print(search1([5], 5))
print |
TEMPLATES_LOADED = "app.templates.loaded"
EXAMS_LOADED = "app.exams.loaded"
TEMPLATE_DIALOG_PATH_KEY = "template.dialog.path"
REPORT_DIALOG_PATH_KEY = "report.dialog.path"
EXAM_DIALOG_PATH_KEY = "exam.dialog.path"
PROCEED_TEMPLATE_DIALOG_PATH_KEY = "exam.proceed.dialog.path"
TEMPLATE_IMAGE_ZOOM = "template.image.zoom"
EXAM_IMAGE_ZOOM = "exam.image.zoom"
| templates_loaded = 'app.templates.loaded'
exams_loaded = 'app.exams.loaded'
template_dialog_path_key = 'template.dialog.path'
report_dialog_path_key = 'report.dialog.path'
exam_dialog_path_key = 'exam.dialog.path'
proceed_template_dialog_path_key = 'exam.proceed.dialog.path'
template_image_zoom = 'template.image.zoom'
exam_image_zoom = 'exam.image.zoom' |
#!/usr/bin/env python
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
class NotFound(Exception):
pass
class LaunchNodepoolException(Exception):
statsd_key = 'error.nodepool'
class LaunchStatusException(Exception):
statsd_key = 'error.status'
class LaunchNetworkException(Exception):
statsd_key = 'error.network'
class LaunchKeyscanException(Exception):
statsd_key = 'error.keyscan'
class BuilderError(RuntimeError):
pass
class BuilderInvalidCommandError(BuilderError):
pass
class DibFailedError(BuilderError):
pass
class TimeoutException(Exception):
pass
class SSHTimeoutException(TimeoutException):
statsd_key = 'error.ssh'
class IPAddTimeoutException(TimeoutException):
statsd_key = 'error.ipadd'
class ServerDeleteException(TimeoutException):
statsd_key = 'error.serverdelete'
class ImageCreateException(TimeoutException):
statsd_key = 'error.imagetimeout'
class ZKException(Exception):
pass
class ZKLockException(ZKException):
pass
| class Notfound(Exception):
pass
class Launchnodepoolexception(Exception):
statsd_key = 'error.nodepool'
class Launchstatusexception(Exception):
statsd_key = 'error.status'
class Launchnetworkexception(Exception):
statsd_key = 'error.network'
class Launchkeyscanexception(Exception):
statsd_key = 'error.keyscan'
class Buildererror(RuntimeError):
pass
class Builderinvalidcommanderror(BuilderError):
pass
class Dibfailederror(BuilderError):
pass
class Timeoutexception(Exception):
pass
class Sshtimeoutexception(TimeoutException):
statsd_key = 'error.ssh'
class Ipaddtimeoutexception(TimeoutException):
statsd_key = 'error.ipadd'
class Serverdeleteexception(TimeoutException):
statsd_key = 'error.serverdelete'
class Imagecreateexception(TimeoutException):
statsd_key = 'error.imagetimeout'
class Zkexception(Exception):
pass
class Zklockexception(ZKException):
pass |
resultados = str(input())
apuesta = str(input())
aciertos = 0
mirar = 0
hola = apuesta[3]
for x in resultados:
if x == apuesta[mirar]:
aciertos += 1
mirar += 1
print(aciertos)
| resultados = str(input())
apuesta = str(input())
aciertos = 0
mirar = 0
hola = apuesta[3]
for x in resultados:
if x == apuesta[mirar]:
aciertos += 1
mirar += 1
print(aciertos) |
l = open('input.txt').read().splitlines()
draw = list(map(int, l[0].split(',')))
boards = []
for i in range((len(l) - 1) // 6):
b = []
for j in range(5):
b.append(list(map(int, l[i * 6 + j + 2].split())))
boards.append(b)
# transform to sets
board_sets = []
for b in boards:
cur_sets = [set(r) for r in b]
cur_sets += [set(c) for c in zip(*b)]
board_sets.append(cur_sets)
won = [False] * len(boards)
i = 5
while not all(won):
win_con = set(draw[:i])
for bid, b in enumerate(board_sets):
if not won[bid] and any(x <= win_con for x in b):
win_score = sum(set.union(*b) - win_con) * draw[i - 1]
if not any(won):
print(win_score)
won[bid] = win_score
if all(won):
print(won[bid])
break
i += 1
| l = open('input.txt').read().splitlines()
draw = list(map(int, l[0].split(',')))
boards = []
for i in range((len(l) - 1) // 6):
b = []
for j in range(5):
b.append(list(map(int, l[i * 6 + j + 2].split())))
boards.append(b)
board_sets = []
for b in boards:
cur_sets = [set(r) for r in b]
cur_sets += [set(c) for c in zip(*b)]
board_sets.append(cur_sets)
won = [False] * len(boards)
i = 5
while not all(won):
win_con = set(draw[:i])
for (bid, b) in enumerate(board_sets):
if not won[bid] and any((x <= win_con for x in b)):
win_score = sum(set.union(*b) - win_con) * draw[i - 1]
if not any(won):
print(win_score)
won[bid] = win_score
if all(won):
print(won[bid])
break
i += 1 |
"""
Given a m * n matrix of distinct numbers, return all lucky numbers in the matrix in any order.
A lucky number is an element of the matrix such that it is the minimum element in its row and maximum in its column.
"""
class Solution:
def luckyNumbers (self, matrix: List[List[int]]) -> List[int]:
m = len(matrix)
n = len(matrix[0])
sol = []
memory = n * [0] # num of cols
max_val = n * [0]
for row in matrix:
min_idx = -1
min_val = 1e8
for j, col in enumerate(row):
max_val[j] = max(max_val[j], col)
if col < min_val:
min_idx = j
min_val = col
if col > memory[j]:
memory[j] = 0
if min_val >= max_val[min_idx]:
memory[min_idx] = max(min_val, memory[min_idx])
| """
Given a m * n matrix of distinct numbers, return all lucky numbers in the matrix in any order.
A lucky number is an element of the matrix such that it is the minimum element in its row and maximum in its column.
"""
class Solution:
def lucky_numbers(self, matrix: List[List[int]]) -> List[int]:
m = len(matrix)
n = len(matrix[0])
sol = []
memory = n * [0]
max_val = n * [0]
for row in matrix:
min_idx = -1
min_val = 100000000.0
for (j, col) in enumerate(row):
max_val[j] = max(max_val[j], col)
if col < min_val:
min_idx = j
min_val = col
if col > memory[j]:
memory[j] = 0
if min_val >= max_val[min_idx]:
memory[min_idx] = max(min_val, memory[min_idx]) |
# -*- coding: utf-8 -*-
"""
Created on Fri Oct 1 09:03:04 2021
@author: shubhransu
"""
print(3*3+3/3-3)
| """
Created on Fri Oct 1 09:03:04 2021
@author: shubhransu
"""
print(3 * 3 + 3 / 3 - 3) |
# -*- coding: utf-8 -*-
"""
Created on Sat Mar 19 01:36:17 2022
@author: henry
"""
| """
Created on Sat Mar 19 01:36:17 2022
@author: henry
""" |
alien_0 = {'color': 'green', 'points':5}
print(alien_0['color'])
print(alien_0['points'])
print(alien_0)
alien_0['x_position'] = 0
alien_0['y_position'] = 25
print(alien_0)
alien_0 = {}
alien_0['color'] = 'green'
alien_0['points'] =5
print(alien_0)
alien_0 = {'color':'green'}
print(f"The alien is {alien_0['color']}.")
alien_0['color'] = 'yellow'
print(f"The alien is now {alien_0['color']}.")
print("\n")
alien_0 = {'x_position': 0, 'y_position': 25, 'speed': 'medium'}
print(f"Original position: {alien_0['x_position']}")
alien_0['speed'] = 'fast'
# Move the alien to the right.
# Determine how far to move the alien based on its current speed.
if alien_0['speed'] == 'slow':
x_increment = 1
elif alien_0['speed'] == 'medium':
x_increment = 2
else:
# This must be a fast alien.
x_increment = 3
# The new position is the old position plus the increment.
alien_0['x_position'] = alien_0['x_position'] + x_increment
print(f"New position: {alien_0['x_position']}")
print("\n")
alien_0 = {'color': 'green', 'points': 5}
print(alien_0)
del alien_0['points']
print(alien_0)
print("\n1")
favorite_language = {
'jen': 'python',
'sarah': 'c',
'edward': 'ruby',
'phil': 'python',
}
language = favorite_language['sarah'].title()
print(f"sarah's favorite language is {language}.")
print("\n2")
user_0 = {
'username': 'efermi',
'first': 'enrico',
'last': 'fermi',
}
for key, value in user_0.items():
print(f"\nkey: {key}")
print(f"Value: {value}")
print("\n3")
favorite_languages = {
'jen': 'python',
'sarah': 'c',
'edward': 'ruby',
'phil': 'python',
}
for name, language in favorite_languages.items():
print(f"{name.title()}'s favorite language is {language.title()}")
for name in favorite_languages.keys():
print(name.title())
for name in favorite_languages:
print(name.title())
print("\n4")
favorite_languages = {
'jen': 'python',
'sarah': 'c',
'edward': 'ruby',
'phil': 'python',
}
friends = ['phil', 'sarah']
for name in favorite_languages.keys():
print(name.title())
if name in friends:
language = favorite_languages[name].title()
print(f"\t{name.title()}, I see you love {language}!")
if 'erin' not in favorite_languages.keys():
print("Erin, please take our poll!")
for name in sorted(favorite_languages.keys()):
print(f"{name.title()}, thank you for taking the poll.")
print("\n5")
print("The following languages have been mentioned:")
for language in favorite_languages.values():
print(language.title())
print("\n6")
print("The following languages have been mentioned:")
for language in set(favorite_languages.values()):
print(language.title())
print("\n7")
alien_0 = {'color': 'green', 'points': 5}
alien_1 = {'color': 'yellow', 'points': 10}
alien_2 = {'color': 'red', 'points': 15}
aliens = [alien_0, alien_1, alien_2]
for alien in aliens:
print(alien)
print("\n8")
# Make an empty list for storing aliens.
aliens = []
# Make 30 green aliens.
for alien_number in range(30):
new_alien = {'color': 'green', 'points': 5, 'speed': 'slow'}
aliens.append(new_alien)
for alien in aliens[:3]:
if alien['color'] == 'green':
alien['color'] = 'yellow'
alien['speed'] = 'medium'
alien['points'] = 10
elif alien['color'] == 'yellow':
alien['color'] = 'red'
alien['speed'] = 'fast'
alien['points'] = 15
# Show the first 5 aliens.
for alien in aliens[:5]:
print(alien)
print("...")
# Show how many aliens have been created.
print(f"Total bumber of aliens: {len(aliens)}")
print("\n9")
# Store information about a pizza being ordered.
pizza = {
'crust': 'thick',
'toppings': ['mushroom', 'extra cheese'],
}
# Summarize the order.
print(f"You ordered a {pizza['crust']}-crust pizza"
"with the following toppings:")
for topping in pizza['toppings']:
print("\t" + topping)
print("\n10")
favorite_languages = {
'jen': ['python', 'ruby'],
'sarah': ['c'],
'edward': ['ruby', 'go'],
'phil': ['python', 'haskell'],
}
for name, languages in favorite_languages.items():
print(f"\n{name.title()}'s favorite languages are:")
for language in languages:
print(f"\t{language.title()}")
print("\n10")
users = {
'aeinstein': {
'first': 'albert',
'last': 'einstein',
'location': 'princeton',
},
'murie': {
'first': 'marie',
'last': 'curie',
'location': 'paris',
},
}
for username, user_info in users.items():
print(f"\nUsername: {username}")
full_name = f"{user_info['first']} {user_info['last']}"
location = user_info['location']
print(f"\tFull name: {full_name.title()}")
print(f"\tLocation: {location.title()}")
| alien_0 = {'color': 'green', 'points': 5}
print(alien_0['color'])
print(alien_0['points'])
print(alien_0)
alien_0['x_position'] = 0
alien_0['y_position'] = 25
print(alien_0)
alien_0 = {}
alien_0['color'] = 'green'
alien_0['points'] = 5
print(alien_0)
alien_0 = {'color': 'green'}
print(f"The alien is {alien_0['color']}.")
alien_0['color'] = 'yellow'
print(f"The alien is now {alien_0['color']}.")
print('\n')
alien_0 = {'x_position': 0, 'y_position': 25, 'speed': 'medium'}
print(f"Original position: {alien_0['x_position']}")
alien_0['speed'] = 'fast'
if alien_0['speed'] == 'slow':
x_increment = 1
elif alien_0['speed'] == 'medium':
x_increment = 2
else:
x_increment = 3
alien_0['x_position'] = alien_0['x_position'] + x_increment
print(f"New position: {alien_0['x_position']}")
print('\n')
alien_0 = {'color': 'green', 'points': 5}
print(alien_0)
del alien_0['points']
print(alien_0)
print('\n1')
favorite_language = {'jen': 'python', 'sarah': 'c', 'edward': 'ruby', 'phil': 'python'}
language = favorite_language['sarah'].title()
print(f"sarah's favorite language is {language}.")
print('\n2')
user_0 = {'username': 'efermi', 'first': 'enrico', 'last': 'fermi'}
for (key, value) in user_0.items():
print(f'\nkey: {key}')
print(f'Value: {value}')
print('\n3')
favorite_languages = {'jen': 'python', 'sarah': 'c', 'edward': 'ruby', 'phil': 'python'}
for (name, language) in favorite_languages.items():
print(f"{name.title()}'s favorite language is {language.title()}")
for name in favorite_languages.keys():
print(name.title())
for name in favorite_languages:
print(name.title())
print('\n4')
favorite_languages = {'jen': 'python', 'sarah': 'c', 'edward': 'ruby', 'phil': 'python'}
friends = ['phil', 'sarah']
for name in favorite_languages.keys():
print(name.title())
if name in friends:
language = favorite_languages[name].title()
print(f'\t{name.title()}, I see you love {language}!')
if 'erin' not in favorite_languages.keys():
print('Erin, please take our poll!')
for name in sorted(favorite_languages.keys()):
print(f'{name.title()}, thank you for taking the poll.')
print('\n5')
print('The following languages have been mentioned:')
for language in favorite_languages.values():
print(language.title())
print('\n6')
print('The following languages have been mentioned:')
for language in set(favorite_languages.values()):
print(language.title())
print('\n7')
alien_0 = {'color': 'green', 'points': 5}
alien_1 = {'color': 'yellow', 'points': 10}
alien_2 = {'color': 'red', 'points': 15}
aliens = [alien_0, alien_1, alien_2]
for alien in aliens:
print(alien)
print('\n8')
aliens = []
for alien_number in range(30):
new_alien = {'color': 'green', 'points': 5, 'speed': 'slow'}
aliens.append(new_alien)
for alien in aliens[:3]:
if alien['color'] == 'green':
alien['color'] = 'yellow'
alien['speed'] = 'medium'
alien['points'] = 10
elif alien['color'] == 'yellow':
alien['color'] = 'red'
alien['speed'] = 'fast'
alien['points'] = 15
for alien in aliens[:5]:
print(alien)
print('...')
print(f'Total bumber of aliens: {len(aliens)}')
print('\n9')
pizza = {'crust': 'thick', 'toppings': ['mushroom', 'extra cheese']}
print(f"You ordered a {pizza['crust']}-crust pizzawith the following toppings:")
for topping in pizza['toppings']:
print('\t' + topping)
print('\n10')
favorite_languages = {'jen': ['python', 'ruby'], 'sarah': ['c'], 'edward': ['ruby', 'go'], 'phil': ['python', 'haskell']}
for (name, languages) in favorite_languages.items():
print(f"\n{name.title()}'s favorite languages are:")
for language in languages:
print(f'\t{language.title()}')
print('\n10')
users = {'aeinstein': {'first': 'albert', 'last': 'einstein', 'location': 'princeton'}, 'murie': {'first': 'marie', 'last': 'curie', 'location': 'paris'}}
for (username, user_info) in users.items():
print(f'\nUsername: {username}')
full_name = f"{user_info['first']} {user_info['last']}"
location = user_info['location']
print(f'\tFull name: {full_name.title()}')
print(f'\tLocation: {location.title()}') |
"""
Django settings for data_backend project.
Generated by 'django-admin startproject' using Django 2.1.3.
For more information on this file, see
https://docs.djangoproject.com/en/2.1/topics/settings/
For the full list of settings and their values, see
https://docs.djangoproject.com/en/2.1/ref/settings/
"""
# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = '(1y*b!a8(ok#ev7d(qi$w0roh+f_-nt%k60_=p-jfg=cwg(7z6'
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True
# Application definition
INSTALLED_APPS = [
'data_backend'
]
# Database
# https://docs.djangoproject.com/en/2.1/ref/settings/#databases
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql',
'NAME': 'sample',
'USER': 'postgres',
'PASSWORD': '',
'HOST': 'localhost',
'PORT': '5432',
}
}
| """
Django settings for data_backend project.
Generated by 'django-admin startproject' using Django 2.1.3.
For more information on this file, see
https://docs.djangoproject.com/en/2.1/topics/settings/
For the full list of settings and their values, see
https://docs.djangoproject.com/en/2.1/ref/settings/
"""
secret_key = '(1y*b!a8(ok#ev7d(qi$w0roh+f_-nt%k60_=p-jfg=cwg(7z6'
debug = True
installed_apps = ['data_backend']
databases = {'default': {'ENGINE': 'django.db.backends.postgresql', 'NAME': 'sample', 'USER': 'postgres', 'PASSWORD': '', 'HOST': 'localhost', 'PORT': '5432'}} |
error_msg = {
"usedemail": "Email has already been used",
"email_format": "Please input a valid email.",
"no_email": "Please provide an email",
"usedname": "Username has already been taken",
"shortname": "Username must have at least three characters",
"no_letter": "Username should have a letter.",
"special_character": "Username should only contain letters or numbers.",
"short_pwd": "Password should be at least 8 characters.",
"number_in_pwd": "Password should at least have a number",
"letter_in_pwd": "Password should at least have a letter",
"caps_in_pwd": "Password should have a capital letter",
"unregistered_email": "Email is not registered",
"user_deactivated": "This user has been deactivated",
"not_verified": "Account not verified, check email",
"missmatch": "Email and password did not match",
"require_pwd": "Password is required to login",
"email_pwd": "Email address is required to login",
"profile_not_there": "User profile not found",
"cannot_update_profile": "No Permission to Edit",
"no_slug":"Article with that slug does not exist",
"no_comment":"Comment with that ID does not exist",
"cannot_followself":"You cannot follow yourself"
}
success_msg = {
"confirmed_email": "Email succesfully confirmed",
"pwd_changed": "Your password was successfully changed",
"request_success": "Request successful,a link has been sent to your email",
"email_verify": "Your verification link sent, check your email",
"profil_update": "Profile update successful",
"profil_success": "Request successful",
"usedemail": "Email has already been used",
"deleted_comment": "Comment Successfully deleted",
"email_format": "Please input a valid email.",
"added_comment": "Comment Successfully added",
"no_email": "Please provide an email",
"usedname": "Username has already been taken",
"shortname": "Username must have at least three characters",
"no_letter": "Username should have a letter.",
"special_character": "Username should only contain letters or numbers.",
"short_pwd": "Password should be at least 8 characters.",
"number_in_pwd": "Password should at least have a number",
"letter_in_pwd": "Password should at least have a letter",
"caps_in_pwd": "Password should have a capital letter",
"unregistered_email": "Email is not registered",
"user_deactivated": "This user has been deactivated",
"not_verified": "Account not verified, check email",
"missmatch": "Email and password did not match",
"require_pwd": "Password is required to login",
"email_pwd": "Email address is required to login",
"update_success": "Comment successfully updated",
"no_slug": "Article with this slug does not exist",
"no_comment": "Comment with this ID does not exist",
"restricted": "You are logged out",
"Unauthorized": "Unauthorized to update this comment",
"deleted_comment":"Comment Successfully deleted",
"added_comment":"Comment Successfully added",
"update_success":"Comment successfully updated",
"Like": "Great, you've liked this",
'Dislike': "Okay, you've disliked this",
'Null': "Undone!",
'success_followed':"User Successfully Followed ",
'success_unfollowed':"User Successfully Unfollowed ",
'user_followers':"Authors Followers ",
'user_following':"Authors you are Following"
}
statusmessage = {
'Like': "Liked",
'Dislike': "Disliked",
'Null': "Null",
}
read_stats_message = {
"read_status":"Article has been read",
"read_update":"You have already read this article",
"read_error":"Article doesnot exist check details again"
} | error_msg = {'usedemail': 'Email has already been used', 'email_format': 'Please input a valid email.', 'no_email': 'Please provide an email', 'usedname': 'Username has already been taken', 'shortname': 'Username must have at least three characters', 'no_letter': 'Username should have a letter.', 'special_character': 'Username should only contain letters or numbers.', 'short_pwd': 'Password should be at least 8 characters.', 'number_in_pwd': 'Password should at least have a number', 'letter_in_pwd': 'Password should at least have a letter', 'caps_in_pwd': 'Password should have a capital letter', 'unregistered_email': 'Email is not registered', 'user_deactivated': 'This user has been deactivated', 'not_verified': 'Account not verified, check email', 'missmatch': 'Email and password did not match', 'require_pwd': 'Password is required to login', 'email_pwd': 'Email address is required to login', 'profile_not_there': 'User profile not found', 'cannot_update_profile': 'No Permission to Edit', 'no_slug': 'Article with that slug does not exist', 'no_comment': 'Comment with that ID does not exist', 'cannot_followself': 'You cannot follow yourself'}
success_msg = {'confirmed_email': 'Email succesfully confirmed', 'pwd_changed': 'Your password was successfully changed', 'request_success': 'Request successful,a link has been sent to your email', 'email_verify': 'Your verification link sent, check your email', 'profil_update': 'Profile update successful', 'profil_success': 'Request successful', 'usedemail': 'Email has already been used', 'deleted_comment': 'Comment Successfully deleted', 'email_format': 'Please input a valid email.', 'added_comment': 'Comment Successfully added', 'no_email': 'Please provide an email', 'usedname': 'Username has already been taken', 'shortname': 'Username must have at least three characters', 'no_letter': 'Username should have a letter.', 'special_character': 'Username should only contain letters or numbers.', 'short_pwd': 'Password should be at least 8 characters.', 'number_in_pwd': 'Password should at least have a number', 'letter_in_pwd': 'Password should at least have a letter', 'caps_in_pwd': 'Password should have a capital letter', 'unregistered_email': 'Email is not registered', 'user_deactivated': 'This user has been deactivated', 'not_verified': 'Account not verified, check email', 'missmatch': 'Email and password did not match', 'require_pwd': 'Password is required to login', 'email_pwd': 'Email address is required to login', 'update_success': 'Comment successfully updated', 'no_slug': 'Article with this slug does not exist', 'no_comment': 'Comment with this ID does not exist', 'restricted': 'You are logged out', 'Unauthorized': 'Unauthorized to update this comment', 'deleted_comment': 'Comment Successfully deleted', 'added_comment': 'Comment Successfully added', 'update_success': 'Comment successfully updated', 'Like': "Great, you've liked this", 'Dislike': "Okay, you've disliked this", 'Null': 'Undone!', 'success_followed': 'User Successfully Followed ', 'success_unfollowed': 'User Successfully Unfollowed ', 'user_followers': 'Authors Followers ', 'user_following': 'Authors you are Following'}
statusmessage = {'Like': 'Liked', 'Dislike': 'Disliked', 'Null': 'Null'}
read_stats_message = {'read_status': 'Article has been read', 'read_update': 'You have already read this article', 'read_error': 'Article doesnot exist check details again'} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.