***************************************************************************************************************************************
3.32.19	systems		: Redfish systems API.

	usage		: java -jar GbtUtility-2.1.76.jar [options] redfish systems <info | boot | reset | identify> [ID] [args...]

	[ID]		: The system resource ID in Redfish systems collection (default will choose the first ID).

1.	<info>		: Show systems resource information.

	Example		: java -jar GbtUtility-2.1.76.jar [options] redfish systems info [ID]
	by nodelist	: java -jar GbtUtility-2.1.76.jar redfish systems info
	by single host	: java -jar GbtUtility-2.1.76.jar -H 10.1.27.79 -U admin -P password -RU admin -RP password redfish systems info Self
	by scan IP	: java -jar GbtUtility-2.1.76.jar -S rmcp,10.2.1.1,10.2.1.100 -U admin -P password -RU admin -RP password redfish systems info

2.	<boot>		: Set boot option of system.
	<list|get>	: Get content of single bios option or list all bios options.
	<json>		: The json data contains boot option data. We have two format:

			  Set single boot option to override:
			  {
				"Boot" : {
					"BootSourceOverrideEnabled": "Once",
					"BootSourceOverrideMode": "UEFI",
					"BootSourceOverrideTarget": "Pxe"
				}
			  }

			  Or set boot options array to change BIOS setup menu.

			  {
	 			"Boot": {
	    				"BootOrder": [
            					"Boot0001",
            					"Boot0005",
            					"Boot0003",
            					"Boot0004",
            					"Boot0002"
        				]
	 			}
			  }

			  * The boot option properties details description please see:
			  http://redfish.dmtf.org/schemas/v1/ComputerSystem.v1_3_0.json#/definitions/ComputerSystem
			  (Note: "Diags" is not support now)

	(List BIOS options)
	Example		: java -jar GbtUtility-2.1.76.jar [options] redfish systems boot list
	by nodelist	: java -jar GbtUtility-2.1.76.jar redfish systems boot list
	by single host	: java -jar GbtUtility-2.1.76.jar -H 10.1.27.79 -U admin -P password -RU admin -RP password redfish systems boot list
	by scan IP	: java -jar GbtUtility-2.1.76.jar -S rmcp,10.2.1.1,10.2.1.100 -U admin -P password -RU admin -RP password redfish systems boot list

	(Get sinlge BIOS option)
	Example		: java -jar GbtUtility-2.1.76.jar [options] redfish systems boot get 0001
	by nodelist	: java -jar GbtUtility-2.1.76.jar redfish systems boot get 0001
	by single host	: java -jar GbtUtility-2.1.76.jar -H 10.1.27.79 -U admin -P password -RU admin -RP password redfish systems boot get 0001
	by scan IP	: java -jar GbtUtility-2.1.76.jar -S rmcp,10.2.1.1,10.2.1.100 -U admin -P password -RU admin -RP password redfish systems boot get 0001

	(Patch BIOS options)
	Example		: java -jar GbtUtility-2.1.76.jar [options] redfish systems boot <json>
	by nodelist	: java -jar GbtUtility-2.1.76.jar redfish systems boot examples/redfish/system_boot.json
	by single host	: java -jar GbtUtility-2.1.76.jar -H 10.1.27.79 -U admin -P password -RU admin -RP password redfish systems boot examples/redfish/system_boot.json
	by scan IP	: java -jar GbtUtility-2.1.76.jar -S rmcp,10.2.1.1,10.2.1.100 -U admin -P password -RU admin -RP password redfish systems boot examples/redfish/system_boot.json

3.	<reset>		: System reset action, It will load default values of Redfsih system resource.
	<json>		: The reset type of reset action. The example of json body as:

			  {
				"ResetType":"On"
			  }

			  The property of "ResetType" allows "On", "ForceOff", "GracefulShutdown", and "ForceRestart"

	Example		: java -jar GbtUtility-2.1.76.jar [options] redfish systems reset [ID] <json>
	by nodelist	: java -jar GbtUtility-2.1.76.jar redfish systems reset Self examples/redfish/system_reset.json
	by single host	: java -jar GbtUtility-2.1.76.jar -H 10.1.27.79 -U admin -P password -RU admin -RP password redfish systems reset examples/redfish/system_reset.json
	by scan IP	: java -jar GbtUtility-2.1.76.jar -S rmcp,10.2.1.1,10.2.1.100 -U admin -P password -RU admin -RP password redfish systems reset examples/redfish/system_reset.json

4.	<identify>	: System identify LED light setting.(Not support vertiv)
	<json>		: The LED light settings. The example of json body as:

			  {
				"IndicatorLED":"Lit"
			  }

			  The property of "IndicatorLED" allows "Blinking", "Off" and "Lit".

	Example		: java -jar GbtUtility-2.1.76.jar [options] redfish systems identify [ID] <json>
	by nodelist	: java -jar GbtUtility-2.1.76.jar redfish systems identify Self examples/redfish/system_identify.json
	by single host	: java -jar GbtUtility-2.1.76.jar -H 10.1.27.79 -U admin -P password -RU admin -RP password redfish systems identify examples/redfish/system_identify.json
	by scan IP	: java -jar GbtUtility-2.1.76.jar -S rmcp,10.2.1.1,10.2.1.100 -U admin -P password -RU admin -RP password redfish systems identify examples/redfish/system_identify.json
***************************************************************************************************************************************