class Hpe3parSdk::PrivateSpace

Attributes

base[RW]
type - Number

Base space in MiB.

raw_base[RW]
type - Number

Raw base space in MiB.

raw_snapshot[RW]
type - Number

Raw snapshot space in MiB.

snapshot[RW]
type - Number

snapshot space in MiB.

Public Class Methods

new(object_hash) click to toggle source
# File lib/Hpe3parSdk/models.rb, line 1664
def initialize(object_hash)
  if object_hash == nil
    return
  end

  self.base = object_hash['base']

  self.raw_base = object_hash['rawBase']

  self.snapshot = object_hash['snapshot']

  self.raw_snapshot = object_hash['rawSnapshot']

end