-
Notifications
You must be signed in to change notification settings - Fork 354
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add entry points for some OEM devices. (#943)
* Add cpu_count for controller model. * Add entry point for Dell EMC PMAX, HPE Primera, H3C Unistor Converged Fabric, Inspur AS5500/AS5300/AS2600/AS2200 Co-authored-by: wangqin <442577631@qq.com>
- Loading branch information
1 parent
462d09c
commit ca0ba06
Showing
7 changed files
with
50 additions
and
1 deletion.
There are no files selected for viewing
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Copyright 2022 The SODA Authors. | ||
# | ||
# 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 delfin.drivers.hpe.hpe_3par.hpe_3parstor import Hpe3parStorDriver | ||
|
||
|
||
class H3cUniStorCfDriver(Hpe3parStorDriver): | ||
def get_storage(self, context): | ||
storage_info = super().get_storage(context) | ||
storage_info['vendor'] = 'H3C' | ||
return storage_info |
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Copyright 2022 The SODA Authors. | ||
# | ||
# 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 delfin.drivers.ibm.storwize_svc.storwize_svc import StorwizeSVCDriver | ||
|
||
|
||
class As5500Driver(StorwizeSVCDriver): | ||
def get_storage(self, context): | ||
storage = super().get_storage(context) | ||
storage['vendor'] = 'Inspur' | ||
return storage |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters