Skip to content

Commit 4b5e769

Browse files
authored
Merge pull request #48 from ABHISHEK-SINHA10/ABHISHEK-SINHA10/Release_1.2.518
Release 1.2.518
2 parents fb5667c + 1760497 commit 4b5e769

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+96
-236
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@ Dell OpenManage Python SDK is supported for python 2.7 and above.
2323
``` pip3 install -r requirements-python3x.txt ```
2424

2525
# Installation
26-
* This branch contains the build version 1.2.513
26+
* This branch contains the build version 1.2.518
2727
* Install the latest development version from github:
2828

2929
```
3030
git clone https://github.com/dell/omsdk.git
3131
cd omsdk
32-
sh build.sh 1.2 513
32+
sh build.sh 1.2 518
3333
cd dist
34-
pip install omsdk-1.2.513-py2.py3-none-any.whl
34+
pip install omsdk-1.2.518-py2.py3-none-any.whl
3535
```
3636
* If omsdk build creation fails due to `python` command error, configure
3737
`python` to launch either `python2` or `python3`. Accordingly configure the `pip` command.
@@ -41,7 +41,7 @@ Dell OpenManage Python SDK is supported for python 2.7 and above.
4141

4242
* Downgrade pip version to lower than 10.0 and then install omsdk
4343
* Force install omsdk using:
44-
```pip install --ignore-installed omsdk-1.2.513-py2.py3-none-any.whl```
44+
```pip install --ignore-installed omsdk-1.2.518-py2.py3-none-any.whl```
4545
4646
# Uninstallation
4747
* Uninstall this module as follows:

omdrivers/CMC.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# -*- coding: utf-8 -*-
33
#
44
#
5-
# Copyright © 2018 Dell Inc. or its subsidiaries. All rights reserved.
5+
# Copyright © 2018-2024 Dell Inc. or its subsidiaries. All rights reserved.
66
# Dell, EMC, and other trademarks are trademarks of Dell Inc. or its subsidiaries.
77
# Other trademarks may be trademarks of their respective owners.
88
#
@@ -23,7 +23,6 @@
2323

2424
import sys
2525

26-
from enum import Enum
2726
from omsdk.sdkdevice import iDeviceRegistry, iDeviceDriver, iDeviceDiscovery
2827
from omsdk.sdkdevice import iDeviceTopologyInfo
2928
from omsdk.sdkproto import PWSMAN

omdrivers/Compellent.py

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# -*- coding: utf-8 -*-
33
#
44
#
5-
# Copyright © 2018 Dell Inc. or its subsidiaries. All rights reserved.
5+
# Copyright © 2018-2024 Dell Inc. or its subsidiaries. All rights reserved.
66
# Dell, EMC, and other trademarks are trademarks of Dell Inc. or its subsidiaries.
77
# Other trademarks may be trademarks of their respective owners.
88
#
@@ -20,11 +20,8 @@
2020
#
2121
# Authors: Vaideeswaran Ganesan
2222
#
23-
from enum import Enum
2423
from omsdk.sdkdevice import iDeviceDiscovery, iDeviceRegistry, iDeviceDriver
2524
from omsdk.sdkcenum import EnumWrapper
26-
from omsdk.sdkfile import FileOnShare, Share
27-
from omsdk.sdkcreds import UserCredentials
2825
from omsdk.sdkproto import PSNMP
2926
import sys
3027

@@ -35,9 +32,7 @@
3532
try:
3633
from pysnmp.hlapi import *
3734
from pysnmp.smi import *
38-
from pysnmp.entity.rfc3413.oneliner import cmdgen
39-
from pysnmp.proto import rfc1902
40-
from pysnmp import debug
35+
from pysnmp.smi.rfc1902 import ObjectIdentity
4136
PySnmpPresent = True
4237
except ImportError:
4338
PySnmpPresent = False

