HclHostsCompatibilityReportServerHclInfo

This CompatibilityReport.ServerHclInfo structure contains fields that describe the server of a ESXi host and its compatibility information.


Properties

matches Required

Provides information about possible compatibility matches for the given server. There could be multiple matches returned as there are several possible matches in the Compatibility data.


model_compatibility Required

The CompatibilityStatus enumerated type defines compatibility status of a given server or PCI device against a specific release of ESXi.
COMPATIBLE : When given hardware is certified for the specified ESXi release but no validation of the software of this hardware is performed.
INCOMPATIBLE : When given hardware is not certified for the specified ESXi release.
UNAVAILABLE : When there is no information about specified hardware.
CERTIFIED : When given hardware is certified for the specified ESXi release. Its software is also validated and it is also certified.
NOT_CERTIFIED : When given hardware is certified for the specified ESXi release. Its software is also validated and it is not certified.

Possible values are: COMPATIBLEINCOMPATIBLEUNAVAILABLECERTIFIEDNOT_CERTIFIED


server Required

Information about the server.

JSON Example

{
	"matches": [
		{
			"cpu_series": "string",
			"vcg_link": "string"
		}
	],
	"model_compatibility": "COMPATIBLE",
	"server": {
		"bios": {
			"version": "string"
		},
		"cpu_features": "string",
		"cpu_series": "string",
		"model_name": "string",
		"vendor": "string"
	}
}

Feedback

Was this page helpful?