Redfish cheatsheet: fix the 'ApplyTime' descriptions

Fix descriptions of the 'ApplyTime' setting to make it work on the
latest code tree.

Signed-off-by: Jae Hyun Yoo <quic_jaehyoo@quicinc.com>
Change-Id: I923ea70bc2c59dc55f0e10e0c1a44ea917e35422
diff --git a/REDFISH-cheatsheet.md b/REDFISH-cheatsheet.md
index 21ede1f..af30645 100644
--- a/REDFISH-cheatsheet.md
+++ b/REDFISH-cheatsheet.md
@@ -107,13 +107,13 @@
 
 ## Firmware ApplyTime:
 ```
-curl -k -H "X-Auth-Token: $token" -X PATCH -d '{ "ApplyTime":"Immediate"}' https://${bmc}/redfish/v1/UpdateService
+curl -k -H "X-Auth-Token: $token" -X PATCH -d '{"HttpPushUriOptions":{"HttpPushUriApplyTime":{"ApplyTime":"Immediate"}}}' https://${bmc}/redfish/v1/UpdateService
 ```
 
 or
 
 ```
-curl -k -H "X-Auth-Token: $token" -X PATCH -d '{ "ApplyTime":"OnReset"}' https://${bmc}/redfish/v1/UpdateService
+curl -k -H "X-Auth-Token: $token" -X PATCH -d '{"HttpPushUriOptions":{"HttpPushUriApplyTime":{"ApplyTime":"OnReset"}}}' https://${bmc}/redfish/v1/UpdateService
 ```
 
 ---