Skip to content

Latest commit

 

History

History
34 lines (28 loc) · 1.56 KB

File metadata and controls

34 lines (28 loc) · 1.56 KB

IntersightClient::PciDevice

Properties

Name Type Description Notes
class_id String The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data. [default to 'pci.Device']
object_type String The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. [default to 'pci.Device']
firmware_version String The running firmware version of the PCI device. [optional]
pid String The product identifier of the PCI device. [optional]
slot_id String The PCI slot id of the PCI device. [optional][readonly]
compute_blade ComputeBladeRelationship [optional]
compute_rack_unit ComputeRackUnitRelationship [optional]
inventory_device_info InventoryDeviceInfoRelationship [optional]
registered_device AssetDeviceRegistrationRelationship [optional]

Example

require 'intersight_client'

instance = IntersightClient::PciDevice.new(
  class_id: null,
  object_type: null,
  firmware_version: null,
  pid: null,
  slot_id: null,
  compute_blade: null,
  compute_rack_unit: null,
  inventory_device_info: null,
  registered_device: null
)