Class: Google::Apis::RemotebuildexecutionV1::GoogleDevtoolsRemotebuildbotResourceUsage

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleDevtoolsRemotebuildbotResourceUsage

Returns a new instance of GoogleDevtoolsRemotebuildbotResourceUsage.



1666
1667
1668
# File 'lib/google/apis/remotebuildexecution_v1/classes.rb', line 1666

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

Instance Attribute Details

#cpu_used_percentFloat

Corresponds to the JSON property cpuUsedPercent

Returns:

  • (Float)


1654
1655
1656
# File 'lib/google/apis/remotebuildexecution_v1/classes.rb', line 1654

def cpu_used_percent
  @cpu_used_percent
end

#disk_usageGoogle::Apis::RemotebuildexecutionV1::GoogleDevtoolsRemotebuildbotResourceUsageStat

Corresponds to the JSON property diskUsage



1659
1660
1661
# File 'lib/google/apis/remotebuildexecution_v1/classes.rb', line 1659

def disk_usage
  @disk_usage
end

#memory_usageGoogle::Apis::RemotebuildexecutionV1::GoogleDevtoolsRemotebuildbotResourceUsageStat

Corresponds to the JSON property memoryUsage



1664
1665
1666
# File 'lib/google/apis/remotebuildexecution_v1/classes.rb', line 1664

def memory_usage
  @memory_usage
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1671
1672
1673
1674
1675
# File 'lib/google/apis/remotebuildexecution_v1/classes.rb', line 1671

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