Skip to content

This section is a guide to help client code adapt from the iLO 4 RESTful API to the iLO 5 RESTful API.

Introduction

The iLO 5 RESTful API is fully conformant with the Redfish® protocol and the data model mentioned in the Changelog file. Any remaining support for the pre-Redfish iLO RESTful API has been removed and is replaced by the Redfish equivalents. HPE continues to extend the Redfish data model (Oem.Hpe extensions) to enable value for the customer.

iLO 5 has the following additions not implemented in iLO 4

  • HPE Embedded Remote Support
  • HPE Persistent Memory
  • HPE Smart Storage and Logical drive configuration
  • Redfish 1.6 OpenAPI 3.0 support (URIs conform to Redfish 1.6 templates)
  • Redfish Advanced Communication Device (NetworkAdapter) model for certain network adapters
  • Redfish Directory Authentication configuration
  • Redfish Firmware Inventory and UpdateService
  • Redfish Role based local user administration
  • Redfish Storage/Drive/Volume model for NVMe and other direct attached storage
  • Redfish TaskService for long running operations
  • Redfish Telemetry service for CPU metrics
  • Redfish host Interface ("Virtual NIC")
  • Workload Performance Advisor
  • iLO 5 Backup and Restore configuration
  • iLO 5 Certificate based authentication configuration
  • iLO 5 Component Update Repository
  • iLO 5 Firmware Recovery Set
  • iLO 5 One-button secure erase

Chunked Transfer Coding

Unlike iLO 4, iLO 5 responds to all HTTP operations using Chunked Transfer Coding. This enables features like $expand that require very large responses.

URI Remapping from /rest to /redfish

For iLO 5 all accesses of the /rest/v1/x URI pattern result in HTTP 308 redirect to /redfish/v1/x/. Additionally, access of /redfish/v1/x redirects to /redfish/v1/x/.

Warning

Client code should access the iLO RESTful API starting at /redfish/v1/ and should handle for HTTP 308 redirect.

OData-Version HTTP Header Requirements

iLO 5 assumes all requests are to Redfish REST resources are Redfish requests. Unlike iLO 4, the service does not behave differently based upon the presence or absence of the OData-Version header.

This is a change from iLO 4 where the presence of the OData-Version header caused iLO 4 to remove pre-Redfish properties from GET responses.

The only required header for a GET operation is the authorization (X-Auth-Token or Authorization) header, except for the root resource at /redfish/v1/ which requires no headers.

Oem/Hp Sections Renamed to Oem/Hpe

As part of the transition from HP to HPE, and due to the Redfish requirement that the Oem section name reflect an owned IANA name, all OEM section names are changed from Hp to Hpe.

{
  "Oem": {
    "Hp": {
      "@odata.type": "#HpiLOServiceExt.1.0.0.HpiLOServiceExt"
    }
  }
}
NOTE

Client code should look for dependencies upon the "Hp" property and also handle "Hpe"

Schema Type Changes

To preserve OData conformance, Redfish transitioned the format of @odata.type properties, and iLO 5 follows this change. The type.<major>.<minor>.<errata>.type format has changed to type.v<major>_<minor>_<errata>.type. Also, the type name cannot be parsed programmatically and should be considered opaque. To determine the version of a resource, do not split the type/version by the ‘.’ delimiter.

For example:

iLO@odata.type Format
iLO 4"@odata.type": "ComputerSystem.1.0.0.ComputerSystem"
iLO 5"@odata.type": "ComputerSystem.v1_1_0.ComputerSystem"

Status Block Changes

The pre-Redfish property HealthRollUp is removed in iLO 5 and HealthRollup is retained.

NOTE

Client code should make sure any dependencies upon the pre-Redfish HealthRollUp property is replaced by Redfish-standard HealthRollup

{
    "Status": {
          "State": "Starting",
          "Health": "OK",
          "HealthRollup": "OK",
          "HealthRollUp": "OK"
      }
}

Error and Response Changes

HTTP Operation responses in iLO 5 are Redfish conformant and pre-Redfish properties are removed.

NOTE

Client code should verify that it handles Redfish conformant ExtendedInfo responses

{
  "Messages": [
    {
      "MessageID": "Base.0.10.MalformedJSON"
    }
  ],
  "Type": "ExtendedError.1.0.0",
  "error": {
    "@Message.ExtendedInfo": [
      {
        "MessageID": "Base.0.10.MalformedJSON"
      }
    ],
    "code": "iLO.0.10.ExtendedInfo",
    "message": "See @Message.ExtendedInfo for more information."
  }
}

POST Actions

In Redfish, an Actions property informs the client which actions are supported on a resource and how to invoke them.

NOTE

Client code should verify that it invokes actions according to the Redfish specification.

Advertising Available Actions

iLO 4 contained a pre-Redfish form of this with "AvailableActions". This is now removed and replaced in iLO 5 with Redfish Actions.

{
  "AvailableActions": [
      {
         "Action": "Reset",
         "Capabilities": [
         {
             "AllowableValues": [
                 "On",
                 "ForceOff",
                 "ForceRestart",
                 "Nmi",
                 "PushPowerButton"
             ],
             "PropertyName": "ResetType"
             }
         ]
      }
  ]
}

Invoking Actions

POST /rest/v1/Systems/1
NOTE

The URI of the POST matches the "target" property in "Actions".

OData query options

TIP

Refer to the OData query options section for more examples.

Redfish is an OData-derived protocol and data model with resources linking to other resources using the @odata.id key: {"@odata.id": "/redfish/v1/link_to_some_other_resource"}

The iLO 5 Redfish implementation offers several OData services aiming at facilitating the the consumption of data by Redfish clients.

As an example, the OData $expand query option causes the OData service to automatically replace a link with the results of an internal GET of the indicated URI. This is essential to allow the API to scale for clients. An example use case is to expand an event log to return the log entries inline with the collection and reduce the number of GETs required by the client.

Examples of client requests to expand (in the general OData case) looks like:

  • GET /redfish/v1/some_resource?$expand=*($levels=1) - Expand any references 1 level. Levels is assumed to be 1 by default so this is the same as GET /redfish/v1/some_resource?$expand=*
  • GET /redfish/v1/some_resource?$expand=*($levels=3) - Expand any references 3 levels deep. This case could require loop detection (For example, system expanding a link to chassis expanding a link back to system).
  • GET /redfish/v1/some_resource?$expand=. - Expand any references EXCEPT those found under the Links section.
  • GET /redfish/v1/some_resource?$expand=./Oem/Hpe - Expand any references found in the Oem/Hpe section of the resource.

OData query options supported by iLO 5 are presented below along with use case examples.

iLO 5 $expand

Using the rules above, iLO 5 supports $expand in this way:

$expand is applicable to HTTP GET only.

