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.



1758
1759
1760
# File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 1758

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)


1751
1752
1753
# File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 1751

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)


1756
1757
1758
# File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 1756

def memory_total_in_kibibyte
  @memory_total_in_kibibyte
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



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

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