omdrivers/EqualLogic.py

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# -*- coding: utf-8 -*-
33
#
44
#
5-
# Copyright © 2018 Dell Inc. or its subsidiaries. All rights reserved.
5+
# Copyright © 2018-2024 Dell Inc. or its subsidiaries. All rights reserved.
66
# Dell, EMC, and other trademarks are trademarks of Dell Inc. or its subsidiaries.
77
# Other trademarks may be trademarks of their respective owners.
88
#
@@ -20,14 +20,10 @@
2020
#
2121
# Authors: Vaideeswaran Ganesan
2222
#
23-
from enum import Enum
2423
from omsdk.sdkdevice import iDeviceDiscovery, iDeviceRegistry, iDeviceDriver
2524
from omsdk.sdkcenum import EnumWrapper
26-
from omsdk.sdkfile import FileOnShare, Share
27-
from omsdk.sdkcreds import UserCredentials
2825
from omsdk.sdkproto import PSNMP
2926
import sys
30-
import re
3127
import ipaddress
3228
import logging
3329

@@ -39,9 +35,7 @@
3935
try:
4036
from pysnmp.hlapi import *
4137
from pysnmp.smi import *
42-
from pysnmp.entity.rfc3413.oneliner import cmdgen
43-
from pysnmp.proto import rfc1902
44-
from pysnmp import debug
38+
from pysnmp.smi.rfc1902 import ObjectIdentity
4539
PyPSNMP = True
4640
except ImportError:
4741
PyPSNMP = False

omdrivers/F10.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# -*- coding: utf-8 -*-
33
#
44
#
5-
# Copyright © 2018 Dell Inc. or its subsidiaries. All rights reserved.
5+
# Copyright © 2018-2024 Dell Inc. or its subsidiaries. All rights reserved.
66
# Dell, EMC, and other trademarks are trademarks of Dell Inc. or its subsidiaries.
77
# Other trademarks may be trademarks of their respective owners.
88
#
@@ -20,7 +20,6 @@
2020
#
2121
# Authors: Vaideeswaran Ganesan
2222
#
23-
from enum import Enum
2423
from omsdk.sdkdevice import iDeviceDiscovery, iDeviceRegistry, iDeviceDriver
2524
from omsdk.sdkcenum import EnumWrapper
2625
from omsdk.sdkproto import PSNMP, ProtocolEnum
@@ -35,9 +34,7 @@
3534
try:
3635
from pysnmp.hlapi import *
3736
from pysnmp.smi import *
38-
from pysnmp.entity.rfc3413.oneliner import cmdgen
39-
from pysnmp.proto import rfc1902
40-
from pysnmp import debug
37+
from pysnmp.smi.rfc1902 import ObjectIdentity
4138
PyPSNMP = True
4239
except ImportError:
4340
PyPSNMP = False

omdrivers/F10NG.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,9 @@
2020
#
2121
# Authors: Sachin Apagundi
2222
#
23-
from enum import Enum
2423
from omsdk.sdkdevice import iDeviceDiscovery, iDeviceRegistry, iDeviceDriver
2524
from omsdk.sdkcenum import EnumWrapper
26-
from omsdk.sdkproto import PSNMP, ProtocolEnum
25+
from omsdk.sdkproto import PSNMP
2726
import sys
2827
import logging
2928

@@ -35,9 +34,7 @@
3534
try:
3635
from pysnmp.hlapi import *
3736
from pysnmp.smi import *
38-
from pysnmp.entity.rfc3413.oneliner import cmdgen
39-
from pysnmp.proto import rfc1902
40-
from pysnmp import debug
37+
from pysnmp.smi.rfc1902 import ObjectIdentity
4138
PyPSNMP = True
4239
except ImportError:
4340
PyPSNMP = False