$expand=., $expand=*, and $expand=($levels=n) result in the same behavior:

  • Expands all links in both root and Oem/Hpe sections not inside the Links sections.
  • Levels is always interpreted as 1, regardless of n. This is to avoid the potential for expanding recursively for interlinked resources.
  • The Links section is never expanded. This is to avoid expanding the Chassis and Manager related links on GET operations to System.
NOTES
  • The root resource at /redfish/v1/ is available without authentication and has navigational links that can be expanded. An $expand request does not result in expansion unless valid authentication credentials are supplied.
  • There might be other links that do not support expand.

iLO 5 $expand example

GET /redfish/v1/Chassis (a collection without `$expand` query option)

iLO 5 only query option

iLO 5 1.40 and later supports the only query parameter documented in the Redfish API specification. This query parameter is ignored except on collections with only one member. Examples include the ComputerSystemCollection, ChassisCollection, and ManagerCollection.

iLO 5 only example

GET /redfish/v1/Chassis?only

iLO 5 $filter query option

The odata.org official site defines the $filter query as the following:

"The $filter system query option allows clients to filter a collection of resources that are addressed by a request URL. The expression specified with $filter is evaluated for each resource in the collection, and only items where the expression evaluates to true are included in the response."

Six logical operators (Equals, Not Equals, Greater Than...) can be applied to the $filter query. They are defined in the OData specifications.

iLO 5 $filter examples

The following example retrieves the iLO Dedicated Network Interface properties of an iLO 5

GET /redfish/v1/Managers/1/EthernetInterfaces?$filter=Name eq 'Manager Dedicated Network Interface'

The following example filters IML entries by key:

GET /redfish/v1/Systems/1/LogServices/IML/Entries?$filter=Oem.Hpe.Severity eq 'Repaired'

The following example filters IML entries by date:

GET /redfish/v1/Systems/1/LogServices/IML/Entries?$filter=Created gt '2022-03-05T07:49:50Z'

iLO 5 $count query option

The $count system query option allows clients to request a count of the matching resources included with the resources in the response.

iLO 5 $count example

The following example retrieves the total number of Security log entries:

GET /redfish/v1/systems/1/logservices/SL/Entries?$count=true

iLO 5 $top and $skip query options

The $top system query option requests the number of items in the queried collection to be included in the result. The $skip query option requests the number of items in the queried collection that are to be skipped and not included in the result.

iLO 5 $top and $skip examples

The following example retrieves the latest ten IML log entries:

GET /redfish/v1/Systems/1/LogServices/IML/Entries?$top=10

The following example skips 18 entries and prints the last 10 entries when Members@odata.count is 28:

GET /redfish/v1/Systems/1/LogServices/IML/Entries?$skip=18

iLO 5 Data Model Changes

NOTE

Review the documented data model changes and make sure client code handles alternatives and removed properties correctly.

ServiceRoot (/redfish/v1/)

Time

The pre-Redfish REST API on iLO 4 had a Time property representing the current iLO time. Redfish did not include this, so iLO 5 adds it back in an Oem/Hpe section. This is a Redfish conformant time property (ISO 8601).

GET /redfish/v1
TIP

Refer to the Managing time in iLO section for more information on this topic.

RedfishVersion

ServiceVersion has been removed and replaced with RedfishVersion for Redfish conformance.

ComputerSystem (/redfish/v1/systems/{item})

Boot Source Override

  • Two new boot source override values are supported by the UEFI BIOS in Gen10. Both of these are added to BootSourceOverrideTarget@Redfish.AllowableValues. Both of these are only supported in UEFI Boot Mode (not legacy mode).
    • SDCard for booting to SD card. Only available when boot mode is UEFI.
    • UefiHttp for UEFI HTTP Boot. Only available when boot mode is UEFI.
NOTE

iLO 5 implements a more complete Redfish Boot Source Override capability than iLO 4. The following example shows the Boot object of an HPE iLO 5.

{
  "Boot": {
    "BootSourceOverrideEnabled": "Disabled",
    "BootSourceOverrideMode": "UEFI",
    "BootSourceOverrideTarget": "None",
    "BootSourceOverrideTarget@Redfish.AllowableValues": [
      "None",
      "Pxe",
      "Floppy",
      "Cd",
      "Usb",
      "Hdd",
      "BiosSetup",
      "Utilities",
      "Diags",
      "UefiTarget",
      "SDCard",
      "UefiHttp"
    ],
    "UefiTargetBootSourceOverride": "None",
    "UefiTargetBootSourceOverride@Redfish.AllowableValues": [
      "None",
      "PciRoot(0x0)/Pci(0x1,0x0)/Pci(0x0,0x0)/Scsi(0x0,0x0)/HD(2,GPT,383D95E0-472A-48F1-8445-2A436025C81C,0x96800,0x31800)/\\EFI\\Microsoft\\Boot\\bootmgfw.efi",
      "UsbClass(0xFFFF,0xFFFF,0xFF,0xFF,0xFF)",
      "PciRoot(0x0)/Pci(0x1,0x0)/Pci(0x0,0x0)/Scsi(0x0,0x0)",
      "PciRoot(0x0)/Pci(0x2,0x0)/Pci(0x0,0x0)/Pci(0x9,0x0)/Pci(0x0,0x0)/MAC(9457A50822E0,0x0)/IPv4(0.0.0.0)",
      "PciRoot(0x1)/Pci(0x2,0x0)/Pci(0x0,0x0)/Pci(0x9,0x0)/Pci(0x0,0x0)/MAC(9457A5086560,0x0)/IPv4(0.0.0.0)",
      "PciRoot(0x0)/Pci(0x3,0x2)/Pci(0x0,0x0)/MAC(3464A99332A0,0x0)/IPv4(0.0.0.0)",
      "PciRoot(0x0)/Pci(0x2,0x0)/Pci(0x0,0x0)/Pci(0x9,0x0)/Pci(0x0,0x0)/MAC(9457A50822E0,0x0)/IPv6(0000:0000:0000:0000:0000:0000:0000:0000)",
      "PciRoot(0x1)/Pci(0x2,0x0)/Pci(0x0,0x0)/Pci(0x9,0x0)/Pci(0x0,0x0)/MAC(9457A5086560,0x0)/IPv6(0000:0000:0000:0000:0000:0000:0000:0000)",
      "PciRoot(0x0)/Pci(0x3,0x2)/Pci(0x0,0x0)/MAC(3464A99332A0,0x0)/IPv6(0000:0000:0000:0000:0000:0000:0000:0000)"
    ]
  }
}
NOTE

iLO 5 implements BootSourceOverrideMode as a read-only item that reflects the current boot mode.

TrustedModules (TPM)

The existing HPE-specific TrustedModules (TPM) sub-object is replaced with the new Redfish-defined version.

{
  "Oem": {
    "Hp": {
      "@odata.type": "#HpComputerSystemExt.1.1.2.HpComputerSystemExt",
      "TrustedModules": [
        {
          "Status": "NotPresent"
        }
      ]
    }
  }
}

