***************************************************************************************************************************************
3.32.8	managers	: Redfish manager API.(Not support vertiv)

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

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

1.	<info>		: Show managers service configuration.

	Example		: java -jar GbtUtility-2.1.76.jar [options] redfish managers info [ID]
	by nodelist	: java -jar GbtUtility-2.1.76.jar redfish managers 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 managers 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 managers info

2.	<timeset>	: Set the time of the manager.
	<json>		: Manager time json data file.

			  {
				"DateTime" : "2018-08-09T09:32:03+08:00",
				"DateTimeLocalOffset": "+08:00"
			  }

	Example		: java -jar GbtUtility-2.1.76.jar [options] redfish managers get [ID] <json>
	by nodelist	: java -jar GbtUtility-2.1.76.jar redfish managers timeset Self examples/redfish/manager_timeset.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 managers timeset Self examples/redfish/manager_timeset.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 managers timeset examples/redfish/manager_timeset.json

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

			  {
				"ResetType":"ForceRestart"
			  }

			  The property of "ResetType" only allows "ForceRestart"

	Example		: java -jar GbtUtility-2.1.76.jar [options] redfish managers reset [ID] <jsonFile>
	by nodelist	: java -jar GbtUtility-2.1.76.jar redfish managers reset Self examples/redfish/manager_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 managers reset Self examples/redfish/manager_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 managers reset examples/redfish/manager_reset.json
***************************************************************************************************************************************