omdrivers/FileList.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# -*- coding: utf-8 -*-
33
#
44
#
5-
# Copyright © 2018 Dell Inc. or its subsidiaries. All rights reserved.
5+
# Copyright © 2018-2024 Dell Inc. or its subsidiaries. All rights reserved.
66
# Dell, EMC, and other trademarks are trademarks of Dell Inc. or its subsidiaries.
77
# Other trademarks may be trademarks of their respective owners.
88
#
@@ -21,12 +21,9 @@
2121
# Authors: Vaideeswaran Ganesan
2222
#
2323
import os
24-
import io
2524
import logging
2625
import threading
27-
import time
2826
from omsdk.sdkconsole import iConsoleRegistry, iConsoleDriver, iConsoleDiscovery
29-
from omsdk.sdkprint import PrettyPrint
3027
from omsdk.sdkproto import PCONSOLE
3128
import sys
3229
import logging

omdrivers/MDArray.py

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# -*- coding: utf-8 -*-
33
#
44
#
5-
# Copyright © 2018 Dell Inc. or its subsidiaries. All rights reserved.
5+
# Copyright © 2018-2024 Dell Inc. or its subsidiaries. All rights reserved.
66
# Dell, EMC, and other trademarks are trademarks of Dell Inc. or its subsidiaries.
77
# Other trademarks may be trademarks of their respective owners.
88
#
@@ -20,11 +20,8 @@
2020
#
2121
# Authors: Vaideeswaran Ganesan
2222
#
23-
from enum import Enum
2423
from omsdk.sdkdevice import iDeviceDiscovery, iDeviceRegistry, iDeviceDriver
2524
from omsdk.sdkcenum import EnumWrapper
26-
from omsdk.sdkfile import FileOnShare, Share
27-
from omsdk.sdkcreds import UserCredentials
2825
from omsdk.sdkproto import PSNMP
2926
import sys
3027

@@ -34,9 +31,7 @@
3431
try:
3532
from pysnmp.hlapi import *
3633
from pysnmp.smi import *
37-
from pysnmp.entity.rfc3413.oneliner import cmdgen
38-
from pysnmp.proto import rfc1902
39-
from pysnmp import debug
34+
from pysnmp.smi.rfc1902 import ObjectIdentity
4035

4136
PySnmpPresent = True
4237
except ImportError:

omdrivers/NSeries.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# -*- coding: utf-8 -*-
33
#
44
#
5-
# Copyright © 2018 Dell Inc. or its subsidiaries. All rights reserved.
5+
# Copyright © 2018-2024 Dell Inc. or its subsidiaries. All rights reserved.
66
# Dell, EMC, and other trademarks are trademarks of Dell Inc. or its subsidiaries.
77
# Other trademarks may be trademarks of their respective owners.
88
#
@@ -34,9 +34,7 @@
3434
try:
3535
from pysnmp.hlapi import *
3636
from pysnmp.smi import *
37-
from pysnmp.entity.rfc3413.oneliner import cmdgen
38-
from pysnmp.proto import rfc1902
39-
from pysnmp import debug
37+
from pysnmp.smi.rfc1902 import ObjectIdentity
4038
PyPSNMP = True
4139
except ImportError:
4240
PyPSNMP = False

omdrivers/Nagios.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# -*- coding: utf-8 -*-
33
#
44
#
5-
# Copyright © 2018 Dell Inc. or its subsidiaries. All rights reserved.
5+
# Copyright © 2018-2024 Dell Inc. or its subsidiaries. All rights reserved.
66
# Dell, EMC, and other trademarks are trademarks of Dell Inc. or its subsidiaries.
77
# Other trademarks may be trademarks of their respective owners.
88
#
@@ -27,7 +27,6 @@
2727
from omsdk.sdkproto import PCONSOLE
2828
from omsdk.sdkconsole import iConsoleRegistry, iConsoleDriver, iConsoleDiscovery
2929
from omsdk.sdkfile import cfgprocessor
30-
from omsdk.sdkprint import PrettyPrint
3130

3231
import sys
3332

0 commit comments

Comments
 (0)