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.



1028
1029
1030
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1028

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

Instance Attribute Details

#bios_manufacturerString

BIOS manufacturer. Corresponds to the JSON property biosManufacturer

Returns:

  • (String)


1006
1007
1008
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1006

def bios_manufacturer
  @bios_manufacturer
end

#bios_nameString

BIOS name. Corresponds to the JSON property biosName

Returns:

  • (String)


1011
1012
1013
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1011

def bios_name
  @bios_name
end

#bios_release_dateString

BIOS release date. Corresponds to the JSON property biosReleaseDate

Returns:

  • (String)


1016
1017
1018
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1016

def bios_release_date
  @bios_release_date
end

#bios_versionString

BIOS version. Corresponds to the JSON property biosVersion

Returns:

  • (String)


1021
1022
1023
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1021

def bios_version
  @bios_version
end

#smbios_uuidString

SMBIOS UUID. Corresponds to the JSON property smbiosUuid

Returns:

  • (String)


1026
1027
1028
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1026

def smbios_uuid
  @smbios_uuid
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1033
1034
1035
1036
1037
1038
1039
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1033

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