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.



1915
1916
1917
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1915

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

Instance Attribute Details

#bios_manufacturerString

BIOS manufacturer. Corresponds to the JSON property biosManufacturer

Returns:

  • (String)


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

def bios_manufacturer
  @bios_manufacturer
end

#bios_nameString

BIOS name. Corresponds to the JSON property biosName

Returns:

  • (String)


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

def bios_name
  @bios_name
end

#bios_release_dateString

BIOS release date. Corresponds to the JSON property biosReleaseDate

Returns:

  • (String)


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

def bios_release_date
  @bios_release_date
end

#bios_versionString

BIOS version. Corresponds to the JSON property biosVersion

Returns:

  • (String)


1888
1889
1890
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1888

def bios_version
  @bios_version
end

#idString

BIOS ID. Corresponds to the JSON property id

Returns:

  • (String)


1893
1894
1895
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1893

def id
  @id
end

#manufacturerString

BIOS manufacturer. Corresponds to the JSON property manufacturer

Returns:

  • (String)


1898
1899
1900
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1898

def manufacturer
  @manufacturer
end

#release_timeString

BIOS release date. Corresponds to the JSON property releaseTime

Returns:

  • (String)


1903
1904
1905
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1903

def release_time
  @release_time
end

#smbios_uuidString

SMBIOS UUID. Corresponds to the JSON property smbiosUuid

Returns:

  • (String)


1908
1909
1910
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1908

def smbios_uuid
  @smbios_uuid
end

#versionString

BIOS version. Corresponds to the JSON property version

Returns:

  • (String)


1913
1914
1915
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1913

def version
  @version
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1920

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