Class: Google::Apis::ToolresultsV1beta3::PerfEnvironment
- Inherits:
-
Object
- Object
- Google::Apis::ToolresultsV1beta3::PerfEnvironment
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/toolresults_v1beta3/classes.rb,
lib/google/apis/toolresults_v1beta3/representations.rb,
lib/google/apis/toolresults_v1beta3/representations.rb
Overview
Encapsulates performance environment info
Instance Attribute Summary collapse
-
#cpu_info ⇒ Google::Apis::ToolresultsV1beta3::CpuInfo
CPU related environment info Corresponds to the JSON property
cpuInfo
. -
#memory_info ⇒ Google::Apis::ToolresultsV1beta3::MemoryInfo
Memory related environment info Corresponds to the JSON property
memoryInfo
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ PerfEnvironment
constructor
A new instance of PerfEnvironment.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ PerfEnvironment
Returns a new instance of PerfEnvironment.
2127 2128 2129 |
# File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 2127 def initialize(**args) update!(**args) end |
Instance Attribute Details
#cpu_info ⇒ Google::Apis::ToolresultsV1beta3::CpuInfo
CPU related environment info
Corresponds to the JSON property cpuInfo
2120 2121 2122 |
# File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 2120 def cpu_info @cpu_info end |
#memory_info ⇒ Google::Apis::ToolresultsV1beta3::MemoryInfo
Memory related environment info
Corresponds to the JSON property memoryInfo
2125 2126 2127 |
# File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 2125 def memory_info @memory_info end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2132 2133 2134 2135 |
# File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 2132 def update!(**args) @cpu_info = args[:cpu_info] if args.key?(:cpu_info) @memory_info = args[:memory_info] if args.key?(:memory_info) end |