Class: Google::Apis::ToolresultsV1beta3::CpuInfo
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ToolresultsV1beta3::CpuInfo
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/toolresults_v1beta3/classes.rb,
 generated/google/apis/toolresults_v1beta3/representations.rb,
 generated/google/apis/toolresults_v1beta3/representations.rb
Instance Attribute Summary collapse
- 
  
    
      #cpu_processor  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    description of the device processor ie '1.8 GHz hexa core 64-bit ARMv8-A' Corresponds to the JSON property cpuProcessor.
- 
  
    
      #cpu_speed_in_ghz  ⇒ Float 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    the CPU clock speed in GHz Corresponds to the JSON property cpuSpeedInGhz.
- 
  
    
      #number_of_cores  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    the number of CPU cores Corresponds to the JSON property numberOfCores.
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ CpuInfo 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of CpuInfo. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ CpuInfo
Returns a new instance of CpuInfo
| 465 466 467 | # File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 465 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#cpu_processor ⇒ String
description of the device processor ie '1.8 GHz hexa core 64-bit ARMv8-A'
Corresponds to the JSON property cpuProcessor
| 453 454 455 | # File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 453 def cpu_processor @cpu_processor end | 
#cpu_speed_in_ghz ⇒ Float
the CPU clock speed in GHz
Corresponds to the JSON property cpuSpeedInGhz
| 458 459 460 | # File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 458 def cpu_speed_in_ghz @cpu_speed_in_ghz end | 
#number_of_cores ⇒ Fixnum
the number of CPU cores
Corresponds to the JSON property numberOfCores
| 463 464 465 | # File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 463 def number_of_cores @number_of_cores end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 470 471 472 473 474 | # File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 470 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 |