
It introduces the ``hpOneView`` and ``ilorest`` library to the OneView Driver. This patch will be used as the standard patch to other patches related to the removal of the ``python-oneviewclient`` library dependency. Change-Id: Ib9d72ff5713d58631bcdccc817707b5d512e156e Partial-Bug: #1693788 Co-Authored-By: Fellype Cavalcante <fellypefca@lsd.ufcg.edu.br> Co-Authored-By: Ricardo Araujo <ricardo@lsd.ufcg.edu.br>
183 lines
3.6 KiB
Python
183 lines
3.6 KiB
Python
# Copyright 2015 Intel Corporation
|
|
# All Rights Reserved.
|
|
#
|
|
# 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 module provides mock 'specs' for third party modules that can be used
|
|
when needing to mock those third party modules"""
|
|
|
|
# python-dracclient
|
|
DRACCLIENT_SPEC = (
|
|
'client',
|
|
'constants',
|
|
'exceptions'
|
|
)
|
|
|
|
DRACCLIENT_CLIENT_MOD_SPEC = (
|
|
'DRACClient',
|
|
)
|
|
|
|
DRACCLIENT_CONSTANTS_MOD_SPEC = (
|
|
'POWER_OFF',
|
|
'POWER_ON',
|
|
'REBOOT'
|
|
)
|
|
|
|
# ironic_inspector
|
|
IRONIC_INSPECTOR_CLIENT_SPEC = (
|
|
'ClientV1',
|
|
)
|
|
|
|
|
|
class InspectorClientV1Specs(object):
|
|
def __init__(self, session, inspector_url, api_version):
|
|
pass
|
|
|
|
def introspect(self, uuid):
|
|
pass
|
|
|
|
def get_status(self, uuid):
|
|
pass
|
|
|
|
|
|
# proliantutils
|
|
PROLIANTUTILS_SPEC = (
|
|
'exception',
|
|
'ilo',
|
|
'utils',
|
|
)
|
|
|
|
# pywsman
|
|
PYWSMAN_SPEC = (
|
|
'Client',
|
|
'ClientOptions',
|
|
'EndPointReference',
|
|
'FLAG_ENUMERATION_OPTIMIZATION',
|
|
'Filter',
|
|
'XmlDoc',
|
|
'wsman_transport_set_verify_host',
|
|
'wsman_transport_set_verify_peer',
|
|
)
|
|
|
|
# pywsnmp
|
|
PYWSNMP_SPEC = (
|
|
'entity',
|
|
'error',
|
|
'proto',
|
|
)
|
|
|
|
# scciclient
|
|
SCCICLIENT_SPEC = (
|
|
'irmc',
|
|
)
|
|
SCCICLIENT_IRMC_SCCI_SPEC = (
|
|
'POWER_OFF',
|
|
'POWER_ON',
|
|
'POWER_RESET',
|
|
'POWER_SOFT_CYCLE',
|
|
'POWER_SOFT_OFF',
|
|
'MOUNT_CD',
|
|
'POWER_RAISE_NMI',
|
|
'UNMOUNT_CD',
|
|
'MOUNT_FD',
|
|
'UNMOUNT_FD',
|
|
'SCCIError',
|
|
'SCCIClientError',
|
|
'SCCIError',
|
|
'SCCIInvalidInputError',
|
|
'get_share_type',
|
|
'get_client',
|
|
'get_report',
|
|
'get_sensor_data',
|
|
'get_virtual_cd_set_params_cmd',
|
|
'get_virtual_fd_set_params_cmd',
|
|
'get_essential_properties',
|
|
'get_capabilities_properties',
|
|
)
|
|
SCCICLIENT_IRMC_ELCM_SPEC = (
|
|
'backup_bios_config',
|
|
'restore_bios_config',
|
|
'set_secure_boot_mode',
|
|
)
|
|
|
|
SCCICLIENT_VIOM_SPEC = (
|
|
'validate_physical_port_id',
|
|
'VIOMConfiguration',
|
|
)
|
|
|
|
SCCICLIENT_VIOM_CONF_SPEC = (
|
|
'set_lan_port',
|
|
'set_iscsi_volume',
|
|
'set_fc_volume',
|
|
'apply',
|
|
'dump_json',
|
|
'terminate',
|
|
)
|
|
|
|
ONEVIEWCLIENT_SPEC = (
|
|
'client',
|
|
'states',
|
|
'exceptions',
|
|
'models',
|
|
'utils',
|
|
)
|
|
|
|
ONEVIEWCLIENT_CLIENT_CLS_SPEC = (
|
|
)
|
|
|
|
ONEVIEWCLIENT_STATES_SPEC = (
|
|
'ONEVIEW_POWER_OFF',
|
|
'ONEVIEW_POWERING_OFF',
|
|
'ONEVIEW_POWER_ON',
|
|
'ONEVIEW_POWERING_ON',
|
|
'ONEVIEW_RESETTING',
|
|
'ONEVIEW_ERROR',
|
|
)
|
|
|
|
HPE_ONEVIEW_SPEC = (
|
|
'oneview_client',
|
|
'resources',
|
|
'exceptions',
|
|
)
|
|
|
|
HPE_ONEVIEW_CLS_SPEC = (
|
|
)
|
|
|
|
HPE_ONEVIEW_STATES_SPEC = (
|
|
'ONEVIEW_POWER_OFF',
|
|
'ONEVIEW_POWERING_OFF',
|
|
'ONEVIEW_POWER_ON',
|
|
'ONEVIEW_POWERING_ON',
|
|
'ONEVIEW_RESETTING',
|
|
'ONEVIEW_ERROR',
|
|
)
|
|
|
|
SUSHY_CONSTANTS_SPEC = (
|
|
'BOOT_SOURCE_TARGET_PXE',
|
|
'BOOT_SOURCE_TARGET_HDD',
|
|
'BOOT_SOURCE_TARGET_CD',
|
|
'BOOT_SOURCE_TARGET_BIOS_SETUP',
|
|
'SYSTEM_POWER_STATE_ON',
|
|
'SYSTEM_POWER_STATE_POWERING_ON',
|
|
'SYSTEM_POWER_STATE_OFF',
|
|
'SYSTEM_POWER_STATE_POWERING_OFF',
|
|
'RESET_ON',
|
|
'RESET_FORCE_OFF',
|
|
'RESET_GRACEFUL_SHUTDOWN',
|
|
'RESET_GRACEFUL_RESTART',
|
|
'RESET_FORCE_RESTART',
|
|
'RESET_NMI',
|
|
'BOOT_SOURCE_ENABLED_CONTINUOUS',
|
|
'BOOT_SOURCE_ENABLED_ONCE',
|
|
)
|