The link to the SecureBoot resource is added as defined in Redfish in place of the existing HPE-specific link. Refer to the SecureBoot section for more details.

{
  "Oem": {
    "Hp": {
      "@odata.type": "#HpComputerSystemExt.1.1.2.HpComputerSystemExt",
      "SecureBoot": {
        "@odata.id": "/redfish/v1/Systems/1/SecureBoot/"
      }
    }
  }
}

Bios

The link to the Bios resource is added as defined in Redfish in place of the existing HPE-specific OEM link. Refer to the UEFI BIOS section for more details.

{
  "Oem": {
    "Hp": {
      "@odata.type": "#HpComputerSystemExt.1.1.2.HpComputerSystemExt",
      "BIOS": {
          "@odata.id": "/redfish/v1/systems/1/bios/"
      }
    }
  }
}

Other

The following properties have been removed in iLO 5 for Redfish conformance:

  • Version
  • VirtualSerialNumber
  • HostCorrelation - See replacement HostOS described below.
  • BIOSPostCode
  • Power (replaced by PowerState)
  • Processors is now a link to the Processors collection instead of a summary description of the CPUs.
  • Memory (replaced by MemorySummary)

If the server has a running operating system and HPE Agentless Management Service is installed and running, a new HostOS object is included in ComputerSystem with information about the OS under /Oem/Hpe/HostOS:

  • OsName
  • OsVersion
  • OsDescription

UEFI BIOS

iLO5 supports Redfish standard BIOS Attributes and BIOS Attribute Registry resources that replace the HPE proprietary versions used in iLO4. The following is a summary of all BIOS resources changes in Gen10 / iLO5:

Resource TypeiLO 4 / Gen9iLO 5 / Gen10
BIOS current settingsHpBios.1.2.0#Bios.v1_0_0.Bios
BIOS pending settingsHpBios.1.2.0#Bios.v1_0_0.Bios
BIOS Attribute RegistryHpBiosAttributeRegistrySchema.1.2.1#AttributeRegistry.v1_0_0.AttributeRegistry
BIOS PCI MappingsHpBiosMapping.1.2.0#HpeBiosMapping.v2_0_0.HpeBiosMapping
UEFI Boot OrderHpServerBootSettings.1.3.1#HpeServerBootSettings.v2_0_0.HpeServerBootSettings
Base Config (BIOS defaults)HpBaseConfigs.0.10.0#HpeBaseConfigs.v2_0_0.HpeBaseConfigs
UEFI iSCSI Software InitiatorHpiSCSISoftwareInitiator.1.1.0#HpeiSCSISoftwareInitiator.v2_0_0.HpeiSCSISoftwareInitiator
BIOS Extensions SchemaNone#HpeBiosExt.v2_0_0.HpeBiosExt

BIOS Current/Pending Settings Resources

  • All BIOS attributes resources switch from HP OEM type (HpBios.1.2.0) to Redfish standard type (Bios.1.0.0).
  • All BIOS Attributes name/value pairs that are referenced in the Attribute Registry are moved from the top level of the resource to be grouped under an “Attributes” Redfish property.
  • New Actions on BIOS resources.
    • ResetBios to reset BIOS configuration to defaults.
    • ChangePassword to change BIOS passwords.
BIOS Attribute Access

Redfish moves the system-specific BIOS attributes from the top level of the resource into an Attributes sub-object:

{
    "AdminEmail": "",
    "AdminName": "",
    "AdminPhone": ""
}
Reset Bios Settings (NEW)

UEFI BIOS Supports a new POST Action to reset settings.

{
  "Actions": {
    "#Bios.ResetBios": {
      "target": "/redfish/v1/Systems/1/Bios/Settings/Actions/Bios.ResetBios/"
    }
  }
}
Change BIOS Password (NEW)

UEFI BIOS Supports a new Redfish POST Action to change the BIOS password.

{
  "Actions": {
    "#Bios.ChangePassword": {
      "target": "/redfish/v1/Systems/1/Bios/Settings/Actions/Bios.ChangePassword/"
    }
  }
}
Settings Result Report

The result of applying new settings is Redfish conformant in iLO 5.

{
    "SettingsResult": {
        "ETag": "92EB7D02",
        "Messages": [
            {
                "MessageArgs": [
                    "test"
                ],
                "MessageID": "Base.1.0:PropertyUnknown"
            },
            {
                "MessageArgs": [],
                "MessageID": "Base.1.0:Success"
            }
        ],
        "Time": "2012-03-07T14:44.30-05:00"
    }
}
Changes to BIOS Attribute Enum Values

Attribute names/enum values cannot start with digits, per OData requirements.

{
"AsrTimeoutMinutes": "10",
"SerialConsoleBaudRate": "115200",
}

With a Redfish conformant BIOS resource structure, some HPE-specific links are moved into an HPE specific section.

{
    "links": {
        "BaseConfigs": {
          "href": "/rest/v1/systems/1/bios/BaseConfigs"
        },
        "Boot": {
          "href": "/rest/v1/systems/1/bios/Boot"
        },
        "Mappings": {
          "href": "/rest/v1/systems/1/bios/Mappings"
        },
        "Settings": {
          "href": "/rest/v1/systems/1/bios/Settings"
        },
        "iScsi": {
          "href": "/rest/v1/systems/1/bios/iScsi"
        },
        "self": {
          "href": "/rest/v1/systems/1/bios"
        }
    }
}

Bios Attribute Registry

All BIOS attribute registry resources have switched from HP OEM type (HpBiosAttributeRegistrySchema.1.2.1) to Redfish standard object (AttributeRegistry.v1_0_0).

Other BIOS HPE OEM Resources

Existing BIOS HPE OEM Resources

All the remaining HPE OEM resources remain similar to iLO 4, except for following:

  • Includes the Redfish conformance changes
  • Major version change to v2_0_0

The impacted resources are:

  • HpeBiosMapping
  • HpeServerBootSettings
  • HpeBaseConfigs
  • HpeiSCSISoftwareInitiator
New BIOS HPE OEM Resources

The following new HPE BIOS OEM resources are added in iLO5:

  • HpeBiosExt.v2_0_0.HpeBiosExt - Provider HPE BIOS OEM extensions to BIOS.v1_0_0 resource, specifically in the links.Oem property.

BIOS Password Authentication HTTP Header

iLO4 requires a special HTTP header when BIOS Admin password is programmed to be included in all PUT/PATCH requests on BIOS resources. This header is removed from iLO5. Instead, all access to BIOS resources requires ConfigureBios iLO privilege.

HeaderiLO 4 / Gen9iLO 5 / Gen10
X-HPRESTFULAPI-AuthTokenA string consisting of the uppercase SHA256 hex digest of the administrator password. In Python this is hashlib.sha256(bios_password.encode()).hexdigest().upper().None - Access to BIOS resources require iLO account with the ConfigureBios Privilege.

Software/Firmware Inventory and Update

