***************************************************************************************************************************************
3.32.13	raw		: Redfish raw API.

	usage		: java -jar GbtUtility-2.1.76.jar [options] redfish raw <get | post | patch | delete> <URI> [jsonFile]

	<URI>		: The Redfish resource URI.
	[jsonFile]	: The request json paylod for post or patch option.

1.	<get>		: HTTP GET method of Redfish resource URI.
	<URI>		: The target resource URI.

	Example		: java -jar GbtUtility-2.1.76.jar [options] redfish raw get <URI>
	by nodelist	: java -jar GbtUtility-2.1.76.jar redfish raw get /redfish/v1/AccountService/Accounts
	by single host	: java -jar GbtUtility-2.1.76.jar -H 10.1.27.79 -U admin -P password -RU admin -RP password redfish raw get /redfish/v1/AccountService/Accounts
	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 raw get /redfish/v1/AccountService/Accounts

2.	<post>		: HTTP POST method of Redfish resource URI.
	<URI>		: The target resource URI.
	<jsonFile>	: The file of post request entity.

	Example		: java -jar GbtUtility-2.1.76.jar [options] redfish raw post <URI> <jsonFile>
	by nodelist	: java -jar GbtUtility-2.1.76.jar redfish raw post /redfish/v1/AccountService/Accounts examples/redfish/account_add.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 raw post /redfish/v1/AccountService/Accounts examples/redfish/account_add.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 raw post /redfish/v1/AccountService/Accounts examples/redfish/account_add.json

3.	<patch>		: HTTP PATCH method of Redfish resource URI.
	<URI>		: The target resource URI.
	<jsonFile>	: The file of patch request entity.

	Example		: java -jar GbtUtility-2.1.76.jar [options] redfish raw patch <URI> <jsonFile>
	by nodelist	: java -jar GbtUtility-2.1.76.jar redfish raw patch /redfish/v1/AccountService examples/redfish/account_config.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 raw patch /redfish/v1/AccountService examples/redfish/account_config.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 raw patch /redfish/v1/AccountService examples/redfish/account_config.json

4.	<delete>	: HTTP DELETE method of Redfish resource URI.
	<URI>		: The target resource URI, which can delete.

	Example		: java -jar GbtUtility-2.1.76.jar [options] redfish raw delete <URI>
	by nodelist	: java -jar GbtUtility-2.1.76.jar redfish raw delete /redfish/v1/AccountService/Accounts/2
	by single host	: java -jar GbtUtility-2.1.76.jar -H 10.1.27.79 -U admin -P password -RU admin -RP password redfish raw delete /redfish/v1/AccountService/Accounts/2
	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 raw delete /redfish/v1/AccountService/Accounts/2
***************************************************************************************************************************************