Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typos #11

Open
wants to merge 1 commit into
base: devel
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Dell EMC OpenManage Python SDK
==============================

Dell EMC OpenManage Python Software Development Kit (SDK) is a pythonic library for programatically managing Dell EMC Servers and Chassis. Using this library a user can perform lifecycle operations on Dell EMC PowerEdge Servers and Blade Enclosure Chassis in Pythonic way.
Dell EMC OpenManage Python Software Development Kit (SDK) is a pythonic library for programmatically managing Dell EMC Servers and Chassis. Using this library a user can perform lifecycle operations on Dell EMC PowerEdge Servers and Blade Enclosure Chassis in Pythonic way.

The Dell EMC OpenManage Python SDK leverages DMTF's Web Services Management standard (WS-Man) and IETF's Simple Network Management Protocol (SNMP) for managing and monitoring the Dell EMC PowerEdge branded hardware.

Expand Down
12 changes: 6 additions & 6 deletions docs/idrac.rst
Original file line number Diff line number Diff line change
Expand Up @@ -708,7 +708,7 @@ Server Configuration Profile and Server Profiles
.. function:: idrac.config_mgr.scp_import_async(scp_share_path)

Import Server Configuration Profile to iDRAC. This API returns immediately
and returns the job id assocated with the import operation. Until the
and returns the job id associated with the import operation. Until the
operation is complete, iDRAC will not be accepting other jobs. Certain
changes like RAID creation, would require the server to be rebooted
after iDRAC successfully imported the Server Configuration Profile.
Expand Down Expand Up @@ -742,7 +742,7 @@ Server Configuration Profile and Server Profiles
.. function:: idrac.config_mgr.scp_export_async(scp_share_path)

Export Server Configuration Profile to share. This API returns immediately
and returns the job id assocated with the import operation. Until the
and returns the job id associated with the import operation. Until the
operation is complete, iDRAC will not be accepting other jobs.

:param omsdk.sdkfile.FileOnShare scp_share_path: Location where the Server Configuration Profile will be exported
Expand Down Expand Up @@ -775,7 +775,7 @@ Server Configuration Profile and Server Profiles
.. function:: idrac.config_mgr.sp_import_async(sp_share_path)

Import Server Profile to iDRAC. This API returns immediately
and returns the job id assocated with the import operation. Until the
and returns the job id associated with the import operation. Until the
operation is complete, iDRAC will not be accepting other jobs. Certain
changes like RAID creation, would require the server to be rebooted
after iDRAC successfully imported the Server Profile.
Expand Down Expand Up @@ -809,7 +809,7 @@ Server Configuration Profile and Server Profiles
.. function:: idrac.config_mgr.sp_export_async(sp_share_path)

Export Server Profile to share. This API returns immediately
and returns the job id assocated with the import operation. Until the
and returns the job id associated with the import operation. Until the
operation is complete, iDRAC will not be accepting other jobs.

:param omsdk.sdkfile.FileOnShare sp_share_path: Location where the Server Profile will be exported
Expand Down Expand Up @@ -965,7 +965,7 @@ Provides APIs for listing, adding, modifying and removing Users local to iDRAC.
Returns a JSON object containing list of all local users. For more details
about the properties and values, refer to iDRAC Attribute Registry Guide

You can create upto 16 local users.
You can create up to 16 local users.

A sample response from the API is as follows:

Expand Down Expand Up @@ -1003,7 +1003,7 @@ Provides APIs for listing, adding, modifying and removing Users local to iDRAC.
This function creates a idrac local user.
:param str username: Name of the local user
:param str password: Password for the given user
:param UserPrivilegeEnum: Privileges that need to be assiged to the user. User can be assigned as an Administrator, Operator, ReadOnly privileges or NoPrivilege at all.
:param UserPrivilegeEnum: Privileges that need to be assigned to the user. User can be assigned as an Administrator, Operator, ReadOnly privileges or NoPrivilege at all.
:param JSON others: Provides options for other capabilities (Serial On LAN, Protocol, IPMI LAN Privilege and IPMI over Serial privileges)

:return: JSON Returns a json indicating whether the user was created successfully or not.
Expand Down
2 changes: 1 addition & 1 deletion docs/intro.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ DellEMC OpenManage SDK
----------------------

