Source code for oneview_redfish_toolkit.api.blade_manager

# -*- coding: utf-8 -*-

# Copyright (2017) Hewlett Packard Enterprise Development LP
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.

import collections
from oneview_redfish_toolkit.api.manager \
    import Manager


[docs]class BladeManager(Manager): """Creates a Manager Redfish dict for a Blade Populates self.redfish with some hardcoded Manager values and with the response from OneView. """ def __init__(self, server_hardware): """BladeManager constructor Populates self.redfish with some hardcoded Manager values and with the response from OneView. Args: server_hardware: A dict for a server hardware """ super().__init__(server_hardware, server_hardware['mpFirmwareVersion']) self.redfish["ManagerType"] = "BMC" self.redfish["Name"] = "Blade Manager" self.redfish["Description"] = "HPE OneView Blade Manager" self.redfish["Links"] = collections.OrderedDict() self.redfish["Links"]["ManagerForServers"] = list() self.redfish["Links"]["ManagerForServers"].append( {"@odata.id": "/redfish/v1/Systems/" + server_hardware['uuid']} ) self.redfish["Links"]["ManagerForChassis"] = list() self.redfish["Links"]["ManagerForChassis"].append( {"@odata.id": "/redfish/v1/Chassis/" + server_hardware['uuid']} ) self._validate()