Gen9 FirmwareInventory (/redfish/v1/systems/{item}/firmwareinventory) is removed and replaced with the new Redfish firmware inventory /redfish/v1/UpdateService/FirmwareInventory and /redfish/v1/UpdateService/SoftwareInventory.

Gen9 HpiLOFirmwareUpdate (/redfish/v1/managers/{item}/updateservice) is also removed in favor of the new Redfish update service /redfish/v1/UpdateService.

A Redfish conformant UpdateService has been added at /redfish/v1/UpdateService. This includes the following:

  • Firmware Inventory.
  • Software Inventory (when AMS is running on the Host Operating System).
  • SimpleUpdate action to update firmware from a URI.

Additionally, the UpdateService is extended with:

  • Component repository to host smart components on the iLO Repository.
  • Task queue to update the system via iLO, UEFI, and SUM/SUT.
  • Install Sets to organize sequences of update operations.

SecureBoot

The HpSecureBoot status and configuration resource has been replaced with the Redfish conformant version. The SecureBoot properties change from iLO 4 2.30+ to iLO 5 as follows:

{
  "@odata.context": "/redfish/v1/$metadata#Systems/Members/1/SecureBoot$entity",
  "@odata.id": "/redfish/v1/Systems/1/SecureBoot/",
  "@odata.type": "#HpSecureBoot.1.0.0.HpSecureBoot",
  "Id": "SecureBoot",
  "Name": "SecureBoot",
  "ResetAllKeys": false,
  "ResetToDefaultKeys": false,
  "SecureBootCurrentState": false,
  "SecureBootEnable": false
}

An action exists to reset keys. The ResetKeysType value can be the following:

  • DeleteAllKeys
  • ResetAllKeysToDefault
  • DeletePK
POST /redfish/v1/Systems/1/SecureBoot/Actions/SecureBoot.ResetKeys/

Memory and NVDIMM Support

iLO 5 replaces iLO 4's HpMemory DIMM information with the Redfish conformant Memory schema.

Host Correlation Removed

iLO 4 had a pre-Redfish property in the ComputerSystem resource called HostCorrelation designed to enable easy discovery of host MAC and IP addresses. This was not included in the Redfish standard, and is removed in iLO 5 for conformance reasons.

iLO 5 replaces HostCorrelation with Oem/Hpe/HostOS which is available if Agentless Management Service is running.

{
  "HostCorrelation": {
    "HostMACAddress": [
      "14:58:d0:d3:10:ca",
      "14:58:d0:d3:10:cb"
    ],
    "HostName": "some-host-name",
    "IPAddress": [
      "ip-address available if AMS is installed and running",
      ""
    ]
  }
}

Managers

The following properties have been replaced in the Manager iLO 5 resource type (/redfish/v1/Managers/1) for Redfish conformance:

iLO 4iLO 5 replacement
/FirmwareFirmwareVersion
/CommandShell/Enabled/CommandShell/ServiceEnabled
/GraphicalConsole/Enabled/GraphicalConsole/ServiceEnabled
/SerialConsole/Enabled/SerialConsole/ServiceEnabled

All of the replacement properties are also implemented in iLO 4 2.30 and later.

iLO 5 Security State

iLO 5 features a new SecurityState setting readable and settable via the REST API. Refer to the iLO Security State for more detail.

You may PATCH these settings, but iLO 5 enforces strict limitations on how security states can transition. Any unsupported transition results in an error.

Allowed Transitions
TransitionNotes
Production <--> HighSecurityYou may transition freely between Production mode and High Security mode, subject to authentication and privileges.
FIPS <--> SuiteBYou may transition freely between Production mode and High Security mode, subject to authentication and privileges.
Production or HighSecurity --> FIPSYou may transition into FIPS mode. Transitions out of FIPS mode are complex and beyond the scope of the RESTful API.
Impact on Local iLO RESTful API Access (via HPREST utility and Channel Interface)

iLO 4 allowed anonymous access to the iLO RESTful API over the local channel interface (CHIF) except in the case where the Data Center Lock mode was engaged.

iLO 5 limits access to the local interface in HighSecurity, FIPS, and SuiteB modes to authorized users only. In Production mode, anonymous access remains identical to iLO 4.

When performing local BIOS configuration changes, the following conditions apply:

Local REST AccessNo BIOS PasswordBIOS Password Set
Production ModeNo authorization requiredRequires BIOS Configuration Privilege
High Security ModeRequires BIOS Configuration PrivilegeRequires BIOS Configuration Privilege
Remote REST AccessNo BIOS PasswordBIOS Password Set
Production ModeRequires BIOS Configuration PrivilegeRequires BIOS Configuration Privilege
High Security ModeRequires BIOS Configuration PrivilegeRequires BIOS Configuration Privilege

Notice that iLO is not validating against the BIOS setup password, but is using the presence of the BIOS password to require BIOS Configuration Privilege.

iLO Ethernet Interfaces (/redfish/v1/managers/{item}/EthernetInterfaces/{item}/)

The following properties have been removed for Redfish conformance:

iLO 4iLO 5 replacement
/FactoryMacAddress/PermanentMACAddress
/MacAddress/MACAddress
/LinkTechnologyRemoved (assume Ethernet)
/Autosense/AutoNeg

All of the above replacement properties were added in iLO 4 2.30.

VLAN Configuration

VLAN Configuration for iLO's Shared Network Interface has changed in iLO 5 to become Redfish conformant.

iLO 4iLO 5 replacement
/VLANEnable/VLAN/VLANEnable
/VLANId/VLAN/VLANId

iLO Network Protocols (/redfish/v1/managers/{item}/NetworkService/)

The following properties have been removed for Redfish conformance:

iLO 4iLO 5 replacement
/SessionTimeoutMinutesRemoved
/{protocol}/Enabled/{protocol}/ProtocolEnabled
/Oem/Hp/HPSystemManagementHomepageAddress/Oem/Hpe/SystemManagementHomepage

ProtocolEnabled was added in iLO 4 2.30 and Enabled is now removed. HPSystemManagementHomepageAddress was changed as part of the Hewlett Packard Enterprise transition.

Chassis (/redfish/v1/chassis/{item}/)

iLO 5 supports the Redfish PhysicalSecurity status to report the status of the hood sensor. This is only present when a hood sensor is installed on the server:

Example:

{
  "PhysicalSecurity": {
    "IntrusionSensor": "HardwareIntrusion"
  }
}

"Version" has been removed from Chassis to be Redfish conformant.

Power (/redfish/v1/chassis/{item}/power/)

The following properties have been removed for Redfish conformance:

iLO 4iLO 5 replacement
/PowerConsumedWatts/PowerControl/PowerConsumedWatts
/PowerRequestedWatts/PowerControl/PowerRequestedWatts
/PowerAvailableWatts/PowerControl/PowerAvailableWatts
/PowerAllocatedWatts/PowerControl/PowerAllocatedWatts
/PowerCapacityWatts/PowerControl/PowerCapacityWatts
/PowerMetrics/PowerControl/PowerMetrics
/PowerLimit/PowerControl/PowerLimit
/PowerSupplies[]/CorrelatableIDno replacement