DellEMC OpenManage Software Development Kit is a pythonic library
for programatically managing DellEMC Servers and Chassis. Using
for programmatically managing DellEMC Servers and Chassis. Using
this library a user can perform lifecycle operations on DellEMC
PowerEdge servers and chassis in Pythonic way. The DellEMC OpenManage
SDK leverages DMTF's Web Services Management standard (WS-Man),
Expand Down
2 changes: 1 addition & 1 deletion omdrivers/CMC.py
Original file line number Diff line number Diff line change
Expand Up @@ -803,7 +803,7 @@ def _should_i_modify_component(self, finalretjson, component):
slot['FormFactor'] = "Half length Double width"
newbladeList.append(slot)
tmpDupList.append(slot)
#To remove FM servers who dont show Model - based on MasterSlotNumber
#To remove FM servers who don't show Model - based on MasterSlotNumber
for slot in tmpDupList:
if slot.get('MasterSlotNumber') in fmSlotNumSet:
newbladeList.remove(slot)
Expand Down
2 changes: 1 addition & 1 deletion omdrivers/F10.py
Original file line number Diff line number Diff line change
Expand Up @@ -764,7 +764,7 @@ def _should_i_include(self, component, entry):
if 'ifIndex' in entry:
if entry.get("ifIndex") == component + '_ifIndex_null':
return False
# This is implimented to ignore virtual port instances
# This is implemented to ignore virtual port instances
if not 'SysIfName' in entry:
return False
if component in ["System"]:
Expand Down
2 changes: 1 addition & 1 deletion omdrivers/FileList.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ def runit(self, function, *arguments):
logger.debug("Running: " + str(function))
with self.myentitylistlock:
if function in self.success:
logger.debug("another runit with same funciton in progress!!")
logger.debug("another runit with same function in progress!!")
# wait
self.success[function] = 0
self.failed[function] = 0
Expand Down
4 changes: 2 additions & 2 deletions omdrivers/enums/iDRAC/iDRAC.py
Original file line number Diff line number Diff line change
Expand Up @@ -2496,7 +2496,7 @@

Redundancy_InfoTypes = EnumWrapper("Redundancy_InfoTypes", {
"ac_redundant": "ac redundant",
"non_redunant": "non redunant",
"non_redunant": "non redundant",
"psu_and_ac_redundant": "psu and ac redundant",
"psu_redundant": "psu redundant",
}).enum_type
Expand Down Expand Up @@ -2537,7 +2537,7 @@
}).enum_type

