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.
1259 1260 1261 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 1259 def initialize(**args) update!(**args) end |
Instance Attribute Details
#display_name ⇒ String
Name of the state.
Corresponds to the JSON property displayName
1252 1253 1254 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 1252 def display_name @display_name end |
#session_duration ⇒ String
Time spent in the state since the last reboot.
Corresponds to the JSON property sessionDuration
1257 1258 1259 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 1257 def session_duration @session_duration end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1264 1265 1266 1267 |
# File 'lib/google/apis/admin_directory_v1/classes.rb', line 1264 def update!(**args) @display_name = args[:display_name] if args.key?(:display_name) @session_duration = args[:session_duration] if args.key?(:session_duration) end |