Added Support to SecureBoot, Firmware Settings API through RIS. The API's are fully tested to work only on Gen9 Systems. Note: This is a breaking change from the prev version of proliantutils. Driver code must be modified for this change to work. Change-Id: Iea8a68330a5042407ab719667cd725946ffcf821 Implements: blueprint ris-support
81 lines
2.4 KiB
Python
81 lines
2.4 KiB
Python
# Copyright 2014 Hewlett-Packard Development Company, L.P.
|
|
#
|
|
# 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.
|
|
|
|
"""Exception Class for iLO"""
|
|
|
|
|
|
class IloError(Exception):
|
|
"""Base Exception.
|
|
|
|
This exception is used when a problem is encountered in
|
|
executing an operation on the iLO.
|
|
"""
|
|
def __init__(self, message, errorcode=None):
|
|
super(IloError, self).__init__(message)
|
|
|
|
|
|
class IloClientInternalError(IloError):
|
|
"""Internal Error from IloClient.
|
|
|
|
This exception is raised when iLO client library fails to
|
|
communicate properly with the iLO.
|
|
"""
|
|
def __init__(self, message, errorcode=None):
|
|
super(IloError, self).__init__(message)
|
|
|
|
|
|
class IloCommandNotSupportedError(IloError):
|
|
"""Command not supported on the platform.
|
|
|
|
This exception is raised when iLO client library fails to
|
|
communicate properly with the iLO
|
|
"""
|
|
def __init__(self, message, errorcode=None):
|
|
super(IloError, self).__init__(message)
|
|
|
|
|
|
class IloLoginFailError(IloError):
|
|
"""iLO Login Failed.
|
|
|
|
This exception is used to communicate a login failure to
|
|
the caller.
|
|
"""
|
|
messages = ['User login name was not found',
|
|
'Login failed', 'Login credentials rejected']
|
|
statuses = [0x005f, 0x000a]
|
|
message = 'Authorization Failed'
|
|
|
|
def __init__(self, message, errorcode=None):
|
|
super(IloError, self).__init__(message)
|
|
|
|
|
|
class IloConnectionError(IloError):
|
|
"""Cannot connect to iLO.
|
|
|
|
This exception is used to communicate an HTTP connection
|
|
error from the iLO to the caller.
|
|
"""
|
|
def __init__(self, message):
|
|
super(IloConnectionError, self).__init__(message)
|
|
|
|
|
|
class IloInvalidInputError(IloError):
|
|
"""Invalid Input passed.
|
|
|
|
This exception is used when invalid inputs are passed to
|
|
the APIs exposed by this module.
|
|
"""
|
|
def __init__(self, message):
|
|
super(IloInvalidInputError, self).__init__(message)
|