1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154
|
# 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.
# This is referred from Redfish standard schema.
# http://redfish.dmtf.org/schemas/v1/StorageController.v1_6_0.json
import logging
from sushy.resources import base
from sushy.resources import common
from sushy.resources import constants as res_cons
from sushy.resources import settings
from sushy.resources.system.storage import constants
from sushy.taskmonitor import TaskMonitor
from sushy import utils
LOG = logging.getLogger(__name__)
class StorageController(base.ResourceBase):
"""Storage controller"""
identity = base.Field('Id', required=True)
"""The storage controller identity"""
name = base.Field('Name', required=True)
"""The name of the storage controller"""
status = common.StatusField('Status')
"""Describes the status and health of the resource and its children."""
identifiers = common.IdentifiersListField('Identifiers', default=[])
"""The Durable names for the storage controller."""
speed_gbps = base.Field('SpeedGbps')
"""The maximum speed of the storage controller's device interface."""
controller_protocols = base.MappedListField(
'SupportedControllerProtocols', res_cons.Protocol)
"""The protocols by which this storage controller can be communicated to"""
device_protocols = base.MappedListField('SupportedDeviceProtocols',
res_cons.Protocol)
"""The protocols that can be used to communicate with attached devices"""
raid_types = base.MappedListField('SupportedRAIDTypes', constants.RAIDType)
"""The set of RAID types supported by the storage controller."""
_settings = settings.SettingsField()
"""Future intended state for settings that can't be updated immediately."""
@property
@utils.cache_it
def pending_settings(self):
"""Pending Storage Controller settings resource"""
return StorageController(
self._conn, self._settings.resource_uri,
registries=None,
redfish_version=self.redfish_version, root=self.root)
@property
def supported_apply_times(self):
"""List of supported BIOS update apply times
:returns: List of supported update apply time names
"""
return self._settings._supported_apply_times
def update(self, payload, apply_time=None, maint_window_start_time=None,
maint_window_duration=None):
"""Updates writable properties
Supports updating properties that require reboot.
:param payload: dictionary with properties to update
:param apply_time: When to update the attributes. Optional.
A :py:class:`sushy.ApplyTime` value.
:param maint_window_start_time: The start time of a maintenance window,
datetime. Required when updating during maintenance window and
default maintenance window not set by the system.
:param maint_window_duration: Duration of maintenance time since
maintenance window start time in seconds. Required when updating
during maintenance window and default maintenance window not
set by the system.
:returns: TaskMonitor if async task or None
"""
payload = utils.process_apply_time_input(
payload, apply_time, maint_window_start_time,
maint_window_duration)
# NOTE(vanou): To retrieve current ETag value of @Redfish.Settings
# but not update cached pending_settings, because cached property is
# only this one and re-cache this is not required
self.refresh(force=False)
r = self._settings.commit(self._conn, payload)
utils.cache_clear(self, force_refresh=False,
only_these=['pending_settings'])
if r.status_code == 202:
return TaskMonitor.from_response(
self._conn, r, self._settings.resource_uri,
self.redfish_version, self.registries)
class ControllerCollection(base.ResourceCollectionBase):
@property
def _resource_type(self):
return StorageController
@property
@utils.cache_it
def summary(self):
"""Summary of storage controllers
:returns: dictionary of controller id-s and their status in format
.. code-block:: python
{'RAID.Integrated.1-1': {'Health': sushy.Health.OK,
'State': sushy.State.ENABLED}}
"""
controllers = {}
for controller in self.get_members():
controllers[controller.identity] = {
'Health': controller.status.health,
'State': controller.status.state,
}
return controllers
def __init__(self, connector, path, redfish_version=None, registries=None,
root=None):
"""A class representing a ControllerCollection
:param connector: A Connector instance
:param path: The canonical path to the Controller collection resource
:param redfish_version: The version of Redfish. Used to construct
the object according to schema of the given version.
:param registries: Dict of Redfish Message Registry objects to be
used in any resource that needs registries to parse messages
:param root: Sushy root object. Empty for Sushy root itself.
"""
super().__init__(
connector, path, redfish_version=redfish_version,
registries=registries,
root=root)
|