***************************************************************************************************************************************
3.32.2	bios		: Redfish BIOS API.(Not support vertiv)

	usage		: java -jar GbtUtility-2.1.76.jar [options] redfish bios <info|sd|reset|password> [ID] [args...]

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

1.	<info>		: Show BIOS resource information.

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

2.	<sd>		: BIOS menu setting.
	<get|post>	: Get/Set values of BIOS menu which will be set after the next boot.
	<json>		: The JSON data of BIOS menu setting which you want to set. (only available when "post")

	*1. Before post sd.json, please get current values of BIOS menu first, you can refer to 3.32.2-1 <info>.
	*2. If you want to know every avaliable values of registries, please refer to 3.32.14 registries to get BIOS registries information.
	*3. About the format of sd.json, you can refer to examples/redfish/bios_sd.json

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

	Example		: java -jar GbtUtility-2.1.76.jar [options] redfish bios sd post [ID] <json>
	by nodelist	: java -jar GbtUtility-2.1.76.jar redfish bios sd post Self examples/redfish/bios_sd.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 sd post examples/redfish/bios_sd.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 bios sd post examples/redfish/bios_sd.json

3.	<reset>		: Reset BIOS menu to default.
	<reset_type>	: Reset type, only support "Reset" now.
	Example		: java -jar GbtUtility-2.1.76.jar [options] redfish bios reset [ID] <reset_type>
	by nodelist	: java -jar GbtUtility-2.1.76.jar redfish bios reset Self Reset
	by single host	: java -jar GbtUtility-2.1.76.jar -H 10.1.27.79 -U admin -P password -RU admin -RP password redfish bios reset Reset
	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 bios reset Reset

4.	<password>	: Change BIOS password.
	<json>		: The JSON data of BIOS password.

	*1. The value of "PasswordName" in password.json may different according to BIOS, please refer to 3.32.14 registries to get BIOS registries information.
	*2. You can find the "AttributeName" of "Administrator Password" and "User Password" in BIOS registries information.

	Example		: java -jar GbtUtility-2.1.76.jar [options] redfish bios password [ID] <json>
	by nodelist	: java -jar GbtUtility-2.1.76.jar redfish bios password Self examples/redfish/bios_password.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 bios password examples/redfish/bios_password.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 bios password examples/redfish/bios_password.json
***************************************************************************************************************************************