Thermal (/redfish/v1/chassis/{item}/thermal)

The existing CurrentReading property for each fan array entry is replaced with the Redfish errata change:

Redfish adds a pair of properties Reading and ReadingUnits. Both are GET-only operation properties. ReadingUnits are returned from a GET operation as Percent and Reading is a number between 0 and 100.

Additionally, a few other properties from the pre-Redfish schema are removed to conform with Redfish.

iLO 4iLO 5 replacement
/Fans[]/FanName/Fans[]/Name (changed in Redfish Thermal.v1_1_0)
/Fans[]/CurrentReading/Fans[]/Reading*
/Fans[]/CurrentReading/Fans[]/ReadingUnits* (= "Percent")
/Fans[]/ReadingRPMRemoved from old schema - never implemented
/Fans[]/Units/Fans[]/ReadingUnits (= "Percent")
/Fans[]/Context/Fans[]/PhysicalContext
/Temperatures[]/Context/Temperatures[]/PhysicalContext
/Temperatures[]/CurrentReading/Temperatures[]/ReadingCelsius
/Temperatures[]/Number/Temperatures[]/SensorNumber*
/Temperatures[]/UnitsRemoved - Redfish always read in Celsius (see ReadingCelsius)
/Temperatures[]/LowerThresholdNonCritical/Temperatures[]/UpperThresholdCritical
/Temperatures[]/LowerThresholdCritical/Temperatures[]/UpperThresholdFatal

These are newly added for iLO 5 as Redfish conformant replacements for the removed properties. The others were added in iLO 4 2.30 and above as Redfish replacements.

NOTE

The threshold property changes fix a issue with incorrectly labeled thresholds in previous releases of iLO.

On-Service JSON Schema

The on-service schema collection remains at /redfish/v1/schema/ and does not change to the Redfish example of /redfish/v1/JsonSchema. Because URIs are opaque, this is left where it is without violating the spec and preserving compatibility.

The existing collection of SchemaFileCollection and SchemaFile resources are now Redfish conformant using JsonSchemaFileCollection and JsonSchemaFile.

iLO 4iLO 5
/redfish/v1/schemas: "@odata.type": "#SchemaFileCollection.SchemaFileCollection"/redfish/v1/schemas: "@odata.type": "#JsonSchemaFileCollection.JsonSchemaFileCollection"
/redfish/v1/schemas/{item}: "@odata.type": “#SchemaFile.1.0.0.SchemaFile"/redfish/v1/schemas/{item}: "@odata.type": “#JsonSchemaFile.v1_0_0.JsonSchemaFile"

The main difference in the SchemaFile and JsonSchemaFile is the change from using extref as a pointer to using the Uri property:

{
    "Uri": {
        "extref": "/redfish/v1/registrystore/en/BiosAttributeRegistryP89.v1_0_0.json"
    }
}

On-Service Message Registries

Message Registries available in the service conform to Redfish.

The HpCommon registry is renamed to HpeCommon and changed to version 2.0.0.

The iLO registry version is also changed to 2.0.0. The base remains at 1.0.0 because that is a Redfish standard registry.

iLO 4iLO 5
"Type": "MessageRegistry.0.10.0""@odata.type": "#MessageRegistry.1.0.0.MessageRegistry"
VersionRegistryVersion
noneOwningEntity (== Hewlett Packard Enterprise)

The collection of Message Registries is changed to:

iLO 4 @odata.typeiLO 5 @odata.type
SchemaFileCollection.SchemaFileCollection#MessageRegistryFileCollection.MessageRegistryFileCollection

The collection items pointing to the registries change type:

iLO 4 @odata.typeiLO 5 @odata.type
#SchemaFile.1.0.0.SchemaFile#MessageRegistryFile.1.0.0.MessageRegistryFile

The only difference between SchemaFile/JsonSchemaFile and MessageRegistryFile is the property substitution Schema for Registry.

Integrated Management Log (IML)

/redfish/v1/Systems/{item}/LogServices/IML/Entries/{item}/

The Integrated Management Log (IML) RESTful API in iLO 5 is significantly enhanced. Each log entry is Redfish conformant with the LogEntry Schema and has been enhanced with features of the IML using an Oem/Hpe extension.

Compared to iLO 4, the following items are new or changed:

PropertyChangeNotes
Oem/Hpe/RecommendedActionAddedThis is a text string with recommended actions to resolve a condition indicated by this event.
Oem/Hpe/Categories (array of strings)AddedCategorizes this log entry into one or more defined categories (see below).
Oem/Hpe/LearnMoreLinkAddedA URI with the location of more information for this class and code of event.
Oem/Hpe/CountAddedReplaces the "Number" property in iLO 4 which was not Redfish conformant and was hidden when the resource was requested in Redfish mode.
Oem/Hpe/RepairedAddedThis boolean flag indicates whether the event has been repaired.
OemRecordFormatChangedThe OEM Record Format has been changed from "Hp-IML" to "Hpe-IML".
Oem/Hpe/EventNumberAddedReplaces the "RecordId" property in iLO 4 which was not Redfish conformant and was hidden when the resource was requested in Redfish mode.

Event Categories

An event can indicate that it is in one or more of the following categories:

Categories
Security
Hardware Failure
Firmware Failure
Maintenance
Administration
Power
Cooling
Invalid User Input
Other
Configuration
{
  "@odata.context": "/redfish/v1/$metadata#Systems/Members/1/LogServices/IML/Entries/Members/$entity",
  "@odata.id": "/redfish/v1/Systems/1/LogServices/IML/Entries/1/",
  "@odata.type": "#LogEntry.1.0.0.LogEntry",
  "Created": "2016-01-12T21:38:00Z",
  "EntryType": "Oem",
  "Id": "1",
  "Message": "IML Cleared (iLO 4 user:[NONE])",
  "Name": "Integrated Management Log",
  "Oem": {
    "Hp": {
      "@odata.type": "#HpLogEntry.1.0.0.HpLogEntry",
      "Class": 33,
      "Code": 1,
      "EventNumber": 28,
      "Updated": "2016-01-12T21:38:00Z"
    }
  },
  "OemRecordFormat": "Hp-IML",
  "Severity": "OK"
}

EventService (/redfish/v1/EventService/)

The following properties are removed for Redfish conformance:

  • DeliveryRetryIntervalInSeconds (replaced by DeliveryRetryIntervalSeconds present in iLO 4 2.30 and later)
  • SubscriptionRemovalAction
  • SubscriptionRemoval
  • TimeIntervalInMinutes

Event Destinations

The following properties are removed for Redfish conformance:

  • TTLCount
  • TTLUnits

Detail of All Property Changes

Property Replacements and Removals

Chassis Renames and Removals

@odata.type: #Chassis.v1_2_0.Chassis

