proliantutils/proliantutils/redfish/resources/system/storage/volume.py

47 lines
1.5 KiB
Python

# 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.
from sushy.resources import base
from sushy import utils as sushy_utils
from proliantutils.redfish import utils
class Volume(base.ResourceBase):
"""This class represents the Volume resource"""
identity = base.Field('Id', required=True)
"""The processor identity string"""
capacity_bytes = base.Field('CapacityBytes', adapter=int)
"""The size in bytes of this Volume"""
class VolumeCollection(base.ResourceCollectionBase):
"""This class represents the collection of Volume resource"""
@property
def _resource_type(self):
return Volume
@property
@sushy_utils.cache_it
def maximum_size_bytes(self):
"""Gets the biggest volume
:returns size in bytes.
"""
return utils.max_safe([member.capacity_bytes
for member in self.get_members()])