Class: Google::Apis::AdminDirectoryV1::ChromeOsDevice::CpuInfo

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

Overview

CPU specs for a CPU.

Defined Under Namespace

Classes: LogicalCpu

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ CpuInfo

Returns a new instance of CpuInfo.



1406
1407
1408
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 1406

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

Instance Attribute Details

#architectureString

The CPU architecture. Corresponds to the JSON property architecture

Returns:

  • (String)


1389
1390
1391
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 1389

def architecture
  @architecture
end

#logical_cpusArray<Google::Apis::AdminDirectoryV1::ChromeOsDevice::CpuInfo::LogicalCpu>

Information for the Logical CPUs Corresponds to the JSON property logicalCpus



1394
1395
1396
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 1394

def logical_cpus
  @logical_cpus
end

#max_clock_speed_khzFixnum

The max CPU clock speed in kHz. Corresponds to the JSON property maxClockSpeedKhz

Returns:

  • (Fixnum)


1399
1400
1401
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 1399

def max_clock_speed_khz
  @max_clock_speed_khz
end

#modelString

The CPU model name. Corresponds to the JSON property model

Returns:

  • (String)


1404
1405
1406
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 1404

def model
  @model
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1411
1412
1413
1414
1415
1416
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 1411

def update!(**args)
  @architecture = args[:architecture] if args.key?(:architecture)
  @logical_cpus = args[:logical_cpus] if args.key?(:logical_cpus)
  @max_clock_speed_khz = args[:max_clock_speed_khz] if args.key?(:max_clock_speed_khz)
  @model = args[:model] if args.key?(:model)
end