API Guide

Protocol Support: Redfish.
Description: The idrac.config_mgr.configure_nvme_mode() allows you to congure the NVME Mode.
Table 119. Parameters for idrac.cong_mgr.congure_nvme_mode
Parameter Name Type Allowed Values
nvme_mode
Enum
NvmeModeTypes.NonRaid
NvmeModeTypes.Raid
Description Congure the NVME mode. This feature is available in the BIOS settings page.
Example:
#Set liason share
myshare = FileOnShare(remote="<IP OR HOSTNAME>:/<NFS-SHARE-PATH>/<FILE-NAME>",
mount_point='Z:\', isFolder=False,
creds=UserCredentials(<USERNAME>, <PASSWORD>))
liason_share_status = idrac.config_mgr.set_liason_share(myshare)
idrac.config_mgr.configure_nvme_mode
(
NvmeModeTypes.NonRaid
)
apply_status = idrac.config_mgr.apply_changes(reboot=True)
Returns: Success or Failure.
Return Type: JSON.
idrac.cong_mgr.congure_secure_boot_mode
API string/Method: idrac.config_mgr.configure_secure_boot_mode.
Protocol Support: Redfish.
Description: The idrac.config_mgr.configure_secure_boot_mode() allows you to congure the Secure boot Mode.
Table 120.
Parameters for idrac.cong_mgr.congure_secure_boot_mode
Parameter Name Type Allowed Values
secure_boot_mode
Enum
SecureBootModeTypes.AuditMode
SecureBootModeTypes.DeployedMode
SecureBootModeTypes.SetupMode
SecureBootModeTypes.UserMode
Description Congures how the BIOS uses the Secure boot Policy.
Example:
#Set liason share
myshare = FileOnShare(remote="<IP OR HOSTNAME>:/<NFS-SHARE-PATH>/<FILE-NAME>",
mount_point='Z:\', isFolder=False,
creds=UserCredentials(<USERNAME>, <PASSWORD>))
liason_share_status = idrac.config_mgr.set_liason_share(myshare)
OpenManage Python SDK API introduction
47