SCFWUpdateState_SC_BMCTypes = EnumWrapper("SCFWUpdateState_SC_BMCTypes", {
"Availiable_to_SC": "Availiable to SC",
"Availiable_to_SC": "Available to SC",
"Complete": "Complete",
"Downloaded": "Downloaded",
"Failed": "Failed",
Expand Down
6 changes: 3 additions & 3 deletions omdrivers/iDRAC/Config/BIOS.json
Original file line number Diff line number Diff line change
Expand Up @@ -907,7 +907,7 @@
"AesNi": {
"baseType": "str",
"description": "Intel(R) AES-NI",
"longDescription": "Indicates the status of the Intel Processor AES-NI feature. AES-NI improves the speed of applications by performing encryption and decryption using the Advenced Encryption Standard Instruction Set.",
"longDescription": "Indicates the status of the Intel Processor AES-NI feature. AES-NI improves the speed of applications by performing encryption and decryption using the Advanced Encryption Standard Instruction Set.",
"modDeleteAllowed": true,
"name": "AesNi",
"qualifier": "SysSecurity",
Expand Down Expand Up @@ -1934,7 +1934,7 @@
"IntegratedSas": {
"baseType": "enum",
"description": "Integrated SAS Controller",
"longDescription": "Enables or disables the integrated SAS controller. When set to Disabled, the device is not visisble to the operating system (OS).",
"longDescription": "Enables or disables the integrated SAS controller. When set to Disabled, the device is not visible to the operating system (OS).",
"modDeleteAllowed": true,
"name": "IntegratedSas",
"qualifier": "IntegratedDevices",
Expand Down Expand Up @@ -4364,7 +4364,7 @@
"ProcExecuteDisable": {
"baseType": "enum",
"description": "Execute Disable",
"longDescription": "A security feature designed to prevent certain types of buffer overflow attacks by enforcing specific areas of memory that applications can execute code. In general, it is best pratice to leave this option set to Enabled for the security benefits, as no real performance advantage has been detected by disabling this feature in BIOS.",
"longDescription": "A security feature designed to prevent certain types of buffer overflow attacks by enforcing specific areas of memory that applications can execute code. In general, it is best practice to leave this option set to Enabled for the security benefits, as no real performance advantage has been detected by disabling this feature in BIOS.",
"modDeleteAllowed": true,
"name": "ProcExecuteDisable",
"qualifier": "ProcSettings",
Expand Down
2 changes: 1 addition & 1 deletion omdrivers/iDRAC/Config/NIC.json
Original file line number Diff line number Diff line change
Expand Up @@ -2033,7 +2033,7 @@
"baseType": "enum",
"default": "IPv4",
"description": "IP Version",
"longDescription": "Specify whether IPv4 or IPv6 network addressing will be used for iSCSI initiator and targets (Applies to the Initiator only when a seperate target IP Version is implemented). [Vendor to provide implementation-specific language].",
"longDescription": "Specify whether IPv4 or IPv6 network addressing will be used for iSCSI initiator and targets (Applies to the Initiator only when a separate target IP Version is implemented). [Vendor to provide implementation-specific language].",
"modDeleteAllowed": true,
"name": "IpVer",
"qualifier": "IscsiGenParams",
Expand Down
6 changes: 3 additions & 3 deletions omdrivers/iDRAC/Config/RAID.json
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@
"Name": {
"baseType": "str",
"description": "Name",
"longDescription": "Diplays the name associated with a Virtual Disk.",
"longDescription": "Displays the name associated with a Virtual Disk.",
"modDeleteAllowed": true,
"name": "Name",
"qualifier": "VirtualDisk",
Expand Down Expand Up @@ -321,7 +321,7 @@
"RAIDEnclosureRequestedCfgMode": {
"baseType": "enum",
"default": "None",
"description": "Enclousre Requested Configuration Mode",
"description": "Enclosure Requested Configuration Mode",
"longDescription": "This indicates enclosures requested configuration mode setting.",
"modDeleteAllowed": true,
"name": "RAIDEnclosureRequestedCfgMode",
Expand Down Expand Up @@ -557,7 +557,7 @@
"baseType": "enum",
"default": "Automatic",
"description": "Load Balanced Mode",
"longDescription": "This attribute reprsents the ability to automatically use both controller ports connected to the same enclosure to route I/O requests.",
"longDescription": "This attribute represents the ability to automatically use both controller ports connected to the same enclosure to route I/O requests.",
"modDeleteAllowed": true,
"name": "RAIDloadBalancedMode",
"qualifier": "Controller",
Expand Down
28 changes: 14 additions & 14 deletions omdrivers/iDRAC/Config/iDRAC.json
Original file line number Diff line number Diff line change
Expand Up @@ -5341,13 +5341,13 @@
},
"Redundancy_InfoTypes": {
"enum": [
"non redunant",
"non redundant",
"ac redundant",
"psu redundant",
"psu and ac redundant"
],
"enumDescriptions": [
"non redunant",
"non redundant",
"ac redundant",
"psu redundant",
"psu and ac redundant"
Expand Down Expand Up @@ -5433,14 +5433,14 @@
"enum": [
"Not in progress",
"Downloaded",
"Availiable to SC",
"Available to SC",
"Complete",
"Failed"
],
"enumDescriptions": [
"Not in progress",
"Downloaded",
"Availiable to SC",
"Available to SC",
"Complete",
"Failed"
],
Expand Down Expand Up @@ -10919,7 +10919,7 @@
"ChassisIdentifyDuration_LCD": {
"baseType": "int",
"description": "Chassis Identify Duration",
"longDescription": "-1 = force on indefinetly; 0 = 0ff; > 0 number of seconds chassis identify is on",
"longDescription": "-1 = force on indefinitely; 0 = 0ff; > 0 number of seconds chassis identify is on",
"modDeleteAllowed": true,
"name": "ChassisIdentifyDuration",
"qualifier": "LCD",
Expand Down Expand Up @@ -11394,7 +11394,7 @@
"Config_SledInterposer": {
"baseType": "str",
"description": "Config",
"longDescription": "the redfish link that will bring you to the config information. This would be the group name fo the config information.",
"longDescription": "the redfish link that will bring you to the config information. This would be the group name of the config information.",
"modDeleteAllowed": true,
"name": "Config",
"qualifier": "SledInterposer",
Expand Down Expand Up @@ -13110,7 +13110,7 @@
"DynamicStepUp_ServerPwr": {
"baseType": "enum",
"description": "DynamicStepUp",
"longDescription": "Indicates if step up supressed or not",
"longDescription": "Indicates if step up suppressed or not",
"modDeleteAllowed": true,
"name": "DynamicStepUp",
"qualifier": "ServerPwr",
Expand Down Expand Up @@ -14463,7 +14463,7 @@
},
"GroupPublishInterval_GroupManager": {
"baseType": "int",
"description": "Group Manager Group Existance Publish Interval",
"description": "Group Manager Group Existence Publish Interval",
"longDescription": "[To be filled]",
"modDeleteAllowed": true,
"name": "GroupPublishInterval",
Expand Down Expand Up @@ -16008,7 +16008,7 @@
},
"LM-IDRAC-EXPRESS-BLADES_PMLicensing": {
"baseType": "enum",
"description": "PM Enforced Express for Blades (deprecated, added so no one can add accidently later)",
"description": "PM Enforced Express for Blades (deprecated, added so no one can add accidentally later)",
"longDescription": "This is for 13G group 20050",
"modDeleteAllowed": true,
"name": "LM-IDRAC-EXPRESS-BLADES",
Expand Down Expand Up @@ -16239,7 +16239,7 @@
},
"LM-REMOTE-FIRWARE-UPDATE_PMLicensing": {
"baseType": "enum",
"description": "LM REMOTE FIRWARE UPDATE",
"description": "LM REMOTE FIRMWARE UPDATE",
"longDescription": "This is for 13G group 20050",
"modDeleteAllowed": true,
"name": "LM-REMOTE-FIRWARE-UPDATE",
Expand Down Expand Up @@ -16393,7 +16393,7 @@
},
"LM-USC-ASSISTED-OS-DEPLOYEMENT_PMLicensing": {
"baseType": "enum",
"description": "USC ASSISTED OS DEPLOYEMENT",
"description": "USC ASSISTED OS DEPLOYMENT",
"longDescription": "This is for 13G group 20050",
"modDeleteAllowed": true,
"name": "LM-USC-ASSISTED-OS-DEPLOYEMENT",
Expand Down Expand Up @@ -16565,7 +16565,7 @@
},
"LastFWUpdate_Update": {
"baseType": "str",
"description": "Last Firmwware Update",
"description": "Last Firmware Update",
"longDescription": "[To be filled]",
"modDeleteAllowed": true,
"name": "LastFWUpdate",
Expand Down Expand Up @@ -20009,7 +20009,7 @@
"RackSlot_ServerTopology": {
"baseType": "int",
"description": "Rack Slot",
"longDescription": "Slot in the rack where the sytem is located",
"longDescription": "Slot in the rack where the system is located",
"modDeleteAllowed": true,
"name": "RackSlot",
"qualifier": "ServerTopology",
Expand Down Expand Up @@ -23494,4 +23494,4 @@
}
},
"title": "omdrivers\\iDRAC\\xml\\iDRAC.xml"
}
}
2 changes: 1 addition & 1 deletion omdrivers/iDRAC/MOF/DCIM_VFlashView.mof
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class DCIM_VFlashView : DCIM_View {
uint64 Capacity;

[Description (
"This property specifies the avaible size on the media " ),
"This property specifies the available size on the media " ),
ModelCorrespondence { "DCIM_VFlashView.Capacity" }]
uint64 AvailableSize;

Expand Down
2 changes: 1 addition & 1 deletion omdrivers/iDRAC/MOF/DCIM_VirtualDiskView.mof
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ class DCIM_VirtualDiskView : DCIM_View {
"Stripe size is the size of the stripe on a physical disk that "
"contributes to the virtual disk. The stripe size can be specified "
" in bytes or kilobytes or megabytes. The Stripe size can have one "
"of the folllowing values: \"Default\", \"512B\", \"1KB\", \"2KB\" "
"of the following values: \"Default\", \"512B\", \"1KB\", \"2KB\" "
"\"4KB\", \"8KB\", \"16KB\", \"32KB\", \"64KB\", \"128KB\", "
"\"256KB\" "
"\"512KB\", \"1MB\", \"2MB\", \"4MB\", \"8MB\", \"16MB\" "),
Expand Down
2 changes: 1 addition & 1 deletion omdrivers/iDRAC/iDRAC.Monitor
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@
"5" : "ATM",
"6" : "IEEE80211 Wireless",
"7" : "Tunnel",
"8" : "IEEE1394 Fireware"
"8" : "IEEE1394 Firmware"
}
},
"PCIDevice": {
Expand Down
Loading