Class: Google::Apis::RemotebuildexecutionV1alpha::GoogleDevtoolsRemotebuildbotResourceUsage
- Inherits:
-
Object
- Object
- Google::Apis::RemotebuildexecutionV1alpha::GoogleDevtoolsRemotebuildbotResourceUsage
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/remotebuildexecution_v1alpha/classes.rb,
lib/google/apis/remotebuildexecution_v1alpha/representations.rb,
lib/google/apis/remotebuildexecution_v1alpha/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::RemotebuildexecutionV1alpha::GoogleDevtoolsRemotebuildbotResourceUsageStat
Corresponds to the JSON property
diskUsage
. -
#memory_usage ⇒ Google::Apis::RemotebuildexecutionV1alpha::GoogleDevtoolsRemotebuildbotResourceUsageStat
Corresponds to the JSON property
memoryUsage
. -
#total_disk_io_stats ⇒ Google::Apis::RemotebuildexecutionV1alpha::GoogleDevtoolsRemotebuildbotResourceUsageIoStats
Corresponds to the JSON property
totalDiskIoStats
.
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.
1683 1684 1685 |
# File 'lib/google/apis/remotebuildexecution_v1alpha/classes.rb', line 1683 def initialize(**args) update!(**args) end |
Instance Attribute Details
#cpu_used_percent ⇒ Float
Corresponds to the JSON property cpuUsedPercent
1666 1667 1668 |
# File 'lib/google/apis/remotebuildexecution_v1alpha/classes.rb', line 1666 def cpu_used_percent @cpu_used_percent end |
#disk_usage ⇒ Google::Apis::RemotebuildexecutionV1alpha::GoogleDevtoolsRemotebuildbotResourceUsageStat
Corresponds to the JSON property diskUsage
1671 1672 1673 |
# File 'lib/google/apis/remotebuildexecution_v1alpha/classes.rb', line 1671 def disk_usage @disk_usage end |
#memory_usage ⇒ Google::Apis::RemotebuildexecutionV1alpha::GoogleDevtoolsRemotebuildbotResourceUsageStat
Corresponds to the JSON property memoryUsage
1676 1677 1678 |
# File 'lib/google/apis/remotebuildexecution_v1alpha/classes.rb', line 1676 def memory_usage @memory_usage end |
#total_disk_io_stats ⇒ Google::Apis::RemotebuildexecutionV1alpha::GoogleDevtoolsRemotebuildbotResourceUsageIoStats
Corresponds to the JSON property totalDiskIoStats
1681 1682 1683 |
# File 'lib/google/apis/remotebuildexecution_v1alpha/classes.rb', line 1681 def total_disk_io_stats @total_disk_io_stats end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1688 1689 1690 1691 1692 1693 |
# File 'lib/google/apis/remotebuildexecution_v1alpha/classes.rb', line 1688 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) @total_disk_io_stats = args[:total_disk_io_stats] if args.key?(:total_disk_io_stats) end |