PropertyReplacementNote
/Versionnone/Version is not Redfish conformant.

ComputerSystem Renames and Removals

@odata.type: #ComputerSystem.v1_2_0.ComputerSystem

PropertyReplacement
/BIOSPOSTCodenone1
/Bios/Current/BiosVersion
/Boot/BootSourceOverrideSupported/Boot/BootSourceOverrideTarget@Redfish.AllowableValues2
/Boot/UefiTargetBootSourceOverrideSupported/Boot/UefiTargetBootSourceOverride@Redfish.AllowableValues3
/HostCorrelationnone4
/Memory/Status/MemorySummary/Status
/Memory/TotalSystemMemoryGB/MemorySummary/TotalSystemMemoryGiB
/Power/PowerState5
/Processors/Count/ProcessorSummary/Count
/Processors/ProcessorFamily/ProcessorSummary/Model
/Processors/Status/ProcessorSummary/Status
/Versionnone6
/VirtualSerialNumbernone7
1/BIOSPOSTCode is not Redfish conformant.
2/Boot/BootSourceOverrideSupported is not Redfish conformant.
3/Boot/UefiTargetBootSourceOverrideSupported is not Redfish conformant.
4/HostCorrelation is not Redfish conformant.
5/Power is not Redfish conformant.
6/Version is not Redfish conformant.
7/VirtualSerialNumber is not Redfish conformant.

EthernetInterface Renames and Removals

@odata.type: #EthernetInterface.v1_0_0.EthernetInterface

PropertyReplacementNote
/Autosense/AutoNeg/Autosense is not Redfish conformant.
/FactoryMacAddress/PermanentMACAddress/FactoryMacAddress is not Redfish conformant.
/LinkTechnologynone/LinkTechnology is not Redfish conformant. Ethernet is assumed.
/MacAddress/MACAddress/MacAddress is not Redfish conformant.

Event Renames and Removals

@odata.type: #Event.v1_0_0.Event

PropertyReplacementNote
/Events[]/EventID/Events[]/EventId
/Events[]/MessageID/Events[]/MessageId/Events[]/MessageID is not Redfish conformant.

EventDestination Renames and Removals

@odata.type: #EventDestination.v1_0_0.EventDestination

PropertyReplacementNote
/TTLCountnone/TTLCount is not Redfish conformant.
/TTLUnitsnone/TTLUnits is not Redfish conformant.

EventService Renames and Removals

@odata.type: #EventService.v1_0_1.EventService

PropertyReplacementNote
/DeliveryRetryIntervalInSeconds/Oem/Hpe/DeliveryRetryIntervalSeconds/DeliveryRetryIntervalInSeconds is not Redfish conformant. This has been moved into the EventDestination OEM section as /Oem/Hpe/DeliveryRetryIntervalInSeconds in the HpeEventDestination schema.
/SubscriptionRemovalActionnone/SubscriptionRemovalAction is not Redfish conformant.
/SubscriptionRemovalTimeIntervalInMinutesnone/SubscriptionRemovalTimeIntervalInMinutes is not Redfish conformant.

ExtendedInfo Renames and Removals

@odata.type: #ExtendedInfo.1.0.0.ExtendedInfo

PropertyReplacementNote
/Messages/@Message.ExtendedInfo/Messages is not Redfish conformant.
/error/@Message.ExtendedInfo[]/MessageID/error/@Message.ExtendedInfo[]/MessageId/error/@Message.ExtendedInfo[]/MessageID is not Redfish conformant.

HpeBaseNetworkAdapter Renames and Removals

@odata.type: #HpeBaseNetworkAdapter.v2_0_0.HpeBaseNetworkAdapter

PropertyReplacementNote
/PhysicalPorts[]/links/EthernetNetworkAdapternone

HpeComputerSystemExt Renames and Removals

@odata.type: #HpeComputerSystemExt.v2_1_0.HpeComputerSystemExt

PropertyReplacementNote
/Actions/#HpComputerSystemExt.PowerButton/Actions/#HpeComputerSystemExt.PowerButtonHPE Branding Transition
/Actions/#HpComputerSystemExt.ServerSigRecompute/Actions/#HpeComputerSystemExt.ServerSigRecomputeHPE Branding Transition
/Actions/#HpComputerSystemExt.SystemReset/Actions/#HpeComputerSystemExt.SystemResetHPE Branding Transition
/TrustedModulesComputerSystem#/TrustedModulesThis has been formally approved in the Redfish standard and moved from the Oem/Hpe section into the main ComputerSystem object.

HpeESKM Renames and Removals

@odata.type: #HpeESKM.v2_0_0.HpeESKM

PropertyReplacementNote
/Actions/#HpESKM.ClearESKMLog/Actions/#HpeESKM.ClearESKMLogHPE Branding Transition
/Actions/#HpESKM.TestESKMConnections/Actions/#HpeESKM.TestESKMConnectionsHPE Branding Transition

HpeHttpsCert Renames and Removals

@odata.type: #HpeHttpsCert.v2_0_0.HpeHttpsCert

PropertyReplacementNote
/Actions/#HpHttpsCert.GenerateCSR/Actions/#HpeHttpsCert.GenerateCSRHPE Branding Transition
/Actions/#HpHttpsCert.ImportCertificate/Actions/#HpeHttpsCert.ImportCertificateHPE Branding Transition

HpeiLO Renames and Removals

@odata.type: #HpeiLO.v2_0_0.HpeiLO

PropertyReplacementNote
/Actions/#HpiLO.ClearRestApiState/Actions/#HpeiLO.ClearRestApiStateHPE Branding Transition
/Actions/#HpiLO.ResetToFactoryDefaults/Actions/#HpeiLO.ResetToFactoryDefaultsHPE Branding Transition
/Actions/#HpiLO.iLOFunctionality/Actions/#HpeiLO.iLOFunctionalityHPE Branding Transition

HpeiLOActiveHealthSystem Renames and Removals

@odata.type: #HpeiLOActiveHealthSystem.v2_0_0.HpeiLOActiveHealthSystem

PropertyReplacementNote
/Actions/#HpiLOActiveHealthSystem.ClearLog/Actions/#HpeiLOActiveHealthSystem.ClearLogHPE Branding Transition

HpeiLOEmbeddedMedia Renames and Removals

@odata.type: #HpeiLOEmbeddedMedia.v2_0_0.HpeiLOEmbeddedMedia

PropertyReplacementNote
/SDCard/HpCertified/SDCard/HpeCertifiedHPE Branding Transition

HpeiLOManagerNetworkService Renames and Removals

@odata.type: #HpeiLOManagerNetworkService.v2_0_0.HpeiLOManagerNetworkService

PropertyReplacementNote
/Actions/#HpiLOManagerNetworkService.SendTestAlertMail/Actions/#HpeiLOManagerNetworkService.SendTestAlertMailHPE Branding Transition
/Actions/#HpiLOManagerNetworkService.SendTestSyslog/Actions/#HpeiLOManagerNetworkService.SendTestSyslogHPE Branding Transition
/HPSystemManagementHomepageAddress/SystemManagementHomepageHPE Branding Transition

