HclPCIDevice

The PCIDevice structure contains fields describing information about a single PCI device on a host.


Properties

string
class_code Required

Register that specifies the type of function the device performs.


string
did Required

A unique number that identifies the specific device of the Vendor (VID).


driver Required

Currently installed driver used by the device.


firmware Optional

Currently installed firmware used by the device. If unset firmware is unknown.


string
model_name Required

The name of the device model.


string
pci_address Required

The device’s address in a given ESXi host.


string
ssid Required

A unique number that identifies the specific device of Subsystem Vendor (SVID).


string
sub_class_code Required

Register that specifies the specific function the device performs.


string
svid Required

A unique number that identifies the card manufacturer.


boolean
used_by_vsan Required

Shows whether the device is part of VSAN cluster or not.


string
vendor Required

The name of the vendor.


string
vid Required

A unique number assigned to each computer hardware device that helps to identify the chipset manufacturer. For example, Dell, Broadcom, etc.

JSON Example

{
	"class_code": "string",
	"did": "string",
	"driver": {
		"name": "string",
		"version": "string"
	},
	"model_name": "string",
	"pci_address": "string",
	"ssid": "string",
	"sub_class_code": "string",
	"svid": "string",
	"used_by_vsan": false,
	"vendor": "string",
	"vid": "string"
}

Feedback

Was this page helpful?