***************************************************************************************************************************************
3.32.5	eventservice	: Redfish event service API.(Not support vertiv)

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

1.	<info>		: Show event service information.

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

2.	<list>		: Show all event destination in event service subscriptions collection.

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

3.	<modify>	: Modify event service configurations.
	<jsonFile>	: The json data of event service configuration. For example:

			  {
				"ServiceEnabled": true
			  }

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

4.	<submit>	: Submit test event type action.
	<jsonFile>	: The json data of test event types for action. For example:

			  {
				"EventType" : "Alert"
			  }

			  * Allowable event types : "StatusChange", "ResourceUpdated", "ResourceAdded",
						    "ResourceRemoved" and "Alert".

	Example		: java -jar GbtUtility-2.1.76.jar [options] redfish eventservice submit <jsonFile>
	by nodelist	: java -jar GbtUtility-2.1.76.jar redfish eventservice submit examples/redfish/eventservice_submit.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 eventservice submit examples/redfish/eventservice_submit.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 eventservice submit examples/redfish/eventservice_submit.json

5.	<get>		: Get single event destination in event service subscriptions collection.
	<num>		: The number of the subscription.

	Example		: java -jar GbtUtility-2.1.76.jar [options] redfish eventservice get <num>
	by nodelist	: java -jar GbtUtility-2.1.76.jar redfish eventservice get 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 eventservice get 1
	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 eventservice get 3

6.	<add>		: Add new event destination in event service subscriptions collection.
	<jsonFile>	: The json data of test event destination. For example:

			  {
				"Context" : "Test event destination of multiple event type",
				"Destination" : "https://www.xxx.com",
				"Description" : "Example test subscription of Redfish service API",
				"EventTypes" : [
					"Alert",
					"StatusChange",
					"ResourceUpdated"
				],
				"Name" : "GIGABYTE",
				"Protocol": "Redfish"
			  }

			  * "EventTypes" properties allowable values as same as the submit action.
			  More details of event destination see:
			  http://redfish.dmtf.org/schemas/v1/EventDestination.v1_1_1.json#/definitions/EventDestination

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

7.	<delete>	: Delete exist event destination in event service subscriptions collection.
	<num>		: The number of the subscription.

	Example		: java -jar GbtUtility-2.1.76.jar [options] redfish eventservice delete <num>
	by nodelist	: java -jar GbtUtility-2.1.76.jar redfish eventservice delete 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 eventservice delete 1
	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 eventservice delete 3
***************************************************************************************************************************************