Skip to content

Latest commit

 

History

History
32 lines (26 loc) · 2.27 KB

File metadata and controls

32 lines (26 loc) · 2.27 KB

IntersightClient::BiosSystemBootOrder

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 'bios.SystemBootOrder']
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.SystemBootOrder']
boot_mode String The BIOS boot mode. UEFI uses the GUID Partition Table (GPT) whereas Legacy mode uses the Master Boot Record (MBR) partitioning scheme. * `Legacy` - Legacy mode refers to the traditional process of booting from BIOS. Legacy mode uses the Master Boot Record (MBR) to locate the bootloader. * `Uefi` - UEFI mode uses the GUID Partition Table (GPT) to locate EFI Service Partitions to boot from. [optional][readonly][default to 'Legacy']
dn String The Distinguished Name for this object, used to uniquely identify this object. [optional][readonly]
secure_boot String Secure boot if set to enabled, enforces that device boots using only software that is trusted by the Original Equipment Manufacturer (OEM). * `NotAvailable` - Set the state of Secure Boot to Not Available. * `Disabled` - Set the state of Secure Boot to Disabled. * `Enabled` - Set the state of Secure Boot to Enabled. [optional][readonly][default to 'NotAvailable']
bios_unit BiosUnitRelationship [optional]
boot_devices Array<BiosBootDeviceRelationship> An array of relationships to biosBootDevice resources. [optional][readonly]
registered_device AssetDeviceRegistrationRelationship [optional]

Example

require 'intersight_client'

instance = IntersightClient::BiosSystemBootOrder.new(
  class_id: null,
  object_type: null,
  boot_mode: null,
  dn: null,
  secure_boot: null,
  bios_unit: null,
  boot_devices: null,
  registered_device: null
)