Firmware ApplyTime settings Immediate and OnReset

Change-Id: I92dae449ec0524e5f1d2a60a7717e46b82e5cc4e
Signed-off-by: George Keishing <gkeishin@in.ibm.com>
diff --git a/REDFISH-cheatsheet.md b/REDFISH-cheatsheet.md
index 7be183c..c9e7384 100644
--- a/REDFISH-cheatsheet.md
+++ b/REDFISH-cheatsheet.md
@@ -58,6 +58,15 @@
     $ curl -k -H "X-Auth-Token: $bmc_token" -X POST https://${bmc}/redfish/v1/Systems/system/LogServices/EventLog/Actions/LogService.Reset
     ```
 
+* Firmware ApplyTime:
+    ```
+    $ curl -k -H "X-Auth-Token: $bmc_token" -X PATCH -d '{ "ApplyTime":"Immediate"}' https://${bmc}/redfish/v1/UpdateService
+    ```
+
+    ```
+    $ curl -k -H "X-Auth-Token: $bmc_token" -X PATCH -d '{ "ApplyTime":"OnReset"}' https://${bmc}/redfish/v1/UpdateService
+    ```
+
 * Firmware update:
     ```
     $ curl -k -H "X-Auth-Token: $bmc_token" -H "Content-Type: application/octet-stream" -X POST -T <image file path> https://${bmc}/redfish/v1/UpdateService