HpeiLOSSO Renames and Removals

@odata.type: #HpeiLOSSO.v2_0_0.HpeiLOSSO

PropertyReplacementNote
/Actions/#HpiLOSSO.DeleteAllSSORecords/Actions/#HpeiLOSSO.DeleteAllSSORecordsHPE Branding Transition
/Actions/#HpiLOSSO.DeleteSSORecordbyNumber/Actions/#HpeiLOSSO.DeleteSSORecordbyNumberHPE Branding Transition
/Actions/#HpiLOSSO.ImportCertificate/Actions/#HpeiLOSSO.ImportCertificateHPE Branding Transition
/Actions/#HpiLOSSO.ImportDNSName/Actions/#HpeiLOSSO.ImportDNSNameHPE Branding Transition

HpeiLOSnmpService Renames and Removals

@odata.type: #HpeiLOSnmpService.v2_0_0.HpeiLOSnmpService

PropertyReplacementNote
/Actions/#SnmpService.SendSNMPTestAlert/Actions/#HpeiLOSnmpService.SendSNMPTestAlert

HpeiLOVirtualMedia Renames and Removals

@odata.type: #HpeiLOVirtualMedia.v2_0_0.HpeiLOVirtualMedia

PropertyReplacementNote
/Actions/#HpiLOVirtualMedia.1.1.0.EjectVirtualMedia/Actions/#HpeiLOVirtualMedia.EjectVirtualMediaHPE Branding Transition
/Actions/#HpiLOVirtualMedia.1.1.0.InsertVirtualMedia/Actions/#HpeiLOVirtualMedia.InsertVirtualMediaHPE Branding Transition

LogEntry Renames and Removals

@odata.type: #LogEntry.v1_0_0.LogEntry

PropertyReplacementNote
/Numbernone/Number is not Redfish conformant.
/RecordId/EventNumber/RecordId is not Redfish conformant.

Manager Renames and Removals

@odata.type: #Manager.v1_1_0.Manager

PropertyReplacementNote
/CommandShell/Enabled/CommandShell/ServiceEnabled/CommandShell/Enabled is not Redfish conformant.
/Firmware/FirmwareVersion/Firmware is not Redfish conformant.
/GraphicalConsole/Enabled/GraphicalConsole/ServiceEnabled/GraphicalConsole/Enabled is not Redfish conformant.
/SerialConsole/Enabled/SerialConsole/ServiceEnabled/SerialConsole/Enabled is not Redfish conformant.

ManagerNetworkProtocol Renames and Removals

@odata.type: #ManagerNetworkProtocol.v1_0_0.ManagerNetworkProtocol

PropertyReplacementNote
/HTTP/Enabled/HTTP/ProtocolEnabled/HTTP/Enabled is not Redfish conformant.
/HTTPS/Enabled/HTTPS/ProtocolEnabled/HTTPS/Enabled is not Redfish conformant.
/IPMI/Enabled/IPMI/ProtocolEnabled/IPMI/Enabled is not Redfish conformant.
/KVMIP/Enabled/KVMIP/ProtocolEnabled/KVMIP/Enabled is not Redfish conformant.
/SNMP/Enabled/SNMP/ProtocolEnabled/SNMP/Enabled is not Redfish conformant.
/SSDP/Enabled/SSDP/ProtocolEnabled/SSDP/Enabled is not Redfish conformant.
/SSH/Enabled/SSH/ProtocolEnabled/SSH/Enabled is not Redfish conformant.
/SessionTimeoutMinutesnone/SessionTimeoutMinutes is not Redfish conformant.
/VirtualMedia/Enabled/VirtualMedia/ProtocolEnabled/VirtualMedia/Enabled is not Redfish conformant.

Power Renames and Removals

@odata.type: #Power.v1_0_1.Power

PropertyReplacementNote
/PowerAllocatedWatts/PowerControl/PowerAllocatedWatts/PowerAllocatedWatts is not Redfish conformant.
/PowerAvailableWatts/PowerControl/PowerAvailableWatts/PowerAvailableWatts is not Redfish conformant.
/PowerCapacityWatts/PowerControl/PowerCapacityWatts/PowerCapacityWatts is not Redfish conformant.
/PowerConsumedWatts/PowerControl/PowerConsumedWatts/PowerConsumedWatts is not Redfish conformant.
/PowerLimit/PowerControl/PowerLimit/PowerLimit is not Redfish conformant.
/PowerMetrics/PowerControl/PowerMetrics/PowerMetrics is not Redfish conformant.
/PowerRequestedWatts/PowerControl/PowerRequestedWatts/PowerRequestedWatts is not Redfish conformant.
/PowerSupplies[]/CorrelatableIDnone/PowerSupplies[]/CorrelatableID is not Redfish conformant.

ServiceRoot Renames and Removals

@odata.type: #ServiceRoot.v1_1_0.ServiceRoot

PropertyReplacementNote
/TimeHpeiLOServiceExt#/Time/Time is not Redfish conformant. A replacement to this is defined in the Oem section of Manager (HpeiLOServiceExt).

Thermal Renames and Removals

@odata.type: #Thermal.v1_1_0.Thermal

PropertyReplacementNote
/Fans[]/Context/Fans[]/PhysicalContext/Fans[]/Context is not Redfish conformant.
/Fans[]/CurrentReading/Fans[]/Reading/Fans[]/CurrentReading is not Redfish conformant.
/Fans[]/FanName/Fans[]/Name
/Fans[]/ReadingRPM/Fans[]/Reading
/Fans[]/Units/Fans[]/ReadingRPM/Fans[]/Units is not Redfish conformant.
/Temperatures[]/Context/Temperatures[]/PhysicalContext/Temperatures[]/Context is not Redfish conformant.
/Temperatures[]/CurrentReading/Temperatures[]/ReadingCelsius/Temperatures[]/CurrentReading is not Redfish conformant.
/Temperatures[]/Number/Temperatures[]/SensorNumber/Temperatures[]/Number is not Redfish conformant.
/Temperatures[]/Units/Temperatures[]/ReadingCelsius/Temperatures[]/Units is not Redfish conformant.

Property Additions to existing Types

Chassis Additions

@odata.type: #Chassis.v1_2_0.Chassis

PropertyNote
/Links/DrivesAn array of references to the drives contained in this chassis.
/PhysicalSecurityA Redfish standard Physical Security object if supported and installed on the chassis.

ComputerSystem Additions

@odata.type: #ComputerSystem.v1_2_0.ComputerSystem

PropertyNote
/Boot/BootSourceOverrideModenone
/Boot/BootSourceOverrideTarget@Redfish.AllowableValuesnone
/Boot/UefiTargetBootSourceOverride@Redfish.AllowableValuesnone
/SecureBootA reference to the UEFI SecureBoot resource associated with this system.
/StorageA reference to the collection of storage devices associated with this system.
/TrustedModulesThis object describes the array of Trusted Modules in the system.

