Class: Google::Apis::RemotebuildexecutionV1::GoogleDevtoolsRemotebuildbotResourceUsage
- Inherits:
-
Object
- Object
- Google::Apis::RemotebuildexecutionV1::GoogleDevtoolsRemotebuildbotResourceUsage
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/remotebuildexecution_v1/classes.rb,
lib/google/apis/remotebuildexecution_v1/representations.rb,
lib/google/apis/remotebuildexecution_v1/representations.rb
Overview
ResourceUsage is the system resource usage of the host machine.
Instance Attribute Summary collapse
-
#cpu_used_percent ⇒ Float
Corresponds to the JSON property
cpuUsedPercent. -
#disk_usage ⇒ Google::Apis::RemotebuildexecutionV1::GoogleDevtoolsRemotebuildbotResourceUsageStat
Corresponds to the JSON property
diskUsage. -
#memory_usage ⇒ Google::Apis::RemotebuildexecutionV1::GoogleDevtoolsRemotebuildbotResourceUsageStat
Corresponds to the JSON property
memoryUsage.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleDevtoolsRemotebuildbotResourceUsage
constructor
A new instance of GoogleDevtoolsRemotebuildbotResourceUsage.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleDevtoolsRemotebuildbotResourceUsage
Returns a new instance of GoogleDevtoolsRemotebuildbotResourceUsage.
1584 1585 1586 |
# File 'lib/google/apis/remotebuildexecution_v1/classes.rb', line 1584 def initialize(**args) update!(**args) end |
Instance Attribute Details
#cpu_used_percent ⇒ Float
Corresponds to the JSON property cpuUsedPercent
1572 1573 1574 |
# File 'lib/google/apis/remotebuildexecution_v1/classes.rb', line 1572 def cpu_used_percent @cpu_used_percent end |
#disk_usage ⇒ Google::Apis::RemotebuildexecutionV1::GoogleDevtoolsRemotebuildbotResourceUsageStat
Corresponds to the JSON property diskUsage
1577 1578 1579 |
# File 'lib/google/apis/remotebuildexecution_v1/classes.rb', line 1577 def disk_usage @disk_usage end |
#memory_usage ⇒ Google::Apis::RemotebuildexecutionV1::GoogleDevtoolsRemotebuildbotResourceUsageStat
Corresponds to the JSON property memoryUsage
1582 1583 1584 |
# File 'lib/google/apis/remotebuildexecution_v1/classes.rb', line 1582 def memory_usage @memory_usage end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1589 1590 1591 1592 1593 |
# File 'lib/google/apis/remotebuildexecution_v1/classes.rb', line 1589 def update!(**args) @cpu_used_percent = args[:cpu_used_percent] if args.key?(:cpu_used_percent) @disk_usage = args[:disk_usage] if args.key?(:disk_usage) @memory_usage = args[:memory_usage] if args.key?(:memory_usage) end |