Skip to main content

PATCH – Media Boost

  1. Currently, in BMC, CD image redirection using BoostMode support is allowed only for single CD instance.

  2. Hence, if the user wants to do InsertMedia action using BoostMode support for a CD instance, then the user can patch BoostMode OEM property value as true for that particular instance.

Request

PATCH https://{{ip}}/redfish/v1/Managers/{{manager_instance}}/VirtualMedia/{{CD_instance}}
Content-Type: application/json

Request body

{
"Oem": {
"Ami": {
"BoostMode": true
}
}
}

Response

Normal

The response status is successful with status code of 204 and no body. For Error Responses, please refer to Error Response.
  1. When InsertMedia action is initiated with BoostMode successfully, then RedirectionStatus value of the CD instance would be as mentioned below.

  2. If the redirection is not initiated through BoostMode in the BMC side due to any other issues, then it would be initiated through normal mode.

Error

Below Error will be shown in the response if the user tries to patch BoostMode as true for a CD instance when already it is enabled for any other CD instance.
{
"error": {
"@Message.ExtendedInfo": [
{
"@odata.type": "#Message.v1_0_8.Message",
"Message": "The operation failed because only one BoostMode redirection is currently allowed
and CD1 instance BoostMode support is already enabled and can no longer take incoming requests.",
"MessageArgs": [
"only one BoostMode redirection is currently allowed and CD1 instance BoostMode support"
],
"MessageId": "AmiOem.1.0.SupportEnabled",
"RelatedProperties": [
"#/BoostMode"
],
"Resolution": "Disable the support and resubmit the request.",
"Severity": "Critical",
"retrieve_reg_id": "AmiOem.1.0.0"
}
],
"code": "AmiOem.1.0.SupportEnabled",
"message": "The operation failed because only one BoostMode redirection is currently allowed
and CD1 instance BoostMode support is already enabled and can no longer take incoming requests."
}
}