proliantutils/proliantutils/redfish/resources/account_service/account_service.py
ankit 7708ef0f9c Redfish: Adds 'reset_ilo_credential' for redfish systems
This commit provides functionality to update credentials
on redish systems.

Change-Id: I110f0780d1b894ce9cd7f06d32a39c3a7738e4b6
2017-07-18 13:12:03 +00:00

45 lines
1.4 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 proliantutils.redfish.resources.account_service import account
from proliantutils.redfish import utils
class HPEAccountService(base.ResourceBase):
"""Class that extends the functionality of AccountService resource class
This class extends the functionality of Account resource class
from sushy
"""
_accounts = None
@property
def accounts(self):
"""Property to provide instance of HPEAccountCollection
"""
if self._accounts is None:
self._accounts = account.HPEAccountCollection(
self._conn, utils.get_subresource_path_by(self, 'Accounts'),
redfish_version=self.redfish_version)
return self._accounts
def refresh(self):
super(HPEAccountService, self).refresh()
self._accounts = None