Event Additions

@odata.type: #Event.v1_0_0.Event

PropertyNote
/Events[]/EventIdThis is a unique instance identifier of an event.

HpeAdvancedMemoryProtection Additions

@odata.type: #HpeAdvancedMemoryProtection.v2_0_0.HpeAdvancedMemoryProtection

PropertyNote
/MemoryListAn array of memory boards containing socket and CPU correlation information.

HpeBaseNetworkAdapter Additions

@odata.type: #HpeBaseNetworkAdapter.v2_0_0.HpeBaseNetworkAdapter

PropertyNote
/FcPortsInformation about the Fiber Channel Ports in the server.

HpeComputerSystemExt Additions

@odata.type: #HpeComputerSystemExt.v2_1_0.HpeComputerSystemExt

PropertyNote
/AggregateHealthStatusThe Aggregate Health Status of the System.
/HostOSnone
/Links/USBPortsA reference to the USB Port Connectors associated with this system.
/PCAPartNumberThe PCA part number.
/PCASerialNumberThe PCA serial number.
/PostDiscoveryCompleteTimeStampDisplays the last known POST Discovery Complete time.
/PostDiscoveryModeThe mode which the system operates during the discovery section of POST.
/SMBIOSA reference to the SMBIOS records associated with this system.
/SmartStorageConfigAn array of references to SmartStorage elements associated with this system.
/ProcessorJitterControlAllows the user to set the Processor Jitter Control mode and Frequency at run time.
/CurrentPowerOnTimeSecondsShows the amount of time (in seconds) that has passed since the server was last powered on.
/PowerOnMinutesRetrieves the virtual clock value, in minutes, since the server was first powered on.

HpeLogEntry Additions

@odata.type: #HpeLogEntry.v2_0_0.HpeLogEntry

PropertyNote
/CategoriesThe log entry categories.
/CountThe occurrence count of the log entry.
/LearnMoreLinkThe HPSC link for troubleshooting information.
/RecommendedActionThe recommended action for the event.

HpePowerMetricsExt Additions

@odata.type: #HpePowerMetricsExt.v2_0_0.HpePowerMetricsExt

PropertyNote
/BbuPowerSupplyBattery Backup Unit Power Supply action determines what occurs when a server is running on battery power.
/HasPowerMeteringIndicates if the system has power metering.
/MinimumSafelyAchievableCapMinimum Safely Achievable Cap is the lowest cap value that is safe for a group power manager to apply to a particular server. It can either be identical to or slightly greater than the 0 percent cap value calculated during ROM power burn.
/HighEfficiencyModeThe redundant power supply mode that is used when redundant power supplies are configured.

HpeSecurityService Additions

@odata.type: #HpeSecurityService.v2_0_0.HpeSecurityService

PropertyNote
/SecurityStateThe operational security level of this Manager.
/LoginSecurityBannerAllows you to configure the security banner displayed on the iLO login screen.
/CurrentCipherDisplays the current cipher in use.

HpeServerChassis Additions

@odata.type: #HpeServerChassis.v2_0_0.HpeServerChassis

PropertyNote
/Links/BladeEnclosureThe URI for this blade enclosure resource.
/SystemMaintenanceSwitchesDescribes the maintenance switch positions

HpeServerFan Additions

@odata.type: #HpeServerFan.v2_0_0.HpeServerFan

PropertyNote
/HotPluggableIndicates if the fan can be replaced while the server is running.
/RedundantIndicates if the fan is in a redundant configuration.

HpeServerPciDevice Additions

@odata.type: #HpeServerPciDevice.v2_0_0.HpeServerPciDevice

PropertyNote
/LocationStringText representation of the UEFI device location.

HpeSmartStorageArrayController Additions

@odata.type: #HpeSmartStorageArrayController.v2_0_0.HpeSmartStorageArrayController

PropertyNote
/ControllerPartNumberSmart Array Controller Part Number

HpeSmartStorageDiskDrive Additions

@odata.type: #HpeSmartStorageDiskDrive.v2_0_0.HpeSmartStorageDiskDrive

PropertyNote
/LegacyBootPriorityThis indicates that the array controller should provide legacy boot support.

HpeSmartStorageLogicalDrive Additions

@odata.type: #HpeSmartStorageLogicalDrive.v2_0_0.HpeSmartStorageLogicalDrive

PropertyNote
/InterfaceTypeThe connection interface of the logical drive.
/MediaTypeType of the disk this logical drive is associated with.

HpeiLO Additions

@odata.type: #HpeiLO.v2_0_0.HpeiLO

PropertyNote
/ConfigurationSettingsState of the currently displayed configuration settings.
/IdleConnectionTimeoutMinutesThis setting specifies how long a user can be inactive before an iLO web interface ends automatically.
/Links/ThumbnailA link to static images in Manager.
/RIBCLEnabledThis property enables or disables RIBCL for the management processor. The management processor requires reset when this field is modified.
/WebGuiEnabledThis property enables or disables WEB GUI access for the management processor. The management processor requires reset when this field is modified.
/PersistentMouseKeyboardEnabledThis property enables or disables the persistent keyboard and mouse feature.

HpeiLOEmbeddedMedia Additions

@odata.type: #HpeiLOEmbeddedMedia.v2_0_0.HpeiLOEmbeddedMedia

PropertyNote
/SDCard/HpeCertifiedTrue if this is an HPE-certified SD card.

HpeiLOManagerNetworkService Additions

@odata.type: #HpeiLOManagerNetworkService.v2_0_0.HpeiLOManagerNetworkService

PropertyNote
/SystemManagementHomepageThe IP address or FQDN of the System Management Homepage (SMH) server.

HpeiLOResourceDirectory Additions

@odata.type: #HpeiLOResourceDirectory.v2_0_0.HpeiLOResourceDirectory

PropertyNote
/Instances[]/HttpMethodsThis property lists the set of methods supported by the resource.

HpeiLOServiceExt Additions

@odata.type: #HpeiLOServiceExt.v2_0_0.HpeiLOServiceExt

PropertyNote
/TimeThe current Redfish service time. This is a replacement for the ServiceRoot Time removed in Redfish.

Manager Additions

@odata.type: #Manager.v1_1_0.Manager

PropertyNote
/Links/ManagerInChassisThis property is a reference to the chassis that this manager is located within.

ServiceRoot Additions

@odata.type: #ServiceRoot.v1_1_0.ServiceRoot

PropertyNote
/UpdateServiceThe URI to this UpdateService resource.

Thermal Additions

@odata.type: #Thermal.v1_1_0.Thermal

PropertyNote
/Fans[]/NameThe name of the fan sensor.
/Fans[]/ReadingThe current speed of the fan.
/Temperatures[]/SensorNumberA numerical identifier to represent the temperature sensor.