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.
-
#smbios_uuid ⇒ String
SMBIOS UUID.
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.
941 942 943 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 941 def initialize(**args) update!(**args) end |
Instance Attribute Details
#bios_manufacturer ⇒ String
BIOS manufacturer.
Corresponds to the JSON property biosManufacturer
919 920 921 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 919 def bios_manufacturer @bios_manufacturer end |
#bios_name ⇒ String
BIOS name.
Corresponds to the JSON property biosName
924 925 926 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 924 def bios_name @bios_name end |
#bios_release_date ⇒ String
BIOS release date.
Corresponds to the JSON property biosReleaseDate
929 930 931 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 929 def bios_release_date @bios_release_date end |
#bios_version ⇒ String
BIOS version.
Corresponds to the JSON property biosVersion
934 935 936 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 934 def bios_version @bios_version end |
#smbios_uuid ⇒ String
SMBIOS UUID.
Corresponds to the JSON property smbiosUuid
939 940 941 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 939 def smbios_uuid @smbios_uuid end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
946 947 948 949 950 951 952 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 946 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) @smbios_uuid = args[:smbios_uuid] if args.key?(:smbios_uuid) end |