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.



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

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)


460
461
462
# File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 460

def cpu_processor
  @cpu_processor
end

#cpu_speed_in_ghzFloat

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

Returns:

  • (Float)


465
466
467
# File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 465

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)


470
471
472
# File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 470

def number_of_cores
  @number_of_cores
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



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

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