***************************************************************************************************************************************
3.32.18	session		: Redfish session API.

	usage		: java -jar GbtUtility-2.1.76.jar [options] redfish session <info | modify | add | get | delete> [args...]

1.	<info>		: Show session service configuration.

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

2.	<modify>	: Modify the configurations of session service. (Not support vertiv)
	<json>		: The json data of configurations of session service.

			  {
				"ServiceEnabled": true,
				"SessionTimeout": 300
			  }

	Example		: java -jar GbtUtility-2.1.76.jar [options] redfish session modify <json>
	by nodelist	: java -jar GbtUtility-2.1.76.jar redfish session modify examples/redfish/system_modify.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 session modify examples/redfish/system_modify.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 session modify examples/redfish/system_modify.json

3.	<add>		: Add new session. (Not support vertiv)
	<json>		: The json data of new session. For example:

			  {
				"UserName": "Administrator",
				"Password": "superuser"
			  }

	Example		: java -jar GbtUtility-2.1.76.jar [options] redfish session add <json>
	by nodelist	: java -jar GbtUtility-2.1.76.jar redfish session add examples/redfish/system_post.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 session add examples/redfish/system_post.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 session add examples/redfish/system_post.json

4.	<get>		: Get single session information. (Not support vertiv)
	<id>		: The ID number of session in members of sessions collection.

	Example		: java -jar GbtUtility-2.1.76.jar [options] redfish session get <id>
	by nodelist	: java -jar GbtUtility-2.1.76.jar redfish session get 1
	by single host	: java -jar GbtUtility-2.1.76.jar -H 10.1.27.79 -U admin -P password -RU admin -RP password redfish session get 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 session get 3

5.	<delete>	: Delete the exist session resource. (Not support vertiv)
	<id>		: The ID number of session resource which you want to delete.

	Example		: java -jar GbtUtility-2.1.76.jar [options] redfish session delete <id>
	by nodelist	: java -jar GbtUtility-2.1.76.jar redfish session delete 1
	by single host	: java -jar GbtUtility-2.1.76.jar -H 10.1.27.79 -U admin -P password -RU admin -RP password redfish session delete 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 session delete 3
***************************************************************************************************************************************