class Hpe3parSdk::Usage
Attributes
raw_total_MiB[RW]
- type - Number
-
Total physical (raw) logical disk space in MiB.
raw_used_MiB[RW]
- type - Number
-
Amount of physical (raw) logical disk used, in MiB.
total_MiB[RW]
- type - Number
-
Total logical disk space in MiB.
used_MiB[RW]
- type - Number
-
Amount of logical disk used, in MiB.
Public Class Methods
new(object_hash)
click to toggle source
# File lib/Hpe3parSdk/models.rb, line 1596 def initialize(object_hash) if object_hash == nil return end self.total_MiB = object_hash['totalMiB'] self.raw_total_MiB = object_hash['rawTotalMiB'] self.used_MiB = object_hash['usedMiB'] self.raw_used_MiB = object_hash['rawUsedMiB'] end