Class: Google::Apis::ToolresultsV1beta3::MemoryInfo

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ MemoryInfo

Returns a new instance of MemoryInfo.



1771
1772
1773
# File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 1771

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

Instance Attribute Details

#memory_cap_in_kibibyteFixnum

Maximum memory that can be allocated to the process in KiB Corresponds to the JSON property memoryCapInKibibyte

Returns:

  • (Fixnum)


1764
1765
1766
# File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 1764

def memory_cap_in_kibibyte
  @memory_cap_in_kibibyte
end

#memory_total_in_kibibyteFixnum

Total memory available on the device in KiB Corresponds to the JSON property memoryTotalInKibibyte

Returns:

  • (Fixnum)


1769
1770
1771
# File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 1769

def memory_total_in_kibibyte
  @memory_total_in_kibibyte
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1776
1777
1778
1779
# File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 1776

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