Class: Google::Apis::ToolresultsV1beta3::PerfEnvironment

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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ PerfEnvironment

Returns a new instance of PerfEnvironment.



2153
2154
2155
# File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 2153

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

Instance Attribute Details

#cpu_infoGoogle::Apis::ToolresultsV1beta3::CpuInfo

CPU related environment info Corresponds to the JSON property cpuInfo



2146
2147
2148
# File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 2146

def cpu_info
  @cpu_info
end

#memory_infoGoogle::Apis::ToolresultsV1beta3::MemoryInfo

Memory related environment info Corresponds to the JSON property memoryInfo



2151
2152
2153
# File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 2151

def memory_info
  @memory_info
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2158
2159
2160
2161
# File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 2158

def update!(**args)
  @cpu_info = args[:cpu_info] if args.key?(:cpu_info)
  @memory_info = args[:memory_info] if args.key?(:memory_info)
end