Class: Google::Apis::MigrationcenterV1alpha1::BiosDetails
- Inherits:
-
Object
- Object
- Google::Apis::MigrationcenterV1alpha1::BiosDetails
- 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
-
#bios_manufacturer ⇒ String
BIOS manufacturer.
-
#bios_name ⇒ String
BIOS name.
-
#bios_release_date ⇒ String
BIOS release date.
-
#bios_version ⇒ String
BIOS version.
-
#id ⇒ String
BIOS ID.
-
#manufacturer ⇒ String
BIOS manufacturer.
-
#release_time ⇒ String
BIOS release date.
-
#smbios_uuid ⇒ String
SMBIOS UUID.
-
#version ⇒ String
BIOS version.
Instance Method Summary collapse
-
#initialize(**args) ⇒ BiosDetails
constructor
A new instance of BiosDetails.
-
#update!(**args) ⇒ Object
Update properties of this object.
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_manufacturer ⇒ String
BIOS manufacturer.
Corresponds to the JSON property biosManufacturer
1723 1724 1725 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1723 def bios_manufacturer @bios_manufacturer end |
#bios_name ⇒ String
BIOS name.
Corresponds to the JSON property biosName
1728 1729 1730 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1728 def bios_name @bios_name end |
#bios_release_date ⇒ String
BIOS release date.
Corresponds to the JSON property biosReleaseDate
1733 1734 1735 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1733 def bios_release_date @bios_release_date end |
#bios_version ⇒ String
BIOS version.
Corresponds to the JSON property biosVersion
1738 1739 1740 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1738 def bios_version @bios_version end |
#id ⇒ String
BIOS ID.
Corresponds to the JSON property id
1743 1744 1745 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1743 def id @id end |
#manufacturer ⇒ String
BIOS manufacturer.
Corresponds to the JSON property manufacturer
1748 1749 1750 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1748 def manufacturer @manufacturer end |
#release_time ⇒ String
BIOS release date.
Corresponds to the JSON property releaseTime
1753 1754 1755 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1753 def release_time @release_time end |
#smbios_uuid ⇒ String
SMBIOS UUID.
Corresponds to the JSON property smbiosUuid
1758 1759 1760 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1758 def smbios_uuid @smbios_uuid end |
#version ⇒ String
BIOS version.
Corresponds to the JSON property version
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 |