| 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 'bios.BootMode'] |
| object_type | String | The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. | [default to 'bios.BootMode'] |
| actual_boot_mode | String | The actual BIOS boot mode as reported by the platform BIOS. | [optional] |
| compute_blade | ComputeBladeRelationship | [optional] | |
| compute_rack_unit | ComputeRackUnitRelationship | [optional] | |
| inventory_device_info | InventoryDeviceInfoRelationship | [optional] | |
| registered_device | AssetDeviceRegistrationRelationship | [optional] |
require 'intersight_client'
instance = IntersightClient::BiosBootMode.new(
class_id: null,
object_type: null,
actual_boot_mode: null,
compute_blade: null,
compute_rack_unit: null,
inventory_device_info: null,
registered_device: null
)