API Guide

liason_share_status = idrac.config_mgr.set_liason_share(myshare)
idrac.config_mgr.configure_onetime_boot_mode
(
OneTimeBootModeTypes.Disabled
)
apply_status = idrac.config_mgr.apply_changes(reboot=True)
Returns: Success or Failure.
Return Type: JSON.
idrac.cong_mgr.congure_boot_sequence
API string/Method: idrac.config_mgr.configure_boot_sequence.
Protocol Support: Redfish.
Description: The idrac.config_mgr.configure_boot_sequence() allows you to congure the boot sequence.
Table 117. Parameters for idrac.cong_mgr.congure_boot_sequence
Parameter Name Type Allowed Values
boot_mode
Enum
BootModeEnum.Bios
BootModeEnum.Uefi
Description Allows you to congure the boot mode to UEFI.
Table 118. Parameters for idrac.cong_mgr.congure_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 dened boot sequence.
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_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.cong_mgr.congure_nvme_mode
API string/Method: idrac.config_mgr.configure_nvme_mode.
46
OpenManage Python SDK API introduction