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.
1890 1891 1892 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1890 def initialize(**args) update!(**args) end |
Instance Attribute Details
#bios_manufacturer ⇒ String
BIOS manufacturer.
Corresponds to the JSON property biosManufacturer
1848 1849 1850 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1848 def bios_manufacturer @bios_manufacturer end |
#bios_name ⇒ String
BIOS name.
Corresponds to the JSON property biosName
1853 1854 1855 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1853 def bios_name @bios_name end |
#bios_release_date ⇒ String
BIOS release date.
Corresponds to the JSON property biosReleaseDate
1858 1859 1860 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1858 def bios_release_date @bios_release_date end |
#bios_version ⇒ String
BIOS version.
Corresponds to the JSON property biosVersion
1863 1864 1865 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1863 def bios_version @bios_version end |
#id ⇒ String
BIOS ID.
Corresponds to the JSON property id
1868 1869 1870 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1868 def id @id end |
#manufacturer ⇒ String
BIOS manufacturer.
Corresponds to the JSON property manufacturer
1873 1874 1875 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1873 def manufacturer @manufacturer end |
#release_time ⇒ String
BIOS release date.
Corresponds to the JSON property releaseTime
1878 1879 1880 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1878 def release_time @release_time end |
#smbios_uuid ⇒ String
SMBIOS UUID.
Corresponds to the JSON property smbiosUuid
1883 1884 1885 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1883 def smbios_uuid @smbios_uuid end |
#version ⇒ String
BIOS version.
Corresponds to the JSON property version
1888 1889 1890 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1888 def version @version end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1895 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 |