Class: Google::Apis::AdminDirectoryV1::ChromeOsDevice::CpuInfo::LogicalCpu::CState
- Inherits:
-
Object
- Object
- Google::Apis::AdminDirectoryV1::ChromeOsDevice::CpuInfo::LogicalCpu::CState
- 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
Status of a single C-state. C-states are various modes the CPU can transition to in order to use more or less power.
Instance Attribute Summary collapse
-
#display_name ⇒ String
Name of the state.
-
#session_duration ⇒ String
Time spent in the state since the last reboot.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CState
constructor
A new instance of CState.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ CState
Returns a new instance of CState.
1253 1254 1255 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 1253 def initialize(**args) update!(**args) end |
Instance Attribute Details
#display_name ⇒ String
Name of the state.
Corresponds to the JSON property displayName
1246 1247 1248 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 1246 def display_name @display_name end |
#session_duration ⇒ String
Time spent in the state since the last reboot.
Corresponds to the JSON property sessionDuration
1251 1252 1253 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 1251 def session_duration @session_duration end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1258 1259 1260 1261 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 1258 def update!(**args) @display_name = args[:display_name] if args.key?(:display_name) @session_duration = args[:session_duration] if args.key?(:session_duration) end |