Class: Google::Apis::ToolresultsV1beta3::CpuInfo

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/toolresults_v1beta3/classes.rb,
lib/google/apis/toolresults_v1beta3/representations.rb,
lib/google/apis/toolresults_v1beta3/representations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ CpuInfo

Returns a new instance of CpuInfo.



485
486
487
# File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 485

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

Instance Attribute Details

#cpu_processorString

description of the device processor ie '1.8 GHz hexa core 64-bit ARMv8-A' Corresponds to the JSON property cpuProcessor

Returns:

  • (String)


473
474
475
# File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 473

def cpu_processor
  @cpu_processor
end

#cpu_speed_in_ghzFloat

the CPU clock speed in GHz Corresponds to the JSON property cpuSpeedInGhz

Returns:

  • (Float)


478
479
480
# File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 478

def cpu_speed_in_ghz
  @cpu_speed_in_ghz
end

#number_of_coresFixnum

the number of CPU cores Corresponds to the JSON property numberOfCores

Returns:

  • (Fixnum)


483
484
485
# File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 483

def number_of_cores
  @number_of_cores
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



490
491
492
493
494
# File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 490

def update!(**args)
  @cpu_processor = args[:cpu_processor] if args.key?(:cpu_processor)
  @cpu_speed_in_ghz = args[:cpu_speed_in_ghz] if args.key?(:cpu_speed_in_ghz)
  @number_of_cores = args[:number_of_cores] if args.key?(:number_of_cores)
end