class Hpe3parSdk::LDLayoutCapacity

Attributes

capacitefficiency[RW]
type - CapEfficiency

Capacity efficiency attributes.

overprovisioned_allocated_in_mib[RW]
type - Number

System contains an over provisioned allocated MiB.

overprovisioned_free_in_mib[RW]
type - Number

System contains an over provisioned free MiB.

overprovisioned_used_in_mib[RW]
type - Number

System contains an over provisioned used MiB.

overprovisioned_virtualsize_in_mib[RW]
type - Number

System contains an over provisioned Virtual Size MiB.

rawfree_in_mib[RW]
type - Number

Raw free capacity in MiB.

usable_free_in_mib[RW]
type - Number

LD free capacity in MiB.

Public Class Methods

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

  self.rawfree_in_mib = object_hash['rawFreeMiB']

  self.usable_free_in_mib = object_hash['usableFreeMiB']

  self.overprovisioned_virtualsize_in_mib = object_hash['overProvisionedVirtualSizeMiB']

  self.overprovisioned_used_in_mib= object_hash['overProvisionedUsedMiB']

  self.overprovisioned_allocated_in_mib = object_hash['overProvisionedAllocatedMiB']

  self.overprovisioned_free_in_mib = object_hash['overProvisionedFreeMiB']

  self.capacitefficiency = CapEfficiency.new(object_hash['capacityEfficiency'])

end