API Guide
Table 113. Parameters for idrac.cong_mgr.congure_boot_sequence
Parameter Name Type Allowed Values
boot_sequence
String Boot devices FQDDs (Comma separated) in the sequential
order for BIOS or UEFI Boot Sequence.
Description User dened boot sequence.
Example:
#Set liason share
myshare = FileOnShare(remote="<IP OR HOSTNAME>:/<NFS-SHARE-PATH>",
mount_point='Z:\', isFolder=True,
creds=UserCredentials(<USERNAME>, <PASSWORD>))
liason_share_status = idrac.config_mgr.set_liason_share(myshare)
idrac.config_mgr.configure_boot_sequence
(
boot_mode = BootModeEnum.Uefi,
boot_sequence="device-1, device-2, device-3"
)
apply_status = idrac.config_mgr.apply_changes(reboot=True)
Returns: Success or Failure.
Return Type: JSON.
idrac.cong_mgr.congure_nvme_mode
API string/Method: idrac.config_mgr.configure_nvme_mode
Protocol Support: Redfish.
Description: The idrac.config_mgr.configure_nvme_mode() allows you to congure the NVME Mode.
Table 114.
Parameters for idrac.cong_mgr.congure_nvme_mode
Parameter Name Type Allowed Values
nvme_mode
Enum
NvmeModeTypes.NonRaid
NvmeModeTypes.Raid
Description Congure 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>",
mount_point='Z:\', isFolder=True,
creds=UserCredentials(<USERNAME>, <PASSWORD>))
liason_share_status = idrac.config_mgr.set_liason_share(myshare)
idrac.config_mgr.configure_nvme_mode(
nvme_mode=NvmeModeTypes.Raid)
apply_status = idrac.config_mgr.apply_changes(reboot=True)
Returns: Success or Failure.
Return Type: JSON.
OpenManage Python SDK API introduction
49