***************************************************************************************************************************************
3.32.3	chassis		: Redfish chassis API.

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

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

1.	<info>		: Show chassis resource information.

	Example		: java -jar GbtUtility-2.1.76.jar [options] redfish chassis info [ID]
	by nodelist	: java -jar GbtUtility-2.1.76.jar redfish chassis info Self
	by single host	: java -jar GbtUtility-2.1.76.jar -H 10.1.27.79 -U admin -P password -RU admin -RP password redfish chassis info
	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 chassis info Self

2.	<identify>	: Chassis identify LED light setting.
	<jsonFile> : The LED light settings. The example of json body as:

			  {
				"IndicatorLED":"Lit"
			  }

			  The property of "IndicatorLED" allows "Blinking", "Off" and "Lit".  (Blinking will Lit for 15 seconds and auto Off.)

	Example		: java -jar GbtUtility-2.1.76.jar [options] redfish chassis identify [ID] <jsonFile>
	by nodelist	: java -jar GbtUtility-2.1.76.jar redfish chassis identify Self identify examples/redfish/chassis_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 chassis identify examples/redfish/chassis_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 chassis identify examples/redfish/chassis_identify.json

3.	<reset>		: Chassis reset action, It will load default values of Redfsih chassis resource.
	<jsonFile>	: 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 chassis reset [ID] <jsonFile>
	by nodelist	: java -jar GbtUtility-2.1.76.jar redfish chassis reset Self examples/redfish/chassis_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 chassis reset examples/redfish/chassis_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 chassis reset examples/redfish/chassis_reset.json
***************************************************************************************************************************************