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.



1890
1891
1892
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1890

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

Instance Attribute Details

#bios_manufacturerString

BIOS manufacturer. Corresponds to the JSON property biosManufacturer

Returns:

  • (String)


1848
1849
1850
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1848

def bios_manufacturer
  @bios_manufacturer
end

#bios_nameString

BIOS name. Corresponds to the JSON property biosName

Returns:

  • (String)


1853
1854
1855
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1853

def bios_name
  @bios_name
end

#bios_release_dateString

BIOS release date. Corresponds to the JSON property biosReleaseDate

Returns:

  • (String)


1858
1859
1860
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1858

def bios_release_date
  @bios_release_date
end

#bios_versionString

BIOS version. Corresponds to the JSON property biosVersion

Returns:

  • (String)


1863
1864
1865
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1863

def bios_version
  @bios_version
end

#idString

BIOS ID. Corresponds to the JSON property id

Returns:

  • (String)


1868
1869
1870
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1868

def id
  @id
end

#manufacturerString

BIOS manufacturer. Corresponds to the JSON property manufacturer

Returns:

  • (String)


1873
1874
1875
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1873

def manufacturer
  @manufacturer
end

#release_timeString

BIOS release date. Corresponds to the JSON property releaseTime

Returns:

  • (String)


1878
1879
1880
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1878

def release_time
  @release_time
end

#smbios_uuidString

SMBIOS UUID. Corresponds to the JSON property smbiosUuid

Returns:

  • (String)


1883
1884
1885
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1883

def smbios_uuid
  @smbios_uuid
end

#versionString

BIOS version. Corresponds to the JSON property version

Returns:

  • (String)


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