Class: Google::Apis::MigrationcenterV1alpha1::BiosDetails

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/migrationcenter_v1alpha1/classes.rb,
lib/google/apis/migrationcenter_v1alpha1/representations.rb,
lib/google/apis/migrationcenter_v1alpha1/representations.rb

Overview

Details about the BIOS.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ BiosDetails

Returns a new instance of BiosDetails.



1765
1766
1767
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1765

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#bios_manufacturerString

BIOS manufacturer. Corresponds to the JSON property biosManufacturer

Returns:

  • (String)


1723
1724
1725
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1723

def bios_manufacturer
  @bios_manufacturer
end

#bios_nameString

BIOS name. Corresponds to the JSON property biosName

Returns:

  • (String)


1728
1729
1730
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1728

def bios_name
  @bios_name
end

#bios_release_dateString

BIOS release date. Corresponds to the JSON property biosReleaseDate

Returns:

  • (String)


1733
1734
1735
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1733

def bios_release_date
  @bios_release_date
end

#bios_versionString

BIOS version. Corresponds to the JSON property biosVersion

Returns:

  • (String)


1738
1739
1740
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1738

def bios_version
  @bios_version
end

#idString

BIOS ID. Corresponds to the JSON property id

Returns:

  • (String)


1743
1744
1745
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1743

def id
  @id
end

#manufacturerString

BIOS manufacturer. Corresponds to the JSON property manufacturer

Returns:

  • (String)


1748
1749
1750
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1748

def manufacturer
  @manufacturer
end

#release_timeString

BIOS release date. Corresponds to the JSON property releaseTime

Returns:

  • (String)


1753
1754
1755
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1753

def release_time
  @release_time
end

#smbios_uuidString

SMBIOS UUID. Corresponds to the JSON property smbiosUuid

Returns:

  • (String)


1758
1759
1760
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1758

def smbios_uuid
  @smbios_uuid
end

#versionString

BIOS version. Corresponds to the JSON property version

Returns:

  • (String)


1763
1764
1765
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1763

def version
  @version
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1770

def update!(**args)
  @bios_manufacturer = args[:bios_manufacturer] if args.key?(:bios_manufacturer)
  @bios_name = args[:bios_name] if args.key?(:bios_name)
  @bios_release_date = args[:bios_release_date] if args.key?(:bios_release_date)
  @bios_version = args[:bios_version] if args.key?(:bios_version)
  @id = args[:id] if args.key?(:id)
  @manufacturer = args[:manufacturer] if args.key?(:manufacturer)
  @release_time = args[:release_time] if args.key?(:release_time)
  @smbios_uuid = args[:smbios_uuid] if args.key?(:smbios_uuid)
  @version = args[:version] if args.key?(:version)
end